diff --git a/Project2-Character-Recognition/README.md b/Project2-Character-Recognition/README.md
index 4503fac..1f59c38 100644
--- a/Project2-Character-Recognition/README.md
+++ b/Project2-Character-Recognition/README.md
@@ -1,14 +1,114 @@
-CUDA Character Recognition
-======================
+## Project 2 Part 2 - CUDA Character Recognition
+**University of Pennsylvania
+CIS 565: GPU Programming and Architecture**
-**University of Pennsylvania, CIS 565: GPU Programming and Architecture, Project 2**
+* Author: Chhavi Sharma ([LinkedIn](https://www.linkedin.com/in/chhavi275/))
+* Tested on: Windows 10, Intel Core(R) Core(TM) i7-6700 CPU @ 3.40GHz 16GB,
+ NVIDIA Quadro P1000 4GB (MOORE100B-06)
-* (TODO) YOUR NAME HERE
- * (TODO) [LinkedIn](), [personal website](), [twitter](), etc.
-* Tested on: (TODO) Windows 22, i7-2222 @ 2.22GHz 22GB, GTX 222 222MB (Moore 2222 Lab)
+
+
+
-### (TODO: Your README)
-Include analysis, etc. (Remember, this is public, so don't put
-anything here that you don't want to share with the world.)
+### Index
+- [Introduction](https://github.com/chhavisharma/Project2-Number-Algorithms/blob/master/Project2-Character-Recognition/README.md#introduciton )
+- [Implementation Details](https://github.com/chhavisharma/Project2-Number-Algorithms/blob/master/Project2-Character-Recognition/README.md#implementation-details)
+- [Training MLP to Predict a 2x2 XOR](https://github.com/chhavisharma/Project2-Number-Algorithms/blob/master/Project2-Character-Recognition/README.md#training-mlp-to-predict-a-2x2-xor)
+- [Training MLP for Character Recognition](https://github.com/chhavisharma/Project2-Number-Algorithms/blob/master/Project2-Character-Recognition/README.md#training-mlp-for-character-recognition)
+- [Observations and Comments](https://github.com/chhavisharma/Project2-Number-Algorithms/blob/master/Project2-Character-Recognition/README.md#observations-and-comments)
+- [Extra Credit](https://github.com/chhavisharma/Project2-Number-Algorithms/blob/master/Project2-Character-Recognition/README.md#extra-credit)
+
+
+### Introduciton
+
+In this project, we implementa Multi Layer Perceptron using CUDA.
+Training a neural network involves computing a sequence of operations that are highly parallelizable.
+We implment computations at each stage of the forward and backward pass using CUDA kernels and compare performance.
+
+A multilayer perceptron (MLP) is a class of feedforward artificial neural network. An MLP consists of at least three layers of nodes: an input layer, a hidden layer and an output layer. Except for the input nodes, each node is a neuron that uses a nonlinear activation function. MLP utilizes a supervised learning technique called backpropagation for training. Its multiple layers and non-linear activation distinguish MLP from a linear perceptron. It can distinguish data that is not linearly separable such as an XOR function.
+
+After each a forward pass is run, an error in the difference between the actual output and the theoretical output due to each specific weight is calculated. This value is then multiplied by a negative lambda value to give the delta to be added to that specific weight to lessen the error in the overall system. Running this over multiple epochs allows us to find the right weights that describe the dataset classifiction.
+
+ 
+
+### Implementation Details
+
+ 
+
+ We design our MLP network to train on batches of data. Therefore, the input dimension is NxD where N is the number of examples in a batch and D is the dimentionality of each example. After the hidden layer (NxH) is computed, the values are activated useing a Sigmoid activation function. Finally, the ouput layer, of dimension NxC where C is the numbe of classes, is fed into a softmax layer to compute probabilties over classes. We compute loss over these class probablity vectors using Multi Class Cross Entropy.
+
+Forward Pass:
+```
+h = W1*X1
+X2 = sigmod(h)
+O = W2*X2
+Probab = Softmax(O)
+Loss = CrossEntropy(Probab)
+
+```
+Once the Loss is computed, the gradients with respect to W1 and W2 are computed using the chain rule and are reduced to simple matrix forms. See the code comments for more details about loss simplification.
+
+Backward Pass:
+```
+//Compute Derivatives Using Chain Rule
+dL/dw1 = dL/Pr * dPr/dSc * dSc/x2 * dx2/dh * dh/w1;
+dL/dw2 = dL/Pr * dPr/dSc * dSc/x2;
+
+//Update Weights
+w1 = w1 - LearningRate*dw1;
+w2 = w2 - LearningRate*dw2;
+```
+
+### Training MLP to Predict a 2x2 XOR
+
+
+
+
+
+We train an MLP to predict output of a two bit XOR gate. Given 4 2-bit inputs and ground truth labels, we train the network as follows:
+ ```
+ Epochs: 1000
+ Learning Rate: 0.1
+ N = 4 //Number of examples per batch
+ D = 2 + 1(bias) //Feature Dimension
+ H = 2 //Hidden Layer Nodes
+ C = 2 //Number of classes
+ ```
+
+ The network learns to classify XOR inputs over a 100 epochs correctly.
+ The loss per epoch reduces consistanctly
+
+ 
+
+ 
+
+ The learned weights have been added to the repo at Project2-Number-Algorithms/Project2-Character-Recognition/build/
+.
+
+### Training MLP for Character Recognition
+
+We train an MLP to predict characters from images in this task. Given 52 images of characters ground truth labels, we train the network as follows:
+ ```
+ Epochs: 5000
+ Learning Rate: 0.1
+ N = 52 //Number of examples per batch
+ D = 10201 //Feature Dimension (101 x 101)
+ H = 10 //Hidden Layer Nodes
+ C = 52 //Number of classes
+ ```
+
+ 
+
+ 
+ The training is stable as the loss reduces consistanly at every uweight update.
+ The learned weights have been added to the repo Project2-Number-Algorithms/Project2-Character-Recognition/build/
+.
+
+### Observations and Comments
+- The MLP describled above is able to learn XOR, a non-linearly seperable function, only when a bias term is added to the input.
+- In case of character recognition, we only have one image sample per class of characters, therefore the networks learns to memorise the data mapping to the classes and would not generalise well. In order to build a robust character recongition network, an ideal dataset of charcters per class would need to have enough variation in font intentsity.
+
+### Extra Credit
+We implemented batch processing of data instead of running one exampe at a time. This required simplifying gradinets at the matrix level. These have been laid out in detail in the code.
diff --git a/Project2-Character-Recognition/build/cr_W1_DxH_10201_x_10.txt b/Project2-Character-Recognition/build/cr_W1_DxH_10201_x_10.txt
new file mode 100644
index 0000000..9d28e48
--- /dev/null
+++ b/Project2-Character-Recognition/build/cr_W1_DxH_10201_x_10.txt
@@ -0,0 +1,102010 @@
+-0.09621966
+-0.72515556
+-0.38138646
+-0.41618633
+-0.42685735
+-0.72984809
+0.72388160
+-0.41298115
+0.64033878
+0.28609073
+0.29070449
+-0.33365953
+-0.97064828
+0.34423876
+0.91083765
+-0.68910083
+-0.08608443
+-0.25724012
+-0.09283525
+-0.18876064
+0.48364818
+0.66744709
+-0.95868120
+0.68001628
+-0.78474560
+-0.39512736
+0.75858331
+-0.88779317
+0.99599278
+-0.99524199
+-0.52483943
+-0.06937295
+-0.14054364
+0.68137062
+-0.59316561
+0.68095553
+0.71706975
+-0.12283510
+-0.23154211
+0.43142104
+-0.80310154
+-0.77100016
+0.20934278
+-0.68043282
+-0.86508377
+-0.00287928
+-0.95865005
+-0.23380808
+-0.37078582
+0.04173962
+0.11128365
+-0.72045069
+-0.53829688
+-0.86061322
+0.35711944
+0.19905302
+-0.76750540
+0.66222695
+0.21160486
+0.57130415
+0.38526725
+0.80711095
+0.26514125
+-0.55562939
+0.70824491
+0.41440007
+-0.38286943
+-0.19293156
+-0.45828883
+0.18303246
+-0.62826524
+-0.07953421
+-0.88874424
+0.30057124
+-0.92146080
+-0.58621876
+-0.88005419
+-0.61092056
+0.88672144
+-0.76476755
+-0.68640593
+0.38982606
+-0.97751124
+0.20923901
+-0.59017956
+-0.52755320
+-0.63652414
+0.87304556
+-0.57786754
+-0.38887131
+-0.65082952
+0.75309598
+0.78719819
+-0.20658815
+0.10557640
+0.88950372
+0.40334690
+-0.45934469
+-0.71978483
+-0.56852198
+0.50689662
+0.63129652
+0.62429821
+0.72546041
+-0.29970938
+0.83112276
+0.10136044
+0.25467253
+-0.64167005
+0.04873621
+-0.52039364
+-0.22894863
+-0.88166837
+0.43859605
+-0.26530147
+-0.84811586
+-0.57114572
+-0.53101097
+0.13784106
+-0.28127226
+-0.72505910
+-0.54097082
+0.28895772
+0.52720530
+0.85910582
+-0.20298949
+-0.13424212
+0.25933246
+0.52596774
+-0.48167830
+-0.52091194
+-0.95147387
+0.93991196
+-0.51559760
+-0.25210941
+0.74610385
+-0.99875063
+0.49272159
+-0.59204853
+0.51746995
+-0.03222365
+0.08335926
+0.20778638
+-0.24577555
+0.13882154
+0.20082049
+-0.12364987
+0.95588519
+0.78076060
+0.03580049
+-0.72931352
+0.37006569
+0.78308737
+-0.91217210
+0.93211722
+0.60748136
+-0.52621207
+0.63814414
+0.63219416
+-0.38375837
+0.94765389
+0.86643314
+-0.01991838
+-0.49794602
+0.16830742
+-0.80319935
+0.43833017
+0.70215762
+0.98911452
+-0.19553965
+0.06591392
+0.89868617
+-0.60071564
+-0.67782196
+0.49203277
+-0.54245764
+-0.93378677
+-0.05944830
+0.63859344
+-0.26920605
+-0.65767464
+0.14896429
+-0.22382122
+-0.06102353
+0.49227512
+0.29389012
+-0.49668658
+0.98127091
+0.80828166
+-0.68488979
+0.40709901
+-0.99306825
+-0.71504635
+0.30255675
+-0.61498725
+-0.97924928
+-0.17837620
+0.96126580
+0.12702739
+0.63551223
+0.68025434
+-0.67409837
+0.86701357
+-0.95110952
+-0.34286129
+0.48078477
+-0.71599329
+0.43506777
+0.15610301
+0.30100548
+0.10300124
+0.40256834
+-0.23247474
+0.21441782
+-0.35905224
+-0.31784242
+-0.50595513
+-0.47364670
+-0.78911880
+0.05493927
+0.86442339
+0.55938995
+0.93164825
+-0.69746086
+-0.95973514
+-0.49693817
+0.95236313
+0.28133905
+-0.37365919
+0.43855286
+0.89273632
+0.93252647
+-0.85701095
+0.09408426
+-0.97757043
+0.64206755
+-0.84207727
+-0.29643327
+-0.33952075
+-0.07456356
+-0.67439142
+0.25307989
+-0.84901051
+-0.09338439
+-0.83367352
+-0.14352196
+-0.01011157
+-0.31521344
+0.00373137
+0.66870248
+0.37421429
+-0.39265579
+0.10942960
+0.22300994
+-0.20734400
+0.45662618
+0.46021330
+-0.60809234
+-0.26946169
+0.87441087
+0.93984973
+-0.36596137
+0.74445713
+-0.80629078
+-0.45679247
+0.19400370
+0.33863485
+0.62691808
+0.16978574
+0.52004552
+-0.91706561
+-0.05026096
+0.32182467
+0.45563793
+0.91407430
+-0.35907644
+-0.48948169
+-0.57475442
+0.56585026
+-0.04691547
+0.56225145
+-0.88832639
+-0.32555062
+0.68300807
+-0.54863566
+-0.59048301
+0.39072299
+-0.62924445
+0.49623227
+0.72063613
+0.49550402
+-0.42914480
+-0.39792997
+0.07315600
+0.27274013
+-0.90350799
+0.27899873
+0.70474231
+0.07361972
+0.51406121
+0.71812296
+0.81785178
+0.85985446
+0.42883885
+-0.74996668
+0.69895065
+-0.79271790
+0.36676288
+0.57068872
+0.98680055
+0.68284237
+-0.15845191
+-0.35416031
+-0.29464293
+0.28201795
+0.44362223
+-0.93153565
+-0.95922751
+0.46025896
+0.21539831
+0.76529860
+0.49891675
+0.59375453
+-0.60164815
+-0.42637742
+0.72535586
+-0.00286508
+0.74403763
+0.21203434
+0.22301185
+-0.12466061
+-0.50883758
+0.32848597
+0.41805172
+-0.68955213
+0.97364438
+-0.58966926
+-0.77465805
+0.65958834
+0.42641485
+-0.15992367
+0.35929012
+-0.55124345
+0.50477552
+0.71239579
+-0.74837446
+-0.60113826
+-0.66300914
+-0.84008634
+0.23909140
+-0.01881868
+0.49236512
+-0.73337427
+0.29395008
+-0.23574430
+0.40633321
+-0.87013033
+-0.33138657
+0.01603174
+-0.59592527
+-0.77084632
+0.60608387
+-0.23816884
+0.68605614
+-0.00152719
+0.79672086
+-0.41580129
+0.60792565
+-0.87526817
+0.38874233
+0.89055669
+-0.57171831
+-0.73994681
+-0.40893590
+0.77523053
+-0.23987806
+0.43291605
+0.38235617
+0.84645641
+-0.87985292
+0.83331358
+-0.33674908
+-0.27259618
+-0.22158694
+-0.94286507
+0.63776243
+0.36162961
+-0.84281094
+-0.68338552
+0.64217627
+-0.85546659
+0.16509831
+-0.80392303
+-0.75964895
+-0.45328861
+0.77719295
+-0.63379836
+0.76852930
+-0.19115859
+0.62278235
+0.21031213
+-0.02580220
+0.24455774
+0.86680937
+0.79004002
+0.07150018
+-0.41322201
+-0.37230313
+0.45297337
+-0.75332826
+-0.22788990
+-0.08919585
+0.60749757
+0.29616559
+-0.82410938
+-0.58432469
+-0.96383159
+0.41578126
+-0.74557778
+0.34196413
+0.61461508
+-0.09573966
+-0.14526987
+-0.25206017
+0.71492720
+0.35463619
+0.99346554
+0.96364343
+-0.70322865
+-0.77977715
+0.62492621
+0.63310444
+-0.92886303
+0.25334525
+-0.28794962
+0.61628759
+-0.51541772
+-0.08482200
+0.47676909
+-0.17709458
+0.98309410
+-0.35445851
+0.68449724
+0.98738992
+-0.14132649
+0.67553687
+0.54732001
+0.38976717
+0.80944526
+0.53294444
+-0.37846589
+0.59348273
+-0.00782448
+0.63073575
+-0.77362099
+-0.96182867
+0.37348211
+-0.23103875
+0.17964661
+0.53232419
+-0.68511763
+0.43042612
+-0.48858017
+-0.94681430
+0.97734439
+0.66206872
+0.54413438
+0.11978555
+-0.43560857
+-0.95847902
+-0.57295093
+0.70774102
+0.87208521
+0.72236621
+0.36971056
+-0.33941007
+-0.98420400
+0.07601392
+-0.01348490
+0.53892708
+-0.98930684
+0.71935964
+-0.87495823
+0.21613753
+0.98422360
+0.50300384
+0.51050079
+0.67571664
+-0.91574705
+-0.56884971
+-0.07172585
+-0.30076420
+-0.60273820
+-0.43853122
+0.38224030
+0.11585236
+0.34853184
+-0.40075195
+0.47942734
+-0.73488411
+-0.33729458
+0.22577178
+0.10421360
+0.10680115
+0.57067943
+0.57261860
+0.14664900
+-0.41348380
+0.00094521
+-0.58181831
+-0.23469585
+0.84158361
+0.14402878
+-0.06228787
+0.57531178
+0.20925641
+0.97868061
+-0.01338768
+0.02639151
+-0.88736335
+-0.78740668
+0.40694010
+0.21050310
+-0.60676679
+-0.72931981
+0.74995494
+-0.16729289
+-0.58598351
+-0.27868921
+0.19882071
+0.21120250
+-0.49193615
+-0.06015021
+-0.60753831
+-0.21312284
+0.07386816
+0.97356379
+-0.17013013
+0.99321699
+-0.13374472
+0.31840312
+0.93463135
+0.97134840
+-0.35449612
+-0.74759367
+0.81316972
+-0.19063270
+-0.12788689
+0.76434350
+0.94188595
+0.15590370
+0.26988506
+0.66564107
+0.65317380
+-0.97739913
+-0.08273095
+0.16876328
+0.90976119
+-0.46282375
+-0.07638490
+0.12938416
+0.40815341
+-0.90227626
+-0.42659557
+-0.31982636
+-0.97925814
+-0.69438800
+-0.64011225
+0.57486713
+-0.54667774
+-0.79903924
+-0.37426072
+0.04100323
+0.31940293
+0.51673937
+-0.38749391
+0.65871847
+-0.62880158
+-0.81769730
+0.30294657
+0.06370819
+0.77801788
+0.58798957
+0.13284206
+-0.84961225
+0.77360821
+0.69168878
+0.81633031
+-0.31881076
+0.16547942
+-0.05412120
+0.81949067
+0.87223291
+-0.52674997
+0.44121659
+-0.57726702
+0.76420283
+0.36044109
+0.35564613
+0.14699638
+-0.13757610
+-0.52682766
+0.26724815
+-0.85574758
+0.21976697
+0.13782287
+-0.86806580
+-0.94308930
+-0.70993489
+0.68874729
+-0.01693541
+0.70015824
+-0.29036635
+0.99518561
+-0.91340174
+-0.50041521
+0.70266175
+-0.42383409
+-0.98159929
+-0.93834572
+0.48856795
+-0.99770152
+0.01322389
+-0.49977869
+0.25541091
+-0.51093462
+-0.86455122
+0.28667486
+-0.75273420
+0.06046653
+0.32910037
+0.81094694
+0.05750096
+0.12050438
+0.23973954
+0.26153517
+-0.93909166
+-0.50558370
+-0.73294756
+0.16882217
+-0.18701541
+-0.83387887
+-0.41133952
+0.63881528
+-0.81046709
+0.44906497
+0.96219957
+-0.08798194
+-0.51322868
+0.83405888
+-0.29345191
+-0.38653421
+0.65780199
+-0.29257828
+0.69109309
+0.58825743
+-0.66631281
+0.23448014
+-0.75558737
+0.19384658
+0.50198758
+-0.99639536
+0.08239698
+0.54773724
+0.43458223
+0.91037536
+-0.19539744
+0.45630145
+-0.49277616
+0.01474857
+0.01333833
+0.86846066
+-0.88268271
+-0.37853688
+0.66547430
+0.77181327
+0.95460176
+-0.85746007
+-0.22279084
+-0.53368896
+-0.08490241
+-0.49708992
+-0.07532477
+-0.42890888
+-0.59441882
+0.76547825
+0.29706097
+0.02751029
+0.24655139
+-0.36330068
+-0.45987028
+-0.03544110
+0.15658212
+0.77867174
+-0.10662258
+0.97075438
+-0.08889163
+0.45791471
+0.86702895
+-0.72474462
+0.19321692
+0.99664450
+0.89527678
+-0.25335622
+0.67066455
+-0.73684642
+-0.68322110
+0.02941704
+0.66210258
+0.42949820
+-0.11704648
+-0.73999554
+-0.62403062
+0.13741314
+0.34565902
+-0.86186285
+-0.27478671
+0.13654220
+-0.05081040
+-0.35497373
+0.51722383
+-0.45869589
+-0.74758223
+-0.15871769
+-0.47711265
+-0.30380774
+0.64886892
+-0.15028566
+-0.78350677
+-0.94574211
+-0.03828174
+-0.05748290
+0.36915123
+-0.64309403
+-0.91876183
+-0.60634243
+0.71823049
+-0.29280943
+-0.28836197
+-0.97318817
+-0.24658841
+-0.22347534
+-0.71655488
+-0.74555376
+0.76879299
+-0.67592600
+0.34754026
+-0.68552411
+-0.87714379
+-0.19692868
+0.23036790
+0.69590175
+-0.82598312
+0.77832687
+0.69655311
+0.71608770
+0.31028628
+0.40410805
+0.82207119
+-0.83288975
+-0.10126644
+-0.10855573
+0.58136094
+-0.73151997
+0.02508020
+0.63267684
+0.27779603
+-0.35782349
+0.11437345
+-0.23681062
+0.41382909
+-0.48890448
+0.71579444
+-0.55325446
+0.38235843
+-0.00567549
+-0.65356290
+0.68135214
+-0.68910199
+0.77551448
+-0.50207919
+-0.90277576
+0.52743030
+0.17382705
+-0.93177085
+-0.36838061
+0.48714209
+-0.75432265
+-0.49767894
+-0.18994230
+-0.56024429
+-0.73811921
+0.42755878
+-0.04616916
+0.64989579
+-0.37670547
+0.33617115
+0.56126928
+-0.95293771
+-0.83527035
+-0.27873427
+-0.27878261
+0.85434544
+-0.26074445
+0.71030092
+-0.66044459
+-0.95215350
+-0.11725271
+0.54405916
+0.38158834
+0.25557089
+-0.17419714
+0.88936865
+0.11408365
+0.58493423
+-0.23625571
+-0.42166114
+-0.23348784
+-0.19414794
+-0.62095037
+-0.88740094
+0.50552177
+0.70446646
+0.06175327
+0.91872287
+0.84255445
+-0.71529695
+-0.07758462
+-0.70224532
+0.33667672
+-0.88606466
+-0.03079152
+0.95405293
+-0.35684788
+0.32415795
+0.95680737
+-0.42609882
+-0.77872334
+0.73378921
+0.16829050
+-0.12851083
+-0.76639041
+0.53761744
+0.24450696
+-0.73853406
+0.18843651
+-0.18695325
+0.21621752
+0.92818117
+0.86563885
+0.93052840
+0.43531096
+0.16564620
+0.49975169
+-0.50869647
+0.92471159
+-0.62792066
+0.77406836
+0.29482114
+-0.44685078
+-0.56865337
+0.98108077
+-0.20682102
+-0.34347731
+0.32521665
+0.34993804
+-0.11049461
+-0.50393075
+0.07521963
+-0.31496316
+-0.33420509
+-0.98645849
+0.13812387
+0.85030317
+0.93755162
+0.12984037
+0.81901383
+-0.16765344
+0.04038548
+-0.02646399
+-0.65800500
+0.92708886
+0.18844628
+-0.39021850
+0.68603146
+0.81906104
+-0.68482482
+-0.47776163
+-0.03017563
+-0.56018168
+-0.71816590
+-0.54760802
+-0.35004812
+-0.86379908
+-0.98587959
+-0.52235720
+-0.33208203
+0.71590889
+-0.28810811
+-0.33938056
+-0.64692578
+-0.82704319
+-0.28324658
+-0.45464027
+0.42468989
+-0.29716164
+-0.05534381
+-0.46549428
+-0.63614255
+-0.30203223
+0.42112029
+-0.31653839
+-0.28633994
+0.65921795
+0.36001599
+-0.71483600
+0.27282143
+0.43454444
+-0.57282794
+0.62979460
+-0.25693899
+0.88687873
+-0.29120147
+-0.95601463
+0.96775556
+-0.28348088
+0.55909777
+-0.83646773
+0.20574391
+-0.18833166
+0.14738202
+-0.33101207
+-0.92967401
+-0.20156199
+-0.17677134
+-0.54658520
+-0.96759688
+0.01452410
+-0.39464641
+-0.87105067
+0.58276355
+-0.80696975
+0.57196140
+0.61552000
+-0.36083597
+0.12757349
+0.10311186
+0.69211948
+-0.18333232
+0.03143787
+0.82636261
+-0.15318167
+-0.59021810
+-0.49756950
+-0.17602611
+-0.63730389
+-0.42343485
+0.62308240
+0.97524691
+0.96420395
+-0.45362574
+0.65709090
+0.80406165
+-0.78179868
+0.67634511
+0.58958209
+-0.84877834
+0.60663342
+-0.92763385
+-0.76417299
+0.86268544
+-0.62803909
+-0.38046277
+0.22035456
+-0.81374606
+0.13171673
+0.26193154
+0.54750299
+-0.84348041
+-0.97085636
+-0.99470879
+0.94731688
+-0.78528798
+0.33663189
+-0.97737061
+-0.31182939
+-0.93578813
+-0.27786326
+-0.85832824
+0.47566533
+-0.20319897
+0.97014809
+0.40635145
+-0.63388282
+0.34444106
+-0.23402196
+-0.09383714
+-0.42223245
+-0.99621011
+-0.53504762
+-0.90536039
+0.64950681
+0.61570299
+-0.84360185
+0.31950545
+-0.33891588
+-0.80078797
+0.39033580
+0.80141020
+-0.61588210
+-0.79152171
+0.76243198
+-0.25841874
+-0.23633999
+-0.56353161
+-0.65877831
+-0.23563302
+-0.12216151
+-0.34951514
+0.43900824
+0.22947097
+-0.63305372
+0.87290585
+-0.87866885
+-0.31542897
+0.52780509
+0.02297032
+-0.33197534
+0.53907847
+-0.13958681
+-0.03423953
+-0.89321601
+0.35210586
+-0.90994859
+0.65176105
+0.38684738
+-0.16601628
+0.19728577
+-0.60564986
+0.20289338
+0.47090464
+-0.65962026
+0.99186224
+-0.92950128
+-0.35408438
+0.29068510
+-0.99226858
+0.55081393
+-0.45776682
+-0.85362750
+-0.95744062
+0.44911542
+-0.24604469
+-0.54558086
+-0.76274082
+-0.30988892
+-0.76530384
+-0.84736575
+-0.16315733
+0.77731660
+0.36643957
+0.70015816
+-0.50106415
+-0.62760942
+-0.51458431
+0.89772662
+-0.24489934
+-0.18924918
+0.81570890
+-0.89189043
+0.94300758
+0.77635626
+0.32569349
+-0.74075817
+-0.22626526
+0.52811226
+0.28991907
+-0.32400580
+0.96969380
+-0.63377856
+0.36793083
+-0.97383700
+0.77136606
+-0.62660223
+-0.52612147
+0.57313447
+0.17237362
+0.41388406
+-0.69168569
+-0.30328634
+0.04616785
+-0.57648283
+-0.21510351
+0.81236219
+-0.11546743
+0.93138218
+0.48904693
+0.93771327
+-0.70829758
+-0.90696090
+-0.36561173
+0.56355834
+-0.82009092
+0.60250998
+-0.14303523
+-0.05741823
+-0.87067370
+-0.56195417
+-0.58702448
+-0.90503582
+0.83287442
+-0.13440806
+-0.03329700
+-0.64924052
+-0.13614082
+-0.32495183
+-0.75713974
+-0.73611343
+0.45953298
+-0.59352913
+0.15593963
+0.42616572
+0.44189984
+-0.11007294
+0.87626081
+0.28369300
+-0.30506936
+-0.01370422
+0.48234017
+0.75469175
+-0.30641050
+0.22396044
+-0.96690648
+0.65539284
+0.52247607
+-0.80404391
+0.52488166
+-0.88703432
+-0.38539473
+0.19420571
+0.09411639
+0.27590563
+0.44015426
+0.89606730
+-0.80009187
+-0.18180741
+-0.79704361
+0.84686138
+0.95849771
+0.89020744
+-0.50187359
+-0.12172327
+-0.81864896
+0.97014156
+-0.65566418
+-0.60955997
+0.68282863
+0.23432590
+-0.43179255
+-0.97534026
+0.65823388
+0.78737247
+-0.34332991
+-0.49424529
+0.89720285
+-0.01481706
+-0.73304340
+0.46512222
+-0.33059579
+-0.79937616
+0.96232486
+0.81714523
+-0.48878628
+0.35408533
+0.96828747
+0.84351730
+0.24114251
+0.48813856
+-0.62299281
+-0.22973609
+-0.84388559
+-0.35533440
+-0.03875804
+0.74262512
+-0.41538119
+-0.39118612
+0.89351404
+-0.21161354
+-0.31475472
+-0.25924563
+-0.87367488
+0.85874438
+-0.40974665
+0.43959773
+0.33894825
+-0.08705515
+-0.18254673
+0.74880612
+-0.72435433
+0.41972077
+0.31225157
+0.38790345
+-0.68638149
+-0.08294380
+0.08207536
+0.11128783
+0.50331473
+-0.93879269
+0.32612360
+0.42629445
+0.01504576
+-0.59745818
+-0.56752613
+0.93915403
+-0.98568816
+-0.43301511
+0.45697272
+-0.68498099
+-0.24465311
+0.39941669
+0.27395618
+-0.86422440
+0.29348505
+-0.29039258
+0.53210807
+0.37588537
+-0.94916385
+-0.77790812
+-0.93009709
+-0.02813160
+0.96144879
+0.45713091
+0.31597614
+0.07791030
+-0.18397021
+0.67924511
+0.55006802
+-0.79914288
+-0.74980065
+0.01429760
+-0.64801240
+0.16262186
+-0.66105792
+0.06559229
+-0.81443696
+-0.30844277
+-0.52714700
+0.31172454
+0.17058575
+-0.77237400
+-0.91171370
+-0.21845543
+0.38902593
+-0.94591067
+0.52375662
+0.74418831
+0.83978295
+-0.59781671
+-0.47445512
+0.62747383
+-0.75346822
+-0.83060847
+0.32658756
+-0.96247848
+-0.23096323
+0.09809434
+-0.53160632
+0.79199302
+-0.62995553
+0.39792359
+0.21618688
+0.58514273
+-0.72283989
+-0.09225166
+0.23608875
+-0.17610854
+-0.45931786
+-0.38262939
+-0.97377768
+-0.45292920
+-0.96053659
+-0.66143155
+-0.62972429
+-0.56479281
+-0.77339771
+-0.00764966
+0.00178945
+0.73816979
+-0.93187798
+-0.23208660
+-0.93901327
+-0.40524495
+0.76209033
+0.79535437
+0.12376845
+0.95077741
+0.94831979
+0.08451426
+0.29491413
+-0.22289252
+-0.45992744
+-0.82337177
+-0.14722109
+-0.72872871
+0.93575382
+-0.46767962
+-0.33988971
+-0.84995578
+0.76228619
+0.18583417
+-0.14049298
+0.36037099
+-0.63568193
+-0.36691034
+-0.90521697
+0.81460714
+-0.09047294
+-0.73776039
+0.40414762
+-0.81151305
+-0.03300810
+0.87642217
+0.58847630
+0.56082869
+0.72632396
+0.64262378
+0.80520976
+-0.61975226
+0.84961760
+-0.58490682
+-0.53499144
+0.71831810
+0.47259140
+-0.79787260
+0.72463822
+0.68099332
+-0.28005826
+-0.49606621
+-0.09084481
+-0.49503314
+0.63563609
+-0.72207546
+0.45481098
+-0.30811071
+0.85061693
+0.13982463
+-0.63759091
+-0.70170951
+-0.50791958
+-0.36203939
+-0.84480132
+0.17100775
+0.32203650
+-0.17066675
+-0.55557346
+-0.16294426
+0.16524613
+0.38257170
+0.31230795
+0.90431058
+0.19147408
+0.45890009
+-0.60238889
+-0.08423460
+-0.99814382
+0.87940419
+-0.93960557
+0.37963688
+0.12703228
+-0.53303418
+-0.99156445
+-0.63822809
+-0.61835709
+-0.27188057
+0.97921586
+0.24973321
+-0.91065872
+-0.17695040
+-0.21492535
+-0.02328408
+-0.11933470
+-0.38494635
+0.52241063
+0.80303192
+0.83052754
+-0.78777249
+0.82231855
+0.88539410
+0.46712005
+-0.59921739
+0.18718946
+-0.36477214
+-0.42804688
+0.79727960
+0.46462166
+-0.51605698
+0.57658851
+-0.61417305
+-0.06129348
+-0.82795170
+0.22345567
+-0.92093391
+-0.57767290
+0.01183546
+-0.01102728
+-0.29437113
+-0.47985554
+-0.31605196
+0.46145344
+0.29365075
+-0.63528943
+-0.43348098
+0.31370318
+0.10779190
+-0.36309183
+0.39645612
+-0.02827883
+0.46919894
+0.23643053
+-0.80723748
+-0.39816386
+0.89065397
+-0.99645251
+-0.92548142
+-0.46510035
+-0.56835127
+-0.79799697
+0.59365261
+0.35672259
+-0.71898752
+0.83407211
+-0.83548051
+-0.37577879
+0.61698258
+-0.38265514
+0.43378234
+-0.21069574
+-0.71973544
+-0.01221937
+0.67672729
+-0.11131299
+0.96404803
+0.36370492
+0.65283394
+-0.80462718
+-0.36458695
+-0.20933390
+0.96609795
+-0.53460789
+0.41299582
+-0.67061824
+0.76969922
+-0.75314403
+0.59553611
+-0.48845184
+-0.85870771
+-0.92448640
+-0.38979840
+-0.77875704
+-0.15094632
+0.12072396
+-0.07280636
+0.24852467
+-0.78345001
+-0.58000702
+0.90312076
+-0.45234865
+0.55863023
+-0.39041895
+0.79111135
+0.79572439
+-0.99190845
+0.93437314
+0.73202169
+-0.56047070
+0.65349460
+0.52046669
+0.37654996
+0.22014594
+-0.96173656
+-0.16695231
+0.79885530
+-0.05763423
+0.72959340
+-0.98332633
+-0.25184661
+-0.28680068
+0.72734845
+-0.55899522
+0.05833364
+0.48598456
+0.11290002
+-0.43489951
+-0.87141392
+0.88405335
+-0.68641001
+-0.14364827
+0.38905478
+0.78212082
+0.30507362
+-0.12688184
+-0.69642395
+0.11751962
+-0.44906682
+-0.90548254
+0.12851393
+0.31456828
+0.15988016
+0.75656688
+0.23304558
+-0.12629426
+0.15203810
+-0.31547725
+-0.29747790
+-0.68359458
+-0.80234750
+-0.96641564
+0.46951544
+0.89364660
+0.02694869
+0.70621479
+-0.54810321
+0.67888594
+0.59541833
+0.97075582
+0.37563896
+0.35381544
+0.63536704
+-0.36459213
+0.88503122
+0.52954638
+0.67892492
+-0.72583920
+0.47893035
+0.58775663
+0.54685485
+-0.98467396
+-0.82870427
+-0.36747849
+0.62595034
+-0.75624549
+0.17891490
+0.16700315
+0.33777821
+0.95970023
+0.68505764
+0.00161672
+0.77196085
+-0.27023637
+0.33265674
+0.96205628
+0.71428287
+0.68621516
+-0.09017229
+0.74229610
+0.09509766
+-0.66734549
+0.89571297
+-0.92485283
+0.31086707
+0.04260731
+0.61302745
+0.61300766
+-0.19826734
+-0.72923905
+0.58110189
+-0.75610517
+-0.21693701
+-0.11590123
+0.95596468
+-0.70989987
+0.08030105
+-0.19250327
+-0.07788676
+-0.04100549
+0.18860972
+-0.00695574
+0.46585536
+-0.37162089
+0.43882275
+-0.89245392
+0.19513583
+-0.27486008
+-0.88263754
+-0.17193574
+-0.92406563
+-0.35911489
+0.59742534
+0.33482563
+0.65951478
+0.33864820
+-0.95081130
+-0.88720576
+0.34404814
+-0.26932335
+0.17641485
+-0.51206169
+-0.12692171
+-0.96633447
+0.99769008
+0.79141009
+0.96511483
+-0.11096197
+-0.15171897
+0.80801904
+-0.78900950
+-0.22906321
+0.12420559
+-0.93157934
+0.64385521
+0.62946558
+0.90504730
+0.53413248
+0.78127086
+0.24600005
+-0.68279868
+0.59730458
+0.48152757
+0.66833830
+-0.62191612
+0.57890856
+-0.72911987
+0.67282653
+-0.16458488
+0.32472622
+0.37775862
+-0.30446249
+0.59175479
+-0.12685823
+0.41867340
+0.84012437
+-0.69859120
+-0.48843408
+0.21588850
+0.04453945
+0.48691297
+-0.31935436
+0.88613522
+-0.80046719
+0.32097685
+0.37162399
+0.97280216
+-0.39854366
+-0.48127490
+0.65302145
+0.03944468
+-0.24640995
+-0.53066984
+-0.89036799
+0.44771862
+0.51458681
+0.55123448
+-0.57034659
+0.42778170
+-0.38547790
+0.26824963
+-0.30225331
+-0.15198445
+-0.57266167
+0.29682088
+0.79769611
+0.46101320
+-0.65543309
+0.07306385
+-0.94132931
+0.89896452
+0.46006560
+-0.24537033
+0.91690075
+0.73771608
+0.99140465
+0.21601605
+-0.17264342
+0.44227517
+0.45269358
+0.12832212
+0.62275076
+-0.37297279
+-0.65757647
+0.50161207
+-0.73688561
+0.61987746
+0.93290222
+-0.40022922
+0.37854540
+0.12079859
+-0.47001678
+-0.60714847
+-0.69879019
+-0.17128134
+-0.16338098
+-0.08513528
+0.39191103
+0.38656497
+0.06696928
+-0.20516109
+-0.10094422
+-0.80616629
+-0.76148514
+-0.89618245
+-0.11407572
+0.46352315
+0.12548470
+-0.52867272
+-0.04856789
+0.55179405
+0.91388786
+0.22994411
+0.72346520
+0.95389628
+0.34714079
+0.10582399
+0.38170099
+0.12868345
+-0.90250015
+-0.23092997
+-0.67039645
+-0.63819170
+-0.67037719
+0.39077067
+0.03348303
+0.60407650
+0.15726006
+-0.43117189
+-0.37496275
+0.85614514
+0.09157193
+0.53203571
+-0.55180132
+-0.65686107
+0.31517911
+-0.06926680
+0.08680344
+0.44655478
+0.59517944
+0.64989424
+-0.69184273
+-0.73359391
+-0.61420265
+-0.85454723
+-0.89310230
+0.66214073
+0.56829691
+-0.83912897
+0.03295434
+-0.02401644
+0.24435294
+-0.25958711
+-0.17394966
+0.78361380
+0.79883349
+0.00918150
+-0.75094354
+-0.43233299
+-0.71587166
+0.92197382
+0.48300993
+-0.39032936
+0.01383400
+0.22148812
+0.62698364
+0.61127281
+0.58454812
+0.91650820
+-0.76897271
+0.04991651
+0.53816044
+-0.94726960
+0.87108982
+0.28030515
+0.10282588
+-0.33943480
+0.34959733
+-0.04130751
+-0.98219262
+0.70706081
+-0.00112522
+0.56886983
+0.38183749
+-0.18742335
+0.80575454
+-0.36815745
+-0.60490415
+0.64796567
+-0.32951552
+0.11254287
+0.00838232
+-0.04874790
+-0.63461950
+0.53988218
+-0.37514633
+-0.63281587
+-0.81945831
+-0.36647767
+0.88314474
+-0.21665472
+-0.53761461
+0.41729152
+0.27762187
+-0.68780911
+-0.85603794
+-0.94950721
+-0.37505662
+-0.53861597
+-0.69099271
+-0.43138295
+0.28757012
+-0.44726568
+0.63388741
+-0.20618224
+0.33875144
+0.52737439
+-0.77505022
+0.51302552
+0.96977413
+-0.72018534
+0.97699118
+-0.85755679
+-0.41054875
+-0.22665036
+-0.72064003
+-0.43038201
+-0.11097080
+-0.26985556
+-0.15135980
+-0.17388737
+0.89682996
+0.84676671
+-0.69113302
+-0.15086281
+-0.69871750
+-0.41595721
+0.94523001
+-0.83886696
+0.97548568
+-0.27898854
+0.69035769
+0.84703028
+-0.16545355
+0.39908516
+0.56717801
+-0.67524731
+0.65055096
+0.77715898
+-0.50980526
+0.69108760
+0.65826142
+-0.22413844
+-0.66534576
+-0.97790043
+0.97538805
+-0.42461175
+0.12830055
+0.89862645
+-0.98645124
+0.79436028
+-0.59252295
+-0.21593994
+-0.22436941
+0.23336458
+-0.97434358
+-0.84298791
+-0.48775065
+-0.85798159
+-0.92849411
+-0.38038540
+-0.06408864
+0.86609006
+0.60829496
+-0.10851783
+-0.00394475
+0.28543127
+0.58883548
+-0.77984591
+-0.52395341
+0.71560478
+-0.19129258
+-0.54655221
+-0.87252465
+0.36093438
+-0.26979983
+0.73630893
+-0.29686612
+-0.83269913
+-0.98103589
+-0.43592608
+0.20640230
+-0.21776515
+-0.66785794
+-0.65967375
+0.71510589
+0.22022879
+-0.17546242
+-0.85001169
+-0.06443655
+0.36176872
+-0.86138296
+-0.57596326
+-0.73955554
+0.00120437
+-0.45294678
+-0.30921948
+-0.99005567
+-0.52020031
+-0.30934232
+0.74967349
+0.18956769
+0.21767783
+-0.65669432
+0.95457363
+0.72147560
+-0.11241758
+-0.53687391
+0.71773171
+-0.52750936
+0.14706051
+0.97788525
+0.07003021
+0.79022598
+0.23561096
+0.61988926
+0.82680964
+-0.05129844
+-0.46717566
+0.62861574
+0.99559569
+-0.99359286
+0.20509851
+0.85579216
+0.70729840
+0.70451391
+0.34844458
+-0.80680358
+-0.11316448
+-0.70172897
+-0.44969654
+0.00797272
+0.25725758
+0.87293398
+0.74000430
+-0.01115471
+0.12208331
+0.98058271
+0.35135400
+0.81887102
+0.52775896
+0.10269141
+-0.55549470
+-0.48950642
+0.59467292
+-0.84188640
+0.39451706
+0.25265801
+-0.80111763
+0.99772024
+-0.70679933
+0.11276913
+-0.37421286
+-0.20205325
+0.04822588
+0.08970416
+-0.02795374
+0.39120352
+-0.89480685
+-0.72330290
+-0.84436417
+0.37175477
+-0.32646251
+0.65699673
+-0.44083995
+-0.27451366
+0.34036827
+0.62226474
+0.11684549
+0.14515817
+-0.43474823
+-0.40381455
+0.08715272
+0.64974117
+0.79064751
+-0.54002905
+0.03382039
+0.98766911
+0.13395786
+0.84918165
+-0.25551796
+-0.25436354
+0.75712931
+0.47604644
+0.01921618
+0.47285724
+-0.23465395
+-0.71595815
+0.30989182
+-0.37287849
+-0.37232447
+0.95779407
+0.69988596
+0.78500557
+-0.22365886
+-0.70439780
+0.58801305
+0.77731824
+0.33989286
+-0.92193069
+-0.06206936
+0.31477511
+0.08682156
+-0.84198169
+0.07403255
+0.71720970
+0.03338850
+-0.34330559
+-0.47434890
+-0.85419011
+0.05755723
+0.17759943
+-0.47071266
+0.63128030
+-0.59207770
+-0.65060526
+0.91881025
+-0.59425971
+-0.54021215
+-0.08817708
+-0.02751106
+0.70379496
+0.16784072
+-0.82503502
+-0.52868482
+-0.94377206
+-0.20459491
+0.17204356
+-0.66615224
+-0.20590031
+0.71740568
+-0.56484893
+0.60898054
+0.17358649
+-0.61149564
+-0.21761024
+0.90639901
+-0.28183603
+0.81666803
+0.91373968
+-0.43948597
+-0.12876630
+0.32311201
+0.39315939
+0.34588313
+0.99265104
+0.53604235
+0.06205899
+-0.21881279
+0.53041631
+-0.08425100
+-0.14600459
+0.59922971
+-0.32923769
+0.72513274
+0.67758387
+0.33281674
+0.99490815
+0.10698084
+0.25169760
+-0.01355632
+0.40137908
+-0.04941390
+-0.04288380
+0.26214436
+-0.35298271
+0.63600711
+-0.40394854
+0.65139611
+-0.88591020
+-0.03669021
+-0.53153271
+-0.83487435
+-0.31743232
+-0.12688761
+-0.64348594
+-0.38026444
+-0.06758654
+-0.05342832
+0.70270961
+0.75437562
+0.78256425
+-0.95275793
+0.50819344
+-0.22643795
+-0.82698092
+-0.43748897
+-0.70314559
+0.68265402
+-0.65237123
+-0.78639702
+-0.08451462
+0.12118256
+0.29768550
+-0.52929175
+0.39113319
+0.97292280
+0.69457376
+0.81932652
+-0.31742632
+-0.94540464
+0.96214998
+0.47426069
+-0.38400793
+-0.67306146
+0.33175027
+-0.35877836
+-0.96571208
+-0.77556846
+0.44242620
+0.83674383
+0.17910242
+0.90656614
+-0.90476628
+-0.09343296
+-0.04126847
+0.60695138
+-0.30450064
+-0.18750354
+0.23150605
+-0.63735373
+-0.39874360
+-0.79100313
+-0.12395649
+-0.46190944
+0.86499201
+0.50342135
+0.35397363
+0.18646688
+-0.20718205
+0.22371492
+0.24142211
+-0.99869261
+-0.12300435
+0.67496950
+-0.98053975
+-0.07039026
+0.98621768
+0.94565443
+-0.24248714
+0.68971781
+0.32871207
+0.35878136
+0.93545623
+0.59245828
+-0.16114599
+0.74764421
+-0.82523259
+0.21667377
+0.63457566
+0.17773132
+-0.37286386
+0.93251564
+0.64085312
+-0.30657616
+-0.06566006
+-0.31662939
+-0.47603160
+-0.44277539
+0.30752140
+0.94122068
+0.92447754
+0.27062823
+-0.96286064
+0.61155096
+-0.21676600
+0.85185313
+0.75544596
+0.99141729
+0.30018032
+-0.71522701
+-0.64896360
+0.46387887
+0.79243624
+0.67248130
+-0.63184938
+0.88136983
+0.46512127
+0.53273630
+-0.14442974
+0.51748490
+0.34248960
+-0.11050355
+-0.69597661
+-0.90157421
+-0.61964047
+-0.18395084
+-0.94533474
+0.69138396
+-0.72012138
+0.04073918
+0.80984306
+-0.36826801
+-0.11663109
+0.39823186
+0.08259976
+0.80362177
+0.66137421
+-0.82496683
+0.66896546
+-0.70946470
+0.00082576
+-0.17394620
+-0.62305585
+0.80084777
+-0.19939762
+0.84741747
+0.57762289
+-0.94886928
+-0.64329973
+0.68405735
+-0.45371252
+-0.37834287
+-0.85043845
+0.09636068
+0.27551663
+-0.72041458
+0.09252751
+0.51855385
+0.39631176
+0.43572867
+0.22355211
+-0.05354840
+-0.78400189
+-0.80890983
+0.33476782
+-0.70021027
+-0.97300625
+0.12796700
+0.20636404
+0.20201778
+-0.16576356
+0.52088583
+0.09140944
+0.86538267
+-0.01516294
+-0.35331839
+0.32967317
+-0.75546116
+-0.45785731
+0.50889039
+0.61556804
+-0.22847790
+-0.43723971
+0.82884455
+0.23595262
+-0.44151205
+-0.60382155
+-0.37929970
+0.93623054
+-0.00023872
+-0.40166801
+-0.93736130
+0.83451915
+-0.36531061
+0.14133453
+0.20157194
+-0.44766992
+-0.72947890
+0.31191885
+0.98531651
+-0.11072874
+0.65781188
+0.58956754
+-0.58725685
+-0.21530807
+0.01982772
+0.62425983
+0.05295682
+-0.32045895
+-0.96750309
+-0.64014828
+0.67997336
+0.51942623
+0.20267022
+-0.77862461
+0.15059566
+0.15160394
+0.41400814
+-0.56600240
+-0.38914585
+-0.49796194
+-0.34910643
+-0.94886934
+0.22847140
+0.27225935
+-0.34514266
+0.60219562
+0.52934587
+0.73385262
+0.83332324
+0.44589770
+0.96042788
+-0.63700858
+0.53801239
+-0.55829993
+0.10605967
+-0.10804528
+-0.41323888
+0.51187909
+0.03273606
+0.53238940
+0.19851208
+-0.58152980
+0.67685592
+0.35649717
+0.70448780
+-0.57978287
+0.35425746
+0.02442157
+0.04583108
+-0.96745479
+-0.25636947
+0.72149062
+-0.35659307
+-0.89614461
+-0.98638030
+0.64426136
+0.75414658
+-0.38727164
+-0.67741546
+-0.04092050
+0.30850649
+0.22521734
+-0.94896721
+-0.08897334
+-0.93319699
+-0.41822135
+0.24346519
+-0.84737295
+0.21476781
+-0.59252834
+-0.61619502
+-0.80789199
+-0.04758155
+-0.29565477
+-0.32393152
+-0.24170619
+0.58756483
+0.38624763
+-0.04937714
+0.94409549
+0.43458879
+-0.75457959
+-0.62613153
+-0.92316847
+-0.08138603
+-0.52855909
+-0.86805831
+0.32529390
+0.60371089
+-0.11571980
+0.52958858
+-0.85811032
+0.73216546
+-0.56424502
+-0.22416484
+0.74175572
+-0.93963104
+-0.03427434
+-0.47229266
+0.44788945
+-0.61668327
+0.99975419
+0.75480998
+0.15570772
+-0.72952408
+-0.51801178
+0.94282794
+-0.19702291
+0.27937591
+0.33066964
+0.10459197
+0.86951542
+0.93472874
+0.49353385
+0.28599942
+0.45481479
+-0.54126361
+-0.63055706
+-0.76610267
+0.80265248
+-0.68607172
+0.56925905
+0.68864322
+0.13949764
+-0.58772475
+-0.82149205
+0.25109994
+-0.14493483
+-0.89816721
+0.17649269
+0.91077709
+0.50951803
+-0.26993519
+-0.35422635
+0.94860780
+0.40032136
+-0.47619826
+-0.45319510
+-0.48997533
+0.05502367
+-0.21941578
+-0.46762198
+0.37317383
+-0.78323749
+0.30162585
+0.23872399
+0.94380271
+-0.89188713
+-0.04672366
+-0.14944017
+0.82429504
+-0.14020884
+0.59997404
+0.20705819
+-0.59654865
+-0.99676366
+-0.71646714
+0.96588683
+0.89250422
+-0.36695480
+-0.67236596
+0.78656209
+0.87615049
+0.52225864
+0.04735816
+0.27224147
+-0.23019224
+-0.12910265
+-0.17293376
+-0.78603809
+-0.34976268
+0.64970243
+0.87394059
+0.84451640
+-0.20445472
+0.03467333
+-0.14452296
+0.13436830
+0.65731931
+0.74424016
+-0.19329244
+0.47496116
+0.41211689
+0.35933709
+-0.58988699
+0.35578275
+-0.45919693
+0.32928073
+0.64172208
+-0.24267757
+-0.53265214
+-0.30628479
+0.09558761
+-0.99994444
+0.97240424
+-0.05042541
+0.13773954
+0.02398217
+0.91958165
+0.49375868
+-0.40142357
+0.54695201
+0.94866681
+-0.12823308
+0.86121380
+0.96026957
+-0.79442255
+0.01973712
+-0.00430083
+0.95874226
+-0.92844608
+-0.78521618
+0.77670121
+-0.63902605
+0.78937864
+-0.16005749
+0.06617463
+-0.16705310
+0.05115056
+-0.31275600
+-0.33499163
+0.18568885
+-0.81761737
+0.78759170
+0.74349558
+-0.36161083
+-0.91286948
+0.80057156
+0.69671011
+-0.44077682
+0.42283785
+-0.63949591
+-0.52393672
+0.28180575
+-0.86762531
+0.54478359
+-0.44009691
+0.26075983
+0.87923729
+-0.35410112
+-0.85803561
+-0.30672842
+-0.15688848
+0.79189956
+0.15446603
+-0.84607108
+0.41070175
+0.44551504
+-0.64073476
+0.23026538
+-0.22286862
+0.51191235
+0.04934728
+-0.45502877
+0.70162404
+-0.00505334
+-0.79643822
+-0.28612930
+-0.67175204
+-0.50391397
+-0.85845906
+0.92694759
+0.31514132
+0.59456122
+0.33025813
+-0.89149927
+-0.07110155
+-0.09669113
+-0.39329982
+0.65240228
+-0.94722523
+-0.49992138
+-0.36742163
+0.27768612
+-0.49454498
+0.45975912
+-0.85062863
+-0.78413889
+-0.25073600
+-0.25486207
+0.16003180
+-0.94089052
+0.94635141
+0.67894363
+0.47997093
+-0.59255946
+-0.92699887
+-0.62940624
+-0.14025760
+0.58762658
+-0.53462362
+-0.47902584
+-0.74360058
+-0.80877158
+0.14810717
+-0.45436060
+-0.15489197
+0.50896609
+0.96636963
+-0.34437901
+-0.98189576
+0.57012975
+0.17788422
+0.30529118
+-0.50765869
+0.44437969
+0.85615110
+-0.85851006
+0.74590707
+0.33679509
+-0.37358111
+-0.38115537
+0.83615661
+0.45560837
+0.33468008
+0.62404239
+-0.23422700
+-0.48408532
+0.21889210
+0.20093358
+-0.40472794
+-0.61072618
+-0.57049993
+0.87655485
+0.44704950
+0.13486087
+0.74361634
+0.15143681
+-0.79125743
+-0.36398876
+-0.72443721
+-0.86617841
+0.38664293
+0.69742119
+-0.39884478
+-0.93933954
+-0.53409931
+-0.32853055
+0.37667763
+-0.21697277
+-0.71608606
+0.07580197
+-0.37055206
+-0.73739716
+0.03148842
+-0.94650286
+0.84219074
+-0.43710983
+-0.97418049
+-0.03942120
+0.59900618
+0.16143739
+-0.22452515
+0.58035171
+0.57385159
+-0.55318147
+-0.75593421
+0.69039059
+-0.71605635
+0.91718578
+-0.77805026
+0.22400677
+-0.60305375
+0.21260607
+-0.50172892
+-0.93677688
+-0.87136057
+0.58216131
+-0.18096435
+0.95113838
+-0.61336550
+-0.93735433
+-0.99886091
+-0.86219576
+0.88940287
+-0.52610892
+-0.05232799
+-0.27744305
+0.96674621
+-0.97764143
+0.62118173
+-0.67364219
+0.21153271
+-0.72941276
+0.39590502
+0.35910654
+0.54861629
+0.96961749
+-0.40423870
+-0.21691626
+-0.29423457
+0.68171370
+-0.57744417
+-0.02287900
+-0.92643491
+-0.40206617
+0.75880182
+-0.92663538
+0.73304713
+0.36158299
+-0.32218456
+0.14593875
+-0.73947522
+-0.40663803
+-0.35569298
+0.44575691
+-0.47999173
+-0.15272385
+0.63521588
+0.97724032
+-0.85735323
+0.21189368
+0.56529546
+-0.71283358
+0.49320686
+-0.34482729
+-0.06724560
+-0.95535669
+0.93667209
+0.41751003
+-0.54250550
+0.13150895
+0.98543704
+0.91522360
+0.43784320
+0.23537350
+-0.31841940
+0.42479861
+0.32605267
+-0.49750644
+-0.47539705
+-0.58677086
+0.40346491
+-0.98062383
+0.90937316
+-0.61804727
+0.35641301
+0.76448739
+0.70304298
+0.90639877
+0.85277224
+0.54168606
+-0.45085245
+-0.89874407
+-0.58564290
+0.23387682
+0.76620471
+0.86433113
+-0.10172027
+-0.24131441
+0.84003842
+0.21352088
+-0.85265960
+-0.66145012
+0.47658777
+0.26070595
+0.00800884
+-0.91727751
+-0.02000612
+-0.15519851
+0.08352804
+0.39498484
+0.69442248
+0.48895931
+-0.04329747
+-0.40005523
+0.68049586
+0.56658781
+-0.05359113
+0.36106598
+0.48553848
+0.68293142
+-0.16403890
+0.53930509
+0.93426085
+-0.20471722
+-0.92767740
+0.15024352
+-0.77654929
+-0.35888976
+0.56032836
+0.15044630
+-0.45606935
+-0.36486995
+0.62258053
+-0.95201479
+-0.47129917
+0.39158618
+0.63916922
+0.82689333
+-0.94922177
+0.11244547
+-0.52846593
+0.49435210
+0.34523368
+0.11674762
+0.79062951
+-0.20852244
+0.80080938
+-0.69180736
+-0.34343845
+0.24997985
+-0.42784399
+0.04787505
+-0.29568982
+-0.89922284
+-0.98738817
+0.01697564
+0.15263963
+0.75681269
+0.42860770
+-0.09095913
+-0.28906447
+-0.89582521
+-0.47413999
+-0.41732264
+-0.27420706
+-0.13279319
+-0.64439914
+0.13363373
+-0.41371077
+-0.55372545
+-0.89522158
+-0.42187935
+-0.47148824
+0.53196955
+0.15343952
+0.29282629
+-0.16306239
+-0.57026181
+0.46079206
+-0.15175349
+0.25927627
+0.87140369
+-0.75604174
+-0.81035115
+0.28496027
+-0.08362126
+0.66154897
+0.15882576
+-0.72554964
+0.92085302
+0.87482083
+-0.49886703
+0.99334311
+-0.13953257
+-0.40618920
+0.44364333
+-0.59066570
+-0.93598630
+-0.15112662
+-0.20192999
+0.06921113
+-0.03296369
+0.65094006
+-0.62369972
+-0.81206350
+0.41936970
+-0.05931276
+0.17335558
+0.98945343
+-0.42932457
+0.91721666
+0.02653301
+0.09310281
+-0.87279718
+0.26932776
+0.86938357
+0.40746486
+0.73547852
+-0.92832150
+-0.08632147
+-0.21912622
+0.98637795
+-0.80443963
+0.77338278
+-0.76701719
+-0.76797450
+-0.30550951
+-0.51047176
+0.20925903
+-0.14271659
+0.95416939
+0.92805135
+0.63810921
+-0.77031754
+0.69350243
+-0.72962293
+-0.02383143
+0.09248781
+0.58691514
+-0.84772140
+-0.39339769
+0.58500361
+-0.55770880
+0.56085074
+-0.69545829
+-0.06197625
+0.04711223
+-0.40168411
+0.82629573
+-0.53512993
+-0.44199240
+0.20681119
+0.90843976
+0.20120502
+-0.00386465
+-0.03557718
+0.11427939
+-0.85960405
+-0.86939085
+-0.63172016
+-0.17471272
+0.26750457
+0.86793506
+-0.55539662
+0.24894536
+-0.69671610
+-0.08168691
+0.42306173
+-0.68383735
+0.53338623
+0.25653327
+0.09536743
+0.29035234
+0.87812066
+0.36765754
+0.47923374
+0.72889650
+-0.06358629
+-0.71865910
+-0.01350605
+-0.47181404
+-0.85445800
+0.03071618
+-0.86729725
+0.46501434
+-0.25507420
+0.78134775
+0.25455499
+0.32419682
+0.27244759
+0.99488926
+0.91310072
+-0.02011293
+0.03288746
+0.05001926
+-0.18085784
+0.09157121
+0.25042629
+0.55582726
+-0.20228028
+0.68946278
+-0.58389395
+0.49634194
+-0.45651311
+-0.27784067
+0.22425950
+-0.02956647
+0.71512234
+0.57574463
+0.11461866
+0.13481271
+0.40083909
+0.52942383
+0.44165969
+0.02594280
+-0.93953745
+0.74020767
+0.59217024
+0.09322119
+0.68102014
+-0.32224613
+-0.79976855
+0.84660339
+0.44720829
+0.21180260
+-0.63422942
+0.48668742
+-0.60844174
+0.98751235
+0.43602681
+0.44228697
+0.28290427
+0.41196239
+0.56172192
+-0.75356044
+0.12914896
+0.84457779
+0.20894408
+0.41808701
+0.00555050
+0.19921505
+0.00677633
+0.76712978
+-0.05325341
+0.30588877
+-0.12543529
+-0.29183835
+0.05773735
+0.08849216
+-0.78181729
+-0.82969610
+0.92801356
+-0.30706173
+-0.61676100
+-0.15612894
+0.41556263
+0.71685839
+-0.46144104
+0.58634734
+0.83664548
+-0.40193659
+-0.35139072
+0.90951431
+0.85071671
+-0.22698522
+-0.58178088
+-0.72522196
+-0.82705668
+0.54564011
+-0.07682258
+-0.47886050
+-0.97648368
+-0.20042294
+0.21586990
+0.03912723
+0.05302739
+0.98013759
+-0.53001499
+-0.57482952
+-0.68676832
+0.74903929
+0.09952772
+-0.22371900
+-0.72321501
+-0.54522255
+0.46576035
+-0.38250399
+0.70517790
+0.40319586
+-0.73400214
+-0.80973990
+0.29011345
+0.13652027
+0.26722455
+-0.39833033
+-0.10137475
+0.56384265
+-0.31454259
+-0.79349177
+-0.38378584
+0.93179703
+-0.17829949
+0.15951848
+-0.41227472
+0.97242725
+-0.18500692
+-0.69309029
+-0.98809237
+0.94644535
+-0.05020666
+-0.57308519
+-0.59332943
+0.51680970
+0.48290920
+-0.37404352
+0.72003686
+-0.67206287
+0.24146295
+0.53886521
+-0.61103410
+0.00771260
+-0.69099829
+0.03608012
+0.08111787
+-0.08673006
+-0.81415804
+0.28972900
+-0.49715030
+-0.95271691
+-0.29969883
+0.97951245
+0.21569395
+-0.92652590
+-0.26525617
+0.54464173
+-0.35038382
+-0.12914938
+0.67260718
+-0.74367926
+0.11303067
+0.79504681
+0.69219762
+0.28410449
+0.91448528
+-0.89818520
+0.71790451
+0.66290419
+0.90238604
+-0.74558521
+0.73057992
+0.74900714
+0.24136704
+-0.16719214
+-0.96993191
+-0.34904012
+-0.09861541
+0.72976558
+0.06873891
+-0.48137079
+0.99972506
+-0.60890263
+-0.15392286
+-0.45730932
+0.81825793
+-0.23786472
+0.46724975
+-0.73909953
+-0.68033928
+0.21303359
+-0.55721415
+0.29615373
+0.55854529
+0.31233325
+-0.66304922
+0.84263471
+0.27275604
+0.36833672
+-0.18513844
+0.81486549
+0.42847795
+0.12467984
+-0.37856263
+-0.36982423
+-0.79714967
+-0.36318511
+-0.59348682
+0.79025316
+-0.05233788
+0.34029436
+0.87432003
+-0.95713515
+0.22689235
+-0.55015522
+0.31322300
+-0.35584372
+0.46189344
+-0.08877820
+-0.95286242
+-0.67687830
+0.40682840
+0.12540400
+-0.74940392
+0.81116545
+-0.27947128
+-0.99722794
+-0.89001930
+0.52211702
+0.28968978
+0.19003212
+0.62694502
+-0.55563289
+-0.97838870
+-0.72923986
+-0.47629154
+0.04718105
+-0.37726122
+-0.03671171
+-0.00784317
+-0.86737297
+0.96912987
+0.40762952
+-0.59170223
+0.66457502
+-0.60198855
+-0.03311705
+-0.45073623
+0.52573260
+0.89377027
+-0.89604057
+0.94168487
+-0.89537269
+0.52045160
+0.38300635
+-0.23916072
+0.58644608
+-0.55795169
+0.94790737
+-0.81184787
+-0.07044814
+-0.91474738
+0.85915223
+-0.76307758
+-0.80991810
+-0.52682775
+0.10774175
+0.46840507
+-0.58426775
+-0.90057524
+-0.71152518
+0.26844759
+-0.37758228
+-0.55250144
+-0.24406028
+-0.08373743
+0.65043592
+0.89320493
+-0.77411404
+0.14960623
+0.22136188
+0.69300890
+0.28853679
+0.49817872
+-0.07011765
+-0.19617319
+0.49998724
+0.00488591
+-0.06701487
+-0.94541373
+-0.24466366
+0.00013208
+0.02881694
+0.24055052
+0.50623250
+-0.02515823
+0.61242199
+-0.05827188
+-0.28195107
+-0.73905948
+-0.80185319
+0.24012327
+0.21695173
+0.45362711
+0.25199091
+-0.52941340
+-0.69395468
+0.80417681
+-0.18638146
+-0.27134532
+0.86748850
+-0.71169654
+-0.45700300
+0.01988387
+0.79757929
+-0.15047991
+-0.28330398
+0.66339195
+-0.90573485
+0.79349077
+-0.03003448
+-0.20994312
+0.85987878
+-0.70428175
+0.50560927
+-0.88790865
+-0.54570219
+0.10251451
+-0.68491378
+-0.83591966
+-0.23759186
+0.57835352
+0.42382967
+0.15594816
+-0.53058305
+0.26685965
+0.01290047
+0.37555921
+0.37083673
+0.03757823
+-0.04477125
+-0.27854902
+0.69283617
+-0.61795640
+-0.79819365
+-0.19122368
+-0.61501122
+-0.28902733
+0.48009503
+0.46457231
+0.78590572
+-0.11876225
+0.00787342
+0.05710328
+-0.73565727
+0.77419925
+0.21563423
+-0.09770501
+0.51389062
+-0.65606308
+0.61978602
+-0.73987910
+0.67286932
+0.12584782
+-0.26076996
+-0.77275734
+0.06311548
+0.09092784
+0.02337861
+0.47297812
+-0.47217578
+0.22876418
+0.25724196
+-0.80057974
+-0.93004283
+0.60392201
+-0.40027100
+0.27727222
+-0.98714221
+-0.35337478
+0.82683158
+0.61557364
+-0.99034937
+0.08998644
+0.53763676
+0.66848063
+0.37787437
+-0.75998630
+0.80210173
+-0.42805821
+-0.76623890
+0.19452488
+0.62706292
+-0.40350515
+0.31592488
+0.96546805
+0.40332890
+-0.21859676
+-0.41201055
+-0.22029644
+-0.44316483
+0.84853756
+-0.97219805
+0.90355051
+0.51609492
+-0.33957523
+0.63692415
+-0.17243642
+0.84466529
+-0.93526905
+0.94589210
+-0.43019140
+0.78045523
+-0.85603119
+-0.66314000
+0.74233627
+0.00683320
+0.03203893
+0.65430951
+0.00336015
+-0.53687683
+-0.91173422
+0.15827465
+0.09227288
+-0.24219251
+0.93516898
+-0.67740083
+0.04610097
+-0.94588080
+-0.16786492
+-0.29501510
+0.68692183
+0.25055611
+-0.91853837
+-0.84897535
+0.65114260
+-0.49868226
+-0.98626948
+-0.02783865
+0.17594695
+0.18266833
+0.59703767
+-0.24567187
+-0.35375303
+0.34764826
+0.28413844
+0.33880365
+0.64860845
+0.20806813
+0.71520579
+-0.75849125
+-0.50580496
+-0.78360246
+-0.11142963
+-0.25638270
+-0.07399350
+-0.18147182
+-0.78708303
+0.66105390
+0.60298622
+0.36820531
+0.19593227
+0.34064841
+-0.85785088
+-0.67470571
+0.25577903
+0.32746470
+-0.36221045
+0.78926182
+-0.14344239
+0.25992441
+0.50049257
+0.13186693
+-0.93554342
+0.41685486
+0.73783314
+-0.60465902
+-0.57173252
+0.31045139
+-0.45544732
+-0.70831311
+-0.48958850
+0.80751324
+0.27565289
+-0.53280631
+0.66258788
+-0.83421265
+0.43428040
+0.57918215
+0.56094456
+0.40767860
+0.03629839
+0.63175964
+0.58011544
+0.86503565
+0.43380809
+-0.72396269
+-0.30907619
+-0.10500532
+0.90667629
+-0.21789062
+0.28775382
+-0.78630584
+-0.49416494
+0.53658867
+-0.15436727
+0.62660527
+-0.31862575
+-0.84891966
+0.44111562
+0.31277502
+0.07921934
+0.43931365
+-0.69803545
+-0.63994199
+-0.01944679
+-0.22756803
+0.86366224
+0.75984287
+0.81443870
+-0.14812905
+-0.98060855
+0.29975343
+0.11134982
+0.20637226
+0.36389554
+-0.05805057
+-0.38436252
+-0.06805998
+-0.84688407
+-0.61586952
+0.77573895
+-0.42507857
+0.16479588
+0.90347159
+-0.05473638
+0.69842541
+-0.87875284
+-0.15535587
+0.46986687
+-0.03871989
+-0.49444318
+-0.38500232
+-0.95044096
+-0.78730196
+0.27925086
+0.93902683
+0.73098803
+0.98682034
+0.52949977
+0.03610218
+-0.07998753
+0.82252192
+0.75029659
+-0.20126814
+-0.91515270
+-0.67460144
+0.65468001
+0.59981883
+-0.70118380
+-0.24679035
+-0.45735556
+-0.82442807
+-0.27640599
+0.14008391
+-0.08818549
+0.22503412
+-0.22456700
+0.28797269
+0.06059635
+-0.77716818
+0.80748343
+-0.75037941
+0.60468447
+-0.17667150
+-0.47625142
+0.00597084
+0.67567599
+0.71906376
+0.63075745
+0.48042011
+-0.79450954
+-0.88662949
+-0.84840982
+-0.78172816
+-0.70914653
+-0.35738456
+-0.55844575
+-0.87102686
+0.74513030
+0.00296724
+-0.23152781
+-0.58678469
+-0.06808233
+0.12934780
+-0.17389333
+0.66063869
+0.14148533
+0.84654105
+0.98857307
+-0.67885768
+-0.66174677
+-0.25845224
+-0.31076705
+0.89119387
+-0.07144183
+-0.52800700
+-0.85415173
+0.96234679
+-0.31117654
+0.64660740
+0.35967577
+0.30019879
+0.19390547
+-0.56212267
+-0.09402895
+0.52770174
+-0.06081498
+-0.32851601
+0.09639776
+-0.83972369
+0.31221592
+-0.12898922
+-0.48643160
+0.72264147
+0.46113801
+-0.55419067
+-0.60796598
+0.05675089
+0.59773529
+-0.77454467
+0.57660568
+-0.00988793
+-0.49790072
+-0.82484671
+-0.07973868
+-0.92735680
+0.76673853
+-0.40297657
+0.80000305
+0.04610121
+-0.97554603
+0.72358131
+-0.67308050
+0.89246082
+-0.45127779
+0.95615065
+-0.24014527
+-0.29863161
+-0.38084960
+-0.72790608
+0.38304842
+-0.20966190
+0.32131004
+0.67261446
+0.04058361
+0.55976033
+0.95713365
+0.87585700
+0.24000227
+0.18297255
+-0.19617927
+-0.70708168
+0.92552364
+-0.69766030
+0.25904405
+-0.16634941
+-0.04979861
+0.71140969
+-0.74538720
+0.47375584
+0.06032097
+0.67718256
+-0.39761680
+0.44269478
+-0.65451276
+-0.49306142
+-0.55703712
+-0.60221004
+0.19135761
+-0.53978071
+-0.57612574
+0.73256147
+0.65831363
+0.43972111
+0.33929646
+0.13160849
+0.98686159
+0.62538457
+0.31999600
+0.48789060
+-0.64889997
+0.24166095
+0.07779133
+0.42505443
+-0.86686343
+-0.64755020
+-0.95226917
+-0.30131620
+0.30937314
+-0.86692339
+-0.03233081
+-0.41700524
+-0.74928471
+0.05190349
+0.67613924
+-0.41784096
+0.81754637
+0.46303928
+0.85897434
+-0.59561071
+-0.07844490
+0.97871292
+-0.03719932
+-0.65729266
+-0.98531811
+-0.41644496
+-0.26052636
+0.51486742
+-0.65762162
+0.90980268
+-0.54973179
+0.47096908
+-0.44123906
+0.22152185
+-0.84319977
+0.56727552
+0.45941150
+0.93497598
+-0.19037014
+0.88106990
+0.21567357
+-0.95546072
+-0.69204396
+0.08900881
+0.54798102
+-0.76754320
+0.85437334
+0.62088263
+0.03347898
+0.32219064
+0.06061614
+0.50596225
+0.93801045
+0.52829075
+0.89915085
+-0.49186158
+-0.02700967
+-0.87997405
+0.92030227
+-0.92375847
+-0.49981219
+0.13765693
+0.48189378
+0.00726569
+-0.95328975
+-0.91441402
+-0.38525212
+-0.87239741
+0.32510948
+-0.14789832
+-0.50167930
+-0.85909113
+0.47939372
+-0.35906959
+-0.56396228
+0.50126219
+-0.04301691
+-0.98239627
+-0.74160039
+-0.61823818
+0.40640855
+0.57520628
+0.24614191
+-0.37982786
+0.73005879
+-0.51738694
+0.15678382
+0.89034629
+-0.19438577
+-0.84256618
+0.82445729
+-0.66329214
+-0.52918044
+0.85070932
+-0.02521110
+-0.28490847
+0.60288489
+0.00955296
+-0.04143524
+-0.38947356
+0.89215839
+0.70614421
+0.93761635
+-0.07608998
+-0.61594078
+-0.02334303
+0.72459841
+-0.58731225
+-0.66164401
+0.85133624
+0.66704750
+0.03451324
+-0.67258009
+0.95208085
+0.54341066
+-0.00626022
+0.92033482
+0.55389619
+0.91155112
+-0.23834109
+-0.67525998
+-0.86604889
+0.85273695
+-0.03992087
+0.93268454
+0.41465151
+-0.29775131
+-0.13647103
+-0.21345460
+0.72784257
+-0.17036271
+-0.33536369
+-0.30116725
+0.66000259
+0.59391618
+0.76817441
+0.39845097
+0.39949012
+-0.27344334
+-0.39623910
+-0.70661360
+0.95569384
+0.10835218
+0.87748754
+0.01697230
+-0.72568846
+0.83555496
+0.17794824
+-0.39001352
+-0.70555273
+0.63573182
+-0.62852469
+0.35219646
+-0.79952100
+-0.29928070
+-0.81933926
+-0.96184311
+0.09650493
+-0.85258906
+-0.29004532
+0.66034591
+-0.09067017
+-0.22166479
+-0.54265937
+-0.57765633
+-0.08380073
+-0.10852599
+-0.51718703
+-0.73617324
+0.75665200
+-0.35408098
+-0.73402491
+0.29541135
+-0.40905935
+-0.16057134
+0.22408354
+-0.95754644
+-0.49153352
+-0.65851268
+0.56793368
+-0.67461598
+-0.52650237
+0.85585940
+0.42452836
+-0.12966627
+0.69842982
+0.08210421
+-0.09793431
+0.82968104
+-0.94828475
+0.02886224
+-0.38669032
+0.73202646
+0.31154311
+0.16669989
+-0.78143393
+0.34750533
+0.68967021
+-0.11138856
+0.28966308
+-0.50660589
+0.23926973
+0.80734313
+0.49407947
+-0.75383344
+0.27743161
+0.09984231
+0.75089824
+0.39309573
+-0.16025090
+-0.34499961
+0.79629230
+0.61702275
+-0.13104552
+0.58615601
+0.74257338
+0.62999928
+-0.75047913
+0.07119119
+-0.55544841
+-0.51546532
+0.82175922
+-0.46196723
+0.69553983
+-0.46743625
+-0.54637566
+-0.49691159
+-0.92439766
+0.89130485
+-0.13286769
+-0.26982927
+0.27418792
+-0.23487133
+0.10672367
+-0.89061469
+0.62451863
+-0.54638079
+0.18751991
+-0.49593270
+0.68747759
+-0.48540294
+0.89418089
+0.82553232
+-0.47194427
+-0.83140546
+0.63515377
+0.16796255
+0.21801209
+0.52183402
+-0.21517748
+-0.65219960
+-0.70076135
+-0.79536588
+-0.19266307
+0.82960856
+-0.94105829
+0.31438720
+-0.89017091
+0.71746123
+-0.66730225
+0.99335074
+0.08282936
+0.15517771
+-0.70947450
+-0.51177081
+0.83818471
+-0.08508515
+-0.77356890
+-0.34218889
+0.88358164
+0.97432625
+-0.02066839
+-0.59691992
+0.03179395
+0.66921842
+0.12317061
+0.98915339
+-0.27780467
+0.31634295
+0.85960889
+-0.10031873
+-0.56393507
+0.56243432
+-0.12367767
+0.42325544
+0.05537021
+-0.56699347
+-0.03628051
+-0.11043000
+0.26780939
+-0.29971606
+0.09332740
+-0.83233219
+-0.52683467
+-0.05755574
+-0.18858343
+0.91352665
+0.57582629
+0.45140147
+-0.61047512
+0.54534447
+-0.78002323
+0.97543478
+-0.03021574
+-0.66937014
+-0.77678093
+0.23661888
+-0.17447674
+0.95901823
+-0.03182328
+0.66140485
+-0.93987358
+-0.43663108
+-0.51502618
+-0.51243344
+-0.34195733
+-0.09892291
+-0.82784158
+0.23540688
+-0.19968301
+0.96685147
+0.42924690
+-0.78807375
+-0.48076898
+0.00333393
+0.15573168
+0.44456398
+-0.72091728
+0.71729171
+0.68153775
+-0.48639649
+0.38913727
+0.84757710
+0.27137136
+0.18761098
+-0.39339364
+-0.67787462
+-0.73300010
+0.58535373
+-0.54941419
+-0.56034479
+-0.14370418
+-0.62821615
+-0.86052749
+0.43889320
+0.52380979
+0.10177612
+-0.06694031
+0.89089763
+0.67275298
+0.91684103
+-0.04060501
+0.24106228
+0.73835146
+-0.00605661
+-0.08182400
+0.38488507
+0.28073323
+0.82965112
+0.46951401
+-0.50152496
+-0.17892903
+0.88037384
+0.15505934
+0.14252365
+0.16098785
+0.74258077
+0.43226290
+0.85052955
+-0.02730232
+-0.23504055
+-0.57281068
+-0.66442108
+-0.30971205
+-0.35391277
+0.32402325
+-0.24761420
+-0.06709534
+0.40239477
+0.84610689
+0.22072351
+-0.13130385
+0.68033385
+-0.27774048
+-0.83368075
+0.41786408
+-0.46683222
+0.06215549
+-0.99161974
+-0.42654943
+-0.38050514
+-0.82477382
+-0.07246041
+0.53419948
+0.78974056
+-0.32730836
+-0.42119116
+-0.82483980
+-0.58773360
+0.77557039
+0.94226110
+-0.80389135
+0.59490681
+-0.98715767
+-0.33894861
+0.73994744
+-0.91928528
+0.37428975
+-0.99236111
+-0.22789079
+0.19396746
+-0.55323783
+-0.67267480
+0.83274496
+0.59010196
+0.48550510
+0.76414299
+-0.59374386
+0.39194894
+-0.16171044
+-0.00163531
+0.20962095
+0.71484780
+-0.93545967
+0.74814904
+0.12237561
+-0.18974948
+0.52914417
+-0.88548821
+0.67755055
+-0.94626933
+0.09856522
+-0.37931341
+0.74548972
+0.59909952
+0.49373877
+0.06187510
+-0.41635692
+0.57335889
+-0.01046193
+0.59218681
+-0.21119648
+0.77315533
+-0.84637386
+-0.72884828
+-0.76371488
+0.85872877
+-0.49968326
+-0.62391677
+0.38843596
+0.57610130
+0.68039584
+-0.05874598
+-0.76896843
+0.34570301
+-0.36290771
+-0.70422596
+0.72060847
+0.00919819
+-0.29016066
+-0.15190530
+-0.68909326
+-0.09742612
+-0.46497512
+-0.82348223
+-0.28486776
+-0.31955040
+-0.59980658
+-0.65059000
+-0.31358433
+0.10811770
+-0.48386562
+0.61461520
+-0.98948077
+0.30104721
+0.58506489
+0.92483389
+0.90760911
+-0.09786856
+0.05767918
+0.51333809
+-0.61892468
+-0.09899944
+-0.18609188
+-0.89192577
+-0.04758146
+-0.16884935
+0.16662662
+-0.28961393
+-0.86881642
+-0.75104767
+0.21772984
+-0.77644320
+0.43847026
+0.43438572
+-0.98711846
+0.98164659
+0.82982902
+0.76911136
+-0.76882083
+0.01512403
+-0.99026313
+-0.71785653
+-0.42120321
+0.01371384
+0.26259513
+0.60483324
+0.28213438
+-0.84054435
+-0.12294569
+-0.43638662
+0.78546447
+0.09725695
+0.41654362
+-0.83803509
+0.96378914
+-0.99409149
+0.33026926
+0.98101887
+-0.32968913
+-0.23243617
+0.88311080
+-0.17944264
+0.24348581
+0.88165367
+-0.58774984
+-0.63328999
+-0.05612367
+-0.51766849
+-0.21747601
+-0.20779121
+0.67463803
+-0.85880747
+-0.40306640
+0.38371658
+-0.62907839
+0.26329863
+0.26216221
+0.70558882
+-0.06827837
+0.51302922
+0.37038040
+-0.18359804
+-0.83175415
+-0.41630477
+-0.45379943
+0.78291368
+-0.21226621
+0.02187359
+0.36905491
+-0.87099652
+-0.06843215
+-0.78082402
+-0.19538216
+0.10980827
+0.58713249
+-0.93414808
+0.17757492
+0.06787261
+-0.34411554
+0.13008530
+-0.14146509
+0.22102212
+-0.13440438
+0.73844564
+0.98678727
+-0.48580993
+0.26288208
+-0.26056493
+-0.62375297
+-0.79306736
+-0.75499041
+0.41156429
+0.07065823
+-0.30285823
+-0.09228977
+-0.59797526
+-0.58454339
+0.13355693
+-0.00317959
+-0.03488879
+-0.49547132
+0.82337194
+-0.54833568
+-0.85569735
+0.94041208
+0.43828767
+-0.27923586
+-0.63372690
+-0.93651008
+0.09483499
+-0.05388483
+0.65191293
+-0.38639438
+0.22029030
+0.12795472
+-0.56462157
+-0.10082901
+-0.46591240
+0.33650601
+0.43656528
+-0.40609717
+-0.62890249
+-0.05330616
+-0.74316537
+0.51785195
+0.30967617
+0.61574972
+-0.95035312
+0.62201464
+-0.83106138
+-0.01442248
+0.31519639
+0.96129096
+-0.83159025
+0.98767674
+-0.83370005
+0.83213592
+-0.70488808
+-0.47497427
+-0.72347999
+-0.47850871
+-0.18781561
+0.76693058
+0.87235439
+-0.54675555
+0.99627757
+-0.80651845
+0.60060990
+-0.23207247
+0.99177778
+-0.58585942
+-0.11799914
+0.61768305
+0.96745694
+-0.76222329
+0.34006238
+-0.68135792
+-0.80060640
+0.42144907
+-0.48591185
+0.31230748
+0.10076427
+0.10102737
+-0.12278497
+0.70932782
+-0.15584898
+-0.53112409
+0.42415977
+-0.41559607
+0.02542627
+-0.76868916
+-0.69812295
+0.24031615
+0.93019152
+-0.97331733
+-0.10294849
+-0.70699754
+-0.27408719
+-0.74174595
+-0.61538213
+-0.48767871
+0.13971782
+0.74179196
+0.59481823
+0.18366766
+-0.06186205
+-0.95214438
+0.31633687
+0.50449419
+-0.33144611
+-0.67670232
+0.95185065
+0.48577893
+0.50679350
+-0.26226479
+-0.96636695
+0.92184460
+-0.80191223
+0.73645353
+0.48762965
+0.69216764
+0.46981454
+-0.37453878
+-0.08189315
+-0.15558022
+0.44214499
+-0.30555350
+-0.91797914
+-0.86220707
+0.28432369
+0.88417923
+0.56965005
+-0.29307264
+-0.03551018
+-0.08064801
+0.95152748
+0.95603490
+-0.56649816
+0.79114008
+0.15856922
+-0.24326688
+-0.81515835
+-0.31777602
+0.65467155
+-0.22815478
+0.61935306
+-0.63911754
+0.77896810
+-0.56158715
+0.68836761
+-0.84314793
+-0.46558118
+0.11644328
+0.02128446
+0.17837858
+0.31148052
+-0.93491948
+0.30661154
+0.03326094
+-0.41009665
+0.07778728
+0.74343634
+0.72563767
+0.82798290
+-0.57564750
+0.60702825
+0.84360623
+-0.21026510
+-0.83761343
+0.99371862
+0.61542070
+-0.36360985
+0.86228347
+-0.07653588
+-0.30833912
+0.64800537
+-0.47314930
+-0.97888774
+-0.76514664
+-0.92592193
+-0.84738547
+0.69196653
+-0.16816282
+0.46392214
+0.55959058
+0.98314703
+0.43704379
+0.20791852
+0.50130379
+-0.99171347
+-0.68867421
+0.64432251
+-0.12938762
+-0.65986973
+-0.72909218
+-0.27206028
+0.93746662
+-0.99779827
+0.98190653
+0.15383244
+-0.99842231
+-0.77907047
+-0.64226294
+-0.79645769
+0.72342646
+0.20323861
+0.00972581
+-0.82341436
+-0.62337062
+-0.47165513
+0.32087922
+-0.94692750
+0.72538853
+0.44565141
+0.83529973
+-0.73145238
+0.44130564
+-0.68137872
+0.38513565
+0.62716115
+0.03397667
+0.19067669
+0.46249521
+0.98836887
+-0.04524940
+-0.45868343
+-0.73400974
+0.82396555
+-0.05676323
+0.32234800
+0.55079031
+0.00020957
+0.18594646
+0.89607239
+0.46198666
+0.40697849
+0.41582656
+-0.04741043
+-0.46807992
+0.42336416
+0.64053047
+-0.35518026
+0.72855198
+-0.60253891
+-0.14681512
+-0.99725445
+0.56634605
+0.54166520
+0.07852006
+-0.74412075
+-0.88176687
+-0.86514714
+-0.82793668
+0.09934628
+-0.24574649
+0.60375619
+-0.83673933
+0.06050706
+-0.35398644
+0.04841864
+0.74880660
+-0.59168112
+0.10614991
+-0.53090781
+0.15869117
+0.65804327
+0.24174452
+0.50712454
+0.85889626
+0.15194738
+0.93981421
+0.81369674
+0.46038938
+-0.17398858
+0.52600276
+0.70921242
+0.06066060
+0.01943696
+-0.37250000
+-0.33754957
+0.07094586
+0.87675846
+-0.60808980
+0.46736419
+-0.01323581
+0.45449817
+0.70759118
+0.36058569
+0.89021647
+0.81680655
+-0.07768440
+0.15951097
+0.13997984
+0.37102127
+-0.02594513
+0.72211266
+0.31198049
+0.14123511
+-0.16758287
+0.60268784
+-0.22726828
+-0.62363762
+-0.51114354
+0.34946907
+-0.91865736
+0.63033259
+-0.66344187
+0.38974547
+-0.60475165
+0.91210592
+-0.18120050
+0.70151508
+-0.65175235
+0.88448548
+-0.77216449
+0.44827592
+-0.22539026
+0.16671824
+-0.27197373
+0.69663870
+0.62984085
+0.46940994
+-0.60272080
+0.35292661
+0.00085127
+0.16628432
+-0.01940536
+0.14275122
+0.84056795
+-0.99773156
+0.43518591
+0.68410242
+-0.63276574
+-0.99255422
+-0.63189614
+-0.92288915
+-0.17818761
+-0.84114966
+0.31115961
+0.22034752
+-0.99943240
+-0.61397514
+-0.44846815
+0.27579618
+0.20869887
+0.81359196
+-0.79453751
+-0.39408189
+0.07795167
+-0.58591768
+0.22566605
+-0.64035758
+0.03987861
+0.31833780
+0.99783051
+-0.61375850
+0.81054831
+0.58939540
+0.02366769
+-0.91080663
+0.78426039
+0.85862529
+-0.44618225
+-0.37147301
+-0.14030522
+0.78551054
+0.85884106
+-0.08466738
+-0.83918786
+0.55521321
+-0.83325811
+-0.76947288
+0.69096375
+0.70533526
+-0.77342175
+-0.59254086
+-0.41632766
+0.93168986
+-0.95268242
+0.25877345
+-0.33546239
+0.16079867
+0.45271552
+-0.94908099
+-0.43093020
+-0.63339731
+0.32598782
+-0.95047899
+-0.17216110
+0.80623698
+0.95928884
+0.80775368
+-0.47511560
+0.31390131
+0.00753450
+-0.38554645
+0.54868805
+-0.82112654
+-0.45033240
+-0.37830424
+-0.55590296
+-0.99703945
+-0.22578800
+0.12149298
+-0.61635804
+0.12495470
+0.73063052
+0.67587876
+0.17355812
+0.25303769
+-0.56746909
+-0.16392225
+-0.69295031
+0.61766481
+0.82544315
+-0.94335966
+0.11054385
+0.93177104
+-0.21747524
+-0.92988954
+-0.39695114
+0.70695877
+-0.20231026
+0.79511082
+0.18500257
+0.20537198
+-0.06690794
+0.42106915
+0.77077305
+0.59139383
+0.93801689
+-0.39043838
+0.93193817
+0.90639484
+-0.28229761
+0.73355138
+0.87953103
+-0.29052109
+0.33170390
+0.63231957
+-0.85753950
+-0.82005303
+-0.07420540
+-0.93925322
+-0.54832825
+0.08461916
+0.39485693
+-0.02031535
+0.94677281
+-0.88741308
+0.86114287
+0.25114536
+0.20565009
+-0.81205294
+0.91975152
+-0.44801027
+-0.24484050
+-0.27750808
+0.44446158
+-0.08109045
+0.29041350
+-0.89921635
+0.60343492
+-0.84815207
+-0.02707362
+0.93376839
+0.73501897
+0.38065982
+0.18613052
+-0.86329857
+0.53582895
+0.51594114
+0.33865702
+-0.45571989
+0.17598677
+-0.22057128
+-0.48900330
+0.42996871
+-0.13793725
+0.16349542
+-0.87931530
+0.59395158
+0.71948969
+0.09062314
+0.12471545
+-0.33561260
+-0.84898019
+0.54929793
+-0.55362770
+-0.99288883
+0.90191233
+-0.16104472
+0.12504721
+-0.22655040
+-0.28480572
+-0.75653754
+0.10781586
+0.58830094
+0.44922340
+-0.74311560
+-0.23131710
+0.01309335
+-0.23815942
+-0.90204561
+-0.77588883
+-0.07091403
+0.00293362
+0.25761569
+0.45494175
+0.68966901
+-0.24787301
+0.28777819
+0.40337982
+0.60657805
+-0.24804744
+-0.56643597
+0.41302876
+0.36441561
+0.39644553
+-0.72779571
+-0.60916167
+0.79900122
+0.38977540
+0.14287996
+0.79893112
+-0.85379973
+0.45606780
+0.59820545
+0.18492806
+0.35615158
+0.31825662
+0.84198511
+0.75278986
+0.01092827
+0.00888145
+-0.35797989
+-0.36951518
+0.09598100
+-0.82444359
+-0.86734749
+0.84289026
+0.05963087
+-0.51649132
+0.93075168
+0.89514542
+0.24169064
+-0.37960184
+0.62609684
+0.43088031
+-0.18828052
+-0.13458645
+0.07646251
+0.94552565
+-0.28328949
+-0.27982187
+0.23756373
+-0.70318505
+0.64588380
+-0.70404577
+-0.62659872
+0.69464338
+-0.04538131
+0.79287660
+0.95963871
+0.48039865
+0.06787765
+0.97939622
+0.51994574
+0.12175202
+0.39737082
+0.04701376
+0.26349270
+-0.52589285
+-0.27037424
+0.39312410
+-0.01955158
+-0.32313830
+0.45270431
+-0.00205535
+-0.72258219
+-0.01040024
+-0.83124731
+-0.49841416
+0.71420681
+0.27735674
+-0.66245925
+-0.34455866
+-0.32753444
+-0.79983839
+0.31893337
+0.33088160
+0.80632949
+0.06463683
+0.69980538
+-0.74418226
+0.40057886
+0.04675794
+-0.50308475
+0.19678771
+0.29002690
+0.37708688
+0.86734915
+-0.36199850
+0.81572652
+0.42011452
+-0.61134091
+0.12272322
+0.22923827
+0.94331396
+-0.01829070
+-0.66483009
+0.42080808
+0.76669943
+0.62601376
+0.64041889
+-0.15314221
+0.31343639
+0.59585452
+0.81135333
+0.24729395
+0.13733613
+0.66338110
+0.89574802
+0.68348300
+0.73717570
+0.75498056
+-0.50817475
+-0.52015999
+-0.68767902
+0.28484154
+-0.50011671
+-0.07479519
+0.84984660
+0.42471826
+0.10076749
+-0.14483470
+-0.55678046
+0.30453014
+-0.05720955
+0.10701942
+0.95850015
+-0.34544456
+-0.13725531
+-0.11429924
+0.66378188
+0.91640949
+-0.11795044
+0.72509229
+-0.92877489
+0.95899642
+-0.97956384
+-0.02780753
+-0.49362934
+-0.20902741
+-0.04049748
+-0.92715535
+-0.66173655
+0.02988279
+0.00862765
+-0.52276456
+-0.57491398
+0.70059335
+0.57956743
+0.91135323
+0.84439540
+-0.42886341
+-0.35843837
+0.00609124
+0.33133173
+0.41320157
+-0.61247227
+0.47433615
+-0.81850770
+-0.06425244
+0.44446433
+0.39110827
+0.65281510
+-0.08373660
+0.02895510
+-0.52727935
+-0.37517059
+-0.23608559
+0.56965005
+0.16201246
+0.63276553
+0.78021491
+0.81098449
+0.59287453
+-0.45342922
+-0.91653623
+-0.48643351
+-0.98209606
+0.07412255
+-0.81076258
+0.16540194
+-0.80863044
+0.01762259
+-0.85113551
+-0.92531762
+-0.26881784
+0.59110069
+-0.43902153
+0.84290349
+0.77607954
+-0.66551393
+0.93187737
+0.68659079
+0.43281531
+-0.32698238
+-0.68040258
+0.62859142
+0.95237732
+0.22610188
+0.11894345
+-0.92102097
+0.81886232
+0.28831935
+0.93883657
+0.35469973
+0.46926916
+-0.85399434
+-0.58989936
+0.08558095
+-0.72308353
+0.22126865
+-0.36486864
+-0.40400004
+0.02158380
+-0.51385215
+-0.26225573
+-0.20746952
+-0.27693504
+0.06714404
+-0.13760066
+0.21502161
+0.08016407
+-0.35288823
+-0.90842434
+0.71197116
+-0.71646178
+-0.49569672
+-0.80056675
+-0.03076881
+-0.39428818
+0.70174563
+-0.28262085
+0.77568865
+0.58622861
+0.67158055
+-0.39675051
+-0.88138644
+-0.86111140
+-0.93481862
+-0.52373940
+0.85868216
+-0.94371300
+0.32690465
+0.19194293
+0.89344895
+0.84944916
+0.97140670
+0.69607389
+-0.92101835
+-0.97449711
+-0.87507265
+0.19345844
+0.35581434
+0.88773179
+0.19366908
+0.09099805
+0.02226436
+-0.09288603
+-0.98374045
+0.64495134
+-0.79500321
+-0.01615751
+0.08652091
+-0.09514564
+0.21628618
+-0.70287228
+-0.49199998
+0.00679481
+0.32243299
+0.58501101
+-0.78102280
+0.96032596
+-0.94213846
+-0.64104524
+0.87697375
+-0.91923951
+0.66454911
+0.52873254
+-0.94486114
+-0.58541280
+-0.76246102
+-0.60471019
+0.29704046
+-0.10957772
+0.74795866
+0.04453290
+-0.10647160
+0.61983693
+0.67687511
+-0.17622709
+-0.69569227
+0.55291724
+-0.29549676
+0.96071947
+0.94924033
+0.76809072
+-0.96580325
+-0.50951186
+-0.68717268
+-0.17996132
+-0.63761109
+0.14524996
+0.85373473
+-0.33068645
+0.13390231
+0.60088480
+-0.29564011
+0.20409179
+0.68266606
+0.48589373
+-0.86828989
+-0.94800373
+-0.00619453
+0.32517540
+-0.76544134
+-0.73723465
+0.88255286
+0.99820209
+0.98714280
+0.62791789
+-0.17543614
+-0.21131420
+-0.43779254
+-0.07307386
+0.60256147
+0.12318504
+0.78759778
+0.84468710
+-0.82137109
+-0.57950121
+0.29323494
+0.05551755
+0.89150655
+-0.31733137
+-0.71639749
+0.95758641
+0.06881809
+-0.35585707
+0.63980329
+0.46712208
+0.57117796
+-0.33488333
+-0.84700273
+0.38504374
+-0.46437514
+-0.68507475
+-0.73697245
+0.19669950
+-0.97831993
+-0.10254908
+0.03977072
+-0.91413046
+-0.47276372
+0.28491139
+0.47121155
+-0.08705395
+-0.69134945
+-0.90684345
+0.33231914
+-0.50287887
+-0.92754392
+-0.40321368
+0.78639579
+-0.00290841
+0.96730864
+0.39409411
+0.72915804
+-0.95321926
+-0.04430360
+-0.77066010
+-0.40932107
+0.14185274
+-0.36168879
+0.16151106
+0.70913112
+-0.14927089
+0.88677311
+0.76212728
+-0.67525184
+-0.15109295
+0.16545033
+0.47581840
+-0.62278348
+-0.33851999
+0.35127437
+0.87679231
+0.19347680
+-0.71753290
+-0.50504640
+0.72414839
+0.90521777
+0.52750659
+0.85175872
+0.36675537
+0.52695680
+0.62358820
+-0.70810035
+-0.95324652
+-0.37965310
+0.26554143
+0.92296183
+0.32184243
+-0.80535063
+-0.08204633
+0.58229744
+-0.70980579
+0.91417933
+0.57975626
+0.26149189
+0.99198413
+-0.30739027
+0.22112691
+0.40732014
+-0.82640253
+0.40863872
+0.50339723
+0.30376470
+-0.36288131
+0.65933718
+0.85009927
+-0.49161848
+0.17409366
+-0.03036453
+0.67277106
+0.56684329
+0.07384689
+-0.20484367
+-0.82039585
+0.64948489
+0.57698447
+0.89561859
+-0.03314674
+0.37770812
+-0.12084446
+0.79273142
+0.83897002
+0.49863771
+0.99711453
+0.52128224
+-0.12013030
+-0.17730998
+-0.57222733
+0.48255393
+-0.02109719
+-0.96265162
+0.95085730
+-0.70286571
+-0.59889698
+-0.56672640
+0.38034886
+-0.06372055
+-0.49977267
+-0.46763761
+-0.80101809
+-0.11471288
+-0.62332674
+0.25942031
+-0.64417464
+0.59607470
+0.76217067
+0.50887847
+-0.83225501
+0.91463280
+-0.20330864
+0.66488338
+0.59483433
+0.52436781
+-0.31049013
+0.87022281
+0.82352984
+0.66656768
+0.98568702
+-0.63245702
+0.32497203
+0.98834240
+-0.69562334
+-0.43848407
+0.14155352
+-0.10463381
+-0.31729078
+0.15558743
+0.37785256
+-0.43448150
+0.97696018
+-0.08201092
+0.58577716
+-0.67543200
+-0.81391830
+0.43800690
+0.00706428
+0.02304522
+0.62090105
+0.93261520
+-0.21641091
+-0.55517377
+0.80227835
+-0.84703321
+-0.88557154
+-0.91750769
+0.45268375
+-0.75474706
+-0.44387412
+0.49202971
+-0.03347913
+0.59136381
+0.27252192
+-0.44344380
+-0.51107729
+0.57996633
+-0.37381565
+0.36316124
+0.02866262
+0.72407894
+-0.82895433
+-0.16963361
+0.07521481
+0.57059530
+-0.36286008
+0.19012821
+0.83677888
+0.62545884
+-0.96753894
+-0.66172162
+-0.46557528
+0.37471795
+-0.86055776
+-0.02753258
+-0.57512063
+0.00855160
+-0.13302493
+-0.59916410
+0.27003241
+-0.57787177
+0.37441218
+-0.93801621
+0.78570092
+-0.79186772
+0.68480921
+0.50610006
+0.53463280
+0.10243297
+0.93818569
+-0.50892460
+0.77181447
+-0.31688875
+0.72720003
+0.26575184
+-0.45741910
+-0.60594609
+-0.92244101
+-0.54257020
+0.83703649
+-0.39664930
+-0.86961743
+-0.27582163
+0.93519020
+-0.22549677
+-0.78007469
+0.67722023
+-0.63924959
+0.78934205
+0.00839329
+-0.82748207
+-0.94814652
+0.80945122
+-0.51715982
+0.65830660
+-0.03011280
+0.94160354
+-0.89779367
+0.48824537
+0.33212936
+0.69433033
+-0.57014865
+0.94411016
+-0.42079616
+-0.59776530
+0.79329121
+0.46539462
+-0.16022480
+0.01000881
+0.08293164
+0.74922621
+-0.14468312
+0.95695591
+-0.15940022
+0.34470665
+-0.63006374
+-0.78391688
+-0.85768370
+0.88670218
+-0.03806525
+-0.45458597
+-0.91297291
+0.57596111
+0.26495051
+0.75266755
+-0.02029866
+-0.26040232
+0.17708802
+-0.25401175
+-0.15871561
+-0.44980711
+0.58229363
+-0.51895115
+0.31966102
+0.16600347
+0.97025049
+0.69078338
+-0.12853569
+0.06860471
+-0.66397446
+0.79055572
+0.66744399
+0.63987446
+-0.60355803
+0.08105302
+0.40467334
+-0.50621578
+-0.29787886
+-0.06664848
+-0.45457143
+-0.11566901
+-0.77898514
+-0.43564820
+-0.90226293
+-0.20445764
+-0.78535013
+0.97651267
+0.71966147
+-0.17033505
+-0.86036156
+-0.83848892
+-0.78244251
+0.16548574
+-0.56559050
+-0.30030662
+0.28508151
+0.40797377
+0.96956730
+0.32240474
+-0.91926336
+0.82174408
+0.66392028
+0.14687324
+0.86724532
+-0.19626135
+-0.23234832
+-0.75313190
+-0.92623284
+-0.36150056
+-0.40621138
+-0.63812336
+-0.14546627
+0.04884577
+-0.12723893
+0.96791196
+-0.12945038
+-0.46889412
+-0.30901790
+-0.93100585
+-0.03896219
+-0.63546869
+0.32227075
+-0.92052224
+0.89827645
+-0.67851526
+-0.96706466
+0.30642378
+0.82324469
+0.94371974
+-0.23887318
+0.71489668
+0.76257479
+-0.44875634
+0.12489402
+-0.41913402
+-0.41652429
+-0.00323832
+0.09160435
+-0.47162622
+0.08138704
+0.78728080
+-0.91787504
+0.80229640
+-0.07483095
+0.22667944
+-0.12959969
+-0.75429727
+-0.26434016
+0.29227483
+0.85756755
+0.33432651
+0.42950189
+0.83207262
+0.36315560
+0.25844443
+-0.32692927
+-0.10445148
+-0.13971925
+0.79421175
+0.97407579
+0.61099803
+0.75185025
+0.18044853
+0.35782516
+-0.33638036
+0.11610615
+0.04921889
+0.47520125
+0.25195873
+-0.77388562
+0.56043196
+0.26265991
+-0.66516092
+-0.24332631
+-0.28761053
+0.87613475
+-0.59159157
+0.83507037
+0.56903183
+0.39334512
+0.30365741
+0.96894944
+0.65753913
+-0.76628895
+-0.13379014
+-0.44289947
+-0.10009074
+0.97434235
+0.07434928
+0.03867662
+0.42909408
+0.51740634
+-0.76885226
+-0.19323266
+-0.53672099
+0.40989840
+0.27274930
+0.20466208
+-0.72596106
+0.12818289
+-0.73759803
+0.55946279
+-0.09883672
+-0.66210693
+-0.16218358
+0.74845314
+0.41236126
+-0.39664674
+0.03220105
+0.08597231
+0.79532623
+0.75126874
+-0.78909183
+0.77626050
+0.66866827
+0.92457378
+-0.74018916
+-0.93205774
+-0.58195195
+-0.55868849
+-0.23547673
+-0.08883840
+-0.29456830
+-0.86186540
+-0.50702909
+0.74697673
+0.73249960
+-0.17599207
+-0.07233173
+-0.79637289
+-0.59336376
+0.14160824
+0.38039672
+-0.17790860
+-0.49965495
+0.79050791
+-0.87436850
+-0.59030503
+-0.66613165
+-0.00200337
+-0.06747550
+0.63212681
+0.48480415
+0.89786530
+-0.37328500
+0.47987819
+-0.65512121
+-0.16351366
+0.29961812
+0.80896139
+-0.05772102
+0.38048363
+-0.11124355
+-0.43769950
+0.69875872
+0.13885510
+0.20448017
+0.06121266
+-0.12446791
+0.94681823
+-0.51612514
+-0.82953577
+-0.47614115
+-0.47930431
+0.65789914
+-0.05088902
+-0.49162632
+-0.72679615
+-0.87985474
+0.01379406
+-0.95040452
+-0.72892877
+0.56596684
+0.94979715
+0.77723753
+-0.27703309
+0.45230174
+-0.33051598
+-0.66761872
+0.10636318
+0.72520185
+0.69053221
+-0.79609343
+-0.86608462
+0.61869526
+-0.83359338
+-0.28163677
+-0.38517845
+0.01577973
+0.98787165
+-0.17342347
+0.01712596
+0.55005908
+0.83159685
+0.14328492
+-0.81604877
+-0.79358532
+0.81493950
+-0.75687793
+0.86202395
+-0.52850252
+0.46788335
+0.02908432
+-0.27486748
+0.08612955
+0.70194316
+0.12848651
+-0.57009512
+0.88468814
+0.12109160
+-0.81786144
+-0.91799168
+0.31788754
+0.82733381
+-0.50393736
+-0.47056997
+-0.32229102
+0.42159534
+0.16313183
+-0.68155599
+-0.91361009
+-0.51678234
+0.00362551
+-0.65719861
+0.50247765
+0.51310623
+-0.94965615
+-0.85090031
+0.64500237
+-0.90868827
+0.41909194
+-0.11844420
+-0.28840899
+-0.42314458
+-0.78318156
+-0.89839827
+0.82511294
+0.29471231
+-0.40218157
+0.60584509
+-0.41924584
+-0.16393071
+-0.66095367
+0.99654806
+0.06812930
+0.63008583
+0.52236009
+0.72940648
+0.65215731
+-0.34943175
+-0.71121529
+-0.54949230
+-0.54741055
+0.91887224
+0.92718768
+-0.59920260
+0.45933402
+-0.18173981
+-0.49888051
+0.10927606
+0.37744355
+-0.48957664
+-0.46922523
+0.57009268
+-0.25106788
+-0.57943058
+0.56073785
+0.51498318
+-0.07501513
+0.21648061
+0.03770602
+-0.22731447
+-0.70255357
+-0.05589259
+0.35926127
+-0.96912840
+0.01222897
+-0.91372646
+0.33549714
+-0.97894828
+-0.04166120
+-0.30737150
+-0.36727035
+-0.42498136
+0.94045794
+0.84885991
+0.01218998
+-0.74283698
+0.79178202
+0.30132985
+-0.23039740
+-0.42207062
+0.81960797
+-0.54695046
+-0.37116492
+-0.86387268
+0.55966604
+-0.43158615
+-0.05532223
+0.08106208
+0.23606694
+0.91049719
+-0.91890758
+0.85160053
+0.32197750
+0.84827065
+0.43639517
+0.19577324
+0.39404738
+0.97840095
+0.05025649
+0.95151746
+-0.09019601
+-0.23025239
+0.82032692
+-0.95307689
+0.39651561
+0.79218507
+0.31709528
+0.32277977
+0.67550683
+-0.85814622
+-0.66307357
+0.09528732
+0.53183806
+0.77142680
+0.30606818
+0.42983592
+0.32659602
+-0.86927888
+0.03709781
+0.67720973
+0.90102077
+0.74958086
+-0.06834096
+0.32839322
+-0.44345236
+0.68115926
+0.81102145
+0.89938557
+-0.04012334
+-0.00240594
+0.05833888
+-0.71449071
+0.25596619
+0.82645929
+0.45929861
+0.77949512
+-0.09296280
+0.45110202
+-0.74523333
+0.95557129
+0.05061877
+-0.07958221
+-0.20827699
+-0.87534006
+0.74950304
+0.78461438
+-0.30515465
+-0.13610858
+0.73030655
+0.83599481
+0.75151004
+0.98288603
+0.03767661
+-0.49065173
+0.92091217
+-0.54035729
+0.33109871
+-0.60102004
+-0.93869244
+0.69740054
+-0.39170162
+0.98125989
+0.90390233
+-0.37736255
+-0.94151379
+-0.71070915
+-0.51926559
+-0.80494988
+0.07928848
+0.92061377
+-0.58290976
+-0.83771507
+-0.81608810
+0.70561051
+-0.94957294
+0.75048041
+0.15516984
+0.52301252
+0.38650596
+0.12605774
+-0.19057620
+0.41076899
+-0.89974647
+0.50392234
+-0.21182889
+0.09158885
+0.92518580
+-0.79847883
+0.95155251
+0.09819627
+0.62365007
+0.44629586
+-0.30689389
+0.45792758
+-0.54955009
+-0.47493780
+0.00809515
+0.77804375
+-0.86921597
+-0.27856654
+0.13075089
+0.80895066
+0.22409332
+-0.08141458
+-0.63199466
+-0.45867026
+0.02666199
+0.75507462
+0.83986938
+-0.94416296
+-0.23474896
+0.32529902
+0.15277982
+0.22229290
+0.95552576
+0.07295263
+-0.02847463
+-0.07722175
+0.31191242
+-0.52568993
+-0.32101548
+0.74874079
+0.21349251
+0.80800152
+0.25439894
+0.47063923
+0.11213434
+-0.31083333
+-0.12149411
+0.06978071
+-0.84916474
+-0.02986699
+-0.40022105
+-0.48235315
+0.41788745
+0.97996235
+-0.13540637
+0.71788728
+0.86695170
+-0.51589245
+0.77388906
+0.81960237
+-0.34245855
+-0.05023110
+0.02250195
+0.64973307
+-0.88043346
+0.18550289
+-0.32945365
+0.16332650
+0.75013769
+0.74816513
+0.83430827
+-0.73986885
+0.27729511
+0.52951300
+0.42753339
+-0.02819961
+-0.19165438
+0.90946114
+0.21186543
+0.68867350
+0.89926136
+-0.36043411
+-0.53956306
+-0.17694116
+-0.88805895
+0.52581465
+-0.68950820
+-0.95903493
+-0.68239832
+0.04248869
+0.71136332
+-0.87194386
+-0.85527979
+0.64360273
+0.49209130
+0.72705317
+-0.92086948
+0.82305014
+0.16111541
+-0.46736705
+-0.21535444
+-0.47799742
+-0.64010003
+0.31181931
+0.02723849
+0.66569567
+-0.67285120
+0.48638737
+0.96169162
+0.22522748
+-0.18951154
+0.50745511
+-0.15967453
+0.37576091
+0.67681575
+0.54023087
+0.32352865
+0.32691562
+-0.35223854
+0.47894847
+0.61438811
+-0.15641874
+0.53351223
+-0.72165924
+0.22593594
+0.16249204
+-0.42781931
+-0.09678000
+-0.11897933
+-0.60022238
+0.05442011
+-0.09318864
+0.82284033
+-0.25741678
+0.24749684
+0.02390957
+0.53798854
+0.29257131
+-0.45870638
+0.94352555
+-0.74042785
+-0.39921010
+0.99995816
+0.10497451
+0.48135042
+0.48739254
+0.21431637
+0.27648830
+-0.35012382
+0.90569568
+-0.80631712
+-0.10442549
+-0.07159990
+0.70554638
+0.03679717
+-0.07246131
+0.84983134
+-0.31341535
+-0.52583352
+0.16719007
+-0.45826101
+0.83393335
+0.83471596
+0.88954270
+-0.34502375
+0.58549404
+-0.01868254
+0.19897127
+0.76609790
+-0.09654099
+-0.11643833
+-0.21449274
+0.50042534
+0.77718627
+-0.95606606
+0.11080134
+0.55944204
+0.52237797
+0.25685918
+-0.68298417
+-0.67212218
+-0.30181193
+-0.39328486
+-0.71412060
+0.21800411
+-0.57239446
+-0.36969995
+0.21984816
+0.13561535
+0.42629755
+0.39710641
+-0.01944548
+-0.40523309
+0.96311152
+-0.62596446
+0.34858668
+0.15446770
+0.06658697
+0.72618389
+0.72128487
+0.38219047
+-0.92832860
+0.71682608
+0.42841768
+-0.40605444
+0.42078161
+0.66283095
+0.73576331
+0.41201377
+0.59108782
+-0.79705408
+0.62093782
+0.89573133
+0.07768428
+-0.16667926
+0.86396313
+-0.17229337
+0.80857146
+-0.73696771
+-0.19850183
+-0.23143208
+0.59093738
+-0.06786674
+0.44785738
+0.31775439
+0.32205820
+0.70264316
+0.83981657
+-0.56887186
+-0.98349467
+0.91313899
+-0.51055479
+-0.02049732
+0.98979855
+0.94516945
+-0.57476223
+-0.38358867
+0.05244553
+0.86259270
+-0.45469761
+0.53700519
+0.35010076
+0.74920857
+-0.70449141
+0.65880668
+0.19294202
+-0.60821965
+0.71548104
+-0.73005253
+-0.95000415
+0.37764978
+-0.25879675
+-0.24777734
+-0.57819670
+-0.96735664
+0.23991942
+0.22305584
+-0.25658065
+0.70686030
+0.37427461
+0.27083302
+-0.27797645
+0.45514226
+0.02064037
+0.63488543
+-0.84068972
+0.30634785
+0.26852489
+-0.22804022
+-0.03737080
+-0.72698045
+0.09473431
+0.07720208
+-0.71653044
+-0.67917871
+0.82379735
+-0.03600001
+0.73890781
+-0.90912790
+0.36713099
+-0.11070371
+-0.43905699
+0.52746940
+0.66849279
+-0.75971186
+0.17827988
+-0.66961017
+-0.11617285
+-0.14880127
+-0.17638445
+-0.30172181
+0.99172235
+0.33474326
+0.95480216
+-0.49196708
+-0.99563137
+-0.18467265
+0.77548122
+-0.87180376
+-0.50422698
+0.43824553
+-0.77249867
+0.72003543
+-0.37435430
+0.08002520
+-0.79614219
+-0.92199961
+-0.90224526
+0.82844520
+0.31908345
+0.07021952
+0.87235010
+-0.78997721
+-0.03973305
+-0.15033585
+-0.96200819
+-0.64239478
+-0.83491576
+-0.14899588
+-0.27606302
+0.16371930
+0.48051059
+-0.81613934
+0.87276149
+0.30836248
+0.66371238
+0.08979189
+-0.90997163
+-0.88900319
+-0.21501422
+0.69651270
+0.29677057
+-0.62080795
+0.39480376
+-0.59164047
+0.84482551
+0.05923772
+0.35571659
+0.11609769
+0.17682362
+0.46944451
+0.19365311
+0.52204549
+0.85506761
+-0.93091833
+-0.19630247
+-0.48249435
+0.24819481
+-0.40894592
+0.96717715
+-0.98934480
+-0.71847099
+0.16818249
+0.19568646
+-0.03272104
+-0.45597583
+-0.27317786
+0.58030272
+0.55456948
+0.29139817
+-0.36036956
+-0.49063516
+-0.84751022
+0.86645055
+-0.76414119
+-0.06979805
+0.50883532
+-0.57394609
+0.48991978
+0.00762832
+0.91844416
+0.16203666
+-0.32911742
+-0.18590796
+-0.97178322
+0.11194670
+-0.04299605
+-0.71852395
+0.89085996
+-0.11310834
+0.86275554
+-0.43505383
+-0.39984626
+0.83719945
+-0.75214970
+0.79872167
+-0.12806320
+-0.52973264
+0.64074886
+-0.09524214
+0.29465461
+0.28503793
+-0.36703734
+0.25195438
+-0.58094811
+0.82247430
+-0.99603380
+0.32949850
+0.89193131
+-0.26441627
+-0.33758214
+0.75521034
+0.37891712
+0.36346430
+0.29539839
+0.88661200
+-0.82711415
+0.83765432
+-0.73048727
+0.40319223
+-0.89351569
+-0.83089762
+-0.15921632
+-0.55797318
+-0.68219369
+-0.74794865
+0.23836903
+0.14440116
+-0.29006640
+-0.65799575
+0.10892395
+-0.59845066
+0.80594456
+0.70450413
+0.10918903
+-0.15045625
+-0.07227474
+0.16448891
+-0.33033800
+0.12336028
+-0.26227570
+-0.27543789
+0.03942382
+0.88054168
+0.02692270
+-0.40155411
+-0.97548213
+0.69528365
+0.26783276
+-0.47535455
+0.50480211
+0.42225635
+-0.94844256
+-0.79567644
+-0.34375983
+0.52915692
+-0.79492624
+0.85589743
+0.12416625
+0.44137347
+0.07583296
+0.41423464
+-0.05530989
+-0.70344216
+-0.28179854
+-0.39496017
+-0.35560018
+-0.39923537
+-0.89213759
+0.82748330
+-0.69777718
+0.36096501
+0.89198570
+-0.19568521
+0.48680992
+-0.10811896
+-0.54688660
+-0.68185616
+-0.72294476
+-0.76236380
+0.13348825
+0.13663071
+-0.22324667
+0.56833369
+-0.90884253
+-0.62050873
+-0.95690106
+-0.89886558
+-0.42388068
+-0.59744843
+-0.75140218
+-0.63302535
+-0.59321357
+-0.67984572
+0.25588933
+0.48169392
+-0.62200518
+0.88165042
+0.50152614
+-0.25895004
+-0.50428542
+0.35647607
+0.16870248
+0.64897370
+0.01356435
+-0.38343978
+0.93816948
+-0.73030040
+-0.21188831
+-0.29148984
+-0.08937192
+-0.10634744
+0.17132080
+0.90505779
+0.24725270
+-0.38246173
+-0.82371810
+-0.56175220
+-0.64868009
+0.55875790
+0.74259937
+0.52422178
+0.03131926
+-0.44599044
+-0.99640977
+-0.65036312
+-0.17552930
+-0.98268185
+0.33177841
+0.06086719
+0.26315939
+-0.94757307
+-0.06503260
+0.12444520
+-0.14042282
+-0.73664814
+0.65099120
+-0.75564143
+-0.43381572
+-0.74632668
+0.66222680
+0.22293460
+-0.90273806
+0.44668055
+0.68780017
+0.46504343
+-0.43498296
+-0.12039936
+-0.89740720
+-0.57810518
+0.51018643
+0.58493328
+-0.77922128
+-0.70614466
+-0.30931979
+-0.44759160
+-0.40688372
+0.61624885
+0.97430956
+0.97836554
+-0.95170407
+0.46361196
+-0.15361077
+0.11609244
+0.48957968
+0.51229465
+-0.08221459
+0.29807079
+-0.97759312
+-0.19549149
+0.19105494
+-0.24737298
+-0.86740439
+0.07761955
+-0.59599894
+0.28466654
+0.47320318
+-0.17021811
+0.59658349
+-0.49123883
+-0.14087665
+0.84915543
+-0.15097940
+-0.46364653
+-0.14016354
+-0.60295033
+0.83343089
+-0.93256811
+-0.87625463
+-0.19471687
+-0.35154343
+0.11427295
+0.74315608
+0.67163646
+0.98838711
+-0.04454035
+0.70548403
+0.30641079
+0.36480391
+-0.17175841
+-0.48951226
+0.96860051
+-0.28478515
+0.24852347
+0.99220693
+-0.31603247
+-0.81174475
+0.89444983
+-0.19889683
+-0.15178186
+-0.77853775
+-0.54330185
+-0.69138467
+-0.77874932
+0.48296046
+0.04383564
+-0.26173836
+0.15127003
+-0.03495640
+-0.25194597
+0.08049035
+0.07675207
+0.42794108
+-0.56133142
+0.80902350
+-0.18933988
+-0.27860928
+0.58433461
+0.02153015
+0.57583261
+0.04229653
+-0.17110324
+0.68118441
+0.69587672
+-0.74991387
+-0.32568121
+-0.70924222
+0.18943691
+-0.85753055
+-0.17147237
+0.02396262
+0.02917016
+0.31993675
+0.46007872
+-0.17456388
+-0.76139148
+0.85215998
+-0.35720646
+-0.98977838
+0.38967431
+0.94702864
+0.66798544
+-0.67275098
+0.28518975
+0.17369711
+-0.64150220
+-0.42310745
+0.66451323
+0.43919241
+0.28052366
+-0.89142478
+0.87185693
+0.05699611
+0.05185342
+0.56868637
+0.00762510
+0.49689972
+-0.74177450
+-0.02747887
+-0.77856320
+-0.42198241
+0.97801220
+-0.95063603
+-0.76535745
+-0.41830581
+0.25240362
+-0.71468574
+-0.54249063
+-0.83732471
+-0.39371467
+0.90865159
+-0.65559453
+-0.54317510
+0.62412679
+0.24455678
+0.99635088
+0.81469560
+-0.12912977
+-0.33251381
+0.35444951
+0.43327928
+-0.72212449
+-0.70303050
+-0.92146210
+0.41447008
+-0.75146323
+-0.27626139
+0.68624127
+-0.04418373
+0.74769497
+-0.87831013
+0.92452919
+-0.59663352
+-0.23819453
+-0.17719203
+-0.70257032
+0.13149953
+-0.32043785
+-0.42474490
+0.32596791
+0.90417206
+0.96476412
+0.36588848
+0.97463453
+-0.76922427
+0.71102250
+-0.89854374
+0.38428354
+-0.22049081
+-0.97994768
+0.12640643
+0.69730687
+0.00317883
+-0.76267517
+0.06917477
+0.81249940
+-0.67007136
+-0.65624720
+0.46214890
+0.76872087
+-0.56146744
+0.94871187
+0.97185600
+-0.88564757
+-0.09989011
+-0.80237310
+0.47141290
+-0.91764648
+0.77639258
+-0.05790526
+-0.95537122
+0.61273551
+0.62999928
+0.07494807
+-0.95295009
+-0.78624249
+-0.06732529
+0.26566613
+-0.29068905
+0.83272922
+-0.31739354
+-0.80069272
+0.99151146
+0.29803741
+0.87452996
+0.60290849
+-0.45147544
+0.44137800
+-0.78258210
+0.30101967
+-0.69073269
+0.45633066
+0.89297974
+-0.55805627
+0.76034856
+-0.83854689
+0.85835350
+-0.38129252
+-0.75234696
+0.42442870
+-0.34398127
+-0.33800966
+0.03173864
+-0.15213257
+0.06440318
+-0.79265447
+-0.97199713
+-0.19416314
+0.62475824
+0.90382957
+0.03712249
+-0.25647533
+-0.00549352
+-0.17744315
+-0.95314386
+-0.89860652
+0.91716373
+-0.01987785
+0.93141866
+0.99380958
+0.58588099
+-0.41404271
+-0.31692040
+-0.18716151
+0.37183428
+0.14854503
+0.07441664
+0.43732214
+-0.53811476
+0.21757877
+0.37225962
+-0.36516130
+0.85444534
+-0.12317777
+0.85113215
+-0.47268313
+-0.51930115
+-0.30264163
+0.69837105
+0.91035819
+-0.83690864
+-0.80678555
+-0.70759341
+0.57495761
+0.58164370
+0.02847838
+-0.26889759
+0.44024110
+0.59303224
+0.72468162
+0.75603104
+-0.51660985
+0.57186556
+0.29629087
+0.62443507
+0.00101447
+0.64169633
+0.92911828
+0.59330571
+0.54550624
+0.34960639
+0.68583012
+0.40324700
+-0.18085182
+-0.62416956
+0.70070028
+0.72594357
+0.72044921
+-0.57286122
+-0.95613772
+0.37533665
+-0.14138162
+0.23253119
+0.52930176
+0.94477797
+0.26160324
+-0.42548281
+-0.69456965
+-0.77436320
+0.02663851
+0.66525257
+0.05573785
+0.39692092
+0.51612461
+-0.08226722
+-0.56637979
+-0.86547583
+0.55269706
+-0.40333414
+-0.51203427
+-0.06226557
+0.50875247
+-0.46612841
+0.15330899
+0.53217280
+0.14211321
+-0.83595049
+0.97303450
+-0.47783124
+-0.92480216
+0.40435326
+0.47045028
+-0.58863673
+0.39015460
+0.88700473
+0.81429183
+0.72593355
+0.89958870
+-0.24497843
+0.73062491
+-0.55833387
+0.33987617
+-0.86376777
+0.38547492
+-0.63317573
+-0.30474633
+0.76088703
+0.14626467
+-0.65992770
+-0.45617443
+-0.65978035
+-0.10976368
+0.62400162
+0.86470222
+-0.67954808
+0.33424413
+0.68496621
+0.64009941
+0.59060347
+-0.78902927
+-0.21437728
+0.28400362
+0.07017243
+-0.19025010
+-0.41634059
+-0.45398057
+0.68198717
+0.91386819
+0.73541462
+0.36577678
+-0.58484268
+0.36221945
+-0.41172743
+0.68591905
+-0.05540144
+-0.20659471
+0.16351974
+-0.13165098
+-0.14891082
+-0.24829304
+0.21304131
+0.15380085
+0.83916712
+0.17254829
+0.64948368
+0.04685605
+0.59065914
+0.67224944
+0.31048739
+-0.74868080
+0.14895868
+-0.90473170
+-0.90764996
+-0.23224854
+-0.54345521
+0.70564532
+0.16714668
+-0.83541062
+-0.01997399
+0.68287790
+0.39089906
+-0.09449875
+-0.36365324
+-0.29389262
+-0.03594995
+0.96176803
+-0.47069991
+-0.24286366
+0.81068492
+0.89683485
+0.07881701
+-0.85478553
+0.36098397
+-0.44740331
+0.39651740
+0.57169390
+-0.91147958
+0.11993062
+0.66604424
+-0.70837143
+-0.84995687
+-0.58891755
+-0.06745780
+0.67201340
+0.83695674
+0.65211272
+0.45638919
+0.02492070
+0.88633156
+0.62736607
+-0.64604124
+-0.42875344
+-0.50069186
+0.50870860
+0.98863769
+-0.65150505
+0.15342247
+0.94888079
+0.54234469
+-0.18846196
+-0.37650096
+0.56796997
+-0.12347195
+0.85690314
+-0.03349044
+-0.53019545
+-0.65052427
+0.30543336
+0.31801035
+0.04664047
+0.37000481
+-0.66610268
+-0.88599158
+-0.53265861
+-0.93735438
+0.49518710
+0.37757210
+-0.96621059
+-0.19024317
+-0.80069237
+0.08871690
+0.18001688
+-0.75390220
+-0.72950956
+0.57834494
+-0.68431890
+-0.68370503
+-0.98740672
+0.61536074
+0.79710281
+-0.91358419
+0.63529944
+0.72096002
+-0.81026065
+-0.17047280
+0.29683435
+0.45881975
+0.12083817
+-0.21611053
+0.05480707
+0.90640807
+0.01650190
+0.66123521
+-0.77380989
+-0.67215827
+0.73919344
+-0.59066793
+0.23578930
+-0.09025753
+0.98260593
+0.07744968
+0.56855834
+0.34879863
+-0.86690806
+-0.02087939
+0.21747935
+-0.10505128
+0.08641648
+-0.17342579
+0.46840858
+-0.42316854
+0.31663179
+-0.74102652
+0.61193657
+0.08530223
+-0.25361174
+0.22208118
+0.79865229
+-0.92135829
+0.80347419
+0.66773772
+-0.65140411
+-0.12051308
+-0.35263556
+-0.45911855
+-0.11175162
+-0.21441764
+-0.00440150
+0.27512062
+0.71118259
+-0.88409981
+-0.88904081
+0.79250479
+0.46175909
+0.33633983
+0.24208820
+-0.84612979
+0.98136437
+0.79670131
+-0.05500478
+-0.59276816
+-0.24299860
+0.20004022
+-0.61201146
+-0.95886527
+0.44607306
+0.28557122
+-0.75837982
+-0.56063110
+-0.91861306
+-0.72363240
+0.80272985
+0.45688486
+0.49446535
+0.02875185
+-0.43984485
+-0.42185539
+-0.24385959
+-0.38519472
+-0.29414588
+0.02007127
+-0.35754102
+-0.29975069
+0.07590842
+-0.24435788
+0.83368933
+-0.94163936
+-0.85171844
+-0.13235217
+-0.48119074
+0.36292589
+-0.71712708
+0.60311925
+0.37863326
+-0.79817292
+-0.85450064
+-0.84724741
+-0.61638403
+0.84767437
+0.33195019
+-0.86441804
+-0.56918284
+0.04370797
+-0.15667695
+-0.05112511
+0.06337452
+0.00594604
+-0.68491951
+0.78716338
+0.73065794
+-0.39430737
+0.63158524
+-0.66954005
+0.45249462
+-0.34224230
+0.50336695
+-0.84868135
+-0.14322579
+0.42002165
+-0.30589700
+0.68028927
+0.76300180
+0.16998386
+-0.21665132
+0.55403733
+-0.69179782
+0.20237720
+0.97954476
+0.67430484
+-0.33976799
+-0.56002653
+0.31248736
+0.73968422
+0.89735770
+-0.73498267
+-0.70327911
+-0.85462108
+0.90417266
+0.15980995
+-0.18841386
+0.42063940
+-0.56834200
+-0.02345175
+-0.83903554
+0.55899787
+0.33079481
+-0.44661885
+-0.03942698
+-0.39472508
+-0.10651034
+0.71091831
+-0.68319550
+-0.05450219
+-0.41017270
+0.22135019
+0.17503309
+-0.88771647
+0.91204751
+0.28462946
+0.36309350
+0.40556455
+0.91851771
+-0.39203453
+0.58026683
+0.18422806
+-0.35210413
+0.84821868
+-0.99967902
+-0.00356454
+0.96094728
+-0.98018301
+0.69042194
+0.80624723
+-0.99206908
+-0.15686917
+-0.36510128
+-0.37441534
+0.86009896
+-0.08801514
+0.89725065
+0.99190319
+-0.90626103
+0.67991042
+-0.17439127
+0.10089493
+-0.93169744
+-0.79689977
+-0.99277181
+-0.67563424
+0.65637660
+-0.71654844
+-0.66773197
+-0.07603067
+-0.84656605
+-0.11882371
+-0.75996852
+-0.31266528
+-0.28016543
+-0.45100570
+-0.25670034
+0.75318217
+-0.75987075
+-0.80599801
+-0.76860815
+-0.42490560
+0.28753734
+0.52866459
+0.69057322
+-0.88975768
+-0.10752434
+-0.75901927
+0.25774693
+0.49897182
+0.91945529
+0.55836916
+-0.33284783
+-0.47111386
+-0.41833258
+-0.04900789
+0.41516387
+-0.48141879
+-0.58012137
+-0.26896650
+-0.48505294
+0.46071029
+0.48153389
+-0.40875304
+-0.52554983
+0.89349246
+-0.35201162
+0.35491776
+-0.42555559
+-0.03727174
+0.84152734
+0.61402512
+-0.20043629
+-0.06355524
+0.72559297
+-0.44323814
+-0.77382849
+-0.43794227
+0.51261795
+-0.81900053
+0.70199835
+0.85035431
+-0.43248355
+0.91655910
+-0.79821289
+0.48052835
+0.98500907
+-0.89035377
+0.34363508
+-0.93092852
+0.09418380
+-0.46284628
+-0.18733793
+0.59723079
+0.05628693
+0.47361624
+0.33032894
+0.48123765
+0.99669480
+0.33975291
+0.22664583
+-0.96919939
+-0.69975442
+0.52707505
+-0.78905128
+-0.96299522
+-0.76953375
+-0.25526029
+0.93724775
+-0.86835928
+0.44626737
+-0.32870030
+0.95737243
+-0.62623847
+-0.20014149
+0.35788524
+-0.72347644
+0.57189095
+-0.42883146
+0.48053539
+0.71459973
+0.00463498
+-0.56866980
+-0.47950459
+-0.85181454
+0.99960065
+0.42913747
+-0.21450740
+-0.53191233
+0.47408569
+-0.18481249
+-0.61508250
+-0.35776460
+0.80140638
+-0.25276065
+-0.65157348
+-0.08959627
+0.48426175
+0.71546543
+0.23962736
+-0.52283168
+0.52011573
+-0.64634228
+0.86252177
+0.75713730
+0.22127795
+-0.06081367
+-0.59961480
+-0.54629385
+-0.26075822
+-0.67194986
+0.54052210
+-0.97929793
+0.79671514
+-0.50841331
+0.87233377
+-0.09344524
+-0.80610013
+-0.24958301
+0.78598225
+-0.78801116
+-0.45051318
+-0.88445564
+0.76258981
+-0.57670847
+0.17271340
+0.04833019
+0.61266601
+0.20464492
+-0.23795879
+-0.21994245
+-0.38045865
+-0.73196417
+0.78847921
+-0.23985237
+0.63250875
+0.68567097
+-0.50320250
+0.02285171
+-0.11813956
+-0.98944464
+0.50664020
+0.44858420
+-0.63149920
+0.64439595
+0.78049910
+0.61525452
+0.54681647
+0.68026280
+-0.93241856
+-0.30133188
+0.60604692
+0.45875394
+0.20457458
+-0.83234958
+0.05838752
+0.99805665
+0.06779385
+-0.93090522
+-0.34458071
+0.25286973
+0.22719443
+-0.35685426
+-0.49847227
+0.67886519
+-0.16228807
+0.20008194
+0.50798607
+-0.32223660
+-0.40921551
+-0.67891827
+-0.72827378
+-0.18439245
+-0.26618969
+-0.01777333
+0.66812050
+-0.77092546
+-0.95006871
+0.44749761
+-0.64925674
+-0.10685802
+-0.35482073
+0.89469981
+-0.29834157
+0.22013426
+-0.82859579
+-0.10213327
+0.31453288
+-0.74507582
+0.53774214
+0.14823699
+0.89752436
+-0.51741377
+0.82626534
+0.26843858
+0.09190547
+-0.26888973
+-0.44445157
+-0.35274905
+0.07052483
+0.20094818
+-0.05558922
+0.34814149
+0.10915677
+-0.88825020
+-0.35056506
+-0.84723904
+0.63820473
+0.92450791
+0.16492846
+-0.29231632
+-0.24107787
+0.12060588
+-0.12478496
+-0.61205605
+-0.93897097
+-0.40981995
+0.89088706
+-0.43918443
+-0.71826426
+-0.47077203
+0.39310542
+-0.26469809
+-0.58373956
+0.61361262
+-0.20807014
+0.81122167
+0.12484554
+-0.26798695
+0.47832787
+-0.11516106
+0.19987905
+0.89528871
+-0.01716489
+-0.86482432
+-0.00189936
+-0.58281907
+-0.00492930
+0.10972476
+0.73957253
+0.69181931
+-0.68058449
+-0.26089084
+-0.42936665
+-0.07938796
+-0.77858581
+0.47101474
+0.09808314
+-0.39683706
+0.38803279
+-0.08297235
+-0.29709721
+0.32229209
+0.74898791
+0.22119451
+0.42430615
+0.08751917
+-0.50251770
+0.63945084
+0.95007326
+-0.78188559
+0.37191800
+0.23260790
+0.80140678
+-0.26949331
+-0.31055186
+-0.41385322
+-0.12329438
+-0.22131271
+0.35358765
+-0.29877144
+-0.20877310
+0.77066463
+0.50109224
+-0.05847052
+-0.04054354
+-0.11425083
+-0.79819284
+-0.84616757
+-0.54250906
+0.35015601
+0.05453375
+-0.65791783
+0.04929690
+-0.53577194
+-0.60754962
+0.18227465
+-0.52100092
+-0.25993741
+0.15392816
+0.56738544
+0.96345627
+0.37362289
+-0.20950514
+0.13468194
+-0.10048670
+0.01402092
+0.49156499
+-0.09597987
+-0.56763414
+-0.51299188
+0.86429286
+-0.85620537
+0.07032073
+0.88765407
+-0.04915631
+0.56539953
+-0.50252640
+0.48363078
+0.87171578
+-0.81346631
+-0.82213709
+-0.68454531
+0.61610329
+-0.07311904
+0.88059354
+0.67300248
+-0.35003442
+0.87803102
+-0.18324530
+0.88173091
+0.56760454
+-0.07993996
+-0.59285977
+-0.94206316
+0.36847711
+0.10173786
+-0.43040675
+-0.63649592
+0.32845950
+0.63399267
+0.22533309
+0.77454007
+0.46812475
+-0.52784425
+0.10862625
+-0.41652286
+0.90309620
+0.59326041
+0.53638709
+0.83947146
+0.13376081
+-0.94630821
+0.05722320
+0.01858354
+-0.21944672
+-0.39700437
+-0.61493134
+-0.21949947
+0.87045133
+0.71050763
+0.10040784
+0.23954117
+-0.16994500
+0.62847793
+-0.91606095
+-0.08943576
+-0.73719865
+-0.83064277
+0.67126667
+0.36275697
+-0.35416925
+0.59315157
+0.84042609
+-0.32216424
+-0.08593750
+-0.05929792
+0.88006103
+-0.46491796
+0.37972414
+0.68411636
+-0.51165557
+0.38534892
+0.42665088
+-0.76581603
+-0.04833788
+-0.28524053
+0.75688004
+0.19309938
+-0.13081008
+-0.45986676
+0.30630386
+-0.32246983
+0.47694278
+-0.45056146
+-0.34955531
+0.18027532
+0.58926380
+-0.11926782
+-0.75540091
+0.18258917
+0.62596369
+-0.25503814
+0.05247700
+-0.38678408
+0.50884736
+-0.65246505
+-0.60199106
+-0.05499017
+0.93783414
+-0.32174253
+0.83080924
+0.20754540
+0.29104650
+0.12229502
+-0.47390020
+-0.40166479
+-0.18773645
+0.11631322
+0.18275619
+0.10614789
+-0.52125791
+-0.00616199
+0.40535569
+0.60025001
+0.53727186
+-0.16743129
+-0.84063047
+0.97281063
+0.94998014
+0.56720638
+-0.01215374
+-0.11847961
+0.41698718
+-0.99224415
+0.51170468
+0.00071776
+0.05304217
+-0.17358202
+0.96652448
+-0.08091938
+0.07616615
+0.68855166
+-0.24680007
+-0.30544716
+-0.33260411
+-0.13663971
+-0.19810265
+0.63844514
+0.56554782
+0.01295388
+0.70874107
+0.49659288
+0.99320221
+0.79307628
+-0.87910068
+0.97609282
+0.32267821
+-0.56460527
+0.02508342
+-0.90984049
+0.14901030
+0.25218546
+-0.46283835
+-0.35521328
+0.30719697
+0.17698359
+-0.25100976
+0.92983389
+-0.27335346
+-0.36401099
+-0.44633639
+0.10650802
+0.56266689
+0.76407886
+-0.80267923
+0.45096326
+0.30434453
+-0.03950143
+-0.71188906
+0.45760834
+-0.17361701
+-0.40326166
+-0.50179785
+-0.47452658
+0.21274889
+-0.19574469
+0.17812228
+0.06470907
+-0.91009545
+-0.61472544
+0.08618879
+-0.41081578
+0.00907910
+-0.20253074
+-0.87485905
+-0.36206883
+0.12480640
+0.89970016
+-0.31826246
+-0.86600430
+0.33804488
+0.87650061
+-0.29381979
+-0.40091854
+-0.37695086
+0.36658704
+0.59305537
+0.82326579
+0.50031471
+0.60912037
+-0.60672832
+-0.63715091
+0.95304751
+0.17237258
+0.19439197
+-0.86959407
+0.59279299
+-0.70321313
+0.75367630
+0.87843132
+0.05911350
+-0.57386225
+0.85971296
+-0.14276451
+-0.97250115
+0.99941063
+-0.96382979
+-0.21336955
+-0.92807549
+-0.30068666
+0.29291022
+-0.31199652
+-0.73760822
+0.58977485
+0.71398950
+0.66242337
+0.53702223
+0.29059505
+-0.84019709
+0.44577968
+0.79274368
+-0.83050713
+-0.47578299
+-0.11592549
+-0.14494693
+-0.86665072
+-0.17205626
+-0.91440581
+0.15766013
+0.85612297
+-0.37375110
+-0.43346518
+-0.27893651
+-0.61641443
+0.50243115
+0.85648298
+-0.90694167
+-0.41761404
+0.80450022
+0.04400694
+-0.11486107
+0.42421782
+-0.05859709
+-0.92480253
+0.75461674
+0.09371877
+0.03740287
+0.51933420
+0.78287721
+0.98272157
+0.31470692
+0.05474675
+-0.06810540
+0.61779737
+0.36649835
+-0.48682523
+-0.71063021
+-0.40016299
+-0.41101080
+-0.14806539
+0.33899641
+0.23301852
+-0.57135999
+-0.61360556
+-0.85633799
+-0.50184989
+-0.91941241
+-0.47708547
+-0.53765470
+0.50148153
+-0.98304193
+0.09252000
+-0.22742444
+-0.56383649
+-0.71823218
+-0.71616253
+-0.30158168
+0.24663401
+-0.55527577
+0.31572759
+0.77075994
+0.86394441
+-0.77863759
+-0.64240724
+-0.73724356
+-0.49106181
+-0.39103347
+-0.92685935
+0.86392927
+0.12390053
+-0.58437949
+-0.60129511
+0.46934152
+-0.48667210
+0.40414572
+-0.74151331
+-0.15600687
+-0.47751361
+-0.37687725
+-0.26696801
+-0.39083016
+-0.28145987
+0.26306665
+0.62447858
+-0.46250802
+-0.82074860
+-0.15381479
+-0.51336452
+-0.29622906
+0.87846756
+0.64365160
+-0.29494506
+-0.36020112
+0.97373891
+-0.39264292
+-0.04715562
+-0.92705283
+-0.16787195
+0.94370592
+0.82392383
+0.29588604
+-0.99710074
+0.39416373
+0.81567347
+0.41801465
+-0.52204895
+0.44988811
+0.60614455
+-0.11857206
+-0.24647039
+-0.65236199
+0.40625334
+-0.67208949
+-0.07813716
+-0.93812785
+0.58000112
+-0.62009057
+-0.60005227
+-0.46482098
+-0.59978914
+-0.45998341
+0.24704218
+-0.05145991
+0.33441937
+-0.31584406
+-0.63214982
+0.08634925
+-0.55152926
+-0.47497690
+0.54419827
+0.28639126
+-0.51044211
+-0.45222431
+0.54736435
+0.48030615
+-0.13816404
+0.77683377
+-0.85196197
+0.03381956
+0.26169038
+-0.75954649
+-0.17061478
+-0.92662401
+0.60945332
+0.00001431
+0.87544382
+-0.44871998
+0.70022702
+-0.04782289
+-0.40610522
+-0.13155252
+0.13573837
+0.67997634
+-0.55367541
+0.84952688
+0.53876519
+0.89118087
+0.20825243
+-0.71732628
+-0.45981145
+0.30048418
+-0.01783645
+0.22288251
+0.46663189
+0.58727586
+-0.94926439
+-0.43756622
+0.20079243
+0.84272194
+-0.24727386
+-0.49866921
+0.30624080
+-0.22699761
+0.50168896
+-0.07543159
+0.76715922
+0.95610261
+-0.53459483
+0.23450148
+0.94535685
+0.48963666
+-0.18157095
+0.30515814
+0.85614645
+0.89628458
+0.74091351
+0.15789628
+-0.38692284
+0.96668553
+0.65997970
+0.34075296
+-0.76265949
+-0.44566244
+0.10180688
+-0.29927415
+0.04266810
+-0.86025229
+0.95105863
+0.80356777
+-0.87006822
+-0.97905238
+0.16764641
+0.83331954
+-0.33760786
+-0.77348410
+0.88039219
+0.54504859
+-0.21457380
+0.24599993
+0.47316551
+0.04918611
+0.11766493
+0.23376417
+0.40282667
+-0.76847069
+-0.16106230
+0.54844368
+-0.47500300
+-0.15295756
+0.56719267
+-0.98778841
+-0.26763266
+0.63114548
+-0.37911010
+0.89943564
+0.88561010
+0.56170118
+-0.28515196
+-0.93992804
+-0.70604873
+0.44586098
+-0.45544755
+0.23939955
+-0.36050045
+0.97408426
+0.71770501
+-0.73543775
+-0.53968811
+0.71878590
+-0.72055066
+-0.48496565
+0.56810921
+-0.85902707
+0.12021336
+0.71274855
+0.96597762
+-0.39077201
+0.33426708
+0.73510828
+-0.37551975
+0.71396223
+0.93417006
+-0.17945857
+-0.51964200
+-0.04630164
+-0.84279906
+-0.50303360
+0.91960483
+-0.79910241
+-0.48095131
+-0.95607473
+-0.30312664
+0.21456890
+-0.61658046
+0.23907699
+-0.91989339
+0.74884621
+0.00258470
+0.64906991
+0.93504024
+0.61426377
+-0.52134001
+0.42748117
+0.31687105
+0.44381809
+0.49889672
+0.95920277
+-0.79452708
+-0.22961098
+0.98705328
+-0.88728993
+0.12428069
+0.28581071
+0.05193305
+0.44024825
+-0.06159574
+-0.68862313
+0.40238571
+0.41768169
+-0.30159771
+-0.38545150
+-0.14282364
+-0.33081245
+0.20321274
+-0.75486821
+-0.89180265
+0.09265029
+0.99255276
+0.83069098
+-0.33260190
+0.61705172
+-0.32170463
+0.84252727
+0.48046899
+-0.17385930
+-0.56825384
+0.71192288
+0.86034214
+-0.79346664
+-0.87774618
+-0.44640177
+-0.48310041
+-0.91203193
+-0.10961932
+-0.05103511
+0.35423040
+-0.96115018
+-0.13461143
+-0.73216680
+0.59530127
+-0.25284976
+-0.47002274
+0.16148067
+-0.90857114
+0.30342734
+-0.19535023
+0.10466826
+-0.91713759
+0.28161120
+-0.33569026
+-0.02855837
+-0.58555362
+0.04162598
+0.96223605
+-0.98246831
+0.58658338
+-0.12403768
+-0.08641183
+-0.75284393
+-0.66400176
+0.85542130
+0.88591826
+-0.91696980
+-0.65987301
+-0.98535938
+0.57694054
+-0.94572472
+-0.33552164
+-0.84284532
+0.69953835
+0.28249705
+0.59875715
+-0.76751058
+-0.86899020
+-0.64098316
+0.71948969
+-0.02254599
+-0.69842839
+0.52793074
+0.37121177
+-0.33447719
+-0.12811959
+0.16060019
+-0.39982611
+-0.99864878
+0.52049017
+-0.46114337
+-0.72444138
+-0.35378569
+-0.53811121
+-0.84506400
+0.12704432
+-0.13475877
+0.22754610
+-0.24985015
+0.61646521
+0.89195704
+0.00170231
+0.52662969
+-0.76647556
+0.96246696
+-0.61692268
+0.32720459
+-0.40143073
+0.17867410
+-0.18537372
+-0.09327173
+-0.82541035
+0.61177158
+-0.42545545
+-0.84183715
+0.08608139
+0.56917071
+-0.10271233
+0.10439479
+-0.04091936
+0.24230433
+-0.57990429
+0.76669610
+-0.38477063
+0.40177858
+-0.07537401
+0.64969325
+-0.82202448
+0.40813518
+0.25360346
+0.69496512
+0.38409150
+0.15953100
+-0.19863993
+-0.39806932
+0.37619448
+-0.16290921
+-0.15906554
+-0.19298416
+-0.10422415
+-0.88464211
+-0.10222220
+0.72520757
+0.61097312
+0.21273839
+0.17043412
+-0.27809644
+-0.93711935
+-0.43178791
+-0.88878001
+0.96114886
+-0.35628599
+-0.14344698
+0.16299772
+0.16009736
+0.51156688
+0.79481137
+0.98107183
+-0.06420594
+0.00014496
+0.30672181
+-0.80079812
+-0.93430573
+0.80662608
+0.43786049
+0.53810251
+0.90231192
+0.73621571
+0.47417545
+0.56491113
+0.49536443
+0.20938540
+-0.64204440
+-0.61461252
+0.05478072
+-0.49678153
+-0.83652353
+-0.20196807
+0.04185784
+-0.59471130
+0.98526263
+0.75772190
+-0.20209002
+-0.63397837
+0.68782914
+0.15399659
+0.95015717
+0.69692945
+-0.04109818
+-0.05670714
+-0.56884772
+-0.10692203
+0.32612729
+-0.09689784
+0.94873846
+0.96450853
+-0.22213542
+-0.62345082
+-0.81797832
+0.60491693
+-0.81423691
+-0.64539310
+0.29462874
+0.55812359
+0.54869831
+-0.54082325
+-0.94576370
+-0.55536178
+-0.12865019
+-0.81502755
+-0.38545829
+0.72685480
+0.70252383
+0.22979355
+-0.30204064
+-0.64330146
+-0.42902273
+0.32898605
+0.73604679
+-0.70279503
+0.28887236
+-0.05430311
+0.93989742
+0.21270430
+0.06358266
+0.99198186
+-0.64090142
+-0.87120427
+-0.45969462
+0.79972696
+-0.62108430
+0.74810421
+0.61470509
+0.31087601
+-0.06806284
+-0.70108652
+0.44423807
+0.72136497
+-0.51191917
+0.88363767
+0.28208399
+-0.40748465
+-0.51281175
+-0.73545548
+-0.36404848
+0.25202775
+0.60304773
+0.99051774
+-0.47127563
+-0.24751902
+0.42252219
+0.46018684
+0.05254388
+0.06026781
+-0.76439102
+-0.35032070
+-0.33239460
+0.41216803
+-0.42842644
+-0.06334913
+-0.86077157
+0.13693488
+0.31266129
+-0.03988218
+-0.54778937
+0.41400850
+0.94682324
+0.61843562
+0.05443692
+-0.65694165
+-0.31988299
+0.21168780
+0.80327022
+0.88716364
+0.69058728
+-0.46555012
+-0.03789836
+0.49612486
+-0.67741641
+0.65174675
+-0.34859657
+-0.51473951
+-0.05401701
+0.62343204
+-0.55950072
+-0.04774565
+-0.45810062
+-0.41443467
+-0.52108514
+-0.47063035
+0.79647148
+-0.87641804
+-0.88788772
+0.76130044
+0.56598747
+-0.67895970
+-0.24298167
+0.57454157
+-0.24530196
+0.90513837
+0.57976425
+0.33494782
+-0.27446389
+0.28834164
+0.85112476
+-0.09998512
+-0.66063279
+-0.08041418
+0.62837863
+-0.90716549
+0.90040922
+-0.70590675
+0.81723464
+-0.16750664
+-0.70960826
+-0.09393924
+-0.31968552
+-0.00654382
+-0.83569415
+0.29684103
+0.82566750
+-0.13277715
+0.74027085
+-0.80589610
+0.98265111
+-0.99259008
+-0.18287456
+-0.38870013
+0.77994788
+-0.46253335
+0.58683503
+0.44626749
+0.90119040
+0.52820277
+0.76525104
+0.56354487
+0.66466296
+-0.08540308
+-0.27458924
+-0.49369842
+0.34985566
+0.73890245
+-0.91331149
+-0.62592435
+0.23268819
+0.98706603
+0.21779180
+0.38040626
+-0.86026977
+0.86857831
+0.59604585
+0.14328718
+-0.49758899
+0.69030857
+-0.52640283
+0.19022751
+-0.07471955
+-0.29884934
+-0.04779381
+-0.89643117
+0.85184741
+0.49835598
+0.21398127
+-0.28409266
+0.52102184
+-0.44696248
+0.07273245
+-0.78221077
+0.44132102
+-0.98392226
+-0.93933959
+-0.73941392
+0.65076256
+0.83309376
+0.42269623
+-0.78583102
+0.61210001
+0.95879984
+0.31751370
+-0.16751736
+0.42007101
+-0.48696643
+0.01306701
+-0.68727371
+-0.03082061
+-0.00377774
+-0.76509115
+0.46852517
+-0.22358173
+0.22469985
+-0.93759784
+0.64631259
+0.01034689
+0.18686938
+0.25730109
+-0.37369484
+-0.48829681
+0.07231200
+0.87571561
+0.34834695
+0.16100895
+-0.03200514
+0.37975313
+-0.16343641
+0.49515322
+-0.81773184
+-0.22833558
+-0.49052218
+-0.81721410
+0.17405386
+-0.90089047
+0.91586434
+0.79734270
+0.66400743
+-0.63738783
+-0.93829476
+0.42620381
+-0.82890741
+0.38561837
+0.93926825
+-0.90044801
+0.30466097
+-0.50390346
+0.37338287
+-0.23848995
+0.06646102
+-0.92283416
+0.07071110
+0.71065273
+0.92419155
+-0.00351855
+-0.58800414
+0.18940532
+0.46163702
+-0.20573461
+-0.18672079
+0.69876814
+-0.82581720
+0.45093310
+-0.91097695
+0.58708918
+-0.64284861
+0.55939794
+0.93374956
+0.75718868
+0.73453939
+0.94285572
+0.52698529
+-0.90181463
+-0.43225455
+-0.86273669
+-0.42944139
+0.56299698
+0.58428967
+0.62827110
+-0.28581059
+0.02896321
+-0.55996749
+-0.28380716
+-0.54556447
+-0.75564361
+-0.86117196
+-0.26330731
+-0.26051742
+-0.84566596
+0.55576712
+0.18438701
+-0.45625845
+0.09125282
+0.52994544
+-0.89785500
+0.94832176
+-0.06391207
+-0.90702815
+0.90571788
+-0.92701343
+-0.58765273
+0.08961102
+-0.33639310
+-0.76845050
+-0.59856376
+0.13384384
+-0.26673184
+0.00024313
+-0.49445971
+-0.00701440
+0.95304970
+-0.20214448
+0.33942475
+0.30190427
+0.25803581
+0.20838428
+0.49967909
+-0.00152493
+0.51964128
+0.67327070
+0.07576621
+0.28040874
+-0.87595474
+-0.51564172
+0.31781626
+0.19737446
+-0.38273251
+-0.62054881
+-0.13991821
+0.32035327
+0.31274951
+0.60058928
+-0.77470411
+-0.86695522
+0.56007946
+0.66334486
+-0.85330881
+-0.13763362
+0.62124979
+0.06934249
+0.49293482
+0.77162611
+0.17133725
+0.82528174
+-0.75336452
+-0.63601387
+-0.93695415
+-0.32288849
+0.58092713
+0.46545827
+0.98303735
+-0.69966373
+-0.02533662
+-0.35214007
+0.28322732
+0.24485540
+-0.59269813
+-0.56802154
+-0.38055551
+-0.72711626
+0.08839107
+0.04341328
+-0.42018646
+0.31612003
+0.27271295
+-0.06155878
+-0.90929838
+-0.57715279
+0.93179703
+0.08488429
+0.92066443
+-0.88920702
+0.89195466
+0.77233171
+-0.42819101
+-0.35786927
+0.00602484
+-0.47287697
+0.04417884
+0.55801415
+0.64982212
+-0.98968615
+0.39190733
+-0.71351925
+-0.95154089
+-0.19240582
+-0.99834112
+-0.87115625
+0.19629526
+-0.17270362
+0.50416875
+0.32835233
+-0.15579563
+0.45132697
+0.15561700
+0.88037932
+0.20262206
+0.77837324
+-0.48393112
+-0.49731123
+0.41227245
+-0.76862447
+-0.66679251
+0.32740927
+0.14498889
+0.26548493
+-0.03783154
+0.68231845
+0.17017376
+0.64621603
+-0.52609208
+0.43111718
+-0.24128354
+-0.98505307
+-0.93150042
+-0.16585720
+-0.22735000
+-0.72758359
+0.22015846
+0.69192433
+0.91567290
+0.17998111
+0.66048729
+0.20198298
+-0.17799264
+0.68954408
+-0.58578461
+-0.25506943
+0.76777732
+0.43738639
+0.94078195
+-0.87568582
+0.47458053
+-0.79469806
+0.31183350
+0.33524513
+-0.58871838
+0.12163019
+0.23767114
+-0.73444915
+-0.01028389
+0.02432084
+-0.62806365
+-0.64061031
+-0.72682896
+-0.20220810
+0.95050597
+-0.46694082
+-0.76886888
+-0.29579234
+0.03517687
+-0.46086723
+-0.59766221
+0.88963425
+-0.98822635
+-0.38141966
+-0.17057765
+0.91485548
+0.90311289
+-0.25593883
+-0.61725980
+-0.17193484
+0.97659421
+0.01112056
+-0.89309540
+-0.70924908
+-0.40802640
+0.47336555
+0.03957963
+0.97393727
+-0.28890097
+0.98920822
+0.37852859
+-0.96717342
+0.59858382
+-0.85414270
+-0.62386253
+-0.55503404
+0.67933285
+-0.78969078
+0.94404137
+-0.17859715
+0.88905907
+0.18485403
+-0.06694281
+-0.66602734
+-0.70651305
+0.34257865
+-0.13938057
+-0.04301929
+-0.09403926
+0.25039732
+0.39811325
+0.83497250
+-0.11646903
+0.39425707
+-0.21581882
+0.48877060
+0.58352399
+-0.32187033
+-0.27905864
+-0.03132105
+-0.31272823
+0.46210432
+-0.18692076
+0.11363816
+0.79548645
+-0.56867579
+-0.82678394
+0.68476272
+0.00865936
+0.56286132
+-0.59860072
+-0.15178353
+0.80138814
+0.58962178
+0.99897909
+0.33138728
+0.70304561
+-0.14964014
+0.06693351
+0.49708402
+-0.40109372
+-0.88473868
+-0.55995166
+-0.05692339
+0.14253759
+0.24299991
+0.93319809
+-0.89043813
+-0.56525472
+-0.00695795
+0.59628975
+0.68078732
+-0.00041640
+-0.53994060
+0.73246038
+0.17866862
+-0.68464226
+0.39547110
+0.56620562
+0.78797102
+0.06887865
+0.23784387
+0.66708469
+-0.70868993
+-0.14936823
+-0.06358105
+-0.16575116
+0.09306574
+0.56387258
+0.14312112
+-0.09590679
+-0.81743844
+0.86860394
+-0.64475173
+0.61925399
+-0.59251875
+-0.47103429
+0.92367458
+0.98413587
+0.45637929
+-0.11545742
+-0.73163360
+-0.25543737
+-0.65177253
+-0.18011147
+-0.96748332
+-0.40254676
+-0.73078337
+-0.86550711
+-0.22843558
+-0.83579881
+0.44853568
+0.97718418
+-0.13608897
+-0.20637012
+0.67872763
+0.10843432
+0.33556628
+0.63613451
+0.45291734
+-0.83751127
+0.05619693
+-0.09665138
+0.36418796
+0.27551699
+-0.98316738
+0.86335671
+0.05501783
+0.36878991
+0.27812576
+0.62477851
+-0.70783180
+-0.48372692
+0.13815129
+-0.90062579
+-0.15935379
+-0.76491082
+-0.28568697
+0.69933176
+-0.47392005
+-0.85654491
+0.02859902
+0.79002857
+0.15263045
+0.31584811
+-0.48192763
+-0.98646251
+-0.36458957
+-0.89197517
+0.21353328
+-0.43890530
+0.26856196
+-0.72409013
+-0.59802893
+-0.22047400
+0.45070493
+0.61366773
+0.08502579
+-0.67394426
+0.59162652
+-0.16963238
+0.71620512
+0.88762856
+0.29604924
+0.84062243
+0.47842395
+0.77753687
+-0.49158335
+0.62770784
+-0.35852498
+0.92473865
+-0.80516990
+-0.10384369
+-0.80792072
+0.18485141
+0.27626896
+0.18977666
+-0.24264920
+-0.95263932
+-0.71247995
+-0.32404232
+0.17694390
+0.58315825
+0.00452864
+-0.84522752
+0.28712726
+0.82480800
+-0.06711131
+-0.40466136
+-0.31046653
+0.19277823
+-0.71891108
+0.37749314
+-0.05840725
+-0.11639619
+0.68280089
+-0.55629238
+-0.33614850
+0.20055556
+0.98549187
+0.23296225
+0.10596609
+0.79727077
+0.93137836
+-0.15361547
+0.26549566
+0.68968570
+0.97521341
+-0.40939927
+0.04310071
+0.33334398
+0.84692037
+0.46523356
+-0.55017969
+-0.68518516
+0.17597091
+0.38974202
+0.26921213
+0.75619209
+-0.16391480
+-0.15903676
+-0.88220154
+0.77957463
+-0.79766218
+-0.36289865
+-0.35325807
+-0.43691534
+0.72375369
+0.24317253
+-0.44988811
+-0.96014643
+-0.55127731
+0.97069764
+-0.34668553
+-0.21192658
+-0.68225512
+0.90727103
+-0.30956268
+0.44299507
+-0.77877322
+0.61907756
+-0.04440308
+0.16057909
+0.17775023
+0.17622578
+-0.73222369
+-0.95566879
+-0.44470984
+0.80336523
+-0.06091738
+0.63306820
+-0.22509968
+0.73893750
+0.80015361
+0.52778077
+0.13460600
+0.57679951
+-0.40442985
+-0.68142408
+-0.78769226
+-0.57753772
+0.51524663
+-0.53873733
+0.42969930
+-0.51905999
+-0.12116200
+-0.40663368
+0.42775857
+0.97407830
+-0.70710242
+-0.01726383
+0.73399282
+-0.73353726
+0.75482142
+0.41025233
+0.58772469
+0.17710602
+-0.07375360
+0.25236118
+0.29795909
+0.30581486
+0.62660909
+-0.92888121
+-0.24735326
+-0.18720388
+-0.26598084
+-0.67259231
+-0.97523098
+-0.90749326
+-0.45596474
+0.67157578
+-0.87101161
+0.38360536
+0.08600163
+-0.81014943
+-0.56964415
+-0.44763744
+-0.02768052
+-0.13407201
+-0.97459554
+0.77968717
+-0.29124957
+-0.97950307
+-0.97261432
+0.50242221
+0.76595044
+0.83880627
+-0.60142332
+-0.86638306
+-0.44932240
+0.65660763
+-0.96238748
+0.63519669
+-0.74650615
+0.99950218
+-0.47736371
+-0.20702261
+-0.07056803
+0.22752166
+0.40507185
+0.53810835
+0.29225588
+-0.24990737
+0.15641516
+-0.99330375
+-0.00248533
+-0.21551808
+-0.53306353
+0.44138162
+0.63232407
+0.08728530
+0.06707830
+-0.02176460
+-0.26261729
+0.40587546
+-0.35023069
+0.00580386
+-0.23066932
+-0.36623527
+0.50225410
+-0.13085012
+-0.80575449
+0.28615430
+0.94377607
+0.69923379
+-0.03008658
+-0.65476024
+0.52809435
+-0.37018396
+0.62310824
+-0.57495705
+-0.83438927
+-0.78793561
+-0.34628284
+0.42451310
+0.59289742
+-0.97875610
+0.39395678
+0.74497223
+-0.17143816
+-0.00031012
+0.90132141
+-0.98164182
+-0.06296557
+0.75657988
+-0.54565740
+-0.05213761
+0.34530342
+-0.87059367
+-0.23596776
+0.21271682
+-0.37797540
+0.33336365
+-0.92366336
+0.42090416
+-0.49703944
+-0.04118705
+-0.04176599
+-0.56156591
+-0.43139172
+-0.05274230
+-0.00264305
+0.65970981
+0.77611625
+-0.53299958
+0.08897030
+0.59479225
+0.25872052
+0.12822902
+-0.42208356
+0.27981317
+-0.21511537
+0.17684805
+0.56942189
+0.51496899
+-0.78138302
+0.39098072
+-0.40030658
+-0.92784911
+-0.36374509
+0.87302315
+-0.36603302
+-0.36543065
+-0.51382655
+0.49220943
+0.88471830
+0.28628147
+-0.83290085
+0.07743967
+-0.10162503
+0.73283350
+0.98565507
+-0.50684407
+0.95498073
+0.53450096
+0.57417202
+0.80475962
+-0.49928325
+-0.47360516
+0.45060050
+-0.55216071
+0.99845600
+0.34195566
+0.66369545
+0.12215281
+0.33317530
+0.14313614
+0.61169648
+-0.00190288
+-0.02511787
+0.82538462
+-0.67600757
+-0.29735106
+-0.93749463
+0.17906904
+0.79424310
+0.24793756
+-0.81564829
+0.87463689
+-0.42198211
+0.36315608
+0.37962842
+0.36370552
+-0.10889393
+-0.34667313
+-0.93403839
+0.43049133
+0.45233214
+0.12398624
+0.98396909
+-0.70493913
+-0.70134145
+-0.03238475
+-0.93654260
+0.78817749
+-0.12438816
+0.58304656
+0.57658708
+0.23452103
+-0.74458510
+0.06194687
+0.44454169
+0.58360302
+0.54840803
+0.17396963
+0.60125160
+0.04916811
+0.60561872
+-0.65074185
+0.13998055
+-0.08472294
+-0.13822800
+-0.08893847
+0.56138599
+0.59803605
+0.18838930
+-0.75994499
+0.99642217
+-0.91691346
+-0.25023413
+-0.17367285
+0.29997003
+0.96091437
+-0.32251096
+-0.57151636
+0.54507887
+-0.33055472
+0.94171178
+-0.17544371
+-0.82349707
+0.28429866
+-0.93043114
+-0.54990825
+0.55718482
+-0.40530789
+-0.18179554
+-0.38478315
+-0.50532818
+-0.15742147
+-0.95415637
+-0.57818606
+0.69307089
+0.16432476
+0.14130735
+0.21540260
+0.34677255
+0.24044394
+-0.35185611
+-0.17644155
+0.35916841
+-0.99448962
+-0.39976269
+-0.25497127
+0.68733072
+-0.48585415
+-0.33016592
+-0.00198519
+0.36449802
+0.02796948
+0.54073656
+-0.76413032
+0.26712775
+-0.67552173
+-0.48327357
+-0.75655136
+0.66145062
+-0.03916538
+0.86039162
+-0.71474040
+-0.48445415
+-0.00291800
+-0.69024825
+0.57542539
+-0.25245142
+0.97830880
+-0.33252388
+0.43271863
+0.83238339
+0.40282500
+0.26057923
+-0.54123119
+-0.04953933
+0.21967340
+-0.35425740
+0.67042828
+-0.07527363
+0.23398030
+0.11770415
+-0.33638483
+-0.95886244
+-0.44621038
+-0.45723498
+-0.73167038
+-0.51351508
+-0.50082526
+-0.55080348
+-0.41207355
+0.73334742
+-0.89401171
+-0.83068557
+0.40548253
+-0.89876240
+-0.05313754
+0.41672790
+0.67191923
+-0.74395424
+-0.06444848
+0.76519859
+0.74513590
+0.50059068
+-0.68638474
+-0.69174162
+-0.42521858
+0.10226762
+0.41676140
+-0.82382590
+0.08762538
+0.84183788
+-0.28740287
+-0.91889306
+0.42165136
+0.78252041
+-0.63384023
+0.70093334
+0.84748650
+-0.44651783
+0.48655367
+0.92132306
+-0.20772493
+0.01784110
+0.79830086
+-0.20778632
+-0.02093035
+-0.87236772
+0.86036456
+0.07659328
+0.71715772
+-0.12431943
+0.10755134
+0.55604303
+-0.39527267
+-0.43986750
+-0.09008193
+-0.00928396
+0.74731660
+-0.64863703
+0.83798552
+0.06692243
+0.66480315
+-0.68682379
+0.80276823
+0.81812382
+-0.65862229
+0.86853683
+-0.58176279
+0.77881598
+0.89523685
+-0.90955931
+0.04863846
+-0.02187961
+-0.23516732
+0.96583438
+0.63068819
+-0.80004904
+0.69257486
+0.14418590
+0.02114236
+0.80489433
+-0.35131216
+0.77495432
+0.20649874
+0.09460068
+0.37412417
+-0.76178224
+-0.80230373
+-0.94192488
+-0.38051414
+-0.17947096
+0.99727666
+0.67537367
+0.13234985
+0.79264665
+-0.01118857
+0.06899548
+-0.60508931
+0.38482893
+0.67660868
+-0.74538052
+0.68281221
+0.93344760
+-0.49289739
+-0.93920948
+0.89021134
+-0.21925944
+-0.70997831
+0.50309622
+-0.77696250
+-0.67556354
+-0.16824389
+0.36300552
+-0.76481576
+0.04582191
+0.76750696
+0.72414398
+0.03868914
+0.84270799
+-0.76303388
+-0.05769038
+-0.33528173
+0.22952056
+0.25210023
+-0.77940735
+0.59073627
+-0.58865085
+0.83410096
+0.50857604
+-0.93456539
+0.82073212
+-0.93056101
+-0.03482252
+-0.71414641
+0.26712954
+-0.38361859
+0.77509153
+-0.94831733
+0.63604569
+0.42593288
+-0.80383760
+-0.82626556
+-0.88956387
+0.75630355
+-0.69309568
+0.69000685
+0.27347708
+0.53236425
+-0.00434452
+-0.43566310
+0.82021236
+-0.64892885
+-0.28207636
+-0.67912683
+0.28325784
+0.61830294
+-0.80611683
+-0.86362313
+-0.09922528
+0.13361061
+-0.39050311
+-0.85723676
+-0.66448864
+0.23361194
+-0.54496521
+-0.76913813
+0.94052303
+0.40717399
+-0.30954623
+0.37200475
+0.57320547
+-0.27576423
+-0.83393677
+-0.72948104
+0.76865077
+-0.49956733
+-0.09526062
+0.26222527
+-0.93980527
+0.00378227
+-0.12536740
+-0.37540108
+-0.09539753
+-0.45475340
+0.02209282
+-0.89987253
+0.18431103
+-0.09971547
+0.10886943
+0.21998668
+0.91462600
+0.85270131
+-0.65507668
+-0.41664672
+-0.99157009
+0.18249559
+0.31962764
+-0.50699323
+-0.60147715
+-0.21738541
+0.84059215
+0.85817349
+-0.16725492
+0.22064924
+-0.90414205
+0.99925578
+0.85857391
+-0.88250561
+0.46676195
+0.53859758
+0.42997515
+0.36326277
+-0.54655349
+-0.75991933
+0.65564132
+0.50959623
+-0.31117284
+0.64525819
+0.10713398
+0.63363922
+-0.53752533
+-0.48922467
+-0.60479099
+-0.89878877
+0.16320777
+0.95464802
+-0.37697727
+-0.12563805
+0.61891371
+0.18583110
+-0.80000584
+0.91446929
+-0.64568648
+0.45692493
+0.62069364
+0.96212629
+-0.55823887
+0.76135067
+0.44636667
+0.44609363
+-0.61891553
+0.53280660
+-0.48671753
+-0.03048375
+0.42804828
+0.27747709
+-0.81418696
+-0.45821089
+-0.28447765
+-0.83257031
+0.74285483
+0.96651280
+-0.04068887
+-0.62633649
+0.26170492
+0.27596211
+-0.80265164
+0.46244955
+-0.33520132
+0.75737965
+-0.05211794
+-0.21443045
+0.59491706
+0.21968591
+-0.76381652
+-0.57694149
+0.85997784
+0.14668405
+0.40851200
+0.32492352
+-0.31670463
+0.92294788
+-0.21211803
+-0.84339431
+-0.69128358
+-0.93914232
+-0.25087249
+-0.86273821
+-0.76697773
+-0.42633158
+0.32556105
+0.99607205
+-0.81359297
+0.02642870
+-0.22790897
+-0.84772889
+0.81528562
+-0.73832337
+-0.85078423
+-0.92492757
+0.45597630
+0.98224310
+0.29419538
+0.92034652
+0.54194684
+-0.73693221
+-0.19703228
+0.81285598
+-0.77008866
+-0.36260846
+0.39454204
+0.47596125
+-0.53814361
+0.69770493
+0.47305841
+-0.02390942
+0.46052146
+-0.62678054
+-0.97162822
+-0.74304187
+0.77714062
+-0.41207296
+0.76898515
+-0.44071889
+-0.80321382
+0.38083088
+-0.97702033
+0.40631080
+0.51444733
+0.01968169
+-0.11063683
+-0.34720057
+0.18368125
+0.82054222
+-0.02473223
+0.84125829
+-0.04866570
+0.47081387
+-0.21904099
+-0.34391767
+-0.97516941
+-0.40378869
+0.83162987
+0.14875519
+-0.19013894
+0.54623318
+-0.19239801
+0.42986941
+0.09484351
+-0.12666780
+-0.39463490
+-0.67150640
+0.84463143
+0.97265267
+0.78101528
+0.93507314
+0.50025487
+0.86650300
+0.51403701
+-0.26491356
+0.96447599
+-0.14869916
+0.99213815
+-0.02848911
+0.71812606
+0.60985649
+-0.79864018
+-0.42981553
+0.81210971
+-0.54625592
+-0.55150545
+-0.22535038
+-0.10725850
+-0.29007584
+0.45537126
+-0.29451144
+-0.67047822
+0.74202204
+-0.72123665
+0.65014839
+-0.70705572
+-0.94382947
+0.27912867
+0.69699287
+-0.53480086
+-0.63970828
+-0.75893536
+0.53008318
+-0.81819513
+-0.53493726
+-0.49184453
+0.53123009
+0.42239130
+0.03111029
+0.50912690
+-0.18613118
+-0.91219011
+0.14178097
+-0.55285326
+-0.49224943
+0.04234684
+0.72056043
+0.32352626
+0.87083435
+0.87176228
+0.07013845
+-0.40194827
+-0.46946210
+0.46098900
+0.57401705
+-0.58878776
+0.04118836
+-0.97834260
+0.72333515
+-0.94243070
+-0.34745681
+0.71357417
+0.90364194
+-0.14262998
+0.69908309
+0.09210086
+0.90223014
+0.73642862
+-0.41320831
+-0.04402882
+0.20581436
+-0.69266272
+-0.78827885
+-0.62226614
+0.57165766
+-0.33991134
+0.33377302
+0.11823666
+-0.94780403
+-0.85447726
+0.83685422
+0.19542718
+-0.85092635
+0.63479459
+0.98385215
+0.59319830
+-0.91971968
+0.09777296
+0.27029800
+-0.31732208
+-0.30266589
+0.13378906
+0.97707140
+-0.80869459
+-0.42119247
+-0.02631831
+-0.48749405
+-0.11204392
+0.37437558
+-0.20428550
+0.29940069
+-0.09714675
+0.04064763
+-0.55541307
+-0.18627578
+-0.04022789
+0.01170290
+-0.29010940
+0.31880200
+0.71605229
+-0.57823536
+-0.34218526
+-0.02063292
+-0.40759265
+-0.13401163
+-0.59890050
+-0.92100577
+0.57351148
+-0.90633003
+-0.75304194
+0.95083714
+0.40351725
+0.73655581
+-0.27900600
+0.24173117
+0.78578711
+-0.97372294
+-0.30696845
+-0.41666639
+-0.63332328
+-0.09157956
+-0.84961869
+-0.42469877
+-0.08672708
+-0.19231510
+0.25269997
+-0.96732896
+0.41447115
+-0.43258226
+-0.27894843
+-0.23817724
+-0.73314232
+-0.67195973
+-0.66604385
+0.25981712
+-0.93529522
+0.16535044
+0.11404276
+0.64015782
+-0.22414583
+0.63898802
+0.27074683
+0.67657602
+0.92242146
+-0.16291881
+-0.41399783
+-0.95123583
+-0.05602831
+0.99835408
+0.26208830
+-0.87655328
+-0.25210369
+-0.20520133
+0.34210765
+-0.39608425
+0.46824121
+-0.07433546
+0.44598925
+0.90962470
+-0.93143389
+-0.18541932
+0.47336960
+0.91377842
+0.28645849
+-0.61992195
+0.97797978
+0.69759870
+0.36512911
+-0.73464954
+0.97833455
+-0.66132525
+0.61587250
+-0.36791748
+0.05700684
+0.73870599
+-0.30149364
+-0.69932434
+0.57071567
+0.49495661
+-0.90283209
+-0.94953138
+-0.22075701
+0.13988221
+-0.99053899
+0.54049897
+-0.71475855
+0.31338799
+0.43736899
+0.59041429
+0.43730879
+-0.86808214
+0.01937115
+-0.94914462
+-0.86763617
+-0.95598927
+0.83064532
+-0.67013884
+0.19157004
+0.42145717
+-0.20388156
+0.40922618
+0.22304499
+-0.84108534
+0.25607932
+-0.88701107
+0.53904700
+-0.03447860
+-0.65466696
+-0.93951728
+0.44260788
+0.30033290
+-0.88275274
+0.90521884
+0.33807826
+0.35914481
+-0.82257323
+0.97530103
+-0.50459883
+0.05962062
+-0.06968433
+0.00135982
+-0.03149992
+0.90082443
+0.11227250
+0.47303760
+-0.59888175
+-0.34251076
+0.54406571
+-0.04230213
+-0.61295751
+-0.20312673
+0.34689403
+-0.93168354
+0.93176842
+-0.91419812
+-0.89687614
+-0.26104116
+-0.12711525
+0.55503428
+0.43130004
+-0.42909116
+0.98500872
+-0.63810080
+0.99915588
+0.37127054
+-0.34718156
+0.73723245
+-0.26445907
+-0.73466235
+-0.19365942
+-0.70040688
+-0.93219223
+-0.26029205
+-0.87215969
+-0.29598379
+0.65028203
+0.61454320
+-0.68259537
+-0.24294746
+-0.97966619
+0.80721641
+-0.96380323
+0.48516333
+-0.86936276
+-0.06544840
+0.31496739
+0.30631030
+-0.50703442
+0.24060750
+-0.44766700
+-0.94615639
+-0.65905181
+0.73120964
+0.81855881
+0.51699710
+0.16199172
+-0.79902889
+0.06505406
+0.13963342
+0.17051148
+-0.22052550
+0.38454580
+0.85714734
+0.89610147
+0.60920870
+-0.05519170
+-0.71950564
+0.28104162
+0.62679279
+0.11521208
+-0.82994692
+-0.12702596
+-0.36325848
+-0.64362997
+0.93966222
+-0.05061907
+0.89673066
+0.38790393
+0.39755547
+0.08390105
+-0.60621595
+0.48556983
+-0.11252582
+0.88392603
+-0.63264745
+0.42884588
+0.49443543
+0.26829982
+-0.71962637
+-0.83843918
+0.46740615
+-0.00246441
+-0.05774218
+0.70765328
+-0.91047993
+0.26466954
+0.62434542
+0.73446822
+0.35946369
+0.50803638
+-0.79131526
+-0.12754464
+-0.14238834
+-0.58138123
+0.42647684
+0.07554245
+0.90876055
+-0.38508171
+-0.92650561
+-0.82837281
+0.69439399
+0.49303508
+0.84609723
+0.62845242
+-0.70173588
+0.90085626
+-0.58579284
+0.15525007
+-0.94038720
+-0.14724553
+0.89791000
+0.37898612
+0.60590553
+-0.73906291
+0.77674854
+0.61380959
+-0.44403660
+-0.95383857
+0.40669477
+0.10962677
+0.28744590
+0.18490350
+0.16438103
+0.89264429
+0.09419537
+0.22402549
+-0.99633469
+0.18445885
+0.44278586
+-0.13013834
+0.98686719
+-0.64029545
+-0.10334247
+-0.28956640
+-0.46125650
+0.02979314
+-0.70925811
+-0.75414370
+0.55945086
+-0.74729061
+0.11713827
+0.13874006
+0.69119501
+-0.89912855
+0.32577038
+-0.19130731
+-0.09571290
+-0.72518197
+0.47455144
+0.87896669
+-0.75565320
+-0.28069192
+0.74302495
+0.72249877
+-0.05637771
+0.69903600
+-0.17826945
+0.61185634
+0.94419348
+0.58903921
+-0.92208393
+-0.61195797
+-0.54164270
+-0.59173331
+0.29960465
+0.21732152
+0.72169614
+0.25031555
+-0.94016923
+0.34717858
+-0.57732049
+-0.12212503
+0.67628109
+0.40530789
+0.54841781
+-0.99491625
+-0.64987603
+0.49753428
+0.70914590
+0.14940643
+-0.76009592
+0.05728173
+0.65448892
+0.28421795
+-0.80696362
+0.86335421
+-0.64555356
+-0.89113256
+0.82609034
+0.49699605
+-0.19206709
+-0.69718028
+-0.01027415
+-0.63476312
+0.60348443
+0.74125439
+0.04187910
+0.47185024
+-0.40880446
+0.72057993
+0.91335157
+-0.85906776
+0.47471013
+-0.62560794
+0.88597671
+0.13383275
+0.63408570
+0.19806394
+0.52553715
+-0.50505831
+0.06453363
+0.12696087
+-0.35182406
+0.25783134
+0.40814121
+-0.42928857
+-0.40541384
+-0.44353456
+-0.07184341
+0.29009094
+-0.98334839
+-0.83107053
+-0.12466619
+-0.08224469
+0.86175588
+0.46341866
+-0.44203957
+0.53466066
+0.33054664
+-0.41427760
+-0.46925309
+-0.60163993
+-0.22064275
+0.72724712
+-0.38595331
+0.13388658
+0.91205704
+0.93996608
+-0.39215469
+-0.54657131
+0.88223267
+0.67274177
+-0.64367968
+0.11247253
+0.48556590
+-0.18212932
+0.41369629
+-0.71813613
+-0.10303593
+0.12896895
+-0.04768246
+-0.18200803
+0.82556772
+0.77414155
+-0.51802343
+-0.65885732
+0.76857400
+0.76401973
+0.56866908
+-0.86859129
+-0.63235077
+-0.48437673
+0.72839546
+-0.24870521
+-0.89774077
+-0.04935914
+0.91388571
+-0.68275884
+-0.68499222
+-0.49982226
+0.04323411
+-0.61158454
+0.31225348
+0.84127367
+-0.73198444
+0.31671584
+-0.89673971
+-0.62617823
+0.24833226
+0.35124052
+0.67585206
+0.49714327
+-0.41506964
+-0.96599058
+0.31613088
+0.44941771
+-0.60331267
+-0.25912374
+0.77041996
+0.18588948
+-0.11540490
+-0.04494083
+-0.15511233
+-0.82421324
+-0.73600948
+0.79268813
+-0.63965297
+-0.52659723
+-0.99616100
+0.24503827
+0.30892324
+0.42149734
+0.55725849
+-0.71181646
+-0.89296666
+-0.93667558
+-0.48862416
+0.85105681
+-0.43005049
+0.38359094
+0.74684584
+-0.72283727
+0.12387979
+0.94865429
+0.60657275
+-0.12638134
+-0.46897715
+-0.51672447
+0.98129439
+-0.04762715
+-0.07452285
+0.99181330
+-0.49492699
+0.41408455
+0.55520296
+0.09726417
+-0.56329903
+0.73145545
+0.06897187
+0.63973999
+-0.21238524
+-0.78895339
+-0.28151983
+0.70496655
+0.93964469
+-0.65892571
+0.12719989
+-0.32870007
+0.11231458
+-0.95374025
+-0.66712457
+-0.92703933
+0.68287635
+0.84874153
+-0.99175922
+0.37573886
+-0.53688657
+-0.05200672
+0.86136758
+0.71665883
+-0.63687590
+-0.20537347
+-0.22084153
+0.31751084
+-0.36430359
+0.59483516
+0.20987046
+0.55413151
+0.43227208
+-0.99961848
+-0.55342206
+-0.67334405
+-0.59917477
+-0.62453052
+0.57398617
+0.23007607
+-0.27862996
+-0.77907684
+-0.19464326
+0.03787565
+-0.97672447
+0.42690611
+0.25190532
+-0.88445561
+0.54227936
+0.06711018
+-0.47953784
+0.74832177
+-0.20474970
+0.97649670
+0.88928258
+0.40530276
+0.27106225
+-0.14211959
+-0.58754140
+-0.67964149
+0.19393897
+-0.04046851
+0.92170298
+-0.14371806
+-0.77792154
+0.60164976
+0.97839165
+0.01058733
+0.21964538
+0.72940958
+-0.86997649
+0.60994136
+-0.69462681
+0.02273893
+-0.25880301
+0.03544164
+0.43499482
+-0.43447661
+-0.25451106
+0.68269551
+-0.46762985
+0.07670379
+0.09589911
+0.01054060
+0.84839642
+0.47500634
+-0.70452717
+-0.84698883
+-0.03642178
+-0.17074800
+-0.91344582
+0.44002128
+0.40446389
+0.18994188
+-0.77326410
+0.71715820
+0.19982529
+-0.25602722
+-0.37733907
+-0.09142357
+-0.82568033
+-0.17684662
+0.31207144
+0.71133542
+0.67724097
+-0.67691314
+-0.32407397
+0.49644661
+0.95825267
+0.20223248
+0.38613212
+-0.89656623
+0.60390246
+-0.70906496
+-0.28034401
+0.18651485
+0.89453590
+0.92392051
+0.13302636
+0.29996490
+0.63361061
+0.64485300
+-0.11111116
+0.90655816
+0.99629259
+-0.62295142
+-0.54563943
+0.03997242
+0.36324155
+0.16460276
+-0.79171991
+-0.78683579
+0.02630985
+0.25869966
+0.08982432
+-0.94404716
+0.92722166
+0.79893816
+-0.23473203
+0.44091594
+0.27966630
+0.07996261
+0.83192980
+-0.52628043
+0.07810950
+-0.68039030
+0.80372787
+-0.98817571
+-0.39776170
+0.17780399
+-0.62533370
+0.73900461
+-0.32790887
+0.27657938
+0.57020676
+-0.71591425
+0.02704191
+0.49609065
+0.49693573
+-0.07033640
+-0.84386313
+-0.34859955
+-0.49767578
+0.90721035
+0.57647932
+0.40064955
+-0.94438737
+0.23080242
+0.33271301
+0.16597080
+0.51899064
+-0.02396947
+-0.05432528
+0.66889250
+0.71288264
+-0.84809050
+-0.13811654
+-0.64014122
+0.17083442
+-0.26031387
+-0.43863028
+-0.03208786
+-0.14201802
+0.94649780
+-0.53954086
+0.81248081
+0.69718635
+-0.66513401
+-0.70795208
+0.51429069
+0.22475088
+0.99719048
+0.84871507
+0.15082586
+-0.10695583
+0.14992392
+0.06258035
+-0.21008688
+0.01898098
+0.76758695
+-0.35048324
+0.31909311
+-0.06604689
+-0.71603903
+-0.80071516
+0.70021486
+-0.91303574
+0.16993260
+-0.43546402
+-0.78122193
+0.96133113
+0.47110581
+0.32791018
+0.07662952
+0.82717693
+0.08241403
+0.91165924
+0.39671969
+-0.79163097
+-0.48755813
+-0.71322426
+-0.78843133
+0.88852012
+0.70110631
+-0.92780484
+-0.34364671
+0.78640079
+0.13232124
+-0.42281514
+0.76824355
+0.87283671
+0.73906076
+-0.56570986
+-0.07742703
+-0.26938045
+-0.52111679
+-0.77052462
+0.96989322
+0.63546443
+0.59528041
+0.94722950
+0.21430182
+0.84177125
+0.46148658
+0.61234963
+-0.06278294
+-0.06233048
+0.89182341
+-0.19632488
+-0.87255572
+-0.61721104
+0.51467836
+0.29771495
+0.32471597
+-0.40456164
+0.67631304
+-0.82523797
+-0.81068011
+0.15208685
+-0.29868954
+-0.08801341
+-0.59483969
+-0.66086787
+0.52958834
+-0.52010465
+-0.33042151
+0.14394033
+0.26854336
+-0.33602738
+0.44844007
+-0.71763971
+0.28311789
+0.42954409
+-0.81732948
+0.75687051
+0.07675445
+0.96322322
+-0.97014654
+0.99991977
+0.80502033
+-0.49841231
+0.01616013
+0.92649901
+-0.50129589
+0.12621272
+0.64496899
+0.23546338
+-0.54960999
+0.02947605
+0.61877167
+-0.49647540
+-0.01961970
+0.26410329
+0.79994857
+0.17665792
+-0.14961672
+0.67611599
+0.55662799
+-0.99479189
+0.06318080
+-0.59256276
+0.00656378
+0.63342130
+0.37508988
+0.78513539
+0.80920601
+0.79000866
+0.29352462
+0.10475457
+-0.52356473
+0.25976694
+-0.30599988
+-0.34408361
+0.73208320
+0.45235527
+-0.96377088
+0.62696528
+-0.74099305
+-0.25313962
+-0.68832985
+-0.26609230
+-0.32508177
+0.87065196
+-0.35359102
+0.05903518
+-0.20213062
+0.09864988
+-0.14050925
+-0.15997841
+0.12639314
+0.98979787
+-0.73821476
+0.75313880
+-0.35363548
+-0.95510810
+-0.73033366
+-0.42465756
+-0.26331162
+0.75521592
+-0.69615180
+-0.15328612
+-0.11536369
+0.89974644
+-0.52378242
+-0.90699957
+-0.47231281
+-0.38044083
+-0.43827730
+-0.14438486
+-0.94751893
+0.50663626
+-0.91653229
+-0.53513220
+-0.34726679
+0.01476681
+-0.14188170
+0.06496000
+0.23443353
+0.60835195
+0.17479527
+-0.64161709
+0.07650363
+0.53168190
+0.91565132
+-0.86878151
+0.24895334
+0.72165084
+-0.55731583
+-0.77064240
+0.36353087
+-0.92939464
+-0.66208658
+0.69074261
+-0.54626667
+-0.46889472
+0.38306856
+-0.65707046
+-0.33441937
+0.40173876
+0.40592730
+-0.94717741
+0.34713721
+0.28065109
+0.22844696
+0.71945608
+0.73464256
+-0.82255028
+0.85478741
+0.37995032
+-0.60725180
+-0.82056111
+0.20788273
+-0.63336570
+-0.21042155
+-0.12553021
+-0.91524871
+0.52728870
+-0.25531059
+0.31994239
+-0.58060023
+-0.47034808
+0.58272716
+-0.42929671
+0.24576790
+-0.40649762
+-0.33842129
+-0.64025554
+-0.22684741
+0.97253978
+-0.03562683
+-0.58950225
+0.25575042
+-0.39381379
+0.15473485
+-0.45169955
+-0.02748781
+-0.17179942
+-0.54424763
+-0.58407339
+0.53356183
+0.83206117
+-0.56428653
+-0.57696617
+0.72426152
+0.49377656
+0.47121179
+-0.70519972
+0.18444061
+0.49414229
+-0.77664226
+-0.58677825
+0.26905012
+0.32730997
+-0.99494573
+-0.27162886
+0.95489442
+-0.84388593
+0.04999685
+-0.91675249
+-0.40267682
+-0.64171585
+-0.36160231
+-0.19743961
+-0.04981780
+0.39629817
+0.73961365
+0.25554621
+-0.17494649
+0.92824793
+-0.89648276
+0.09433496
+0.57287550
+0.11789966
+0.34279382
+-0.22073162
+0.78517020
+0.07484853
+-0.99524641
+-0.56360048
+-0.98896750
+0.39402258
+-0.92981419
+0.38319170
+0.39091516
+0.85615623
+-0.61397034
+-0.06713653
+-0.40469366
+0.13055015
+0.24999726
+0.91299844
+-0.28745908
+-0.90732300
+0.23768628
+0.15788949
+-0.07020473
+0.11067200
+0.07754588
+0.55554116
+-0.85830940
+0.62837219
+-0.66823071
+-0.67431870
+0.35027516
+0.32706654
+0.93992901
+0.89058197
+0.89015460
+-0.36117142
+-0.24852246
+-0.78528737
+-0.67734510
+-0.45901728
+0.74586570
+0.59674215
+-0.81308983
+0.36887109
+-0.53078961
+0.94809484
+-0.87132853
+-0.67122597
+0.20174420
+0.52829087
+-0.56344065
+-0.41035616
+0.64474881
+-0.72945994
+0.76144922
+-0.27375853
+0.07568586
+-0.90452032
+0.83260870
+0.03843939
+-0.75783563
+0.26669526
+0.21843648
+0.87005687
+0.39023006
+-0.36913157
+-0.46634734
+-0.12057924
+-0.30060643
+-0.97520183
+0.42358196
+-0.30173302
+-0.78578089
+0.43256867
+-0.47684419
+-0.34266019
+0.69975221
+0.53488529
+-0.15693766
+-0.73002854
+-0.27881444
+-0.56307751
+-0.70920360
+0.91742551
+0.23315871
+0.26061022
+0.74679434
+-0.00119138
+0.93438661
+-0.74547112
+-0.16040272
+0.49940932
+-0.65231028
+-0.28085381
+0.32550311
+0.79818106
+-0.31979901
+-0.52689379
+0.93209517
+0.60001957
+0.99670625
+-0.59173194
+0.70155561
+0.02943647
+0.48136866
+-0.07257068
+0.14906991
+0.99504852
+0.16608787
+-0.28903413
+-0.84284556
+0.53696179
+-0.77818717
+-0.36582857
+-0.84692864
+0.37909555
+0.33962286
+0.40089059
+-0.29735535
+-0.53794807
+0.40120327
+0.77382767
+-0.95415369
+-0.59421936
+0.96809781
+-0.13159454
+-0.10569203
+0.94830239
+0.36794615
+-0.58793646
+0.33394969
+-0.26278436
+0.63128638
+0.04635108
+-0.27127349
+-0.78056422
+0.35553539
+0.27247751
+-0.40686297
+0.22871614
+-0.20840663
+0.09234011
+0.61163914
+-0.02477598
+-0.83899766
+-0.77332473
+-0.36669242
+-0.06415468
+-0.42146236
+0.05807924
+0.75931895
+0.15977371
+-0.87155955
+-0.73519874
+-0.98830870
+0.79682946
+0.35847628
+-0.57116655
+-0.23780012
+-0.40802342
+-0.75506936
+-0.54545593
+-0.48532397
+-0.73673153
+-0.50199428
+0.42591238
+-0.76962964
+0.75778246
+0.13031864
+0.88567686
+0.81628573
+-0.55223656
+0.27128351
+-0.73321819
+-0.20066774
+0.92407060
+-0.50181404
+0.65112686
+-0.29295135
+0.03067875
+0.58120060
+0.70042622
+-0.24836195
+0.10801172
+-0.08185679
+-0.29508722
+0.36499810
+0.22304678
+-0.21686101
+-0.29393667
+0.63650715
+-0.52502605
+-0.33230180
+-0.51815435
+0.90540290
+0.68889725
+0.58083594
+-0.29240966
+-0.55118161
+-0.94970675
+0.31062973
+0.53426123
+-0.90106272
+-0.93633217
+0.72514951
+-0.85508384
+0.46354878
+-0.23819083
+-0.37881500
+-0.20379430
+-0.18491584
+0.98491895
+-0.65026206
+0.85395098
+-0.97998877
+0.16433096
+-0.58499822
+-0.86721477
+-0.59947780
+0.53176081
+0.56185269
+0.39469111
+-0.00013536
+-0.61870557
+-0.91560516
+0.56040263
+-0.31775045
+0.38006842
+-0.00359440
+0.90367055
+-0.74194288
+-0.76033263
+0.25838363
+0.65369332
+0.30452621
+-0.70676380
+0.17403007
+0.55797946
+0.56743729
+-0.08003145
+0.50023592
+-0.93317004
+-0.31024933
+0.73262858
+0.82145905
+-0.92298876
+-0.64704657
+-0.81699374
+0.44827294
+-0.01589590
+-0.83915907
+-0.47780043
+0.47491360
+0.60051990
+0.29507303
+0.68852115
+-0.14119029
+-0.04672581
+-0.71606237
+0.47826338
+0.48110974
+0.33454418
+0.84519804
+0.89944649
+0.26431191
+-0.01517719
+0.73165751
+0.37402916
+-0.86140501
+0.49299252
+-0.19836390
+-0.21985674
+0.78284061
+0.18050027
+-0.78556201
+-0.85315277
+0.80286217
+-0.20781720
+-0.91690465
+0.34584010
+0.12026751
+-0.01909000
+0.72119975
+-0.95650869
+-0.52597830
+-0.58785498
+0.91494763
+0.19480979
+0.73063385
+0.88941240
+-0.89555935
+-0.02365720
+0.21961534
+0.98403919
+-0.61867675
+-0.81766067
+0.51019156
+-0.76593933
+0.70654345
+0.87258840
+-0.13000453
+-0.26943707
+0.74186909
+-0.87348722
+-0.44072407
+-0.63940376
+0.28436255
+-0.50396499
+-0.35256368
+0.39553773
+0.77456403
+0.15111887
+0.28281665
+-0.72280639
+-0.79444844
+0.89304483
+-0.21213681
+-0.00835109
+-0.29644287
+-0.76977539
+0.08908582
+-0.56722015
+-0.78728241
+-0.49663854
+0.44736564
+0.21527135
+-0.50321031
+0.10620081
+-0.57403132
+-0.78589679
+0.22535300
+-0.74317500
+0.66737783
+0.70720303
+-0.91863654
+0.28692257
+0.50607181
+0.32608545
+0.14620674
+0.30394292
+0.88585579
+0.45889139
+-0.47906840
+0.00065625
+-0.79520717
+-0.71163669
+-0.98853651
+-0.10448772
+-0.74406192
+-0.75760347
+0.99483645
+-0.72538579
+0.10300803
+0.47965539
+-0.70288265
+0.52465701
+-0.28378385
+0.60012698
+0.97318041
+-0.59946376
+0.73582971
+-0.18141615
+-0.66611865
+0.80830288
+-0.57095265
+-0.56536555
+0.39294517
+-0.73593944
+0.11559761
+-0.73993346
+-0.11175871
+-0.94488949
+-0.33228087
+-0.11855304
+0.63938773
+0.06465995
+-0.68257070
+-0.08507001
+0.08514142
+-0.82392028
+0.06868470
+-0.60232255
+0.20887589
+-0.88837836
+0.28142130
+-0.04520261
+0.69505751
+0.99805272
+0.65456748
+-0.49493021
+-0.83084138
+0.43818200
+0.25297165
+-0.47167099
+-0.45583194
+0.78463852
+-0.58375880
+0.34116757
+0.75242937
+0.05990469
+0.38443303
+0.34785533
+0.24033308
+0.94111502
+0.44885051
+0.94433773
+-0.48453432
+0.54670358
+-0.03417271
+0.06344104
+0.94127023
+0.63598013
+-0.89391172
+0.24779584
+0.29726368
+-0.21040007
+-0.33849430
+0.39456634
+0.56301591
+-0.21594391
+-0.57014795
+0.21382919
+0.89633256
+0.45087423
+-0.47940010
+-0.72110208
+-0.14699435
+0.01634411
+-0.81315828
+-0.24744539
+0.82977862
+-0.39240345
+0.54437720
+-0.23121836
+0.28023112
+0.02078421
+0.41992402
+0.89815745
+0.76805645
+-0.62135934
+-0.23761669
+-0.79188340
+-0.09131962
+-0.58777228
+0.83021617
+-0.46779758
+-0.16916919
+0.25289023
+-0.99003682
+0.97151697
+-0.94389790
+0.08906376
+0.65470600
+-0.23362052
+-0.41289008
+0.62757170
+0.22294879
+-0.71113896
+0.87750566
+-0.64878893
+0.70147526
+0.32702827
+-0.44458753
+-0.34143668
+-0.72689286
+-0.17592794
+-0.90792365
+0.34774566
+-0.50907958
+-0.56318110
+0.50063562
+-0.81455955
+-0.68384156
+-0.19740647
+0.38029456
+-0.77449197
+-0.25547278
+0.78453302
+-0.94011586
+-0.24826252
+-0.48123431
+-0.02186185
+-0.59201565
+0.51537097
+-0.96357296
+-0.27716368
+0.60597157
+0.44663465
+0.85134590
+0.43078399
+0.22047746
+0.77576005
+-0.38625371
+0.76287353
+0.95503211
+0.36286032
+0.36394405
+-0.12079102
+0.26314986
+-0.99011157
+0.58818650
+0.92460477
+0.76653862
+0.93548918
+-0.54834950
+0.15221584
+-0.73836279
+-0.75408208
+-0.79338536
+0.01851904
+0.70884597
+-0.75289281
+0.11642873
+0.02174306
+0.24840963
+0.62147760
+0.69073045
+-0.78942944
+-0.23061109
+0.74141550
+0.14939094
+-0.30472732
+-0.83629216
+-0.54985800
+0.19864178
+0.87165308
+-0.03200579
+-0.37911969
+-0.20106941
+-0.29895622
+-0.06831950
+0.81529295
+-0.62678781
+0.58362186
+0.28622293
+-0.15681529
+-0.15405560
+0.90045798
+0.81892347
+-0.87031747
+0.52063656
+-0.86489438
+0.09548020
+0.73805451
+0.86542428
+0.05037677
+-0.66041607
+-0.42414683
+-0.05564821
+-0.95391942
+-0.50977319
+-0.93584700
+0.69770241
+0.20458698
+-0.22756916
+0.35905838
+-0.70840406
+-0.08438343
+0.16158056
+-0.75703242
+-0.98523366
+0.48946548
+-0.55515727
+-0.58453673
+-0.00369990
+0.26481760
+-0.50865391
+-0.85754140
+-0.90531171
+0.41958690
+-0.29228830
+0.18577588
+-0.48544431
+0.09063530
+-0.29093575
+-0.37640107
+-0.11600816
+0.89067721
+0.28686547
+-0.45589262
+0.44392776
+0.21030426
+0.86027181
+-0.12140912
+-0.16802275
+0.31119430
+0.31448781
+0.67724001
+0.88359368
+-0.20546895
+-0.56118456
+0.75735760
+0.50971222
+-0.40830582
+-0.74854279
+0.65806365
+-0.55289829
+0.05566454
+0.10392654
+0.34061623
+-0.15099549
+0.69146490
+-0.77188304
+0.48496151
+0.82528985
+-0.76412643
+-0.54667708
+0.69224536
+0.78821504
+0.28586769
+0.31886292
+-0.59992278
+-0.37393892
+0.31790066
+0.40057027
+-0.80982263
+-0.63623306
+-0.23623240
+0.10100341
+0.44904792
+0.09796405
+-0.23570496
+0.62255120
+-0.73615715
+0.80235887
+-0.65928289
+0.53470361
+0.64395988
+0.93988669
+-0.23649573
+0.96265686
+-0.53917083
+-0.73126593
+-0.86872263
+0.23519683
+0.47484040
+0.71582234
+-0.46266949
+0.97416437
+-0.97561562
+-0.23676962
+-0.39869499
+0.86704731
+-0.20652962
+0.37237036
+-0.87014064
+0.35427535
+0.23339438
+-0.75080720
+-0.81721510
+0.99978161
+-0.21022701
+-0.06777495
+-0.53969190
+0.69416392
+0.59833860
+-0.31463677
+-0.48509300
+0.11616457
+0.45485878
+0.34574831
+-0.91817447
+-0.99826283
+-0.25047415
+-0.50600153
+-0.93365247
+0.54420197
+-0.25359213
+-0.09550142
+0.75820076
+0.38583720
+0.38308644
+0.49737239
+-0.82240579
+0.85710704
+-0.58324024
+-0.61468381
+-0.05487138
+0.13617289
+-0.47147471
+0.69891024
+-0.33842868
+-0.17933542
+0.59580827
+-0.76227042
+0.97696900
+0.01710188
+0.81910706
+0.72878265
+0.80453110
+0.55947685
+0.34065259
+0.89212954
+0.46114385
+-0.73019838
+0.34201407
+-0.49093407
+-0.16713673
+-0.80673498
+-0.07669848
+-0.84962642
+0.35261822
+0.48341429
+-0.24712491
+0.45910728
+0.06200099
+0.42125452
+0.73926663
+-0.56664789
+-0.00242597
+-0.53942868
+-0.83287886
+0.46564198
+0.02237463
+-0.12080467
+0.62234509
+0.46896267
+0.74022365
+0.17505491
+0.10088229
+0.05456877
+-0.02133709
+-0.84411971
+-0.39252836
+0.35286963
+-0.31520981
+0.95846951
+-0.65910080
+-0.83615211
+-0.36488396
+-0.65349358
+-0.45618439
+-0.04788345
+-0.69233194
+-0.37748110
+-0.45850444
+0.96928918
+-0.72478294
+0.29136932
+0.13769162
+0.64442611
+0.05687189
+0.50866687
+-0.39868963
+-0.59909701
+0.17484164
+-0.28729695
+-0.40440398
+-0.81341110
+0.28270781
+0.86532378
+0.14559877
+0.55375171
+-0.18093228
+0.46579206
+0.98296237
+-0.47827417
+0.67933702
+0.01388037
+-0.51679891
+-0.50001672
+0.84347296
+0.04529226
+-0.81835249
+-0.37303728
+0.08427155
+-0.97604569
+-0.27449656
+0.17292964
+-0.64443520
+0.59565294
+0.72147274
+0.06030464
+-0.48476124
+0.76123905
+0.16607487
+0.57423329
+0.34902906
+-0.20292842
+0.84286594
+-0.61527014
+-0.96520806
+-0.93539993
+-0.00476962
+-0.77887249
+-0.44406766
+0.61018741
+-0.98795383
+0.50000429
+0.74993467
+0.57246447
+-0.46192807
+0.07968283
+-0.74984366
+-0.68998036
+0.42859519
+0.60268342
+0.55721784
+-0.52067333
+0.60745335
+-0.05790168
+0.62667155
+-0.25921983
+-0.92351110
+-0.25014144
+-0.32882595
+-0.60212973
+0.26454926
+-0.81065060
+-0.48740280
+0.70886636
+0.20548916
+-0.07446533
+-0.06311899
+0.26896358
+0.24778724
+-0.80271855
+0.88081682
+-0.47599232
+0.51795602
+-0.93798874
+-0.51212007
+-0.23226160
+0.39672554
+-0.56894529
+0.13952327
+0.05247378
+-0.70260835
+-0.56499031
+-0.40609312
+-0.46644151
+0.29528832
+0.27668941
+-0.63890445
+0.59576476
+-0.86820835
+0.60088432
+0.44287241
+0.61857224
+0.53699994
+0.39651000
+0.54767680
+-0.54641807
+0.07503307
+-0.45758271
+-0.03840917
+0.94979215
+0.00587583
+-0.59264958
+0.22660065
+-0.70777246
+0.01801157
+0.07336485
+0.81600320
+-0.36466271
+-0.73249540
+-0.58067834
+0.03909528
+-0.61017081
+-0.73638093
+-0.19938082
+-0.02022564
+-0.26138824
+-0.53427368
+-0.59598285
+-0.33484787
+0.36255038
+0.54338384
+0.91385639
+-0.81918180
+0.98109221
+-0.65972707
+-0.94511468
+0.05201781
+-0.32376951
+-0.75128970
+-0.30024248
+0.77746952
+-0.51230991
+0.20916247
+-0.65739411
+-0.76852934
+0.42413383
+0.70552756
+0.45544261
+0.53605226
+0.83517462
+-0.09564717
+0.59324953
+0.96314802
+0.11183627
+-0.77214610
+0.59940803
+-0.79470605
+0.23005939
+-0.24085742
+0.95916665
+-0.79441769
+-0.85982479
+0.57774377
+-0.92437030
+-0.85233727
+-0.29696125
+0.63926792
+0.34362233
+-0.16661692
+0.55461919
+0.58037019
+-0.03392285
+0.79470849
+0.40808070
+-0.20184630
+0.00706327
+0.75749171
+0.78032839
+-0.92886914
+-0.11908633
+0.52854908
+0.76410627
+-0.15747774
+-0.66900218
+0.49063981
+-0.21702576
+-0.25328314
+-0.77598517
+-0.77205716
+-0.63549992
+0.35847712
+0.18625844
+0.86947250
+0.14787984
+0.80855620
+0.98848480
+0.97092511
+-0.04283404
+0.25254325
+-0.52451951
+-0.62267406
+0.43701729
+0.44991114
+-0.06232803
+-0.42490932
+-0.30343002
+0.40646507
+-0.95388355
+-0.99552470
+0.71584517
+0.97323100
+-0.85350150
+-0.51282893
+-0.04823892
+-0.70700916
+0.62079644
+-0.28185284
+-0.61327580
+0.61799431
+-0.75292015
+-0.04689634
+-0.58502856
+-0.52752712
+0.36116695
+0.73837924
+0.40417147
+-0.93019307
+-0.27075380
+0.66939000
+0.04192282
+0.47979441
+-0.29040863
+-0.14988339
+0.71661240
+0.72167897
+-0.71344962
+-0.76899869
+-0.63877983
+-0.39038351
+-0.22452728
+0.97981155
+-0.58264739
+-0.65961947
+-0.45577055
+-0.21005875
+-0.74123512
+-0.40375257
+0.96694728
+-0.35928227
+-0.09196297
+0.08963571
+0.40968525
+0.79510562
+0.78945849
+0.85600853
+0.48730512
+0.79990314
+0.76700924
+0.83855538
+-0.39482820
+0.67984121
+0.45279173
+-0.03144888
+0.00850670
+-0.53511941
+-0.99358612
+-0.16583735
+0.94717132
+0.70380164
+0.64449488
+0.93628266
+0.09680343
+-0.02920190
+-0.88875057
+-0.37566638
+0.23477062
+-0.25712023
+0.94404228
+-0.94162939
+0.04082477
+0.21968513
+0.92889722
+-0.67148095
+0.57084155
+-0.03911877
+-0.21950061
+-0.84162620
+0.07620372
+-0.85278133
+0.36111952
+0.37695799
+0.27355289
+0.01401328
+-0.16476373
+-0.82048607
+0.38482010
+0.19877362
+0.26775813
+0.79135013
+0.37558687
+0.27620780
+0.72203159
+-0.75838195
+-0.38484389
+-0.22235483
+0.54546750
+-0.46104831
+0.21610749
+0.47710276
+-0.93930712
+-0.68026504
+0.32170820
+0.06583011
+-0.77449283
+-0.93649369
+0.88831830
+-0.85187337
+0.53899169
+-0.50464946
+-0.55291161
+-0.28932941
+0.64706933
+0.72612476
+0.90381658
+-0.61081114
+0.75836635
+-0.97825694
+-0.38399231
+0.76017904
+-0.33699220
+0.90684307
+-0.68846357
+0.88489556
+0.83764839
+-0.98203660
+-0.39918804
+-0.84979993
+-0.09971797
+-0.01560837
+-0.18499506
+-0.84938022
+-0.00614536
+0.15899336
+0.36399972
+-0.94001832
+1.00196472
+0.33060452
+-0.60004231
+-0.37016673
+0.50322182
+0.47689140
+-0.06241567
+0.24669876
+-0.44424670
+-0.50733688
+0.96987088
+-0.23221917
+0.27276015
+0.03191839
+0.04791049
+-0.30108292
+0.16880655
+-0.74999012
+0.05325464
+0.82723988
+-0.23093228
+0.69189622
+0.35857332
+0.79290293
+-0.22282309
+-0.91429144
+-0.93601822
+-0.78757212
+0.90500973
+-0.33092510
+0.76124801
+0.67443051
+0.76668978
+0.30045722
+0.68694103
+-0.97081754
+-0.81177652
+-0.82727500
+-0.96860642
+0.42517580
+0.86678542
+0.84102051
+-0.59415567
+0.44680403
+-0.15215536
+0.41463283
+-0.30344306
+0.96269307
+-0.23836332
+0.15076471
+0.88624336
+0.37331983
+0.67364132
+0.66165101
+-0.40622056
+-0.72686092
+-0.40405927
+-0.60131638
+-0.17591062
+-0.51324913
+0.08931577
+0.43218064
+0.87116981
+-0.17834097
+-0.86829403
+0.26980162
+-0.51627475
+0.62891769
+0.98839486
+0.88194704
+-0.73208672
+0.89866459
+-0.32823133
+0.26163352
+0.49422765
+0.65092778
+-0.40900034
+-0.17447555
+-0.22364652
+-0.41180134
+-0.11683351
+0.98728430
+-0.66797668
+0.66824090
+-0.67017290
+0.68914473
+-0.13127649
+0.06374693
+-0.14698064
+-0.63021785
+0.59187353
+0.34826195
+-0.08356786
+-0.55345190
+0.09380901
+-0.95657318
+0.77476847
+-0.16723639
+0.56870270
+0.26554549
+-0.74177727
+0.85468817
+0.55319929
+0.10108387
+-0.11012346
+0.19904828
+0.37718976
+-0.60882583
+0.96327639
+0.92357707
+0.81914043
+0.86675990
+-0.57532388
+-0.75965193
+-0.18781698
+-0.92387060
+-0.24697423
+-0.47934055
+0.61081374
+-0.58188030
+0.54224908
+0.28113008
+0.02027142
+0.27010989
+0.38995600
+-0.94108229
+-0.30990463
+0.98510671
+-0.07264185
+0.03483105
+-0.84093449
+0.35390592
+0.24561930
+-0.36893958
+-0.21878564
+-0.50332355
+0.13506699
+-0.48977226
+0.86622918
+-0.82282138
+-0.45537841
+0.67098498
+0.45283902
+-0.54650313
+0.22313309
+0.32184458
+0.94170165
+0.92697191
+-0.72170126
+-0.65346095
+-0.73075721
+0.54176497
+0.20991802
+0.76824093
+-0.39571255
+0.84358382
+-0.86890736
+0.25739253
+0.10387766
+-0.09643990
+-0.29165995
+-0.92066483
+-0.56596395
+-0.70752981
+0.20625603
+0.99680686
+0.72047305
+-0.68598402
+-0.54801920
+-0.94816178
+0.15140724
+0.84953916
+0.05908740
+0.56035995
+-0.01077729
+-0.94613508
+-0.41721654
+-0.49288929
+-0.20254582
+-0.03192389
+-0.75722377
+0.77563143
+-0.03465700
+-0.64536792
+-0.94907521
+0.77836883
+0.39722908
+-0.25167966
+-0.43263668
+-0.63143307
+-0.61482707
+-0.79617228
+0.52818120
+-0.47083443
+-0.41466022
+-0.95602892
+-0.97522958
+0.28210735
+-0.07741201
+-0.78069313
+0.87424171
+0.16239715
+0.82449615
+0.76248360
+-0.57461303
+-0.20149130
+-0.24692601
+-0.13694727
+-0.13198298
+-0.51698864
+-0.53373000
+0.08690559
+0.75487459
+0.81072674
+0.68346122
+-0.22476290
+0.63381028
+-0.46742941
+0.21222086
+0.01242936
+0.21898268
+-0.83762259
+-0.31136890
+-0.88971241
+-0.37731312
+-0.23690493
+0.88539121
+-0.39662068
+0.26855544
+-0.39155066
+-0.78377933
+0.77265400
+0.96845361
+-0.83017401
+-0.80630290
+-0.22320516
+0.17330099
+-0.27761664
+0.44897075
+-0.04950595
+0.87619109
+-0.14745563
+-0.68459736
+-0.72050658
+-0.29317582
+-0.77551649
+-0.97862858
+0.00658117
+-0.08510493
+-0.33264929
+-0.26683466
+0.50060605
+-0.17522289
+0.61316633
+-0.82389132
+-0.66502696
+0.58478803
+-0.91218482
+0.15318562
+0.22511148
+0.85628911
+-0.68469712
+0.06318733
+-0.21346699
+-0.00490944
+0.45364001
+-0.48546123
+0.51229353
+-0.28652292
+0.16550660
+0.63753411
+0.09721866
+0.01735538
+0.50468464
+-0.94243290
+-0.74139865
+-0.85375560
+0.00229860
+-0.40961780
+-0.22795415
+-0.55323396
+0.50091381
+-0.70746316
+-0.19489395
+0.73155372
+-0.51983885
+0.71598621
+-0.42956804
+-0.10217781
+-0.27851933
+0.76744199
+0.99066103
+0.81689262
+0.31387651
+0.71443295
+-0.09960717
+-0.67854023
+0.57975590
+0.93485546
+0.09946167
+-0.72885594
+-0.77076463
+0.51794958
+-0.06800574
+-0.10184801
+-0.44811946
+-0.91343031
+-0.77941732
+-0.17744631
+0.01173782
+-0.96296719
+-0.51161176
+0.81860530
+0.32181871
+0.08649647
+-0.35252208
+0.25142491
+-0.20159948
+-0.33940053
+-0.08016497
+-0.43247336
+0.35010552
+-0.45604891
+-0.22607547
+0.97109556
+-0.27695012
+0.63245833
+0.60365820
+0.92362404
+0.84737551
+-0.62933245
+-0.86009607
+-0.67008242
+-0.05232930
+-0.06519794
+-0.91256475
+0.19411790
+0.59198666
+-0.06366253
+0.26130068
+-0.08028108
+0.05967178
+0.63805991
+0.82043365
+-0.27604997
+0.04114966
+0.29509291
+0.00708665
+-0.24787681
+0.49796692
+-0.12507952
+0.49414768
+-0.40700793
+0.74861005
+-0.87530108
+0.12755184
+-0.46559009
+0.23929336
+-0.95704890
+0.72763589
+0.30499941
+0.08261218
+-0.34682697
+-0.46662983
+-0.57824728
+-0.55195265
+0.53511008
+0.58500876
+0.65431054
+0.46661559
+0.32119370
+-0.63502812
+-0.10267544
+-0.18316901
+-0.82006641
+0.27643371
+-0.35903627
+0.74083507
+-0.69765463
+0.18996084
+-0.19778222
+0.51880002
+-0.93882430
+0.37662041
+-0.02802032
+0.38193154
+0.50620139
+0.65951049
+0.92801178
+0.22183442
+-0.48633021
+0.61441267
+-0.57734779
+-0.97390853
+-0.21535802
+-0.36163872
+0.06178236
+-0.91908082
+-0.92724405
+-0.54107866
+0.96525514
+0.79182482
+0.45508575
+-0.52506089
+0.78748477
+0.80763626
+0.13113320
+-0.88618312
+-0.91394264
+-0.96182970
+0.80681860
+-0.21224105
+-0.15835547
+-0.10681581
+0.90328622
+0.52177334
+-0.32576776
+-0.71292305
+0.84920442
+0.19736421
+0.49610746
+-0.94889933
+0.13055050
+0.57574320
+0.29778588
+-0.19603109
+-0.94596596
+-0.47591192
+0.71768844
+-0.58079013
+0.61791539
+0.76728153
+-0.18652004
+-0.62903255
+0.77573419
+-0.12959039
+0.61665893
+-0.25202507
+0.42513323
+0.38682294
+-0.76138909
+-0.13558269
+-0.51853338
+-0.31690305
+0.09263504
+-0.48979384
+-0.88484600
+0.99119055
+-0.06261957
+0.28983891
+-0.73598409
+-0.69002104
+0.62011397
+-0.58780557
+0.06070113
+-0.56718665
+0.73242438
+-0.07612669
+-0.73567331
+0.07309687
+-0.21825975
+-0.10141909
+-0.76776354
+-0.67094591
+0.00494289
+0.53399920
+0.22689617
+-0.01749855
+0.62292731
+-0.70718083
+-0.44207799
+0.57531202
+0.53763986
+-0.19523978
+-0.09401846
+-0.31002301
+0.81838977
+0.10666788
+0.62255919
+-0.02625096
+0.73040426
+-0.38750237
+-0.90060339
+-0.33109295
+-0.33180493
+-0.89595561
+0.63839364
+0.87874460
+0.14526439
+-0.52640224
+0.41424656
+0.26402545
+-0.39674890
+-0.29962045
+0.81272995
+-0.99196222
+0.65394080
+-0.84705685
+0.43330145
+-0.76422232
+-0.33663470
+0.93124700
+-0.62379801
+-0.24750274
+-0.61644870
+0.83198249
+0.18287158
+-0.73629963
+-0.29510957
+-0.76378202
+-0.10839313
+-0.44857007
+0.36484420
+0.03348124
+-0.56130406
+0.73123574
+0.70678103
+0.80344057
+-0.67747369
+0.10957289
+0.87634921
+0.38315785
+-0.29922754
+0.27566421
+-0.09161294
+-0.14125448
+-0.39608037
+0.34207261
+0.84713864
+-0.65494335
+-0.29114914
+0.29380786
+-0.46677321
+-0.77391818
+-0.01711923
+0.62689900
+0.76877141
+0.90999806
+0.94572484
+-0.86713320
+-0.66048145
+0.09680700
+-0.56946096
+-0.90401073
+0.06341588
+-0.52901465
+-0.16645187
+-0.00294256
+-0.98392583
+-0.39601266
+-0.16572428
+0.77919769
+-0.10897237
+0.07188037
+-0.88282888
+-0.23768929
+-0.11300858
+0.56684005
+0.97061104
+0.53858018
+0.00515864
+-0.52765457
+-0.07462371
+0.73754716
+0.38933257
+-0.45522340
+-0.40626238
+-0.93837760
+-0.19054338
+0.98008358
+-0.87092720
+0.94792571
+0.96695063
+0.87143845
+0.78624892
+-0.16812844
+0.43317129
+-0.44836539
+-0.69897808
+0.64492023
+-0.57261213
+-0.57278703
+-0.52572407
+0.59628446
+-0.65240822
+-0.87699749
+0.95832922
+0.57848002
+-0.98750813
+-0.98725334
+-0.34825604
+-0.34365694
+-0.05977961
+0.80110146
+-0.37304357
+-0.08159306
+0.63401565
+0.28642224
+0.13209677
+0.44847310
+-0.25899002
+-0.90776792
+0.00816269
+-0.95853229
+-0.42493250
+0.19262510
+0.06302281
+0.21300487
+0.84089657
+0.07539928
+-0.65774370
+0.40475792
+0.40084805
+0.11000236
+-0.17231157
+0.96474269
+0.97146725
+0.77581394
+-0.67280754
+-0.02072996
+0.61945999
+-0.33457536
+0.01239133
+0.69633579
+0.51680481
+-0.08842522
+-0.55491620
+0.19872642
+0.76278794
+0.57592726
+0.89642811
+0.42385137
+-0.04906911
+-0.95568533
+0.96980965
+0.11544836
+-0.92776824
+0.31337535
+-0.18103880
+-0.64061132
+-0.56336209
+0.17234361
+-0.61465469
+-0.44097108
+-0.15104902
+0.88892591
+0.59011173
+-0.11796874
+-0.50483146
+-0.56618997
+-0.38848501
+0.39051664
+-0.45878214
+-0.50046936
+0.28089595
+0.28790319
+0.20097709
+0.19456816
+-0.48400128
+-0.68541190
+-0.42444861
+0.30834603
+0.99889541
+-0.10946417
+-0.92861837
+-0.10754907
+-0.58127588
+-0.84785035
+-0.98411039
+-0.57178062
+0.59833193
+0.43090117
+-0.71155539
+0.83482921
+0.83382857
+0.64573610
+-0.71232000
+-0.81423855
+0.98497713
+-0.74340406
+-0.99790411
+-0.92176476
+-0.59880626
+-0.26188964
+-0.89274400
+0.14347291
+-0.97301839
+0.59292233
+0.36450207
+0.52386713
+0.86476004
+-0.33925730
+0.87302566
+0.90778315
+0.25272107
+-0.05776417
+-0.66196918
+0.82313299
+0.41588938
+0.57722354
+0.89868498
+-0.25878274
+0.03407872
+0.56098366
+0.19195592
+0.50667894
+-0.69779822
+-0.12158668
+0.14874971
+0.99453449
+0.05124664
+0.40984476
+0.02574146
+0.85777485
+-0.31106019
+-0.92287022
+0.18409312
+0.26260567
+0.68622172
+-0.87911622
+-0.11482322
+-0.02185649
+-0.88177642
+-0.89750709
+0.34010744
+-0.53693920
+0.29561436
+-0.26117909
+-0.69849685
+0.68681455
+0.38791561
+-0.50966734
+-0.28261340
+0.85784602
+0.89122462
+0.95158458
+-0.77443232
+0.03238642
+-0.70492837
+0.45361590
+0.60418987
+-0.50332239
+0.29044282
+-0.74633405
+0.81629562
+0.08817875
+-0.85852805
+-0.10242301
+0.86391687
+-0.21854562
+0.71790576
+0.08840537
+0.52214837
+-0.38533407
+-0.27598470
+0.21449888
+0.13712895
+0.65985775
+-0.67294833
+0.21817315
+0.72317231
+-0.48567301
+0.40462506
+0.62258029
+0.67879069
+-0.21258104
+-0.16086698
+0.15273237
+0.67360532
+0.96989763
+-0.90526487
+0.08403754
+0.57135773
+0.86799610
+0.85851312
+-0.79778637
+0.07727265
+0.01853085
+-0.76655385
+0.58940136
+-0.25147033
+0.34851038
+0.52352929
+0.31161058
+0.40020120
+-0.74942645
+0.17516589
+0.17625380
+-0.44453228
+0.50167346
+0.97250712
+0.42608380
+-0.36307847
+0.10912108
+0.27610767
+0.31237495
+-0.44929010
+0.51422679
+0.17644167
+-0.64884371
+0.70269030
+-0.55003945
+-0.58294395
+-0.42397502
+-0.40242666
+0.73233883
+-0.36796579
+-0.12137524
+0.38689346
+0.03944985
+-0.13719851
+-0.94234542
+-0.51299369
+0.44566194
+-0.67874798
+0.08144216
+-0.68077159
+-0.23792629
+0.42794068
+0.39363018
+0.95624011
+-0.37916420
+-0.82125325
+0.84645859
+0.22497397
+-0.35060968
+0.99442515
+0.23545410
+-0.98754121
+0.08612624
+-0.52077109
+0.81694078
+-0.59077850
+0.82982397
+0.97655845
+-0.47413373
+0.51610184
+-0.96291380
+-0.54054686
+0.46082640
+-0.42146802
+0.81036758
+0.42556894
+0.31146967
+0.64882088
+-0.17020053
+0.79690146
+-0.79737426
+0.99804962
+0.47159970
+-0.31683528
+-0.97705762
+-0.77300212
+0.15636933
+0.45429146
+0.09543383
+-0.64630684
+-0.07637787
+0.76350117
+-0.70109314
+0.24317723
+0.25463893
+0.53124458
+-0.21694985
+-0.95393414
+0.52716355
+0.03316387
+-0.66213454
+-0.25552677
+0.69089774
+-0.64267809
+0.40427866
+-0.83849411
+-0.12468114
+-0.09112656
+-0.81119599
+-0.73454905
+-0.30495701
+0.70533712
+-0.21190866
+-0.44764948
+0.49816513
+-0.16091692
+-0.62384725
+0.76256764
+-0.58891949
+-0.54339388
+-0.24552566
+0.74468935
+-0.50124162
+-0.59046930
+-0.42447300
+-0.29002725
+-0.26321062
+0.80670682
+0.25368457
+0.20175472
+-0.72112698
+0.19288188
+0.74940288
+0.56206615
+0.69722018
+-0.17359317
+0.01134532
+0.79173952
+-0.42713683
+0.28473355
+-0.60953634
+0.15275608
+0.83652318
+0.79782016
+0.64671454
+0.99177991
+0.70085948
+-0.51129147
+0.70956052
+-0.46658973
+0.22714115
+0.41478239
+-0.84056085
+-0.82046296
+-0.07821569
+0.97377418
+0.18889754
+0.49252290
+0.82720400
+-0.96898539
+0.53200603
+-0.46663632
+0.00584722
+0.32527227
+-0.22166076
+0.23257898
+-0.83667922
+-0.84683506
+-0.13034737
+-0.13133387
+0.71257747
+-0.45127143
+-0.70189553
+0.49249108
+0.31613383
+-0.27224768
+-0.63194884
+0.64631063
+-0.83627791
+0.87573292
+0.47749246
+-0.74303116
+-0.83904523
+-0.59298442
+0.44726229
+-0.48204948
+0.91359996
+0.06349534
+-0.55495468
+-0.90273681
+0.87558685
+0.26017900
+0.40499520
+0.22576463
+0.89961276
+0.34346712
+0.98977915
+-0.44061713
+-0.57065230
+-0.27193962
+0.63681070
+-0.10703963
+0.61601496
+-0.08695328
+-0.62594739
+-0.57006311
+0.02635241
+-0.98080350
+-0.42494118
+-0.39204699
+0.35437930
+0.64595401
+-0.56105849
+0.25628328
+0.67799699
+-0.66808519
+0.05643260
+0.23372889
+0.03654730
+-0.83573698
+-0.56915554
+-0.67362219
+0.45854592
+0.85554165
+0.33912718
+0.04252410
+0.53334570
+0.64800257
+0.61362435
+0.46887467
+-0.29691061
+-0.08828094
+-0.22574419
+-0.32057601
+0.59087186
+0.17144895
+-0.27059956
+0.64507569
+-0.70035943
+0.59356398
+-0.62546528
+0.78734549
+-0.87862441
+-0.76161387
+-0.42195635
+-0.80520670
+-0.12857946
+0.63341699
+0.80582507
+-0.81434583
+0.77512288
+0.90208145
+-0.90141068
+0.24327264
+0.55227520
+0.81852913
+-0.92280630
+0.76694462
+-0.03498690
+-0.05778458
+0.63380981
+-0.20883362
+-0.26429199
+-0.45518138
+-0.61357378
+-0.78658001
+0.51674745
+-0.73459839
+-0.60645731
+0.13644574
+0.59570801
+0.49103566
+-0.93931606
+-0.31112870
+0.46817650
+-0.30329835
+-0.85031765
+0.93730948
+-0.09928559
+0.91487263
+0.14206720
+-0.16399871
+-0.48112385
+-0.02889194
+0.55929412
+-0.08957481
+-0.71416374
+-0.86028708
+-0.97897015
+0.36550329
+-1.02400646
+0.72250910
+0.85391559
+-0.05091735
+-0.60303833
+-0.24544734
+-0.33489718
+0.89916978
+0.60490425
+-0.23031213
+0.82501209
+-0.43171368
+-0.35063432
+0.31693833
+0.70106917
+-0.83223474
+-0.42886765
+-0.04686928
+0.28901665
+-0.28654608
+-0.28363498
+0.84255262
+0.00500394
+0.24985421
+-0.84917466
+-0.27134901
+-0.84316450
+0.92278624
+0.78768921
+-0.61560825
+-0.31391776
+-0.13251829
+-0.86676583
+-0.53576121
+0.29716933
+0.60543501
+-0.46263558
+-0.78238997
+0.02446389
+-0.49618757
+-0.16489255
+0.29902780
+-0.61557353
+0.98103571
+-0.14827174
+-0.32335341
+-0.39487892
+-0.85191405
+-0.29638982
+-0.71604335
+-0.22295165
+0.93855023
+-0.48491538
+-0.64265716
+-0.44598377
+0.06382203
+0.16727006
+-0.69602606
+0.71520567
+-0.97499078
+-0.32693821
+0.83637500
+-0.28641188
+-0.98263175
+-0.41284007
+0.32858908
+-0.06328696
+-0.51467007
+-0.80304593
+-0.88317882
+0.38192797
+0.77543521
+-0.00142223
+-0.19745427
+0.61011779
+-0.14353436
+0.70458126
+-0.63007405
+-0.48512912
+-0.54539034
+0.04163837
+-0.01712602
+-0.38124943
+-0.52252078
+0.87143993
+0.76067150
+0.48674691
+0.45503640
+-0.02361590
+0.59525144
+-0.09246731
+-0.80341172
+0.94564652
+-0.03722996
+-0.96960655
+0.97437179
+-0.79175131
+-0.15761828
+-0.31071252
+0.84285390
+0.78413689
+0.88393414
+-0.45677418
+-0.15919966
+-0.91219265
+-0.64960164
+0.38990331
+0.01337063
+0.33685243
+0.71332812
+0.72054827
+-0.31408191
+0.83859110
+-0.48725665
+0.24086916
+-0.78551219
+0.02574039
+0.01497531
+0.37306833
+0.58039832
+-0.76631157
+0.57129049
+-0.76673304
+0.67422438
+0.03016901
+0.05300701
+-0.33975339
+-0.95787334
+0.82178223
+-0.80629361
+-0.46238440
+-0.26248461
+-0.77482605
+0.31816411
+0.04705083
+0.48835742
+-0.39409018
+-0.50578615
+-0.74529800
+-0.87180401
+0.61048853
+-0.51785168
+-0.43418640
+0.19948602
+-0.06805229
+-0.34820104
+-0.78987199
+-0.12131959
+-0.81510776
+-0.88764174
+0.17562127
+0.76432920
+0.24332154
+-0.40492463
+0.61274849
+-0.09977984
+0.29147409
+-0.02389159
+0.15630348
+0.59135329
+0.61430871
+0.62884159
+-0.35373658
+0.20682665
+0.74834653
+-0.78064718
+0.55493696
+-0.54921902
+-0.99739731
+0.46472625
+0.39293236
+-0.30315399
+-0.82523268
+-0.20316713
+-0.68819081
+0.06370174
+-0.38776488
+-0.24031138
+-0.59926381
+-0.37411301
+0.69840742
+-0.33782663
+-0.22690308
+0.64851100
+-0.22521946
+0.84181022
+0.38863878
+0.49600738
+-0.20567971
+-0.69451935
+-0.12688874
+0.05291126
+-0.15981865
+0.30027361
+0.86955914
+0.59167062
+-0.53536684
+-0.39122391
+0.86118508
+-0.57364504
+-0.30232530
+0.61629258
+-0.46594489
+-0.09836315
+-0.31662336
+-0.78429453
+-0.87381140
+0.18910068
+-0.55674299
+0.62303282
+0.37001754
+0.23150299
+0.89931154
+0.04910965
+-0.60256105
+-0.95313313
+0.56351392
+0.53967601
+0.06314648
+0.97876348
+0.07981754
+-0.74461089
+0.18284261
+-0.84514440
+0.19855389
+0.66073476
+0.98279267
+-0.82141466
+-0.44853126
+0.39994778
+0.84662450
+-0.63559579
+-0.18606961
+0.02894314
+0.25649286
+0.71049605
+0.45200169
+0.61351399
+-0.50760130
+-0.69306031
+0.85095637
+0.85269729
+-0.45471543
+-0.93107298
+0.46760542
+-0.05726115
+-0.30880931
+0.00783751
+0.61180999
+-0.28803689
+0.11548078
+-0.20760220
+-0.51279891
+0.93972754
+0.58085394
+-0.26100075
+0.10019362
+0.08346415
+0.15072775
+0.46263242
+0.14920437
+0.14230156
+0.59337139
+-0.11204964
+-0.07883662
+0.52522635
+0.38238168
+-0.61111465
+0.85977411
+0.15397036
+-0.88671093
+-0.91064490
+-0.81432405
+0.02144933
+-0.52708393
+-0.28106153
+-0.88774027
+0.63327730
+-0.97766241
+0.21690726
+0.29893303
+0.43332541
+0.95015848
+0.56839996
+-0.12249945
+-0.84563698
+-0.95658756
+-0.96962893
+0.51291911
+0.94809076
+-0.90633945
+0.94436891
+0.22727350
+-0.12352550
+0.87879481
+0.13337344
+0.48385945
+0.34769922
+-0.69959493
+-0.23466388
+0.10712923
+-0.53132739
+-0.14223131
+-0.77326000
+0.65751853
+-0.68565208
+0.51256291
+0.74187165
+-0.94643963
+-0.91143622
+-0.49316518
+-0.82349596
+-0.72322484
+0.81761026
+-0.90644102
+0.21501350
+0.36130428
+-0.68151620
+-0.18320090
+-0.08402741
+-0.89413679
+0.93972981
+-0.62370154
+-0.13466787
+-0.26110995
+-0.50172907
+0.61174643
+-0.62502095
+0.41549230
+-0.26636416
+0.68710756
+-0.20459020
+0.09167933
+-0.93786705
+0.46365416
+0.04331255
+0.31365108
+0.26707506
+0.20051217
+0.40473974
+-0.16517067
+-0.90348399
+-0.17515051
+-0.73388380
+0.84962142
+0.48562014
+-0.72391945
+-0.08217150
+0.98679566
+0.47725034
+0.31258845
+0.43520713
+-0.02229822
+0.92635942
+-0.30184984
+-0.30734921
+0.44983840
+-0.46413374
+0.68557227
+0.15767217
+-0.38700944
+0.70766103
+-0.04994214
+-0.96846518
+0.84435928
+-0.73633263
+0.67397809
+-0.97492567
+-0.20743972
+-0.25217682
+-0.00891507
+0.02082574
+-0.13585329
+-0.85340475
+0.99434853
+-0.77464221
+-0.39100158
+0.25125849
+-0.39960295
+0.91970944
+-0.79991476
+0.20618784
+-0.93503278
+-0.60887027
+-0.93401222
+-0.43576407
+-0.38757217
+-0.20776582
+-0.07883000
+0.44721782
+0.87567329
+-0.11541635
+0.54942071
+-0.08786827
+-0.82320510
+-0.56240135
+0.16454101
+0.84338868
+0.34849334
+-0.66455269
+0.50985062
+0.97468650
+-0.94343478
+0.15727198
+0.46350992
+-0.75697197
+0.56731510
+0.87012970
+0.45525396
+-0.09599751
+0.35112047
+0.93973196
+0.42644358
+-0.46787679
+0.81113625
+0.53299201
+-0.77502027
+0.59250009
+-0.78734228
+-0.19296914
+-0.12581301
+-0.51978499
+0.44710314
+0.24930418
+0.94467592
+0.48911488
+0.97559476
+-0.69147906
+-0.68446615
+0.57050645
+0.00542092
+-0.76683755
+-0.61420417
+-0.28610510
+0.28757787
+-0.56572562
+-0.25216472
+0.37022066
+0.53773618
+0.44795811
+-0.55445632
+-0.30997741
+0.04410589
+0.62243259
+-0.84803224
+0.24668860
+-0.84224238
+0.83385873
+0.66277575
+0.09940255
+0.53993118
+0.07838166
+0.65723336
+0.34460104
+0.81974053
+0.74077284
+-0.47726911
+-0.51856649
+0.62293708
+-0.48947632
+0.76875830
+-0.35467613
+0.11241126
+-0.42071950
+-0.91870384
+0.15778482
+0.56799841
+-0.63005739
+0.64663959
+-0.52768901
+0.86042404
+0.34145212
+-0.57885459
+-0.83320361
+0.69924259
+0.44064760
+0.08444834
+-0.95236534
+-0.60964966
+0.38520920
+0.69030535
+-0.45761991
+0.53492188
+-0.44504249
+-0.44701117
+0.30049646
+0.29139102
+-0.04454780
+0.66727698
+-0.58656096
+0.87688243
+0.92756283
+0.54006732
+0.67372799
+-0.04498458
+0.43866873
+0.05630648
+-0.25249654
+0.87134409
+0.90896356
+0.54857707
+0.11479175
+-0.01227576
+0.19629094
+-0.98677329
+-0.60736650
+0.06567026
+0.24647031
+-0.76565734
+0.29234307
+-0.35236131
+0.66044823
+-0.83211122
+0.52024824
+-0.89976921
+0.02635061
+0.85352736
+-0.57646614
+0.75794936
+-0.79465020
+0.04588462
+0.97048042
+-0.83967954
+0.45995052
+0.11267755
+-0.80523549
+-0.58427216
+-0.03320008
+-0.47623532
+-0.18036084
+-0.38968419
+-0.63097381
+0.56031418
+-0.63451036
+0.67901704
+0.04468166
+0.34721666
+-0.73598197
+-0.05830192
+-0.78469479
+0.04746080
+0.92182968
+-0.05713451
+0.61383171
+0.13629601
+-0.22924108
+-0.45553703
+-0.51555657
+-0.69915223
+-0.90246449
+0.20392335
+-0.62385326
+0.08993149
+-0.13301199
+0.33670041
+0.58692442
+0.69046526
+-0.39546108
+-0.45591050
+0.30984701
+0.38277698
+-0.09844704
+0.50714183
+-0.84918978
+-0.20101960
+-0.36240513
+-0.43467985
+0.95226074
+0.77934905
+0.99468430
+0.22824319
+0.25086437
+0.07344675
+0.45766043
+-0.79388991
+-0.38007090
+-0.30968248
+0.71959453
+-0.41769987
+0.32457984
+-0.83073491
+-0.58456304
+-0.97849145
+0.61014962
+0.61490321
+0.36022270
+-0.52997011
+-0.52521276
+0.67392933
+-0.53664231
+-0.03857446
+0.84174860
+0.30650854
+-0.11628568
+-0.84993096
+0.80724978
+0.50507355
+0.32520854
+0.46280038
+0.52604318
+0.04742622
+-0.97532971
+0.91570783
+0.77027631
+0.04587531
+-0.50859421
+-0.98161349
+-0.35760278
+0.73872697
+0.74554491
+-0.69719431
+0.78289163
+-0.72478810
+0.70154738
+0.37359691
+0.76822567
+0.07398343
+-0.77388582
+0.15842259
+0.18800986
+0.03098309
+-0.19928658
+0.19500041
+0.42767382
+-0.16911089
+0.88645446
+-0.83185153
+0.77482975
+-0.95253779
+-0.46547258
+0.92710459
+-0.71591172
+0.78375375
+0.80873108
+0.86359584
+0.97821891
+-0.54897508
+0.02033222
+0.79190910
+0.18474042
+0.44182110
+0.93084860
+-0.07168186
+0.49239457
+-0.39097410
+0.45195556
+0.42355597
+-0.55221748
+-0.44810879
+0.29991710
+0.28975546
+-0.28605622
+-0.08657503
+-0.61940345
+-0.40723097
+0.96596563
+-0.50400856
+-0.07009679
+-0.95516936
+0.49180186
+0.40808582
+-0.09839427
+0.00797832
+-0.90199171
+-0.83700943
+-0.58770615
+0.93829072
+-0.71390772
+0.43818033
+0.28623807
+-0.75557445
+-0.29984832
+0.34585059
+0.26910532
+0.07644188
+-0.13269639
+0.21641290
+-0.12277043
+0.44339585
+-0.34927958
+-0.91051239
+-0.88400327
+0.79011703
+0.95208228
+-0.29460675
+0.40053523
+-0.11391020
+-0.12114596
+-0.81861660
+-0.19523591
+0.98400187
+0.39242566
+-0.09021282
+0.32030582
+-0.50179923
+0.50760078
+-0.54615408
+0.98827875
+0.56470180
+0.67329741
+-0.51804280
+-0.92274445
+0.22905004
+0.60330534
+0.22365499
+-0.69893739
+0.86695850
+-0.43551028
+-0.58885166
+0.18710458
+-0.39848268
+-0.93165334
+0.19882309
+0.04728210
+-0.74489903
+0.54829276
+0.80111933
+-0.77708533
+-0.80301246
+0.51009786
+0.35625803
+-0.36782598
+-0.44535315
+-0.98932631
+-0.63149926
+-0.63998151
+-0.97271209
+-0.94314765
+-0.95750322
+-0.24107236
+0.51297665
+-0.79770178
+-0.57657853
+-0.87716044
+-0.91971384
+-0.01912767
+-0.36852944
+0.42299676
+-0.97350232
+-0.69241065
+-0.91695681
+0.82115936
+-0.62877184
+-0.32302237
+0.67257786
+-0.38487798
+0.90255916
+-0.64908245
+-0.49195725
+0.53463781
+0.97677553
+0.54611886
+-0.86765942
+-0.70178348
+-0.50401391
+0.49725062
+0.04969898
+0.02690929
+0.63327496
+-0.97416810
+-0.41945283
+0.92801471
+-0.81125776
+-0.75335588
+-0.87772235
+-0.75007164
+-0.06943586
+-0.44240338
+0.06112997
+0.82080742
+0.92892994
+0.63669271
+-0.72442749
+0.27524698
+-0.70254940
+-0.96701375
+0.56476915
+-0.98436149
+-0.44024545
+0.04362702
+0.32330596
+0.77634287
+-0.26904720
+0.62369585
+-0.05738562
+-0.34632760
+0.73625314
+0.14734375
+-0.65351847
+-0.16040987
+0.95982623
+-0.18486601
+-0.20929873
+0.72006404
+0.15902746
+-0.42728704
+-0.37410384
+-0.48442549
+0.32460880
+-0.46474171
+0.46882582
+-0.56508520
+-0.03807276
+0.08739614
+-0.71631747
+-0.35196131
+0.13965249
+-0.07234192
+0.63984728
+-0.63791335
+-0.59053168
+-0.88518858
+0.59304297
+0.84852546
+-0.23685519
+0.43483859
+-0.66452383
+0.71268445
+0.99550848
+-0.68786505
+-0.52406425
+0.58226247
+0.48072306
+0.45487940
+0.04012334
+-0.83854698
+-0.92707188
+0.59258389
+0.07499325
+0.74795914
+0.13705313
+-0.17478085
+0.58478630
+0.86207961
+0.09859819
+-0.74050735
+0.49471260
+0.65923092
+-0.50061237
+-0.52464029
+0.72274012
+0.89809928
+-0.29647785
+0.85281653
+0.76792273
+0.71530639
+-0.90031784
+-0.18347126
+-0.54098063
+0.80822517
+-0.81789108
+0.91675029
+0.40485168
+0.46855182
+-0.59761199
+-0.70959235
+0.46132951
+0.00730020
+0.90566803
+-0.52877502
+0.72411788
+-0.97323275
+-0.13997018
+0.98451371
+0.81999514
+-0.84358909
+0.05504005
+-0.11291438
+0.26568223
+-0.58184625
+0.84709264
+-0.13660713
+-0.08711261
+0.66827028
+-0.10107233
+0.95126592
+-0.40096313
+0.28188461
+0.89690588
+-0.05502121
+-0.56183666
+0.84337837
+0.27834611
+0.81971152
+-0.96077536
+-0.03349747
+0.55161506
+0.41829497
+0.96497284
+0.26668761
+0.02735453
+-0.30319944
+-0.95557089
+0.19553497
+-0.86605281
+-0.60765929
+-0.16503292
+0.36335844
+0.27693834
+-0.51710976
+-0.54379845
+-0.42286499
+0.79379538
+0.38036933
+-0.98695667
+0.29506443
+0.71846290
+0.44877657
+0.73344226
+0.84247051
+0.98493663
+-0.32123371
+-0.32807898
+0.26825547
+-0.75481039
+0.39069347
+0.63226804
+-0.48518705
+0.27073199
+0.02282196
+0.24213105
+-0.05267298
+0.99943431
+-0.81868124
+-0.19333270
+0.06580489
+-0.51681238
+0.33876837
+-0.68787352
+0.45581473
+0.94996602
+0.82089747
+-0.17750872
+-0.54298437
+0.13301446
+-0.83587689
+0.90445002
+0.09204030
+0.95151822
+-0.98961663
+-0.07346420
+-0.69002170
+-0.54709823
+-0.73523760
+0.78269443
+0.37732068
+-0.57344374
+-0.04542746
+-0.14188564
+0.18302527
+-0.06873007
+0.52198203
+0.20485634
+-0.74868896
+-0.00290949
+0.42217420
+0.77783855
+-0.31004694
+-0.63726839
+0.87539599
+0.87749799
+0.79646297
+0.74313999
+-0.81970132
+-0.02249371
+0.20982063
+0.08025930
+0.96330831
+0.34610291
+-0.50191244
+-0.16679126
+-0.44217984
+-0.72727226
+0.72641538
+-0.55412616
+0.61730444
+-0.15521022
+-0.83008210
+0.17277057
+-0.66503715
+0.40382314
+-0.38165889
+0.19267978
+-0.54829710
+-0.97596504
+-0.99457589
+-0.63325473
+-0.04001077
+-0.45081829
+-0.12144025
+0.84538627
+-0.60886691
+0.60673632
+-0.61263748
+0.60309483
+-0.62674153
+0.91401801
+-0.47549626
+-0.34037488
+0.64979563
+-0.20776993
+0.08833225
+-0.53387015
+-0.12275817
+-0.31210159
+0.42071521
+0.44765268
+-0.54046833
+-0.42972999
+0.24926100
+0.82128871
+-0.29472093
+0.82643296
+-0.05371136
+0.83342124
+0.68138406
+0.51414274
+-0.29709623
+0.76751239
+0.37347337
+-0.44524783
+-0.08860193
+0.62420441
+0.84045189
+0.65547790
+0.89496209
+-0.80204414
+0.89680415
+-0.12445496
+-0.75201762
+-0.90960549
+-0.47061990
+0.97745491
+-0.90344365
+0.41745027
+0.38613875
+-0.31052461
+-0.88177539
+-0.07651744
+-0.79537005
+0.27925762
+0.63149518
+-0.84578411
+-0.03215335
+-0.15535009
+0.70336659
+0.22003921
+-0.38662527
+0.55825556
+-0.58685910
+0.38798833
+-0.92670740
+0.20200825
+-0.74869507
+-0.09002763
+0.44782797
+-0.71333891
+0.47228380
+0.94107092
+-0.07289070
+0.58070409
+0.30477536
+-0.72577468
+0.54655846
+0.23903763
+0.06921672
+0.93016456
+0.51855292
+-0.42382478
+-0.59871090
+-0.51579368
+-0.31362855
+-0.53845680
+-0.28533022
+-0.38952559
+-0.21729701
+-0.80221541
+-0.29633144
+-0.90458420
+0.74638229
+-0.97314550
+-0.04561603
+0.53119826
+0.29515453
+0.43869019
+0.24071267
+0.47949695
+-0.02202252
+-0.90082452
+0.18641524
+0.49799919
+-0.45670265
+-0.51544806
+0.84211858
+0.87293196
+0.80403589
+-0.18428908
+-0.95886278
+-0.22341799
+0.20796900
+-0.19242030
+0.35782456
+0.21183252
+-0.36651423
+0.07086360
+-0.98030724
+-0.54205855
+0.37796006
+0.17393590
+0.29103284
+-0.90564185
+0.40790689
+0.96814466
+0.25992212
+0.57933211
+-0.76114284
+0.28722465
+-0.03954669
+0.61144007
+-0.66434378
+-0.86883663
+-0.77805328
+-0.99790494
+-0.52760343
+0.66159260
+0.86956702
+-0.23414774
+-0.79403971
+0.33442653
+-0.64347267
+-0.43091589
+-0.26949114
+0.67371786
+0.54984445
+-0.83850242
+0.91240213
+-0.63046790
+-0.05382304
+0.63900435
+0.14055557
+-0.67038101
+0.07420492
+-0.53745073
+-0.31478657
+-0.97784778
+0.62475142
+0.88091316
+-0.46402260
+-0.18588507
+-0.45008138
+0.43733239
+-0.32860684
+0.55918252
+0.48879783
+-0.42163402
+-0.57203103
+-0.56747808
+-0.91099756
+-0.98790766
+-0.49366053
+-0.46373183
+0.35137284
+-0.27910030
+-0.38516241
+0.76472433
+0.56608763
+-0.27212690
+-0.24645045
+-0.73824793
+-0.93256223
+0.56659676
+-0.35596030
+-0.67094135
+0.59074123
+-0.56700828
+-0.52798269
+-0.81776250
+0.46573967
+0.87396885
+0.31264974
+-0.57009333
+-0.27184989
+-0.27058256
+-0.52395694
+-0.31527576
+0.10305988
+0.83611100
+-0.36706161
+0.42027903
+0.15677215
+-0.05204468
+-0.39096977
+-0.11845356
+-0.95939871
+-0.57075688
+-0.06888826
+-0.59709252
+0.04138523
+-0.30305158
+-0.02186636
+-0.80386450
+-0.37620230
+0.77496517
+0.98454983
+-0.44756552
+-0.94592736
+-0.65376566
+0.63919455
+-0.41094577
+0.69468071
+-0.59618201
+0.93978153
+0.18024623
+-0.00937437
+-0.86721418
+-0.77751044
+-0.72225590
+0.90825790
+0.98428214
+-0.33125125
+0.31734241
+-0.05097540
+-0.70275712
+-0.58177530
+-0.36404070
+0.66540979
+0.56122296
+0.01395077
+-0.71666332
+-0.42254756
+-0.17118185
+-0.71046012
+0.30723083
+0.47182853
+-0.23648920
+0.18487917
+-0.04093058
+-0.98848167
+0.43838144
+0.34128989
+0.25661422
+-0.61344146
+0.87004733
+-0.97740115
+-0.25616815
+-0.10791279
+-0.95685309
+0.64778823
+0.34907532
+0.99573280
+0.60537184
+-0.28807648
+-0.05661708
+0.76106354
+0.72929224
+0.84847196
+0.09408656
+-0.72176042
+0.45486722
+0.18969411
+-0.63225936
+-0.05373141
+-0.39581692
+-0.67960191
+-0.19669765
+-0.15367365
+0.81798339
+0.22817791
+-0.86933362
+0.95447874
+0.93711638
+-0.51889315
+0.99719775
+-0.37912505
+0.01493025
+-0.30496949
+0.48830525
+0.16101360
+0.10588027
+-0.17397750
+-0.23454682
+-0.38862362
+0.24374608
+-0.47896350
+0.52572622
+-0.81322628
+0.64512415
+-0.03445500
+-0.53505848
+0.71524953
+0.30628940
+-0.14198075
+-0.57736766
+0.39109784
+-0.75430758
+0.09719739
+0.01156911
+-0.41623998
+-0.61824394
+-0.02541396
+0.89291953
+0.15348945
+-0.50133207
+0.45138841
+0.27633844
+0.98611813
+-0.50107893
+0.83137713
+-0.01814976
+0.67892144
+0.02413050
+-0.58594182
+-0.24372277
+-0.14010907
+-0.30853421
+0.18832312
+-0.36340377
+0.45912930
+0.91989665
+-0.93005440
+0.84297849
+0.53953382
+-0.47372964
+0.31994605
+-0.23179984
+-0.41510732
+-0.11871044
+0.76493108
+0.11340413
+0.86060402
+0.99831960
+-0.16750598
+0.56485188
+0.25233656
+0.41972053
+-0.48253687
+0.24426840
+-0.17667209
+-0.67289970
+0.18254913
+0.81689688
+-0.19502635
+-0.21567880
+0.71421040
+0.90997249
+-0.51325423
+-0.11680246
+0.71699851
+0.53697483
+-0.85517046
+-0.50375580
+0.51046319
+-0.59544052
+0.77741367
+-0.43520241
+-0.51303065
+-0.84538741
+0.02890040
+-0.31195808
+0.99115039
+-0.92319519
+0.43926512
+0.54910148
+0.82338619
+0.35247612
+-0.38062084
+0.26319861
+0.43711400
+-0.21500301
+-0.93775979
+0.17547429
+0.80419791
+-0.73752630
+0.64307988
+0.45978475
+0.85287762
+-0.37882245
+-0.50705394
+0.59083462
+0.53363585
+0.57920706
+0.75079501
+0.92421830
+-0.46943796
+-0.38399136
+-0.38480747
+0.92906523
+-0.11887014
+-0.76422819
+0.92869365
+-0.23858202
+0.60858142
+0.43253922
+-0.72436705
+-0.28067207
+-0.36703402
+-0.25040311
+-0.76102322
+-0.70584697
+0.58114290
+0.94383430
+-0.03580868
+-0.81354640
+-0.83520441
+-0.21991932
+-0.12462598
+-0.36237830
+0.45102370
+0.55327845
+-0.90005264
+0.93951714
+0.66935503
+0.09553182
+0.87592685
+-0.86611854
+0.30304873
+0.34898663
+-0.74342659
+0.69011831
+-0.08912754
+0.09174109
+-0.91460050
+0.70564735
+-0.82044071
+-0.57187465
+-0.16370773
+-0.35809302
+0.23969948
+-0.69870830
+0.64785087
+0.19467688
+0.58083439
+-0.79542926
+-0.74481940
+-0.35424602
+-0.52898103
+0.42061067
+0.77059865
+-0.37136781
+-0.32779402
+-0.41485465
+0.66104388
+0.08087230
+0.91598451
+-0.92172303
+0.54771960
+-0.40095067
+0.94785273
+-0.72686088
+-0.10449320
+0.72513008
+0.76663315
+-0.29333943
+-0.80842753
+-0.15272582
+-0.61065164
+0.33496594
+-0.77144708
+0.33375251
+-0.38385427
+-0.14010042
+0.46226799
+-0.51707399
+0.07439470
+-0.78298350
+0.90978742
+0.69065392
+0.06812823
+0.95031238
+-0.85468929
+0.70309985
+0.64441597
+0.99381971
+-0.67986816
+-0.30250931
+-0.10158741
+-0.31242770
+-0.70128947
+0.20932865
+0.38501835
+-0.03626162
+-0.58474100
+-0.88923720
+0.32429874
+0.74916780
+0.82969856
+0.73213303
+0.98368990
+-0.56399831
+0.69836473
+-0.27057743
+-0.00189990
+0.73342824
+0.34319592
+-0.38808662
+-0.84646578
+0.03030550
+-0.93796445
+-0.26161295
+0.07887447
+-0.85185051
+0.84386790
+-0.74286771
+-0.19760490
+-0.66024174
+0.02663363
+-0.65038036
+0.98875256
+-0.00723215
+0.01021994
+-0.78321455
+0.00639201
+-0.86879495
+0.79588826
+-0.60944999
+-0.53942950
+-0.48670757
+-0.59454503
+-0.83745226
+-0.99355387
+0.10410454
+-0.65533482
+-0.41759312
+0.48525054
+-0.47432825
+0.39462971
+-0.50218208
+0.05231291
+-0.33268725
+0.70481016
+-0.98687292
+0.65203212
+-0.01073545
+0.86205692
+-0.88237438
+0.29282640
+0.12930684
+0.52837378
+0.17257441
+0.83246710
+-0.86687877
+0.01903699
+0.96488297
+-0.32701509
+0.48135481
+0.59416269
+-0.82891275
+-0.55172208
+0.54085851
+0.83700682
+-0.72352683
+0.94437204
+-0.14823937
+-0.15036767
+-0.59137466
+-0.03704370
+-0.15972627
+0.51994532
+0.93009842
+0.96123041
+0.68325771
+0.66920064
+0.12351668
+0.92484231
+0.89242205
+-0.18185479
+-0.65141521
+-0.56842264
+0.79738475
+-0.67885507
+-0.57633831
+-0.72678166
+0.35943592
+0.17240519
+0.79559550
+-0.18506719
+-0.59952570
+-0.31569433
+-0.28408920
+-0.84018130
+0.38871599
+-0.27727350
+0.67526436
+0.26316270
+-0.71155879
+-0.62896650
+0.62141404
+0.85585188
+-0.76290524
+-0.00270448
+0.98079369
+0.79995824
+0.90967751
+0.95925272
+0.56929648
+-0.40685469
+0.15957010
+0.18201435
+0.86257946
+0.24557984
+0.29675972
+0.70593488
+-0.12078071
+-0.19659519
+0.98653805
+0.08682024
+0.22473967
+-0.56964496
+-0.15751886
+-0.48971313
+0.36376011
+0.26617742
+-0.28502285
+0.16121352
+-0.48057258
+-0.34958833
+0.17086959
+-0.18194926
+-0.98877511
+0.58981931
+-0.03203624
+0.85031366
+-0.23773837
+-0.55095407
+-0.86515552
+0.44154465
+-0.92671093
+-0.07682848
+-0.13546860
+-0.45806825
+-0.31291705
+0.91502929
+0.67958844
+0.44653630
+-0.55888626
+0.69749236
+0.79883265
+-0.51212960
+0.92236423
+0.12115300
+0.17554724
+0.71971214
+0.42138779
+0.25550056
+-0.18270069
+0.32334936
+-0.86700276
+-0.85020755
+-0.37762994
+0.59559608
+-0.93160509
+0.16482913
+0.53790247
+-0.92110600
+0.98582745
+-0.44093388
+0.41928124
+0.43223715
+0.62108803
+-0.01186305
+-0.11144418
+0.68371570
+-0.68608111
+0.24453986
+-0.85470897
+-0.74448797
+0.00803220
+-0.25455415
+-0.11518574
+0.86206496
+-0.86599505
+0.52274060
+-0.10678256
+0.48732233
+-0.15040773
+0.62276828
+-0.88117503
+-0.39351159
+-0.31322163
+0.75646877
+0.76743197
+0.13728917
+-0.11620986
+-0.65331042
+0.21531904
+-0.60913843
+0.94251585
+-0.63809356
+-0.77509777
+0.28477907
+0.12980986
+-0.93379971
+0.13471389
+0.49999702
+-0.56744909
+-0.22780681
+-0.49508369
+0.93639028
+0.76358461
+0.31887031
+0.56124330
+0.03073466
+-0.43202466
+0.10162926
+-0.20425653
+0.55528212
+-0.12240976
+0.17681587
+0.27909148
+-0.44705588
+-0.91696045
+-0.07175928
+0.56006098
+-0.76146425
+-0.77650793
+-0.56702271
+-0.15844369
+-0.73945016
+0.24445283
+-0.09022915
+-0.33743018
+0.72816503
+-0.53974485
+0.46055937
+-0.29263270
+0.74967623
+0.65216613
+0.68475771
+-0.61962318
+0.74788487
+-0.54442543
+-0.95149325
+0.33840168
+0.54634893
+0.43620884
+0.63493752
+0.88888645
+-0.79575826
+0.00456405
+-0.26469600
+-0.58021748
+0.04783988
+0.63733947
+0.51480317
+-0.04025489
+0.76076901
+0.14358914
+0.98543394
+0.96336830
+-0.65707627
+-0.56197309
+-0.97460889
+0.22132063
+0.09588325
+0.95544839
+-0.05716133
+0.88244677
+0.31044161
+-0.49229461
+-0.64255339
+-0.54870290
+-0.50793403
+-0.15202808
+0.69258624
+0.93207361
+-0.53777629
+0.66513995
+0.74929899
+-0.32305868
+-0.91028337
+0.49677350
+-0.35750716
+-0.30335745
+-0.60876352
+-0.88940489
+0.35041475
+-0.21654183
+0.61592615
+-0.50635830
+-0.89876901
+-0.36064601
+0.93640363
+-0.81239013
+-0.54755038
+0.52714157
+0.01648247
+-0.72635496
+-0.78988761
+0.77483582
+0.08721685
+0.40485978
+-0.23825389
+0.10910559
+0.26527154
+-0.20502210
+-0.24730903
+-0.58850485
+0.52798688
+-0.02688009
+-0.81371588
+0.72673202
+0.10013533
+0.32315731
+0.95727789
+-0.77296580
+-0.29551071
+0.83436716
+0.66867280
+0.37453258
+0.95494497
+-0.50863454
+0.39317501
+-0.70804226
+0.06787193
+0.97806799
+0.17410326
+0.96654856
+-0.39022821
+0.78626060
+0.15529537
+-0.36467850
+-0.11042976
+0.13267422
+0.88380349
+0.64074159
+-0.33086854
+-0.28358012
+-0.07329601
+-0.28621864
+-0.64380920
+-0.16572016
+-0.42643857
+-0.62747112
+-0.14645177
+0.34159386
+-0.75703476
+-0.09303153
+-0.85477579
+0.71707487
+-0.51009795
+0.73418415
+-0.77452281
+0.79658461
+-0.57002692
+-0.95097776
+0.13384154
+0.03101208
+-0.72914933
+-0.32994785
+-0.23345401
+0.49416151
+-0.50968075
+-0.96254859
+-0.47547023
+0.33129296
+0.68006157
+-0.44611676
+-0.55659869
+-0.50797870
+0.20504512
+-0.04205470
+-0.79124564
+-0.51135775
+-0.64470977
+0.38161442
+0.50114142
+0.18969445
+0.85708553
+-0.38580196
+0.22689926
+0.93235708
+0.12426850
+0.93097112
+0.92924037
+0.45485698
+-0.79843167
+-0.15690075
+0.50509507
+-0.99180601
+0.25356231
+-0.51853671
+0.39174278
+0.81020210
+-0.59700838
+-0.91381186
+0.10666477
+-0.73922340
+0.18235095
+0.06104640
+-0.16330477
+-0.93692821
+0.54399001
+0.31046551
+0.81168700
+0.75958399
+-0.13154505
+-0.47759709
+-0.11410044
+-0.80818097
+0.34285860
+-0.39799674
+-0.95375026
+-0.62771696
+-0.70241878
+0.02999124
+-0.50039518
+0.26999027
+-0.78999005
+-0.44166840
+-0.99801423
+-0.29249833
+0.92061428
+0.35345157
+-0.24664801
+-0.19469717
+-0.93469973
+-0.08131480
+0.66914540
+-0.14707543
+0.61449575
+0.70097684
+0.84657333
+-0.13122046
+0.67580554
+0.28067980
+0.62237565
+0.56864115
+0.93175603
+-0.49630853
+0.30472791
+0.85115553
+-0.05976498
+0.45472760
+0.06731192
+0.13185170
+0.88746894
+-0.31931849
+0.57316762
+-0.10584395
+0.85257981
+0.51345735
+-0.71560130
+0.13023107
+0.14906317
+0.43534663
+0.00716036
+-0.60790270
+0.45696122
+0.84636312
+0.00866354
+0.63245878
+-0.29209725
+-0.60069001
+0.54733445
+-0.30175321
+0.51778924
+-0.55937814
+0.14155471
+0.17662868
+0.43684101
+0.82996743
+-0.75961761
+-0.77577556
+-0.89454234
+0.87464518
+-0.03327739
+0.15346190
+0.10116997
+-0.59646550
+0.98799385
+0.34031127
+-0.60776811
+-0.16755617
+0.52106045
+-0.79841180
+-0.17509586
+-0.41400516
+0.61495008
+-0.51213733
+0.76096536
+0.31271129
+-0.14580859
+-0.70482021
+0.23333917
+-0.85558079
+0.62561327
+-0.18435118
+-0.05357825
+-0.94961311
+-0.58434151
+0.73217169
+-0.29148529
+0.53306666
+-0.09657112
+-0.78348366
+-0.95510846
+-0.62678393
+-0.40399956
+0.64700485
+0.67562782
+-0.02517422
+1.04215903
+0.83602896
+-0.97278437
+-0.60418529
+-0.05843391
+0.16062121
+0.02554829
+0.14976240
+0.05811557
+0.79053442
+0.08260317
+-0.77054802
+-0.24822580
+-0.87319914
+-0.90563526
+0.24235903
+-0.21335296
+0.42626084
+-0.94615321
+-0.50093873
+0.19874413
+0.78342989
+-0.63340624
+-0.09147898
+-0.21712806
+-0.35434897
+0.17402580
+-0.30055307
+0.45759875
+0.24921338
+-0.24504208
+-0.95696638
+0.75255684
+-0.06642542
+0.21971772
+0.02865033
+-0.04433778
+-0.72991644
+0.05806154
+-0.50949552
+-0.87760793
+1.00603476
+-0.08328812
+0.66235784
+-0.39900532
+0.21218972
+0.38145838
+-0.20516633
+-0.32449778
+-0.29472058
+-0.87274745
+-0.82114694
+-0.80045275
+0.68986464
+-0.43284001
+-0.34984594
+-0.68628765
+0.81065709
+0.50681444
+-0.75441470
+0.60140692
+0.12696744
+-0.56952557
+-0.27901500
+0.76583932
+-0.19570785
+-0.78196187
+-0.20121002
+0.23947783
+0.48434750
+0.63584470
+0.16358293
+0.53565413
+-0.57030531
+0.57170842
+0.88868684
+0.18946688
+-0.20985359
+0.31413730
+-0.41080823
+-0.67532665
+-0.09239934
+0.61363512
+-0.16926115
+-0.57773461
+-0.13017916
+0.36615531
+-0.54204699
+-0.13785152
+-0.87101839
+-0.65160636
+0.18814613
+-0.19485217
+-0.42445808
+0.11946235
+0.70032782
+-0.56796382
+-0.74643336
+0.42290254
+0.71575228
+-0.97702074
+0.61036123
+-0.56120956
+0.96675087
+-0.48509099
+0.76572556
+-0.49929131
+0.69766444
+-0.64143447
+0.25349680
+0.84247850
+0.38627554
+-0.50521207
+-0.11482542
+0.00180761
+-0.62018546
+0.74132721
+-0.64001697
+-0.14135496
+0.43968002
+0.61590325
+-0.02630971
+0.76398486
+-0.63589852
+0.07114515
+0.78046996
+-0.83181391
+-0.38223076
+0.32620796
+-0.05287465
+0.35693549
+-0.77175771
+0.12267333
+-0.79422677
+0.28052673
+-0.43177473
+0.34978502
+0.85736484
+-0.42329685
+-0.41790482
+-0.82421377
+0.75301982
+-0.25355357
+-0.42802905
+-0.73846724
+0.75184781
+-0.92645679
+-0.47522974
+-0.49755714
+-0.61801865
+-0.88722728
+-0.78856558
+0.44018132
+-0.22183692
+-0.45312151
+-0.38051193
+-0.91887098
+0.85797733
+0.46014353
+0.73868600
+0.50668799
+-0.93683725
+-0.33098262
+0.74549318
+0.74700103
+-0.17721533
+-0.06248469
+-0.58929133
+0.14910563
+-0.52260285
+-0.66674218
+-0.58807258
+-0.17121898
+-0.77235006
+-0.09351490
+0.14451846
+-0.38438023
+-0.44118211
+0.40632255
+-0.28969747
+0.57735330
+-0.17447711
+-0.76971013
+0.51682692
+0.18767714
+-0.18566505
+-0.16626932
+-0.74225833
+-0.88961334
+0.05821149
+0.20270715
+-0.62208242
+0.29700049
+-0.92408594
+0.56801509
+-0.88597018
+0.41943298
+0.21051495
+0.83012202
+0.31873934
+-0.78342105
+0.80431025
+-0.58353932
+-0.04849516
+0.43317506
+-0.41607213
+0.26476728
+0.59203106
+0.61276369
+0.04450945
+0.17741668
+-0.67841034
+-0.12762161
+0.03631686
+0.94050764
+-0.54137312
+-0.62473736
+0.03093422
+0.74061280
+0.50217132
+0.88244036
+-0.15647260
+-0.58598768
+0.07277525
+-0.81997565
+0.67850750
+-0.37204815
+-0.98751256
+-0.98736007
+-0.52224945
+-0.77080667
+0.43789184
+-0.99098155
+-0.12693105
+0.63948478
+-0.82547244
+0.83478056
+0.86865988
+0.50966399
+-0.00962807
+0.47961809
+0.79715590
+-0.20842319
+0.68495271
+-0.00428197
+-0.55531921
+0.68938465
+-0.78451918
+-0.70994005
+-0.59897678
+0.27834835
+-0.91806872
+-0.37779759
+0.34697292
+0.17538711
+-0.24471693
+0.90089555
+0.81984139
+-0.21038676
+-0.31549569
+-0.43787388
+0.39119642
+0.26056154
+-0.54609930
+-0.57173601
+-0.50382011
+-0.08891718
+0.20546389
+0.66425913
+-0.35000171
+0.36704864
+-0.44547338
+-0.69244321
+0.72498138
+-0.21240524
+-0.49557281
+0.98795089
+0.79685974
+-0.74966753
+0.38504702
+-0.01478706
+0.39656526
+0.90121743
+-0.26002918
+-0.30730136
+-0.00941194
+-0.18889355
+-0.65902628
+-0.61716209
+0.34541275
+-0.15710629
+0.62281160
+-0.22654545
+0.55817886
+0.47114810
+-0.94933316
+-0.46190559
+0.88250275
+-0.70379767
+-0.06965133
+0.73563324
+-0.64440368
+-1.00749194
+-0.00957670
+0.86863822
+-0.36763737
+0.56459321
+-0.76743474
+0.43259269
+0.64355844
+-0.98311699
+-0.17493142
+0.62582971
+-0.52628776
+1.00804349
+-0.74882722
+0.25068259
+0.52546022
+0.47009536
+-0.59797030
+0.06409408
+-0.55391303
+-0.93462315
+0.74698139
+-0.68108019
+0.54832189
+-0.59964940
+0.27296604
+0.12122085
+-0.32535443
+-0.13254895
+0.92258558
+0.87624075
+0.48233247
+-0.53683975
+-0.20255410
+-0.89695367
+0.38188616
+-0.38136836
+-0.16423381
+0.49054786
+-0.48513307
+-0.96728861
+-0.82363763
+-0.85991405
+0.93205249
+0.41040711
+0.81776041
+-0.61143342
+-0.25242747
+-0.22207751
+-0.31986301
+-0.51608223
+-0.71794389
+-0.07364351
+-0.42531421
+0.95301501
+-0.95346327
+-0.42654158
+0.47070861
+-0.09223735
+0.42754135
+-0.44081053
+0.79048885
+0.04554868
+0.19969153
+0.74259727
+-0.88753263
+-0.59922535
+-0.40829185
+0.03025336
+-0.94497273
+-0.49148106
+0.99923575
+-0.05784584
+-0.46551536
+-0.85313865
+-0.49986734
+-0.08138920
+0.77383965
+-0.86734338
+-0.05006926
+0.82361352
+-0.18139261
+-0.83910435
+-0.76359199
+0.46596682
+0.42991745
+-0.25154489
+0.08888340
+-0.37576467
+-0.76645571
+-0.46697336
+-0.83695222
+-0.16173136
+0.61972249
+-0.74058950
+0.15365291
+-0.33344221
+-0.39216954
+0.45074522
+0.27766526
+0.12346566
+0.64600253
+-0.77681306
+-0.86161168
+0.51693141
+0.53179836
+0.67231572
+-0.64522353
+0.71600962
+0.82501125
+0.91105628
+-0.17964655
+0.65163791
+0.87294996
+-0.25700331
+0.59684765
+0.84653974
+0.17239189
+-0.07540822
+-0.41081935
+0.83106375
+0.08724928
+0.74222028
+-0.18869019
+0.69660556
+0.23746204
+-0.96432994
+0.84000409
+0.86224174
+0.50275362
+-0.58461243
+0.15858340
+0.72434139
+0.24430990
+-0.37021422
+0.32486200
+-0.37294728
+0.54610682
+0.24864566
+0.61062276
+0.40908146
+0.46398234
+0.71581566
+-0.44100499
+-0.36629456
+0.72135043
+0.65805209
+0.28601575
+-0.46531683
+-0.84323198
+0.69226468
+0.02712452
+-0.70549300
+0.71077526
+-0.54723996
+-0.49875081
+-0.37753975
+-0.76851085
+0.07400393
+0.90398192
+-0.83138025
+0.45482099
+-0.61694586
+-0.51092744
+-0.52080444
+0.34090233
+-0.87052886
+0.04741096
+-0.44442075
+0.82636440
+-0.22265226
+-0.51734731
+-0.40691900
+-0.65835086
+0.76449955
+0.49152720
+-0.02343857
+-0.97344792
+0.29720140
+-0.48255122
+-0.35223329
+0.78163981
+-0.51294532
+-0.22212708
+0.93676662
+0.89285469
+0.64112437
+-0.16042888
+0.02581775
+0.38577402
+0.02089524
+-0.69498286
+0.75959539
+0.14621317
+0.24116516
+0.70685816
+0.91903758
+-0.63708213
+-0.71573144
+0.15349782
+-0.73305783
+0.39448440
+-0.44595194
+-0.93452863
+-0.89878280
+0.72558939
+-0.58302727
+-0.26900887
+0.26778066
+0.97394931
+0.38468717
+0.91308093
+-0.57480350
+-0.49832750
+0.35011826
+0.98104046
+0.32092805
+-0.81251200
+-0.89974205
+0.55442321
+0.28092773
+0.04989180
+-0.81895107
+-0.67133416
+-0.29287594
+-0.49880283
+0.57242014
+-0.00027823
+-0.14249118
+0.17004931
+0.34140916
+-0.63789904
+-0.43962897
+0.73227136
+-0.11866808
+0.97034133
+0.86690153
+-0.56332760
+-0.72824370
+0.82420373
+0.75318487
+-0.13527146
+-0.32411833
+-0.88454937
+0.61508197
+0.96721757
+-0.42606424
+-0.32331651
+-0.46133782
+0.78607011
+0.04590995
+-0.60748222
+0.93326472
+0.29472904
+0.67331451
+-0.21867114
+-0.49186872
+-0.71921756
+-0.37861444
+0.26448810
+-0.88537932
+-0.29513344
+0.57340943
+0.02798348
+-0.39283556
+0.19964755
+-0.62664701
+0.83215524
+-0.79141353
+0.22797489
+-0.73868250
+-0.57557875
+-0.20116974
+-0.52188180
+-0.31757200
+0.42433084
+0.32275988
+-0.91573546
+-0.18077811
+-0.65831134
+0.88020058
+0.91257248
+-0.93811433
+-0.31671132
+0.69262225
+-0.61732673
+-0.24503837
+-0.29669081
+0.76530884
+-0.93606860
+0.13122245
+0.00124583
+-0.97183789
+-0.05685725
+-0.24096130
+0.01062615
+-0.05551357
+-0.64723249
+-0.35093738
+0.80849123
+0.00324953
+0.88072836
+-0.30346924
+0.98682511
+0.24531353
+0.23792338
+0.38344514
+0.64706552
+0.98118317
+-0.11210251
+0.57748830
+0.56750202
+0.71651077
+-0.09886158
+-0.13753718
+-0.06765580
+0.71843398
+0.08777320
+-0.65564451
+0.15118313
+-0.00750726
+0.57138109
+0.34096587
+0.53973305
+-0.15594769
+0.95698214
+-0.06203198
+0.80110538
+-0.61151975
+-0.23511702
+0.54988325
+-0.44998175
+-0.45543844
+0.11952531
+-0.43849772
+-0.45297676
+-0.97023213
+-0.36550421
+-0.77817377
+0.45431399
+0.54843271
+0.57554913
+0.64614904
+-0.35720551
+-0.46774644
+-0.98342659
+0.41749585
+-0.83429274
+0.90663922
+-0.32487851
+-0.40248877
+-0.52912405
+-0.61938721
+-0.10591280
+0.01255155
+0.53864312
+-0.22051597
+0.39757240
+-0.87463412
+-0.33689517
+0.54313540
+-0.85275334
+-0.31089699
+0.61451948
+-0.21160716
+-0.51476204
+0.22451115
+-0.06771034
+0.09479582
+0.94713008
+0.31854713
+-0.87430590
+0.67860687
+-0.98666116
+-0.13854724
+-0.19229114
+0.30017173
+0.79859960
+0.45955920
+0.82189274
+0.77848721
+0.01301742
+0.20452738
+-0.29469091
+0.88174140
+-0.84149730
+-0.04546207
+-0.48737055
+-0.37188041
+0.42097139
+-0.56299016
+0.70840979
+0.67736375
+-0.52616006
+-0.47243553
+0.99684036
+-0.38546425
+-0.26274431
+0.92489815
+0.06256568
+0.69395041
+0.39536023
+-0.32266921
+0.85202932
+-0.86121276
+0.92051566
+-0.95677210
+0.11254573
+-0.05614156
+-0.06153703
+0.39912760
+-0.10130614
+0.55248785
+-0.73094121
+-0.16301256
+-0.62222755
+0.87116313
+-0.96044562
+0.65814614
+0.28384459
+-0.75528234
+-0.78913133
+-0.20427650
+0.43039930
+-0.51244724
+0.87761843
+-0.48842341
+-0.15027839
+-0.94089454
+-0.00892228
+0.20687377
+-0.70985737
+0.58428824
+0.15951896
+0.15657735
+-0.39530438
+-0.80436826
+-0.66156811
+-0.94070340
+0.79156029
+-0.21901309
+-0.35709560
+-0.11591363
+-0.41473323
+-0.43451536
+0.78297818
+0.84824276
+0.20127630
+-0.60490283
+-0.18249249
+-0.06187153
+-0.47980750
+0.01576328
+-0.42054939
+0.69533241
+0.57493305
+-0.57424116
+-0.06684333
+0.12871885
+-0.67289427
+0.48242283
+0.72135139
+0.22285259
+0.47808242
+0.63629341
+-0.43817896
+0.35902989
+-0.26971805
+0.78723490
+0.23680675
+-0.88244461
+-0.96825004
+-0.64713562
+-0.66007155
+-0.69491860
+-0.23496115
+0.11007273
+0.61526811
+0.11427128
+0.65504038
+-0.50591141
+0.67594671
+-0.95115121
+-0.99528914
+-0.45358372
+-0.82484257
+-0.29859459
+0.97699809
+-0.03385288
+-0.14171445
+0.30824125
+0.18946028
+-0.63315493
+-0.01524675
+-0.20897603
+0.41014993
+-0.76761962
+0.25877976
+-0.81665634
+-0.25921571
+-0.86174510
+-0.01936638
+-0.37306464
+-0.89514173
+-0.00318205
+-0.77357610
+0.80024493
+0.65196669
+0.97442019
+-0.85256362
+-0.41465676
+-0.24673522
+-0.95633993
+-0.79545668
+0.29622817
+-0.99348437
+-0.82250659
+0.54642379
+-0.41356671
+0.41939020
+-0.64292708
+-0.41102487
+-0.84176955
+-0.49585962
+0.14890671
+-0.94634330
+0.84681261
+0.28984535
+0.86404657
+0.84059346
+0.06055605
+-0.69936284
+-0.71153444
+0.30408931
+0.12121367
+-0.36449933
+-0.06626433
+-0.21497107
+0.99829876
+0.80906737
+0.84770441
+0.36874855
+0.13028812
+0.21005225
+-0.59571850
+-0.36740685
+0.00564051
+-0.47266054
+-0.04534864
+0.75829077
+0.74537468
+-0.97044292
+-0.36716955
+0.96806820
+0.54882297
+-0.38580292
+-0.89568139
+0.06407789
+-0.42088055
+-0.90189883
+0.57600934
+-0.68110441
+-0.16820539
+0.94583613
+0.02016882
+0.60850897
+0.68386217
+0.36293824
+0.21901053
+-0.72186592
+0.65425016
+0.44182704
+-0.47486208
+0.67206380
+-0.65651181
+-0.83398703
+-0.92457231
+0.57120533
+-0.58963127
+0.60856915
+-1.00268190
+0.49101262
+0.26146083
+0.09057077
+-0.70054837
+-0.54949024
+-0.80611351
+0.14713203
+0.33333399
+-0.78152163
+-0.71217259
+0.38692883
+-0.48917814
+0.83205948
+-0.63579650
+-0.07920251
+-0.72349344
+-0.55226088
+-0.55768465
+-0.66970123
+-0.57767543
+-0.70579215
+-0.54319520
+-0.43072518
+-0.43461864
+-0.93436206
+-0.48813034
+-0.16135278
+0.66763135
+-0.58872412
+-0.01272941
+0.13879969
+-0.31068015
+0.84495256
+0.36021235
+0.83420198
+0.72646332
+-0.51098925
+-0.74586411
+-0.27130896
+0.83133121
+-0.45477291
+-0.14494450
+-0.37158197
+-0.95926683
+0.07380927
+-0.54575202
+-0.67785535
+0.47389536
+0.16705175
+0.33944752
+0.82477684
+0.32451400
+-0.68321820
+0.72388857
+0.61842973
+0.20819366
+-0.17753784
+-0.02926159
+0.00593095
+0.95641500
+-0.29619224
+-0.65821329
+0.05844694
+-0.30729934
+0.94749235
+-0.95330759
+0.92129628
+-0.72030222
+-0.48648391
+-0.88167876
+-0.98702739
+0.77716308
+-0.34623445
+0.06153533
+-0.95230009
+0.84957197
+-0.87740779
+-0.47669187
+-0.91065101
+-0.56219576
+-0.92831362
+-0.83193170
+0.47683555
+-0.68128859
+0.36061788
+0.84664065
+-0.88691922
+-0.86324307
+-0.94521381
+-0.96858692
+-0.40523581
+-0.81167023
+-0.41364400
+0.94795448
+0.70217255
+0.37247307
+0.26651980
+-0.93082636
+-0.98722638
+0.59365973
+-0.67974513
+-0.59370495
+0.60363800
+0.29214898
+-0.90823118
+0.89901362
+-0.65418199
+0.33084542
+0.01637485
+-0.75975510
+-0.15171335
+0.12099743
+-0.09585204
+0.07537566
+0.24499489
+0.83978183
+-1.03841400
+-0.41231512
+0.92091408
+0.87407820
+-0.46040884
+0.49095080
+0.30956011
+0.52614703
+0.56845166
+0.84913546
+-0.30525841
+0.78078575
+0.57384148
+0.04399423
+-0.17792539
+-0.89962071
+0.77488916
+0.41749897
+0.08028771
+-0.65075913
+0.78244475
+0.32219905
+0.75106492
+-0.34416463
+0.19533851
+0.07085202
+0.65812724
+0.62236025
+0.29956712
+0.76521975
+-0.28044780
+0.93474550
+-0.77477432
+-0.80745092
+-0.79818451
+-0.30603667
+0.31251328
+-0.34681634
+-0.40181379
+-0.00653213
+-0.72398242
+0.80974764
+0.56278827
+0.90296964
+-0.98199813
+-0.33240845
+0.77621679
+-0.76793258
+0.87875606
+-0.42627382
+0.55847899
+0.45909328
+0.66399851
+-0.45693226
+0.97234025
+0.50074229
+0.59203248
+-0.67782322
+-0.63872974
+0.09241515
+-0.09936341
+0.06122632
+0.35423043
+0.95002439
+-0.92176288
+0.26075921
+0.96683020
+-0.38557480
+0.90010171
+0.28773919
+0.78460478
+-0.20098149
+0.60537888
+-0.54708516
+0.90028275
+-0.88002473
+0.04183979
+0.64267533
+0.48309690
+0.57322760
+0.98722402
+0.98426282
+-0.02713166
+0.78824443
+-0.32328730
+0.96348760
+-0.40434592
+0.09190016
+0.18218309
+0.08259436
+0.77215747
+0.15997242
+0.53712048
+-0.20482832
+-0.16451126
+0.54711757
+-0.96440146
+-0.27524431
+-0.07355910
+-0.16015897
+-0.98654765
+-0.24213023
+-0.31136827
+0.22583634
+0.18732394
+1.00896666
+0.54692418
+0.58451204
+0.68981368
+-0.19677416
+-0.49042585
+0.59766971
+-0.27120327
+0.70562118
+0.49759997
+0.27096829
+-0.78224193
+0.36707179
+0.22870916
+-0.15966556
+-0.58366536
+-0.31297846
+-0.33310215
+-0.59691611
+-0.74387672
+-0.31927022
+-0.48999869
+0.12807696
+-0.15151560
+-0.77203789
+-0.59640914
+-0.02579624
+0.40478457
+0.18028969
+0.07947446
+-0.40936609
+-0.65702199
+-0.24419667
+0.66791469
+0.51651140
+0.42268852
+-0.17480780
+-0.19304536
+0.92169553
+0.62587941
+0.82484195
+-0.68271431
+0.34788577
+-0.27853274
+-0.86865185
+-0.73948824
+0.67468571
+0.01047434
+-0.60785898
+-0.56181245
+0.32594893
+-0.41134279
+0.95025604
+-0.44913816
+0.19227000
+0.54538444
+0.59204458
+-0.15784262
+0.16511947
+-0.65359043
+-0.80940340
+-0.77407094
+-0.28776552
+0.22305948
+0.65200718
+0.23285178
+0.76796292
+-0.02745091
+-0.53630549
+-0.15298781
+-0.12805106
+-0.07440311
+0.12568731
+-0.30253197
+0.19300265
+-0.15023083
+-0.24294687
+0.48905600
+0.11753298
+-0.26463952
+0.06994340
+-0.61514190
+-0.03202988
+-0.87316522
+0.99465499
+0.60676448
+0.62962863
+0.82269491
+-0.86869267
+-0.61196010
+-0.88926510
+-0.76560363
+0.09039973
+0.31085176
+0.76597211
+0.29048781
+0.94630310
+-0.97313277
+0.58266474
+0.95819138
+0.45493707
+-0.58400053
+0.03983389
+-0.92215787
+-0.02757075
+-0.24580611
+0.06534371
+1.00560070
+0.26520124
+0.86699675
+-0.92730628
+-0.34848971
+-0.49569532
+0.16171498
+0.36996184
+0.77693503
+-0.94761850
+0.87271465
+0.48635928
+-0.70986747
+-0.84525604
+0.53388271
+-0.94351665
+-0.90580473
+0.90535547
+-0.77355813
+0.18747053
+0.97958054
+-0.72564364
+-0.60903155
+0.42094722
+-0.21443598
+0.41487271
+-0.00278204
+0.59453146
+-0.16226049
+-0.00352582
+0.98395349
+0.58360361
+-0.02051326
+0.43395961
+-0.03528718
+0.61795830
+-0.38925356
+0.56584173
+-0.10116161
+-0.25311467
+-0.36009680
+0.43656041
+-0.84219213
+0.98256543
+-0.30473484
+-0.73821723
+-0.48207422
+0.95707136
+0.31581275
+0.01119466
+-0.39993617
+-0.89750682
+0.03901990
+-0.13806307
+-0.09583534
+0.53932114
+0.49379079
+0.44717258
+0.33854286
+-0.84348728
+-0.40186951
+0.07713245
+0.72042126
+0.66659067
+0.35895820
+0.36587271
+0.57731034
+-0.48916553
+-0.58362268
+-0.66610178
+0.27405256
+-0.96556342
+0.18063651
+-0.44521146
+-0.67379412
+-0.23229879
+-0.74550296
+0.52408600
+-0.01618645
+0.25995906
+0.85072642
+0.53863458
+0.32140971
+0.78937732
+-0.97648501
+-0.52454295
+-0.06831070
+0.55074838
+-0.85285778
+-0.94719043
+-0.06274760
+-0.35397173
+-0.58765128
+0.88232837
+-0.24571044
+0.94647450
+0.34479720
+-0.05359900
+0.99120329
+-0.24439950
+0.38814360
+-1.01044548
+-0.54513873
+0.42325121
+0.09522103
+-0.26350207
+-0.33131477
+-0.85858395
+0.43072158
+-0.69875927
+0.98192670
+0.76359559
+-0.78934787
+-0.56911082
+0.47052745
+0.81426114
+-0.17332699
+0.34125454
+0.36092549
+0.70578456
+0.50827418
+0.52287114
+-0.29322338
+-0.69262554
+0.83105440
+0.25248509
+0.23429190
+-0.88506342
+0.34927605
+-0.46341763
+0.39205928
+0.27917219
+0.54205072
+0.49596186
+0.31687670
+0.71754068
+-0.96800616
+-0.19688575
+0.03943454
+0.59702430
+0.03790388
+-0.59309970
+-0.07139510
+-0.30927828
+-0.84430000
+0.67149477
+0.42343265
+-0.64275280
+-0.44402051
+0.04197448
+-0.82674420
+0.19272939
+-0.80753089
+0.73098304
+-0.02556986
+0.50163309
+-0.41643837
+-0.33742870
+0.01228703
+-0.03157974
+-0.02757415
+0.55858022
+-0.48726749
+-0.51364317
+-0.82073094
+0.64469103
+0.00501473
+-0.93569853
+-0.00420344
+0.62061132
+-0.18218526
+0.44276205
+-0.79828876
+0.07075339
+0.58439484
+-0.54252847
+-0.65094881
+-0.32964272
+-0.67382762
+-0.23053496
+0.26790759
+-0.75764613
+0.60980403
+0.91421092
+0.22408509
+0.27531993
+-0.71995202
+0.39612055
+-0.53258690
+-0.05488360
+0.65374434
+-0.94598843
+-0.51851922
+0.17539656
+0.53750265
+0.65940440
+-0.14594555
+-0.23589551
+-0.66424394
+0.05290663
+0.29491949
+0.38734770
+0.16882944
+-0.47613567
+0.48945856
+-0.00031650
+0.87647974
+0.06353211
+-0.39593363
+0.07544696
+-0.94549096
+0.38824332
+-0.77733889
+0.00723195
+0.14167988
+-0.40318257
+0.47782385
+0.28506005
+0.11212170
+0.71437228
+-0.32484734
+-0.26933879
+0.53391469
+-0.44316161
+-0.29261428
+0.75921690
+0.39502060
+0.96072876
+0.63995278
+-0.03928864
+0.69599867
+-0.86967185
+-0.86429620
+0.92312920
+0.04257762
+-0.74915338
+0.36951792
+0.62819672
+-0.13282967
+0.68314421
+-0.56637120
+0.15174687
+0.68637192
+-0.52476844
+0.89399219
+-0.85061128
+-0.84895974
+0.66584468
+0.94839323
+0.67954683
+-0.99492203
+0.45434308
+-0.04225785
+0.77756071
+0.41020703
+-0.48718917
+0.09603715
+-0.75602786
+0.73119259
+0.83504069
+0.85529375
+0.30282784
+0.19248044
+0.42158246
+-0.38651115
+0.66102242
+0.42699063
+0.19800520
+0.92227137
+-0.31014884
+0.15131426
+0.69429255
+0.10386229
+0.00145710
+-0.20340109
+-0.63034773
+-0.49066252
+-0.01943088
+-0.92706442
+-0.19830173
+0.53387094
+-0.25251555
+0.57102132
+-0.27862310
+0.27248013
+0.83879936
+-0.14441341
+0.75691199
+0.43292606
+-0.15290505
+0.85147238
+-0.80566390
+0.71217132
+0.27301645
+0.48804295
+-0.69091985
+0.72612572
+0.52942598
+0.44797623
+0.50535762
+-0.20388258
+0.24585664
+-0.34235108
+0.45086277
+0.86896110
+0.56404912
+-0.41319132
+0.40006447
+0.07405555
+0.47400749
+0.19472206
+-0.29443154
+0.91722407
+0.05258113
+0.97058243
+-0.94397496
+0.66113563
+0.46326775
+-0.59282469
+0.19814559
+0.11060369
+0.05409784
+-0.21443835
+-0.26231713
+-0.77727580
+-0.89912055
+-0.68797963
+-0.73365263
+0.97265185
+0.94728516
+-0.15215814
+-0.56349422
+0.81372187
+0.54777347
+0.32427447
+0.96193796
+0.86886943
+-0.63321964
+0.45650554
+-0.23468443
+-0.68369868
+0.81642873
+0.30462680
+-0.93321976
+-0.72213642
+-0.42213648
+-0.38883161
+0.97914972
+0.99615014
+0.30233906
+0.42995954
+0.30346103
+-0.45919266
+0.79024767
+-0.57937072
+0.25173396
+-0.99435359
+0.16393985
+-0.51210215
+-0.16231294
+-0.92091066
+-0.53214179
+-0.23263922
+0.00138711
+0.81825202
+0.51444799
+0.37659026
+0.53770353
+0.48649431
+0.88975523
+-0.76156834
+-0.22577887
+0.47153446
+0.38611292
+0.92601650
+-0.11568350
+0.16993619
+-0.12595759
+-0.08437937
+0.22444640
+0.09665215
+-0.28375523
+-0.90514567
+-0.52745474
+0.14611428
+0.13369554
+0.41122759
+0.98503281
+0.16047204
+-0.97535346
+0.84430456
+0.07121883
+-0.50079104
+0.99957185
+-0.51552978
+0.65845404
+-0.82161228
+-0.18928454
+0.60803841
+-0.69974284
+0.01600099
+-0.52517784
+0.69692004
+-0.44098395
+0.37517917
+0.67958033
+0.05199051
+0.83566344
+-0.98265972
+0.56350029
+-0.54727900
+0.26473761
+0.33646607
+-0.48453605
+0.81403518
+0.26859760
+-0.19025785
+-0.20983171
+0.34477007
+0.87908971
+0.88235784
+0.09465861
+0.22872818
+-0.84856665
+0.00033128
+-0.86649770
+0.32653260
+-0.06635273
+0.98243463
+0.32582831
+0.01979947
+0.24246073
+-0.20950317
+0.84325087
+-0.61307836
+0.66058064
+0.59866297
+0.61089623
+0.04565978
+0.52841437
+0.25992787
+0.48798394
+-0.01265186
+-0.55056518
+-0.52296564
+0.97187638
+-0.30918169
+-0.04912013
+-0.40648705
+-0.07607132
+-0.36812586
+-0.31608397
+0.54076052
+-0.31643426
+-0.59266815
+-0.70257306
+0.76867521
+0.29336572
+0.53576577
+-0.06124902
+-0.09939063
+-0.90218018
+0.61012673
+-0.06080413
+0.91400051
+-0.26351988
+-0.33221686
+0.91580951
+-0.86779207
+-0.68566281
+0.65285647
+0.56511772
+-0.37992752
+-0.94479301
+-0.41420436
+-0.06987971
+0.09239113
+-0.85897976
+0.17919433
+0.72496331
+0.72266793
+-0.70923030
+-0.23220891
+-0.37751079
+0.11263478
+-0.65843654
+0.02007878
+-0.47507626
+-0.42364240
+0.46235943
+0.07295775
+0.88218462
+-0.90882327
+0.15660655
+0.99509966
+-0.29154932
+0.57007539
+-0.15680081
+0.75710392
+0.01519310
+0.89368725
+0.90603340
+0.26062191
+0.61236548
+0.19522250
+0.01897264
+-0.45189488
+0.11558902
+-0.34785843
+0.52694905
+0.67754745
+-0.48443520
+0.59150279
+-0.28536099
+0.06406307
+0.02938104
+-0.54864743
+-0.13798225
+0.66801941
+0.82584417
+0.21117020
+0.83257759
+0.80072796
+0.21966386
+-0.81910439
+0.84872985
+0.54762459
+0.74346685
+-0.62378314
+-0.23540694
+-0.91763178
+-0.87287872
+0.57652092
+-0.52994150
+0.65892172
+-0.18621260
+-0.16534328
+-0.37986112
+-0.85073443
+0.49481976
+0.39592803
+0.14730024
+0.17011857
+0.37580371
+-0.37991071
+0.21713352
+-0.43230695
+-0.53983897
+0.24869049
+0.15065074
+0.62607312
+0.25547457
+-0.63490686
+-0.00525612
+0.33396280
+-0.41345429
+0.62591732
+-0.51822874
+0.31814933
+-0.71923900
+-0.20528615
+0.38480330
+-0.03305042
+0.76921940
+-0.89543618
+-0.93175888
+-0.26413649
+0.75035191
+-0.15713036
+-0.63994262
+-0.99658450
+0.30367291
+-0.24594963
+0.51826227
+-0.98719044
+-0.65077141
+0.04265118
+-0.51681295
+-0.69379076
+-0.42710596
+0.45576835
+-0.64089626
+-0.01832932
+-0.27465212
+0.43885946
+-0.25479257
+-0.85126302
+-0.36982387
+-0.16355991
+0.24644554
+-0.79234518
+-0.02627444
+-0.50363919
+-0.43259293
+0.04267526
+-0.60137454
+0.51831138
+-0.86900753
+0.09095180
+-0.63496566
+0.51653075
+0.76254964
+0.68080533
+-0.05632973
+-0.89687220
+-0.29139602
+-0.90282902
+-0.51879132
+0.96110928
+-0.55959818
+0.12343061
+-0.93553720
+0.67849946
+0.40882146
+-0.99041385
+0.96318519
+0.08651590
+-0.53889793
+0.86112845
+0.38412809
+0.15401542
+-0.56912205
+0.94081783
+0.17423189
+-0.45710254
+-0.87186538
+0.69717157
+-0.70631784
+-0.55589020
+0.62213719
+0.98122442
+0.08966589
+-0.21553963
+-0.68880713
+-0.44802880
+0.88378501
+-0.02340585
+0.14525306
+0.17705560
+0.89317656
+-0.94259168
+0.60994291
+-0.25264847
+-0.76575635
+0.84172559
+-0.76241894
+0.07907796
+0.02515972
+0.39854169
+-0.11849684
+0.03015566
+0.74370146
+-0.59738147
+-0.98757745
+-0.94804557
+-0.83757812
+-0.09779835
+-0.81740728
+0.91766036
+0.89496422
+-0.21399069
+-0.37445811
+0.66266268
+-0.68864811
+0.80936104
+-0.71547246
+-0.21536458
+-0.44919919
+-0.08552679
+0.10748048
+0.30870640
+-0.28944023
+-0.33421049
+-0.69824783
+0.96360780
+0.19423993
+-0.70744125
+-0.20028219
+-0.86682005
+0.05546729
+-0.04825042
+0.78039167
+-0.41048791
+0.75471042
+0.81460915
+-0.16626607
+-0.05959461
+-0.85655339
+-0.45436701
+0.22868569
+-0.01435287
+0.72189462
+-0.76023259
+-0.40774738
+-0.15338551
+0.43263204
+0.79316218
+0.52042054
+-0.02071979
+-0.78098245
+-0.30040817
+-0.82968818
+0.31566159
+-0.36305751
+0.39361316
+0.96890886
+-0.02450913
+0.78999111
+0.02102940
+0.53874694
+-0.41372657
+0.33861211
+-0.17804267
+0.07573481
+-0.13265470
+0.36191832
+-0.41632897
+-0.86866800
+-0.32168398
+0.46303288
+0.28761684
+0.92407418
+0.24393210
+0.37158668
+0.64530901
+0.93206656
+-0.87639814
+0.47779408
+-0.86322898
+0.18338618
+0.20818360
+0.12481546
+0.32373011
+0.52317112
+-0.54890082
+-0.80795346
+0.95421554
+-0.35495666
+0.96379870
+-0.77951308
+0.13500087
+0.07072964
+0.91077166
+0.00649423
+0.63223367
+0.61910754
+-0.16161453
+0.04284298
+0.18152620
+0.14854378
+-0.57352012
+-0.03127139
+0.03964814
+0.05688112
+0.03397370
+-0.08637702
+0.40453933
+0.10964564
+0.57692709
+-0.15459665
+0.57932388
+-0.94064135
+-0.67628672
+0.41573199
+-0.91230511
+0.07290554
+-0.76428927
+0.72078674
+-0.93512469
+0.79752693
+0.57011730
+0.61832325
+-0.25149123
+0.62480373
+-0.80786012
+0.88016395
+-0.01776063
+-0.69788268
+-0.90205790
+-0.85989219
+0.31694632
+-0.10324942
+-0.56311076
+0.69464608
+0.33391525
+-0.24607057
+-0.86871469
+-0.75895275
+-0.79256978
+-0.28038248
+-0.25866129
+0.63534133
+-0.85631689
+0.75502942
+-0.23493398
+0.25162175
+0.24946095
+-0.62701169
+-0.74333083
+-0.57969265
+-0.23805502
+-0.00961973
+-0.89215161
+-0.28676715
+0.94972055
+0.02850642
+0.89692201
+0.16575307
+-0.74097895
+0.10649140
+-0.32258967
+0.38194410
+0.33769252
+0.69465551
+-0.40291060
+0.58458891
+0.79832353
+-0.69830814
+-0.26854899
+0.94956858
+-0.95449395
+0.37202470
+0.17091217
+0.22112856
+-0.68008627
+0.36922374
+0.59099664
+-0.75523172
+0.77973024
+0.85936231
+0.99082485
+-0.51560934
+-0.82057593
+0.20724664
+-0.96983726
+-0.37322507
+0.42254950
+0.44655794
+-0.56132349
+0.04913194
+0.18928030
+0.84691672
+0.18326607
+0.77063320
+-0.91146613
+-0.52437366
+0.86523391
+-0.87726511
+0.26489214
+0.68977959
+-0.91383196
+0.93415789
+-0.38795499
+0.85626850
+0.58639102
+-0.82453871
+-0.33339624
+0.28036267
+-0.25412919
+0.82419414
+0.59143784
+-0.42387838
+0.23617565
+0.52395640
+0.83287651
+0.91475862
+-0.05673595
+-0.28351149
+-0.74080695
+-0.88965315
+0.02671780
+0.24826449
+-0.30129223
+-0.77030731
+0.03043193
+0.14918833
+-0.21559989
+0.82526203
+-0.96396723
+0.61859428
+-0.53294365
+1.01192910
+0.85276986
+0.92758617
+-0.95638100
+0.45626657
+-0.64126089
+0.35204717
+0.69283906
+-0.87592707
+-0.27271472
+0.31281442
+0.02598644
+0.68699727
+-0.64565986
+-0.96066221
+-0.21061432
+0.99699553
+-0.04278960
+0.45698892
+-0.60672410
+0.37957591
+-0.67010226
+-0.65997701
+-0.74702143
+-0.54873298
+0.29595429
+-0.51746346
+-0.18023976
+0.69692480
+-0.93739253
+-0.90981308
+0.14623643
+-0.62662842
+0.16640217
+0.88566320
+-0.25227213
+0.90125533
+0.83115510
+-0.65772689
+-0.54462417
+-0.32910508
+0.45419336
+0.15004156
+-0.74479555
+0.41012959
+-0.27778548
+0.61782857
+0.69861142
+0.61545073
+0.63714565
+-0.25599879
+-0.96391760
+-0.63682067
+0.85179777
+-0.46724458
+-0.07164103
+-0.86967997
+-0.32736071
+-0.71607445
+-0.44340353
+0.18451947
+0.90303195
+-0.20725139
+0.20834274
+0.18589919
+-0.86099234
+-0.15815983
+0.88394407
+-0.02308107
+-0.87356386
+0.30339676
+-0.58122095
+0.81414197
+-0.18533050
+-0.33814116
+-0.58055144
+0.96997579
+0.18807546
+-0.94187148
+-0.67318820
+-0.57946798
+-0.41680150
+-0.23377916
+-0.84929220
+0.56078725
+0.29720670
+-0.45457361
+-0.77688611
+0.36878180
+0.57471563
+0.08442931
+-0.08252878
+0.52415337
+0.11961868
+-0.02463617
+0.98700649
+-0.51710010
+0.85734714
+0.94045465
+0.87799860
+-0.50839316
+0.09277151
+-0.81717497
+-0.61366055
+-0.35592360
+-0.73850705
+0.05970821
+-0.96089857
+-0.76241202
+-0.48003803
+-0.71591790
+-0.04263272
+0.52204987
+0.84788584
+0.89823626
+-0.94732780
+0.18192730
+0.84700386
+-0.13989094
+-0.25738250
+-0.73110818
+-0.78538750
+0.01888415
+0.93252218
+-0.06301178
+0.56827683
+-0.12716570
+-0.62238736
+0.68514869
+0.92933084
+-0.34579330
+0.29646645
+0.79285475
+0.89735865
+0.13606845
+-0.50710332
+-0.38867071
+-0.83703902
+-0.75559218
+-0.40405087
+-0.79275486
+0.08323942
+0.24567660
+0.22894716
+-0.66301746
+-0.77394505
+-0.05272599
+0.66234963
+-0.00329175
+0.81701924
+-0.73460565
+-0.67294781
+-0.94831770
+0.90302807
+0.35395630
+-0.52372917
+0.32773517
+0.99487595
+-0.82365341
+0.66000201
+-0.06495002
+-0.88211971
+0.67309486
+0.80451047
+0.78106237
+-0.55528771
+0.49432686
+-0.69533102
+0.07355771
+-0.10700743
+0.38238345
+-0.77958903
+0.43322254
+-0.30230407
+-0.28750695
+0.07416672
+-0.75634345
+-0.29047258
+0.42542049
+-0.83006451
+0.49282144
+0.72911010
+0.40521802
+0.18533243
+0.57961272
+-0.66840067
+-0.50244788
+-0.24643113
+0.98827860
+-0.85465378
+-0.99625732
+0.87857510
+0.79526046
+0.24658474
+0.94753752
+0.14566929
+-0.21395897
+0.78429840
+-0.26387193
+-0.56833647
+-0.79216809
+0.99997158
+-0.39768113
+0.78136284
+-0.20221824
+-0.45942214
+-0.52671237
+-0.08776320
+0.40954662
+-0.11653129
+-0.66710860
+-0.86707206
+-0.21197554
+0.38666119
+0.22429259
+0.00476740
+-0.41794786
+-0.99033692
+0.07927903
+-0.85503116
+-0.20437564
+0.59339776
+-0.00092597
+-0.56198327
+0.10120327
+0.92667298
+0.44649052
+-0.36936761
+-0.91870353
+0.25167547
+0.80549638
+-0.64149200
+-0.31218632
+0.01403675
+0.95666106
+0.47800289
+0.46446468
+-0.30142208
+-0.50731250
+0.88946707
+0.44681311
+0.36283493
+0.97737133
+0.57999403
+0.74436980
+-0.53348252
+0.62932588
+0.56487660
+0.26019711
+0.50710030
+0.71698940
+-0.66784554
+-0.72166046
+-0.83814086
+-0.61886940
+0.01742378
+-0.99094123
+-0.24605588
+-0.98433942
+0.31518895
+0.97405768
+-0.91769713
+-0.90089682
+0.99007433
+-0.15052611
+0.06936206
+-0.74868046
+-0.26779450
+0.39916859
+-0.11669191
+0.33575795
+0.50322044
+0.16368334
+-0.46058198
+-0.29874075
+0.34652626
+-0.78492721
+0.71999924
+0.91811855
+-0.55710718
+0.76064237
+0.12616802
+0.44957608
+0.20088446
+-0.49097501
+-0.95120512
+0.84106569
+0.92448370
+-0.47836413
+0.41373012
+-0.39895697
+0.52507409
+-0.81319821
+0.61731459
+0.38330810
+0.26153786
+0.53324823
+0.95599858
+-0.59653589
+-0.18414834
+-0.60063010
+0.97403743
+-0.96645011
+-0.62046936
+-0.23841399
+0.01837319
+-0.39548501
+0.76523101
+-0.05278959
+0.19551503
+0.56013918
+0.42436230
+-0.21164924
+-0.54629594
+-0.88076029
+-0.25531489
+-0.29566371
+0.54698360
+-0.77463119
+0.84063292
+-0.99473466
+0.09266615
+0.31373143
+0.70509589
+-0.58040249
+-0.75584501
+-0.07440895
+-0.59251854
+0.64475131
+0.93438566
+-0.03614789
+0.35930276
+-0.66127568
+-0.28496003
+0.58487415
+0.25480533
+0.26897824
+-0.91912955
+-0.90816041
+-0.25007159
+0.96991658
+0.67274356
+-0.92089041
+-0.26018012
+-0.01033974
+-0.62369752
+0.29446638
+-0.61416298
+0.30446601
+-0.50450766
+-0.73325810
+0.83111095
+-0.03879911
+0.97198379
+0.00223589
+0.88405275
+-0.65386155
+0.13178110
+-0.96004778
+-0.56900591
+-0.80364418
+-0.85653676
+-0.83922394
+0.55401230
+0.19901252
+0.39962578
+-0.23306310
+-0.70575640
+0.46248353
+0.79358602
+-0.19144398
+0.92653418
+0.42287958
+0.76876426
+0.04857779
+-0.52013972
+-0.66055986
+-0.67569554
+0.99357247
+0.27343476
+0.22961891
+0.21282911
+0.92132521
+-0.99195622
+0.94410181
+0.28168380
+0.67363405
+-0.56912246
+0.40426540
+0.90299809
+0.19443750
+0.38072133
+-0.50523534
+0.23261654
+0.38562739
+-0.64487180
+0.38421297
+-0.12677056
+0.43019795
+0.04491949
+0.28183913
+-0.69681862
+-0.80463903
+0.54245651
+0.89452946
+-0.29471242
+0.71731997
+-0.46927321
+-0.51970586
+-0.40132427
+0.40344310
+-0.08775961
+0.33328581
+0.55037534
+0.54012024
+0.19513059
+-0.06667668
+0.85411739
+-0.37033391
+-0.91809876
+0.37190735
+-0.45323336
+0.50608337
+-0.18309611
+0.72413385
+-0.56610733
+0.88168597
+0.21050489
+-0.47897172
+0.81698251
+0.10662162
+0.25131452
+0.41972315
+0.55329216
+-0.68669212
+0.06073213
+0.63448834
+-0.41873366
+-0.87667806
+-0.87766434
+0.97455247
+0.87462322
+-0.36481383
+0.04307574
+0.62237125
+0.74259029
+-0.97721186
+-0.92322306
+0.90277724
+0.97486556
+0.02072484
+0.46183345
+-0.18358518
+0.58798855
+0.97288197
+0.44958425
+-0.04120479
+-0.16478687
+-0.33740421
+-0.22089303
+0.17969019
+0.81307444
+-0.31144596
+-0.36736597
+-0.72717494
+-0.88564896
+-0.08962808
+-0.22635250
+-0.17691614
+-0.83483782
+0.54515238
+-0.89174889
+-0.12770928
+0.02215760
+-0.15732592
+0.49727202
+0.79886748
+0.67658842
+-0.11587848
+0.94458401
+-0.23415249
+-0.24773100
+-0.99869476
+-0.40507723
+-0.57155335
+0.20555866
+0.20364596
+0.16680146
+0.23257385
+0.84573996
+-0.54047119
+0.84386251
+-0.39989115
+0.35080497
+-0.39362109
+-0.63154563
+0.46627654
+0.97907806
+-0.18409898
+0.82437038
+0.21540518
+-0.43930110
+0.28175782
+-0.63719861
+-0.56658947
+-0.46778821
+0.41159071
+0.71746827
+0.46191249
+0.27612817
+0.92397804
+0.94408390
+0.26461278
+0.86624413
+-0.03241497
+-0.13289010
+-0.10461221
+-0.29559361
+-0.81684462
+-0.97428349
+0.60348653
+-0.83066381
+0.53909506
+0.38894580
+-0.38662342
+-0.87755694
+-0.45349750
+0.04348527
+-0.34225372
+0.13313568
+0.49365902
+-0.38077551
+0.79669046
+-0.52175689
+-0.48099345
+-0.15536267
+0.08153641
+-0.89159400
+0.97831953
+-0.25837165
+-0.99134666
+-0.11742014
+-0.14579672
+-0.37135059
+0.83641899
+0.46805453
+-0.31080145
+-0.53640500
+0.79854488
+-0.72239503
+-0.44573992
+0.66448367
+0.76930463
+-0.81684195
+0.43069494
+-0.69502994
+-0.49129122
+0.55626988
+0.38237238
+0.60089898
+-0.57719290
+0.30568922
+0.30395877
+0.86887324
+0.93304753
+-0.61302575
+0.74115300
+-0.91342559
+-0.71476990
+-0.02923900
+0.45338309
+-0.98460187
+-0.03364456
+0.86697102
+-0.29284823
+-0.01274151
+-0.58892250
+0.71939015
+-0.24077445
+-0.15589869
+0.15467775
+0.10002339
+-0.82460622
+0.67811537
+-0.32099420
+0.54831505
+0.27389109
+-0.19148797
+0.81003869
+0.38677108
+-0.68035766
+-0.80576234
+0.33076203
+0.19273496
+0.58068573
+-0.27994120
+0.35676038
+0.76698864
+-0.54093757
+-0.31219327
+0.48596585
+0.56374550
+-0.75444624
+0.67303658
+-0.59145918
+0.91274405
+0.55879140
+-0.19153130
+0.46210527
+-0.65091610
+0.24945414
+0.46014559
+0.00628984
+-0.83414526
+0.59128058
+0.01893520
+-0.98859185
+0.69989061
+-0.97104172
+0.54694152
+0.24872887
+-0.11567813
+0.55425799
+0.61741030
+-0.64231777
+0.04000854
+0.17953825
+-0.67806822
+0.26468980
+-0.86560398
+0.96276772
+0.10392487
+-0.84386723
+-0.41153479
+0.10800636
+-0.23691899
+0.08201718
+-0.39905411
+0.35133970
+0.35484874
+-0.79639050
+0.03786886
+-0.32848817
+-0.35467875
+-0.82542807
+0.16545665
+-0.23348385
+0.75072253
+0.41502428
+-0.83008195
+-0.74374020
+-0.58564305
+0.73677826
+0.86535478
+0.57393432
+-0.48236728
+-0.20760173
+-0.98106906
+0.12545848
+-0.74732572
+-0.57821298
+0.71570277
+0.06446791
+0.06281900
+-0.75113824
+0.73150694
+-0.05009168
+0.25692225
+0.81881392
+0.79725361
+-0.21526724
+0.05952811
+-0.41142392
+0.58255768
+0.84444940
+0.76193464
+-0.98767019
+0.53832114
+-0.76420820
+0.69842947
+-0.56727618
+0.63856959
+-0.08313525
+0.72184217
+-0.67806566
+-0.14201087
+0.84662533
+0.04887569
+0.37968361
+-0.35808843
+-0.06257826
+-0.48941791
+0.23931646
+-0.09059507
+0.97793388
+-0.42186379
+0.33198202
+0.65195370
+-0.97188620
+-0.88234410
+0.33114290
+0.76318514
+-0.95242630
+-0.29174811
+-0.83586249
+0.41670620
+0.83077276
+-0.80436894
+0.66812158
+-0.65170529
+0.81138933
+-0.89451045
+0.95292795
+-0.05209786
+0.76409185
+0.54105806
+-0.36141014
+-0.28387237
+-0.65522787
+-0.19627100
+-0.85688521
+0.32409561
+-0.34670860
+0.33879256
+0.06926858
+0.45794523
+0.43805659
+-0.90206929
+-0.13438380
+-0.71656665
+-0.34255677
+0.52444243
+0.79497254
+0.85460091
+0.48001552
+-0.35890567
+-0.26197374
+-0.91357575
+-0.69904196
+-0.07459801
+0.72068298
+-0.01094830
+-0.53490165
+-0.87513629
+-0.20784521
+-0.69987017
+0.71686411
+-0.98303036
+0.08462632
+0.01766014
+-0.32912791
+-0.45468289
+0.61935508
+0.89525938
+-0.24557471
+-0.89558569
+0.33782160
+0.52618420
+-0.39597672
+0.78058660
+0.49789584
+-0.38585955
+0.64863300
+0.73005795
+0.40509868
+0.73550045
+-0.91090143
+0.31433225
+-0.61187246
+0.10081387
+-0.77872294
+0.92378366
+0.20313609
+0.58908999
+-0.38849026
+0.99871910
+0.42758155
+-0.94879577
+0.45521188
+0.95602226
+0.49049318
+-0.02150416
+-0.17278337
+-0.23184806
+-0.22732753
+-0.20389789
+-0.32646304
+0.90251148
+0.79769325
+0.23427176
+-0.59975700
+0.35576241
+0.24323695
+-0.88606944
+-0.16168942
+0.75818591
+-0.63274476
+-0.44733415
+0.77798002
+-0.78884095
+0.00269378
+-0.14287528
+-0.70928514
+-0.63414515
+-0.50789790
+-0.34838266
+0.69724378
+-0.90402940
+0.39893031
+0.99496756
+0.18248305
+-0.77523675
+-0.77862864
+-0.76764873
+0.31215437
+-0.43871473
+-0.83846143
+-0.31347790
+0.50954177
+-0.06132323
+0.19537747
+-0.63805478
+-0.06427854
+0.30113173
+0.63589437
+-0.85350885
+-0.45461322
+-0.35040971
+-0.17873962
+0.63505740
+-0.98102334
+-0.52908542
+0.10942341
+-0.37118117
+-0.44720899
+0.04316049
+-0.55056621
+-0.04717930
+0.59768247
+0.26956230
+-0.62803098
+-0.18288853
+0.33933182
+0.16689458
+-0.63097327
+-0.67127861
+-0.08781698
+0.51508907
+0.26416108
+0.19497092
+0.17719251
+-0.33596130
+-0.73589607
+0.94205001
+0.10079490
+-0.34685999
+-0.85605046
+-0.67578853
+0.04661536
+-0.75629206
+-0.20053155
+-0.19699229
+0.94076458
+0.05252166
+0.61247340
+-0.89323768
+0.50331190
+0.18660396
+0.53315186
+0.54595998
+0.26412781
+-0.27775049
+0.71876028
+0.17688662
+-0.55930890
+-0.09169806
+-0.25607454
+0.48262438
+-0.28019937
+0.64539960
+0.05690482
+0.40380621
+1.02155671
+0.80252956
+0.50933999
+0.19566190
+0.23153035
+-0.47942322
+-0.29852887
+-0.77594709
+0.83874604
+0.15173805
+0.42640586
+-0.68521266
+0.23090310
+0.83528994
+0.04016236
+0.31524076
+0.77159941
+0.85650564
+0.53742329
+-0.14343120
+-0.98074463
+-0.53467839
+0.21994963
+0.71662848
+0.77052687
+0.71677106
+-0.86948573
+-0.87660655
+-0.24890129
+0.46475743
+-0.32924853
+0.87794537
+0.28887891
+0.19989638
+-0.96328934
+0.53645107
+-0.45954278
+0.75574962
+-0.52918027
+0.98690940
+0.75063900
+-0.38021234
+0.00302283
+0.67861004
+0.20535396
+0.04453287
+0.96156370
+-0.01587969
+0.34770951
+-0.46589200
+0.92263341
+-0.72111733
+-0.38638948
+0.56166913
+0.95404547
+-0.73178389
+0.37151350
+-0.87457972
+-0.07840342
+-0.53827190
+0.95739410
+-0.97903100
+-0.50912284
+0.55369853
+0.90913600
+0.84192695
+0.37077756
+-0.91765208
+-0.19398035
+-0.88604326
+-0.27285125
+-0.41984637
+-0.00454227
+-0.73215430
+-0.18927842
+0.37662725
+-0.54172572
+0.35819509
+0.51673881
+0.00597432
+-0.28548124
+-0.58206771
+0.74892595
+-0.07713787
+-0.06539094
+-0.76604839
+0.63287754
+-0.48157576
+0.16857950
+0.14166405
+0.90951095
+0.85282736
+-0.44233379
+0.64109446
+-0.80429174
+0.89934210
+-0.42386972
+-0.93196148
+-0.43176910
+0.42410495
+0.83163295
+-0.16533549
+0.70714892
+0.85512078
+0.06468079
+0.75423288
+0.16069320
+0.54928234
+0.20114065
+0.58771420
+0.93458924
+0.78079958
+0.74355446
+-0.81956870
+-0.25564555
+-0.54052506
+-0.68176865
+0.54826774
+0.46912199
+0.42990054
+-0.33170971
+0.72634751
+0.19920020
+0.85408122
+0.75381311
+0.85552708
+0.50271236
+0.07769193
+0.17845935
+0.40578307
+-0.57046365
+0.64267010
+-0.94904125
+0.84166986
+0.50857004
+-0.94940480
+-0.86942855
+-0.56882875
+-0.32947850
+-0.74922221
+-0.56817248
+0.61667878
+0.86396758
+-0.85550958
+-0.28852276
+-0.25975754
+-0.66223429
+0.31326629
+0.95432216
+-0.92630356
+-0.57678773
+0.22486360
+0.03900008
+0.70604998
+-0.40480522
+0.94399051
+-0.58658258
+0.05907477
+0.22048825
+-0.77998013
+0.25511382
+0.70003659
+-0.50856508
+0.95389825
+0.46807130
+0.07564906
+0.57483124
+0.93707313
+0.28916127
+0.41353834
+0.13255463
+0.24085874
+-0.48857684
+0.40193957
+-0.74372033
+0.21746997
+0.87340879
+0.23775019
+0.47057492
+-0.52122282
+-0.69790029
+0.20463962
+0.19018881
+-0.70790091
+0.93761035
+0.84383062
+0.85499763
+-0.59529491
+0.53222066
+0.02390540
+0.46720383
+-0.69404172
+0.38877373
+-0.53461632
+0.92887767
+0.22802166
+-0.11547143
+0.76142670
+0.15774161
+-0.83744506
+0.72587631
+0.70357508
+-0.05005832
+-0.32057285
+-0.24960295
+-0.39783373
+0.99747919
+0.38890482
+-0.16116428
+0.16941882
+-0.32499083
+0.78627104
+0.00181298
+-0.29769927
+-0.26648198
+0.58620910
+0.73877846
+0.67275990
+0.06746975
+-0.86079361
+-0.15947528
+0.66335041
+0.11763847
+0.73571135
+0.84325514
+-0.26119605
+-0.25067421
+-0.11594115
+0.02915491
+0.32116828
+0.03866347
+-0.96465316
+-0.08334107
+0.07886595
+0.87695251
+1.00141446
+-0.91848051
+-0.54503112
+0.21586527
+-0.44275119
+-0.39894566
+-0.43868292
+-0.19660420
+0.10854275
+-0.87255941
+-0.88557753
+-0.74324360
+0.17445864
+0.17913200
+0.83626710
+-0.90525946
+0.20967996
+0.81121920
+-0.24268340
+-0.58082568
+-0.59988599
+-0.30098310
+-0.50884386
+0.90867199
+-0.20040776
+-0.27578655
+-0.98726046
+-0.56955079
+-0.72430133
+0.47739730
+0.86825566
+0.34788832
+0.04040815
+0.71199156
+-0.55347367
+0.10577938
+0.57145059
+0.15680026
+0.83054192
+-0.44054779
+-0.79888831
+-0.39295205
+0.05316915
+-0.03775911
+0.27563177
+-0.42266396
+-0.29389668
+-0.50433729
+-0.15685677
+0.17750285
+-0.03333731
+0.64592752
+-0.92704220
+-0.00326167
+0.95123051
+-0.00127212
+-0.73570085
+-0.70633413
+-0.71272852
+-0.95039327
+0.48118357
+0.73028299
+0.15906311
+-0.55238238
+0.71244119
+0.69576755
+-0.28464205
+-0.85277347
+0.03007800
+0.97966659
+-0.87217698
+-0.14063236
+-0.88808213
+0.86637961
+-0.87491371
+0.51606222
+-0.05743669
+0.78617257
+-0.97332386
+0.35723617
+-0.00708567
+0.76934645
+0.50531279
+-0.70419206
+0.42010610
+0.55978963
+-0.04604781
+0.56240200
+-0.52619581
+-0.24704621
+-0.26195549
+0.86434844
+-0.93316041
+0.25923374
+-0.87212860
+-0.64028754
+-0.24213777
+-0.94648212
+-0.15150014
+-0.59480719
+-0.15235940
+0.20502162
+-0.15300284
+0.16090678
+0.18931241
+0.73611817
+-0.81635261
+0.69341137
+0.28348169
+0.11573522
+-0.46795027
+0.08698508
+0.95804855
+0.80817421
+-0.08457567
+0.88509390
+0.30543395
+-0.35884352
+0.23586785
+-0.93029116
+-0.41183093
+-0.09079468
+-0.39008232
+0.95304949
+-0.16575232
+0.36272061
+0.40088067
+-0.23414187
+0.93213989
+-0.49715381
+-0.20566320
+0.01358424
+0.72092192
+-0.92250737
+0.72296280
+0.18291511
+0.16917098
+0.33780250
+0.03942701
+0.81346907
+0.79939479
+0.65986495
+0.58877950
+0.11211420
+0.14876402
+-0.20805603
+0.08814851
+-0.78018749
+0.54054460
+-0.62901126
+-0.81273087
+0.90085154
+0.01944008
+-0.15060323
+-0.07574242
+0.69042213
+-0.52584059
+0.62531692
+-0.36020450
+0.81370820
+-0.75331631
+0.03133927
+-0.27073589
+-0.54526787
+0.38456548
+-0.05574676
+0.34011107
+0.51878637
+-0.37498372
+0.54322471
+-0.11084776
+0.93480997
+-0.46381801
+0.76130267
+0.44114685
+-0.23592031
+0.59481252
+-0.19877322
+0.65844378
+0.25052230
+0.53364758
+0.81643162
+0.32648990
+0.78909832
+0.83019433
+-0.81854046
+0.21795077
+0.48718874
+0.27981709
+0.36966233
+0.27226451
+0.93823412
+-0.85704910
+-0.46794399
+-0.73589364
+0.89876953
+0.94843646
+0.83236288
+-0.68856876
+0.65620944
+-0.60035693
+-0.11484031
+-0.52755886
+-0.68238312
+0.45666707
+0.89517796
+0.55047345
+-0.65291843
+0.62016821
+0.00069559
+-0.78028423
+0.26830018
+-0.81874184
+0.96503139
+-0.81360799
+0.30922031
+-0.25412822
+-0.63350499
+0.63447332
+-0.38879758
+0.39941537
+-0.82661669
+-0.79713775
+0.88099337
+0.78331172
+0.54844868
+-0.23335212
+0.24336100
+-0.48003328
+-0.81906590
+0.68094552
+-0.01540327
+0.74638915
+0.98678458
+-0.53388986
+0.55599046
+-0.63292956
+-0.96441053
+-0.50471795
+0.82997370
+0.22155178
+0.43870652
+0.81372380
+-0.16854638
+0.49970996
+-0.53630880
+-0.48548734
+-0.16053110
+0.70356834
+-0.97804667
+-0.23220158
+0.72804141
+0.71191275
+0.71311045
+-0.05680853
+-0.42643952
+0.49705970
+-0.67562273
+0.34649920
+-0.31021917
+0.86215806
+-0.92151802
+0.62737155
+-0.83950408
+-0.88441195
+0.94266641
+-0.50884151
+0.05777299
+-0.99233247
+-0.74563709
+-0.02927625
+0.39950180
+-0.45465952
+0.23492289
+0.30496323
+0.46970809
+-0.42884344
+-0.60824785
+-0.39886844
+0.56790900
+-0.42561853
+-0.45143217
+0.15491009
+0.54326856
+-0.83711177
+-0.50958696
+-0.48480362
+-0.91450970
+0.90973961
+-0.28248030
+-0.79553710
+-0.36398107
+-0.08423972
+-0.65897053
+0.42579734
+0.97840393
+0.72494745
+-0.19412816
+0.35855973
+-0.53849104
+0.75951469
+-0.93275622
+-0.10065651
+0.48210776
+0.95840251
+0.94759452
+-0.62699172
+-0.67371693
+0.15621352
+0.63796997
+-0.02239144
+-0.75764477
+-0.89248467
+0.99066949
+-0.95664273
+-0.10058695
+0.06681180
+0.61338818
+-0.21749467
+0.94059765
+-0.54207787
+-0.19982409
+0.21369219
+0.78995323
+0.54326602
+0.74199129
+-0.53421114
+-0.74136084
+0.39245493
+0.01166990
+0.78943999
+-0.86122825
+-0.26848310
+-0.49004375
+-0.42548981
+-0.83193112
+0.05303149
+0.06779140
+-0.51317372
+-0.15681784
+-0.18333214
+0.56115733
+-0.08826405
+0.59347482
+0.16999862
+0.02634250
+0.23428815
+-0.41846108
+0.82019985
+0.68056287
+-0.00453632
+0.72444675
+-0.26227462
+-0.35162782
+0.58915136
+0.54962765
+-0.73772807
+0.10868114
+-0.03234869
+0.36985566
+-0.04571777
+0.59588287
+-0.00987464
+-0.46920525
+-0.99499488
+0.23201965
+0.61767130
+-0.24000060
+-0.35267865
+0.58332028
+-0.34909361
+0.09122560
+-0.80706592
+0.32446439
+0.49810574
+0.56611966
+0.03184586
+-0.67942741
+0.46858013
+-0.34879111
+0.22375274
+0.67769800
+0.87468433
+0.83889038
+0.73771188
+0.77423035
+0.88943486
+-0.95265999
+-0.05652457
+-0.19352160
+-0.50591563
+0.91437016
+0.88829076
+0.18141944
+-0.60971322
+-0.67558737
+0.56273394
+-0.78029551
+-0.65732887
+0.66257097
+-0.72924941
+0.11722622
+-0.92106479
+-0.29079972
+-0.06591134
+-0.01425638
+-0.22296054
+0.05411950
+0.76184226
+0.57059206
+-0.29053582
+0.59920162
+-0.79915448
+-0.43411773
+0.94194806
+0.37909305
+0.19272423
+0.15748739
+0.71084571
+-0.11178923
+0.70897090
+-0.48128837
+0.41786218
+0.76835155
+-0.68095064
+-0.55250391
+0.99256957
+-0.13285792
+-0.68721405
+0.94002426
+0.66928840
+-0.74212092
+-0.81094931
+0.56572700
+0.59256017
+-0.14541179
+-0.64043313
+0.63456631
+-0.36495274
+-0.04673439
+0.47842097
+0.93634140
+0.41667676
+-0.19465506
+0.20745718
+0.78935266
+0.21754599
+0.24293494
+0.65899801
+-0.35054415
+0.39605010
+-0.49788815
+0.32425880
+0.51915205
+-0.44865543
+-0.19404143
+-0.15823102
+-0.43934095
+0.42896509
+-0.18285501
+-0.60163370
+-0.20854044
+0.81135905
+0.49433827
+0.49836469
+0.43228436
+-0.83074047
+0.87064636
+-0.96694132
+-0.23861885
+-0.17462707
+-0.17606276
+0.98216820
+-0.69503200
+-0.71751902
+0.91686070
+-0.18158334
+0.77936018
+0.18132699
+0.32225049
+0.97503626
+0.40524673
+-0.80513243
+-0.86639430
+0.26146257
+0.61627591
+-0.74006739
+0.42762005
+0.54097223
+0.32575715
+-0.80998488
+0.59404171
+-0.28508556
+-0.71776116
+-0.74759457
+-0.73876062
+-0.37109077
+-0.04791892
+-0.26301938
+0.27624428
+0.41997612
+-0.80021296
+-0.09195179
+0.96734047
+-0.30184358
+-0.87534060
+-0.31956267
+-0.66724992
+-0.39521146
+0.66820133
+-0.49680960
+-0.75271703
+0.62727690
+-0.26524222
+-0.91835624
+0.58080924
+0.79202819
+0.03779316
+-0.58265409
+0.19086981
+-0.66431811
+0.56952846
+0.15426886
+0.92504799
+0.29342651
+-0.43703884
+-0.68973479
+0.57524109
+-0.87651043
+0.25478888
+0.64463866
+0.13654733
+0.97378886
+-0.24926114
+0.48724210
+-0.56689030
+-0.52299398
+0.95734358
+0.44048285
+0.90381455
+-0.67162871
+-0.23170251
+-0.59324777
+-0.54515126
+0.43909812
+-0.01298147
+0.64844358
+0.85915840
+0.24812174
+0.51688600
+-0.23475033
+0.06793129
+0.35099435
+-0.18500036
+-0.38346630
+0.43551195
+0.13637781
+-0.95861892
+0.98605263
+-0.27328253
+0.22013223
+-0.00784814
+0.78705788
+0.34911573
+0.80250335
+-0.12719923
+-0.16231203
+0.48778105
+-0.91533993
+0.86950672
+0.94576752
+0.64059544
+-0.15619230
+0.53751087
+0.99709296
+0.34557080
+-0.35613650
+0.06596100
+0.82028961
+-0.51176998
+0.02890015
+-0.12699014
+-0.09307134
+-0.68717155
+0.17856860
+0.70983243
+0.11641026
+-0.96881856
+-0.20498776
+0.41724968
+0.11033452
+-0.72338411
+-0.81967939
+0.57860100
+0.31745815
+-0.72602201
+-0.51753080
+0.01612735
+-0.22049195
+-0.28647804
+-0.95976550
+0.78821695
+0.53037620
+0.59144247
+0.05894232
+-0.39069092
+0.61767602
+0.73143339
+0.84526730
+0.15708673
+0.70273507
+0.19061935
+-0.82107450
+-0.11452031
+0.20354378
+0.15620863
+-0.81703310
+-0.02522719
+0.25473285
+-0.53674498
+0.26669610
+0.59013033
+0.14593756
+0.64888930
+0.81146955
+0.42088079
+-0.80052802
+-0.45143670
+-0.59259224
+-0.57015923
+0.97829688
+0.16983271
+-0.50775653
+0.61053836
+-0.31659335
+0.90462732
+0.67119610
+-0.53312221
+0.18458629
+0.15228415
+-0.94168266
+0.04835916
+0.73024797
+0.18586934
+0.48561847
+-0.59661898
+0.36202455
+-0.06725848
+-0.86127456
+-0.91089550
+-0.86446647
+0.14420152
+0.57144189
+0.90762639
+0.16192043
+0.58950722
+-0.28793770
+0.76606882
+-0.08538479
+0.59550977
+-0.46933657
+0.62713158
+0.92467344
+-0.56328124
+-0.93669232
+-0.63391250
+0.43335354
+-0.46981829
+0.03287864
+0.14713645
+-0.45128852
+-0.87882479
+-0.02058244
+0.30954921
+0.78810143
+-0.01694888
+-0.97637819
+-0.70306283
+0.42779744
+-0.36232561
+-0.94005238
+-0.23204499
+-0.96773399
+-0.99277135
+0.91415957
+-0.80112981
+-0.60470935
+-0.80119848
+0.93674498
+-0.23637736
+0.21476206
+-0.94855024
+0.04183149
+0.01826898
+-0.26621785
+0.44624229
+-0.16710217
+-0.40970443
+0.42602898
+0.20749770
+-0.24628000
+0.61580076
+0.02706452
+0.29287798
+-0.50979342
+0.30914485
+0.43017876
+-0.77920149
+0.57659583
+-0.07462208
+-0.74303195
+-0.76814858
+0.01781943
+-0.19710733
+0.70925800
+-0.07197513
+-0.84644364
+0.27819057
+0.82303336
+0.66693650
+-0.89372133
+0.51797063
+-0.92765018
+-0.03651517
+0.40754775
+-0.13113505
+-0.43148640
+0.67102595
+0.20276533
+-0.86299272
+-0.86082698
+-0.20214876
+-0.53362905
+-0.97798099
+0.95737729
+0.51223320
+-0.75396536
+0.98980615
+-0.02034033
+-0.83037376
+0.71249167
+0.83681459
+0.03075382
+0.53264537
+-0.77988019
+0.67915268
+-0.38230475
+0.20009193
+-0.53156738
+0.56473044
+0.74252349
+-0.12721102
+0.21419918
+0.82521858
+-0.35003419
+-0.90401528
+-0.12788659
+-0.41062605
+-0.06944167
+-0.86001638
+0.35231596
+0.69786608
+-0.62337890
+-0.74066771
+0.97185989
+-0.11446777
+-0.79842841
+-0.75224022
+0.80446544
+0.31382078
+0.05946509
+-0.11318385
+0.00242851
+-0.20101054
+0.53670008
+-0.49536109
+-0.94525549
+0.86709039
+0.60034538
+0.06608313
+-0.68126147
+0.86559017
+0.46757381
+0.36296741
+-0.91067925
+0.67744863
+-0.41934818
+-0.76214422
+-0.89633718
+-0.26425301
+0.87705535
+-0.73016899
+0.70333877
+0.74364089
+0.61357079
+-0.74875886
+0.51047180
+-0.25689383
+-0.34744620
+0.72541575
+0.81478451
+0.60917293
+-0.66870077
+0.46792931
+0.79230234
+0.62527960
+0.34877978
+-0.63248301
+-0.16990999
+0.10725327
+-0.57932537
+0.89763011
+-0.70820596
+-0.38715192
+0.13646799
+-0.28195977
+-0.69739955
+-0.37043427
+0.84239913
+-0.08449198
+0.44404569
+-0.94192772
+0.07444822
+-0.58373067
+0.62030927
+-0.55604644
+-0.17013521
+-0.75305902
+0.69670859
+0.30378832
+0.68825083
+0.88728807
+-0.15612624
+0.41488322
+-0.48270348
+-0.84400899
+0.71210790
+-0.89016651
+0.76519157
+-0.12080640
+0.06016610
+-0.17297539
+0.03539243
+-0.30664458
+0.75690449
+0.62401713
+-0.47956302
+-0.23877158
+-0.48274820
+0.63517159
+-0.03286302
+0.66380600
+0.14259265
+-0.42961623
+0.11492910
+-0.92789907
+-0.41355456
+-0.18316016
+0.99808051
+0.22839838
+-0.93925361
+-0.18733054
+-0.39556501
+0.80044751
+0.23491540
+-0.78631689
+-0.26236130
+0.55052831
+0.17870440
+-0.59992558
+-1.02830664
+0.02184237
+0.88832619
+-0.46170382
+-0.88066566
+-0.91416887
+0.67700129
+0.45124396
+0.81572013
+-0.06679162
+0.51597354
+-0.33911662
+0.16446473
+0.66358227
+-0.63273998
+0.64647136
+0.38081772
+-0.68508704
+0.18600363
+-0.31280426
+-0.95480373
+-0.79756912
+0.57748999
+-0.65509027
+0.00881458
+-0.47294202
+-0.61744656
+0.14859264
+-0.24103111
+0.45278331
+-0.23013278
+-0.81296989
+0.21387829
+-0.84680086
+0.74226070
+-0.82769545
+0.45139427
+-0.44812657
+-0.89757136
+-0.71292467
+-0.28733518
+0.73859536
+0.04893948
+0.74984807
+0.14730943
+0.37470803
+-0.14351349
+0.92223244
+-0.68114778
+-0.20769236
+-0.80561248
+-0.48396094
+-0.95866210
+0.00485051
+0.13741852
+-0.21142020
+0.07008392
+0.96943073
+-0.36964887
+-0.38159917
+-0.71630325
+-0.82068456
+0.67358650
+0.29553718
+-0.57472815
+-0.70899066
+-0.94430067
+0.58195023
+0.55751056
+0.48260208
+-0.69849547
+-0.68469501
+-0.17176823
+0.17401332
+0.66133202
+0.59008405
+-0.34599864
+-0.46462406
+0.63598508
+-0.65428902
+-0.33268388
+-0.25264425
+-0.94648324
+-0.33472162
+-0.96928699
+-0.16497978
+0.34883065
+-0.93891567
+-0.40458983
+0.17360123
+-0.89026999
+-0.24500538
+0.11263527
+0.96666676
+0.56711853
+-0.92463986
+-0.23172723
+0.18099742
+-0.91723233
+0.47897347
+-0.91026894
+-0.47462882
+-0.24772178
+-0.00246596
+0.47202361
+-0.08026364
+0.31596024
+-0.90430132
+0.33353871
+-0.95118231
+-0.38572832
+0.61020207
+-0.50279851
+0.48578698
+0.46929432
+-0.00818821
+0.93789072
+-0.68869741
+0.39310926
+-0.88949449
+-0.14729079
+-0.69025353
+-0.26306217
+-0.90818229
+0.04491523
+-0.40610431
+0.10696445
+0.56903389
+0.90782997
+-0.79299289
+0.97010628
+0.72010306
+0.16456951
+0.12125458
+-0.78917647
+0.93596503
+-0.20028681
+0.92992293
+-0.84910957
+0.51259623
+-0.20529558
+-0.29699668
+0.40477671
+0.05613602
+0.51500652
+0.01064059
+-0.21029109
+-0.76064400
+0.52899630
+-0.09933575
+-0.88959043
+0.46641609
+-0.41883402
+0.65089847
+0.33084450
+0.04606005
+0.46496927
+-0.39196111
+-0.81295302
+0.92244015
+-0.11693002
+-0.95903048
+0.13535584
+-0.70793091
+-0.72753747
+0.43487939
+0.36805320
+-0.67602594
+0.35485990
+-0.89499328
+0.52959578
+-0.12703720
+0.50770582
+-0.98532738
+0.67879568
+0.62831697
+0.77680480
+0.74540387
+-0.00362121
+0.22422824
+-0.72163634
+-0.12955716
+-0.77943134
+0.72512450
+-0.97374726
+-0.95194613
+-0.05526619
+0.64561556
+0.79874913
+0.13549352
+0.28468763
+-0.39542778
+-0.94292282
+0.35434128
+-0.72558950
+-0.92887946
+0.97988832
+-0.51733441
+0.28949458
+-0.91520625
+0.36225419
+-0.31903341
+-0.85779107
+-0.55868673
+0.39831183
+-0.96013946
+-0.36183274
+0.24053954
+0.26038203
+-0.75269929
+-0.88684759
+0.19246358
+0.92325453
+-0.36884852
+0.11431893
+-0.15070519
+-0.13355560
+0.99594434
+0.14923751
+0.47789078
+-0.13040039
+-0.02488957
+0.39818669
+0.12769568
+-0.13342551
+0.74433381
+-0.21865807
+-0.54698844
+0.94040987
+-0.21591196
+0.06809649
+0.57204090
+-0.39530075
+-0.23792144
+-0.24393249
+-0.88085236
+-0.61541399
+0.10618734
+-0.11407210
+-0.74290148
+0.36705055
+0.53177600
+0.34373765
+-0.26772579
+-0.96696825
+-0.86176795
+-0.66830121
+-0.55009545
+0.52257165
+0.09005342
+-0.61477346
+-0.76665363
+0.69899468
+-0.94399081
+0.45519870
+0.33319330
+0.87679521
+-0.00237374
+-0.75297360
+-0.44560912
+-0.93420011
+-0.08431717
+-0.07376615
+0.26747409
+0.96034514
+-0.64745977
+-0.70395349
+0.34101097
+-0.38602742
+0.78564657
+0.34579420
+-0.90650589
+-0.73052800
+-0.50517226
+-0.56235496
+-0.96153842
+-0.06970879
+0.80981993
+0.23553758
+0.46543278
+-0.87092714
+0.29128743
+-0.81316437
+0.93600159
+-0.10376197
+-0.08321532
+-0.60847911
+-0.07416725
+-0.22428942
+-0.17238106
+0.21554599
+0.43506125
+-0.28843726
+0.06452442
+0.22154808
+0.26785131
+0.44585710
+0.78626853
+-0.55610178
+-0.88999338
+0.11112200
+0.96364877
+-0.01979449
+-0.52445597
+0.66679824
+-0.84861953
+-0.68208537
+-0.33259845
+-0.21664622
+-0.54220706
+-0.46019976
+-0.97913758
+0.53620806
+0.60966243
+0.85952928
+-0.92954727
+1.00100871
+-0.68000238
+-0.75641254
+-0.73974992
+0.89496934
+0.17889907
+-0.74229144
+0.78435086
+-0.21439985
+0.38338444
+0.76750443
+0.30999379
+0.49331312
+-0.20129312
+0.96475096
+0.71530354
+-0.57245489
+0.69328496
+0.06323614
+-0.83167836
+0.96823662
+0.96456479
+0.98539439
+-0.70925556
+0.57832003
+-0.37892888
+-0.70407426
+-0.04512703
+-0.51111063
+0.13814080
+0.71989727
+0.84798741
+0.63934851
+-0.24423772
+0.48769867
+0.44226277
+-0.65835100
+-0.59934822
+0.69685113
+0.27785337
+0.20711744
+-0.85425711
+-0.83145706
+0.44630766
+0.52970493
+0.91294372
+-0.66907012
+0.71555710
+0.56646013
+0.98197424
+-0.75701143
+0.29024601
+0.15514505
+0.37636912
+-0.73204780
+-0.42889380
+-0.18037111
+0.80760646
+-0.05511338
+-0.80967599
+-0.71211195
+-0.39199406
+0.98031569
+0.29662943
+-0.85545558
+0.63542616
+0.31734419
+0.02694857
+-0.34435672
+0.61414230
+0.70599854
+0.75459647
+-0.64150983
+-0.35479409
+0.75898147
+0.49188161
+0.69916415
+0.14636219
+-0.30198228
+-0.28350240
+0.83507383
+-0.05379319
+0.33195806
+0.86201835
+-0.89342327
+-0.10671687
+-0.67284733
+-0.40520000
+0.82354963
+-0.91461662
+0.79933834
+0.12151062
+-0.44462621
+0.10892975
+-0.43841857
+-0.15695083
+0.68695498
+0.38204741
+-0.24478954
+0.18829823
+-0.40284675
+0.80912876
+0.51362956
+-0.37720460
+-0.60523912
+0.48797381
+-0.61757219
+-0.89342610
+-0.94481355
+-0.25091952
+0.56689131
+-0.77160002
+0.95229566
+-0.73477903
+0.69327641
+0.41627979
+0.92568409
+0.58759069
+-0.21158552
+-0.58717108
+-0.77831970
+-0.59310052
+-0.82737839
+0.61732936
+0.75563002
+-0.25772631
+0.92905855
+0.55845785
+-0.77576615
+-0.62715456
+-0.23984396
+0.36797726
+0.26415420
+-0.10775244
+-0.69724587
+-0.73661098
+0.19371438
+-0.90866529
+-0.01925266
+0.86567068
+0.84635067
+0.18391836
+0.80933475
+0.91633391
+-0.91973050
+0.94685113
+0.17984557
+0.82554303
+0.65615783
+-0.99871016
+-0.19531761
+0.91798086
+-0.29201027
+0.01893497
+0.90628055
+-0.62650996
+0.82854891
+-0.12982075
+0.54380331
+-0.21962435
+-0.43650408
+-0.26713514
+0.93876529
+0.28216459
+-0.39332383
+0.58164547
+0.26632249
+0.69697506
+0.26242623
+0.80988382
+-0.55981160
+-0.02172989
+0.17737115
+0.54077639
+0.69584454
+0.77630470
+-0.35250950
+-0.71684437
+-0.85092434
+0.58210682
+0.99185567
+-0.00696564
+-0.62599092
+0.60929467
+0.10686243
+-0.76262849
+-0.47227794
+-0.53078743
+-0.46980801
+0.45238482
+0.70417910
+0.78267449
+-0.44393145
+-0.37220417
+0.35210849
+-0.43662693
+-0.81415088
+0.25881643
+0.68028269
+0.83212875
+0.87183528
+-0.85966416
+-0.49569249
+0.61641695
+-0.73215099
+-0.11019363
+-0.90325423
+-0.34063273
+-0.13425192
+0.86808192
+-0.02577520
+-0.44545817
+0.28722489
+-0.11022703
+-0.41624039
+0.14798151
+0.13052499
+-0.14120882
+0.88428757
+0.02200281
+0.47041338
+-0.02250886
+-0.86217832
+-0.58453883
+0.28982247
+0.60014592
+0.72162986
+0.36052224
+0.78159094
+-0.43758505
+-0.37212673
+-0.88044105
+-0.43006804
+-0.47380740
+-0.34321518
+0.25579071
+-0.66032812
+0.24761009
+-0.39053851
+-0.09637028
+0.92121470
+-0.83635463
+-0.88312377
+-0.42987943
+-0.54630718
+0.56526697
+0.82576489
+0.87986636
+0.80434895
+-0.82821868
+0.84339535
+0.28727055
+-0.88848543
+0.70857728
+-0.38127750
+0.23681641
+-0.60459763
+-0.36943018
+-0.81817536
+-0.99673309
+-0.86756307
+-0.22450256
+-0.16444069
+-0.94110362
+-0.41976845
+-0.76049341
+0.79805791
+-0.53113532
+0.87896073
+0.21760702
+-0.94976077
+0.94726551
+0.93566120
+-0.09480757
+0.96818972
+0.12063074
+-0.71215957
+-0.08351958
+0.04214883
+-0.75006516
+0.35241795
+0.24402189
+-0.56624532
+-0.98615120
+-0.48048270
+-0.58790362
+-0.68231934
+0.82844245
+-0.85039598
+0.83624506
+-0.41409880
+-0.76135175
+0.52942073
+0.63222623
+0.14234912
+0.33611023
+-0.73364490
+-0.32546484
+-0.90055490
+-0.80685756
+-0.24424356
+0.95507002
+0.77465975
+0.45946646
+-0.74218699
+0.71051371
+0.53180730
+-0.61592934
+-0.93158989
+-0.40230495
+0.74975014
+0.38354766
+-0.64408404
+-0.63121536
+0.28829861
+0.86522138
+-0.28364998
+0.99310148
+-0.55392978
+0.05702031
+0.06422222
+-0.19040942
+0.75109470
+-0.88923451
+0.94331813
+-0.49273127
+0.81651485
+0.81846869
+-0.41166061
+-0.01030993
+-0.31571615
+0.53966808
+-0.34796172
+0.45688617
+-0.92565401
+-0.45030600
+0.70678043
+-0.54863247
+-0.40298241
+-0.91770389
+0.97698748
+0.73827422
+0.37403142
+-0.75107971
+0.07482457
+-0.24518239
+0.29704106
+0.01522756
+-0.00835323
+0.13817394
+0.74881113
+0.10408497
+-0.38476247
+0.88175654
+-0.35047066
+0.00780547
+0.13738096
+-0.15352410
+-0.12763220
+-0.45870763
+-0.14256144
+-0.78596590
+0.13278198
+0.92133713
+-0.90926802
+0.72734809
+0.64122379
+0.95311940
+0.12832105
+-0.55104133
+0.95505977
+0.03745151
+0.19859087
+0.08388877
+0.18536103
+-0.01449138
+0.15442944
+-0.84696209
+-0.40282702
+0.88189828
+-0.09838873
+0.34993601
+-0.15825135
+-0.98507982
+-0.23720825
+-0.95595141
+0.02631307
+-0.21842283
+-0.34800446
+-0.32830757
+-0.98918295
+0.15173829
+-0.40622294
+0.30425632
+0.89293420
+0.23195958
+-0.85081980
+0.34089839
+-0.47708106
+0.03605866
+0.98446965
+0.56779265
+0.47264540
+-0.55520853
+0.18290544
+-0.84948801
+0.96219409
+0.21548927
+-0.66003934
+0.16489363
+-0.66584465
+-0.99148379
+-0.41993272
+-0.77132086
+0.37718654
+-0.11028481
+-0.42815369
+0.98541796
+0.58263099
+0.21700156
+0.39748192
+0.47891951
+0.10980964
+0.72519517
+-0.29371607
+-0.25600427
+0.01498115
+-0.11822623
+0.25330210
+-0.41635102
+-0.51664913
+-0.24124241
+0.80639696
+0.50665283
+0.84305990
+-0.97808979
+-0.48569804
+0.41681039
+0.21142137
+-0.22725827
+-0.66107884
+0.25033152
+0.67473197
+-0.76196910
+-0.29908359
+0.92325056
+0.87755525
+0.59735584
+0.27091753
+0.66234159
+0.30714869
+-0.28548300
+-0.19859922
+-0.41149414
+0.48348057
+0.94482124
+-0.29683709
+-0.49094367
+-0.27124232
+0.94465208
+0.00818038
+-0.02136904
+0.34275293
+0.97081184
+0.61956775
+-0.11931998
+0.94430196
+-0.83661929
+-0.66969147
+-0.51167113
+0.81337595
+-0.72810724
+-0.22212499
+-0.66679686
+-0.47921050
+0.57438564
+0.74755144
+0.17221880
+0.84547567
+-0.91914094
+-0.18048394
+-0.37050319
+0.80196989
+0.19773567
+-0.44192576
+-0.89156510
+0.53260636
+-0.23730326
+-0.35664564
+-0.66315609
+0.24633741
+0.32510388
+-0.18503332
+0.32219934
+0.47487390
+-0.24335551
+0.55596197
+0.64369750
+0.33626568
+-0.11061847
+0.39651990
+-0.64321333
+-0.61101517
+0.45817196
+0.18537724
+-0.22652811
+0.44958568
+0.29168987
+-0.36093158
+-0.93668513
+0.14634656
+0.57010736
+-0.41316810
+0.84249311
+-0.16674716
+-0.61338188
+0.17077219
+0.13822268
+-0.72372515
+0.58324882
+-0.61955006
+0.48721717
+-0.51646058
+0.81991720
+-0.89338573
+0.32837362
+-0.75787476
+0.90192240
+-0.68309879
+0.53762860
+-0.08578719
+0.82966347
+0.11852765
+-0.47786808
+0.26591828
+-0.86693766
+-0.26040164
+0.16987944
+0.87467651
+0.29088212
+0.48212264
+0.22358055
+0.49552609
+0.98401199
+0.66105504
+0.23465652
+-0.71619052
+0.51775752
+0.60593907
+0.69024329
+0.96862208
+-0.90402586
+0.29975569
+-0.02717328
+-0.93064735
+0.89679079
+0.76528300
+-0.51065789
+0.32212670
+-0.01137896
+-0.75242458
+-0.71334402
+-0.06939234
+0.46443507
+0.08535211
+-0.16330350
+0.85897678
+-0.18364417
+-0.19255961
+0.68811645
+-0.57953721
+0.67745033
+0.31807265
+-0.86505476
+0.34989851
+0.89234883
+0.65405504
+0.55427010
+0.26110719
+-0.44050105
+-0.70235661
+0.77826747
+0.62181361
+-0.74393495
+0.51235967
+-0.97579545
+0.95114103
+0.27752055
+-0.83412445
+0.67226396
+0.61198949
+-0.94585240
+0.98275857
+-0.13127303
+-0.37724673
+-0.33804160
+-0.97629576
+-0.08406051
+0.52061775
+-0.98248961
+-0.88363710
+0.20774633
+0.07662226
+0.78174504
+-0.46433392
+0.62869426
+-0.14804791
+0.55729405
+-0.73584242
+-0.21255338
+-0.04547250
+0.65164238
+0.18915420
+-0.74996391
+-0.00426173
+-0.57021584
+0.59564089
+-0.18418340
+-0.13641351
+0.17197753
+-0.41135190
+-0.65711278
+-0.12728931
+-0.07824167
+0.44674110
+0.76194296
+-0.43466491
+0.57847315
+-0.94286816
+0.62618657
+-0.48120447
+0.16037910
+-0.17977318
+-0.97520445
+-0.72421788
+-0.79314114
+-0.00501306
+-0.22006525
+0.55322297
+-0.63303305
+0.35598115
+-0.17323032
+-0.45583284
+0.52236048
+-0.06008778
+-0.60335816
+-0.30035550
+1.06248009
+-0.16596031
+-0.90747864
+-0.06143490
+-0.49145568
+-0.89359379
+-0.31978499
+-0.94035558
+-0.44894029
+0.01115718
+-0.92803496
+-0.58644446
+-0.86075655
+-0.86547659
+-0.35661460
+-0.60572745
+-0.40261175
+0.94252657
+0.07365873
+0.84455127
+-0.30018776
+-0.93680242
+-0.31359164
+-0.52916452
+-0.38042449
+0.94211031
+-0.26263303
+0.15407914
+0.06696112
+-0.58277209
+-0.59054588
+0.88490810
+-0.31355163
+-0.19993658
+0.61424854
+-0.01809917
+-0.53947878
+-0.75632840
+1.02650280
+-0.53023073
+-0.54209882
+0.86362532
+-0.80568422
+-0.67984114
+-0.50200102
+0.05361737
+0.26951014
+0.42197602
+-0.34896455
+-0.99063887
+-0.91199585
+0.53977823
+0.62475308
+0.63213059
+-0.79621621
+-0.57641244
+-0.63682865
+0.09986767
+0.99855287
+0.65320709
+0.74954829
+-0.67767121
+0.00564928
+-0.86477485
+-0.43131067
+0.21414737
+-0.58942304
+-0.73488475
+0.61707115
+0.37547966
+-0.70162118
+-0.36203036
+0.33625786
+0.40864293
+-0.18955337
+0.21143825
+0.34090187
+0.28839209
+-0.57672463
+0.81054899
+-0.42540109
+-0.58692768
+-0.54258337
+-0.44376468
+0.68755962
+-0.02664755
+-0.56286675
+0.12276394
+0.40219404
+0.80634813
+0.60666646
+-0.52102885
+0.35298211
+0.48811142
+-0.16802996
+-0.30644227
+-0.52748217
+0.78362273
+0.23881217
+-0.58438311
+-0.07186668
+0.20195824
+-0.51782577
+0.39029421
+-0.20932156
+-0.01218972
+0.45545020
+-0.33654801
+-0.54965680
+0.08921589
+-0.52492626
+-0.02831393
+1.01536369
+-0.29890588
+-0.85713855
+-0.55095812
+0.50879980
+-0.80960455
+1.00845115
+0.95691137
+-0.28269521
+0.72227103
+-0.91170884
+-0.72402691
+0.09793170
+0.49481398
+-0.71795051
+-0.14810418
+0.11559211
+0.10960580
+-0.80331441
+-0.89811091
+0.89097010
+-0.88329913
+-0.99350131
+0.50594295
+-0.03280464
+0.94130087
+-0.04148380
+-0.89018207
+0.83660054
+-0.29291845
+-0.70181360
+0.01471761
+-0.03155802
+0.08905184
+-0.75397084
+0.82083059
+-0.22156683
+-0.49331299
+-0.59295547
+-0.44253283
+0.34668467
+0.47616356
+0.39434167
+-0.72655323
+0.98342656
+-0.35780220
+-0.89718926
+-0.23604767
+-0.38482023
+-0.96760248
+0.33752753
+0.03989760
+0.63867460
+-0.96708137
+0.74848114
+0.97566506
+-0.70004590
+-0.28791017
+0.46830965
+0.25075010
+0.72966863
+0.72490145
+0.07650648
+-0.53258508
+0.09985789
+-0.61526710
+0.65072334
+-0.07454602
+-0.56297313
+-0.29013311
+0.52977382
+0.21403868
+-0.16347773
+-0.92276776
+-0.25978014
+0.49732057
+-0.57141661
+0.80494106
+0.83122827
+0.94052246
+-0.57193880
+0.28872068
+0.55209576
+0.70720393
+-0.65219659
+-0.33127219
+-0.70965755
+0.77866301
+0.08855034
+0.53653053
+0.09941071
+0.05822577
+-0.06179525
+-0.80119467
+-0.35188062
+-0.01542688
+-0.26357058
+-0.22044018
+-0.13717847
+-0.61832893
+0.15655427
+0.34806841
+0.70012759
+0.54982335
+0.82972320
+-0.71739714
+0.91560027
+0.07257820
+-0.70158018
+-0.36352716
+-0.05062316
+-0.38215658
+-0.44085210
+0.12636337
+-0.62562715
+-0.44464750
+0.33371968
+0.09831389
+0.79279092
+-0.40222600
+0.98415222
+-0.98476860
+-0.05181954
+0.85010993
+0.24052686
+0.87658021
+-0.04267052
+-0.52874167
+0.20217539
+0.41084753
+-0.21810678
+-0.96351537
+0.03479134
+-0.81981943
+-0.29643603
+-0.87515636
+-0.71986583
+-0.99292920
+0.76605866
+-0.78989178
+0.81663836
+0.54642599
+-0.95984932
+-0.09240788
+0.78951753
+0.99407588
+0.19728209
+0.20871724
+0.42013947
+0.82491279
+-0.44136518
+-0.58265395
+0.06137788
+0.55798443
+-0.19820861
+0.22639901
+0.67755139
+0.90309686
+-0.89140194
+0.06289802
+0.85196073
+0.74567164
+-0.61861017
+0.36521105
+0.85214123
+-0.44649595
+0.51337461
+-0.04988892
+0.65201241
+-0.09140619
+-0.58105899
+-0.46354499
+-0.10651691
+0.90670026
+0.85224591
+0.22249745
+-0.45434892
+-0.39563837
+0.59641252
+-0.66497562
+0.87260258
+0.02217091
+0.47702135
+-0.08272329
+-0.86071680
+-0.06450682
+-0.31448883
+0.92272863
+-0.35062438
+-0.56608995
+-0.24647485
+-0.21080374
+-0.10809717
+0.30637091
+-0.19086032
+-0.44998682
+0.35651166
+0.62173737
+-0.49687996
+0.10622269
+-0.87156860
+-0.43436186
+0.35492444
+0.46330923
+-0.80368555
+0.00562346
+-0.72167656
+-0.45665738
+-0.71058501
+-0.11342125
+-0.60144441
+-0.63861261
+-0.55996721
+0.92706461
+0.07347835
+0.90347690
+0.29457037
+0.19165452
+-0.34565882
+-0.42894531
+-0.73983884
+-0.27840326
+0.59717073
+-0.19301963
+-0.57466271
+0.47668321
+-0.18776967
+0.47802875
+-0.67832059
+-0.08722162
+-0.50333754
+0.95020412
+-0.06638164
+-0.07399908
+-0.02311865
+0.63200016
+0.90780898
+0.33643519
+0.23316062
+0.22641421
+0.27330540
+0.37600756
+-0.00124694
+0.87087295
+0.22877385
+0.76535116
+0.41467087
+-0.07757742
+-0.40609836
+-0.60614483
+0.34986935
+-0.16600365
+0.82545380
+-0.66900226
+-0.57295011
+0.82504715
+-0.84980929
+0.56092212
+0.67225468
+0.45068802
+0.93132770
+0.69948441
+-0.54098500
+0.38965712
+-0.93422234
+0.24668947
+-0.47611455
+0.58988132
+0.40413893
+0.62511242
+0.42629758
+0.55911113
+-0.56583007
+0.61789157
+-0.82880025
+-0.82097698
+-0.20984579
+-0.25651789
+-0.22793567
+-0.20411289
+-0.56115687
+0.59925437
+0.99745452
+0.31803262
+0.62985814
+0.88470685
+-0.14365160
+0.07068574
+0.81649804
+-0.43017858
+0.87860870
+-0.48974264
+-0.36823690
+-0.88195278
+-0.23598409
+-0.03196180
+0.45128942
+-0.32327086
+-0.33725595
+-0.17436635
+-0.37534446
+0.09911072
+-0.15624833
+-0.38293558
+-0.45483565
+0.66533971
+0.27847743
+0.01253569
+0.38392591
+0.73829687
+-0.73103988
+-0.55225641
+0.91948307
+-0.82395825
+-0.23992014
+0.99310195
+-0.39336443
+-0.38771343
+0.35426497
+-0.09484577
+-0.86250642
+0.91164970
+-0.08410680
+0.30481315
+-0.67300129
+-0.84391977
+-0.81403367
+0.01911581
+-0.01757091
+0.48559642
+0.22851396
+0.17779887
+-0.19055390
+-0.68529198
+-0.32423550
+-0.03411782
+-0.51864800
+0.01625478
+0.37770629
+-0.46556538
+-0.15955681
+0.42002773
+-0.91878862
+-0.73907423
+-0.29851919
+0.94712973
+0.68121195
+0.45444417
+-0.97252870
+-0.49120039
+0.94798350
+0.79093039
+-0.96507076
+0.48469234
+-0.74264506
+-0.70073083
+-0.77522312
+0.53132486
+-0.61873609
+0.13990498
+-0.48288316
+0.71756434
+-0.11569017
+0.23344982
+0.76150310
+0.22548497
+-0.50518808
+-0.18862391
+0.17042768
+-0.72141814
+-0.50411692
+0.59018874
+-0.08830041
+0.89194798
+0.13909686
+0.36873341
+0.20212960
+0.54765308
+-0.87867784
+-0.60552090
+-0.95270372
+-0.58646223
+-0.38747883
+0.36732936
+0.04002345
+0.75360477
+0.91602945
+0.61236441
+0.42358363
+-0.06957030
+-0.43722308
+0.15794253
+0.18454969
+0.51111746
+-0.07155240
+0.57887876
+-0.99127260
+0.50782871
+0.34266612
+0.82121837
+0.46566517
+0.66899234
+-0.74254613
+0.56527818
+-0.11137231
+-0.91815904
+0.82244724
+-0.88640811
+0.45505245
+0.89636574
+-0.34100724
+0.62396507
+0.54420036
+0.27208913
+0.80619945
+0.44923652
+-0.71522655
+0.17006826
+0.01578064
+0.62444434
+-0.56693188
+-0.87259259
+-0.97533828
+0.58650327
+0.10032167
+0.15775646
+0.61552916
+-0.26011515
+0.43173690
+-0.31009826
+0.52367472
+0.43280547
+-0.33485114
+0.34156478
+0.21059956
+0.97756601
+0.07845722
+-0.81448939
+-0.87685939
+0.08347234
+0.05255257
+-0.07936395
+-0.79628496
+-0.92993871
+0.94103600
+-0.68942802
+0.91471277
+-0.49261916
+-0.06819027
+0.86602065
+-0.71549694
+0.75775378
+0.63002008
+0.60467113
+0.04203107
+-0.20856767
+-0.60042920
+0.35060346
+-0.23841297
+0.56171462
+0.11405014
+0.87634878
+-0.32924640
+0.67511333
+0.23775698
+0.64638484
+0.19645200
+-0.23388100
+-0.03928267
+-0.03310725
+-0.81116698
+-0.52657146
+0.38771981
+-0.84816144
+-0.24657772
+-0.49785417
+0.63843725
+0.58517861
+-0.13157679
+-0.17347158
+-0.41425773
+-0.16576903
+-0.95606721
+0.91918011
+-0.41219009
+0.20151101
+0.79969685
+0.57980549
+0.53012085
+-0.99248689
+0.61034524
+-0.55205941
+-0.35615164
+0.76638508
+0.07642937
+0.92372489
+-0.66402623
+-0.93628494
+0.38946164
+0.78359520
+0.67604327
+-0.68290302
+0.01789033
+0.34416711
+0.17712343
+0.58173978
+-0.80809714
+0.58819091
+0.23971021
+0.23731411
+-0.82496171
+0.82287776
+-0.07568687
+-0.49675173
+-0.71459040
+0.15540838
+0.93043613
+-0.84046654
+0.34723735
+0.67939913
+0.59883225
+-0.94243512
+0.66882586
+-0.83194865
+-0.72702360
+-0.69677135
+-0.35930294
+-0.29862499
+0.60406411
+-0.37666857
+0.17456603
+0.95959008
+-0.58850881
+0.41627824
+-0.46040869
+-0.19071341
+0.62324798
+-0.38650310
+-0.46081090
+-0.59454182
+0.04326415
+-0.67134729
+0.07098711
+-0.43272454
+0.56279004
+-0.39715320
+-0.86331873
+0.04889584
+0.37765479
+-0.41909647
+-0.60689431
+-0.39300066
+0.74254465
+0.33140552
+0.05149901
+0.17870212
+-0.65858811
+0.28562140
+0.32416785
+0.20559883
+-0.41257691
+-0.61173481
+0.89240706
+0.10586011
+0.08191550
+0.79978859
+-0.11087364
+-0.12429148
+0.19843841
+-0.28394955
+-0.97913692
+0.48822963
+0.20989048
+-0.82959382
+0.31857324
+0.07024872
+0.69557524
+0.80100834
+-0.65024114
+0.20532751
+-0.16540414
+0.53625393
+-0.86678132
+-0.62876317
+-0.65073815
+-0.71558139
+-0.71602109
+-0.32946593
+0.45739090
+0.95681047
+-0.97326079
+-0.22417426
+0.02325153
+-0.47790742
+0.53564382
+-0.34924054
+-0.89506349
+0.33736753
+-0.77271761
+-0.27666140
+-0.89328881
+0.59228873
+-0.65187714
+-0.02822828
+-0.99963182
+0.51014459
+-0.21549678
+-0.82269490
+-0.88466273
+-0.60603377
+0.78609324
+-0.85179074
+-0.70797578
+-0.74067697
+0.47588408
+-0.69511166
+0.92999351
+0.03158391
+-0.17920220
+-0.93329807
+-0.92843614
+-0.15012848
+-0.16660041
+0.63704431
+0.03900635
+0.27938414
+0.79412794
+0.53210151
+0.85187948
+0.02800560
+-0.36719024
+-0.67094949
+-0.30088061
+-0.29649943
+-0.21309221
+-0.74728990
+-0.45877510
+-0.37303030
+-0.87568097
+0.43578589
+-0.10617238
+0.14931953
+-0.24500293
+-0.90648189
+0.70287704
+0.53351295
+-0.12620878
+0.98924971
+-0.08917785
+0.75755966
+0.90720856
+-0.20964074
+0.04133832
+-0.45688391
+-0.82536979
+-0.24055564
+-0.41087824
+0.66437304
+-0.59319416
+0.37256885
+-0.30046582
+-0.73179492
+-0.73364785
+0.03752995
+0.35487664
+0.21558297
+0.30828869
+0.33390856
+0.19009066
+0.88314342
+0.24848509
+-0.44930005
+0.13420892
+-0.16298342
+-0.80421641
+-0.00861722
+-0.64686859
+-0.38790619
+0.18448174
+-0.89874089
+-0.22935796
+0.33941615
+0.46821034
+-0.68962544
+-0.36052287
+-0.98841449
+-0.63131613
+0.25343180
+-0.80521314
+0.10143363
+0.44309235
+0.49856424
+0.98595846
+0.78927386
+0.89259446
+0.33907390
+-0.48894149
+0.12241948
+0.44832790
+0.32319736
+0.47683287
+-0.27462626
+-0.04237360
+-0.74946496
+0.64840841
+0.68952727
+0.28528392
+-0.81869194
+0.43370390
+0.69048965
+0.95381689
+0.56058598
+0.74548399
+0.64061666
+-0.60622975
+-0.57377663
+0.38518596
+-0.35974854
+0.26207328
+-0.38039190
+-0.09824115
+-0.36326891
+0.71587503
+0.39946127
+-0.63263020
+-0.39548725
+-0.70877841
+0.70668089
+-0.02983999
+-0.85489781
+0.36372864
+0.37406015
+-0.57333773
+-0.23157984
+-0.99310702
+0.27635169
+-0.92022478
+0.60567701
+-0.68654057
+-0.06667984
+-0.60910425
+0.73811126
+0.69648683
+-0.98492446
+0.34030724
+0.37847352
+0.93246150
+-0.33362943
+-0.01370335
+0.80140114
+0.76095438
+0.34104323
+0.28860819
+-0.74466553
+0.94923437
+-0.35840374
+0.47862124
+-0.39185786
+0.50856829
+-0.37060314
+-0.31065494
+-0.22327989
+-0.63018963
+-0.65881374
+-0.39347738
+-0.68088859
+-0.69007117
+0.25288641
+-0.08298810
+0.68471370
+-0.32331233
+-0.54886867
+-0.72874360
+0.12190080
+0.51466427
+0.43939115
+-0.98606462
+0.42762930
+-0.29611207
+0.28769933
+0.26047454
+0.90521933
+0.75458486
+-0.03567958
+0.34201134
+0.18751321
+-0.19572674
+0.27464633
+-0.44958665
+-0.44687330
+0.41575406
+-0.41203815
+-0.35551279
+-0.57092624
+0.68443568
+0.89450271
+-0.98555377
+-0.65142739
+-0.06149012
+0.94237641
+0.20232560
+0.76370488
+-0.07709931
+0.28189185
+0.89703457
+-0.28445262
+0.63627627
+0.60427008
+0.66225458
+-0.37434013
+-0.60948893
+0.20539588
+0.94733158
+0.17674078
+0.31384923
+-0.44799065
+0.30417807
+-0.03002669
+0.49333166
+0.28736472
+-0.20606278
+-0.41053781
+0.56296570
+0.96439167
+0.73617383
+-0.39600734
+0.77705772
+0.24115530
+0.30233417
+0.55801863
+-0.45150136
+0.55207374
+0.57577089
+0.93253344
+0.96398411
+0.06491028
+0.36518571
+-0.88328308
+0.63779256
+-0.06608337
+-0.88598092
+0.76993247
+0.95746151
+-0.11701651
+0.88107542
+-0.34501869
+-0.92112011
+-0.72927692
+0.53206280
+0.01206405
+0.03936892
+0.90117017
+0.05310182
+0.26586276
+-0.31892859
+-0.83726106
+-0.40977867
+0.78179613
+-0.41637815
+-0.85724148
+0.60053271
+0.93479736
+0.30771515
+-0.79151753
+-0.41876991
+0.62370145
+-0.70614410
+-0.11169815
+0.45709162
+0.71739598
+0.02878833
+0.90361559
+0.57952320
+-0.04869391
+-0.68970010
+0.59276315
+0.74168175
+0.33808821
+-0.63621212
+-0.58361011
+-0.52153427
+0.90592417
+-0.32534333
+0.64524826
+0.10336012
+-0.04548733
+-0.11143870
+-0.16807415
+-0.47868236
+0.38755300
+-0.95596323
+-0.19021190
+0.27644141
+0.45433236
+-0.85112792
+-0.76489216
+-0.94968009
+-0.86850089
+0.22450663
+-0.41040069
+-1.00830929
+-0.71869572
+0.53557453
+0.23083726
+0.90541503
+-0.82870176
+-0.24727444
+-0.41938840
+-0.87261241
+-0.90985985
+0.20832624
+0.36659394
+-0.21807658
+0.04746415
+0.74898190
+-0.70996070
+0.95350417
+-0.00008114
+0.73457244
+-0.24509887
+0.74376541
+0.73193355
+-0.97966153
+-0.07925264
+0.95221651
+0.35659768
+-0.52526532
+-0.65069598
+0.48003558
+-0.91371615
+0.09892971
+-0.89481062
+0.84065177
+0.51218185
+0.08151708
+0.54239819
+0.56841089
+-0.21408765
+0.32121809
+0.65670764
+0.82308113
+-0.85207712
+0.63235426
+-0.84800447
+0.17072444
+-0.96196466
+-0.10566348
+0.94088438
+0.61434234
+0.55431442
+0.72717177
+-0.22976782
+0.45407469
+-0.88073901
+0.84618347
+-0.29041997
+0.14251716
+-0.10539555
+-0.57882334
+0.84044466
+-0.63887840
+-0.13602882
+0.31099450
+1.00681418
+0.34935812
+0.46316733
+0.22157714
+0.48003624
+-0.92424694
+-0.70361786
+0.15483795
+0.90336744
+-0.21138013
+0.69664113
+-0.88878177
+-0.41807135
+1.00902085
+0.78207387
+-0.00398034
+-0.73508077
+-0.30219573
+0.51400108
+-0.91134148
+-0.67766022
+0.13934559
+0.65448541
+0.92374183
+0.49554552
+-0.69450205
+-0.09509914
+-0.24021150
+-0.23513777
+0.93366711
+0.51089832
+-0.00418028
+-0.55092111
+-0.51507192
+0.14010900
+-0.05918640
+0.37460564
+0.95656583
+-0.89886521
+0.07803548
+-0.38946451
+-0.22712583
+0.36956514
+-0.93546367
+-0.47816750
+-0.25344074
+-0.60543142
+-0.22581220
+0.02411395
+0.51618149
+-0.83442228
+-0.78405690
+-0.06677490
+0.29674414
+0.13898714
+0.26384670
+-0.62628829
+-0.09622851
+-0.16693791
+-0.65578745
+0.08237344
+0.67528408
+0.44151143
+0.45268128
+-0.69455454
+-0.98977362
+-0.32475824
+-0.86016085
+0.70958649
+0.83128974
+0.42426120
+-0.36746443
+0.89347712
+-0.22046990
+-0.17720841
+-0.86871972
+-0.83213440
+0.09924481
+-0.43603184
+0.78930309
+0.60407375
+0.86392133
+-0.14489267
+-0.97552811
+0.60881580
+0.37434035
+-0.73193396
+-0.45917501
+0.95899181
+0.66087392
+-0.67700305
+-0.52814361
+-0.00798268
+-0.19824497
+0.31727671
+-0.12311655
+-0.92429653
+-0.10998755
+0.60514756
+-0.84815952
+0.92603589
+0.58420925
+-0.85825345
+-0.86543720
+-0.23183991
+0.85794787
+-0.87918400
+-0.81041563
+-0.80104579
+-0.66913064
+-0.77757844
+-0.70848881
+-0.04899554
+-0.09689507
+0.55661442
+-0.73750461
+-0.16311507
+-0.93660096
+-0.32569378
+0.06894502
+0.23006936
+0.51847840
+-0.15539216
+-0.27446778
+0.63832208
+0.49056454
+0.20240493
+-0.59600807
+-0.61062536
+0.29234532
+0.46544023
+-0.17744401
+0.50794142
+0.24717550
+0.08624671
+0.51437550
+0.57042530
+-0.94736098
+0.68687744
+-0.65634083
+-0.12856729
+-0.89215842
+0.55794405
+-0.06155126
+-0.92033243
+0.37980082
+0.67476183
+0.99046915
+0.69977949
+0.58737199
+0.20654866
+-0.44037014
+0.80204092
+-0.63468319
+-0.06711130
+-0.48765847
+0.93598086
+-0.23462566
+0.38341760
+-0.05640667
+0.11068661
+0.69743143
+0.32010136
+-0.27927971
+-0.74881302
+-0.17729498
+0.78009638
+0.76778031
+0.72130791
+-0.29312745
+0.53360451
+0.50939584
+0.59526651
+0.27805637
+-0.13503100
+-0.50989802
+0.05400898
+-0.77218012
+-0.87799522
+0.49944859
+-0.19716021
+-0.10083831
+-0.18744934
+0.37675331
+0.58126380
+-0.64453396
+0.76512816
+0.50651359
+-0.48850138
+0.69405065
+-0.15837682
+-0.37449426
+-0.46743340
+-1.00292712
+-0.80468906
+0.90410841
+-0.24206248
+-0.16659862
+-0.81234430
+-0.29055079
+-0.48088474
+-0.49099003
+0.76131467
+-0.84209702
+-0.31692768
+-0.09811412
+-0.83612891
+0.52082836
+0.70177929
+0.64021807
+0.65706355
+0.46399063
+0.18316516
+0.59156422
+1.01468632
+0.58118864
+-0.19160210
+0.03944528
+-0.45765774
+0.40920416
+0.90254075
+0.37054855
+0.52478550
+-0.33255701
+0.58143332
+-0.64222285
+-0.72783497
+-0.51609304
+-0.44762243
+-0.56842614
+0.08785293
+0.32833706
+0.86122261
+-0.74425518
+-0.58500203
+0.12887051
+0.78188668
+0.03059031
+0.84051125
+0.85573971
+-0.61935231
+-0.05387082
+0.71656962
+-0.17827588
+-0.11850739
+-0.22862360
+-0.48722374
+0.28471577
+-0.18096273
+0.25746388
+-0.34390228
+-0.12644562
+-0.01057343
+-0.27286600
+-0.85620306
+0.81745342
+-0.14725302
+-0.67017907
+0.58484437
+-0.16495793
+0.56204326
+-0.41913130
+0.84787056
+0.46909926
+-0.02045989
+-0.01548122
+-0.77869571
+0.60520323
+-0.80177848
+0.23346141
+-0.22538850
+0.25343739
+0.31732958
+0.18284809
+-0.65822525
+-0.28497581
+0.21809494
+0.96508877
+0.86936995
+0.85932714
+-0.24702918
+-0.36858134
+-0.00354329
+-0.68250614
+-0.17095892
+0.44897738
+-0.13981591
+0.84602998
+-0.25882944
+0.09916593
+0.75222917
+-0.96749906
+-0.81454812
+0.33575763
+-0.84191975
+0.26853487
+0.28801384
+0.91100049
+-0.40788046
+-0.06229062
+-0.19214234
+0.85103600
+-0.00372324
+0.54041196
+-0.81924609
+0.04157408
+0.53822802
+-0.06479406
+0.15143780
+0.62756126
+0.00015033
+0.00349794
+-0.90217313
+-0.36457653
+0.87544771
+-0.04008974
+0.98367512
+-0.29433861
+-0.61466651
+-0.28252561
+0.95433152
+0.39670348
+-0.39949841
+0.27452539
+0.54939878
+0.64946198
+-0.05939215
+0.25371766
+0.86995125
+0.57535946
+-0.31395429
+-0.90443075
+0.69277871
+0.05562437
+0.98764420
+-0.98005771
+0.28736079
+0.74386454
+-0.32179904
+0.21547222
+-0.89259178
+0.73953533
+0.53298473
+0.43884766
+-0.09506375
+0.50319862
+0.91602993
+-0.01144570
+-0.02878779
+-0.96869798
+0.71861660
+0.47028983
+-0.98213151
+0.88987076
+0.33122396
+-0.09691811
+0.95854211
+0.44265819
+-0.57751098
+0.39590120
+-0.08506310
+-0.47054678
+0.26528847
+-0.99760100
+-0.40368438
+-0.74612114
+-0.88730059
+0.19375956
+0.44039583
+0.94375837
+0.25712621
+0.87738717
+-0.47233498
+0.48878217
+-0.13275194
+0.03970432
+0.55578387
+-0.06957114
+0.57947922
+-0.91632832
+0.94076383
+0.99683964
+-0.77288176
+0.75452614
+0.91319966
+0.30339682
+-0.61871400
+-0.99609158
+-0.30796134
+0.22373211
+0.84780931
+-0.47610897
+0.17628872
+0.92432117
+-0.80421074
+0.47602201
+-0.42954403
+0.90032375
+-0.63852391
+-0.49580944
+0.47251880
+0.54327214
+0.57896280
+0.03352106
+-0.76387151
+-0.23075825
+-0.70761144
+0.31929576
+0.64496017
+0.23016918
+0.37995160
+-0.97950080
+-0.42935497
+-0.62703627
+0.65311241
+0.67277098
+0.62951136
+0.01231968
+0.02031052
+-0.44411087
+0.96611714
+-0.93502241
+-0.80047977
+0.21231925
+0.51468420
+-0.13715887
+-0.59492868
+0.90016544
+-0.78182429
+-0.59704727
+-0.65031636
+-0.61026233
+0.43363833
+-0.76790959
+-0.87074374
+-0.20562607
+-0.49099922
+-0.05460542
+-0.67991781
+0.94294262
+0.40407574
+0.11971700
+0.41065061
+0.01184738
+-0.42340052
+-0.20100455
+-0.26925342
+0.89154492
+0.46153952
+-0.02689085
+0.15456710
+0.83701763
+-0.78570583
+-0.83672974
+0.01092660
+0.22257454
+0.65385732
+-0.68020467
+-0.32755728
+-0.71177214
+0.20089007
+0.76264133
+-0.27281498
+0.84460125
+-0.02960634
+0.87645883
+0.77356515
+0.14837443
+0.12936549
+0.66011638
+-0.77177955
+0.32335510
+-0.00788950
+0.94524751
+0.92400682
+-0.69165732
+-0.29736694
+-0.35310001
+-0.85068231
+-0.30417192
+-0.31028777
+-0.67897658
+-0.82565204
+-0.89898222
+0.44695747
+0.68504317
+-0.61011111
+-0.34505160
+0.45956855
+-0.72291347
+0.70529688
+0.67359235
+0.77601219
+0.76675222
+0.86859882
+0.64104731
+-0.14307627
+0.77215110
+0.66993086
+-0.84421615
+-0.78867411
+0.54483558
+-0.87912176
+0.77109168
+-0.29334855
+0.31357224
+0.89168665
+0.54928528
+0.26143270
+-0.20989209
+-0.94054048
+0.49708320
+-0.30860602
+-0.09385451
+-0.91968304
+0.13981814
+0.55211661
+-0.86893420
+-0.78778355
+0.78901975
+0.24001327
+-0.87111579
+-0.44251745
+-0.03458875
+-0.67780954
+0.09299743
+-0.44834056
+0.78349460
+-0.73642802
+-0.56974557
+-0.08172183
+-0.09043842
+-0.99876754
+0.30050353
+0.42132401
+0.39532614
+-0.54332700
+0.14614415
+0.01020658
+-0.88211122
+-0.44957834
+-0.47727829
+-0.42018569
+0.76218259
+0.87756932
+-0.38844520
+0.44970655
+0.91158438
+0.73591852
+-0.48254591
+-0.58611163
+-0.95524447
+-0.84816973
+0.64321363
+0.72329390
+0.66869056
+0.71121216
+0.89113927
+-0.63166574
+-0.98899421
+-0.47249651
+0.26587641
+-0.40714449
+0.74047983
+0.25958598
+0.82525361
+0.50826824
+0.41568327
+-0.67477971
+0.54451299
+0.80837774
+-0.38978297
+-0.05115557
+0.94295228
+0.78739727
+-0.47131103
+0.46291447
+-0.39151329
+0.70050526
+0.57809448
+-0.70014927
+0.71967256
+0.48744595
+-0.19533509
+0.93850911
+-0.63782457
+0.92018831
+-0.46470481
+0.70040488
+0.28335738
+0.32546937
+-0.24846053
+-0.09772837
+-0.40117496
+0.52540016
+-0.25228977
+0.65931082
+-0.58193767
+0.43244255
+0.55840194
+-0.61549541
+-0.31179750
+-0.01387829
+0.68121576
+0.28643060
+-0.16642004
+0.22178948
+-0.50155699
+0.93907571
+-0.13937497
+-0.67704090
+-0.77667627
+-0.03969890
+-0.40379781
+0.90355611
+0.15416229
+0.01768112
+-0.65980199
+-0.84252818
+-0.86022893
+-0.28709108
+-0.56417254
+-0.05548394
+0.32972443
+-0.88429542
+0.31873345
+0.08942926
+0.29051661
+-0.93028300
+-0.43540657
+-0.41241825
+-0.55673033
+-0.06897449
+0.30029643
+-0.36714923
+0.36258042
+0.06706393
+0.01944804
+-0.75666018
+-0.07398939
+-0.80588205
+-0.98178194
+-0.20621651
+-0.17351079
+0.95873058
+-0.88164006
+0.73651481
+0.03634751
+-0.96916448
+0.18147707
+0.82530141
+0.76501453
+0.06857574
+0.80441570
+-0.46660680
+0.75652385
+-0.33674812
+0.79462183
+-0.57069874
+0.61559105
+-0.44884366
+0.65634918
+0.78321612
+-0.59088773
+0.74824631
+0.16782260
+-0.45160186
+0.29069686
+-0.45559597
+0.13854659
+0.34988320
+-0.50827858
+0.18794692
+0.86687481
+0.45068753
+0.93858421
+0.63612568
+-0.88045526
+-0.37457585
+-0.04427427
+0.01293814
+0.10816979
+0.08423591
+0.88471580
+-0.11284000
+0.50467122
+-0.00347167
+-0.54973125
+0.06069171
+-0.21223140
+-0.95914677
+0.02699828
+-0.32158613
+-0.12465930
+0.62233520
+-0.71476915
+-0.55619106
+-0.61184117
+-0.70581120
+-0.00535005
+0.33983195
+0.77924335
+-0.07786423
+0.67692125
+-0.69906706
+-0.21018386
+0.08044744
+0.74647808
+-0.96239254
+0.03268600
+0.47612929
+-0.67978016
+0.15113962
+0.36456645
+-0.96406290
+0.14844942
+0.17451811
+-0.99585403
+0.20177102
+0.33159363
+-0.94398218
+0.07540393
+0.23680639
+0.53441513
+0.71040869
+0.16881990
+0.54428816
+-0.77594237
+-0.44002938
+-0.84866326
+0.16563690
+-0.74438944
+0.62108338
+0.28713512
+-0.37149686
+-0.07038176
+0.85309720
+-0.29103827
+0.24151659
+0.86389625
+0.23111033
+-0.16049683
+0.09832633
+0.80846536
+-0.27182430
+0.99445903
+-0.48738194
+-0.24840045
+0.44086862
+0.39436793
+-0.51415056
+0.20662630
+-0.42321730
+0.22761106
+-0.41708684
+-0.58453554
+-0.32721913
+0.67833054
+-0.29671055
+-0.65763968
+-0.89218295
+0.31246650
+-0.57474777
+0.02419102
+0.23606801
+0.25296938
+0.19121575
+-0.85866846
+-0.57828516
+-0.86571392
+0.59728646
+-0.80680504
+0.38309360
+0.05080295
+-0.81905450
+-0.35726106
+0.75825822
+0.97482812
+0.28339946
+0.91389561
+-0.90075840
+0.05389702
+-0.08038753
+-0.65582570
+0.86029613
+0.87984359
+-0.34175295
+0.31603014
+-0.91522213
+-0.93944407
+0.66356862
+-0.09203964
+-0.27968466
+-0.69716886
+0.48412228
+-0.94265774
+-0.35182750
+-0.77633417
+0.00557840
+0.40358412
+-0.61617842
+0.65695810
+-0.79118517
+0.74575758
+-0.37670934
+0.84752774
+0.68574548
+-0.72128657
+-0.82932194
+-0.49732023
+0.56641555
+-0.96761861
+0.12912238
+-0.25329459
+-0.05673480
+0.82635532
+-0.48891733
+0.93687610
+-0.38124737
+-0.62678601
+0.85977638
+0.67825925
+-0.34259533
+0.83026350
+0.73628008
+-0.66058206
+-0.09864142
+-0.76039600
+0.16979187
+0.73888880
+0.70475400
+0.58419480
+0.85799528
+-0.91564129
+0.52166307
+0.94620754
+0.62706331
+-0.28877325
+0.27465602
+0.06296808
+0.30217655
+0.91818385
+-0.72182523
+-0.20221421
+-0.02542192
+0.35558821
+0.94956067
+0.77788073
+0.85559662
+0.41639882
+-0.97452734
+-0.63868713
+0.78228854
+0.39267822
+-0.42201667
+0.64949642
+-0.82802439
+0.76125758
+-0.40833345
+0.35366875
+-0.79932651
+-0.74614201
+-0.50845031
+-0.49303296
+0.55320645
+0.42191548
+0.49896583
+0.76239156
+0.40137329
+0.77214126
+0.59657848
+-0.23189354
+-0.18349105
+0.83380915
+-0.80024783
+-0.68295108
+0.81841334
+-0.63945944
+-0.52622126
+0.43722119
+-0.24014831
+0.71304296
+0.40114985
+-0.97973256
+0.98655116
+0.78552415
+-0.49309472
+-0.13515310
+0.49330260
+-0.61394487
+0.47347450
+0.02241026
+0.87611209
+-0.67296118
+0.43772005
+-0.81473897
+-0.20555051
+0.15550561
+0.48121092
+-0.70616156
+-0.60077220
+-0.85848121
+-0.86985116
+-0.87379481
+0.77143271
+-0.93041776
+0.70938551
+0.91080010
+0.64519773
+0.59920681
+-0.92297356
+0.65954886
+0.14814541
+0.40676540
+0.66179256
+0.27939115
+0.02068847
+0.17531178
+-0.25253328
+0.51962638
+-0.04122500
+0.72753951
+-0.81105141
+0.92966535
+-0.98295475
+0.05463873
+0.02260317
+-0.71977249
+0.52958794
+0.12855090
+0.40850166
+-0.05907285
+0.76219701
+-0.66262722
+-0.19922002
+0.96792529
+0.10860048
+0.07202774
+0.69388110
+-0.39910168
+-0.74357125
+0.03843695
+-0.41944155
+0.45027492
+-0.15432148
+1.02970851
+0.21079129
+0.48125923
+-0.16203109
+-0.83690882
+-0.18894224
+0.77668604
+-0.12910778
+0.77727060
+0.83514289
+0.32757832
+-0.08622244
+0.24556328
+0.15854695
+0.77608088
+-0.25633044
+0.75143788
+0.37682422
+0.20019756
+-0.16405668
+-0.66783995
+-1.00246110
+0.64435703
+-0.19228663
+-0.96308453
+-0.96386001
+-0.35675365
+-0.95306793
+0.75635688
+0.23326572
+0.43213815
+0.97512727
+-0.05750604
+-0.47732626
+-0.63528640
+-0.98691120
+-0.06064765
+-0.11251862
+0.32804164
+-0.65415570
+-0.96446233
+0.01462330
+0.43441567
+-0.03144183
+-0.44920174
+0.37703648
+0.58748323
+0.76650720
+0.82258847
+-0.06284468
+-0.63580236
+-0.13066631
+0.72512351
+0.44189026
+0.57839752
+0.99206147
+-0.71209227
+-0.28381604
+-0.48762325
+0.41557861
+0.86812649
+0.23671300
+-0.31900572
+0.24483316
+0.50982871
+-0.48900391
+-0.52040884
+0.25047612
+-0.41327135
+0.37827186
+-0.44293815
+-0.12601692
+-0.43835956
+-0.12185443
+-0.56761383
+-0.19137327
+0.79734741
+0.18880058
+-0.96500251
+0.23951555
+0.25076320
+-0.40458707
+0.23544138
+-0.28322444
+0.52996657
+-0.46635232
+0.36462772
+0.01466927
+-0.22789804
+-0.00096151
+-0.02986464
+0.10868289
+0.85065733
+-0.27679675
+0.49073772
+-0.23179136
+0.72937380
+-0.18930718
+-0.49936900
+0.66691372
+-0.78062132
+0.24473920
+-0.09206324
+-0.08244495
+-0.71462440
+-0.30092931
+-0.60335335
+-0.34264369
+-0.59848417
+0.62593147
+0.68141308
+-0.54578084
+-0.93878362
+-0.30409586
+0.83525414
+0.97032988
+-0.60466605
+0.85266921
+0.88379354
+0.23780200
+0.02284005
+-0.26892540
+-0.36901000
+0.32393039
+0.89747579
+0.40360153
+0.12916670
+-0.17088786
+-0.48480069
+0.61443076
+0.64526799
+-0.92169416
+-0.86994749
+-0.91487008
+0.25041946
+0.66272681
+-0.67931931
+0.45025365
+-0.49354923
+-0.53876956
+-0.83090908
+-0.55713431
+0.55345420
+0.72315708
+-0.50796147
+-0.06381449
+0.27928395
+0.69349197
+0.65406247
+-0.94044433
+0.79180496
+-0.76756046
+0.37791621
+0.35814744
+0.67589234
+0.52121368
+-0.28362181
+-0.86975295
+0.08073882
+-0.21922244
+-0.85895071
+-0.76967145
+-0.83730659
+-0.47732026
+1.01548300
+-0.44351696
+-0.46740083
+-0.04806291
+-0.31219456
+-0.34402321
+-0.66088001
+0.93688951
+0.11249594
+-0.55300596
+-0.10969984
+-0.21021411
+-0.42329190
+0.91684742
+-0.44568508
+-0.11280607
+0.16304298
+-0.06183752
+-0.68328591
+0.31270397
+0.53985068
+-0.35380394
+-0.89947944
+-0.31123344
+-0.45965505
+-0.72266695
+0.82619687
+-0.88380480
+-0.05986409
+0.26093084
+-0.86096986
+0.63306671
+-0.07749630
+0.19272363
+0.03967535
+0.30434046
+-0.74388871
+0.83924064
+-0.46102586
+0.82376011
+0.96527114
+0.36301192
+-1.00915220
+0.79143565
+-0.68726934
+0.59154596
+-0.71438824
+0.18819856
+0.21670828
+0.33177867
+-0.20283434
+-0.73618126
+-0.17609144
+-0.23596995
+0.71304965
+0.12789313
+0.58881183
+-0.39784466
+0.57753214
+-0.91327006
+-0.72720409
+0.34274280
+0.31740749
+0.82722138
+-0.82999598
+0.95918659
+-0.16995087
+0.85983137
+-0.30058879
+0.74777087
+-0.92594465
+0.12567918
+-1.00904754
+-0.00469810
+0.72832907
+-0.37311542
+-0.63583610
+-0.29872240
+0.20290001
+-0.85798161
+0.76900127
+-0.01836608
+0.48108608
+-0.14696196
+-0.21012142
+-0.51987114
+0.20799777
+0.43393360
+0.88334131
+0.43681483
+0.42632818
+0.19559684
+0.73662944
+0.33029344
+0.65848267
+0.44692634
+-0.44648274
+-0.81658173
+0.90237490
+0.19555320
+0.88126945
+0.34089666
+0.36607975
+0.46257204
+-0.74372070
+-0.30860068
+0.85077425
+0.38109911
+0.05696832
+-0.07721326
+0.85302004
+0.85040437
+0.32981276
+-0.21105852
+0.00812361
+-0.78675932
+0.35212154
+-0.53303565
+0.07048605
+-0.53530913
+0.85251428
+0.28743407
+-0.43320198
+0.95128981
+-0.95125349
+0.71414110
+0.13371845
+0.46526509
+0.52594701
+-0.84217844
+-0.59936650
+0.73334527
+0.04671537
+0.25365992
+-0.65853537
+0.21753114
+-0.38939925
+0.63512782
+0.39997983
+0.61665492
+-0.57382404
+0.45865927
+-0.87584303
+-0.30996495
+-0.34248851
+0.18140809
+-0.71641995
+0.83506526
+0.88839148
+0.65453961
+0.86152856
+0.15965609
+0.36249095
+-0.56501328
+0.86863217
+0.91808264
+0.24214910
+-0.85349808
+-0.70320509
+0.73082535
+0.90010978
+0.74097701
+-0.82532873
+0.80721040
+0.45072392
+-0.72217978
+-0.21064025
+-0.01127560
+0.58155813
+0.60905997
+0.83357638
+0.44307973
+-0.84421025
+0.57424678
+0.59492641
+0.04389929
+-0.74347409
+0.03461889
+0.60807551
+-1.00594427
+0.37777912
+0.93929370
+-0.65673673
+-0.88647204
+0.89725405
+-0.48238729
+-0.68297325
+0.81540709
+-0.37341579
+0.44665485
+0.89954853
+0.87882103
+0.97582823
+-0.51167934
+-0.52625997
+0.96709063
+0.87217905
+0.27537195
+0.73026569
+0.09820408
+0.54501938
+-0.70882285
+0.48368685
+-0.12059199
+-0.63593714
+0.26600360
+-0.45723286
+-0.19610641
+0.40740395
+0.08160151
+0.57229506
+0.22680310
+0.14955207
+0.02586244
+0.07631925
+-0.30030437
+-0.08538072
+-0.93062886
+-0.35988341
+-0.77232768
+0.53230503
+-0.33215383
+-0.13127906
+0.33999832
+0.55717801
+-0.55054556
+-0.66813376
+-0.70317207
+0.89924108
+-0.11579171
+0.96386357
+-0.54639744
+0.76085111
+0.32775422
+0.68649697
+-0.93488398
+-0.89737083
+-0.60864311
+-0.70510345
+-0.60977816
+0.78739639
+-0.39256310
+-0.38971147
+0.33236677
+-0.13163412
+-0.46035397
+0.91196642
+-0.67246241
+0.03191382
+-0.53906035
+0.94940138
+-0.97017238
+-0.33285217
+0.70829814
+0.70003664
+0.82817325
+0.40116993
+-0.09214409
+0.20132088
+-0.85033233
+-0.72897718
+-0.66332912
+0.33284251
+0.69909690
+0.07652950
+-0.00838185
+0.26542712
+-0.89220839
+-0.05564952
+0.20728600
+0.52633115
+0.83143055
+-0.98525243
+-0.98066229
+-0.81153001
+0.31453472
+0.08968056
+-0.25637180
+0.08092736
+0.73132288
+-0.74160946
+0.65810418
+-0.98729873
+-0.13713955
+0.50960088
+0.61488402
+-0.15290028
+0.38182724
+-0.60718536
+-0.66239548
+-0.46507633
+0.45503473
+0.04560006
+-0.51258138
+-0.39937687
+-0.02367842
+-0.48631990
+-0.26638061
+0.56301105
+0.01375186
+0.32382333
+-0.69936067
+-0.13049436
+-0.45488840
+0.88163447
+-0.35701865
+0.06909382
+-0.60299620
+-0.03196377
+0.22614658
+-0.86713532
+-0.24546218
+-0.85241958
+0.09822512
+0.30917752
+-0.62587118
+0.65911162
+-0.47021395
+0.71649504
+0.06042588
+0.14826405
+-0.33753580
+-0.99915384
+-0.02653605
+-0.26713556
+0.21412206
+-0.41149735
+-0.32639414
+0.71556497
+0.54070771
+0.22628868
+-0.73277098
+-0.70767903
+-0.01630908
+-0.49090946
+-0.26161343
+-0.23604489
+-0.19108373
+-0.44927065
+-0.96017300
+0.14118718
+-0.96680258
+-0.88474953
+-0.44216365
+0.83986522
+0.13689435
+-0.53500052
+-0.21513357
+-0.69927202
+0.75881295
+-0.72745168
+-0.51747560
+-0.49415807
+0.68899942
+0.05948530
+-0.69268233
+0.89059408
+-0.88556987
+-0.44587756
+-0.76486027
+-0.68286467
+-0.15697759
+0.64556016
+0.87881757
+0.48347948
+-0.32346433
+-0.97859632
+0.50260589
+0.80336761
+0.72489016
+0.58390313
+-0.40282219
+-0.48767380
+-0.76281863
+0.22600446
+-0.45653492
+0.68866200
+-0.94790134
+0.02365719
+-0.35361005
+0.98397738
+0.10859967
+0.80552246
+-0.10879468
+0.02325557
+0.86459363
+-0.33536600
+-0.79467439
+-0.66419614
+-0.32561661
+-0.04129165
+0.75294734
+-0.05250107
+0.72207666
+-0.01996984
+-0.88093536
+-0.39825194
+0.46336887
+0.47572242
+-0.39741994
+-0.20603913
+0.59616495
+-0.75927640
+0.63219465
+0.32614241
+0.92608833
+-0.53121673
+-0.05894372
+0.12986552
+-0.04363973
+0.04659754
+-0.24705815
+0.58473267
+-0.34989708
+-0.99549076
+0.46672595
+0.69944449
+0.66983181
+0.03153893
+-0.03093115
+-0.77265138
+-0.54707006
+-0.47291705
+0.31139312
+-0.56212106
+0.20085824
+-0.42145097
+0.71452403
+0.86476469
+0.01612592
+0.83829629
+0.83211112
+-0.26011503
+0.05423796
+0.78357983
+0.94368291
+0.80727577
+0.50221813
+-0.48278642
+0.30407298
+0.70876944
+-0.24175137
+-0.52138588
+0.73980069
+-0.37038004
+-0.65272951
+-0.00725508
+-0.68437934
+-0.50352183
+-0.38891965
+-0.88894319
+0.84051442
+-0.36331940
+0.27498722
+-0.36561215
+-0.28349215
+0.12307608
+-0.58234608
+-0.79181686
+0.15088260
+-0.24207991
+-0.49324423
+0.33459759
+-0.90925714
+-0.82221538
+0.52013516
+0.35080421
+0.60758185
+0.85538971
+0.96050799
+-0.16810018
+0.63772261
+0.27123833
+0.96922350
+0.42229724
+-0.94046042
+0.40812171
+0.53716886
+0.49581802
+0.17357707
+-0.85889670
+0.21823180
+0.21524584
+-0.77337658
+0.50884533
+0.09543848
+-0.64126414
+-0.75449745
+-0.75828998
+-0.72803476
+0.86946666
+0.69100845
+-0.29852813
+0.86785555
+0.19668555
+0.31605184
+-0.03903103
+0.14375246
+0.65003145
+-0.79772113
+0.50085294
+-0.45920211
+0.83242655
+0.54251122
+-0.96799617
+0.69148505
+-0.31254560
+-0.26593041
+-0.06455034
+-0.70912057
+-0.53100663
+-0.79762015
+-0.26071352
+-0.29532474
+0.05798304
+-0.35085946
+0.08610511
+0.11267126
+-0.52027601
+-0.41640002
+-0.56126142
+0.15598917
+-0.73178992
+-0.99488799
+0.41724193
+-0.13837111
+-0.25652540
+0.89775026
+0.53807807
+0.21715856
+-0.83309108
+0.24411917
+0.46021473
+-0.87646321
+0.75245535
+-0.68185043
+0.70033479
+-0.96769273
+0.85313368
+-0.87871874
+-0.66086948
+-0.47170758
+0.14547908
+-0.84889051
+-0.31772584
+0.21312249
+0.24868119
+0.57286692
+-0.24000418
+0.56745684
+0.27770746
+0.14301527
+0.83404696
+-0.00612324
+0.93903732
+0.10644877
+-0.88441309
+-0.46906978
+-0.09563702
+0.63900459
+-0.67654318
+0.66077292
+0.37460458
+0.82073390
+0.91862047
+-0.45147729
+-0.45605654
+0.81346250
+0.50959516
+0.97691000
+0.42049944
+-0.19900680
+0.95453870
+0.45013309
+-0.83354877
+-0.87128702
+0.79434717
+0.70173991
+0.69309425
+0.17414260
+-0.34181851
+0.07218587
+-0.22433412
+-0.47350025
+-0.88670551
+0.22240531
+-0.34735966
+0.91780031
+-0.61580870
+-0.18114096
+-0.32076281
+-0.42592949
+-0.77162689
+-0.02351487
+-0.17797858
+0.32596731
+0.74001014
+-0.60774958
+-0.01169044
+0.44422948
+-0.11346680
+-0.17825127
+0.94543374
+0.04390121
+0.26314080
+-0.81806397
+0.51046252
+0.12741029
+-0.84118131
+-0.23028201
+0.08248293
+-0.25230742
+-0.12977725
+-0.99592924
+-0.57488322
+-0.31207687
+-0.96980373
+0.71293604
+-0.80798258
+-0.31167984
+0.06600785
+0.55303967
+0.11123240
+0.66699779
+0.23027062
+0.06002462
+-0.36641109
+0.00580335
+0.28302765
+-0.92894933
+-0.83974929
+-0.53644603
+0.95977914
+-0.16009957
+0.61576068
+-0.20808917
+0.66985798
+-0.12874007
+0.35219812
+0.25858033
+0.85001683
+-0.75739765
+-0.82364184
+-0.38745052
+-0.59648359
+-0.77722883
+0.66710305
+0.01879871
+-0.73282269
+0.09544110
+-0.80212596
+0.07410800
+-0.76663193
+-0.74423057
+0.98608708
+0.50194728
+0.91829610
+0.04802513
+0.68290746
+-0.51381850
+0.54479790
+0.77989399
+-0.25867009
+-0.22328639
+-0.38259721
+0.02357328
+0.38792062
+0.36985087
+-0.18235260
+0.36063421
+-0.25769490
+-0.77650423
+-0.73109722
+-0.68963331
+0.51777077
+0.06521630
+0.14582705
+0.75473702
+0.45755839
+-0.27150178
+0.72847426
+0.59151959
+-0.73887992
+-0.17300487
+-0.80251923
+0.59911346
+-0.19952637
+0.29233289
+-0.18923235
+-0.22130036
+-0.63345248
+0.08458650
+-0.72367653
+-0.26231778
+0.27588582
+-0.53266361
+-0.54195994
+0.68291724
+0.94802117
+-0.23529786
+0.35181785
+-0.55668059
+0.96947527
+-0.62702596
+0.16444242
+0.01091790
+-0.83263274
+-0.38888288
+-0.20951259
+-0.80586928
+0.14376831
+0.81990170
+0.51173151
+0.96119857
+0.67184901
+-0.02714497
+0.37140786
+-0.43495773
+0.75208010
+-0.83681193
+0.33192452
+0.33882349
+0.77516287
+-0.89524111
+-0.04576275
+0.86526370
+-0.26241146
+-0.37888130
+0.42744230
+-0.86926758
+-0.20603478
+0.48107660
+0.83318009
+-0.36362564
+-0.98401403
+0.76560199
+0.98759025
+0.15584755
+-0.82116277
+0.50093943
+0.81119067
+-0.67351585
+-0.77543940
+0.41271774
+-0.24760181
+0.58002954
+-0.38076437
+-0.87685144
+-0.71731412
+0.03789469
+-0.00901914
+0.63482372
+-0.62839294
+0.42563782
+0.56147112
+-0.42895323
+-0.88798384
+0.81625501
+0.35571960
+0.88971646
+0.38064481
+-0.17756331
+0.53035781
+0.53273254
+-0.61036641
+-0.47995375
+0.97623786
+-0.54391006
+-0.11430074
+0.14908870
+-0.36090402
+-0.29373504
+-0.60799777
+-0.27226029
+0.46840478
+-0.83252191
+-0.26935411
+-0.77439873
+-0.53317287
+0.87194236
+-0.05037689
+0.78458864
+-0.21454949
+0.55916796
+0.12830190
+0.98941783
+-0.60411005
+-0.19039256
+-0.57600195
+-0.07034067
+-0.17220852
+0.07145030
+0.11421446
+0.69153599
+0.01862898
+0.55292606
+0.87456284
+-0.57000259
+0.72400063
+0.45568044
+-0.16083195
+-0.29158642
+0.71024530
+-0.39708351
+0.87392363
+-0.71868775
+0.02798739
+1.08696872
+0.29513538
+-0.41116731
+0.76393246
+-0.53963908
+-0.50399207
+-0.77524248
+-0.44432467
+-0.97044055
+-0.05144288
+0.51132404
+-0.45214018
+-0.38596183
+-0.41280145
+0.79203464
+-0.18439948
+-0.27611424
+-0.59615494
+0.47052591
+0.10739020
+0.52905822
+-0.86321860
+0.69977631
+0.62611131
+0.15411357
+-0.53396709
+-0.33155330
+-0.75069188
+0.69977064
+-0.07982173
+-0.70034704
+0.90148473
+0.51639837
+-0.18543475
+0.93464148
+0.69993988
+0.41520965
+-0.90615459
+-0.28057317
+0.39182200
+-0.77782242
+0.58021118
+-0.11275210
+-0.17609735
+0.40616109
+-0.62911820
+-0.61533144
+0.45922357
+0.25700398
+0.41807422
+0.14689168
+-0.00514302
+-0.87692188
+-0.05942496
+-0.97177295
+-0.16054756
+-0.33287749
+-0.61021486
+-0.30177540
+0.85108188
+-0.85561905
+-0.63516075
+0.76725704
+-0.72763262
+0.83260022
+0.51814239
+0.50902607
+-0.02752071
+0.81741940
+0.31571467
+-0.55047367
+0.69053559
+0.25699693
+-0.22411309
+-0.16363573
+-0.20742099
+0.61694006
+0.18988151
+0.43381347
+-0.96305634
+-0.38345725
+-0.97693050
+-0.44201812
+-0.00938807
+-0.71900705
+-0.25812484
+0.59316211
+0.03936233
+0.75409079
+-0.23803053
+0.49893250
+0.18261213
+-0.69151417
+-0.29209837
+-0.31257984
+-0.36506794
+-0.91358783
+-0.74363992
+0.60645645
+0.04899063
+-0.45392082
+0.34452768
+0.21662079
+0.74760559
+0.72608819
+-0.27465853
+-0.60890777
+-0.38568059
+-0.81719611
+-0.45569117
+-0.56488979
+0.73321028
+0.08666519
+0.63506972
+0.21828007
+-0.16764244
+0.55296287
+-0.03113148
+-0.61183507
+0.74041990
+0.79904793
+0.53193588
+0.34646816
+-0.12038783
+-0.50633619
+-0.89454820
+-0.26176012
+0.42760257
+0.11681956
+-0.76097826
+0.92695976
+0.62485430
+-0.02573769
+0.47882606
+-0.73113503
+-0.29872635
+0.13037029
+0.74449224
+0.34348913
+-0.95001712
+-0.91533153
+0.09502790
+0.85903121
+0.93950066
+0.60188494
+-0.83585274
+0.34798323
+-0.21950679
+0.52866782
+-0.17347447
+0.66461466
+-0.57139646
+-0.15266606
+-0.57537818
+-0.87726901
+-0.46304653
+-0.77476991
+0.37425914
+-0.34032959
+0.72706899
+-0.99957742
+0.28732251
+0.82628195
+-0.15761624
+0.03650205
+-0.42975188
+-0.52394635
+0.39383228
+-0.53965756
+0.08607536
+0.33282329
+-0.81596304
+0.10530794
+-0.46675848
+0.16179586
+0.51961070
+-0.02459165
+0.17745189
+0.83528149
+-0.40798091
+0.59997598
+0.35548719
+0.94580677
+0.40030964
+0.30031120
+-0.34241183
+0.47055888
+-0.60711639
+0.31995694
+-0.55443461
+0.07537266
+-0.56110117
+-0.55014365
+-0.34236970
+-0.58283605
+0.31342785
+0.02573329
+0.22042736
+0.39658444
+0.57212571
+0.49504120
+-0.42134764
+-0.29066698
+0.15057124
+0.14698000
+0.07305581
+-0.46077250
+0.75113062
+-0.53676554
+0.91369193
+-0.73228941
+0.34066455
+-0.40840268
+0.56974511
+-0.24156781
+-0.90360407
+0.60032277
+0.34118241
+0.75290493
+1.00331369
+-0.21570386
+-0.32871138
+-0.67315514
+-0.17221414
+0.20855191
+0.16453115
+0.85802674
+0.02546438
+0.84804056
+-0.96125161
+-0.51996008
+-0.98938880
+-0.24750454
+-0.70260322
+0.49004569
+-0.29915115
+-0.21381742
+0.76994308
+0.93368024
+-0.35611266
+-0.83662180
+0.70040599
+0.14579821
+-0.10814090
+-0.19326123
+-0.61557764
+-0.41989693
+0.17505368
+-0.31138313
+0.29715754
+-0.95115885
+0.78834366
+0.14101666
+-0.30410915
+-0.74411289
+-0.04377775
+-0.45463876
+-0.69557649
+0.64195349
+-0.27319054
+-0.60584257
+-0.47189819
+-0.55464869
+0.94022992
+0.86478607
+-0.97376724
+-0.04746896
+0.95057848
+0.54612276
+0.05102253
+0.69927404
+-0.32440264
+-0.46612423
+0.15314181
+0.59730771
+0.69076861
+0.29575213
+0.38926778
+0.78969531
+-0.98223768
+0.23899821
+-0.03380652
+-0.98188794
+0.84496777
+0.52558818
+-0.35935446
+-0.13622708
+0.77383178
+-0.70082417
+0.72806551
+0.30024564
+0.50347436
+-0.93874453
+0.89295278
+-0.12708661
+0.88699983
+0.73477944
+-0.40422903
+-0.50932252
+0.30409504
+-0.86459398
+-0.70947543
+-0.06510463
+-0.15832315
+-0.08104078
+-0.42497945
+-0.53651891
+-0.29459868
+0.02920854
+-0.90789721
+0.70188579
+-0.24292373
+0.25161407
+0.43378519
+-0.01932987
+-0.71644375
+0.36812113
+-0.24515191
+-0.10330138
+0.66112161
+0.18550798
+-0.13033539
+0.05193240
+-0.17340900
+0.65134085
+-0.25030842
+-0.96980263
+0.98563323
+0.58796801
+0.94162826
+-0.82884577
+-0.18889328
+0.64209296
+0.53207797
+-0.75374317
+0.48395250
+-0.75512963
+0.84148571
+1.02165464
+0.11844870
+-0.09211958
+0.40393318
+0.10982782
+0.79431450
+-0.34235070
+0.57135655
+-0.11173660
+0.63175025
+0.60398187
+-0.82933991
+-0.93855536
+-0.97108132
+-0.57736640
+-0.75837329
+0.63610689
+0.45754450
+0.82097202
+-0.75159932
+1.00219340
+0.39518575
+-0.72081189
+-0.03002583
+0.08750371
+-0.61657298
+0.38272824
+0.94055321
+0.80818753
+-0.05156073
+0.26906434
+0.92951783
+0.16735705
+-0.79321555
+-0.90753594
+0.36145872
+-0.07563109
+-0.62277602
+0.48098089
+0.34685129
+0.35148681
+0.13419295
+-0.79017995
+-0.15689030
+-0.49945544
+-0.09182263
+-0.56847900
+-0.18835651
+-0.52700048
+-0.65677825
+0.28065792
+-0.68936562
+-0.66498975
+-0.70779584
+-0.42391140
+-0.02543233
+0.45797915
+-0.91567420
+0.51237938
+-0.47335196
+0.53682145
+0.09249421
+0.95781910
+0.23369148
+0.33068160
+-0.84193505
+0.25653261
+0.36924608
+0.34635597
+0.17836781
+-0.86188822
+-0.39054319
+-0.70119819
+-0.44573689
+0.04165720
+-0.88732529
+-0.20444404
+0.45284990
+0.30058511
+-0.43665490
+-0.35730663
+0.18695825
+0.53254127
+-0.77741471
+-0.98646098
+0.34835447
+0.42367625
+-0.58395768
+0.81699581
+-0.79989822
+-0.73000741
+0.50471973
+-0.07702028
+0.42006932
+0.64547489
+0.07141252
+0.33505901
+0.96695594
+-0.42125561
+-0.11781579
+0.44826505
+0.83638215
+-0.91407561
+-0.38278238
+-0.92035417
+-0.10091889
+0.06085281
+-0.20400968
+0.69289878
+-0.81010113
+0.50734602
+1.00026744
+0.70534051
+-0.67061552
+0.96780482
+-0.23987835
+-0.30969120
+-0.05755773
+1.00995733
+0.53395295
+0.31888057
+0.21883387
+-0.90214369
+-0.92240951
+0.55229068
+-0.61035490
+0.49204719
+-0.48633912
+0.93220952
+0.93739188
+0.52884850
+-0.10489523
+0.40934546
+-0.39598432
+-0.56985846
+0.07497514
+-0.83281232
+0.32037454
+-0.56315604
+-0.72791067
+-0.78486125
+0.37263163
+-0.60610903
+0.91755803
+0.03417519
+0.46688891
+-0.12188435
+0.13015758
+-0.62571851
+-0.67361720
+0.88821380
+-0.22282374
+0.07312896
+0.41879957
+0.06006337
+-0.84752323
+-0.08416635
+0.43746831
+-0.53717923
+-0.03565190
+0.17718768
+0.95190191
+-0.88930298
+-0.12129812
+-0.69935701
+-0.55052629
+-0.98846755
+0.95767339
+-0.61777055
+0.93416776
+0.28373325
+-0.73992926
+-0.83244957
+0.27901785
+-0.82160163
+0.74086153
+0.07255113
+-0.80797173
+0.48132253
+0.33253659
+-0.45054322
+-0.90276051
+0.86881193
+0.69113638
+0.00961102
+0.63413072
+0.78682387
+0.69096019
+0.92015398
+-0.84392267
+0.71203208
+0.86255348
+0.53320508
+-0.27014392
+0.34610562
+-0.21506220
+-0.53099799
+0.33294405
+-0.57543358
+-0.17002109
+0.96630645
+0.74015508
+-0.80905258
+0.23350676
+0.66028115
+0.66923991
+-0.52378151
+-0.34795056
+0.64878417
+0.40234232
+0.27770138
+-0.12638586
+-0.79823857
+-0.14682342
+-0.25440754
+0.01974982
+0.58944047
+0.03742339
+-0.23997139
+0.81070445
+0.82098961
+0.17400308
+-0.22621044
+-0.78585523
+0.27360802
+0.08990878
+0.37667156
+0.90626098
+-0.74383794
+0.12457679
+-0.28739071
+-0.89190434
+-0.92820330
+-0.56623466
+-0.11989726
+0.67581195
+-0.71688046
+-0.79284809
+0.33489681
+0.70624660
+-0.98987163
+-0.65518262
+-0.32991162
+0.59186517
+0.89910512
+-0.40195537
+0.55581892
+-0.86869161
+0.72643936
+-0.11904599
+-0.10838079
+0.87298913
+0.98021111
+0.78556560
+-0.35356845
+-0.24434227
+0.82965899
+0.34629823
+-0.86731087
+-0.05280544
+0.15766108
+0.15924985
+0.87748000
+0.93246554
+0.33792393
+0.41381377
+0.33879865
+0.50751211
+0.27689148
+0.69561766
+-0.13455498
+-0.95379593
+0.25964973
+-0.17751307
+0.94931750
+0.66753382
+0.65887666
+0.96392204
+-0.74700690
+-0.25085177
+0.36894357
+-0.37545511
+0.55295341
+0.78741532
+0.17196227
+-0.81329833
+0.64550412
+0.52782693
+0.80032525
+-0.45704019
+0.85319018
+0.94820666
+-0.03104711
+0.07455611
+0.55559206
+-0.93098491
+-0.24986285
+-0.52608809
+-0.22633487
+0.44484413
+-0.32734883
+-0.32480758
+-0.89587802
+-0.41530472
+0.40805721
+0.38135433
+0.70727563
+-0.90154353
+0.14017332
+0.87860954
+-0.91269445
+0.47491252
+0.60825300
+-0.73784068
+0.46039248
+-0.75681417
+0.19827700
+-0.09194809
+-0.36893940
+-0.14346212
+0.52107263
+-0.67500907
+-0.74650103
+-0.20405918
+-0.61337081
+0.86007798
+0.55922687
+-0.61022282
+0.59553635
+0.04564989
+0.13899052
+0.21195841
+0.59116316
+0.57231867
+0.32598221
+0.92960620
+0.98589361
+-0.89389841
+0.60368657
+0.64246047
+0.08418190
+-0.75786975
+0.38342059
+0.00260258
+-0.23234719
+0.83033204
+0.16876078
+0.51382804
+0.72371912
+0.18953550
+-0.29547620
+-0.34125483
+-0.77092028
+-0.60380200
+-0.65982774
+-0.60451606
+-0.34898788
+-0.20307171
+0.98456705
+-0.63425162
+0.93519628
+-0.93595576
+0.49481463
+-0.92347922
+-0.28445971
+0.03193283
+0.28247213
+-0.02401805
+0.06747127
+-0.90307026
+0.34867775
+-0.53652272
+-0.52881011
+0.39522827
+0.67869771
+0.80478513
+0.36905193
+0.36148953
+0.24755216
+-0.43631673
+0.91987336
+0.13955581
+0.79902363
+0.81428027
+-0.47323716
+-0.98118196
+-0.72774273
+0.43690765
+0.25146103
+-0.54749820
+0.01809573
+0.21230280
+0.53447795
+0.26172304
+0.81043005
+-0.62339324
+-0.32436693
+0.71144211
+-0.97705224
+-0.35354465
+-0.27108908
+0.63283288
+0.09770072
+-0.33408868
+0.34097302
+0.93729591
+0.20282590
+0.76537573
+0.17546034
+-0.81309369
+0.18728387
+0.32177997
+-0.13596433
+-0.63294873
+-0.46157551
+0.83440602
+-0.08978671
+-0.79423681
+0.19352961
+0.31230569
+0.90151799
+-0.13064879
+0.58270335
+0.08374619
+-0.38568038
+-0.50604570
+-0.09232640
+-0.21293390
+-0.15687907
+-0.93893153
+-0.20581830
+-0.23014849
+-0.27170110
+0.01235640
+0.67454779
+-0.62472752
+-0.60363054
+0.29738855
+0.70373845
+-0.31458479
+-0.62396777
+-0.35636258
+-0.75775655
+-0.97420466
+0.03584266
+-0.41845608
+0.74882650
+0.54337096
+0.70337975
+-0.07346833
+0.28410923
+-0.79704501
+0.27717328
+0.11278927
+-0.43227953
+0.95045233
+0.41498888
+0.76607382
+-0.75792789
+-0.68414241
+0.00619328
+0.64066195
+0.21835041
+-0.28716290
+-0.88221832
+0.85207617
+-0.18452007
+0.87350404
+0.28319824
+0.94146657
+0.83488405
+-0.07047921
+0.12984741
+0.40120447
+-0.41605300
+0.71843743
+-0.39339876
+0.70628345
+0.46592343
+-0.18011183
+0.28181016
+-0.05887544
+0.36936247
+0.42764103
+-0.70025080
+-0.85740829
+0.05739868
+0.27402198
+0.66900277
+0.87766671
+0.78356326
+-0.14164263
+0.66359282
+0.84915149
+-0.72290796
+-0.24957925
+0.28045344
+-0.17533302
+0.78429139
+-0.91809840
+-0.71243173
+0.45878756
+0.56775427
+-0.65448168
+-0.71383983
+0.29476047
+-0.92305946
+-0.17211676
+-0.60598749
+0.37530208
+0.26543438
+0.18520546
+0.78821039
+-0.92951508
+-0.91266795
+0.63248742
+0.77535772
+-0.22772193
+0.03465855
+0.62419105
+-0.90210471
+0.30341816
+-0.54305515
+-0.60666534
+-0.54977244
+0.66829157
+-0.67136136
+0.45935476
+-0.40465808
+0.42814767
+-0.86575297
+-0.54131266
+-0.03334999
+-0.46959007
+0.05140412
+0.22270942
+-0.63419971
+-0.45605326
+0.68977749
+0.15674949
+0.79183018
+-0.09292608
+-0.64254028
+-0.79557888
+0.40638852
+0.42164660
+-0.41870171
+0.37937069
+-0.83889847
+-0.84399852
+-0.23184812
+0.46958959
+-0.60661882
+0.62426996
+-0.37672913
+0.42848217
+-0.38222653
+0.00585127
+-0.70185930
+0.18557382
+0.88264418
+0.40243328
+-0.05203182
+0.84573460
+0.26918960
+-0.10443676
+-0.85685234
+-0.47550201
+-0.06458163
+-0.48846877
+0.97766089
+-0.44568634
+-0.37627578
+-0.20013064
+0.57392442
+-0.76972274
+0.53093898
+-0.16406220
+-0.54297391
+-0.92534630
+0.66645563
+-0.86123456
+-0.84311329
+-0.38552189
+0.14308977
+-0.38570470
+-0.46211582
+-0.13650370
+-0.73269731
+0.26853967
+0.68035150
+0.16227110
+-0.56934363
+0.77923748
+0.10613588
+0.86012720
+0.57449141
+-0.45862617
+-0.11129582
+0.44324557
+0.84809017
+-0.88328738
+-0.14875736
+0.16236829
+-0.52732562
+-0.29036999
+-0.45957033
+-0.14042637
+0.09491058
+0.09876553
+0.16115547
+-0.14247043
+-0.50625166
+-0.36498069
+0.64293852
+0.89304262
+-0.93296804
+-0.62315385
+-0.41838312
+-0.80418319
+0.94952824
+0.19707337
+-0.37200964
+-0.67347529
+-0.39397461
+0.74547201
+0.96199133
+0.57789558
+0.93862253
+1.00053404
+0.88442170
+-0.16549310
+-0.10970817
+0.01780200
+-0.15206118
+-0.28780393
+0.12817249
+0.01149831
+-0.87607422
+-0.31888902
+-0.53781087
+-0.56202213
+0.85499365
+0.58799201
+0.38350892
+0.32725688
+-0.77753440
+-0.46722455
+0.66598442
+0.47980100
+0.55848642
+-0.54037670
+0.37772659
+0.15194660
+0.63243087
+0.05624892
+-0.19565777
+-0.83575123
+0.20076000
+-0.98176486
+0.26968950
+0.53957997
+0.36471502
+-0.00950674
+0.16269013
+0.86344844
+-0.27208382
+-0.31124608
+-0.82403127
+0.50831162
+-0.14379834
+0.56957934
+-0.61070132
+-0.23787603
+0.65776528
+0.83462958
+-0.59456291
+-0.90128046
+-0.72110995
+-0.82298411
+-0.09730344
+0.10020829
+0.41477885
+-0.76094084
+-0.96461816
+-0.24967842
+-1.00284764
+0.72061416
+0.71003183
+0.56794806
+0.45385922
+-0.94578314
+-0.04128283
+0.16220177
+-0.66130637
+-0.62148725
+-0.54424604
+-0.91143308
+-0.90208243
+0.49419377
+-0.24011204
+0.18204202
+-0.57200906
+0.26829324
+0.72503353
+0.14931204
+-0.92295986
+-0.31071125
+0.98312835
+-0.84299392
+-0.00096333
+-0.48481745
+-0.95194952
+0.74421343
+-0.39501467
+-0.09926297
+-0.16523584
+-0.31748210
+0.45374002
+0.79177503
+0.00053520
+-0.73285374
+0.61382717
+-0.26432634
+0.00855668
+-0.51120234
+-0.35755564
+-0.79765954
+0.06625282
+0.87736230
+0.84479228
+-0.47320870
+-0.39804470
+-0.75476931
+-0.26234218
+0.76931830
+0.18895325
+-0.42930542
+0.33133431
+-0.00344759
+-0.84486364
+0.70646198
+0.30222165
+-0.92402660
+0.87879959
+-0.17195244
+0.93882390
+-0.71639128
+-0.51584222
+0.38102375
+-0.12323642
+-0.09526274
+-0.92035350
+0.93887906
+0.60660214
+0.66934749
+-0.30904573
+0.21228873
+0.32581891
+-0.86367333
+-0.78855085
+0.37341429
+-0.94215129
+-0.72616419
+-0.20402819
+0.03575437
+0.29565594
+0.76993437
+-0.62916607
+-0.91323122
+-0.04208193
+-0.03923737
+0.48391268
+0.08535116
+-0.21152548
+-0.87891355
+0.51781003
+0.77450700
+-0.67633974
+-0.28242847
+-0.50742811
+-0.81537307
+-0.86885754
+0.93633741
+0.91195517
+-0.38681240
+0.75619200
+-0.84299380
+-0.24362954
+0.76336251
+-0.52260085
+0.41890418
+0.89296447
+-0.78625742
+-0.59835762
+0.71407033
+-0.24578318
+-0.81217448
+0.73185275
+-0.88956030
+-0.95081566
+-0.60602260
+0.84743693
+0.55632922
+0.79864249
+0.70119509
+-0.20157239
+-0.92755338
+0.38820071
+-0.46696899
+-0.60603083
+-0.60902815
+0.74603357
+-0.62062617
+0.58018928
+0.46461836
+0.68778931
+0.70876969
+-0.99743039
+-0.95192928
+-0.12062064
+-0.60439678
+0.45379459
+0.57688171
+0.23349766
+-0.59546925
+-0.01339471
+-0.01804741
+0.15712916
+-0.99857350
+-0.28826490
+-0.23134615
+-0.23407550
+-0.05803503
+-0.91068589
+0.54469105
+0.83794111
+0.11333303
+0.49595800
+-0.37793994
+-0.70735501
+-0.04980626
+-0.37015660
+-0.14811530
+0.82874204
+0.45619102
+-0.57243392
+-0.18468870
+0.02625087
+-0.95660384
+0.15483452
+-0.74637217
+0.95066373
+-0.27805300
+-0.87712945
+-0.02005706
+0.85644716
+-0.50581325
+-0.89230359
+0.64735681
+0.41742994
+0.45250649
+0.14799272
+0.46492166
+0.06827197
+-0.27592309
+-0.48494695
+0.87467113
+0.43369687
+0.51814435
+0.34290463
+-0.58474709
+0.50075791
+-0.25591815
+-0.63790556
+-0.01124273
+0.03436822
+0.68661964
+-0.87019015
+0.93558150
+-0.53857977
+0.42656263
+-0.71799174
+-0.58263046
+-0.46999480
+-0.59646272
+0.14286911
+0.72385290
+0.08567770
+0.89406552
+-0.50501275
+-0.57304951
+0.87783872
+0.93188007
+-0.11190866
+-0.87794013
+0.91686468
+-0.98278895
+-0.08897788
+0.30261583
+0.93752915
+0.56268821
+-0.90260401
+-0.49550405
+0.51929306
+-0.76653618
+-0.94607811
+0.24463275
+0.15157699
+0.85446927
+0.19680734
+-0.83174148
+-0.63900480
+0.12092047
+-0.90807464
+0.59758519
+0.13967316
+0.45615569
+-0.55127272
+-0.45419443
+-0.14045623
+-0.15512371
+0.71140877
+0.63553969
+-0.51401643
+-0.12484017
+-0.28947246
+0.07875841
+-0.27216533
+0.94608558
+0.96313214
+-0.81829820
+-0.63466083
+-0.34328753
+0.06125496
+0.70730137
+1.00783726
+-0.84450625
+-0.37395102
+0.50751132
+0.89801868
+0.41968949
+0.19940258
+0.94251629
+0.01313501
+-0.71192142
+-0.56380485
+-0.38161629
+0.17821567
+0.95959359
+0.57308253
+0.46083584
+0.56300015
+0.92112684
+-0.44976940
+0.55646167
+-0.55049321
+-0.34417588
+0.57100194
+0.81342090
+0.35093640
+-0.56271708
+-0.04825997
+-0.53328717
+-0.64045026
+0.43054566
+-0.49917161
+0.97798664
+-0.55680464
+-0.46729888
+0.93967572
+0.79160341
+0.71836990
+-0.84436876
+0.48413232
+0.62723889
+-0.15947901
+-0.92029339
+-0.18438206
+0.41160478
+0.76970445
+-0.98597567
+-0.68228252
+0.11652179
+-0.14390162
+0.97155226
+-0.00558094
+-0.69658222
+-0.55769861
+0.75278684
+-0.35490889
+-0.88953136
+-0.16306857
+0.71034828
+-0.84167961
+-0.24461523
+0.40868546
+0.73574951
+0.74379433
+-0.95184633
+-0.55418688
+-0.42921663
+-0.74246248
+0.28130257
+0.92492983
+0.11716242
+-0.21988574
+-0.01563152
+-0.55369379
+0.06545868
+0.49531425
+0.03905460
+-0.73926499
+-0.82838481
+0.91311385
+0.87616546
+-0.18725165
+0.44765805
+-0.70543582
+0.93741157
+0.40157136
+-0.05103264
+-0.01975921
+0.54857703
+-0.37489230
+0.94805173
+0.49565097
+0.89246006
+0.25420915
+0.98641883
+-0.82655812
+-0.90230293
+-0.05090302
+0.89925094
+0.30716900
+0.05273215
+-0.90283460
+0.80620948
+-0.98819617
+0.10074407
+-0.06521718
+-0.62926553
+0.70627830
+-0.12620163
+-0.94431369
+0.61921342
+-0.47530729
+0.60718251
+0.41935503
+-0.35882178
+0.53224553
+0.52892020
+0.48678249
+0.81307697
+-0.57596795
+-0.78297628
+-0.78220522
+0.21936668
+0.94376554
+0.31199120
+-0.86121901
+0.65392731
+0.11025243
+0.55376657
+-0.01745876
+-0.42838838
+-0.93995397
+-0.93050598
+-0.61068361
+-0.26723393
+-0.27149693
+0.17821171
+0.88896058
+0.34005995
+-0.91886937
+0.98427314
+-0.00854829
+0.61715165
+-0.87542613
+0.19386445
+-0.08004758
+-0.36019019
+0.95345338
+-0.54605689
+-0.48600864
+-0.73497720
+0.16435172
+-0.19765177
+1.01898858
+0.79349421
+0.91886016
+0.92676518
+0.97100900
+0.11594703
+0.28204293
+-0.75544485
+0.11478009
+-0.18630061
+-0.75662249
+0.65037981
+0.91072695
+0.21567869
+0.34228207
+0.81253196
+-0.71768271
+0.72527320
+0.99876428
+0.39501277
+0.98668970
+0.21403158
+0.50427578
+0.90435087
+0.10089636
+0.62069957
+0.18563865
+0.39753186
+-0.40581122
+-1.01117203
+0.18700725
+-0.78825225
+-0.13614548
+-0.45136250
+0.56016207
+0.99659960
+-0.31539805
+-0.22654080
+0.21318615
+-0.59674751
+0.90595774
+-0.65809566
+0.91002653
+0.31147809
+-0.50811855
+-0.53135329
+0.11437819
+-0.77392940
+0.09199345
+-0.02206517
+0.88183072
+-0.44625575
+-0.34261397
+0.26494545
+-0.16962024
+0.00014833
+0.02671267
+0.07102752
+0.04719651
+0.91945770
+0.29367891
+0.29817309
+-0.92257381
+0.29459159
+0.05185038
+0.39646598
+-0.79236517
+-0.42932834
+-0.14671260
+0.25575192
+-0.71507270
+-0.37590061
+-0.87416508
+-0.62965322
+-0.94502796
+-0.27089235
+0.06090741
+-0.21700406
+-0.77597325
+-0.14894955
+-0.38453400
+-0.53605394
+0.30664384
+0.03105068
+-0.58823104
+0.42807553
+0.35433797
+0.21203840
+-0.40890664
+0.88076176
+-0.12972289
+0.04358948
+-0.14279151
+-0.34279168
+-0.67912624
+0.57731769
+0.53116469
+0.21952116
+0.65046179
+0.16769423
+0.71416390
+0.33333255
+-0.37025863
+0.10517895
+-0.50383387
+-0.08430448
+-0.29368724
+0.00465476
+0.67705250
+0.61771371
+0.89372861
+0.78808035
+-0.70172590
+0.44120669
+0.14927669
+-0.71778756
+-0.76079075
+-0.08408469
+-0.51975474
+-0.36805402
+0.81424510
+0.86235203
+0.95843840
+0.48914787
+-0.77754509
+0.11548642
+-0.25418197
+0.75518924
+-0.11542834
+0.34741224
+-0.09564404
+-0.83667899
+0.00601625
+0.18920286
+0.19757215
+0.21263296
+-0.14659188
+0.74289090
+0.18857182
+-0.76473323
+0.73420907
+-0.12944356
+0.97408462
+0.04709167
+0.10427925
+-0.24554677
+-0.73173229
+0.95415253
+0.47832859
+0.20423497
+-0.37028062
+0.88632451
+0.79612565
+-0.03536009
+0.60537038
+0.93355118
+-0.31798972
+-0.60428709
+-0.19910049
+-0.99668353
+0.70618952
+0.88067530
+-0.90256850
+0.11425145
+0.08392141
+-0.24684317
+-0.76430419
+-0.83621691
+-0.65043756
+0.32157101
+-0.15943771
+-0.62583308
+0.58821595
+0.61802919
+0.16139481
+-0.60354240
+0.48784714
+0.86755592
+0.80565048
+-0.21004180
+-0.77855722
+-0.04864349
+-0.45135075
+0.91604371
+-0.12165638
+-0.23586989
+0.33516936
+0.52859849
+0.19999600
+0.87248995
+0.49460007
+-0.79308843
+0.48847234
+0.05466039
+0.73758707
+-0.71130968
+0.96662836
+0.12388021
+0.89448310
+-0.13774387
+0.78888393
+-0.09095695
+0.86785686
+0.72053276
+-0.33898821
+0.48201337
+-0.00355173
+0.46011491
+-0.01827171
+-0.61603221
+0.33570978
+-0.08892281
+0.32356584
+-0.95201109
+-0.50839630
+-0.12553489
+0.07314718
+-0.37477481
+0.56391096
+-0.62552801
+0.75796580
+-0.57890910
+-0.96525975
+0.58541048
+0.03537190
+-0.06965035
+0.56587958
+-0.83317305
+0.08630693
+0.03767037
+0.73633957
+0.75986981
+-0.72027832
+-0.00168788
+0.06334758
+0.09783530
+-0.55016190
+0.88591266
+-0.82809305
+0.77778113
+-0.78795792
+-0.68746716
+0.98174977
+-0.21305734
+-0.97655769
+0.45474422
+-0.58164114
+0.49305832
+-0.14392763
+0.13715661
+0.40340054
+-0.95945882
+0.66394651
+-0.03411144
+0.98789990
+0.04441261
+-0.82646674
+-0.41005975
+0.27954400
+-0.78396943
+0.05641949
+0.84581554
+-0.67515370
+0.10887158
+-0.89471943
+0.72288406
+0.41376626
+-0.93615443
+-0.39288598
+-0.45897347
+0.68557978
+0.00482488
+0.10447729
+-0.17605686
+0.93865395
+-0.68155062
+-0.08115798
+0.87774992
+-0.68336102
+-0.48030919
+-0.85356659
+0.69376910
+0.92790198
+0.23378980
+0.32860434
+0.72377205
+-0.37449926
+0.93316185
+0.22452414
+0.28138316
+0.64565754
+0.39605165
+0.32223499
+0.04243004
+0.00600517
+-0.56778562
+0.74747431
+0.49284375
+-0.85510407
+0.46309090
+-0.32396722
+0.34476972
+-0.41026366
+0.36200488
+-0.00035036
+-0.44995040
+-0.32823223
+0.57635117
+0.38342011
+0.63938487
+0.23590910
+0.76425958
+-0.49797809
+-0.36588705
+0.48014188
+-0.87504710
+-0.91231015
+-0.84582838
+0.03881514
+0.15127683
+-0.96601503
+0.18384635
+0.57069767
+-0.60493892
+-0.88823158
+0.57798529
+-0.69295666
+-0.39201903
+0.84863043
+0.39008343
+-0.91791555
+0.86383879
+-0.07990420
+-0.62756479
+-0.19385749
+-0.52518511
+0.72350430
+-0.50426218
+-0.22990465
+0.72313821
+0.28813279
+-0.18483710
+0.45485640
+0.14992738
+0.49684131
+0.79771066
+0.46013319
+-0.14409649
+-0.40676081
+-0.57754749
+-0.92602734
+0.11704695
+0.00110614
+0.57079327
+-0.08317959
+0.28828728
+-0.33449078
+-0.01291394
+-0.72455606
+0.84455872
+-0.40750277
+-0.08043742
+0.71891224
+-0.76641788
+0.07684016
+0.96660483
+-0.73822844
+0.65545154
+0.59687710
+-0.30495280
+0.08093607
+0.71837854
+0.83737993
+-0.35682279
+-0.36500430
+0.25890696
+0.74279368
+-0.58697695
+-0.05658174
+0.04511631
+-0.20461822
+0.38266230
+0.14263630
+0.51834488
+0.79006124
+-0.02554882
+0.01054490
+-0.13190913
+0.27420080
+0.71393657
+-0.34240490
+0.03923535
+-0.08214474
+-0.79435515
+0.10569310
+0.67287624
+0.76008081
+0.39045930
+-0.57548729
+0.31926644
+0.91776252
+0.64815187
+0.16437829
+0.32191837
+-0.50875542
+-0.16258276
+0.52531695
+0.62043977
+0.83622265
+0.64846075
+0.02332461
+-0.09223801
+0.17234492
+0.27031887
+-0.48581535
+-0.02607465
+-0.62905011
+-0.46548289
+-0.62240562
+-0.35465467
+-0.27941960
+-0.51925379
+-0.67136189
+0.49124432
+-0.87511480
+0.33909321
+0.60483754
+-0.13796556
+0.63651669
+0.38343310
+-0.35561478
+0.48787117
+0.78894758
+-0.18537772
+0.42763054
+-0.75410460
+0.20795810
+-0.88010582
+-0.05486572
+0.56189561
+0.95692158
+-0.47152025
+-0.67094496
+0.47457612
+0.54371214
+0.57788825
+0.03123784
+-0.37150860
+0.70335591
+0.62668788
+-0.86848405
+-0.53978834
+0.40753841
+0.24059546
+0.10496116
+-0.11763602
+-0.58045113
+0.79697859
+0.94656324
+-0.11419559
+-0.75674821
+0.70786667
+-0.57665107
+-0.52295151
+-0.87276952
+-0.76907098
+0.16942298
+-0.95697661
+0.09017444
+0.69865823
+0.44330442
+0.44811440
+0.84621489
+0.66005516
+0.28579319
+-0.25188559
+-0.54304555
+0.65220201
+0.74695277
+0.83515823
+-0.50074649
+0.57290101
+0.38930511
+-0.05021209
+-0.70993626
+-0.05398452
+-0.76638092
+0.68346429
+0.57441473
+-0.38337272
+-0.60784701
+0.48083580
+-0.55835351
+0.31149459
+-0.94521657
+-0.43396443
+-0.07732129
+-0.95965540
+-0.20639801
+-0.19308203
+0.84991026
+-0.86372107
+0.85194969
+0.15894079
+0.62628901
+-0.68943807
+-0.85475720
+-0.64181656
+-0.71353745
+0.74503434
+-0.16907710
+-0.77845593
+0.07418120
+0.16408417
+0.47637035
+0.44305248
+-0.89962632
+-0.55460699
+-0.33320360
+-0.05611457
+0.05807143
+-0.61244597
+0.38642514
+0.29360993
+0.05695579
+0.80761551
+0.79367249
+0.54938108
+-0.51988404
+-0.95338418
+-0.43971228
+-0.84291082
+0.24601686
+0.43741108
+-0.00424498
+-0.47290842
+0.69597396
+-0.96803138
+-0.37586859
+0.20870452
+0.21810771
+0.49739337
+0.95428351
+-0.43369262
+-0.17102099
+0.14498353
+-0.91909656
+0.29342620
+-0.51970502
+0.78746265
+0.58653465
+0.87232838
+-0.98358814
+0.85312319
+-0.88838807
+0.20053883
+-0.01447511
+-0.03663366
+0.52724728
+-0.04858861
+0.97215369
+-0.96697651
+-0.57645878
+-0.97259847
+-0.76303742
+-0.77093924
+-0.27188654
+0.21813673
+-0.76151840
+-0.06327973
+-0.82445824
+0.75105831
+0.44091401
+0.30127756
+0.93076344
+-0.34469051
+-0.06794251
+0.79376086
+0.39933925
+-0.43366049
+-0.63085685
+0.25138447
+0.73368343
+0.17673343
+0.39576145
+-0.10745163
+-0.78633270
+-0.82775312
+-0.50154349
+0.23164291
+-0.09331203
+-0.64224617
+0.81236381
+0.17576098
+-0.40743449
+0.93200793
+-0.73515481
+-0.15587564
+0.37512386
+-0.26786812
+-1.01492062
+-0.32175789
+-0.22976202
+-0.39086340
+0.78599869
+-0.44871156
+-0.23196641
+-0.98132106
+-0.64014791
+0.12204762
+-0.62818429
+0.02208721
+0.38085695
+0.16018261
+-0.98975891
+0.69011677
+-0.31795914
+0.69186802
+-0.31712873
+-0.89258122
+0.24009320
+0.30434165
+-0.32580432
+-0.09289999
+-0.68961754
+0.57153021
+-0.35425200
+-0.80625234
+-0.12170065
+-0.39797750
+0.02435467
+0.40547523
+-0.92606175
+-0.13649397
+0.17530278
+-0.34401562
+-0.25413130
+0.47789958
+0.85792774
+0.13589197
+0.81028159
+0.10040653
+0.08208808
+-0.36975406
+0.20255958
+-0.49694175
+-0.16751264
+-0.60146213
+-0.91629125
+0.89566999
+-0.39180640
+0.70914994
+0.03139019
+-0.05590835
+0.16806581
+0.69282976
+0.80807562
+0.85573842
+-0.43293625
+-0.12898315
+-0.20279794
+-0.96170469
+-0.52350702
+-0.07706243
+-0.71913342
+0.80024095
+0.99973877
+-0.74627791
+0.64729427
+0.78657643
+0.08763121
+-0.86014529
+0.57030936
+-0.88508898
+-0.97712105
+-0.55936675
+0.20960086
+-0.66231690
+-0.33823416
+-0.96196398
+-0.29172132
+-0.76994405
+0.06288963
+-0.06078018
+-0.07104910
+-0.16687548
+0.23826792
+-0.62203633
+0.06442461
+-0.00449858
+-0.94899987
+0.43041879
+-0.61915419
+0.37846642
+-0.92147257
+-0.40190254
+0.29998095
+0.63070814
+-0.43633321
+0.05914730
+-0.26256632
+0.20714633
+0.79923966
+0.60944028
+0.78943957
+0.46405509
+0.97718668
+-0.10963515
+-0.03848938
+0.61656578
+-0.83830000
+0.38839283
+0.08269218
+0.44783454
+-0.09501314
+0.15584482
+-0.81695316
+0.19154283
+0.17520084
+-0.79593496
+-0.94168387
+-0.48789089
+0.06018130
+0.33202509
+0.02857011
+-0.72967674
+0.66661605
+0.88996626
+-0.63448281
+0.27088207
+0.38821722
+0.66971847
+0.62141084
+0.67473225
+-0.97867462
+-0.19693841
+0.64243115
+0.43326815
+-0.18157017
+-0.10753269
+-0.74990282
+0.28209561
+0.16111506
+0.21748856
+-0.74054120
+-0.81578620
+0.25740374
+-0.31294493
+-0.50676111
+-0.99853378
+0.29714897
+0.81255406
+0.40336324
+-0.15180268
+-0.69430025
+0.35589914
+-0.77263263
+0.88378509
+0.95403284
+-0.69552503
+-0.60383764
+0.46797985
+-0.96667092
+-0.57912340
+0.19483774
+-0.53616296
+-0.31796794
+-0.09418104
+0.00368017
+0.02454798
+0.06997028
+-0.66788355
+-0.33171557
+0.45536319
+-0.72953756
+-0.76608605
+0.53155364
+-0.82059617
+-0.90871155
+-1.01007020
+-0.08037255
+0.19941896
+0.95126773
+-0.34024531
+-0.67081391
+0.55994079
+0.11188290
+-0.38327942
+0.56261252
+-0.02189320
+-0.09553777
+0.58746440
+0.18862814
+-0.88414943
+-0.45021550
+0.27208441
+-0.66737235
+-0.53504627
+0.28718163
+-0.56651008
+-0.73876225
+0.69628880
+-0.08281151
+-0.38391189
+0.71859624
+0.22730027
+0.71494973
+-0.95665049
+-0.80222808
+-0.46075519
+0.41814379
+0.46560697
+-0.28315170
+0.16179110
+0.10390192
+-0.60960588
+-0.55127748
+-0.92882958
+-0.34770677
+-0.02205926
+0.39174093
+0.83157656
+-0.22956801
+0.36470022
+-0.80660932
+0.94860872
+-0.01920220
+-0.23903419
+-0.71692908
+0.74952665
+0.61323607
+-0.54605003
+0.29146623
+0.83607246
+0.19242826
+0.33155474
+-0.60326922
+-0.51198039
+-0.88329683
+0.14935485
+0.25173783
+0.15527780
+-0.27719516
+-0.26354057
+0.58362159
+-0.79983367
+-0.69934765
+0.59823785
+0.08963462
+-0.81742313
+-0.63680589
+0.62909084
+-0.59008904
+0.55861164
+-0.65939944
+0.13250706
+-0.75241170
+-0.07763819
+-0.10885508
+-0.43512537
+-0.33380472
+-0.32059933
+0.49635953
+-0.84764089
+-0.03725957
+0.76679108
+0.52339584
+0.28181096
+-0.69017820
+-0.89538999
+-0.38308319
+-0.13197643
+0.89508091
+0.80032821
+-0.01032070
+-0.47170055
+0.33092797
+-0.61900224
+0.85779719
+-0.15254144
+-0.58284922
+-0.13335958
+0.01670976
+0.81281533
+0.34370882
+0.64959247
+0.31270418
+-0.65401196
+-0.28117194
+0.84174784
+-0.09893813
+0.52327366
+-0.90460191
+-0.72804337
+0.46043193
+-0.91946801
+-0.85875352
+0.25640606
+-0.01210629
+0.02373476
+-0.08746099
+-0.94491683
+-0.22940949
+-0.32107285
+0.06269342
+-0.06581143
+-0.22434337
+0.90127193
+-0.35371423
+0.57382378
+-0.19988815
+-0.11117737
+0.24733364
+-0.96438737
+0.73151852
+0.56416171
+-0.40218767
+-0.38417633
+0.95524685
+-0.89950527
+-0.96308250
+0.10207017
+0.91561890
+0.18265120
+0.33501335
+0.90749110
+0.82285014
+0.90070826
+0.01046678
+-1.01278171
+-0.05399908
+0.32170680
+-0.36106482
+0.92109223
+-0.43636528
+0.83555367
+0.71203070
+-0.96618490
+-0.78927862
+0.93673438
+-0.07448184
+-0.65097718
+-0.22587840
+0.65740895
+0.93806411
+0.45179611
+0.19185021
+-0.58426316
+0.16556786
+0.70675550
+-0.26205799
+-0.47581843
+0.42315336
+-0.66724009
+-0.64653994
+-0.07822703
+-0.20787722
+-0.00634650
+0.03432252
+-0.36760112
+-0.71072171
+0.91668925
+-0.48610125
+0.71932030
+0.42596733
+0.01621951
+0.72451696
+0.25883920
+-0.00759787
+0.93332491
+0.27425557
+0.42639619
+0.33811666
+-0.86901939
+-0.35599256
+0.82108718
+0.67004242
+0.81156217
+0.48515079
+-0.11660140
+0.62382495
+-0.87465316
+0.60482484
+0.47929162
+-0.35582710
+-0.55193435
+0.38094656
+0.00177101
+-0.11210348
+0.71039576
+0.47048344
+-1.00164529
+-0.65342462
+-0.88531645
+0.77912744
+-0.89437447
+-0.27360216
+-0.90531833
+-0.88332289
+0.71106776
+0.71186703
+-0.35463505
+-0.69345587
+0.70436974
+0.31816958
+-0.97651839
+0.51704726
+-0.81134666
+-0.34755701
+0.49989398
+-0.90073172
+-0.27974561
+-0.71887367
+-0.53656048
+-0.62223514
+0.62243673
+-0.91164498
+0.45215620
+-0.09884257
+-0.36831877
+0.31038819
+0.00573654
+-0.91819062
+-0.99262160
+-0.39264097
+-0.03778667
+-0.97305837
+0.74911766
+0.49790890
+-0.11631054
+-0.13477230
+-0.56390107
+0.55909175
+0.28275728
+0.76225093
+0.66236136
+-0.53015894
+-0.33647738
+-0.57274697
+0.37357336
+0.15995008
+-0.27312466
+-0.74839604
+0.30240095
+0.97742931
+0.71102641
+-0.54012331
+-0.60030997
+0.93081370
+0.59640877
+-0.90601777
+0.39321929
+-0.01074983
+0.48374516
+0.43496751
+0.13147843
+0.61693349
+-0.77300247
+-0.86320035
+-0.78755862
+-0.74597031
+-0.38761828
+0.31106338
+0.69229586
+-0.33381305
+-0.63864593
+0.98097185
+0.60571933
+0.84271538
+0.02654188
+-0.61479885
+-0.82731945
+-0.25889489
+-0.10633431
+-0.69563482
+-0.40414180
+-0.18914767
+-0.44780771
+0.02433121
+-0.37299006
+-0.16311916
+-0.29950260
+0.20210061
+0.12419713
+-0.21935056
+0.61244342
+-0.48828455
+0.40613866
+0.11886215
+0.59524240
+-0.17223412
+-0.38405709
+-0.47106850
+0.07801509
+-0.65900598
+-0.56445339
+0.35717861
+-0.78620020
+-0.95569604
+-0.46933470
+-0.36158925
+0.68174685
+0.44692767
+-0.70689163
+0.21347602
+-0.82318761
+0.41649191
+-0.35313302
+-0.52433452
+0.50603534
+-0.25465035
+0.34042813
+0.85049450
+0.37687516
+-0.11782358
+-0.84296779
+0.43316953
+0.02908540
+0.39341128
+0.10868980
+0.75801075
+-0.47579651
+0.99191475
+0.69567656
+0.04155906
+-0.22032555
+0.53811260
+-0.87584222
+-0.03842173
+0.13831478
+-0.70648530
+0.34007676
+-0.67056480
+-0.93730994
+0.78300377
+-0.65486107
+-0.09650695
+-0.59220595
+-0.97826242
+0.75547525
+-0.14557382
+-0.16726612
+0.71399117
+0.26574249
+-0.18533883
+0.47618414
+-0.11181199
+0.55435437
+0.09544969
+-0.38890596
+-0.91110432
+0.26215171
+-0.94494977
+-0.76517672
+-0.40910495
+-0.42365570
+-0.96873821
+0.65869635
+0.43456305
+-0.87373293
+-0.26281243
+0.89826629
+0.31195223
+0.74376078
+0.04879472
+-0.03917081
+-0.34904111
+-0.34454715
+-0.24606495
+-0.69173209
+0.49676860
+0.82119523
+-0.93935915
+0.75966079
+-0.14187923
+0.85323750
+-0.45375134
+-0.56807703
+0.56387866
+-0.85188839
+-0.88665953
+0.86628125
+-0.20569307
+-0.05148058
+0.78227720
+-0.36526675
+0.79227464
+-0.38314390
+-0.24745660
+-0.43988721
+-0.92761449
+0.28871224
+0.95845032
+-0.80169633
+-0.76218152
+0.98696505
+-0.52479110
+0.34745640
+0.36835170
+0.12220408
+0.24023128
+0.74376677
+-0.14375371
+0.88613899
+-0.76767490
+-0.06916477
+-0.48116653
+-0.39028608
+0.49630440
+-0.09002347
+-0.88120170
+0.77522569
+0.32030082
+0.45462334
+0.59232866
+0.22185075
+0.60139266
+0.26493741
+0.68117871
+-0.73467468
+0.14432406
+-0.26677203
+0.00766718
+0.94919205
+0.57695663
+0.28861141
+-0.62331840
+-0.28560382
+0.43517637
+-0.84375434
+-0.56634480
+0.40365195
+-0.21947163
+0.13184440
+-0.76509090
+-0.20429039
+0.82577813
+0.26941657
+-0.19341642
+0.70761597
+0.23738706
+0.28023171
+0.60367632
+0.19516134
+-0.42917621
+-0.85420094
+0.00242090
+-0.02992660
+0.81136763
+0.24018908
+0.32205796
+-0.70091423
+0.58375955
+-0.49506462
+-0.52522779
+-0.06188399
+0.68398392
+-0.63517484
+0.29690897
+0.76762819
+0.68411267
+0.42296159
+-0.71829411
+-0.02009803
+-0.88957653
+-0.01177377
+0.61647129
+0.89557660
+-0.99214637
+0.74313974
+0.33986056
+-0.74498817
+0.17550600
+0.99880362
+-0.65134549
+-0.91849674
+-0.13533843
+-0.51203385
+0.48429668
+-0.90583514
+0.69163585
+0.17875993
+0.21017146
+0.02632749
+0.20889056
+-0.61957788
+0.31398559
+-0.03635782
+-0.32522523
+0.06300199
+0.91714871
+0.33893096
+0.75414908
+-0.68393084
+-0.23499823
+0.52266908
+-0.73747787
+0.33629572
+-0.28982687
+0.07869422
+-0.88106749
+-0.02385294
+-0.80413342
+0.94185162
+0.83978796
+0.02767229
+0.42022157
+0.78257084
+-0.94545604
+0.38008070
+0.09555006
+0.34623599
+0.87171447
+0.25702512
+0.31827044
+-0.19512588
+-0.90626170
+-0.43565100
+0.89026880
+0.62203574
+0.54157197
+-0.63309640
+0.84626639
+-0.95539566
+0.17274725
+0.31056273
+-0.28744990
+-0.49454325
+0.13425934
+0.71862221
+-0.83908354
+0.94292057
+-0.94465324
+0.04833984
+-0.33711302
+0.49962139
+0.31257784
+-0.94944904
+0.54372239
+0.55960894
+0.31542277
+0.88104022
+-0.92914467
+-0.11412126
+-0.30711663
+0.73872066
+-0.06802791
+-0.62583810
+0.05158961
+-0.11212248
+0.28564382
+-0.24864185
+0.17781889
+0.27349985
+-0.35341460
+-0.32174575
+0.64185238
+0.22834635
+-0.48740822
+-0.43581295
+0.29601181
+-0.80563027
+-0.46768785
+-0.84966438
+-0.90485168
+-0.81435633
+-0.67882040
+0.50169837
+0.74342954
+0.23927283
+0.32165372
+0.09842908
+0.62704837
+-0.71075743
+0.42915618
+-0.07718587
+-0.49035293
+-0.07514191
+0.79872799
+0.08533013
+-0.79434687
+-0.95254444
+-0.73910391
+-0.22379130
+0.73735297
+-0.57977092
+-0.68620506
+-0.10676521
+-0.97190130
+-0.15670884
+-0.53173402
+-0.69210425
+-0.44049269
+-0.66422167
+-0.77233629
+-0.20762146
+-0.37756211
+-0.04908580
+0.26006174
+0.91700184
+-0.66500932
+0.08426404
+0.66241431
+-0.03320014
+-0.95951871
+0.79914773
+-0.86755130
+-0.34793764
+-0.47730333
+-0.90470494
+-0.43171775
+-0.50211585
+-0.39799070
+-0.03902888
+-0.80128044
+0.87173653
+-0.97985740
+0.17002916
+-0.15030140
+-0.53413954
+0.65960228
+-0.54168418
+-0.10424399
+0.83940458
+-0.45111758
+0.62027800
+-0.02314329
+-0.86046028
+0.18676877
+-0.22261137
+0.29996634
+0.04040730
+0.69318283
+-0.20685929
+0.17209804
+0.56025743
+-0.98989227
+0.98245168
+-0.74902779
+-0.74838570
+0.54057014
+0.04646146
+-0.58116296
+-0.88171872
+-0.99118677
+-0.29723644
+0.25004971
+-0.26982731
+-0.97139841
+-0.64511597
+0.43181443
+0.33922887
+0.48181415
+-0.37577230
+0.92158771
+0.73492217
+0.78322327
+-0.44271946
+0.59954071
+-0.73825243
+-0.40605980
+0.72411478
+0.57784712
+-0.15361577
+0.79142082
+-0.43471754
+0.21866584
+-0.30036014
+0.89090955
+0.58792710
+-0.99904750
+0.40977454
+-0.30161858
+0.11415136
+0.73095429
+0.19565201
+-0.54258189
+-0.54581150
+-0.15021431
+0.15016031
+0.56842124
+0.45529664
+-0.47934180
+-0.08969504
+-0.39343941
+-0.67549163
+-0.43175679
+0.75730479
+-0.56801996
+0.71004689
+0.53774202
+-0.27125406
+-0.45893013
+0.24191225
+0.95491767
+-0.66665035
+0.01125479
+-0.57049930
+0.61113346
+-0.40092921
+0.18620503
+-0.80025701
+-0.52433631
+-0.95516806
+0.78850019
+0.89322793
+0.97952116
+-0.58975238
+-0.13114750
+0.62981200
+0.86203837
+-0.44239277
+0.97205257
+0.59594917
+-0.41952491
+-0.74919826
+0.59109914
+0.17708087
+-0.51537997
+0.20853519
+0.91415441
+0.97038400
+-0.44350898
+0.64852713
+-0.22691155
+0.87645033
+-0.45765210
+-0.26322162
+0.36659975
+0.23334361
+0.09672504
+-0.53749686
+0.71001554
+-0.66631781
+0.64009306
+0.74092077
+-0.87012979
+0.89154369
+-0.23612522
+-0.43856375
+-0.33735871
+-0.12254020
+-0.95734004
+0.54834272
+-0.48704281
+0.48345323
+-0.33482906
+0.51943651
+-0.64838813
+0.35257764
+0.88300688
+-0.81195601
+-0.52610224
+0.46473320
+0.81918732
+1.00642627
+-0.04890759
+0.28907315
+0.95072882
+-0.60963937
+-0.29527744
+-0.83799029
+0.44937450
+0.97953927
+-0.20489133
+-0.55997773
+-0.25113048
+0.67749473
+-0.54509260
+-0.99330361
+0.55960673
+0.13674915
+0.48889461
+0.83754575
+0.19427812
+-0.28905480
+0.14715725
+-0.54288744
+0.81542038
+0.96365429
+0.32601325
+-0.60847435
+0.57475044
+-0.88600316
+1.03558551
+-0.88678247
+-0.72726755
+-0.92810920
+0.35112258
+0.78641059
+0.22552469
+-0.59461343
+-0.46139504
+0.01497549
+-0.14940165
+0.68860866
+0.64464969
+-0.08995006
+0.73450399
+0.76706713
+0.91002263
+-0.38845936
+0.39008955
+0.65733227
+-0.87310483
+0.20288357
+0.38750935
+0.10860751
+0.94454796
+0.66613184
+0.59363430
+-0.89808705
+0.66670975
+0.03971615
+0.95465668
+0.52905878
+-0.41692283
+0.22781986
+-0.42486432
+-0.80441834
+0.88375017
+-0.37733780
+-0.32810132
+-0.79526914
+0.34236305
+0.31857158
+0.41128594
+-0.04104640
+0.35935961
+0.39519570
+0.20134365
+0.28666685
+-0.10846278
+-0.87579867
+-0.82511757
+-0.37907504
+-0.16171220
+0.86568749
+-0.73529960
+-0.45092368
+-0.87851696
+-0.02102724
+-0.42184392
+-0.77385668
+-0.45695235
+-0.60017257
+-0.85977689
+0.20277701
+-0.99363478
+-0.95620390
+0.97968147
+0.97047703
+0.96399868
+0.12031222
+0.57418398
+-0.04608345
+0.41912389
+0.54692029
+0.44476235
+0.96979785
+-0.52929861
+-0.92681011
+0.60925957
+0.17224599
+0.93054339
+0.38913222
+0.68703889
+-0.61002412
+0.71954831
+0.73923623
+-0.85113005
+-0.19160328
+-0.48567419
+0.84869827
+0.93349214
+0.74226819
+-0.69965553
+-0.21030856
+0.14599224
+-0.64949709
+1.05001693
+-0.06623602
+0.05427678
+0.56912635
+0.39677857
+-0.32923565
+-0.61461156
+-0.75191344
+0.40829188
+-0.64422826
+-0.99586211
+-0.08335887
+-0.49279895
+0.05571120
+-0.11127879
+-0.44223548
+-0.52188458
+-0.85934380
+-0.52571041
+0.90597433
+-0.30110302
+0.90094915
+-0.45241616
+-0.66418663
+0.57536392
+0.39310065
+0.34169974
+-0.45493279
+0.17543301
+0.20129431
+-0.33053903
+0.92305881
+-0.37958473
+0.36305422
+-0.37394098
+0.78542224
+-0.64334258
+-0.44991139
+-0.40374450
+0.96428217
+0.43127911
+-0.23550551
+0.05532120
+0.76048712
+-0.99373370
+-0.22563583
+0.47586494
+0.47608815
+-0.88271850
+0.16891514
+-0.35048511
+0.31359968
+0.82914692
+0.36095575
+0.57090562
+0.91296951
+-0.36594990
+0.85025104
+0.81058688
+0.40283542
+-0.18937990
+-0.84335325
+-0.01129444
+-0.44787719
+-0.44241667
+-0.33630113
+0.65068131
+0.42578574
+0.36419008
+0.26546933
+0.63757452
+0.61476431
+-0.01495568
+0.01065937
+-0.47136721
+0.17699787
+-0.76145904
+0.30322178
+-0.70871443
+-0.54883992
+0.17379167
+-0.36905668
+0.23257792
+0.11765031
+0.54427048
+0.53226886
+0.26157884
+-0.17425249
+-0.70462591
+-0.01180237
+0.42272833
+-0.64543642
+-0.83647056
+-0.89399653
+0.73256783
+-0.79780549
+0.60840118
+0.30232151
+0.86542938
+0.38567487
+-0.98144406
+-0.60601198
+-0.05212765
+-0.50785797
+-0.73327008
+-0.36888095
+0.57252166
+-0.32930229
+-0.39339474
+0.05872732
+-0.05301385
+0.15338887
+0.70743046
+0.68988733
+0.02082492
+-0.73610140
+0.76508293
+0.61592482
+0.74078634
+-0.39439210
+-0.38678417
+-0.14336417
+0.73988686
+0.27300767
+-0.90527227
+0.35184254
+-0.60023235
+-0.21787138
+-0.18135020
+-0.56822406
+0.99076048
+-0.94597378
+0.73649046
+-0.42890052
+0.87507798
+0.51171958
+-0.01165521
+-0.22467027
+-0.71074153
+0.07074379
+0.63096471
+-0.56419135
+-0.84983009
+0.44594910
+-0.32317994
+-0.80521623
+-0.91676270
+0.95562633
+0.39427283
+-0.47584796
+-0.64212133
+-0.33513727
+0.56840643
+-0.14873533
+-0.56125541
+0.70927945
+-0.71454268
+-0.01242958
+-0.21083127
+0.30753365
+0.27875555
+-0.12827737
+-0.09604133
+-0.66457961
+-0.66306728
+0.65971362
+0.61841829
+0.94350939
+0.66329532
+0.63684873
+0.50232744
+-0.42731684
+-0.06932525
+0.86228063
+0.11435508
+0.54850786
+-0.16619355
+0.36358392
+-0.67938539
+0.57487306
+0.99138631
+0.27176494
+0.43178415
+0.69468580
+0.70109391
+-0.76799102
+0.47951782
+0.37331194
+0.96147775
+-0.05468817
+0.99877357
+-0.22215621
+0.46339666
+-0.05502723
+-0.52591960
+-0.89952548
+-0.68789489
+0.06842098
+0.26810150
+0.34402273
+0.24678936
+0.38977681
+-0.54784558
+0.94565299
+-0.90309837
+0.33058688
+0.94099623
+0.55771247
+0.16192792
+-0.82883226
+0.41293979
+0.52396985
+0.29689542
+-0.38239938
+-0.53866463
+0.32387643
+-0.15408609
+0.04238571
+-0.53170589
+0.54854227
+-0.53442287
+-0.40176972
+0.11494178
+-0.83732587
+-0.86465453
+0.06858963
+0.54986689
+-0.45470115
+0.65759865
+0.61178381
+0.56476808
+0.42662896
+0.62326432
+0.65336365
+-0.68115753
+-0.80473620
+-0.37459274
+-0.72896585
+0.29273974
+0.66268388
+-0.40963561
+0.04051005
+0.65510757
+0.59754957
+0.74294123
+-0.64925726
+0.80358923
+0.54336559
+0.81803772
+0.74466262
+0.75726950
+0.49109163
+-0.55546533
+-0.73259328
+0.94579522
+0.74802719
+0.08008592
+0.00120725
+0.66758435
+0.36237233
+-0.52178949
+-0.38157368
+-0.77676760
+0.24304646
+-0.89382209
+-0.20257454
+-0.33074601
+-0.45922009
+0.35964667
+-0.53136473
+-0.61757362
+0.20983927
+-0.12590076
+-0.68972906
+0.82889395
+0.89112004
+0.65854236
+-0.85513954
+-0.20073127
+0.26250773
+-0.92173803
+0.11888500
+-1.01701253
+0.59211073
+-0.21295989
+0.14700984
+-0.18726409
+-0.53132811
+0.76775028
+-0.21988850
+0.45654117
+0.20158735
+0.74811164
+-0.19414205
+0.42747073
+0.13554714
+-0.30507193
+-0.74846996
+0.27905380
+-0.03216157
+-0.26882354
+-0.25780596
+-0.44218237
+-0.47059793
+0.09878933
+-0.15331921
+-0.79521282
+-0.05307990
+0.84335312
+-0.52436743
+0.96423361
+-0.94338584
+0.29374386
+-0.09055502
+0.01958627
+0.77548447
+0.40694834
+-0.06058754
+-0.10609825
+-0.33275098
+0.31516332
+-0.04436400
+-0.23576958
+-0.00766517
+-0.86480176
+-0.30265985
+0.70880429
+0.71576973
+0.21946967
+0.72327296
+0.15742478
+-0.89815700
+-0.59037378
+0.13244560
+-0.02440026
+0.86663392
+-0.04866535
+-0.12097765
+-0.61117631
+-0.28807864
+0.30459643
+0.25752959
+-0.98485116
+-0.22141918
+0.16595856
+-0.63211655
+0.08012676
+0.46863746
+-0.71912133
+0.39722751
+-0.91507079
+0.18058502
+0.76280165
+-0.04981329
+0.39918976
+-0.11008365
+0.42839793
+0.34956985
+0.67296949
+0.42116331
+-0.20612819
+-0.91473753
+0.10800708
+0.19432221
+-0.57181594
+0.67279529
+0.19085329
+0.60838663
+0.51739971
+-0.63058669
+-0.36748974
+0.83428617
+-0.79097928
+0.92530756
+-0.04479167
+-0.12891925
+-0.86784612
+0.26758862
+-0.93146526
+0.60815949
+-0.36934055
+-0.56192338
+0.30818207
+-0.81247053
+0.61239656
+0.95382218
+0.30843989
+0.34659696
+-0.68794641
+-0.22726221
+0.35375395
+-0.59702067
+-0.86127754
+-0.81031189
+0.79337295
+-0.22811987
+0.59122841
+-0.30109846
+-0.94125934
+-0.24120594
+-0.84456100
+-0.37158607
+-0.39149133
+0.58381525
+-0.59449791
+0.47747192
+-0.29932888
+-0.70317407
+-0.62180796
+0.49484684
+0.52010869
+0.65215005
+-0.23886028
+0.74358428
+0.01546713
+-0.35076567
+0.40602533
+0.15487277
+-0.48538280
+-0.21881155
+0.36345863
+-0.09631603
+-0.94936981
+-0.45627534
+-1.00734473
+-0.93638199
+0.80022399
+-0.38088518
+0.82844853
+-0.58244766
+0.36611044
+-0.72643803
+0.07140052
+0.60183990
+-0.40716896
+0.19824490
+0.25592880
+-0.54840156
+-0.67740944
+0.60239066
+0.28954482
+-0.61024095
+0.80307579
+-0.20298779
+-0.26860801
+0.38732657
+0.36573426
+-0.76277207
+0.67804217
+-0.97190963
+-0.72248909
+-0.03531014
+0.53534400
+-0.65996156
+-0.03875107
+0.29529702
+-0.49984634
+-0.09441910
+0.84087961
+-0.50816463
+0.94941119
+0.82502601
+0.11258018
+0.06887204
+0.50870603
+-0.44192425
+-0.26614252
+0.36374337
+0.30322075
+0.37495378
+0.54837776
+0.94586968
+0.05266261
+0.66702981
+-0.33655537
+0.82599553
+0.23402247
+-0.69769928
+-0.33330595
+0.24466160
+0.90932871
+-0.78972254
+0.58440185
+0.30822403
+-0.99584319
+-0.51125737
+-0.63801483
+0.34642440
+-0.15493392
+0.42565916
+-0.99354726
+-0.46481357
+-0.92200408
+0.60016532
+-0.10685941
+-0.95377191
+0.22411208
+0.67259342
+0.21090711
+0.72668041
+0.57138491
+0.17119871
+0.64640808
+-0.82782968
+0.43585453
+-0.31470663
+0.16428642
+0.81058055
+0.15278400
+0.68476750
+-0.08905684
+0.39607487
+-0.69143766
+0.67053122
+-0.52827435
+0.48265313
+0.39419418
+0.11920208
+-0.63971078
+-0.03041838
+0.77383722
+-0.64029833
+0.69888794
+0.34551103
+0.17871282
+-0.15779592
+-0.27654142
+0.30019492
+-0.46249228
+0.57695355
+0.77688874
+0.09984766
+0.75738549
+0.23888811
+0.31625496
+0.65861792
+0.53919658
+0.59605504
+-0.09415692
+-0.39506374
+-0.89673352
+-0.71478646
+0.50759590
+-0.38710469
+-0.77066027
+-0.42040259
+-0.84457721
+0.15510297
+0.08368659
+-0.14883149
+-0.41115636
+-0.51279774
+-0.92292194
+0.18748319
+0.68025124
+0.74733520
+0.20215392
+0.75859582
+0.98677266
+0.49452126
+0.49907231
+0.64870906
+-0.25182974
+0.06657386
+-0.99488458
+-0.44967675
+0.98265302
+-0.09206873
+-0.69631934
+0.51532269
+0.51553500
+-0.16314936
+-0.85216203
+-0.11746246
+-0.39712620
+-0.80511725
+-0.64146760
+0.88365412
+0.69023252
+-0.00890738
+-0.55566067
+0.78115296
+-0.76365896
+-0.56068900
+-0.12840545
+0.10558379
+0.55117106
+0.82524848
+-0.31294698
+0.38456511
+0.67799294
+-0.32621562
+0.42197454
+-0.50135428
+0.74706268
+0.26731062
+0.63558614
+0.42637992
+-0.83365108
+0.90502071
+0.36503828
+0.77933526
+-0.67248583
+0.32814181
+0.29030979
+-0.17541504
+-0.06485385
+0.28415871
+0.36942506
+-0.37752980
+0.57212651
+-0.66193163
+-0.77109484
+-0.33297449
+-0.61148944
+0.24015379
+-0.29363388
+-0.84620100
+-0.15390909
+0.49533260
+0.29946303
+0.26146460
+0.39375842
+0.23261380
+-0.54244807
+0.82009375
+0.88252115
+0.56094241
+-0.35029149
+0.98309052
+-0.09007764
+0.90994060
+0.56673896
+-0.43285847
+0.40885425
+-0.08136994
+0.96883166
+-0.48618799
+0.61039901
+-0.48250306
+0.03303170
+-0.29175860
+0.14652884
+-0.72981322
+0.97673881
+0.07402158
+0.14927518
+-0.44741565
+0.90781367
+0.78946126
+0.57190263
+-0.82417753
+0.54779041
+0.69747233
+0.10064757
+0.25572789
+-0.80820981
+-0.05617863
+0.36937749
+-0.86558536
+-0.77514164
+0.07737684
+0.21749532
+-0.34401143
+0.69142747
+-0.79346186
+0.94186413
+0.59827662
+0.71496713
+-0.60849911
+0.06556880
+0.83036351
+-0.39213723
+-0.74901366
+-0.21258098
+-0.23187333
+-0.12604713
+-0.74350253
+-0.59894368
+0.36963487
+0.36167169
+-0.28978038
+-0.30948991
+-0.17702043
+0.12952220
+0.38994360
+0.38078892
+0.13341427
+0.81592917
+0.05221605
+0.32887769
+0.95877719
+-0.63089961
+0.74086905
+0.96741581
+0.22722936
+0.35951126
+0.63337159
+0.30357075
+0.39427888
+-0.07706350
+0.64687157
+-0.82652070
+0.90013897
+0.77876115
+-0.61878240
+-0.20820600
+0.96797633
+0.51267076
+0.55298626
+-0.65220770
+-0.37776750
+0.28055441
+-0.86293066
+-0.04998839
+-0.70740563
+0.27864051
+0.35763776
+-0.54847154
+-0.07025421
+-0.73227829
+-0.83948430
+-0.11054575
+0.98380613
+0.28466010
+-0.91459806
+0.86228180
+0.07612979
+-0.23165768
+-0.84917864
+-0.87534095
+0.15764844
+-0.70606232
+0.78366196
+0.06032801
+0.43211520
+0.12674117
+0.71290004
+-0.25523221
+0.84227920
+0.26710320
+-0.29374546
+-0.82268555
+0.72150791
+0.67272115
+0.65158570
+-0.19906151
+0.38914394
+0.53964925
+0.51817036
+-0.40505815
+-0.98555203
+0.26258993
+0.31775379
+0.06177139
+-0.88095655
+-0.32685286
+-0.32112211
+-0.95541715
+-0.39368671
+0.93783557
+0.20679200
+0.49124193
+0.33244228
+-0.20530325
+-0.41179299
+-0.82344678
+0.43231022
+-0.51655006
+-0.60560918
+-0.79416718
+0.79765260
+0.76314259
+0.33005929
+0.45386159
+-0.01501888
+-0.14292353
+-0.79341657
+0.38585281
+-0.01522315
+-0.39793563
+-0.13376182
+-0.33066726
+0.34937727
+0.44083428
+-0.47929543
+0.74104953
+0.66812611
+-0.38331932
+-0.73286954
+0.81882572
+0.81631386
+0.93692279
+-0.10343903
+0.36731648
+-0.88559820
+0.47790265
+0.62290621
+-0.82027078
+0.27054381
+-0.18235427
+0.40406907
+-0.24128497
+-0.82671453
+-0.50657278
+0.93387651
+0.18677628
+-0.46898329
+0.87546325
+0.94401741
+-0.64039928
+0.79861927
+-0.89439990
+0.24088836
+-0.77243474
+0.85005271
+0.35821128
+-0.36311561
+-0.84472801
+0.13649046
+-0.90925639
+-0.49401671
+0.19374275
+-0.67628786
+-0.62892285
+0.61996913
+0.73282349
+0.02333081
+-0.56522003
+0.60719442
+0.52470767
+0.84296787
+0.09588826
+-0.27785373
+-0.73017523
+0.01919496
+0.81327069
+0.93918455
+0.92677033
+0.70153201
+0.25446486
+-0.23301846
+-0.34347242
+0.06853104
+-0.26626480
+0.78684986
+0.86253750
+-0.23046696
+0.59371912
+0.50306880
+0.42484331
+-0.13740599
+-0.98640859
+0.71745741
+0.40876279
+0.67206669
+0.66336138
+-0.01455113
+-0.61280483
+0.26105731
+0.89624635
+0.61406595
+-0.41891098
+-0.37732821
+-0.72193434
+-0.21620614
+0.05695885
+-0.58047201
+0.31427947
+-0.97444072
+-0.42267905
+-0.43371856
+0.56539357
+-0.03287536
+-0.93488763
+0.18858574
+0.01113693
+0.68344765
+0.70021223
+0.07234861
+-0.03550408
+0.10078371
+-0.06540126
+0.90779479
+-0.17376306
+0.53663378
+0.19126244
+0.88096290
+0.33749628
+0.92811752
+-0.08947713
+0.08396008
+-0.83536317
+-0.21849624
+-0.55631740
+-0.12349821
+0.78835016
+-0.16230688
+-0.04634335
+0.22871144
+-0.81502195
+0.73064127
+-0.62823195
+-0.47964904
+-0.07545940
+-0.29352866
+0.18714449
+-0.68813866
+0.24521511
+0.97246077
+-0.16697853
+0.62337655
+-0.57999694
+0.31834752
+0.59748197
+0.50261886
+0.64163959
+0.59118811
+0.51356625
+0.13034445
+-0.49760072
+-0.74246057
+0.47445719
+-0.60026012
+0.78655067
+1.05356527
+-0.09610002
+0.25772685
+-0.16015991
+-0.99008896
+0.06876557
+0.04527356
+0.51191869
+0.68235838
+-0.35729772
+0.14185734
+-0.42177042
+-0.66619868
+-0.64149787
+0.64841426
+0.51625150
+-0.16791866
+-0.07183367
+-0.69289799
+-0.14815545
+-0.47931324
+-0.33887300
+-0.36157298
+0.42737719
+0.50965569
+-0.76995237
+0.14041548
+-0.96439141
+0.31005258
+0.40542828
+-0.48115198
+-0.58371180
+0.69309688
+0.47127479
+0.99998716
+0.43418432
+-0.16576116
+-0.81613008
+-0.24741888
+-0.87597640
+0.63724580
+-0.10245569
+0.98024074
+0.53851286
+0.52943151
+0.92201846
+-0.40203135
+-0.95009636
+-0.63999868
+0.20344341
+-0.66600089
+-0.09230732
+0.35305381
+-0.33383012
+-0.63993352
+-0.77017744
+0.49824588
+0.26330604
+-0.50743618
+-0.81702389
+0.24707042
+-0.91887950
+-0.31427022
+-0.63819361
+-0.70204087
+0.57720109
+-0.16397879
+-0.18136220
+0.54505446
+0.85868727
+-0.49427083
+-0.18309871
+0.64652151
+-0.43368866
+0.57172499
+0.35922714
+0.61677825
+-0.07011467
+0.34022568
+-0.32918942
+-0.01709875
+-0.67721808
+0.59673747
+-0.36827378
+-0.47423948
+-0.73740738
+0.02522789
+-0.86450588
+-0.85780971
+0.18513929
+0.20408341
+0.12930088
+-0.15962358
+-0.72392551
+-0.16854069
+0.81165766
+-0.51292412
+0.60801752
+-0.13606505
+-0.22914636
+0.86461933
+-0.01585136
+-0.21418924
+-0.12525167
+0.83714130
+0.84799282
+-0.37101132
+0.04407930
+0.27891104
+-0.67534241
+-0.45361217
+-0.20361598
+0.51832305
+0.29611098
+0.60051544
+-0.61265900
+-0.70420324
+-0.37311385
+0.00303251
+0.75769698
+0.46297205
+0.06138663
+0.87724291
+0.87146167
+-0.02597430
+0.81957675
+0.51837100
+-0.73127612
+-0.83496793
+-0.34618806
+-0.60344451
+0.45786046
+-0.59890587
+0.37047371
+0.52536310
+-0.50480581
+-1.00652120
+0.89741592
+-0.26392265
+0.62814543
+-0.98355158
+-0.59883986
+0.48724188
+-0.10476249
+0.06612773
+-0.32505166
+-0.38057455
+0.07805425
+0.86617676
+-0.88903145
+0.63942593
+0.96763897
+-0.05249123
+-0.26628335
+0.96274562
+-0.98468074
+-0.15179286
+-0.05564742
+-0.26764699
+-0.02312500
+0.97107697
+-0.61579142
+0.38091147
+-0.21258794
+0.94199256
+0.03791980
+-0.54992324
+-0.29444375
+0.99442450
+0.30783226
+-0.65974593
+-0.91194042
+-0.41967703
+0.80466052
+0.94509067
+-0.38793254
+-0.52009392
+0.94628527
+-0.71316620
+0.26729227
+0.32207184
+0.63487365
+-0.24845515
+-0.67084687
+0.80901180
+0.05741869
+-0.58998413
+-0.34120316
+0.41394178
+-0.35695200
+-0.44706585
+-0.15679224
+-0.05223086
+-0.97507671
+0.30963016
+-0.57610295
+-0.95838212
+0.69126790
+-0.32154748
+-0.31390445
+-0.83479980
+0.13659106
+0.36863962
+0.94292899
+-0.92389559
+0.80956079
+0.43709868
+0.35129234
+-0.76047334
+-0.89128454
+-0.47763718
+0.02915767
+0.13326720
+0.97850544
+0.50013325
+-0.57192633
+-0.59839366
+-0.70332093
+-0.62776859
+-0.33991869
+0.21692020
+0.67406617
+0.47995524
+0.33061962
+-0.71243241
+0.15965268
+-0.87235270
+-0.45421896
+0.69923176
+-0.77824419
+0.96601575
+0.21152830
+-0.60060868
+-0.57148603
+0.29273099
+0.93913478
+0.30673257
+0.21572318
+-0.71383975
+0.02427904
+0.47892810
+0.19554756
+0.64281490
+0.69085077
+-0.02736672
+-0.80787193
+-0.14429801
+0.69000937
+0.45304086
+-0.29384814
+0.36401876
+0.01873885
+-0.33088248
+0.72642925
+-0.55063950
+0.41675405
+0.13201496
+-0.38921336
+-0.88461079
+-0.42229497
+-0.55169558
+-0.44283450
+-0.12276823
+0.88239473
+-0.15367452
+-0.75525520
+0.63117916
+0.95858943
+-0.58192696
+0.27275253
+-0.88008294
+0.81502294
+0.69788241
+0.34608119
+-0.06389008
+0.64409330
+-0.79671207
+0.09768544
+1.01935772
+-0.39106186
+-0.63946073
+0.55963737
+0.96146015
+-0.47015579
+0.64842709
+0.39634821
+0.08328650
+-0.34247860
+-0.15185086
+-0.01486169
+-0.46493121
+-0.28376296
+0.76325239
+-0.33339986
+-0.47689460
+-0.67115450
+-0.46784307
+0.98165115
+-0.23971963
+0.36733773
+-0.70934956
+-0.68823681
+0.63934197
+-0.66725095
+0.66791325
+-0.76385666
+-0.17658031
+0.93291600
+0.84670925
+-0.55946949
+-0.66221319
+-0.48117109
+-0.16274203
+-0.51692100
+0.41357536
+0.04347590
+-0.15140870
+1.03261803
+-0.03912093
+-0.57773387
+0.98031997
+0.87451132
+-0.10590537
+0.57367536
+0.17731414
+0.59832585
+-0.77363595
+-0.77781825
+0.82203906
+0.19942023
+-0.71219097
+-0.46776503
+-0.62183769
+-0.26751273
+0.42815642
+-0.26866988
+-0.41323104
+-0.84088024
+0.05037346
+0.37804067
+0.39628905
+-0.71500849
+-0.85357591
+-0.12658358
+0.59670314
+-0.41888410
+0.74342902
+-0.16900019
+0.67939398
+-0.64630169
+0.51744816
+0.35980749
+0.28659838
+0.16900047
+0.62488468
+0.80952395
+-0.33295588
+0.26054483
+-0.22858581
+0.70947271
+-0.02049274
+0.64352620
+0.21195932
+-0.71249263
+-0.44362312
+0.89579492
+-0.78044257
+-0.14115104
+-0.35492718
+0.58193989
+0.07214119
+0.30360554
+0.30100051
+-0.58980710
+-0.59132864
+0.20495004
+-0.11174883
+0.67339529
+0.61777401
+-0.94184959
+-0.98856998
+0.02004884
+-0.10467427
+0.04528093
+-0.42361646
+0.40333394
+-0.64121629
+0.49860744
+0.31023561
+0.24968555
+-0.45678511
+-0.12005418
+0.71300085
+0.15693736
+0.68072313
+-0.42510012
+0.44346742
+-0.22963033
+-0.66618882
+0.69949038
+-0.31114159
+0.51694737
+0.46351179
+-0.17713036
+-0.43926548
+-0.26323244
+-0.70798851
+-0.77982352
+0.00280837
+0.77643748
+-0.06990300
+-0.93332626
+-0.76010015
+-0.60212600
+0.96900503
+0.51059959
+-0.63329473
+0.90441993
+-0.30355300
+-0.82033271
+0.02104706
+-0.24734740
+-0.03537312
+-0.67296514
+-0.01252834
+-0.27533310
+-0.02237651
+0.32077637
+-0.74964956
+0.70328538
+-0.23259792
+-0.08901103
+-0.85803650
+-0.16588747
+-0.89703377
+-0.08697766
+-0.08890892
+0.13248349
+-0.26467269
+0.99706478
+-0.07952563
+0.20930633
+0.66418701
+-0.55678426
+0.78411566
+-0.25762626
+0.45315695
+0.99080487
+-0.74142381
+-0.61886344
+-0.65467271
+-0.51445290
+0.92357265
+-0.58729179
+0.95349878
+0.05337384
+0.19697041
+1.00255536
+0.67575474
+0.19015700
+0.08794970
+-0.84026167
+0.42060960
+0.08068813
+-0.71964448
+-0.94343109
+0.11717009
+-0.02293435
+0.41449565
+-0.45293068
+0.48810571
+-0.94864493
+0.01570237
+-0.07928121
+-0.40656983
+0.02084965
+-0.15763115
+-0.79509923
+-0.61022051
+0.30612811
+-0.03112711
+0.77754239
+-0.27826196
+-0.18211162
+0.00583964
+-0.82547568
+-0.98804234
+-0.19494143
+0.36568740
+0.06357120
+0.59610793
+-0.96101991
+-0.93039092
+0.89497805
+-0.74880974
+0.42176102
+0.10615958
+-0.88963633
+0.77291167
+-0.88876266
+-0.11115303
+0.50862626
+0.09318960
+-0.31081229
+-0.80694739
+-0.06352484
+-0.66724183
+-0.05845839
+0.05137801
+-0.51417575
+0.77925072
+0.47621791
+-0.33872187
+0.58474243
+0.92502703
+-0.03284991
+-0.64129691
+0.37625682
+-0.88175724
+0.62710377
+0.26760397
+-0.75592785
+0.83198142
+0.25590670
+-0.05346457
+0.62149441
+-0.01464896
+-0.11003643
+0.78564692
+0.81929000
+0.92271659
+0.38699667
+-0.29724079
+-0.73715112
+0.58155252
+0.30718756
+-0.84041600
+0.59033775
+-0.05194470
+-0.08826260
+0.99594822
+-0.55432220
+0.13579415
+-0.04087518
+-0.59235121
+-0.33138694
+-0.56244805
+-0.56015077
+0.73606713
+-0.85778864
+-0.76960676
+0.37621138
+-0.99942780
+-0.12747508
+0.48141173
+0.88831867
+0.64576267
+0.93660080
+0.81987936
+0.47964161
+0.63161882
+0.42740831
+-0.67535645
+0.42335940
+0.46523181
+0.12704492
+-0.12320531
+-0.34879667
+0.52742715
+-0.25588325
+0.11101209
+-0.81156744
+-0.19205165
+0.94512940
+0.30779663
+-0.82045422
+-0.76355117
+-0.64421281
+-0.06937795
+0.95166156
+0.65515708
+0.22521370
+0.01023179
+0.28115106
+-0.82432347
+0.63294066
+0.52966855
+-0.14047027
+-0.54791762
+0.46644375
+0.03433548
+0.78813224
+-0.29660773
+0.45350886
+-0.25171487
+-0.57864582
+-0.54521634
+-0.23297691
+0.21735830
+0.24237833
+-0.02416802
+-0.07399751
+-0.35194707
+0.15239692
+-0.60962190
+0.86382640
+-0.72680827
+0.71989679
+0.35266192
+-0.26422748
+-0.87180544
+0.93327778
+0.60426170
+0.41416908
+-0.23952149
+-0.08943783
+0.04776750
+-0.99008674
+-0.17475088
+-0.20128085
+0.77632622
+0.70019984
+0.71266574
+0.95749059
+0.02257774
+0.58443198
+0.52843309
+-0.18642968
+0.26319420
+0.97480631
+0.55748475
+-0.32985371
+-0.88947839
+0.35976815
+-0.11722410
+0.08306313
+0.88762665
+-0.80377984
+-0.47691429
+-0.35430324
+-0.48135322
+0.28203785
+-0.30333316
+-0.95012141
+0.27978158
+0.37993026
+0.84862840
+-0.40951103
+0.81954122
+-0.49883175
+-0.32487297
+-0.51215890
+-0.09524053
+0.06838334
+0.05009663
+-0.09754962
+0.70269084
+-0.61410671
+0.98866951
+-0.69057849
+-0.12502712
+-0.64082554
+-0.22928792
+-0.36009181
+0.19691503
+0.69830656
+-0.04816139
+0.26356447
+-0.77847084
+-0.93767099
+-0.16612256
+-0.23410612
+0.09321547
+0.14835382
+0.96018112
+0.93398166
+0.18774498
+0.66763687
+-0.07518828
+0.79926705
+-0.12005919
+0.13948262
+-0.34632432
+-0.38423860
+-0.97353139
+0.76417971
+-0.10994834
+0.61362112
+0.21684635
+-0.22163004
+-0.69161099
+0.21317720
+-0.16481960
+-0.59438711
+-0.12898517
+0.63720417
+-0.57072777
+-0.50298333
+-0.73344108
+-0.69478559
+0.13849807
+0.33910406
+0.34219730
+0.68632853
+-0.00002986
+-0.78901410
+0.93597949
+0.09451187
+0.03086209
+0.90908027
+0.75055718
+-0.90674563
+-0.73835626
+-0.11624670
+0.92649388
+0.25473285
+-0.68416896
+0.89359009
+-0.15881360
+-0.71281454
+0.23307657
+-0.03235006
+0.43113399
+0.82011187
+0.33632946
+0.26721346
+0.39069211
+-0.85620564
+-0.92941559
+-0.15698594
+-0.86558115
+-0.13304484
+0.22093844
+0.36136687
+-0.69963878
+0.51421392
+0.87644315
+0.84635007
+0.07413042
+-0.09267849
+0.72489667
+0.08067751
+0.35976803
+0.61574173
+0.68456113
+-0.84160541
+0.17061889
+-0.74093458
+0.18827963
+0.73902822
+0.26119220
+-0.26185763
+0.20002067
+-0.28786379
+0.97887647
+-0.01431036
+0.12957549
+0.83042145
+-0.69532174
+-0.90608545
+-0.36395991
+-0.52403781
+-0.99113459
+-0.64855877
+0.77864897
+0.65724850
+-0.41255164
+-0.08159375
+-0.67473996
+-0.90743309
+0.87545419
+0.64815152
+0.73205197
+0.65930867
+0.93720829
+0.68272901
+-0.56137457
+-0.23378503
+-0.74723759
+-0.95607869
+0.72179031
+-0.19362211
+-0.70061046
+0.97994328
+-0.12028259
+-0.08924216
+-0.76404108
+-0.49237561
+0.18142533
+-0.68616015
+0.28552628
+-0.25970715
+0.21421301
+-0.04243535
+-0.90984672
+-0.11099923
+0.69309068
+0.77506626
+-0.38990438
+0.90142500
+0.30354035
+0.20121598
+-0.73639867
+0.88153553
+-0.94265427
+0.94865787
+-0.15881175
+-0.83425625
+0.69603527
+-0.96407961
+0.25261045
+0.07319999
+-0.08333516
+0.37061965
+-0.09999347
+-0.52995270
+0.21496618
+-0.58429307
+0.99996829
+-0.29727876
+-0.68264017
+0.78345931
+-0.77627394
+0.12617981
+-0.08708280
+0.32634377
+0.10693824
+-0.11604667
+0.87598288
+0.64962888
+-0.25019878
+-0.29635179
+-0.71486038
+-0.15061343
+-0.88620218
+-0.54357424
+0.27047908
+0.71067846
+0.66411602
+0.15987480
+0.48589146
+-0.18140668
+-0.25921929
+0.27548301
+0.11120808
+0.33159792
+-0.92768716
+0.98289239
+-0.29817402
+0.17285085
+-0.60808870
+-0.17141563
+-0.73366934
+-0.40166605
+-0.74493176
+-0.66303623
+0.84922397
+-0.67617631
+0.02150381
+-0.63341513
+-0.93369909
+0.38165295
+-0.07520807
+0.51112139
+-0.28483641
+-0.98976038
+-0.33193272
+-0.35594434
+0.04116082
+0.61851621
+-0.35413456
+0.14938283
+-0.79727907
+-0.64485249
+0.05869746
+-0.17664891
+-0.31417936
+-0.30308914
+-0.64816734
+-0.82234380
+-0.50688887
+-0.94798438
+0.99166167
+0.56754971
+0.99917579
+0.88548672
+-0.16650784
+0.19845009
+0.05729449
+0.22488165
+-0.91958647
+0.78450429
+0.38123417
+0.07206488
+-0.00731015
+-0.60193163
+-0.35504895
+-0.68216199
+0.51294708
+-0.77433939
+0.47177899
+0.86524606
+0.25073254
+0.37014246
+0.04578984
+-0.75463602
+0.63759565
+0.48930895
+-0.29025662
+-0.48115247
+-0.77542935
+-0.92289723
+-0.44245219
+0.12165308
+-0.34971982
+0.96011281
+-0.00238264
+0.13594675
+-0.15118092
+0.59829235
+-0.14662498
+-0.81583440
+0.36700761
+0.90386617
+0.40582240
+0.10468423
+0.79812634
+-0.37858194
+0.92563176
+-0.21241480
+-0.68484876
+-0.79179709
+-0.08044708
+0.99965000
+0.84591210
+0.54165959
+0.20686400
+-0.93642447
+-0.26215112
+-0.73699528
+-0.54521284
+0.39411104
+0.81619835
+-0.66627818
+0.94431055
+0.92015874
+0.15479672
+0.23986423
+0.81593474
+-0.06979316
+0.46301564
+-0.81544437
+-0.20686392
+-0.40202204
+0.76164982
+-0.31676640
+0.41845525
+-0.40698099
+0.22530592
+0.08972050
+-0.50769697
+-0.86715623
+0.38813978
+0.23333034
+-0.41276017
+0.87221880
+-0.20836025
+0.63266301
+0.84953167
+-0.61803360
+-0.60076261
+-0.50511540
+0.77972647
+0.12466068
+-0.06236802
+-0.16825162
+0.01578396
+-0.03651698
+-0.40139770
+0.23837906
+-0.78206769
+-0.26736447
+0.02893989
+-0.14859107
+0.34283882
+0.26056771
+-0.39120245
+0.81330757
+-0.23322803
+-0.86863319
+1.02364880
+0.13403770
+-0.51625277
+0.15978058
+0.19282935
+-0.11777775
+-0.56549198
+-0.34855794
+0.67810179
+0.53375457
+0.34337443
+0.74435347
+-0.71815057
+-0.97554541
+-0.96057607
+-0.82388001
+0.95860922
+-0.80042518
+-0.92079678
+0.11179068
+0.58412364
+-0.44511572
+-0.44689220
+0.44097691
+0.55372839
+-0.14915515
+-0.16160921
+0.81648072
+0.05397137
+-0.45893761
+0.25292683
+0.85724094
+0.72803488
+0.51310338
+0.32913713
+0.48249970
+-0.92392965
+0.61024903
+-0.26988155
+0.13122451
+-0.20012835
+0.81275019
+-0.51366701
+0.91167463
+-0.39126436
+0.42136882
+-0.10244534
+0.43001379
+-0.29064154
+0.20732215
+0.09675324
+-0.73804356
+0.56772661
+0.23907482
+-0.85378790
+0.25006015
+0.05667249
+-0.92430815
+0.38634159
+0.26186731
+0.94173936
+-0.47206896
+-0.42848300
+-0.63897394
+0.30353579
+0.99876709
+-0.61050389
+0.38553211
+1.00391593
+-0.56520204
+0.30530564
+-0.81239909
+0.80332692
+-1.00544316
+-0.03391825
+-0.27609694
+-0.02527649
+-0.00087067
+0.79800757
+-0.22829625
+0.29571183
+0.05480871
+-1.00431773
+-0.58171364
+-0.12427939
+-0.83614126
+-0.86101431
+0.82390492
+-0.80201613
+0.06398087
+-0.65595917
+-0.94916124
+-0.02953593
+0.46247358
+-0.90412166
+-0.86151295
+-0.80767778
+-0.02140277
+-0.06638801
+0.24607966
+-0.95243429
+-0.04861893
+0.35095253
+0.01910053
+0.97618260
+0.93752126
+-0.31252695
+0.50714251
+0.77286331
+0.97223650
+-0.52297285
+-0.83197727
+-0.68154714
+-0.05157910
+0.23070935
+0.71628797
+-0.21253181
+-0.50259953
+-0.01032580
+0.38914046
+-0.38654640
+-0.67577176
+-0.75276516
+-0.44481498
+-0.15072392
+0.19879971
+0.96674945
+0.24931925
+0.49406113
+-0.30709243
+0.11293869
+-0.42708394
+-0.14772758
+-0.42046394
+-0.65615551
+0.07863067
+0.46507820
+0.15534142
+0.85524493
+0.01999723
+-0.56136018
+0.66704812
+0.28017256
+-0.67829568
+-0.95722237
+-0.59706138
+0.51930691
+0.25055585
+-0.56790822
+0.88275203
+-0.60152992
+-0.72529010
+-0.56891245
+-0.38561478
+0.76912252
+0.18941137
+-0.81561438
+0.09924504
+0.49064074
+-0.57892235
+0.56863752
+-0.28109661
+0.29194551
+0.98131370
+0.88415134
+-0.40352351
+-0.77866436
+-0.95705677
+-0.87407078
+-0.11778114
+-0.45892895
+0.19175196
+0.59609434
+0.65474220
+-0.69395224
+0.84687846
+0.92484132
+0.87444389
+0.40236700
+0.98923846
+0.10221922
+0.33327651
+0.01751360
+0.97204968
+0.67804046
+-0.56437741
+-0.93994769
+0.99353838
+0.64875627
+-0.24302124
+-0.84117971
+0.75573684
+-1.00211143
+-0.14302719
+-0.63188278
+-0.20374981
+-0.17061072
+0.15360554
+0.34233738
+0.65317511
+0.83346291
+-0.94501048
+-0.06561254
+-0.19247835
+0.51566692
+-0.49573911
+0.03471675
+-0.00126634
+-0.90823973
+-0.79207043
+0.75740728
+-0.53998761
+-0.61530233
+0.00530226
+-0.07376385
+0.46793977
+0.30256169
+1.00234160
+-0.85907531
+0.61247417
+-0.17811752
+-0.10200935
+0.86769458
+0.00184702
+0.85223306
+0.14645023
+-0.44863738
+-0.42112091
+0.62370074
+-0.94131100
+-0.60930196
+0.20497651
+0.45575724
+-0.26081095
+-0.44160107
+0.25322657
+0.94244779
+0.80068534
+0.62656878
+-0.05007545
+0.35664789
+-0.01568216
+-0.59191264
+0.45363064
+0.29559012
+0.26381819
+-0.40649865
+-0.66008499
+0.01147782
+-0.09833221
+-0.03721129
+-0.34543984
+-0.83534225
+-0.77267209
+-0.94462060
+0.12370818
+-0.32914548
+0.42334319
+0.42989278
+-0.66128644
+-0.81770567
+0.55388007
+-0.03665826
+0.89959433
+0.10147967
+-0.95180708
+0.38154802
+0.65231161
+0.10445088
+0.19726082
+-0.96085436
+0.16204622
+0.83324816
+0.15222441
+-0.59369747
+-0.00717861
+0.22320759
+-0.65185672
+-0.33946263
+0.09865152
+0.59514968
+-0.07093082
+-0.40166634
+0.63182059
+-0.18103167
+0.99655191
+0.22650717
+-0.36556595
+0.82258772
+-0.37787738
+0.44555066
+0.10328781
+-0.38053611
+-0.57752018
+0.06380182
+0.72394080
+-0.56011380
+0.89651411
+0.68131682
+-0.63441484
+-0.84260439
+-0.77527868
+-0.08303797
+-0.27336301
+0.15196717
+0.28234429
+0.83673494
+-0.26388772
+0.77865403
+-0.86458682
+-0.47155265
+0.58974326
+0.12857979
+0.92338862
+-0.55970980
+0.14907875
+0.06688413
+0.71887786
+-0.38002251
+-0.96971484
+0.03360265
+-0.84331405
+-0.38379411
+-0.66893525
+-0.72632665
+0.91509091
+0.60797546
+-0.71222116
+0.23935677
+-0.12923634
+-0.05270765
+0.76549754
+0.53747760
+-0.45835468
+0.34451707
+-0.51416658
+0.75998339
+-0.75114858
+-0.71356024
+0.15394570
+-0.49622364
+0.21759395
+0.41896773
+-0.78109242
+-0.08626534
+-0.07156031
+0.93986298
+0.06177216
+0.73780671
+-0.04685558
+0.57136227
+-0.30290610
+-0.60600147
+-0.20545400
+-0.36733627
+0.53537657
+0.85971664
+0.59908319
+0.64307774
+0.48080187
+-0.65448137
+-0.73319182
+-0.16764633
+0.86912994
+0.71292155
+-0.18245092
+0.75954966
+0.60029642
+-0.80082083
+-0.04370471
+-0.96643542
+0.29509294
+0.93610836
+-0.73323044
+0.79637922
+-0.15589289
+-0.56443158
+0.02281530
+0.88533606
+-0.76657042
+0.27708124
+-0.70987055
+0.29375043
+-0.25463459
+-0.14614944
+-0.00369242
+0.99007995
+-0.01242167
+-0.47762618
+0.20162025
+-0.56874380
+0.48967443
+-0.61924720
+0.79158844
+-0.68190236
+0.16144542
+0.23984484
+0.72528590
+0.22206636
+0.10933194
+0.85598319
+-0.84434795
+0.34951037
+-0.54596560
+-0.07133065
+-0.15891168
+-0.50825723
+0.96757538
+0.49348995
+0.68195895
+0.77055961
+-0.95825739
+-0.55430174
+0.18357867
+0.44682317
+-0.08626869
+0.66384900
+-0.45756671
+0.45758323
+-0.25565504
+0.93047787
+-0.84334863
+0.77620995
+-0.38644846
+0.74354478
+-0.84475100
+-0.47558769
+0.64687398
+-0.77745158
+-0.38995737
+-0.31438329
+-0.27009922
+0.84390399
+-0.78053897
+0.35504962
+-0.72976432
+-0.69927743
+0.85683995
+0.78001356
+-0.04707913
+0.36536255
+0.27412723
+0.92427399
+0.25685531
+-0.21355513
+0.07544942
+-0.38633350
+0.27359521
+-0.83440959
+0.38232364
+-0.45274235
+-0.62108043
+-0.27866524
+-0.81428357
+-0.90654871
+0.64316687
+-0.85465258
+-0.95331379
+-0.54382177
+0.62722058
+0.59309579
+-0.17038374
+-0.57690677
+0.64093174
+0.36018060
+0.68910358
+0.45085598
+0.48262938
+-0.67203710
+-0.42141172
+-0.53372433
+0.18591658
+0.20499155
+-0.85019964
+0.76363217
+0.93022271
+0.96812885
+0.78290760
+-0.12329937
+-0.59347850
+-0.83251560
+-0.36889915
+0.35474590
+-0.30817566
+-0.83327953
+-0.04943019
+0.65108301
+0.09919587
+0.52673393
+-0.07166443
+0.41356187
+-0.13628848
+-0.33017701
+0.94341367
+0.65808960
+-0.13591098
+-0.12147191
+0.68583400
+0.09939165
+0.82480680
+-0.72603691
+-0.84265638
+0.21897015
+0.33620751
+0.37876419
+-0.21542760
+0.78372487
+0.64448788
+0.09814110
+0.25174902
+0.96453104
+-0.66426139
+-0.96159420
+-0.69433036
+0.00595774
+-0.21576114
+0.02605714
+-0.81257670
+0.89169860
+0.31767674
+0.05401013
+0.78307418
+0.51861310
+0.97291934
+-0.98913391
+0.66451061
+-0.20209699
+0.88107085
+0.22853911
+0.61658426
+-0.66172972
+0.75501983
+0.73761547
+-0.21280098
+-0.30691813
+-0.62561920
+-0.58484848
+0.06230235
+-0.99766975
+-0.71793742
+0.24175367
+0.17159359
+0.83801234
+-0.29828006
+-0.92252826
+0.69257689
+0.90946044
+-0.59465685
+-0.32110369
+-0.49335811
+0.38631866
+-0.81995504
+-0.53816107
+0.99132943
+0.84939029
+0.66429079
+-0.49314921
+0.47670066
+-0.05455837
+-0.32664683
+0.22422534
+-0.53797067
+0.84862116
+-0.15201379
+-0.66996775
+-0.30059237
+-0.31088704
+-0.00917822
+0.09460361
+-0.85275438
+0.65974268
+-0.63493883
+-0.00193500
+0.15133930
+0.47843734
+-0.72839465
+0.56999170
+0.94344962
+-0.29002630
+0.61290508
+0.74159750
+-0.62525844
+-0.52358621
+0.11390174
+-0.40090587
+-0.20979129
+0.31057202
+-0.46676713
+-0.92884807
+-0.98554434
+-0.63258160
+0.41435517
+0.66072875
+-0.07818776
+-0.18592308
+-0.05080425
+0.03084411
+-0.79823782
+-0.56744819
+0.93450567
+0.22972332
+-0.77107887
+-0.50024566
+0.71046842
+-0.69519584
+0.76189948
+-0.90204236
+0.08436966
+0.48787589
+-0.64130482
+-0.78999060
+-0.22100020
+-0.82985593
+0.43737817
+-0.52231924
+0.81017483
+-0.75583080
+0.95275557
+0.55201764
+-0.94240145
+0.01279210
+-0.58606527
+-0.95094524
+-0.52685487
+0.92960479
+-0.05479418
+0.38624404
+-0.20635098
+0.55308862
+-0.13396355
+-0.59025479
+0.47853928
+-0.35208541
+0.73562658
+-0.92106335
+-0.48068719
+-0.56191333
+-0.53676257
+-0.34618253
+-0.41937736
+0.37617064
+0.85129851
+-0.08908468
+0.44112034
+0.36152212
+0.81157234
+-0.80587437
+0.78095889
+-0.75148307
+0.53442347
+0.50108266
+-0.04185510
+-0.04439509
+0.18098760
+0.29417038
+0.81185532
+0.10609806
+-0.61692405
+-0.90972477
+-0.39388698
+0.06151104
+-0.99198097
+0.04526615
+-0.57731715
+0.69353163
+0.88128066
+-0.68928429
+0.03437948
+-0.58410496
+-0.37385499
+-0.36192238
+0.61738443
+-0.01421613
+-0.28932470
+-0.02352190
+-0.42764169
+0.19302106
+-0.52719644
+-0.38354772
+0.02944553
+0.22880149
+0.89129841
+-0.66291633
+-0.78601746
+0.36316490
+0.31882048
+0.56794381
+0.54444063
+0.24030077
+-0.14339423
+0.69510210
+-0.71255067
+0.49886608
+-0.30384022
+-0.78279708
+0.58468282
+-0.91509274
+-0.09032017
+0.77334189
+0.12900996
+-0.78395692
+-0.27793199
+0.12247610
+0.85062647
+0.07252407
+-0.70341107
+0.92231107
+-0.89804988
+0.84956455
+0.85129070
+0.01497698
+0.36181235
+0.06001318
+-0.51128054
+0.90571129
+-0.90290868
+0.90599358
+-0.87494008
+-0.93742895
+-0.06449729
+0.51792431
+-0.13496190
+-0.46773469
+-0.64344287
+0.65228796
+0.95166123
+0.04046249
+-0.61480507
+0.43510389
+-0.68221396
+-0.01300049
+0.48542583
+-0.42384470
+0.43841219
+0.74705505
+0.79898763
+0.76185048
+-0.92667477
+0.66666293
+0.97602654
+-0.05844671
+-0.56578827
+0.56528246
+0.67736077
+0.58325636
+0.81595540
+-0.52752575
+0.40624273
+-0.56409323
+-0.21449685
+0.79003298
+0.29984522
+-0.86160274
+0.45494723
+-0.59472778
+0.18852437
+-0.85645552
+0.23462820
+0.92972159
+0.37631941
+-0.52096662
+0.07277894
+-0.47213978
+0.64167082
+-0.20910019
+0.71221066
+-0.82825659
+0.47330332
+-0.78683634
+0.05087662
+0.17841876
+0.86513317
+-0.13921762
+-0.29196721
+-0.26285613
+0.05767083
+0.10954404
+0.07427454
+0.29821181
+-0.71798262
+0.81655991
+0.63407755
+0.57646298
+-0.58968741
+-0.73304859
+-0.58330137
+-0.32029402
+0.69481909
+-0.69268164
+-0.88429738
+0.36554754
+0.63013005
+0.08794594
+-0.21456921
+-0.02164650
+0.52081442
+0.15980911
+-0.39695686
+0.70228231
+-0.81772596
+-0.12189376
+-0.10447675
+-0.47883505
+0.18819344
+-0.90952543
+0.54881394
+0.26160181
+-0.81305541
+-0.62805125
+-0.26291502
+0.36363316
+0.21954823
+0.55447900
+-0.19469732
+-0.83306500
+0.29891956
+-0.64707586
+-0.45927382
+-0.00072390
+-0.26228112
+0.53415918
+0.80623674
+-0.83454411
+-0.97989277
+0.94067883
+0.21540916
+0.51139116
+0.69933152
+-0.97907497
+0.18107069
+-0.87048903
+-0.48092782
+0.41428947
+0.45780957
+0.96591961
+-0.10136551
+-0.19907087
+-0.58351445
+0.25682437
+-0.55770895
+0.52705884
+-0.29910159
+-0.01648927
+-0.41817188
+-0.52078235
+0.70217454
+0.27676690
+0.62684917
+0.37184834
+-0.57960057
+-0.07869691
+-0.86206178
+0.79354823
+-0.23980784
+0.97258985
+-0.58011687
+0.11524808
+0.88695824
+-0.45976090
+-0.90251324
+-0.27201557
+-0.71958426
+0.11984348
+-0.76237591
+-0.48639971
+0.65530062
+-0.88674168
+0.96463096
+-0.77827066
+-0.10896599
+-0.80561613
+-0.71281651
+0.85363054
+-0.51838535
+0.06466317
+0.71812069
+0.13498318
+-0.16987324
+-0.57615963
+-0.70150989
+0.30933213
+0.89181519
+0.60357416
+0.27253485
+0.03970039
+-0.58651501
+-0.54424909
+-0.20720249
+-0.65960041
+-0.19642550
+-0.14361078
+-0.43323314
+0.55212700
+-0.23691523
+0.23999441
+0.56675947
+0.94398499
+0.67309570
+0.32330465
+0.94034886
+-0.07163811
+0.34316254
+-0.75623950
+-0.61738563
+-0.26425868
+0.37122571
+0.60565329
+-0.85302813
+-0.11335146
+-0.20524281
+0.61216462
+0.36782539
+0.25631738
+0.90382016
+-0.39277941
+0.94501555
+0.68312240
+-0.81739874
+0.68224168
+-0.57915804
+-0.05676925
+0.12473357
+-0.66065404
+-0.10824358
+0.98985517
+0.78975236
+-0.96391010
+0.79027665
+-0.25097013
+-0.95584058
+-0.86302988
+0.06530941
+0.88826025
+-0.95978294
+-0.82854238
+-0.38096625
+0.82521403
+0.50742352
+-0.58055985
+-0.77960928
+-0.16113311
+-0.54087976
+0.76852405
+0.29739332
+-0.51509371
+0.46294022
+-0.34550083
+-0.68848631
+-0.31545830
+0.96829152
+-0.21816283
+0.84723318
+-0.57644355
+-0.99567530
+-0.22809267
+0.69288170
+0.73748827
+-0.39305729
+0.80091083
+-0.43867242
+-0.65624437
+0.54291630
+-0.24524701
+-0.61022952
+-0.80458789
+-0.50985849
+-0.61087361
+0.05830395
+-0.53754374
+-0.21442576
+0.46688991
+-0.85220124
+0.77517679
+-0.77465652
+-0.28679860
+0.57306120
+0.10695541
+-0.18101585
+0.01086205
+0.58853175
+0.53239113
+-0.67783366
+-0.89428994
+0.47036991
+-0.88339875
+-0.16075240
+0.04306269
+0.40574884
+0.58511304
+-0.94357153
+0.87112899
+-0.46832410
+0.05423375
+0.20710218
+0.47002142
+-0.84608480
+-0.74694549
+0.46295670
+-0.36622849
+0.37142118
+-0.34811735
+0.07611378
+-0.62277342
+0.25342452
+-0.30863815
+-0.92955137
+-0.95062805
+-0.50102653
+-0.85411630
+-0.75674503
+0.50919243
+-0.24762389
+-0.66767483
+0.23426529
+-0.11339256
+0.26601868
+-0.53003440
+-0.66923098
+-0.83233336
+0.01338560
+-0.77722591
+0.62158207
+-0.89773334
+0.46403533
+0.07118261
+-0.12276326
+-0.47338708
+-0.50065775
+-0.12806458
+0.94181428
+0.22564799
+0.72451615
+-0.00167889
+-0.01377656
+0.24180779
+-0.38925677
+0.80421932
+0.91464333
+-0.74138852
+0.72010004
+-0.71363104
+-0.97604632
+-0.07610498
+-0.17584417
+0.66438046
+0.65602873
+-0.32153603
+-0.35318915
+-0.59284104
+-0.46901100
+-0.17848441
+-0.43781631
+-0.16902423
+-0.02443078
+-0.06379947
+-0.00696219
+0.91308601
+0.90550158
+0.84348037
+-0.96618174
+-0.56607838
+0.57433887
+-0.56637978
+-0.97803377
+0.27506740
+-0.14282443
+-0.72205943
+0.39641081
+-0.13674080
+0.01973191
+0.37504805
+0.71312905
+-0.65820349
+-0.05461802
+-0.61432601
+0.56692032
+-0.91227181
+-0.58772247
+-0.53789188
+-0.15386689
+0.41352679
+0.18361107
+-0.18380798
+-0.30351333
+0.14791872
+-0.06129188
+0.73775603
+-0.13004124
+0.66753133
+0.68733590
+0.83677327
+0.73665608
+0.17353026
+-0.88481618
+0.88440808
+-0.24911934
+-0.71822870
+0.62455749
+-0.41358897
+0.63953899
+0.29857817
+0.09674611
+0.02439746
+-0.77253905
+-0.44450878
+0.82555076
+0.10388428
+-0.92500422
+0.94246610
+0.65661022
+0.91478799
+0.89179055
+0.23791007
+0.95414986
+-0.68308096
+0.83092333
+-0.62041212
+0.92340456
+0.07887471
+-0.51890448
+-0.36192785
+0.38858270
+-0.55829162
+0.37427010
+0.37537006
+0.39174013
+-0.28070983
+0.07188366
+0.13238264
+0.49132520
+0.16130090
+0.17470513
+-0.39568087
+-0.57271216
+0.01565063
+-0.51306451
+0.74865870
+-0.78345676
+0.08620000
+-0.57046126
+0.52089637
+-0.74739291
+0.45968792
+-0.61270980
+0.29458123
+0.19018464
+-0.18736266
+0.86594385
+-0.60345867
+-0.07399854
+0.78779196
+-0.54629138
+-0.17646114
+0.09998390
+0.95361854
+-0.08203108
+-0.39118675
+0.41255944
+-0.51972963
+0.28822536
+-0.69876570
+-0.52264447
+-0.85444016
+0.67232789
+-0.13429639
+0.65358411
+0.83783009
+-0.48490909
+0.65486464
+0.05534186
+-0.56651852
+-0.38627428
+0.25398689
+-0.11565115
+-0.26367617
+0.97914620
+0.65336402
+0.77619135
+-0.48312605
+-0.31089265
+0.62769386
+0.91960099
+-0.73314086
+-0.17447962
+0.87119697
+-0.10762158
+-0.78955450
+0.43862736
+-0.28783227
+0.11908011
+-0.87261122
+0.50636697
+0.60705684
+0.66724824
+0.84546331
+-0.94337451
+0.33750326
+0.54275858
+0.86315788
+-0.60832615
+0.93139854
+0.41898245
+0.47602082
+-0.09752108
+-0.90808848
+0.76963932
+0.27064790
+-0.20968062
+0.09999930
+0.12333629
+0.26544059
+-0.74128570
+-0.92104040
+-0.58120091
+0.08243312
+0.81217477
+0.24028366
+-0.86061388
+-0.38159090
+0.06330841
+0.76407260
+0.35433590
+0.03341137
+-0.91038313
+-0.61104005
+-0.05146528
+-0.04717670
+-0.41329524
+0.65953889
+0.29267753
+-0.77394696
+-0.39794320
+-0.30407549
+-0.49381847
+0.30040699
+-0.79872850
+0.12111111
+0.89743872
+0.47296440
+0.70225116
+0.51673244
+0.65578393
+0.37860004
+-0.27399287
+0.70501424
+0.14971813
+-0.00235766
+-0.29119064
+-0.09931920
+-0.62507878
+0.23922853
+-0.03088838
+0.12878282
+-0.17066152
+-0.45794944
+-0.75775268
+0.21047180
+0.14187199
+-0.45572023
+-0.70191699
+-0.91760240
+0.19539984
+-0.86531163
+0.36616722
+0.76320054
+-0.01906736
+0.32434930
+0.36531702
+0.25555926
+0.88163869
+0.43133423
+0.83282724
+0.20934685
+-0.36422107
+-0.86010397
+0.87974158
+0.81505256
+0.64220759
+0.02482729
+0.70369269
+0.36550132
+-0.04858538
+-0.07476754
+-0.57116444
+-0.59316002
+0.55016316
+-0.91636709
+-0.65646302
+0.18879595
+-0.89564908
+0.82881599
+0.55690993
+0.67357518
+0.71421551
+0.29700855
+0.80264232
+0.89969215
+-0.93837628
+-0.29726222
+0.30416255
+-0.18739484
+-0.73010423
+0.39015132
+-0.73539919
+0.35007606
+0.08012862
+-0.48939106
+0.64023727
+-0.92120799
+0.87825569
+-0.52958730
+-0.56700792
+0.17780735
+0.85920429
+-0.62929132
+0.27291236
+0.17440710
+0.77696968
+0.12105639
+-0.77642332
+-0.33820245
+0.61286946
+-0.17134627
+-0.55446816
+0.27741984
+-0.27923553
+0.92562385
+-0.38775163
+0.67880115
+0.07631806
+0.41499034
+0.90045996
+0.14779056
+-0.21159949
+-0.00252478
+-0.21190621
+-0.59301454
+-0.60825301
+-0.75108422
+-0.62834311
+0.66303378
+-0.53551453
+-0.86976480
+0.68562671
+-0.78441475
+0.15089592
+0.45472484
+0.18716647
+0.68104245
+-0.21850532
+0.96185155
+0.72086868
+-0.30823020
+-0.36875964
+-0.42010079
+0.32750281
+-0.24799962
+-0.16213398
+0.81909829
+-0.92164772
+0.15902927
+-0.04553060
+-0.40235024
+0.50808886
+-0.32923886
+-0.47965689
+-0.47081315
+-0.49583902
+0.33677635
+-0.17623785
+0.29798040
+0.50445916
+-0.32743794
+-0.26144342
+0.41154396
+0.53596111
+0.02794019
+-0.52823887
+0.22980608
+0.72448167
+-0.58980952
+-0.50877994
+-0.93073027
+-0.32208895
+0.12293646
+0.65369557
+-0.35528708
+0.70069788
+-0.36358138
+0.03451750
+0.61140101
+0.56257507
+0.27084900
+0.34679124
+0.47962895
+-0.07532973
+0.53011838
+-0.75834429
+-0.54224518
+-0.71209484
+-0.68374921
+-0.56811364
+0.08533013
+0.40403859
+0.52038146
+0.02792618
+0.63717422
+0.05301685
+0.06547307
+0.98470493
+-0.49843771
+0.51273348
+-0.08418895
+-0.94716976
+-0.35266539
+0.61614781
+0.39933359
+0.70139830
+-0.82026691
+0.46440908
+0.96001656
+-0.91297745
+-0.71717058
+-0.74315720
+0.60238910
+-0.41553305
+0.33211920
+0.94749797
+-0.71147671
+-0.07579366
+-0.45928846
+0.66416627
+0.89071686
+-0.54542915
+-0.21237389
+-0.87434008
+0.30486997
+0.92075351
+0.00458088
+0.06947016
+-0.23778180
+-0.53164961
+-0.40928488
+0.89334297
+-0.17941460
+0.85292891
+0.04289311
+0.92854620
+-0.25712218
+-0.75743285
+0.34056211
+-0.82859531
+-0.30859662
+-0.50721130
+-0.56308351
+0.08899636
+0.40418777
+0.29979963
+-0.24856977
+-0.62366773
+-0.96303923
+-0.49501407
+-0.45010444
+0.25542713
+-0.34011485
+0.35721154
+0.00153373
+0.51514446
+0.49743810
+-0.12504172
+-0.41021113
+0.71662591
+0.79453775
+0.42306092
+0.15078317
+-0.23786335
+0.01055611
+0.62398452
+-0.07962296
+-0.79802363
+-0.40991400
+0.69665762
+0.19570145
+-0.19068447
+0.70589671
+-0.73436633
+0.79910955
+-0.37965228
+-0.24859539
+-0.30286568
+-0.92247908
+0.11022070
+-0.67267107
+0.85900023
+0.76976586
+0.92075729
+-0.01438890
+0.98068536
+-0.68693710
+-0.28571898
+0.66560772
+0.01243121
+-0.16503928
+0.44848743
+0.73071563
+0.13576301
+0.54306914
+0.87445018
+0.72901171
+-0.84913051
+0.87337017
+0.79993316
+0.23277807
+-0.13300245
+-0.93619850
+0.14863058
+0.57412336
+0.58236568
+0.37726644
+0.15184782
+-0.62256693
+-0.21999415
+-0.44030018
+-0.02699137
+-0.98701476
+-0.94161014
+-0.03077786
+0.57211205
+-0.27400768
+0.84171542
+0.60279057
+-0.53448414
+0.25576270
+-0.56210148
+-0.70097329
+0.26052785
+-0.18689411
+0.27052355
+0.52150345
+-0.27341809
+-0.37080812
+-0.18377996
+0.49226892
+-0.12427253
+0.37880212
+0.56808603
+-0.04795127
+0.51545024
+0.94653964
+0.34297200
+-0.23001918
+-0.36567022
+0.25315309
+0.45721710
+0.43297865
+0.44230795
+-0.63741075
+0.02013361
+0.08338308
+0.47403581
+-0.57496368
+-0.67036155
+-0.11596055
+0.15792773
+-0.32181955
+0.02484237
+0.12671986
+-0.67364937
+0.25925882
+-0.64482960
+-0.80227517
+-0.44473682
+0.08996071
+0.87450925
+-0.72092140
+-0.37677942
+-0.44291118
+-0.92416375
+0.69427807
+-0.03398371
+-0.35151229
+0.95090851
+-0.06505912
+-0.00012469
+-0.01541510
+0.07760812
+0.52491235
+0.80061328
+-0.72108336
+-0.59919054
+-0.74075567
+0.49388442
+-0.26273084
+-0.24412435
+0.46975497
+-0.31677055
+-0.84423595
+-0.78302500
+-0.16306334
+-0.10894848
+0.24867483
+-0.84158703
+0.90796548
+-0.16846877
+0.43694546
+0.23707844
+-0.45748799
+0.10852909
+0.45116885
+0.63394770
+-0.71380557
+0.34045665
+0.87419325
+0.45720733
+-0.76038465
+-0.21033918
+-0.25820394
+-0.59497243
+-0.79219708
+-0.12984553
+-0.63994993
+-0.00415720
+0.56223947
+0.20368553
+-0.78201026
+-0.28900831
+0.01278029
+0.82720947
+-0.25774830
+-0.53864547
+0.14377688
+0.30613129
+-0.37527728
+-0.88106069
+0.09712579
+-0.35037934
+0.43774698
+0.96970141
+-0.33665858
+0.79639321
+-0.58671314
+-0.74846953
+-0.91463375
+-0.94979406
+0.52567696
+-0.78174880
+0.03745907
+-0.09710449
+-0.21075034
+-0.97189755
+0.08467901
+-0.80030790
+-0.39759195
+0.50991774
+0.85656595
+0.05091298
+0.64173555
+-0.57225510
+0.03596723
+0.16955316
+0.28719044
+0.58123899
+0.53789055
+-0.72529194
+0.18412662
+-0.74407676
+0.38899696
+0.58741367
+0.40053809
+0.63692570
+-0.89488387
+0.25356615
+0.40253282
+-0.72023189
+0.59124553
+-0.32377893
+-0.90962763
+0.47087085
+0.85686696
+0.96379817
+0.14123940
+-0.77822395
+0.34170067
+0.08975446
+-0.10543180
+0.01405728
+-0.72425133
+0.15017927
+-0.55436888
+0.97586334
+-0.02606744
+-0.41310728
+0.96598458
+-0.70521912
+0.51343203
+-0.80246960
+-0.58667445
+0.60192966
+-0.80375326
+-0.24659729
+-0.16319722
+-0.68600497
+0.58686376
+0.39011478
+-0.90849134
+-0.64152786
+0.26704049
+0.15083802
+-0.71652073
+0.12984192
+0.24975467
+0.68589211
+0.91070640
+-0.37334722
+-0.06231952
+-0.34137493
+0.99117780
+-0.05837715
+-0.49364650
+-0.25341153
+0.51905870
+-0.35022855
+-0.09446150
+-0.13979274
+0.85190928
+0.68891430
+0.34278965
+0.43145549
+-0.27260917
+0.22608030
+-0.22515309
+-0.84695643
+0.31523657
+0.23568177
+-0.69128752
+0.90821528
+-0.75892209
+0.73814905
+-0.83098322
+-0.63390377
+0.17363739
+0.94795263
+-0.16587257
+-0.30652738
+-0.64977199
+0.35476756
+-0.39420342
+0.26062918
+0.19411445
+0.77462840
+-0.98023524
+0.52703261
+0.77192736
+-0.99329048
+-0.67610005
+-0.40720391
+0.30134559
+0.99990332
+0.12830436
+-0.66510874
+0.00439537
+-0.96802823
+-0.66854727
+0.28334868
+-0.03406668
+0.84948599
+0.25741637
+0.33667028
+-0.47169507
+0.68578577
+-0.52255645
+0.70573008
+-0.94690716
+-0.67328063
+0.76658380
+0.78293931
+0.56392443
+-0.64486778
+0.42299283
+0.87193060
+0.59115672
+-0.27490342
+-0.24263084
+-0.02851671
+-0.46308130
+0.15639293
+-0.17240465
+0.35580575
+-0.84319529
+-0.07634258
+-0.88239688
+0.69947517
+0.54942524
+-0.25873238
+0.49060512
+0.36774290
+0.34806681
+-0.81917380
+-0.90913332
+0.91670752
+-0.62444478
+0.05381119
+-0.50514746
+0.62710130
+0.36396563
+0.53754556
+0.19418502
+0.97617269
+0.83325708
+-0.59031942
+0.77934992
+0.62566662
+-0.51364782
+-0.26484036
+-0.16076374
+0.54500437
+-0.92540906
+-0.28448826
+0.29958308
+-0.44600558
+0.78904927
+-0.31418824
+-0.78073099
+-0.01707876
+-0.73144528
+-0.07405388
+-0.61896661
+0.38125002
+-0.60268253
+0.92553782
+0.51126528
+-0.98061306
+0.37825942
+-0.25943512
+-0.85827072
+0.01837051
+-0.27197653
+0.43354142
+0.86241102
+-0.17275441
+-0.54984736
+0.41435683
+0.54335380
+-0.52261007
+0.50764477
+-0.87174095
+0.84697986
+-0.66918123
+0.76591229
+0.11611700
+0.46033132
+0.04957056
+-0.47411638
+-0.81132232
+0.34490335
+0.46441555
+0.99919355
+-0.91869500
+-0.13402158
+0.60587204
+-0.74836394
+-0.29804307
+-0.51584664
+-0.25496471
+0.08009779
+0.42136121
+0.52633333
+-0.41884595
+-0.57687724
+0.43319130
+-0.20411485
+0.65580916
+-0.93522032
+-0.63243878
+-0.99304981
+-0.62053970
+-0.76547806
+-0.31264824
+-0.61781836
+-0.49795222
+0.76292944
+-0.00677365
+0.77286744
+-0.93637192
+0.94097197
+0.13835812
+0.71823716
+0.93370819
+0.09439170
+-0.84518602
+-0.05211318
+-0.68295664
+-0.02440834
+-0.66114259
+0.96133244
+0.20003951
+-0.95970853
+-0.87567133
+-0.63913387
+-0.68298081
+-0.06375450
+-0.41557348
+-0.99000354
+-0.24284214
+-0.07224995
+-0.63041911
+0.89836478
+0.10255241
+-0.08532387
+0.74605715
+-0.27620965
+0.72093832
+-0.36665088
+0.96650743
+-0.66397914
+-0.18366426
+0.91113973
+-0.79246359
+-0.09164166
+0.75604141
+0.78964627
+0.04824340
+-0.43744320
+-0.41754806
+0.52361846
+-0.61782658
+-0.35603923
+-0.59252033
+0.00433886
+0.17183053
+-0.62375179
+-0.83859001
+-0.30819464
+-0.39372075
+0.13329113
+0.43564165
+-0.89943441
+0.15329432
+0.99340832
+0.28082609
+-0.92985412
+0.82963276
+-0.58919057
+0.81343293
+-0.02982777
+-0.70451853
+0.13111401
+-0.96569955
+0.47533739
+0.91483366
+0.87213898
+-0.09984535
+0.93078208
+0.43400013
+-0.50638509
+-0.64953959
+0.97779000
+-0.03281724
+-0.75582945
+-0.80331443
+-0.51850733
+0.80995572
+-0.81499864
+0.70976901
+-0.79873092
+0.40973878
+-0.84096111
+0.50515139
+0.66220748
+-0.10882741
+-0.13155812
+0.48904979
+0.81929851
+0.66434789
+0.10560501
+-0.52023104
+-0.26436973
+-0.00672305
+-0.70767985
+0.04320041
+0.61912515
+0.09638614
+0.26529083
+-0.88636964
+0.21324029
+-0.55318609
+0.22776449
+0.25871551
+0.24318417
+0.71593453
+0.14846493
+-0.65938329
+0.97082470
+-0.91981990
+0.98764607
+0.99335773
+0.23879635
+0.47334957
+-0.60481557
+0.61563697
+-0.69786565
+0.50684587
+0.47868012
+0.17045240
+-0.86806581
+0.58942230
+-0.75766206
+-0.85453117
+0.79575756
+0.72272397
+-0.15764419
+-0.70638301
+0.08614217
+0.84519948
+-0.16521364
+-0.06304340
+0.93339786
+0.67952732
+0.43907423
+0.68371133
+-0.02165334
+-0.62132391
+0.74042378
+-0.01420436
+-0.78240976
+0.63310604
+-0.07214014
+-0.61432136
+0.77662325
+-0.15022261
+0.66904820
+-0.96369131
+-0.58875969
+0.11869940
+0.03620236
+0.04684699
+0.96286341
+-0.96456066
+0.19025135
+-0.20475498
+-0.14566936
+0.56679900
+0.49107372
+-0.33052388
+-0.27474774
+-0.50684445
+0.86342193
+-0.52577554
+0.65068529
+0.69743335
+-0.33807752
+-0.31936973
+-0.37894670
+0.46723201
+-0.27721003
+0.95147334
+0.85007802
+0.77851470
+-0.83530257
+0.32539844
+0.93950473
+0.56551827
+0.93104062
+-0.84548798
+0.23198252
+-0.19942930
+-0.56245130
+0.91339173
+0.28165524
+0.31868202
+-0.35033232
+-0.28470736
+-0.63646480
+-0.65470924
+0.30237203
+0.13235797
+-0.81861925
+0.30473616
+0.13338477
+0.69875162
+-0.64374670
+-0.11041792
+0.03971985
+-0.99837992
+0.83655263
+0.37377365
+-0.19883417
+-0.47208328
+0.34596500
+-0.04914733
+0.41183340
+-0.84659330
+0.08065020
+0.62242761
+0.31154524
+0.09773719
+-0.14235040
+-0.31796480
+0.05808572
+-0.12548954
+-0.86388647
+-0.05849966
+0.39343731
+-0.79436627
+-0.31710586
+0.13074500
+0.69099488
+0.06560518
+-0.70872590
+0.97993233
+-0.63577115
+-0.73925693
+0.71785917
+0.66009563
+-0.71663975
+0.68224150
+-0.52935229
+0.93263557
+0.64863527
+-0.75412600
+0.71262196
+-0.38579283
+-0.75045801
+-0.49548915
+0.19020398
+0.26100697
+0.05064124
+-0.81964140
+0.04233766
+-0.79838826
+-0.36873895
+0.87838028
+0.20386925
+0.78665922
+-0.23467242
+-0.52723474
+0.29543584
+-0.06982413
+-0.32839479
+-0.75986723
+-0.35963253
+0.07077905
+-0.30235718
+-0.92650827
+0.44045833
+0.60403923
+-0.47786708
+0.73825256
+0.60204554
+-0.28900487
+-0.45168927
+-0.88145863
+0.91434243
+0.13404809
+0.80650072
+-0.50064162
+0.86784946
+-0.70591857
+0.00342106
+-0.31923931
+0.32639441
+-0.16656456
+-0.54974469
+-0.50540251
+0.44863325
+-0.13156662
+-0.74178710
+0.57673615
+0.60697132
+-0.87581980
+0.54586136
+0.82644553
+-0.82215527
+0.41651525
+-0.75465082
+0.85648606
+0.01571898
+-0.34376897
+0.79366376
+0.61865022
+0.56965327
+-0.16781228
+0.91895312
+-0.74099284
+0.71924020
+-0.78981582
+0.18740992
+-0.14537357
+-0.88986616
+-0.43368672
+0.03020632
+0.54465587
+0.76914124
+0.52477375
+0.72016955
+0.42840203
+0.26150124
+0.30430310
+0.42653503
+0.81207529
+-0.65941526
+-0.59026608
+0.14569824
+0.94247635
+-0.68160039
+-0.91698219
+-0.51340021
+0.43722071
+0.16351548
+0.80511114
+0.24169174
+-0.50410832
+-0.88260624
+0.71206519
+-0.37625351
+0.42242586
+0.61350853
+0.36734613
+0.34953129
+-0.47126836
+0.45207612
+0.03751140
+-0.30604477
+-0.62708189
+0.39181967
+0.54279476
+-0.12804695
+0.56212155
+0.55871246
+0.96013932
+-0.54712665
+0.05460712
+0.86456486
+-0.85320531
+-0.50856278
+-0.75986288
+-0.13188002
+-0.06345749
+-0.37034529
+-0.84473898
+-0.34047639
+-0.28034144
+-0.00552980
+-0.55566844
+0.23016839
+0.35746389
+0.78408752
+0.81636717
+-0.30494324
+-0.46126081
+0.99500695
+0.70266287
+0.14854190
+0.86395207
+-0.55695469
+-0.18016550
+0.50349152
+-0.43542890
+0.90430580
+0.12433773
+0.79357847
+0.28839540
+0.36056839
+0.51048284
+0.81982794
+0.95766853
+-0.90200326
+0.59248523
+-0.80514726
+-0.18129131
+-0.68928903
+0.53560327
+0.71413554
+-0.55879588
+0.79980307
+0.89003129
+0.57715366
+-0.72483445
+0.51268980
+0.56610042
+-0.77363989
+-0.88342383
+0.24338652
+0.38852967
+-0.78545737
+0.44164558
+-0.25051936
+-0.35844985
+-0.80518899
+-0.90409400
+0.44708038
+0.61724543
+-0.03793696
+-0.53991515
+-0.43366186
+0.17369719
+-1.00043839
+0.56449689
+0.60625364
+-0.96505015
+-0.81851220
+-0.50089689
+0.65658897
+-0.63922299
+0.28337061
+-0.64899228
+-0.14839796
+0.19237620
+0.95923884
+0.63869273
+0.00725229
+-0.18083024
+-0.43444853
+-0.07280968
+-0.84868024
+-0.06619430
+-0.15949650
+0.75657207
+-0.09883358
+0.27914758
+-0.77511759
+0.96276254
+0.76840893
+-0.05114090
+-0.05115504
+-0.91048679
+0.29863951
+-0.32806196
+-0.79540730
+-0.78966356
+0.66205573
+-0.18974794
+-0.97813089
+-0.96781517
+-0.55300119
+0.41921409
+-0.21514721
+0.74353456
+0.16155627
+0.03091871
+-0.25955895
+0.03356727
+0.83704528
+0.95630941
+-0.48820292
+-0.21833750
+-0.86536238
+0.61975981
+0.83980412
+0.01006736
+0.90068697
+-0.18547499
+0.10536747
+0.08837834
+0.12542698
+0.12019551
+0.14631309
+-0.76193686
+0.93960521
+-0.83653410
+0.43496458
+0.91984918
+0.75842887
+0.43047900
+0.83178905
+0.42806686
+-0.38876107
+-0.29712118
+-0.48139195
+0.43967377
+-0.51051868
+-0.30490725
+-0.33979908
+-0.36470440
+-0.77244841
+0.17721078
+-0.94752417
+-0.55024235
+-0.32689205
+-0.21958055
+-0.56112234
+0.93616341
+-0.69182474
+-0.16711203
+0.30716857
+0.82380959
+-0.16288947
+0.10130157
+0.99639543
+-0.17428290
+-0.41228260
+-0.26445790
+-0.54828479
+0.68945043
+-0.55126461
+0.46793720
+0.61308307
+-0.49971734
+-0.01307420
+0.90172164
+-0.57588290
+0.93023723
+-0.05645716
+0.46203135
+-0.29955262
+-0.50224317
+0.82745785
+-0.82758957
+0.56309299
+-0.12362225
+0.09221771
+0.40724637
+-0.94851111
+-0.60017345
+0.24045702
+-0.27095583
+0.79650984
+0.93221345
+-0.97086098
+-0.67702763
+0.53146969
+-0.22104762
+-0.86943568
+0.63555084
+0.66308603
+-0.71196719
+0.44383356
+-0.91648497
+0.97584552
+-0.93846931
+0.59093913
+-0.59408307
+-0.16497042
+-0.77215843
+0.46683140
+-0.69087987
+0.20584095
+0.14844706
+-0.26923370
+0.70179899
+-0.29684309
+-0.86499498
+0.87736216
+-0.89839760
+-0.58906532
+0.92494797
+-0.79812173
+0.92520059
+0.80067552
+0.21026226
+-0.88457070
+0.62726303
+-0.42788026
+-0.39722842
+0.45059673
+0.57211289
+0.25130803
+-0.64458484
+0.99215762
+0.45895906
+0.58882385
+0.80122584
+-0.64055342
+0.72434270
+0.22021629
+-0.40087062
+-0.96911742
+0.55449054
+0.27454652
+0.47207822
+-0.02042238
+0.94957543
+-0.55421501
+0.50724627
+-0.18438508
+-0.33805781
+-0.12496139
+0.47330271
+0.06424501
+0.90947531
+-0.51146099
+-0.94714630
+0.84897193
+0.49429789
+0.09887382
+0.07669187
+-0.91485914
+-0.75363346
+-0.87526716
+-0.38590707
+-0.04421739
+0.41928618
+0.16803476
+-0.44341389
+0.46784799
+-0.04160827
+-0.02204792
+-0.68934255
+0.05952587
+-0.56362368
+-0.66464723
+-0.83857504
+-0.58139044
+0.36385062
+-0.40496629
+0.67002025
+-0.62267427
+0.74272111
+-0.76651031
+-0.21782879
+-0.54259857
+-0.74383285
+0.20411313
+0.08805981
+0.91680181
+-0.79080252
+0.15205373
+-0.29875257
+-0.88695430
+-0.83736620
+-0.04801276
+-0.58252645
+-0.75282970
+0.33662966
+0.96284485
+-0.39707644
+-0.53810955
+-0.64670554
+-0.41684536
+-0.08729979
+0.27664390
+-0.85119352
+-0.42916513
+-0.30511030
+-1.01024010
+-0.30639977
+-0.17542244
+-0.00099830
+0.27326000
+-0.87917204
+0.96419463
+-0.39549096
+-0.85575630
+0.59422421
+0.00415029
+0.60205472
+0.02513350
+-0.74626487
+-0.04047698
+0.44794376
+0.98356565
+-0.12351060
+0.74093032
+-0.02575970
+-0.94988055
+-0.11687809
+-0.30863593
+0.71516204
+0.92735517
+0.64214464
+0.22448048
+0.91933350
+-0.03514475
+-0.63102102
+0.59115042
+-0.31395608
+0.03568031
+-0.73257235
+-0.37043680
+-0.79115836
+0.22365392
+0.00434708
+0.03376786
+-0.94551450
+-0.75289714
+-0.83486884
+0.04791159
+0.76207042
+-0.34704875
+-0.60335726
+0.03528198
+-0.90829964
+-0.56549677
+-0.62198382
+-0.56156748
+0.94786895
+0.62414550
+0.59885216
+-0.87740007
+0.45457368
+-0.86704986
+-0.98996684
+0.10406667
+0.36968649
+0.83439079
+0.75092233
+0.09763574
+0.98267221
+-0.37873613
+0.15671747
+0.69476041
+0.79360756
+-0.76918262
+-0.16093200
+0.81915406
+0.35093702
+0.09704315
+0.41025150
+0.16311581
+-0.29043062
+-0.21041963
+0.18404914
+0.72057504
+-0.36780577
+0.09024396
+0.53451062
+0.89357413
+-0.64850760
+-0.69109725
+0.56468889
+-0.62608952
+-0.12189181
+-0.63755152
+0.12949122
+-0.40184323
+-0.82665173
+0.61432550
+0.14322734
+-0.35150408
+0.81266865
+0.84168648
+-0.77284421
+0.59417135
+-0.02351176
+-0.56608759
+-0.65389749
+0.60074006
+-0.00362629
+0.30591256
+-0.05509427
+-0.36443193
+0.58704417
+0.47471958
+-0.12276053
+-0.70512535
+0.65212584
+0.30626081
+0.74618495
+-0.37655368
+-0.12311943
+-0.09590441
+0.29248936
+0.69048053
+-0.55268237
+0.85183850
+0.68336871
+0.05454062
+0.07760441
+0.65160573
+0.45490932
+-0.92374270
+-0.85396160
+-0.61692381
+-0.14548212
+-0.80296475
+0.66733205
+0.25968885
+0.89425039
+-0.28844589
+0.21277785
+-0.16312361
+0.82539713
+0.95926642
+-0.92734534
+-0.35258949
+-0.14614767
+-0.95539236
+0.69004214
+-0.46653479
+0.60866475
+0.11743665
+-0.22915781
+-0.53242871
+-0.74465352
+0.29879177
+0.69155037
+0.58497858
+-0.79296738
+-0.00399649
+-0.39198959
+-0.62901741
+0.89473152
+-0.09591925
+-0.41399771
+-0.62430632
+-0.54288632
+-0.10267115
+0.87967670
+-0.82133722
+-0.65723848
+0.97913063
+0.58030057
+0.63026595
+0.37012327
+0.00392067
+0.51480985
+0.76396239
+-0.41889149
+-0.85258301
+-0.20250255
+-0.23748273
+-0.86278544
+-0.85601036
+-0.68019444
+0.42126870
+-0.69149652
+0.87515497
+-0.46326244
+-0.94959363
+0.73674655
+0.36337876
+0.21812809
+0.72716451
+-0.37043619
+0.05227947
+0.50002539
+0.11488450
+0.07940221
+0.42314506
+-0.76315543
+0.35334313
+0.47023058
+-0.13753349
+0.47431016
+-0.57545447
+0.25063419
+-0.38326871
+-0.89377192
+0.56214690
+0.38258982
+0.82789397
+0.59279704
+-0.56281456
+0.46957552
+0.48608959
+0.09491313
+0.30424678
+0.34952080
+0.89579105
+0.80695605
+0.13408530
+-0.07005399
+0.47006357
+0.79014146
+-0.18176037
+0.20659173
+0.87062502
+-0.73105010
+0.47559297
+-0.10007930
+0.43689370
+0.05795789
+0.67681372
+-0.23422343
+0.16756296
+0.05888498
+-0.89786175
+-0.44206631
+-0.97202385
+0.03473759
+-0.33772665
+-0.67262337
+-0.42596763
+-0.12059766
+-0.17906123
+-0.37691718
+-0.13808608
+0.45917535
+0.31057942
+-0.06059611
+-0.76382603
+-0.02254570
+0.81548989
+-0.49239165
+-0.46658933
+0.62688208
+0.10415626
+0.10615146
+0.70276022
+-0.75487024
+-0.13089114
+-0.64095163
+-0.65932107
+0.88355076
+-0.97837894
+0.74172831
+-0.91493916
+0.50786805
+0.93903744
+0.90315747
+0.82778788
+0.92969751
+-0.94202793
+0.01583099
+0.96450245
+0.55310917
+-0.21601689
+-0.69907370
+-0.47268051
+-0.56800997
+-0.38641489
+-0.09024006
+0.52272487
+-0.90097424
+-0.68197095
+0.74663806
+-0.75197053
+-0.39678013
+-0.64955178
+-0.66066298
+0.99347460
+0.85703266
+-0.52383471
+0.46341372
+0.29917157
+-0.20651478
+0.23985159
+-0.09894860
+-0.65636784
+0.39688587
+0.56984997
+0.26623523
+0.22776532
+0.55876124
+0.13774586
+-0.34147513
+-0.60995072
+-0.82305662
+-0.43430585
+-0.34992206
+-0.06564075
+-0.90317820
+0.68427408
+0.51242006
+-0.11378574
+-0.08456933
+0.17187560
+-0.35725421
+0.90180337
+0.66816080
+-0.89760417
+-0.27104604
+-0.74682790
+-0.01684797
+-0.48203117
+0.40160382
+-0.19996619
+-0.79574582
+0.27678931
+-0.21419042
+-0.02443928
+0.42855132
+-0.31057131
+0.52472663
+-0.21854532
+0.57558739
+0.54110897
+-0.04865831
+-0.00380987
+-0.00352114
+-0.15565884
+-0.29390574
+0.70067871
+0.98620653
+-0.62315297
+0.35206997
+-0.65879989
+-0.38542855
+-0.73855558
+-0.31917965
+-0.34153140
+0.43127370
+-0.25942403
+0.62137353
+-0.63472542
+0.47755384
+0.18628979
+-0.03150445
+-0.48043239
+0.03291738
+-0.01461458
+-0.36767912
+0.42198169
+0.23907709
+0.21475506
+0.80696833
+-0.82866491
+0.77896631
+-0.20268506
+-0.35521609
+-0.07170528
+-0.09074485
+0.03988409
+0.93575168
+0.26923847
+0.82964110
+0.23390245
+0.86005008
+-0.95636731
+0.27108204
+0.99084401
+0.27902937
+-0.09312963
+0.53349781
+0.27105010
+0.82904708
+-0.33841121
+-0.24434364
+-0.84135300
+-0.53195032
+-0.81324022
+-0.11291158
+-0.94441111
+-0.91548754
+0.04545701
+-0.44255471
+-0.82642590
+-0.14421219
+0.04932952
+0.64987803
+0.64259291
+0.79196763
+-0.72321519
+0.62519777
+-0.69988385
+0.79007006
+-0.56851229
+0.91799259
+0.95326090
+0.67017531
+-0.06489950
+0.02253306
+0.57319939
+-0.60064819
+-0.49459672
+-0.46171725
+-0.02474982
+0.19026911
+0.91439843
+-0.02314717
+-0.61755726
+0.66030681
+-0.65383574
+-0.73549592
+-0.21745574
+-0.49613178
+-0.06238872
+-0.65342742
+0.13097763
+0.85072064
+-0.58351815
+0.62747800
+0.18210936
+0.53208947
+0.07557440
+0.42016947
+-0.29116410
+-0.51683414
+-0.13905042
+0.08642435
+-0.85799041
+0.42725694
+0.29887927
+-0.27895367
+0.99649024
+0.65016031
+0.98857760
+0.32378674
+0.15290916
+0.60866284
+-0.40270269
+-0.05453438
+-0.93647461
+0.88466227
+0.71583736
+0.32305777
+-0.34780300
+-0.17643744
+-0.88182893
+-0.16836936
+0.66709960
+0.32403282
+-0.45280837
+0.38501682
+-0.16916700
+-0.95335880
+-0.51691907
+0.30036998
+-0.37342998
+-0.01175098
+0.97214908
+-0.87726864
+-0.57261436
+-0.01282495
+0.56195131
+-0.26538066
+-0.34684226
+0.76198669
+0.35695228
+0.12356122
+0.78501712
+0.56560491
+-0.46441564
+-0.31911529
+0.05116704
+-0.35507565
+-0.91243018
+-0.99597134
+1.00505130
+-0.59381225
+-0.44042055
+-0.59287765
+-0.27058263
+0.62810782
+0.65343382
+-0.31427871
+-0.44099022
+0.13054196
+-0.74666681
+0.63160864
+0.72827788
+-0.41712633
+0.94285797
+-0.65954168
+-0.23662791
+0.24634855
+-0.44016890
+-0.68922512
+-0.69944259
+-0.78761234
+0.53994591
+-0.20686013
+-0.89106180
+0.71554122
+0.10421995
+-0.39172332
+0.09856241
+0.36485984
+-0.05159687
+0.88193808
+0.46765305
+0.35965965
+0.95061121
+0.03343989
+-0.43900455
+-0.81387553
+0.05891798
+0.24670663
+0.08052208
+-0.91082141
+0.34214538
+0.30479288
+-0.76059909
+-0.86838335
+-0.00436305
+-0.33600822
+-0.33692339
+0.15617531
+-0.74208000
+-0.01234577
+1.00139652
+-0.38525513
+0.98037169
+0.31835634
+0.37248926
+0.19201099
+-0.99983892
+-0.63832158
+-0.34996730
+0.67545694
+-0.24498686
+-0.52945816
+0.87283572
+0.01210270
+0.16198923
+-0.00267165
+0.36012490
+-0.35803150
+-0.44905436
+0.42873292
+0.87109528
+-0.06703110
+0.37721008
+0.57824821
+-0.97036307
+0.92204492
+0.24157131
+-0.73368159
+0.45435664
+-0.46256058
+-0.56621304
+0.68811810
+0.79109154
+-0.97446673
+0.54185150
+0.27230635
+0.11337750
+-0.84032262
+0.76343140
+0.24404211
+0.29195120
+0.83569420
+0.45375437
+0.03275375
+0.74387248
+0.55958554
+0.29903722
+-0.25534057
+-0.98933662
+-0.47288217
+-0.08749131
+0.99606033
+-0.30116033
+-0.61960745
+0.08117276
+0.76634235
+-0.75473455
+0.49609786
+-0.04495477
+-0.85474469
+-0.31321193
+-0.70608228
+0.49922953
+-0.84474736
+-0.23744065
+-0.05133856
+0.53960005
+0.24788875
+-0.97474101
+-0.01929562
+-0.40012275
+-0.15628112
+0.24361057
+0.93563549
+0.52438554
+-0.95572840
+0.93323623
+-0.86545352
+0.40832608
+0.19029244
+0.81534828
+0.79865093
+-0.81915271
+-0.03660031
+-0.48198025
+0.05948501
+-0.19212037
+-0.47423091
+-0.71533640
+-0.48118756
+-0.36638839
+-0.95933798
+-0.56348530
+-0.70143472
+0.43854516
+-0.91362902
+0.90708264
+0.81216396
+-0.00323136
+0.51346060
+-0.74849413
+-0.07027570
+0.36415643
+0.77486835
+0.63495628
+0.82838925
+0.48210867
+-0.07750646
+0.68661863
+-0.71877858
+-0.97807048
+-0.86638344
+0.20808881
+-0.86615096
+-0.50580469
+0.07128048
+-0.31054102
+-0.23184406
+-0.21388239
+0.61032203
+-0.92661718
+0.71096973
+-0.74342249
+-0.90070777
+0.45192452
+0.75568115
+-0.65458858
+0.65012217
+0.47232482
+-0.65091298
+0.95507429
+0.33642208
+-0.72925977
+0.24547041
+0.43409081
+-0.60994263
+0.57459158
+-0.25830986
+-0.88441956
+-0.35590168
+-0.46376494
+-0.62493573
+0.37445814
+-0.66006421
+-0.53840013
+0.56039165
+0.37328657
+-0.51242064
+-0.45394479
+0.31056353
+0.31434579
+-0.64604744
+0.14955387
+0.13365435
+0.42395665
+0.45954599
+0.06323169
+-0.74834173
+-0.44703858
+0.26146828
+-0.83011708
+0.46555950
+0.97883091
+0.37437735
+-0.71610464
+-0.12727587
+0.64728256
+-0.50415784
+-0.62206612
+-0.64569916
+-0.06276763
+0.92955394
+0.18096481
+0.61349635
+-0.73734720
+0.49035234
+-0.95187291
+-0.79323929
+0.50695079
+-0.29882378
+0.08065507
+0.83465379
+-0.78010497
+-0.26110060
+0.71560317
+-0.77300380
+-0.29890915
+-0.58767172
+-0.37043352
+0.28298324
+0.52753558
+-0.80635127
+0.48856915
+-0.44555547
+-0.19433767
+0.42068963
+0.89906438
+0.35650036
+-0.89964602
+0.39279514
+-0.84788158
+-0.82591270
+-0.48779640
+-0.75312531
+0.64466816
+-0.75771705
+-0.77338712
+0.02559327
+0.19764430
+0.81091748
+0.95079590
+-0.03954725
+0.10022163
+0.38643428
+0.61802525
+-0.27472218
+-0.98785983
+0.10401872
+-0.13784670
+-0.45307847
+-0.53686832
+0.07062063
+0.40169494
+-0.50681778
+0.07043307
+0.27043770
+-0.43425723
+1.02532800
+-0.56328531
+-0.86811759
+-0.45159260
+0.63267930
+0.26614666
+0.15965246
+0.11537573
+0.56571508
+0.95782949
+0.03001678
+-0.46880124
+0.11118816
+-0.66362933
+0.86698600
+0.63434034
+-0.55311369
+0.05205945
+0.37692249
+-0.02422097
+-0.74468170
+0.00253874
+0.10965642
+0.86462382
+0.29535358
+-0.73373796
+0.61455251
+0.40773784
+0.66641576
+-0.33030690
+0.36518951
+-0.88796852
+-0.04706654
+-0.37497389
+0.78988220
+0.33499556
+0.90630204
+-0.96786107
+0.86537108
+0.89375476
+-0.09465695
+0.78542808
+-0.45756573
+-0.74834317
+-0.45250044
+-0.60072848
+0.54902650
+0.66788495
+0.49572695
+0.25112235
+0.95980111
+-0.70778672
+0.19127912
+-0.61249312
+-0.34346630
+-0.38034423
+-0.10388354
+-0.58135459
+-0.46121703
+-0.22667187
+-0.28798158
+-0.95942219
+-0.37800384
+0.55274791
+-0.32062597
+0.59140274
+0.47928148
+-0.72396887
+0.09818736
+0.95583760
+-0.14313876
+-0.24216852
+-0.33512259
+0.09472039
+0.38970547
+0.84748422
+0.89868195
+0.24714658
+-0.43022354
+0.02654508
+-0.64212556
+-0.63431997
+-0.43116134
+0.13979254
+0.94282397
+-0.46127247
+0.47906149
+0.89775768
+0.04165072
+-0.89799005
+-0.05498444
+0.01849229
+0.80597509
+0.14511966
+0.35578241
+-0.18346888
+-0.30462144
+0.47364652
+0.07788992
+-0.13510051
+-0.38440006
+-0.37170789
+-0.70174720
+0.49661930
+0.39549187
+0.36683330
+-0.87407566
+-0.14877752
+0.89237374
+-0.76408687
+0.21049095
+-0.20173683
+0.11844906
+-0.84107565
+0.48148019
+-0.65992961
+-0.40318732
+0.61233486
+-0.19811779
+0.75860874
+-0.02717900
+-0.69177784
+0.18421432
+-0.79255207
+-0.23172913
+-0.55786410
+-0.14875871
+-0.74745914
+0.74258850
+-0.77940675
+0.44922508
+-0.92994470
+0.86207555
+0.66368987
+-0.07534274
+-0.29232925
+0.19978595
+0.13316410
+-0.45751162
+-0.19404473
+0.19427900
+0.89832982
+-0.46715772
+-0.35721934
+0.69068246
+0.34594934
+0.78057538
+-0.60486077
+0.93603954
+0.45751189
+-0.79068306
+0.26908520
+-0.68036899
+0.32926942
+0.01520194
+0.58429089
+-0.74663205
+0.50917640
+0.91167021
+-0.92947575
+-0.95483254
+0.40400945
+0.13358070
+0.72400922
+-0.39712820
+0.37072338
+0.62257754
+-0.45376547
+-0.38322021
+-0.75353056
+0.77103749
+-0.78423582
+-0.47394672
+-0.20455953
+0.05942025
+0.16788244
+0.94923687
+-0.27285609
+0.04743211
+-0.39388928
+-0.08621535
+0.10052873
+0.14113243
+0.88368769
+0.35378971
+-0.35244241
+0.76967264
+-0.15750412
+-0.39724908
+-1.00584621
+0.49014540
+-0.89964542
+-0.09767661
+-0.51251356
+0.35645308
+-0.74071431
+0.61921635
+-0.96364854
+0.14230347
+-0.86819625
+0.37274308
+0.19312456
+-0.43972072
+-0.73011408
+-0.36160132
+-0.03904656
+0.21196869
+-0.54788345
+0.41928316
+0.54095604
+0.63096840
+-0.72696638
+-0.24822221
+0.57774674
+0.61349514
+-0.64634311
+-0.83807752
+-0.88548700
+0.22370375
+0.93080618
+0.84103484
+-0.18795154
+0.05823257
+-0.44858471
+-0.29638873
+0.92530428
+0.00966492
+0.71033502
+-0.43260204
+0.29006852
+-0.06969320
+0.14103538
+0.75677190
+-0.02058158
+0.45443850
+-0.66798024
+-0.92538046
+-0.10033154
+0.10449669
+0.34065332
+-0.50604024
+0.71941365
+-0.23348980
+-0.62053900
+0.83877370
+-0.39916609
+-0.74774378
+-0.66049933
+0.45111406
+-0.11544893
+0.69567511
+-0.65780315
+-0.68751196
+-0.72772874
+0.34781206
+0.33144898
+-0.05986315
+0.89753280
+0.83439049
+-0.48567474
+0.27873449
+0.03761506
+0.42391808
+-0.90493799
+0.41039600
+-0.25529057
+0.52598488
+0.86096733
+0.70561492
+0.26575467
+-0.42227173
+0.34569931
+0.74927076
+0.32600484
+0.02643744
+-0.24066424
+-0.55526397
+0.93185391
+0.78551352
+-0.11103438
+-0.49943143
+0.93929431
+-0.97834661
+0.87238029
+-0.72410496
+-0.52141850
+-0.13633561
+-0.23226655
+0.78680142
+0.57134954
+-0.51269957
+0.22083135
+-0.77440720
+-0.93119697
+0.03437945
+-0.80830304
+-0.97334419
+0.45626763
+-0.37915759
+-0.70917202
+0.33558047
+-0.18672501
+-0.84566768
+-0.98400426
+0.32130394
+-0.62693414
+-0.48682385
+0.43897131
+-0.52583145
+0.25540101
+0.70749390
+-0.62170269
+0.13344234
+-0.06922535
+0.00630281
+0.28324944
+-0.69889402
+-0.54428640
+-0.65267139
+-0.72923154
+-0.65898851
+0.74340267
+0.09886937
+0.97234388
+0.18078268
+-0.13926941
+0.33020688
+0.00042095
+-0.24567472
+0.30400492
+-0.12548429
+-0.60745891
+0.53053424
+0.83358907
+-0.01093901
+0.61728686
+-0.82492931
+-0.05046420
+0.27893031
+-0.54735710
+-0.86968258
+0.68202741
+-0.56351009
+0.96998857
+0.01080375
+0.84569007
+-0.48556923
+-0.03633790
+-0.43181746
+0.05918072
+0.25934517
+0.71225448
+-0.75548063
+-0.39604206
+0.05560618
+-0.33663142
+-0.31036263
+0.88426973
+-0.03806495
+0.86658357
+-0.71030334
+0.40933143
+0.44577971
+0.31051853
+0.79330720
+0.42193043
+0.51509590
+-0.10821005
+-0.45400647
+-0.16648840
+0.67738438
+0.28980160
+-0.60734475
+0.05551624
+0.52231896
+-0.55182517
+0.22835505
+-0.86601844
+-0.97218480
+-0.11480641
+0.06112874
+0.00100851
+0.31824267
+0.41544414
+-0.97353078
+0.71907616
+0.18654680
+0.16881454
+-0.93506982
+-0.45338732
+0.00197029
+0.53921723
+-0.08744669
+0.72229910
+0.92705643
+0.12629318
+-0.20930970
+-0.98265265
+0.12387192
+0.61105549
+-0.20065975
+0.15456879
+-0.17667478
+0.95475399
+0.31921780
+-0.37911481
+0.80128980
+0.78172624
+0.78693867
+-0.48381549
+-0.95450165
+0.88452578
+-0.39070088
+0.84941983
+-0.15793180
+-0.73898387
+-0.46492016
+-0.21607649
+-0.84682328
+0.49774837
+-0.54461232
+0.30709887
+0.12513316
+-0.07222599
+-0.87481010
+0.26080394
+-0.71665749
+0.19787335
+-0.51334006
+-0.46167737
+0.14982319
+0.28939247
+-0.39373803
+-0.45507956
+-0.29323506
+-0.46273643
+0.97726011
+0.00291419
+0.11597991
+-0.29869121
+-0.98700187
+0.96856236
+0.60391390
+-0.69543949
+-0.73828676
+-0.02129298
+0.93708777
+0.45193541
+-0.35978436
+0.60476494
+-0.10159767
+-0.08243316
+0.74558842
+0.78282118
+0.91874361
+-0.84541033
+-0.44021672
+0.94807220
+-0.17559534
+0.89971137
+0.38680243
+0.01707113
+-0.80108695
+-0.24342090
+0.62652516
+-0.08299673
+-0.10849100
+-0.15152323
+0.63197231
+0.66474104
+-0.59175503
+0.67662239
+0.01596868
+0.19109964
+-0.52669308
+-0.06664199
+-0.73904902
+-0.94763306
+0.40909231
+-0.39668214
+0.29884422
+-0.12115228
+0.93017805
+-0.87872782
+-0.27602214
+-0.24352467
+0.85204232
+0.66004348
+0.10889745
+0.71551466
+-0.93807792
+-0.44411761
+-0.92993833
+0.82477999
+0.26051581
+-0.38636833
+0.31694579
+-0.95953675
+-0.57192326
+0.60044563
+0.93749440
+0.68179917
+0.18432999
+-0.50475535
+-0.94466411
+0.44406152
+-0.58016106
+0.67679417
+-0.05902106
+0.51141226
+-0.09218711
+-0.76944484
+-0.68665403
+-0.23288071
+0.62361634
+-0.94046228
+0.72149491
+0.80858219
+0.56783831
+0.40823758
+-0.81015787
+0.36621165
+-0.25753993
+-0.09988683
+0.27105296
+-0.56979862
+0.89987278
+0.66412556
+0.10831690
+-0.12432486
+-0.45955360
+-0.37006766
+-0.35525155
+-0.97536087
+0.25885761
+-0.29975528
+0.20338190
+-0.27324706
+-0.30251205
+-0.21204394
+-0.28415632
+0.99482322
+-0.96568566
+-0.91629662
+-0.41090405
+0.80486214
+-0.81396125
+0.44329035
+-0.40796465
+-0.30583537
+-0.66494989
+-0.94849530
+-0.44788080
+-0.06631285
+-0.93870435
+-0.17054063
+-0.17639691
+0.04086411
+-0.35012698
+0.59283817
+0.88964379
+-0.90776508
+-0.93639541
+-0.97166321
+-0.65770599
+0.47136474
+0.94244802
+0.71675885
+0.09966111
+0.25407720
+-0.97946073
+-0.62128460
+-0.05471134
+-0.74442947
+0.94531214
+-0.61293671
+0.15395308
+0.81377339
+-0.00927174
+-0.45260763
+-0.09136063
+-0.28855824
+-0.35665548
+-0.99289651
+0.80685544
+0.09987390
+-0.91996893
+0.55316973
+0.40791261
+0.96906900
+-0.16255724
+-0.82484512
+0.56782210
+0.39309788
+0.92500186
+0.52944195
+0.32534230
+0.82320392
+-0.50667125
+-0.92722426
+0.76371956
+-0.05907029
+-0.87532863
+0.11213720
+-0.69051838
+0.59592927
+0.55100572
+-0.59045735
+0.66616416
+-0.57084072
+-0.52676287
+-0.14436352
+0.52630448
+-0.97193933
+-0.46142370
+0.64132857
+-0.52152470
+-0.61110529
+-0.32010615
+0.29322219
+0.38640344
+0.60744703
+-0.66980332
+-0.02265978
+0.04605067
+0.90070629
+-0.20828146
+-0.39658952
+0.95921302
+-0.02421403
+-0.37633181
+-0.02864087
+-0.19410157
+-0.32968658
+-0.71834338
+-0.39962745
+0.23396587
+0.23237443
+0.56449437
+0.91189742
+0.95416451
+0.99767041
+0.54069793
+-0.45079631
+0.82750499
+0.31994796
+0.40705872
+0.41444373
+-0.24821490
+-0.29917514
+0.56568301
+-0.83828709
+-0.75498998
+0.32866395
+-0.39491671
+0.88206434
+0.11554551
+-0.14043278
+-0.44191980
+0.95016944
+-0.34002662
+-0.05312282
+-0.14054906
+0.58690989
+0.41445279
+-0.77148370
+0.12304151
+0.04371893
+-0.42832696
+0.58341873
+-0.91747863
+0.20281165
+0.13122297
+-0.67471496
+-0.20003414
+-0.26338363
+-0.66487929
+0.07594505
+-0.70776458
+-0.04347718
+0.56904671
+0.77180350
+0.73212005
+0.56093002
+0.09257066
+-0.61972192
+0.85728585
+0.70015209
+-0.09000526
+0.79730705
+-0.23726623
+-0.20798143
+-0.16661381
+0.63017654
+0.77967793
+-0.87734404
+0.25826591
+-0.93442967
+-0.94683555
+0.16193941
+0.70375271
+0.13664368
+0.36431734
+-0.60747707
+-0.07682779
+-0.15369700
+0.12218191
+-0.09373637
+-0.10943766
+-0.65425980
+0.02121723
+-0.48591740
+-0.27071240
+0.45651829
+0.76555139
+0.06530772
+-0.99043600
+-0.44443198
+-0.84432315
+-0.91856848
+0.56830166
+-0.93659942
+0.78623304
+0.57725854
+-0.27546127
+-0.86777858
+0.40288732
+0.42533844
+-0.22016430
+0.55878123
+-0.99063668
+0.15542816
+-0.13893031
+-0.75662584
+0.42318426
+1.01073874
+0.83370386
+0.98774856
+0.24942273
+-0.26836268
+-0.01957151
+-0.26145303
+0.95568923
+-0.69075492
+-0.00738914
+0.26731174
+-0.95200954
+0.06313981
+-0.25240236
+-0.94239362
+0.68245442
+-0.63337207
+0.36227667
+0.08711814
+0.95064090
+-0.31402901
+0.83924861
+0.06383713
+0.63309348
+0.76885297
+-0.74664103
+1.04055383
+0.73735372
+0.13679076
+0.54386856
+-0.01236281
+0.04312029
+-0.22802290
+0.19769292
+0.07521292
+-0.27095946
+-0.25539790
+0.81335414
+0.57572381
+0.54647873
+-0.30205972
+0.57350295
+0.27256650
+0.19730556
+-0.29627846
+-0.77386179
+-0.28139872
+0.31991398
+0.10699046
+0.19776045
+0.13333549
+0.50786198
+-0.95985799
+-0.73072760
+-0.23296154
+0.35958822
+0.43135588
+-0.96116753
+0.58128974
+0.99079735
+0.87914320
+-0.02827379
+0.64175292
+-0.05412667
+0.85192336
+0.75096798
+-0.62139994
+-1.09362994
+0.48325809
+0.42601356
+-0.62334700
+0.17625712
+-0.18869592
+-0.75962659
+0.09215201
+-0.92819887
+-0.07954866
+-0.65894063
+-0.59825838
+0.05976388
+-0.62672831
+0.38247586
+0.40986779
+0.70592194
+0.11383824
+0.40001658
+0.52094513
+0.73777667
+-0.19715883
+-0.04393768
+0.39985019
+0.06707274
+0.88395014
+0.57970656
+0.53206704
+0.30552551
+-0.11279558
+-0.12937271
+-0.42240352
+0.68906176
+0.86618714
+-0.30599761
+0.97786424
+-0.62963939
+0.16360106
+-0.34004320
+-0.85727032
+0.39479346
+-0.68470558
+-0.50160077
+0.59505157
+0.33430452
+-0.39044160
+0.48688313
+-0.48303965
+0.40634449
+-0.73083922
+0.41118620
+0.11139519
+0.68364844
+-0.93916522
+0.32154647
+1.02497839
+0.91434673
+0.21628816
+-0.12862194
+-0.07159444
+0.91171894
+-0.70946704
+-0.65442436
+-0.88897365
+-0.89411381
+0.45833834
+-0.14565422
+-0.18052194
+0.30298728
+-0.81927548
+-0.24793963
+0.18068293
+0.64730793
+0.35220269
+-0.70164038
+-0.97269538
+0.96236850
+-0.14112448
+0.63421579
+-0.27956049
+-0.03699223
+-0.62235056
+-0.27367656
+-0.28072157
+0.18834802
+0.40200536
+-0.17090601
+0.90900951
+0.03222376
+-0.84651362
+0.09372622
+-0.87161620
+-0.00016347
+0.12706940
+0.59907028
+0.59530687
+0.34809378
+-0.62406252
+-0.19119633
+0.60153849
+-0.65705129
+0.04428151
+-0.04713087
+-0.34515098
+-0.33340828
+-0.60653038
+-0.06508663
+-0.44641752
+0.14583234
+0.03915465
+0.36122992
+-0.23627134
+0.75551374
+-0.40308076
+0.09089368
+0.10824786
+0.56032589
+0.66177546
+-0.10369509
+-0.91267535
+-0.86293880
+-0.14100874
+0.99866577
+0.44867667
+0.20399305
+-0.93086359
+0.63015105
+0.19387139
+-0.49851438
+0.59228091
+-0.69571366
+-0.11678032
+0.06895645
+-0.56333165
+0.05830947
+0.02200431
+-0.35557266
+0.28662685
+-0.15740227
+-0.72590479
+-0.61188220
+0.78217726
+-0.78111688
+0.50174803
+-0.12720223
+0.37709234
+-0.85255805
+1.01763614
+0.56948804
+-0.02266414
+0.59005465
+0.89638207
+0.33703199
+-0.04309780
+0.54732196
+-0.77690661
+-0.27881872
+-0.87942737
+-0.94830735
+0.61183388
+0.63848568
+0.80450259
+-0.28930422
+-0.27316589
+-0.92571285
+-0.22970989
+-0.78744273
+0.26830605
+0.61855107
+0.65071753
+-0.89260534
+-0.45549181
+0.19398170
+0.99828522
+-0.67117950
+-0.74326879
+0.68778470
+-0.10387630
+-0.19093684
+-0.37192375
+-0.46841753
+-0.33317164
+-0.79188973
+-0.25976502
+-0.81299969
+0.48589717
+0.19083394
+0.38065006
+0.62383810
+-0.89393434
+0.09169844
+-0.67845734
+0.83995798
+-0.83175641
+0.97822455
+0.18631753
+-0.75590746
+-0.31688403
+-0.08099750
+0.54245832
+0.61963857
+0.47165868
+-0.57028749
+0.93463676
+-0.20787356
+0.30182447
+-0.88665111
+-0.79529189
+0.39377172
+-0.61862518
+0.44206502
+-0.36810719
+0.36107973
+-0.97701792
+-0.83550228
+0.98165907
+0.83562182
+0.56211276
+1.03359766
+0.04819011
+0.43189102
+-0.20267119
+-0.11998407
+-0.70934998
+-0.46573468
+0.41845063
+-0.19823550
+-0.49688008
+-0.31575819
+-0.70709467
+0.68666096
+-0.84171148
+0.45800844
+-0.79288149
+0.94692159
+-0.40175104
+0.54525353
+0.76837507
+0.19087263
+0.34156995
+0.96892737
+-0.33504886
+-0.38706546
+0.57055016
+-0.70679059
+0.15989965
+0.14511278
+-0.53732332
+-0.50069212
+0.10357828
+0.62711148
+0.51759445
+0.11439841
+0.90365434
+0.46616651
+-0.58212464
+-0.10355769
+0.30792785
+-0.48614339
+-0.86485329
+0.59968775
+-0.17168656
+-0.69995414
+-0.30934005
+0.29673024
+0.60080507
+-0.50500080
+-0.35161791
+0.89164430
+-0.50775854
+-0.14510781
+-0.19027779
+0.31672382
+-0.79886696
+-0.58569215
+0.28288154
+0.56179134
+0.82862188
+-0.68604690
+-0.65279184
+0.28427199
+0.77889704
+-0.39957457
+-0.14638912
+0.93690058
+-0.69938315
+-0.04466125
+0.14712353
+0.29628766
+0.39900313
+-0.76053083
+-1.00449745
+-0.96559120
+0.80149985
+0.96590838
+-0.70920772
+0.24283374
+-0.73648049
+0.88235971
+-0.86998729
+0.68954746
+-0.19816276
+-0.53985845
+0.21376363
+-0.43399060
+-0.31305589
+-0.28691649
+-0.50831622
+0.92265548
+-0.97723495
+0.20806755
+-0.99658863
+0.31567659
+-0.83281689
+-0.76537123
+0.72947019
+0.34697193
+0.90730484
+0.94784410
+0.96167984
+0.72400918
+0.19721552
+-0.53303396
+-0.11108231
+0.83302196
+-0.39402977
+-0.21549406
+-0.37404025
+0.13154351
+0.89749756
+-0.19842525
+0.52974739
+0.83572572
+-0.48952002
+-0.57577844
+0.61195003
+0.77557950
+0.78906624
+0.71558113
+0.01474207
+0.34239322
+0.31288715
+-0.69687955
+-0.00395427
+-0.52206449
+-0.31999193
+-0.82009705
+-0.92189335
+0.75450935
+-0.37046414
+0.68192466
+0.44659033
+0.64261607
+0.57440019
+0.74813280
+-0.64336751
+-0.03671753
+-0.99995232
+0.16255411
+-0.90476738
+-0.73906182
+0.40218771
+-0.91278150
+-0.13326707
+0.61086674
+-0.83362282
+-0.26796887
+0.70825147
+0.08331755
+0.79761367
+0.85903956
+0.50372664
+-0.83031296
+0.97678312
+0.78432463
+-0.21901393
+0.51463066
+0.20282998
+0.25139202
+0.44366242
+0.77508060
+0.85341540
+0.34540023
+0.75768071
+-0.67791489
+-0.65336765
+-0.78458728
+-0.95422381
+0.05544610
+-0.34209471
+0.04215282
+0.42839042
+0.62531950
+-0.97895200
+-0.13969122
+0.34717201
+0.29640347
+-0.30139877
+0.46011633
+-0.61745039
+0.00786518
+-0.85822577
+0.27392864
+-0.04935443
+-0.02240105
+0.45544062
+0.64158298
+-0.86992019
+-0.58842533
+0.62644175
+-0.94576957
+0.49814149
+0.47860804
+0.19235514
+0.36482426
+0.14237510
+0.40438644
+0.54220884
+0.83469838
+0.79917553
+-0.51803192
+-0.56045832
+-0.02634893
+-0.00652255
+-0.91443548
+0.50065767
+-0.88946544
+0.26776450
+-0.67220617
+0.32325283
+0.31233416
+0.60025939
+0.60729136
+0.29914091
+-0.13687276
+-0.00944511
+0.43145334
+-0.41219378
+-0.98642803
+-0.61355623
+0.04996383
+-0.94069907
+0.48610828
+0.46629381
+-0.04359814
+0.95749223
+-0.28963808
+0.56180851
+0.01688450
+-0.99043670
+0.56530129
+0.36695986
+-0.16705031
+0.83737948
+-0.55239465
+0.07334751
+-0.02245326
+0.58973708
+0.73177041
+0.28818201
+-0.75329995
+-0.25574068
+-0.93566207
+-0.33685337
+-0.28632514
+0.06995337
+-0.09847127
+-0.40466710
+-0.91306232
+0.49915600
+-0.49128471
+-0.83770565
+0.21554585
+0.54548931
+0.78149724
+0.28124736
+-0.96379214
+-0.11642119
+-0.95117583
+-0.24722749
+0.90649315
+0.04468546
+0.51565687
+-0.82279399
+0.09346747
+0.31954695
+0.92173457
+-0.59778880
+-0.33972520
+-0.86511546
+0.54522003
+-0.31956923
+0.15022343
+0.92476928
+-0.44762393
+-0.55503444
+0.68010077
+0.59057329
+-0.74848431
+-0.11276411
+-0.49940700
+0.80713865
+-0.24137232
+0.30925006
+0.52175534
+-0.10786476
+-0.78603917
+0.13353466
+0.62662077
+-0.20297145
+-0.51933915
+0.61828884
+0.22539219
+-0.06686020
+-0.26699870
+0.88703803
+-0.19301747
+-0.71329216
+0.16438687
+-0.30717175
+-0.67947117
+0.54219445
+0.94009862
+-0.61239034
+0.75428188
+-0.49575105
+-0.66871601
+0.80222522
+0.96189308
+0.81000788
+-0.43114980
+-0.56769134
+0.57631505
+0.72078627
+0.60583091
+-0.16079930
+-0.35237902
+-0.05198960
+0.84999597
+0.17102260
+0.42069421
+0.81102334
+0.10524624
+0.67347342
+0.98804880
+-0.92066170
+0.33726896
+-0.72437250
+-0.39763296
+0.85559947
+-0.71253049
+0.82054841
+0.88521426
+-0.13889378
+-0.89813557
+-0.92223526
+0.52773357
+0.44174967
+-0.46010596
+0.12057884
+0.25844860
+-0.40683277
+0.81074736
+-0.32463607
+-0.35816824
+-0.60557202
+-0.51303175
+-0.04719034
+-0.43744832
+-0.69778597
+-0.39461863
+0.07853198
+0.67098462
+0.87249328
+0.01766465
+-0.47130799
+0.79183143
+-0.12696352
+0.39201045
+-0.98756923
+-0.65029433
+-0.20717084
+0.52556503
+-0.74280381
+-0.09788930
+0.40325677
+0.83861804
+0.18393075
+0.17465377
+-0.86332984
+-0.99329416
+-0.84312312
+0.44924164
+-0.91417503
+-0.30069506
+0.30233729
+0.67388535
+-0.36812419
+-0.73675731
+0.63810503
+0.77990663
+0.58162880
+-0.97508055
+0.08679116
+-0.10291719
+-0.93028713
+0.93162835
+0.93546045
+0.68007159
+-0.97840893
+0.92666912
+0.37103450
+-0.29790425
+-0.04773438
+0.00986063
+-0.09863013
+0.49036992
+0.25354242
+-0.18035716
+-0.19304097
+0.03464437
+-0.43321979
+0.75846601
+0.10880935
+0.04340374
+-0.08878464
+-0.47225451
+0.12331581
+0.79848063
+0.93066633
+-0.65543491
+-0.91490868
+-0.75506875
+0.81162322
+0.02497089
+-0.81882709
+-0.28792179
+0.58045995
+-0.06382900
+-0.99886460
+0.32733190
+-0.30065256
+0.35023284
+0.72574198
+0.58715963
+-0.80283996
+0.06084025
+0.36718714
+-0.04643136
+-0.74426138
+0.37317681
+-0.39275491
+-0.68765971
+-0.88614332
+-0.48239565
+-0.31399328
+-0.78691529
+0.80788207
+0.38537669
+0.12756705
+0.13345408
+-0.12010074
+-0.48205239
+0.99872506
+-0.19057149
+-0.02436012
+0.57688308
+-0.28235286
+-0.01388198
+0.20058715
+-0.91839521
+0.36571968
+0.61138368
+-0.56931111
+-0.33668625
+0.54864824
+0.07264376
+0.55566239
+0.99281645
+-0.95857421
+0.97871828
+-0.55016458
+-0.44975096
+-0.31679350
+-0.84611765
+0.72699666
+0.11886024
+-0.32172346
+-0.39327151
+-0.93049973
+-0.00444150
+0.36813390
+-0.26255554
+-0.29525918
+-0.62597516
+-0.83194456
+-0.07543468
+0.73313844
+0.65002322
+-0.65136382
+0.77325451
+-0.89692517
+0.86611235
+0.84888184
+-0.82701364
+-0.23795295
+-0.69233468
+-0.93294647
+0.87486684
+-0.62497821
+0.36599946
+0.81193364
+0.96261191
+0.70125163
+-0.26903164
+-0.98339458
+0.03118861
+0.93537498
+-0.96280768
+-0.66067141
+-0.83745602
+0.28523469
+-0.14816010
+0.76378345
+-0.96162610
+0.34257162
+-0.17196256
+0.76647091
+0.47659492
+0.79439032
+0.71083391
+-0.34261698
+-0.18334097
+0.20593941
+-0.85761146
+-0.02438837
+-0.82118040
+0.16185760
+-0.42475146
+0.99954724
+0.90126121
+0.14079118
+-0.95600912
+0.95898795
+-0.61364836
+-0.53042659
+0.90351081
+-0.50897315
+0.04534554
+-0.43491042
+0.76451850
+-0.42347407
+0.49818516
+-0.08854884
+0.28369749
+0.34534776
+-0.75195485
+0.70793355
+0.41272581
+0.39774287
+-0.10930920
+-0.07488263
+-0.11992049
+0.81583142
+-0.12449127
+-0.17258638
+0.89676511
+-0.52669254
+-0.29861796
+0.48190272
+-0.72624925
+-0.31767356
+-0.22116941
+0.96420753
+-0.43113083
+-0.44270003
+0.40698266
+-0.17605513
+-0.09878045
+0.32395923
+-0.73315680
+-0.26914936
+0.14420974
+0.46045911
+0.82133961
+-0.82579681
+0.12544572
+-0.89298449
+0.04707086
+-0.25438333
+0.14464295
+0.24306715
+-0.29652256
+0.07437289
+-0.09461159
+0.72621179
+0.45135808
+-0.33703434
+0.15878916
+-0.85308875
+-0.79383710
+-0.06280130
+0.23784304
+0.62922013
+-0.14530677
+0.15305257
+-0.53132480
+0.32314074
+-0.50676200
+-0.11445713
+0.50849879
+0.19688725
+0.37133825
+-0.38569421
+0.10697234
+-0.35495847
+-0.17189032
+-0.22592086
+0.62898099
+-0.33581078
+0.13774872
+-0.53368753
+-0.93686970
+0.34584749
+-0.44911820
+-0.91270959
+-0.00864083
+-0.64597347
+-0.17028010
+0.49637866
+0.16128266
+0.29591799
+0.34250462
+0.73889935
+-0.89156855
+0.78534257
+-0.23969358
+0.47993386
+0.24964941
+0.99254000
+0.08736229
+-0.79525471
+0.22409475
+0.24671900
+-0.89399286
+-0.69541690
+0.93384111
+-0.40480632
+0.38938367
+0.62973356
+0.36591470
+0.41703236
+0.64617109
+-0.91611548
+-0.02532595
+-0.38089949
+0.15501535
+0.70774269
+0.60953045
+0.63971937
+0.26238716
+0.77561247
+0.13537169
+-0.95716721
+-0.41957796
+-0.11683899
+0.09336460
+-0.13468277
+0.86009204
+-0.11396825
+0.07474625
+-0.23087698
+0.92499912
+0.07643306
+0.02987266
+0.48087645
+0.72179937
+-0.14361519
+-0.64340770
+-0.65758386
+-0.13725521
+-0.05157777
+0.13037264
+0.95706748
+-0.56615832
+-0.51478006
+-0.38665115
+-0.00985861
+0.02308044
+0.62095167
+-0.02902001
+-0.74299373
+-0.12071460
+0.38985660
+0.92974347
+0.09281690
+0.27720034
+0.94291933
+0.60312035
+-0.32127527
+0.84873798
+-0.86498506
+-0.54612516
+0.23634390
+-0.41739731
+-0.20251306
+0.62701348
+0.03425844
+0.28688260
+-0.44716334
+-0.80006372
+0.09094659
+-0.70391714
+0.53202405
+-0.45310714
+0.36225375
+0.36041345
+0.00921553
+0.66107760
+-0.32502893
+0.09488026
+0.28638851
+0.44207300
+0.92226163
+-0.63075828
+0.56124896
+-0.93987395
+-0.57473454
+0.61755279
+-0.69265978
+-0.01361887
+0.10842656
+0.68430196
+-0.36619652
+0.62552864
+-0.56223649
+0.58069439
+-0.51741016
+0.50069146
+-0.48095491
+-0.06287283
+0.60336407
+-0.06985408
+-0.30199280
+-0.35788549
+0.70096324
+0.50406196
+-0.10079111
+0.96378308
+-0.74088118
+-0.43545757
+-0.50710691
+-0.76183413
+0.54203106
+0.58523552
+-0.86644971
+-0.52305036
+0.49507823
+-0.89120668
+-0.85987704
+-0.34736839
+-0.85416513
+0.41963822
+0.81799463
+-0.01758937
+0.98289376
+0.80437922
+0.01973436
+0.36920743
+-0.27282813
+0.31364211
+0.59972750
+0.60117999
+0.68554777
+0.93839186
+0.92158629
+-0.93384829
+0.61888165
+-0.32219407
+0.29483457
+0.29568397
+-0.00889687
+0.92179428
+0.59690460
+-0.26985276
+-0.39092082
+-0.71617196
+-0.57936251
+-0.74136051
+0.87044800
+0.72075941
+-0.79529583
+-0.59489893
+-0.30367933
+-0.08453827
+0.53420120
+-0.51647692
+-0.12463113
+-0.42079402
+0.31103394
+-0.34448207
+-0.88978593
+-0.98370287
+-0.48792528
+-1.00474328
+-0.00659753
+-0.14877869
+0.56912897
+0.63756904
+-0.21244708
+-1.12248913
+0.57642301
+-0.47555995
+0.23053203
+-0.79869216
+-0.48147347
+-0.51536735
+-0.77955405
+0.21811365
+-0.67360238
+0.71804407
+0.22017903
+-0.86190815
+0.37562828
+0.64724511
+0.02295416
+-0.32637809
+0.91146857
+0.11149652
+0.50273771
+0.07482715
+0.44803490
+-0.70728889
+-0.53650369
+-0.06481470
+0.98028313
+1.00480477
+1.03017783
+-0.58870050
+0.83324776
+-1.03307486
+-0.70757761
+-0.17827104
+-0.41408539
+0.95008375
+0.11853638
+-0.53396701
+-0.29342162
+-0.59518631
+0.86688363
+-0.01599866
+-0.69529910
+0.36031168
+-0.78276031
+-0.73985405
+-0.72536057
+0.32978091
+0.55333019
+0.26936296
+0.96222481
+0.76066154
+-0.40155837
+0.31796842
+-0.39892454
+0.81797989
+-0.36895557
+0.19205553
+-0.41288997
+-0.62434715
+-0.76638440
+-0.90749723
+0.21553216
+0.22238400
+0.74675887
+-0.48031989
+-0.87934541
+0.63936452
+-0.74619712
+0.07599828
+0.89042698
+0.48840953
+0.62621946
+0.78321189
+-0.52435891
+0.96242669
+-0.37482542
+-0.19203251
+0.54487025
+0.36551873
+0.56476490
+-0.35291287
+-0.86239509
+0.72531916
+-0.94332457
+0.42265167
+0.75456301
+-0.91434273
+0.67405351
+-0.77026553
+-0.17723280
+0.23318074
+-0.96511146
+-0.44003048
+0.10783267
+-0.01804187
+0.71252590
+-0.66588650
+0.55840403
+0.63035296
+-0.60798812
+0.86248181
+-0.99976751
+-0.27189442
+0.28739929
+-0.87902465
+-0.62092883
+-0.25330943
+0.54679075
+0.83690396
+0.56067593
+0.61189279
+-0.09088190
+-0.26086869
+0.52023858
+-0.44976054
+0.85537764
+0.68031749
+-0.87148634
+-0.35688760
+0.05717907
+-0.22351020
+-0.19414326
+-0.14811525
+-0.91970728
+0.25171345
+-0.32363154
+-0.57054843
+-0.84666088
+-0.03166054
+0.74106905
+-0.50825413
+0.80693531
+-0.24165766
+0.30833747
+-0.51763034
+-0.09001598
+-0.50208630
+0.02650403
+-0.87723149
+0.22576018
+0.78760919
+-0.86214289
+0.47025521
+0.97256084
+-0.29020731
+-0.05391777
+1.00311533
+0.60609607
+-0.13543552
+-0.48568550
+0.04643054
+-0.14566383
+0.31367884
+0.09441096
+0.66009792
+-0.09631995
+0.23799316
+-0.73162557
+-0.25104504
+0.59657734
+0.08370822
+0.39808449
+0.31538126
+-0.88552763
+0.85841499
+0.83014453
+0.30845476
+0.42318594
+-0.90767427
+-0.04413570
+0.41038849
+-0.46915607
+-0.28674205
+0.99006465
+0.76280010
+-0.46003587
+-0.24173501
+-0.13009797
+-0.27526846
+0.83743239
+0.31977755
+-0.17573140
+0.01653723
+0.87341223
+0.20781236
+0.57456676
+0.37488586
+0.69534773
+-0.40129796
+-0.70883254
+-0.53146668
+0.37704158
+-0.89420003
+0.29301352
+-0.89520737
+0.46952829
+0.85801203
+-0.38380518
+-0.38277988
+-0.55580607
+0.05384002
+0.98901680
+0.82068984
+-0.29101948
+0.73017156
+-0.25084648
+-0.30845578
+0.70466671
+-0.39079679
+-0.74105985
+-0.57579598
+0.81261120
+-0.71627975
+0.33877558
+-0.68646075
+-0.93620949
+-0.95622153
+0.26195714
+0.76901331
+-0.41101250
+-0.92548301
+0.97435579
+-0.96857040
+-0.05841429
+0.78677536
+-0.63300497
+-0.59532320
+0.17412918
+-0.87294354
+0.52298548
+-0.42856375
+-0.25880019
+0.78162201
+-0.84346279
+-0.38017950
+-0.72676287
+-0.65659458
+-0.35448678
+0.40238393
+-0.42163116
+0.13296153
+-0.25568189
+0.31083604
+0.57324868
+-0.63651666
+0.72288226
+1.00775205
+0.20080512
+-0.82154361
+-0.50247229
+0.18379419
+0.37787811
+0.56940281
+0.93827870
+0.22780291
+0.48830480
+-0.70315119
+-0.95858615
+0.58455066
+-0.72696801
+-0.62183381
+0.33358892
+0.18712242
+0.85089825
+-0.37191630
+0.17567665
+-0.02027983
+0.68508252
+0.28062906
+-0.93390192
+-0.55892390
+0.00682946
+0.96773838
+0.26897637
+0.46745749
+-0.85890011
+-0.79288138
+-0.70750642
+0.34274173
+-0.04800314
+0.94463832
+-0.01066890
+-0.44196534
+-0.57459731
+0.53786720
+-0.68074079
+0.74491019
+-0.13074990
+0.49896706
+-0.83540664
+0.27442072
+-0.31631913
+-0.34534211
+-0.00006149
+0.68329431
+-0.50467276
+0.36060185
+0.30908583
+0.03134779
+0.29164466
+0.48769989
+0.37968455
+-0.60813404
+-0.98576780
+-0.69022761
+0.32120960
+0.70703990
+-0.74825695
+0.95147694
+0.62667222
+0.84139534
+0.64355320
+-0.77341126
+-0.94372641
+-0.56411879
+0.80045859
+0.14790328
+-0.12016665
+0.89896350
+-0.85983936
+-0.07515729
+-0.84388792
+0.20337360
+0.41290319
+0.41222854
+-0.34748081
+0.55430881
+-0.06896779
+-0.00315453
+0.84936639
+-0.35588397
+-0.04043630
+0.50673386
+-0.35462494
+0.08622769
+0.95621732
+-0.86558119
+-0.18843699
+0.31042062
+0.26086802
+0.96860320
+-0.90955366
+-0.18939025
+-0.25711702
+-0.41191141
+0.07830341
+-0.80795035
+-0.36555098
+0.03804846
+0.22596088
+-0.78359373
+0.74195836
+0.89409561
+-0.71033546
+0.24829743
+0.97052636
+0.07216912
+-0.69949103
+-0.23497878
+0.79194016
+-0.34495254
+0.79151211
+-0.30654301
+0.81181924
+0.54553698
+0.15729072
+-0.40235389
+-0.56817297
+-0.23186327
+-0.39866141
+0.96726751
+-0.31421590
+-0.61230687
+-0.59234851
+-0.94953022
+-0.25612250
+-0.76460854
+-0.16848018
+-0.83792928
+0.78993131
+0.78161200
+0.73811112
+0.93016791
+-0.60645468
+0.48777661
+-0.53595942
+0.12943663
+0.68265762
+0.67601347
+-0.51285253
+0.76590853
+0.17443197
+0.53794059
+-0.76258988
+-0.18625494
+0.53314235
+-0.13574347
+0.66408769
+-0.21382791
+-0.10533598
+0.55138636
+-0.43358924
+-0.52838517
+0.24397383
+0.44497838
+-0.90534661
+-0.97229643
+-0.13360555
+0.58424865
+0.95884946
+-0.67063024
+-0.70383028
+0.87975004
+-0.57218038
+-0.45135574
+0.06116405
+-0.97417498
+-0.82078261
+-0.62481091
+-0.32681832
+0.74670273
+-0.27731175
+-0.10835455
+-0.11258053
+0.96525021
+0.00269726
+0.09153918
+0.41038984
+0.78162672
+0.63373628
+0.28796155
+-0.64333228
+0.58969035
+-0.64445727
+-0.77505625
+-0.15114447
+0.11673704
+0.37281840
+0.96557417
+-0.82016073
+0.95190615
+0.51416164
+0.70322300
+-0.63869469
+0.49427779
+-0.94743194
+-0.14186584
+0.87301915
+0.21706931
+-0.37500865
+0.02339365
+0.31041494
+-0.95096803
+0.75692249
+0.24459271
+-0.05041144
+-0.83495871
+-0.01672650
+-0.62511540
+0.42454170
+0.70359818
+0.82103020
+0.07050939
+-0.92451682
+-0.33177374
+-0.13976543
+0.94593839
+0.77384724
+-0.67623727
+0.69288957
+0.05739622
+-0.20058281
+0.39835830
+0.71386015
+0.45220327
+0.38564813
+-0.10397244
+0.37766124
+0.89862812
+0.79343152
+0.55679255
+0.87296758
+-0.34463434
+0.79504106
+-0.30230432
+-0.41088835
+-0.81488293
+0.58725017
+0.17435527
+0.26058943
+-0.13196886
+0.26670595
+0.85367030
+-0.80977966
+0.02367376
+-0.77804915
+0.30760862
+0.26613860
+-0.48472714
+-0.10803907
+-0.56894774
+0.50333651
+-0.41307357
+0.27653509
+-0.76905865
+-0.08285549
+-0.87403589
+-0.52704827
+0.72022164
+0.94259686
+0.42461913
+-0.28434161
+0.10353467
+-0.74921629
+0.39146615
+-0.66530287
+-0.05011230
+-0.30718482
+0.52949941
+0.06736882
+-0.11924196
+-0.06563995
+-0.06538328
+-0.14794743
+0.73104799
+0.66189316
+-0.77658052
+0.87348460
+-0.01009166
+-0.20381307
+0.23963206
+0.83635946
+0.13153685
+0.64241737
+-0.76799690
+0.29581335
+0.36430753
+0.77556349
+0.34647202
+0.70756359
+0.46910748
+-0.73286177
+-0.17312838
+-0.56568909
+-0.63778445
+-0.56316010
+-0.80725687
+0.98614691
+-0.54074073
+0.51051361
+-0.63912081
+-0.89520126
+0.88709490
+0.40002221
+0.91958225
+-0.46232705
+0.27259410
+0.90958558
+0.17490244
+-0.05229333
+-0.21502920
+0.30624099
+-0.72329616
+-0.41856827
+-0.02143673
+0.80404169
+0.60929968
+0.66564333
+-0.38072443
+-0.05694735
+0.87356317
+-0.81315956
+0.53770435
+0.32837987
+-0.57386553
+-0.65783709
+0.35262287
+0.79895604
+0.92383611
+-0.77599554
+-0.35550815
+0.29456306
+-0.66172099
+-0.33846015
+0.34606838
+-0.70887706
+0.47062707
+0.40966964
+0.24282551
+0.99061656
+0.51291990
+-0.43733126
+0.81069171
+0.36417735
+0.34651136
+0.95200777
+-0.43423688
+0.71222365
+0.49883151
+-0.16465890
+0.33939672
+0.15413964
+-0.59490067
+0.81333625
+-0.53020564
+0.91150486
+-0.32052857
+-0.28028500
+0.23911273
+-0.82758707
+-0.42565507
+0.36771202
+0.26124763
+0.33621109
+0.46843600
+0.78166306
+-0.52918160
+-0.70374233
+0.41218150
+0.76122129
+0.61212206
+-0.91441462
+-0.89106832
+0.47927260
+0.15991640
+0.26100302
+0.93314290
+-0.34140825
+-0.51043344
+0.65537107
+0.39960837
+-0.38109273
+0.36700237
+-0.89983185
+-0.61521879
+-0.54663745
+-0.51950830
+0.26343477
+0.76252973
+0.95355177
+0.59793139
+-0.23683703
+0.32818329
+-0.73173663
+0.87794816
+0.92558825
+-0.73846328
+-0.81924064
+0.53254461
+0.67071545
+-0.69420344
+-0.88087919
+0.62932026
+-0.07304347
+-0.79351640
+0.71190858
+-0.32601649
+0.68501365
+-0.72771156
+-0.14073068
+0.91113949
+-0.47834384
+-0.65970248
+-0.56591719
+-0.96245390
+-0.60382488
+-0.38068211
+-0.01414150
+0.54823017
+0.60820556
+0.61491668
+-0.68561116
+0.69355726
+-0.85909370
+-0.34593695
+-0.11355346
+-0.89963786
+0.27484024
+0.69405687
+0.39821458
+0.69441199
+0.61764860
+0.15482986
+-0.37706727
+0.44958055
+0.68642759
+0.85976541
+0.08092606
+0.14167035
+0.02061629
+0.25066590
+-0.00736070
+0.56426680
+0.56690478
+-0.05599558
+-0.85633668
+0.19913065
+0.53945982
+-0.43890435
+0.83060443
+-0.12422401
+0.03208840
+-0.73601741
+-0.97995469
+0.69971764
+-0.31200773
+0.52147281
+0.41605580
+0.38593698
+0.01045299
+-0.02998638
+-0.21795928
+0.98458469
+0.02053308
+0.54903555
+-0.55140218
+-0.15105426
+-0.60589373
+-0.51449594
+-0.37914932
+0.65263355
+-0.47457796
+0.59208131
+-0.96546415
+0.94140637
+-0.19640064
+0.72802651
+-0.84492651
+0.86914849
+-0.47846198
+-0.11900997
+-0.51107430
+0.28567421
+-0.84073271
+0.37543881
+-0.20789474
+-0.29485381
+-0.89537601
+-0.98652611
+0.64460802
+0.51218331
+0.84968591
+0.17606831
+-0.04450500
+0.43121147
+-0.81578185
+-0.57214352
+0.56542540
+-0.28155386
+-0.27962410
+-0.60032958
+-0.14750510
+0.70981717
+-0.67391601
+-0.59671080
+-0.65181980
+0.62801623
+-0.88625371
+0.07239747
+0.24503112
+0.77815568
+-0.61896846
+0.71322548
+0.66776276
+-0.34651840
+0.57443333
+0.65559280
+-0.21439993
+0.42808080
+-0.77795327
+-0.14433306
+-0.76433070
+-0.95351444
+0.83595812
+0.91799259
+-0.19585013
+0.13966048
+-0.27188104
+0.57254565
+-0.22212154
+-0.33792120
+0.28466523
+0.97701716
+-0.60840920
+0.57483757
+0.71389878
+-0.81989923
+-0.85559529
+-0.45404726
+0.45566523
+-0.19469118
+0.23555040
+0.07755637
+-0.34296602
+-0.23955566
+-0.99856477
+-0.20755219
+0.80125678
+-0.88363532
+-0.38320488
+0.27488124
+-0.65588558
+-0.66835397
+-0.40652376
+0.30130112
+0.36667252
+-0.43790329
+0.21853495
+-0.08850646
+-0.90708507
+-0.46866727
+-0.57491377
+0.19750249
+-0.17683834
+0.98704863
+-0.58141011
+0.53917146
+-0.67215154
+-0.95964894
+-0.50565353
+-0.74682957
+0.53802693
+0.78046334
+-0.54320759
+-0.55714151
+-0.58968514
+-0.93967042
+0.50384033
+0.22601664
+0.87862837
+-0.75230092
+0.17922914
+-0.86634195
+-0.60109636
+-0.80001350
+-0.02653354
+-0.43723089
+-0.08723676
+-0.89183886
+-0.33884078
+0.79695237
+-0.59946883
+-0.86722867
+-0.41645634
+-0.98887395
+0.37050521
+-0.53348970
+0.01513815
+0.85088754
+0.86811781
+0.16625535
+-0.46511465
+0.64312184
+0.73075330
+-0.19719595
+-0.18678969
+0.58467305
+0.21345186
+-0.85974209
+0.99689019
+0.17985845
+-0.91020438
+-0.11992431
+0.46734965
+-0.35861409
+0.05528367
+-0.30294311
+0.19400227
+0.03305805
+-0.52844694
+-0.01147163
+0.91584265
+0.92956567
+-0.27711892
+-0.74268937
+-0.72819820
+-0.35253304
+0.09309065
+0.15163910
+0.61535916
+-0.76615708
+-0.46758529
+-0.93937888
+0.60820238
+-0.32469876
+-0.00406643
+-0.35118115
+-0.99397707
+-0.71193737
+0.61310169
+-0.09736412
+-0.28139468
+0.00288838
+0.00490119
+-0.94068329
+-0.11498943
+0.04210529
+0.06062085
+0.68915159
+-0.28853673
+0.17821157
+-0.23623525
+0.01016947
+0.76939938
+0.01666705
+-0.88623466
+0.82948664
+0.37028000
+0.95315917
+-0.85247581
+-0.14965060
+-0.78773897
+-0.21893150
+-0.21768165
+0.72157807
+-0.23042104
+0.53858623
+0.62241439
+-0.72827977
+0.94276209
+-0.82317812
+0.97092558
+-0.46106359
+-0.52705727
+0.71361794
+-0.73921295
+0.90865842
+-1.00136061
+0.37094654
+-0.32890477
+0.76137939
+0.59051154
+-0.99399221
+0.36992010
+0.53825538
+0.66281241
+-0.75923683
+-0.53757647
+-0.55388723
+-0.13129341
+-0.86658480
+-0.83224806
+-0.77241888
+-0.83901311
+0.96065700
+-0.09380946
+-0.15457825
+-0.57173234
+-0.66467832
+-0.08817288
+1.02792440
+-0.26875756
+-0.96585972
+-0.49389421
+-0.82167502
+-0.05136893
+-0.90291122
+0.17237472
+-0.26359829
+1.01213058
+0.33242336
+0.02132705
+0.48781789
+-0.28711596
+0.95279302
+-0.76347094
+-0.87720484
+-0.68777384
+-0.05881095
+-0.59422933
+0.84103618
+-0.76233021
+0.19455752
+-0.64968707
+-0.84758435
+0.97245379
+0.69661315
+0.30578190
+0.86376924
+0.11034101
+-0.05120879
+-0.87229706
+0.76511644
+-0.12457515
+-0.17307457
+-0.17746660
+-0.16177155
+-0.21734552
+-1.03644706
+-0.42188887
+-0.80127965
+-0.48208423
+0.67881107
+-0.49123637
+-0.10168587
+0.59004974
+-0.13002118
+-0.33691048
+0.32994705
+-0.33333379
+-0.90140858
+0.91592436
+-0.25396002
+0.36716363
+0.72858837
+-0.36146891
+0.81247738
+0.56667391
+-0.78469839
+-0.08878145
+-0.07839922
+0.80245234
+0.90056493
+-0.30739295
+0.63436874
+-0.74808149
+-0.15985830
+-0.71537080
+0.82405402
+-0.31727615
+0.56549130
+0.57549168
+0.73862518
+-0.30668502
+-0.94596615
+0.08030096
+0.38742099
+-0.02435933
+-0.39217607
+0.44342439
+0.86784874
+-0.18592310
+0.30747364
+0.58050322
+0.61103999
+-0.59715758
+-0.40543252
+0.44857287
+-0.20561453
+-0.56138228
+0.41184924
+-0.97090254
+0.07457476
+-0.42867478
+-0.46196754
+0.95998878
+-0.51197854
+0.25131645
+-0.82803312
+1.05767711
+-0.75166143
+-0.19980003
+-0.93360090
+-0.90868080
+0.57752061
+-0.03837165
+-0.86664109
+-0.00844852
+0.36052675
+0.70724859
+0.98181133
+0.79848824
+0.77783454
+0.85100531
+-0.42747701
+-0.42479362
+0.66123138
+1.03155091
+0.88253781
+-0.02748372
+0.32140175
+-0.60929405
+-0.91871476
+0.69233815
+0.34936358
+-0.45824253
+-0.88754627
+0.44282376
+0.32130923
+-0.63570988
+-0.21547290
+0.02302807
+-0.42366594
+0.85141096
+-0.45698792
+0.52811696
+0.38497587
+0.28568894
+-0.41471105
+0.07234975
+-0.77249067
+-0.65481250
+0.55829794
+0.67159997
+-0.17549882
+0.96415618
+0.02401438
+-0.81400635
+0.55793250
+0.73616600
+-0.39984729
+-0.43113812
+-0.01319381
+0.64931321
+-0.84627152
+0.25300890
+0.54556926
+0.23156839
+0.07066249
+0.19034660
+0.25624252
+-0.57571872
+0.11660443
+0.98847465
+0.19289086
+-0.87411530
+0.79607919
+0.10527176
+0.59968347
+-0.70134141
+-0.95761652
+-0.09445246
+0.21057783
+-0.46073070
+-0.59251002
+-0.83140781
+-0.70145582
+0.94452145
+-0.63566894
+0.50172458
+-0.34562381
+0.71368522
+0.91897566
+0.27455138
+0.12747566
+0.90972003
+-0.56652288
+-0.32421817
+-0.89173208
+0.91070375
+-0.99498095
+-1.02149686
+-0.35240351
+0.52098557
+0.95343838
+0.43737551
+-0.07500351
+-0.91203505
+0.83947573
+1.00808698
+0.37443829
+-0.97357616
+0.51601752
+-0.02646724
+0.86453813
+0.42773922
+-0.37920164
+0.87427961
+-0.15036554
+-0.82931084
+0.57147145
+0.31395171
+-0.79205633
+-0.47950283
+0.43641221
+0.99545171
+-0.65160838
+0.23273202
+-0.69640984
+-0.08492035
+-0.94846721
+0.18256078
+-0.46967120
+0.67109630
+-0.59776647
+0.36637270
+0.28210764
+0.73036178
+-0.70863005
+0.72894386
+0.84747372
+0.61486211
+0.52491340
+0.81522846
+-0.74832942
+-0.96962872
+0.11629694
+0.13536106
+0.40172120
+0.52126607
+0.06471897
+-0.17443200
+0.03534391
+-0.51311076
+0.33055870
+-0.31421927
+0.05213423
+-0.43193206
+-0.36224682
+0.63396575
+-0.68840712
+0.70860006
+0.55895940
+0.90106227
+-0.52205345
+0.69079455
+0.82873899
+0.43923006
+-0.78845261
+0.89857689
+-0.57214946
+0.74758463
+0.52800684
+0.21293174
+0.59493592
+-0.64203793
+0.72630174
+-0.29492420
+-0.27665106
+0.34999574
+0.45036662
+-0.31690975
+-0.10612959
+-0.60731175
+-0.79187975
+-0.86514951
+0.82728223
+-0.04594894
+-0.88060622
+0.86796370
+-0.01205615
+-0.57088931
+0.59340426
+0.07017277
+0.19755027
+-0.47986814
+-0.09114899
+0.29988263
+-0.40394301
+0.11016127
+-0.48615817
+-0.89937274
+-0.50030964
+0.27653657
+-0.95880475
+0.06823445
+0.74658936
+0.73382407
+0.68037489
+0.00595238
+0.37793232
+0.04386628
+-0.18868851
+0.97596571
+0.36809270
+0.56981894
+-0.83881191
+-0.82654733
+-0.65587326
+0.44340228
+0.79004496
+0.94550025
+0.63706707
+-0.42943132
+-0.78083346
+0.11888940
+0.06455069
+0.86401591
+-0.88620854
+0.72806146
+0.82521544
+-0.53598945
+0.54634250
+-0.16118471
+-0.12826934
+0.34812239
+-0.52835834
+0.57819756
+-0.77397727
+0.18964202
+0.79841343
+-0.09024141
+0.69363058
+0.92674947
+-0.48933157
+-0.73942659
+-0.62105545
+-0.27237915
+0.96696261
+0.67977114
+-0.54881311
+0.17762951
+-0.54293428
+-0.10068777
+-0.51616817
+-0.90151501
+0.86864660
+-0.89157536
+-0.86325261
+-0.89112365
+-0.10365674
+0.90541242
+-0.42110708
+-0.20844356
+-0.78849666
+-0.90141592
+0.26932692
+0.92689542
+-0.18767750
+-0.39633463
+0.81308862
+-0.40297247
+0.81457434
+-0.58454614
+0.67428207
+-0.35346326
+-0.97676122
+-0.89523872
+0.47565592
+-0.81945180
+0.34671227
+0.29787609
+-0.21702791
+0.28627390
+-0.41366281
+0.03124741
+-0.93111663
+-0.62704344
+0.75796456
+-0.75228707
+-0.35711995
+-0.18891935
+-0.76457648
+-0.86770341
+-0.81915208
+-0.91916076
+-0.53373321
+0.56257103
+-0.61566775
+-0.32236874
+0.58722970
+0.73053822
+-0.26886613
+-0.62300051
+0.52983657
+0.95709347
+0.49277741
+0.45485246
+0.84496544
+-0.78698273
+0.01671438
+-0.43792041
+0.17817789
+0.18215026
+0.19660635
+-0.02609213
+0.60897433
+0.90695217
+0.45812178
+0.89659115
+-0.32365207
+-0.73655180
+-0.88636974
+0.08461232
+-0.07489356
+0.63603927
+-0.84482385
+-0.92883044
+0.50632541
+-0.12534941
+-0.25734443
+0.54321208
+-0.62011402
+-0.53040392
+-0.93760314
+-0.70320601
+0.83773557
+-0.09573449
+-0.79739264
+0.66666849
+0.50383643
+-0.39677954
+-0.62983315
+0.28374003
+-0.68525184
+0.99230156
+-0.50731048
+0.23000496
+0.42140887
+-0.95738585
+-0.26722977
+-0.80675436
+-0.42243112
+0.36326112
+-0.03387729
+-0.32567476
+0.00753314
+0.49394658
+-0.19623705
+0.99850959
+-0.23117091
+-0.93362689
+-0.48728788
+0.15116661
+0.51533154
+-0.94983673
+0.40881025
+0.27564915
+-0.73487456
+-0.90284293
+0.86349065
+-0.60169595
+0.29768660
+0.66443284
+0.29323896
+-0.34526914
+0.25303223
+-0.96019924
+-0.60551529
+-0.90688677
+-0.09067811
+0.91625904
+-0.38196790
+0.54485996
+0.46936520
+0.86073345
+-0.13705636
+0.73797506
+0.20790894
+0.00197843
+0.49213762
+0.23590522
+0.78295448
+0.19099040
+-0.53604893
+0.81528500
+-0.51862344
+0.94693559
+0.09786071
+0.19997409
+-0.46176111
+-0.26557619
+-0.57119555
+-0.93975147
+0.71851225
+0.94691304
+0.90696255
+0.88045316
+0.41050532
+0.86141661
+0.46590847
+0.93761199
+0.37981289
+0.60447757
+-0.60250072
+-0.32343659
+-0.36032118
+-0.90148376
+-0.88509553
+0.60533355
+-0.04551762
+0.87432470
+-0.92131278
+-0.76566138
+1.01541169
+0.92906326
+0.33605924
+-0.77170398
+-0.06068890
+0.12620269
+-0.17001979
+0.88379989
+0.14877044
+-0.49025143
+-0.77661076
+0.02683712
+0.73898901
+0.55235490
+-0.97170676
+0.22201084
+-0.83156299
+0.33558626
+0.59442818
+-0.74094561
+-0.86317000
+0.78890846
+0.63772873
+0.65177380
+0.82082351
+-0.10719813
+-0.61391361
+0.86887182
+0.30326771
+-0.51477253
+-0.54553867
+-0.81357794
+-0.71142797
+-0.89229568
+0.77424669
+0.43377800
+0.74098104
+0.41783365
+0.56633458
+0.22254628
+0.03306258
+0.23128489
+-0.17800640
+-0.51887951
+-0.59796125
+-0.51892309
+0.07587259
+0.67928621
+-0.96645694
+0.18931478
+-0.27924483
+0.94394759
+-0.49096113
+0.29498851
+0.93072546
+-0.64703222
+0.48305708
+0.29540559
+0.73838052
+0.82636601
+-0.77364146
+-0.14940616
+0.22903682
+0.52627718
+0.92788768
+0.45323772
+-0.23729081
+0.29213926
+0.76749751
+0.04466409
+-0.74499982
+0.58762470
+0.30925322
+-0.97418863
+-0.67938441
+0.99166043
+-0.60567547
+0.78366705
+-0.74478351
+0.05529434
+-0.58132508
+-0.29644839
+-0.00411784
+-0.47888152
+0.39444745
+0.35209508
+0.16994915
+0.41930663
+0.72580462
+-0.97652202
+-0.34978163
+0.97926106
+-0.91083974
+-0.50067409
+-0.89606920
+-0.58005633
+-0.27834722
+-0.18803776
+0.41767340
+0.72790188
+-0.28513568
+0.53042711
+-0.74168735
+0.91694043
+0.12733912
+0.73943065
+-0.42564842
+0.74528841
+-0.85061077
+0.58806310
+0.28719716
+-0.81104711
+0.66995730
+-0.76899190
+-0.69195986
+0.12972617
+-0.47041547
+-0.03106284
+-0.02681547
+0.65437531
+-0.75124966
+0.96539879
+-0.53690943
+0.49905765
+0.31241477
+0.91789055
+0.39095962
+-0.20332044
+-0.70575020
+0.72793019
+-0.81053616
+0.72316885
+0.58710217
+-0.96894792
+-0.48830783
+0.18625319
+0.48975050
+-0.05450392
+-0.73706365
+-0.11472762
+0.28430939
+0.55862033
+0.66388547
+-0.86288728
+-0.86718960
+-0.86596654
+0.31930709
+0.07717812
+-0.87808156
+0.21127057
+-0.70677301
+-0.69537574
+0.92449951
+-0.70679843
+-0.06626815
+-0.93279321
+0.65978658
+0.93434215
+-0.28722626
+0.61625659
+-0.75996028
+0.43227923
+0.94028890
+-0.08912081
+-0.08971703
+-0.45477754
+-0.68672401
+0.94321227
+-0.81493354
+0.77601814
+0.35825038
+-0.11776006
+-0.99347014
+0.74489522
+-0.81980345
+0.08926034
+-0.43965471
+-0.96341585
+-0.70939136
+-0.93741111
+0.40887725
+-0.17739546
+0.04113793
+-0.51210275
+-0.59121960
+0.04168582
+0.79041994
+-0.23894596
+-0.71682894
+-0.92069591
+-0.14696866
+0.92252231
+0.33294618
+0.34559858
+-0.98949348
+-0.97894192
+-0.93287787
+-0.87571247
+0.97504997
+0.52158368
+-0.62486440
+0.76050842
+-0.98737670
+-0.26594788
+0.06619763
+0.36337876
+-0.61602500
+0.46731555
+0.90884209
+-0.16710871
+-0.50623041
+0.24346209
+-0.57653019
+0.46699166
+0.72910345
+0.53664851
+-0.79181285
+-0.37746203
+-0.30457157
+0.06204331
+-0.64084259
+0.61747742
+-0.92449496
+0.08023012
+0.26049364
+0.68075526
+0.71995783
+0.88412380
+-0.97591479
+0.04435945
+-0.53412914
+-0.36712295
+0.68837094
+0.07269561
+-0.19216627
+-0.29843444
+-0.34333116
+-0.72140685
+0.95847940
+-0.52297923
+-0.45690042
+-0.80461633
+0.54924262
+-0.88609019
+0.55910468
+0.61810863
+-0.85265078
+0.52184689
+0.86062777
+-0.70874283
+0.06094635
+0.27725947
+-0.91815063
+0.01033247
+-0.81954861
+0.22275114
+-0.53616875
+-0.98851263
+-0.13505793
+0.82077622
+0.13028097
+-0.43260670
+-0.18387049
+-0.56103277
+-0.08865196
+-0.24729306
+-0.73953220
+0.99156022
+0.76688063
+0.60046732
+0.75105000
+-0.88204469
+0.20927393
+0.37770188
+0.86902237
+0.01428902
+-0.08348554
+0.34890079
+0.11174214
+-0.32734394
+-0.21626997
+-0.85885410
+0.77296746
+0.91388333
+-0.87980689
+-0.79420076
+-0.18081218
+0.18281519
+0.03756773
+-0.81282265
+-0.67578137
+-0.41581941
+-0.44282615
+0.88719285
+0.68170130
+0.69342184
+-0.11945754
+0.88809884
+0.94400299
+0.79497719
+0.91191685
+-0.01554286
+0.60562205
+0.54292691
+0.34712660
+0.59309196
+-0.80135807
+0.97637308
+0.28169191
+-0.13117695
+0.66278958
+-0.00010163
+-0.44669741
+0.43297327
+0.00195789
+0.63577867
+0.44545400
+-0.53339353
+0.14127529
+0.58463264
+-0.53666699
+-0.67377049
+0.93658197
+0.81319964
+0.53076077
+-0.66816804
+-0.66267139
+0.16096282
+0.29203176
+-0.38960582
+0.78655875
+0.59054208
+-0.70033041
+-0.01084363
+-0.29712451
+-0.13569760
+0.20788193
+-0.92092429
+0.42349899
+0.66043139
+-0.90567701
+-0.74573213
+-0.72985893
+0.44862676
+0.50000846
+-0.78364749
+0.77701712
+0.79987144
+-0.69242039
+-0.72651318
+-0.44468290
+0.16824615
+-0.48710656
+0.47583961
+0.76510000
+0.65853512
+0.65378833
+-0.59554213
+-0.28660738
+0.36626244
+-0.78512849
+-0.46599239
+0.16529036
+-0.56915602
+0.50562489
+0.87015450
+-0.17035741
+-0.46936882
+0.04046082
+0.02200484
+0.44846916
+-0.47426617
+0.65804553
+-0.59295678
+-0.95044217
+-0.63841182
+0.69742525
+0.20157325
+-0.75984463
+-0.49548244
+0.98811352
+0.06978965
+-0.15533346
+-0.84150323
+-0.49049693
+0.46087992
+-0.51860923
+0.61220658
+-0.19262111
+-0.82926263
+-0.39992779
+0.82935476
+0.56755960
+0.40422595
+-0.01668519
+0.82137454
+0.40059698
+0.96630764
+-0.33102930
+-0.73738673
+-0.21818924
+0.47793043
+-0.48718941
+-0.16624552
+0.42661619
+0.82629728
+0.50816703
+-0.68045783
+-0.67690805
+0.55574203
+0.58816600
+0.23037231
+-0.64533034
+0.64407647
+0.90190339
+-0.54271507
+0.59491169
+-0.08047181
+-0.71394333
+-0.83609265
+-0.03345680
+0.73277569
+-0.50916839
+0.39094388
+-0.82447828
+0.24297825
+0.63000098
+-0.76721825
+0.09054041
+-0.34169518
+-0.38177907
+-0.21006559
+-0.19798968
+0.13285531
+-0.62981082
+-0.07182976
+-0.66628906
+0.47623710
+-0.01425126
+0.34579227
+0.03325552
+0.14340345
+-0.66610336
+-0.95768828
+0.20880120
+0.26343208
+0.25044751
+-0.30439960
+0.09729231
+-0.88745358
+0.48982253
+0.53558541
+0.52379290
+0.17024045
+0.82204116
+0.85883648
+-0.09143597
+0.82224706
+-0.95425599
+-0.70145011
+0.12957391
+0.19966447
+-0.35480027
+-0.44287761
+0.57253177
+-0.11943095
+-0.91152846
+-0.28927777
+-0.27674360
+-0.67331383
+0.49801199
+-0.54987851
+-0.85152934
+-0.34726902
+0.19010652
+-0.95494186
+-0.06638424
+0.78281442
+0.54655376
+0.05727406
+0.07816801
+-0.20750291
+0.87740121
+0.70245480
+-0.73945354
+0.33832128
+0.40555496
+0.43044066
+0.56141155
+-0.80078538
+-0.21772838
+-0.17879591
+0.64224672
+-0.71745931
+0.76797424
+-0.23808794
+-0.66319064
+0.28568431
+0.87148278
+0.96421134
+-0.12725340
+0.24703946
+-0.16708001
+-0.41550645
+0.74798054
+-0.41763886
+-0.94529553
+0.61985631
+-0.75679755
+0.40080718
+0.98404218
+-0.06896534
+0.26252668
+0.80974149
+-0.07957055
+-0.69587472
+-0.19954827
+0.83341904
+0.81099824
+0.24852492
+0.02140565
+-0.04808995
+-0.98593209
+0.29810464
+-0.85770587
+-0.87306115
+-0.33001100
+-0.95829528
+0.43897973
+-0.36988038
+0.71935111
+-0.14062574
+0.38151888
+-0.75135849
+0.67358602
+-0.91137601
+-0.77536252
+0.81063107
+0.17991528
+0.87496902
+-0.26072371
+0.25876947
+-0.92649381
+-0.92662472
+0.65289257
+0.43254314
+-0.84682283
+-0.53473355
+-0.91134124
+0.34691583
+0.90526487
+-0.36249365
+-0.59602094
+0.48152958
+0.36407969
+0.11352192
+0.05808634
+0.80834654
+-0.50031766
+-0.38063295
+-0.17653518
+0.51812354
+0.43788011
+0.01100763
+-0.10798237
+-0.86634572
+0.36544514
+0.56136051
+-0.50032983
+-0.15747774
+-0.22211740
+0.97819238
+0.58643912
+0.37534255
+0.36730374
+0.65005426
+0.31818606
+-0.71926229
+0.88618565
+-0.53959265
+-0.79623146
+-0.53389836
+-0.07871020
+0.12028553
+-0.42397032
+0.54160465
+0.58879244
+-0.99289158
+0.78546940
+0.67412934
+-0.71572236
+-0.93811247
+-0.56421670
+-0.57719699
+0.00202170
+0.40956378
+0.46645036
+0.29660762
+0.14675444
+0.69762743
+-0.18172539
+0.84659272
+-0.10633070
+1.05954685
+-0.42526157
+-0.37598197
+0.88450158
+0.08560687
+0.81370736
+-0.72353477
+0.59777287
+-0.66923757
+0.35274155
+0.33084082
+0.89761883
+0.39956150
+-0.50178878
+0.42554941
+0.71025015
+-0.47171845
+-0.76235523
+0.28527596
+-0.47101319
+-0.15391626
+-0.45556906
+-0.93902652
+0.22507209
+0.75639692
+1.00952650
+0.66202054
+0.73703946
+-0.66018572
+-0.06708648
+-0.02181623
+-0.52187532
+0.91253159
+1.02492162
+0.13737258
+0.35250013
+-0.20090945
+0.60521724
+0.29338244
+-0.53235169
+-0.05377178
+0.82471411
+-0.42622648
+0.20839532
+0.51821864
+-0.81525032
+-0.65286411
+-0.29652810
+0.64919325
+0.45144935
+-0.11499358
+-0.20342031
+0.42079483
+-0.23817812
+-0.39009955
+-0.12026283
+0.05433422
+0.13390221
+0.62502524
+-0.37719635
+-0.02230480
+0.91344905
+1.03101399
+-0.61701402
+0.55784507
+-0.36969776
+0.67742309
+0.95490767
+-0.26623674
+-0.25168040
+-0.66259399
+0.94458343
+0.91852319
+-0.32716392
+-0.03328359
+1.00752231
+0.55216607
+0.52786293
+-0.20139311
+0.97202767
+-0.85268659
+0.95937377
+-0.86955547
+-0.17697577
+-0.94814188
+0.68877573
+0.07866338
+-0.26694286
+-0.86422642
+0.30845152
+0.24182107
+-0.01374580
+-0.56176664
+0.90083716
+-0.36587967
+-0.61544304
+0.98549575
+-0.36465809
+0.18881586
+0.49947408
+0.82727304
+-0.47054716
+-0.69529631
+0.64690807
+-0.16547209
+0.19631288
+-0.10421245
+0.26153585
+-0.16962702
+0.84175001
+-0.23441032
+-0.16388579
+-0.24488988
+0.92357053
+0.61638567
+-0.78568182
+-0.45435610
+0.46617028
+0.06714601
+-0.13109635
+-0.75989692
+-0.11557324
+0.59939972
+-0.62003188
+-0.37582566
+0.18893745
+0.53732811
+0.37013362
+-0.44460789
+0.81649154
+-0.05115706
+0.40791120
+-0.77291132
+0.07567850
+-0.13199032
+0.75654238
+0.52027360
+-0.89247977
+-0.96178257
+-0.75782246
+-0.24122087
+-0.52710759
+0.16206135
+-0.15808043
+-0.15788587
+-0.32333710
+0.97914726
+0.10293216
+0.32533623
+-0.50929645
+0.01368123
+0.23751809
+-0.48272116
+-0.13013165
+-0.32890811
+-0.04272691
+0.90266213
+0.71925711
+0.60418084
+0.49883106
+-0.89903192
+0.40214526
+0.03049908
+-0.01403745
+-0.69636848
+-1.02734242
+-0.95075436
+0.26354497
+-0.78169077
+-0.77111073
+0.62075278
+0.90221877
+-0.14194806
+-0.20338543
+0.40321611
+0.15569627
+-0.23934457
+-0.85542211
+0.33713224
+-0.82071831
+0.82123099
+0.74434449
+0.07472333
+0.04867880
+0.02657719
+0.28253646
+0.70875608
+-0.16367952
+-0.53216527
+0.61072853
+-0.69414588
+-0.76942818
+0.64030186
+0.52716685
+-0.59384855
+-0.21343933
+-0.98000269
+-0.53069703
+-0.35335126
+-0.54236299
+-0.26251662
+0.14276999
+-0.87056761
+-0.70278307
+-0.20502562
+0.24955474
+0.81124995
+-0.52109572
+0.74228929
+-0.64829966
+0.01028309
+0.17225319
+-0.31113122
+-0.19512786
+-0.61977771
+-0.26643020
+-0.71905153
+0.03172889
+0.30995588
+-0.80340706
+0.73524573
+-0.17047136
+-0.20368393
+0.41862789
+0.13741335
+0.95901170
+0.29590771
+-0.10871037
+0.50238999
+-0.76147747
+-0.70269661
+-0.08325134
+-0.69651763
+0.53365121
+-0.89046966
+0.86922544
+-0.53605984
+0.05695640
+-0.14783768
+0.82676998
+0.81406537
+0.80873772
+0.82811830
+0.85849883
+-0.73674044
+-0.52073683
+-0.38875860
+-0.65389160
+0.17616256
+-0.57549133
+-0.80251492
+-0.06915757
+0.51909779
+-0.16084035
+0.80646198
+-0.87985968
+0.91004407
+0.32210418
+-0.23308197
+-0.80334383
+0.86994955
+-0.74883344
+0.08925995
+0.02347861
+0.59113307
+-0.61208198
+-0.94038887
+-0.38153787
+0.09930683
+0.31613219
+0.32240833
+-0.53541771
+0.70460753
+0.81336043
+-1.01463162
+0.15048981
+0.73780984
+0.92746683
+-0.43345876
+-0.00577632
+-0.67824739
+-0.31182307
+0.95353291
+0.15759254
+0.42497297
+-0.36940456
+-0.75584832
+-0.35098949
+-0.45779109
+-0.88794183
+0.46460387
+-0.94350748
+-0.60149127
+-0.36431496
+-0.42357134
+-0.35930019
+-0.85156551
+-0.39629702
+0.97774776
+-0.40566413
+-0.55582230
+-0.23666227
+-0.46750203
+0.98393615
+0.16608289
+0.41336010
+-0.55157993
+0.61677287
+-0.09353189
+-0.12778058
+0.88790923
+-0.97546563
+-0.91234952
+0.35782505
+0.34956320
+-0.05187697
+-0.68619922
+0.74654578
+-0.03617440
+0.67400005
+0.40247609
+-0.10400981
+0.44712713
+-0.10936523
+-0.72796016
+-0.33316580
+-0.90603046
+-0.31692380
+0.73124800
+-0.66080328
+-0.39047212
+0.39443948
+-0.47820604
+-0.86198809
+-0.03047207
+-0.51768546
+0.78175957
+-0.86716620
+0.90025124
+0.79254788
+-0.71168465
+0.45368026
+0.02744760
+-0.36297287
+0.30254834
+-0.62958101
+0.49760736
+0.38868281
+-0.59668278
+-0.19582067
+0.09139805
+-0.19179131
+-0.44671143
+0.42241447
+0.20511010
+-0.51922391
+-0.31969683
+-0.55947094
+-0.46100840
+-0.90184682
+-0.30925757
+-0.06310894
+-0.41164413
+0.60552262
+0.11943581
+0.19973642
+-0.80996794
+-0.84990672
+0.08823005
+-0.67049773
+0.87662857
+0.53871084
+0.08188727
+-0.53559801
+-0.49215997
+-0.32883219
+-0.31071304
+0.16686304
+0.39972750
+-0.92475454
+-0.81544182
+-0.78081601
+-0.81303604
+0.62181253
+0.86769371
+-0.57355673
+-0.40301858
+0.98309906
+-0.70502445
+0.96503809
+-0.90072832
+-0.29185418
+0.77489832
+-0.73112365
+-0.85889187
+0.35342119
+0.06729381
+-0.76643499
+-0.82706670
+0.72519626
+-0.61294753
+-0.06594475
+-0.66013295
+-0.77129139
+-0.69162063
+-0.05159030
+0.67695797
+0.16720672
+0.44994064
+-0.77996916
+-0.63646336
+0.96205380
+0.44098214
+0.30028926
+-0.87331440
+0.66056992
+0.57004531
+-0.55757086
+0.67626339
+-0.17555764
+0.43523195
+0.51316352
+0.52216565
+-0.58635440
+-0.56658546
+-0.46712021
+0.13045156
+0.23562114
+-0.63218802
+0.60327055
+-0.11360047
+-0.09985759
+-0.57109886
+-0.28613469
+-0.58865814
+0.34651071
+0.82471518
+-0.54001185
+-0.88082350
+0.62028825
+-0.04574592
+-0.68422377
+0.13433177
+-0.37489617
+-0.93995285
+0.89473364
+-0.65698963
+0.58174408
+0.18327120
+0.68341900
+0.63849305
+0.81990576
+0.68513460
+-0.11236245
+-0.79036327
+-0.11335489
+-0.68201166
+-0.68038520
+-0.49897691
+-0.74311977
+-0.96471596
+-0.84781238
+0.53235490
+-0.03152675
+0.83928260
+-0.00077310
+-0.55173734
+-0.71028524
+0.40419630
+0.35709608
+-0.46473510
+-0.46088094
+-0.97582245
+0.38092750
+-0.34086863
+0.81691477
+-0.61620229
+0.45365298
+-0.20167431
+0.05578173
+-0.74471182
+-0.85882378
+0.26744838
+0.63192038
+-0.62367211
+-0.02442610
+0.18232554
+0.83438206
+-0.97753391
+-0.15434908
+0.71809806
+0.25221312
+0.37330193
+-0.05159631
+-0.06520993
+-0.41250033
+0.09198040
+0.36554027
+0.03624918
+-0.83520522
+0.03024636
+-0.90027845
+0.65922041
+-0.26676199
+0.44564544
+-0.78041179
+0.75098533
+-0.11048024
+-0.65847428
+0.96564627
+0.43959902
+0.76163888
+0.56153213
+-0.57219098
+-0.40331649
+0.66377023
+-0.32241847
+0.99932864
+0.87110881
+-0.52079131
+0.71761439
+0.40026343
+0.80422902
+0.29320967
+-0.99644652
+0.66557109
+-0.91255461
+-0.88043699
+-0.30579263
+-0.03306395
+-0.46533245
+0.30881870
+0.60290909
+-0.44579214
+-0.15092045
+-0.06986874
+-0.28423864
+0.62323594
+0.52399898
+-0.69336438
+0.67718589
+0.15836394
+-0.44396496
+-0.73986113
+0.49540246
+-0.07119876
+-0.38969755
+0.08791137
+-0.48912972
+-0.25146753
+-0.44501954
+0.79446554
+0.47006416
+0.21087086
+-0.45404947
+-0.47976422
+0.35607266
+0.58643937
+0.12055421
+0.16494763
+0.11450374
+-0.60953546
+0.06575525
+-0.23300004
+0.53957164
+-0.31763041
+0.72868228
+-0.91779983
+0.80953586
+0.68174422
+0.07047403
+-0.06539702
+-0.92792951
+0.81866837
+-0.99553819
+0.19401479
+0.18573010
+-0.11469775
+-0.40288669
+0.70571995
+-0.07916582
+0.46776259
+-0.33185238
+-0.79603533
+-0.80442026
+-0.02139801
+-0.13185072
+-0.79226719
+-0.85170601
+0.84445250
+0.18053710
+-0.85636652
+0.32538056
+0.46654809
+0.69827855
+-0.46587741
+-0.35518283
+0.16973186
+0.54826558
+-0.76293309
+-0.62231663
+0.11005723
+-0.85123646
+0.69222820
+-0.02202564
+0.42618096
+0.88177884
+0.75347090
+-0.58410826
+0.77395940
+0.44245839
+-0.18355578
+-0.38220948
+-0.82684448
+-0.33558989
+0.11048603
+0.45687187
+0.85011351
+0.28483725
+-0.19599611
+0.70298874
+0.36443126
+-0.80265842
+-0.06177425
+-0.83750306
+-0.86635222
+0.07144153
+-0.46071577
+-0.04785854
+-0.13949853
+-0.02197301
+0.26522005
+0.26934505
+-0.13401395
+-0.28062499
+-0.67939034
+-0.32802379
+0.33043718
+0.36784470
+0.68398535
+0.18626189
+0.78792262
+0.59339345
+0.28550816
+-0.80822693
+-0.40008926
+-0.82641286
+0.66698527
+-0.90750787
+-0.99670934
+-0.68639696
+0.06411207
+-0.18110621
+0.93356287
+0.28197956
+0.37212372
+0.79816413
+-0.88876582
+0.34549642
+-0.41759753
+0.37651730
+-0.33292228
+0.24288750
+-0.39877534
+-0.43187463
+0.62100244
+0.09970963
+0.50097358
+0.62710690
+0.22733796
+0.18517661
+0.95795798
+0.83109665
+-0.10155916
+-0.24034816
+0.20478535
+-0.97704866
+-0.68271124
+-0.62177464
+-0.49481463
+0.04848015
+-0.53339940
+-0.08768654
+0.59623539
+-0.15004188
+-0.55488667
+-0.11258858
+-0.50834543
+-0.48815405
+-0.32819307
+0.28085530
+-0.58765453
+0.04312456
+-0.52369654
+0.92115009
+0.42025018
+0.95139313
+-0.18332064
+-0.46720976
+0.04479671
+-0.11554909
+0.04324317
+0.40728736
+-0.43546867
+0.43266845
+-0.85347295
+0.98472178
+-0.59293988
+0.84542978
+0.42576611
+0.19441736
+0.07425261
+0.59863532
+-0.88147100
+-0.52247176
+0.21747077
+-0.23128867
+0.04924178
+0.58724070
+-0.72556645
+0.50083256
+-0.82753512
+-0.51973927
+0.15132904
+0.15595055
+-0.56736121
+0.47661936
+-0.97282284
+-0.19351113
+0.37627816
+-0.06322426
+-0.59980392
+-0.58713624
+0.33448708
+-0.24098766
+-0.06909543
+0.46605945
+0.28127217
+0.46507215
+0.96442497
+-0.90768382
+0.64946103
+-0.36814147
+0.53638792
+-0.12520576
+0.08365273
+0.04966640
+0.93791592
+0.21350431
+-0.64218220
+0.86150289
+0.10682094
+-0.22958910
+-0.75296904
+0.33205771
+-0.53550375
+0.10883641
+-0.98838164
+-0.76677899
+-0.14980036
+-0.72000635
+0.35203040
+-0.22438025
+0.87220931
+-0.09712303
+-0.24841952
+-0.33912575
+-0.84606329
+-0.06414562
+-0.14698666
+-0.69642466
+-0.69873419
+-0.17705113
+0.03371894
+-0.91444424
+-0.55573508
+0.13710010
+0.15682828
+0.42199314
+0.47909677
+0.94147789
+-0.73671439
+0.67276359
+0.59015608
+-0.56951797
+-0.53416696
+-0.08342594
+-0.53266460
+0.43978572
+-0.18852508
+-0.48636705
+0.69581628
+0.59756005
+0.07427776
+0.40749824
+0.14740264
+-0.72408196
+0.16990709
+0.90815568
+0.71982896
+0.36290419
+-0.58298379
+0.81052339
+-0.49911106
+0.51880801
+-0.96467890
+0.59758866
+-0.23125440
+0.29259562
+-0.52114570
+-0.00466418
+0.42206478
+0.70165038
+-0.59236428
+-0.98362358
+0.40785611
+0.25936854
+-0.58575368
+-0.98399659
+-0.34017253
+-0.42743921
+0.42379987
+-0.24989241
+-0.15332061
+-0.82559422
+0.78382230
+-0.43398935
+-0.15176368
+-0.05101752
+0.84654450
+-0.67844430
+0.19895411
+0.58756599
+0.00171351
+0.69360328
+0.31422234
+-0.45295137
+0.39092334
+-0.18423339
+-0.55583384
+-0.85249283
+-0.82698838
+-0.87179242
+0.03171271
+-0.31521605
+-0.82324410
+0.10364103
+0.63153830
+0.11620120
+0.76132075
+-0.31138268
+0.70606525
+-0.94718637
+-0.11014169
+-0.14879291
+-0.26142531
+0.79338092
+-0.56355841
+0.70485241
+-0.41739490
+0.44604333
+0.31399774
+1.00255578
+-0.13904678
+-0.16805335
+0.46267091
+0.13850525
+-0.02102296
+0.30685616
+-0.83689823
+0.21327668
+0.76084758
+0.59822028
+-0.25925459
+-0.73878006
+0.53836443
+0.84263185
+-0.75648664
+0.83049102
+0.10353646
+0.59101400
+0.26864398
+-0.22783669
+0.88816844
+0.88222427
+0.06097279
+-0.21911897
+0.84169109
+-0.38366948
+0.71707112
+-0.69388696
+0.69071909
+0.38611026
+0.06676441
+-0.24078784
+-0.86646369
+0.21089327
+-0.74873063
+0.93509816
+0.74081397
+0.55277696
+-0.57569799
+-0.53289622
+-0.30978370
+-0.56245297
+-0.01817674
+-0.32601403
+-0.75978257
+0.65067553
+0.06099141
+-0.78274196
+0.89859548
+0.45824714
+-0.28425061
+-0.51540258
+-0.26198469
+0.49434947
+-0.82003599
+0.33088514
+0.24797432
+-0.92507259
+0.16586979
+1.05462949
+0.14343367
+0.24235095
+0.36421834
+0.79626375
+-0.82939977
+0.60555827
+0.93939202
+-0.96419567
+-0.22829187
+0.17694980
+-0.86556614
+-0.19106009
+-0.71640994
+0.81139054
+0.95658653
+-0.35213190
+-0.76768256
+-0.08638343
+0.93587477
+-0.16048999
+0.78697416
+0.00021299
+0.68453887
+0.10884226
+0.35096948
+-0.97901828
+-0.71184711
+0.20728706
+0.78546308
+0.95740543
+-0.38698982
+0.11878599
+0.15908207
+0.69843054
+-0.77837121
+-0.01100190
+0.75180804
+-0.86512055
+-0.87294671
+0.65143398
+0.37761968
+0.42078370
+-0.78235518
+-0.92392737
+-0.47710865
+-0.91901422
+0.59216949
+-0.04980468
+-0.88251387
+-0.13103457
+0.22927526
+0.84328823
+-0.25226941
+0.41598864
+-0.49181822
+-0.06749605
+-0.52336260
+-0.62941635
+-0.63385358
+0.37650980
+-0.27259346
+0.63729046
+-0.43701802
+-0.89414474
+-0.68064916
+-0.89210022
+0.94492418
+0.95190418
+-0.14673065
+-0.71833210
+0.65885135
+-0.27732292
+-0.75477915
+-0.43812601
+0.22177319
+-0.90849788
+0.90592647
+-0.22217503
+0.94060165
+0.12460885
+-1.00301447
+-0.31490101
+-0.05240696
+-0.79335371
+-0.20071657
+0.91638721
+0.16641453
+-0.19255471
+-0.12769053
+0.08815630
+-0.40689802
+-0.63786548
+-0.07318913
+-0.27770043
+-0.23005208
+0.70289339
+-0.12466495
+0.94614183
+-0.69680747
+-0.64320313
+0.07729199
+0.86720417
+0.98882592
+-0.06872362
+0.37610388
+-0.70991690
+-0.71020228
+0.23048164
+0.51167777
+-0.61195689
+0.49295780
+-0.64119593
+0.00327896
+0.76072070
+0.89285828
+-0.64957799
+0.92975776
+-0.87046216
+-0.87696941
+0.56263022
+0.46021202
+0.65000519
+0.24670669
+0.99686925
+-0.23094880
+0.25379779
+0.51716590
+0.91561688
+-0.96486329
+-0.38013902
+-0.31420776
+-1.03097016
+-0.03269705
+0.98146010
+-0.29239187
+0.73844954
+0.84966661
+-0.90727482
+-0.22878747
+0.78115180
+0.21757745
+-0.43205293
+0.06520000
+0.39250637
+0.13163883
+-0.48154158
+-0.22498325
+-0.60185471
+-0.18020510
+-0.50981843
+-0.45363013
+0.36722153
+0.41929152
+-0.26062986
+0.07546777
+0.39476079
+0.03257855
+-0.73198489
+0.06642218
+-0.66799453
+0.74369909
+-0.95473780
+-0.59584920
+0.40077865
+0.87978558
+-0.42827519
+-0.46314234
+-0.43399222
+0.33740994
+0.80833547
+-0.96951455
+-0.91013304
+0.02524028
+0.87531537
+-0.32656506
+0.82674855
+0.15970620
+0.05807957
+0.67877623
+-0.76424962
+0.73813487
+-0.41156216
+-0.34984638
+-0.33662274
+-0.59710566
+0.36093394
+-0.87089826
+0.07030378
+-0.22475043
+0.56662520
+0.12672929
+0.01998814
+-0.75183954
+0.50737931
+-0.82701710
+-0.29539354
+-0.29512075
+0.20824694
+0.70819675
+-0.94558978
+0.88673953
+0.68382529
+0.41746028
+-0.00170496
+-0.86496681
+-0.75598449
+-0.47380387
+0.36315237
+0.71914077
+0.17975705
+0.28925087
+0.55202668
+-0.03541460
+0.15439956
+-0.03643365
+-0.77266837
+0.09417588
+0.99505074
+-0.08007006
+-0.95268679
+0.60219407
+-0.76502636
+0.95298053
+-0.75866434
+-0.47696840
+0.48823228
+-0.25652700
+-0.51814545
+0.63184658
+-0.43819938
+-0.77006832
+-0.59670176
+-0.79318175
+0.58261486
+-0.23797746
+0.93452396
+-0.80152078
+0.55726136
+0.79638024
+-0.18972455
+0.33227574
+0.26626027
+-0.93981709
+-0.33470160
+-0.35135120
+-0.54143193
+-0.09999268
+0.24404484
+0.46243091
+-0.13675531
+-0.67843518
+-0.03470135
+0.94794741
+-0.95015243
+-0.49937201
+-0.41790498
+-0.45649909
+0.47698641
+0.90600707
+0.72396359
+-0.57085919
+0.64578415
+-0.17562651
+0.20215733
+0.60633495
+-0.79533197
+-0.12363457
+0.39605999
+-0.32288808
+0.81353793
+-0.45489881
+-0.95845705
+-1.01540603
+0.15699949
+0.77307262
+-0.08086514
+0.65944904
+0.28864473
+0.62709420
+-0.30851603
+-0.94407493
+0.96424608
+0.17287607
+0.39887807
+0.93718438
+0.62221670
+0.09001858
+-0.57893613
+-0.81417097
+-0.95734597
+-0.13736354
+-0.18462904
+-0.07823268
+0.78102441
+-0.23910823
+0.77828577
+-0.70476664
+0.73604110
+-0.36164428
+-0.11770378
+-0.57270542
+0.57542892
+-0.89088373
+0.78774842
+-0.86770573
+0.01394256
+-0.14805356
+0.15694935
+-0.71308675
+0.12187043
+-0.28936272
+-0.30451770
+0.49392634
+-0.82541264
+-0.71678137
+0.18081462
+-0.25846534
+-0.62954120
+-0.71790988
+-0.90841030
+0.80366745
+-0.55410728
+0.58832832
+0.65010247
+0.12257364
+0.94961273
+0.34690031
+-0.69982033
+-0.73492558
+0.18804075
+0.94217794
+0.25201787
+-0.24268323
+-0.48701742
+0.41525913
+0.00656136
+-0.60151622
+0.64204696
+0.90278022
+-0.17346427
+-0.89663323
+-0.84592971
+-0.83244352
+-0.25417743
+-0.79315459
+0.03977391
+0.33405487
+0.02529395
+0.77085834
+-0.56992297
+0.38374179
+-0.26199309
+0.61877243
+-0.00924833
+0.15530772
+0.66403365
+0.49353999
+-0.14213197
+-0.07646695
+0.27814777
+0.21146151
+0.30123463
+0.27086114
+-0.14761269
+0.04021038
+-0.34135790
+0.42741463
+-0.96552843
+-0.79768965
+-0.33506968
+0.25804826
+0.17702227
+-0.57419699
+0.82091311
+0.53886735
+0.06931961
+0.22348348
+-0.66299165
+0.95977262
+-0.44600121
+-0.70250779
+-0.18633701
+0.78485094
+0.64290099
+0.11278686
+0.31563894
+-0.05985782
+-0.40949919
+0.89125228
+0.89001194
+0.90004360
+0.09313129
+0.22177656
+-0.26925856
+0.99242210
+0.10023739
+-0.61925188
+0.48513224
+-0.68807968
+0.45737518
+0.36635261
+0.52741561
+-0.55034179
+0.56145281
+-0.64315603
+0.83648219
+0.73067799
+-0.04824496
+-0.60547346
+-0.31640209
+-0.70707639
+-0.62814168
+-0.86449766
+-0.22022810
+0.98683196
+-0.28651394
+-0.34370548
+0.27703625
+-0.92889165
+0.61488863
+-0.52230932
+0.69825796
+0.65994534
+-0.85402003
+0.58372637
+-0.95441597
+0.36240206
+0.55878520
+0.28704459
+0.35415562
+-0.27304714
+-0.45626672
+0.59707454
+0.24015228
+-0.21489889
+-0.51962689
+0.07675115
+-0.85167833
+0.94913915
+0.06994171
+0.75191968
+-0.02747271
+-0.95240253
+0.45264447
+-0.68644613
+0.14986460
+-0.78178148
+0.21889511
+-0.86586651
+0.03643528
+-0.60507640
+-0.38562480
+0.53426311
+0.24784679
+-0.48820854
+-0.62929373
+-0.24185073
+-0.15422595
+-0.94543401
+-0.17409673
+-0.97420444
+-0.82693451
+-0.45998023
+0.47387631
+0.95535596
+0.52307955
+-0.57863793
+-0.85634135
+-0.97923397
+-0.75920875
+-0.91038727
+-0.65108792
+0.04927351
+-0.01387070
+0.55651398
+0.59143642
+-0.72649258
+0.46667700
+-0.60590974
+-0.21440688
+-0.20893257
+0.79682260
+-0.45277916
+-0.01607069
+0.50486477
+0.14683858
+0.24009458
+-0.14227796
+0.78148256
+-0.74037484
+0.12887606
+0.90463842
+-0.59656778
+0.93328047
+0.40660854
+-0.12241898
+-0.26794029
+0.75638178
+-0.67809987
+0.99078329
+-0.76998849
+0.83025795
+-0.28595623
+-0.28692135
+-0.04255186
+0.18035788
+0.37277214
+-0.09891400
+-1.00481957
+0.27243662
+0.92522233
+0.22977686
+-0.79173238
+-0.55241343
+0.50712100
+-0.00120907
+0.67947242
+-0.70784759
+-0.28090174
+-0.51661960
+0.53266983
+-0.64982301
+-0.69251599
+-0.20244787
+0.73410538
+0.08935886
+-0.19304981
+-0.78913121
+0.14023626
+-0.56679513
+-0.49558861
+-0.74328168
+0.56089136
+0.11031181
+-0.42596179
+0.54094997
+-0.84071615
+-0.36859960
+-0.70542753
+-0.40577732
+-0.09968478
+-0.75754563
+0.85198102
+-0.13833225
+-0.75951386
+0.06030837
+0.56314612
+-0.42810906
+0.04417384
+0.75863821
+0.12269395
+-0.28479818
+-0.86141562
+-0.61443263
+0.26909197
+0.98627547
+0.83247281
+-0.59231303
+-0.14264059
+-0.45920711
+0.81717592
+-0.18801830
+0.11959753
+-0.59325540
+0.23062266
+0.93912152
+-0.23308020
+0.66021740
+-0.51301187
+-0.67921733
+-0.58008359
+-0.23243020
+-0.40918397
+-0.13383520
+-0.46368956
+-0.12707201
+0.89676321
+-0.59634386
+0.23321271
+-0.60558109
+-0.77265456
+-0.79771049
+0.13244276
+-0.69802150
+-0.46509182
+-0.21760802
+0.46664835
+0.32876525
+-0.46026593
+0.11267038
+-0.06940277
+-0.68986457
+0.11866942
+-0.34821911
+-0.68555237
+0.18939484
+0.98570021
+-0.42032494
+0.89502358
+-0.28767264
+-0.79985388
+-0.66011900
+-0.71334860
+0.93025875
+0.91440725
+-0.81819178
+-0.79980034
+-0.24313903
+0.57918453
+0.01261652
+0.29848313
+0.87141621
+0.46417904
+0.49903011
+-0.63961861
+0.47759783
+-0.09030426
+-0.39824826
+0.18139946
+0.42184222
+0.28390431
+-0.91381066
+-0.49460572
+-0.77093388
+-0.87901816
+-0.24731892
+-0.30472618
+0.20052314
+-0.17526352
+-0.91626137
+-0.52264461
+0.61159253
+0.54399467
+-0.72555903
+-0.20798379
+-0.57748446
+-0.68127880
+-0.22119325
+0.23529947
+0.40727901
+0.31610000
+-0.03210574
+-0.22987503
+0.33177149
+-0.13555741
+0.41277313
+0.26825309
+-0.80984131
+0.92711401
+-0.24598581
+0.59836900
+-0.49635309
+-0.09746420
+-0.16902125
+-0.01635695
+-0.69906029
+0.58414519
+-0.16574359
+-0.06755453
+-0.26099932
+0.58945179
+-0.90901268
+-0.29418004
+0.12045062
+0.56990516
+-0.50196898
+-0.25350934
+0.33675146
+-0.19098729
+-0.48258394
+-0.29312885
+0.74889064
+-0.15084869
+0.98761678
+-0.95692285
+-0.46024525
+0.55378139
+0.79330289
+-0.54483792
+0.73425901
+0.58504558
+0.93932748
+0.43476379
+0.05034721
+0.12759113
+0.57073677
+0.58760428
+-0.49262631
+0.47628284
+0.99217737
+0.89543247
+-0.48595446
+-0.83276537
+0.27323174
+-0.99864321
+0.20074475
+0.54295945
+-0.97834139
+-0.89269653
+0.66767609
+0.59613502
+0.83072150
+0.25632977
+-0.46277392
+0.17791259
+0.93483186
+-0.81436388
+-0.90984713
+0.79859245
+0.65237272
+-0.06213385
+-0.58240384
+0.88988566
+-0.98900084
+0.78438318
+0.18183005
+0.41550004
+-0.60807663
+-0.37953538
+0.12328541
+-0.02610195
+-0.10850596
+0.51252580
+-0.83772174
+0.30165160
+-0.03346521
+0.09561491
+-0.86432356
+-0.94873876
+-0.48629934
+0.46905744
+-0.47944260
+-0.02040201
+-0.92363092
+0.90659630
+-0.20477271
+0.61908066
+-0.23711079
+0.78550446
+0.85714328
+0.58246315
+-0.03529024
+-0.91841225
+-0.66847974
+-0.71429747
+-0.28379685
+0.13895333
+-0.44907880
+-0.72848824
+0.62693822
+-0.73141855
+-0.49830896
+-0.77902633
+-0.92490029
+0.31158221
+-0.74368632
+-0.51911923
+0.62603295
+0.35392964
+0.38216245
+-0.96729769
+-0.28078061
+-0.56087443
+-0.97061779
+-0.94102827
+0.77528167
+0.83338296
+-0.97634516
+0.27749014
+0.60875452
+0.67585933
+0.53403318
+0.86151659
+-0.03525907
+-0.86110640
+-0.61669245
+0.11967397
+-0.42877543
+-0.22723877
+-0.18656439
+-0.72333303
+0.52641058
+0.87500703
+-0.85628335
+-0.79797423
+-0.55326560
+0.32511187
+-0.71585891
+0.31798100
+0.11199737
+-0.20998216
+-0.61363637
+-0.51262382
+-0.78338316
+0.36888289
+0.98064041
+0.92487085
+0.80432010
+0.00759768
+0.31601739
+-0.59226358
+0.71861482
+-0.28200787
+0.06453180
+0.47995603
+-0.03274292
+0.03607285
+-0.34226221
+-0.46285224
+0.16239846
+-0.32863432
+0.97922957
+0.56686032
+-0.16936034
+-0.54232162
+0.38010693
+-0.50411901
+-0.16118759
+0.69225681
+-0.63393912
+0.31608987
+-0.82888615
+0.48628867
+-0.99884159
+0.75667453
+0.78309834
+-0.03054124
+-0.45421565
+0.85090852
+-0.04656816
+0.61813319
+0.00773823
+0.53743887
+-0.07621735
+0.21242797
+0.27235782
+-0.15353477
+-0.70236841
+0.93743730
+0.49483359
+0.24820364
+0.88477468
+0.47549045
+0.06693566
+-0.20970988
+-0.99677172
+0.23267257
+0.96357870
+0.69434881
+-0.86250086
+-0.64073157
+0.88148880
+0.48839211
+-0.30249989
+-0.90926176
+0.57165039
+-0.44330078
+0.12831604
+-0.22921681
+-0.32287049
+0.35528052
+-0.70186019
+-0.90518659
+0.50020432
+-0.90264826
+0.00567544
+0.43733430
+0.57047927
+0.31208217
+-0.45400500
+-0.78677474
+0.62139452
+-0.78077170
+0.83758140
+0.92174697
+-0.66763306
+-0.63004753
+-0.71052229
+-0.80031605
+-0.59403405
+-0.04292327
+0.87204409
+0.74890780
+0.56668174
+0.11395001
+0.33334124
+0.42339444
+-0.57569334
+0.47029853
+0.65052927
+-0.71489686
+-0.82760790
+0.61550891
+-0.71521997
+0.02201593
+-0.56241086
+-0.61503422
+-0.70010531
+0.96975899
+-0.09477288
+-0.04359597
+-0.85810122
+-0.26431566
+-0.54842484
+-0.39322156
+0.80342793
+-0.50209793
+0.72675896
+0.85344231
+-0.30317605
+0.40547621
+-0.30507761
+0.16957045
+0.40718579
+-0.16650927
+0.53507447
+0.64581382
+0.73313010
+-0.34165514
+0.12126248
+-0.19876757
+0.10038318
+-0.53009906
+0.99639483
+-0.84166988
+0.43996706
+-0.37647396
+0.01086720
+0.49119099
+0.40719102
+-0.50881027
+-0.89143236
+0.03498966
+0.39356860
+0.67052129
+0.49934329
+0.08111342
+-0.48467521
+0.48323092
+0.61018568
+0.42727637
+0.17617000
+0.83641807
+0.32115234
+0.01189718
+-0.66546377
+0.25348858
+0.35151647
+0.32510362
+0.96645070
+-0.91508251
+0.91780191
+0.82847477
+-0.31813671
+-0.45781454
+-0.30545260
+-0.44861136
+0.94473964
+-0.81768763
+-0.67597222
+-0.45774056
+-0.77777088
+-0.55547101
+0.90576954
+0.81438362
+0.88932813
+-0.87680775
+-0.35917206
+-0.44349572
+-0.84036698
+-0.56130849
+0.00657136
+-0.54251047
+0.15625649
+-0.01503972
+-0.58635980
+0.70859754
+-0.22277164
+-0.56611401
+-0.73418577
+0.14320298
+0.79004475
+0.19994508
+-0.42025197
+-0.96723958
+-0.40638727
+-0.86751218
+0.36347117
+0.60979271
+-0.71270385
+0.33810824
+-0.16190961
+-0.37099982
+-0.27600007
+0.00373962
+-0.81132075
+0.35943885
+0.91921367
+-0.15696529
+-0.13170107
+-0.91435340
+-0.08997452
+-0.25125617
+-0.75488373
+0.73857294
+0.91174986
+-0.04918519
+0.54486114
+0.37414354
+0.63022610
+-0.58723263
+0.86791498
+-0.25555365
+-0.92907455
+0.63866488
+0.94540972
+0.83839416
+0.79183660
+-0.14131057
+0.94497806
+-0.27927518
+0.79402269
+-0.01323990
+-0.44415112
+0.62223950
+0.43647752
+-0.63037556
+0.78823968
+0.24565025
+-0.33813458
+-0.67359153
+0.68880952
+-0.23677825
+0.92357804
+0.54213371
+-0.90862147
+-0.49313641
+-0.02879942
+-0.38826534
+0.00981084
+-0.17751606
+-0.85805143
+-0.73531612
+0.37087960
+0.85756517
+-0.87395664
+-0.49498508
+-0.29516252
+-0.32544545
+0.62766408
+0.81426092
+-0.77725042
+-0.34701327
+-0.80884102
+0.16543657
+-0.40652292
+-0.01246390
+0.32826879
+0.87224126
+-0.09207058
+-0.31307722
+-0.51681905
+0.21241420
+-0.69079013
+0.68100423
+0.34757656
+0.72708506
+-0.55719293
+-0.43343909
+0.29345727
+0.87815315
+0.09642608
+-0.35651399
+0.69976170
+-0.07338026
+-0.36538225
+-0.69662913
+0.04284850
+-0.75818052
+-0.44400330
+0.57317678
+-0.02725544
+0.10712987
+0.11472137
+0.69931769
+0.16008491
+-0.59376789
+-0.35192695
+-0.18005896
+-0.24328205
+0.26671997
+0.45007332
+0.48950444
+-0.95168007
+-0.05383756
+0.45602724
+0.61242137
+-0.36208920
+0.48493089
+-0.36223092
+-0.65941298
+-0.56301261
+-0.25825494
+0.03150961
+0.66118447
+-0.42958066
+-0.01909154
+0.40324683
+0.16143524
+-0.72243845
+-0.73277314
+-1.02097884
+0.90616343
+0.45258870
+-0.60375940
+-0.21453355
+-0.31751303
+0.90063726
+0.45582939
+-0.01904587
+0.55053282
+-0.44428489
+0.48123592
+-0.24469829
+0.20531351
+-0.84002214
+0.86142535
+-0.13365727
+-0.48301533
+-0.24978425
+-0.41465297
+0.09340912
+0.47205826
+-0.57219716
+-0.83320390
+-0.86042495
+-0.78457619
+-0.04035042
+0.47387740
+0.12594774
+-0.88596116
+0.57957185
+-0.09474541
+-0.37064527
+-0.97241525
+-0.44173688
+-0.58181615
+0.03737419
+0.04783050
+1.03173404
+0.58929356
+-0.54072482
+-0.69169661
+-0.71022575
+0.39519570
+-0.76814126
+0.79429675
+0.25148861
+-0.18054412
+-0.34804617
+-0.94644820
+-0.12602756
+0.03887085
+0.60883689
+-0.02612074
+0.64101044
+-0.07000974
+0.50295701
+-0.56438838
+0.37114458
+0.68180788
+0.17971863
+-0.54016129
+0.09357051
+-0.02897256
+0.06508279
+-0.59374653
+-0.63090939
+-0.74053645
+0.16840677
+-0.85523103
+-0.91804816
+-0.58874234
+-0.02465884
+-0.89148447
+-0.91681649
+-0.11020096
+0.18700187
+-0.80609726
+-0.59803218
+-0.31186044
+0.83740254
+0.52913187
+0.54674043
+0.14440075
+-0.36312910
+0.60573057
+0.68187420
+0.09468183
+-0.43592541
+-0.83781289
+0.91952784
+0.26969702
+-0.69693374
+0.37433267
+0.85608575
+0.62416125
+0.54270203
+-0.79171409
+-0.30080025
+-0.62051006
+-0.93263205
+0.32348140
+-0.58303842
+-0.13648939
+-0.88304348
+-0.87928706
+-0.22519703
+-0.77637612
+0.45174024
+0.07410059
+0.60682945
+0.80977815
+0.75177285
+-0.67337249
+0.60244875
+-0.36173453
+0.49491583
+-0.74504026
+-0.28612849
+0.22217593
+0.48428775
+-0.38657838
+-0.36008612
+-0.49782776
+0.59291315
+-0.53304455
+0.81602651
+0.48635291
+-0.23608794
+0.27837550
+0.81028185
+0.36585373
+0.99255754
+0.21654563
+-0.96348556
+0.46785514
+-0.64544823
+0.91443073
+-0.41187605
+-0.71975446
+0.04567652
+-0.72823024
+0.05833076
+0.01480937
+0.13643857
+0.17813362
+-0.98508228
+0.83014271
+-0.53054298
+-0.46367683
+0.78981217
+0.91343078
+0.41326102
+-0.23374076
+-0.75041551
+-0.79104089
+0.85157925
+-0.63060674
+0.51053007
+-0.40041999
+0.96630879
+0.59737314
+-0.36880566
+0.36211371
+0.36213596
+-0.12195476
+-0.41229807
+-0.35669400
+-0.47916736
+-0.17406506
+0.18562612
+0.90911026
+0.34880683
+0.17734538
+-0.15588794
+0.16080949
+-0.33219109
+-0.96416846
+0.17317660
+-0.24705299
+-0.87994003
+0.98543541
+0.54263267
+-0.39510957
+-0.18901576
+-0.96267887
+-0.88126683
+0.12564895
+0.50998996
+0.76327882
+-0.09037627
+-0.18689681
+0.90695500
+-0.20755567
+-0.53589432
+-0.51526783
+0.68090177
+0.43137692
+-0.62286720
+-0.03540163
+-0.10959627
+-0.93523382
+0.77372184
+0.06117429
+0.43771561
+0.77523493
+0.79920689
+0.28403091
+0.65110048
+-0.05919476
+0.89488684
+0.39850447
+0.97290608
+-0.59403559
+0.36410224
+-0.49065761
+-0.70174669
+-0.66206726
+0.15989851
+0.65510710
+0.62431947
+0.89962585
+0.29505645
+-0.48117142
+-0.71717717
+-0.91222841
+-0.47742621
+0.60245010
+0.14455626
+-0.13667130
+-0.86508242
+0.42196381
+-0.20864218
+0.41756232
+-0.13503823
+-0.21541309
+0.26876603
+0.42320547
+-0.92307797
+0.80725221
+0.50193989
+-0.44568332
+-0.41079869
+-0.06823305
+0.89132574
+-0.78875933
+0.29214765
+-0.57893102
+-0.09890166
+-0.10949778
+-0.32305375
+-0.81947259
+-0.81423996
+0.38850101
+-0.82370471
+-0.53850505
+0.05540432
+0.97719418
+-0.84006484
+0.64055590
+-0.08691880
+0.05586729
+-0.31479444
+0.93337034
+-0.30410638
+-0.03051360
+0.81386719
+-0.48242770
+0.87503003
+-0.58643923
+-0.13331963
+-0.51669985
+0.13118782
+-0.01955990
+-0.41182543
+0.83410355
+-0.92391725
+-0.45073281
+-0.57160755
+-0.26903777
+-0.08792512
+0.34410586
+-0.52714239
+0.98200889
+0.41131077
+-0.91465257
+0.69189289
+0.71837806
+-0.47326946
+-0.94423044
+0.36039505
+-0.72300832
+0.20969839
+-0.67273547
+-0.32323353
+-0.10928497
+-0.49070831
+-0.70246360
+0.25842921
+-0.47493350
+-0.84270716
+-0.50238919
+0.81869949
+0.53215450
+-0.08385853
+-0.47199640
+-0.50137758
+0.96435284
+-0.53557828
+-0.88148590
+-0.57336650
+0.09965702
+-0.42782708
+-0.71442883
+0.23794280
+0.59208509
+0.59428500
+-0.16648946
+0.58338311
+0.48692485
+-0.43128360
+-0.15108786
+-0.73888908
+0.13808655
+0.02651509
+0.71171081
+0.19153690
+-0.59209474
+0.33179446
+0.25681350
+0.62998915
+0.81917396
+-0.07122418
+0.96259653
+0.08027002
+-0.15410391
+-0.57451993
+-0.33064528
+-0.09670668
+-0.56284555
+0.40479759
+-0.46895860
+0.72130109
+-0.68330636
+-0.30050035
+0.87281351
+0.36526560
+-0.18489007
+-0.79214566
+-0.82863896
+-0.10960011
+-0.56577348
+0.32411236
+-0.55713873
+0.54745507
+0.75593053
+0.34127823
+0.70936797
+0.56314579
+-0.10371311
+0.30361530
+0.10215174
+0.75188899
+-0.77743765
+-0.05673257
+-0.95261178
+0.97398955
+0.90421945
+-0.55692393
+-0.60999961
+0.95998009
+0.56375709
+0.27450147
+-0.26106332
+0.09154564
+-0.77202411
+-0.83541134
+0.36224652
+-0.41947600
+0.67252003
+0.77475858
+0.88520343
+0.62083113
+-0.52037601
+0.42105980
+0.73945583
+-0.33391658
+-0.19541301
+-0.94925528
+-0.32887143
+0.60536729
+-0.77626805
+-0.50954391
+-0.34028731
+-0.08306227
+-0.26464900
+0.44858605
+0.11123404
+0.27185271
+-0.08837000
+0.45884774
+0.04307631
+0.14946664
+0.90163948
+0.18785269
+0.86260766
+0.58736337
+-0.57173625
+-0.94754237
+-0.22796917
+0.48657978
+-0.64814743
+0.32310520
+0.27045831
+0.35464528
+-0.03477325
+-0.11681854
+-0.00654790
+0.47546441
+-0.79146673
+0.34789833
+0.88058350
+0.57034427
+-0.44545525
+0.20849374
+0.41122545
+0.13136350
+0.59268081
+-0.11866324
+-0.13769299
+1.01155778
+0.41730294
+0.87747616
+0.19044471
+-0.93187105
+0.93678714
+-0.60845364
+0.74801314
+-0.36761766
+-0.05620379
+0.73246714
+0.49286255
+-0.00078678
+0.46339548
+-0.27945891
+-0.04518556
+-0.86606333
+0.19791055
+-0.32491617
+-0.43774820
+-0.12152860
+-0.88777816
+0.88554531
+-0.93021311
+-0.84966260
+-0.78400346
+-0.62867213
+-0.96601102
+0.85442872
+0.51031416
+-0.66158462
+-0.56880712
+0.16143423
+-0.04520851
+0.02175644
+-0.40828489
+-0.23268683
+0.36118698
+-0.67815389
+-0.52952482
+0.59542104
+0.33361853
+-0.96195926
+0.47352040
+-0.50275371
+0.95351446
+0.60508658
+0.93158400
+0.46805603
+0.26943311
+0.13393854
+0.27146475
+0.35533935
+-0.92815914
+-0.79209904
+0.22707547
+-0.07280501
+0.59267187
+-0.80511422
+0.51063004
+0.55657560
+-0.11398237
+0.84764574
+0.69922309
+0.75505226
+0.80524738
+0.00263838
+-0.50803179
+-0.98111124
+-0.66491708
+-0.72825170
+0.36074400
+0.49870563
+-0.26734573
+0.78623581
+0.95661509
+0.73215604
+-0.40856844
+-0.32706290
+-0.39577734
+0.53219509
+-0.49058235
+0.64787173
+0.98066676
+0.27284062
+-0.16819316
+-0.77597371
+-0.93941920
+-0.13677227
+0.92809701
+0.29164791
+-0.83045790
+0.27032113
+-0.60127282
+0.97115374
+-0.24422044
+-0.40160131
+0.29084027
+-0.77252467
+-0.78078610
+0.82852197
+-0.95517727
+-0.31035149
+-0.92897230
+0.11027205
+0.55608618
+-0.64568114
+-0.34908819
+0.87364864
+0.89306676
+-0.83695990
+-0.47233200
+-0.56509218
+0.00033617
+-0.00744426
+0.97214639
+-0.37478101
+0.20518529
+-0.18636578
+-0.83012745
+-0.47437191
+-0.03961760
+-0.17204195
+-0.85509248
+0.48354614
+0.85206902
+-0.02700740
+-0.58202043
+0.97931635
+-0.98859410
+-0.25409359
+-0.87554806
+0.73273253
+0.24755669
+-0.16910046
+0.07695842
+-0.69594592
+0.35944104
+0.39665306
+0.21411610
+0.20173693
+0.57396317
+-0.80097140
+-0.64066079
+-0.29218239
+-0.93349815
+-0.47591692
+0.16281080
+0.67275119
+0.37993753
+-0.69861552
+0.88065517
+0.22490811
+-0.91682607
+0.30958867
+-0.51470762
+-0.36505300
+0.98769879
+0.70434272
+-0.08155197
+0.93775237
+-0.05016363
+-0.95674618
+0.16807246
+-0.43177617
+-0.08199382
+-0.52392218
+-0.33705562
+0.56085467
+-0.95991029
+0.84486485
+0.22514057
+-0.45738328
+-0.56813678
+-0.47356844
+-0.60309586
+-0.66969538
+0.33984244
+-0.87805405
+0.27072203
+0.65698540
+-0.83841719
+0.63547194
+0.79983807
+-0.29401177
+0.92776382
+0.73439705
+0.74768758
+0.91478240
+-0.22245812
+-0.00573373
+0.49980927
+0.32583213
+-0.19160217
+-0.05978763
+0.19112241
+-0.41789985
+0.26836634
+-0.70000157
+-0.86804031
+0.33873928
+-0.90608872
+-0.55352676
+0.71614516
+-0.96733509
+-0.13568342
+-0.87840179
+0.87643325
+0.42733872
+0.71468651
+0.64577663
+0.36479580
+-0.49202996
+-0.23371297
+-0.46412235
+0.98179126
+0.20894957
+0.54617023
+0.86217773
+-0.59151456
+0.24232852
+0.96602738
+-0.41468555
+-0.25875688
+0.79782140
+0.90991127
+-0.42442626
+-0.29126894
+-0.98970381
+0.33948064
+0.79325032
+-0.41461700
+-0.04309523
+-0.01877797
+-0.92201589
+-0.37434369
+0.79993463
+-0.69919145
+-0.49011749
+-0.70499355
+-0.87525320
+0.75626373
+-0.29982591
+-0.34899902
+0.56135094
+-0.12200648
+0.72135448
+-0.08835393
+-0.43109775
+0.23799467
+-0.22775525
+0.80203772
+0.07105207
+-0.24617362
+0.39983177
+0.47997248
+-0.18047190
+-0.15341491
+0.85796165
+0.45264900
+0.04067874
+0.52632844
+0.93903077
+-0.69556969
+0.63825142
+-0.45656961
+0.70891654
+-0.78719971
+0.76539409
+0.97835398
+-0.16687959
+0.56717706
+0.43773425
+-0.78540890
+0.91152883
+-0.37945789
+-0.75167750
+0.61514866
+-0.88103852
+0.81723452
+0.34871900
+-0.42907304
+-0.55962190
+0.71297789
+0.93068254
+-0.30317110
+-0.91325034
+0.36237133
+-0.42422289
+-0.81907554
+-0.71805638
+0.86094224
+0.24447393
+0.75581861
+-0.82355975
+-0.53593403
+0.85783827
+0.38876224
+0.41556084
+0.94191098
+0.73103154
+0.12045252
+-0.35790735
+0.12232840
+0.94370651
+0.94680297
+0.52341187
+0.69734347
+-0.65315744
+0.85829580
+0.05552423
+-0.33950853
+-0.91315296
+-0.68482456
+-0.97319575
+-0.98742186
+0.05181754
+-0.07571161
+-0.94955543
+0.28647959
+-0.80457222
+-0.16557699
+0.49623322
+0.42655313
+0.06960392
+0.23686302
+-0.24291348
+0.25327146
+-0.47982103
+0.55919850
+0.12037551
+-0.14128959
+0.77833974
+0.83988369
+0.46065235
+-0.62623256
+0.07991469
+0.05589914
+-0.00997233
+-0.49321371
+0.21241033
+-0.42461526
+-0.53381664
+-0.62356499
+0.80291164
+-0.18645644
+-0.24478501
+0.50691688
+-0.59931362
+-0.64470902
+0.03332055
+0.48349655
+0.24150538
+-0.99204841
+-0.28983223
+-0.32468486
+-0.24227846
+-0.05595994
+-0.93458846
+-0.39150536
+0.15459633
+0.52832115
+0.35527539
+0.76177430
+-0.46125180
+0.82010174
+-0.65038478
+0.60065019
+-0.82231222
+-0.09952265
+0.37904084
+-0.72786751
+-0.35651243
+0.94413900
+0.30717099
+0.30434442
+0.09831107
+-0.64304459
+0.53423643
+0.54960775
+-0.98325958
+0.76226485
+0.64587426
+0.92135489
+-0.55735514
+0.06488001
+0.39751256
+0.11634946
+0.07099748
+0.18260539
+0.50232816
+0.28277063
+-0.97995563
+0.88578773
+-0.38037103
+-0.26433975
+-0.60126531
+0.64222896
+-0.48544168
+0.65334686
+0.08908783
+0.56703651
+-0.15495491
+-0.83104225
+0.72819224
+-0.79873476
+0.84393382
+-0.39357736
+0.79022087
+0.07939364
+0.29939100
+-0.19264360
+-0.01379882
+0.40088505
+0.48464288
+-0.66796936
+-0.62013425
+0.19726136
+0.25977152
+-0.09054687
+0.28155928
+0.38280195
+0.62307730
+-0.57611410
+0.85943945
+-0.60109479
+0.40139808
+-0.63782721
+0.51955545
+-0.51929969
+0.44745816
+-0.57842748
+1.01121792
+-0.54750141
+0.64277410
+0.32799026
+0.76162652
+0.49781730
+-0.13059102
+0.48644690
+-0.01293488
+0.68051870
+0.32050944
+0.63297821
+-0.73601278
+0.27376519
+-0.67385593
+0.46265820
+-0.65730053
+-0.83922460
+0.42415335
+0.72319907
+0.12737198
+0.66664531
+0.00738434
+0.95329227
+-0.63830163
+0.51198997
+0.28196304
+0.97575334
+0.80678973
+0.42801721
+-0.75295908
+-0.80591967
+-0.62763539
+0.63568483
+0.64076104
+0.31844728
+-0.51536803
+0.52601505
+-0.42296093
+-0.98277174
+-0.68446772
+0.21414693
+0.92853169
+-0.16343416
+-0.16125692
+-0.01279414
+0.95812627
+-0.18873686
+0.28366844
+0.93073041
+-0.86757991
+0.82008564
+0.34490738
+-0.70592286
+0.44702067
+-0.32428012
+0.48227647
+0.07674960
+-0.47259987
+0.33288164
+-0.37518635
+0.44385054
+0.06410416
+-1.00871579
+0.84346593
+0.91913888
+0.68559298
+-0.89271771
+-0.15709060
+0.55136150
+-0.95119743
+-0.61822167
+-0.51886197
+-0.72871613
+0.40441605
+-0.94691849
+0.62806769
+-1.07528157
+-0.40267422
+0.63132953
+-0.58424755
+-0.21619908
+0.38725523
+0.92925214
+-0.59761757
+0.02704832
+0.61941949
+-1.02613652
+0.74702245
+0.90981368
+0.28435019
+-0.39612695
+0.04800082
+0.59517097
+-0.02754177
+-0.63808811
+-0.02796568
+-0.36959043
+0.24832486
+0.75430394
+0.68692965
+-0.31423507
+-0.53981327
+0.23625842
+0.95851307
+-0.41896417
+0.11997228
+-0.20165600
+-0.57476890
+-0.65587126
+-0.08575858
+-0.01143561
+-0.28571866
+-0.77084741
+-0.42578422
+-0.23718179
+0.54179935
+-0.82429657
+0.43494765
+-0.96366256
+-0.55067153
+-0.79246064
+-0.78129855
+0.17563119
+0.10082615
+-0.95585022
+0.71084145
+0.92648599
+0.54748945
+0.82021409
+0.52555022
+0.48773749
+0.45020093
+0.70783813
+-0.75955037
+0.89803890
+0.69187360
+-0.39520890
+0.68712842
+0.89424535
+-0.47513000
+-0.49668527
+0.26921548
+0.30368610
+-0.42966377
+-0.95621213
+-0.74876262
+-0.10178883
+-0.90611884
+0.03244399
+-0.14288980
+0.68761896
+-0.30858234
+-0.35739789
+0.61844094
+-0.32060519
+-0.42113479
+0.52444727
+-0.39042060
+0.58902324
+0.80891594
+-0.71552895
+-0.16137430
+0.95577871
+-0.11629099
+0.72103080
+-0.36380748
+0.25118255
+-0.60195719
+-0.14139638
+-0.66733851
+-0.88282262
+0.21548098
+-0.16494338
+-0.07655776
+0.87452835
+0.52138507
+-0.09250632
+0.72137574
+-0.56853308
+0.67411687
+0.48848245
+-0.74616997
+0.37131808
+-0.35756062
+-0.50634690
+-0.20310808
+-0.64790462
+0.29305187
+-0.03907335
+0.18751211
+0.08163535
+-0.62233780
+-0.35477538
+0.24915226
+-0.48321861
+0.51525516
+-0.27936919
+0.40185808
+-0.53614242
+0.80298297
+-0.01445710
+0.10754552
+-0.28385537
+-0.82922198
+-0.19282746
+0.01147178
+-0.28858806
+0.75801110
+-0.59923044
+-0.39099711
+0.96990405
+-0.22903997
+-0.69663952
+-0.04708587
+0.80224584
+-0.77697579
+0.94812300
+0.24734671
+-0.20289586
+-0.92844229
+0.56465851
+0.98590400
+-0.93075268
+0.76273131
+-0.62586416
+-0.81568494
+-0.69054586
+0.12699562
+-0.41728415
+-0.20078316
+0.70996721
+0.92830557
+-0.53551704
+-0.76039029
+0.49551386
+0.25074384
+0.59840346
+-0.28326958
+0.23845331
+0.83519353
+0.79911169
+0.99464604
+-0.01289718
+0.73358007
+-0.39321082
+0.41109546
+0.33848319
+0.44160260
+-0.55877469
+-0.83011413
+-0.56210657
+-0.90723372
+0.05644895
+0.90801594
+0.18820273
+-0.72001810
+-0.11088861
+0.44298921
+0.51032768
+-0.60085816
+-0.23384989
+-0.66306769
+0.70958038
+-0.28688662
+1.01554876
+-0.34807122
+0.50973503
+0.29910099
+-0.46010484
+-0.74656937
+0.65534119
+0.09231733
+-0.29135602
+0.96864133
+0.78831919
+0.66008586
+0.06045750
+0.12515736
+-0.80375966
+-0.55571592
+-0.53477336
+0.03542482
+-0.47480655
+-0.47384591
+-0.94099585
+-0.31969929
+-0.42680403
+-0.76478770
+-0.27497092
+-0.23604745
+0.74109943
+-0.84740256
+0.10140277
+-0.35223728
+0.09076772
+0.15607491
+0.46023411
+0.32945251
+0.21527222
+-0.46641749
+0.39413708
+-0.01813795
+-0.65388922
+0.56883413
+0.79941149
+0.88259757
+0.76771193
+0.09612258
+0.35210409
+0.90854937
+0.25979612
+0.95170141
+0.52481291
+0.50597693
+-0.01795628
+0.91519182
+0.65691980
+-0.47358003
+-0.74564597
+0.85243321
+0.84506851
+0.63975399
+-0.85237945
+0.76464393
+-0.50089590
+-1.02274925
+0.67145436
+0.99989538
+-0.90210887
+0.84401829
+0.81013933
+-0.86075303
+0.88535291
+0.26238379
+0.44135271
+0.24457298
+-0.92309063
+0.53762723
+0.32335840
+-0.34569892
+-0.95920482
+0.81656168
+0.71629954
+0.23470643
+0.96234834
+-0.45668996
+-0.29892369
+0.30151244
+-0.26795012
+0.02240052
+-0.88864288
+0.81891818
+-0.43202850
+0.84661864
+0.15521893
+0.43835932
+-0.77533020
+-0.39029595
+-0.21917608
+-0.14102308
+-0.49670213
+0.61227579
+0.98829696
+-0.64736548
+-0.69883203
+-0.81103142
+0.14804341
+0.29996268
+0.33911138
+0.83285649
+0.70543350
+0.47926942
+-0.27815787
+-0.56353848
+0.19123795
+0.54059471
+-0.07153811
+-0.74309456
+0.86587672
+0.24793497
+0.78564923
+-0.65314197
+-0.51547191
+-0.15367991
+-0.63426058
+-1.00180030
+0.01902118
+-0.46994480
+-0.92741281
+-0.96877799
+0.83789014
+-0.91565381
+0.37244605
+-0.68259670
+0.57290213
+0.66326729
+0.64446051
+-0.64638672
+-0.44779672
+0.87781180
+-0.09595445
+0.16961169
+-0.97884592
+0.70907415
+-0.78633661
+-0.60588498
+-0.01804023
+0.09447375
+0.38076278
+0.28208385
+-0.79644983
+0.34706296
+-0.94233104
+0.53863519
+0.78913038
+0.67806445
+-0.93857360
+0.18656156
+0.10968608
+0.53136492
+-0.00154916
+-0.70998363
+0.09740132
+0.51078145
+0.99689615
+0.12061928
+-0.66696745
+0.01618722
+-0.24750128
+0.90672415
+-0.97192774
+0.47850324
+-0.70937975
+-0.66907108
+1.00012147
+-0.68184273
+-0.66681814
+-0.97433141
+-0.26139805
+0.36722578
+0.48437686
+0.62082001
+-0.35709899
+-0.04768151
+-0.85971538
+-0.73585479
+0.13540119
+0.63388639
+-0.35674632
+0.19455353
+-0.74582332
+0.27489044
+0.25742451
+-0.39867310
+-0.38321104
+-0.82101366
+0.36414195
+0.09420745
+0.56668052
+0.50555211
+-0.30604110
+0.32167643
+-0.72232673
+-0.07681242
+-0.94233907
+-0.51455127
+-0.40985718
+0.38194274
+0.15641396
+0.90381809
+-0.25797946
+0.56914841
+0.79166476
+-0.27837747
+0.52980075
+0.11013380
+-0.16244494
+-0.96119932
+0.83447185
+-0.53725487
+-0.68132738
+0.75862834
+-0.17276945
+0.28080467
+-0.90009814
+0.78489409
+0.64151495
+0.66104047
+-0.88750035
+-0.11893481
+-0.19016284
+-0.66487344
+-0.74547402
+-0.09157315
+0.53567208
+-0.02644684
+-0.76132190
+0.77965396
+-0.94210123
+-0.06722048
+-0.36246073
+-0.02237420
+-0.62116628
+0.26854380
+0.46077707
+-0.81324099
+0.54394647
+0.32000917
+0.02520997
+-0.66076116
+0.91901978
+0.33457858
+-0.00956808
+0.25652456
+-0.36942232
+-0.76106587
+0.83563075
+-0.51464002
+-0.15995240
+0.58218204
+-0.30763344
+-0.30081924
+-0.61935030
+-0.95552244
+-0.91180978
+-0.44697632
+0.38746220
+-0.86354458
+-0.66496071
+0.42310470
+0.20165773
+-0.44625810
+-0.95047455
+0.90284457
+-0.05031865
+0.51277161
+0.63243479
+-0.30697549
+0.04895334
+-0.41285004
+0.77572190
+-0.54358627
+0.90121501
+-0.43061449
+0.50280068
+-0.70635437
+0.97394310
+0.86756883
+0.74297930
+0.02872755
+0.19078556
+0.34611261
+-0.65997662
+0.96483678
+0.17153122
+0.45790309
+0.74002973
+-0.55424000
+0.69272910
+0.22626420
+-0.55069087
+0.81058474
+0.28093388
+0.27082781
+-0.54625519
+-0.51922949
+0.36723416
+0.70424374
+-0.11662224
+-0.15977281
+-0.00662082
+-0.45107838
+-0.19797098
+0.13398468
+-0.77324726
+0.74362333
+-0.98860217
+-0.91422435
+-0.31321081
+-0.74105373
+-0.68510210
+-0.31483283
+0.35779429
+0.12212359
+0.56732762
+-0.08404147
+0.20075219
+0.20215865
+-0.55307019
+0.09530968
+0.31242610
+-0.87006935
+0.31292511
+-0.91076172
+0.00683498
+-0.33870130
+-0.49327785
+-0.90661346
+0.03921697
+0.24417013
+0.36621285
+0.66913155
+0.95886815
+-0.42539007
+-0.09361517
+-0.15768509
+0.27866321
+-0.15307865
+-0.91427630
+0.87337989
+-0.33043223
+-0.44345590
+0.49610246
+-0.15215207
+-0.01323861
+-0.82504848
+0.57423942
+-0.17420922
+-0.00766497
+0.35546869
+-0.02508395
+-0.97760650
+-0.63263916
+0.11548568
+0.41680348
+0.20228703
+-0.13710931
+-0.69162009
+-0.59748955
+-0.72278428
+-0.17100208
+-0.84013207
+-0.68426018
+0.27879463
+-0.45491749
+-0.99893173
+-0.59406937
+0.64787128
+0.71443931
+-0.40071765
+0.56423695
+0.22691842
+-0.69066708
+-0.94498061
+0.87458920
+-0.85943444
+-0.94112350
+0.79067159
+-0.22799158
+0.63436985
+0.19425046
+-0.21441698
+0.36337137
+-0.30584949
+-0.44360834
+0.68549490
+-0.86439411
+-0.37518793
+0.17935300
+0.96277058
+0.04290378
+0.97237134
+0.13246143
+-0.42624968
+-0.51881546
+-0.31024343
+-0.38660175
+0.63445115
+0.99184740
+0.24138117
+-0.37967479
+-0.88649353
+-0.75129698
+0.09313798
+-0.09993762
+-0.28374523
+-0.68259621
+-0.67074880
+0.37106156
+0.39478898
+-0.26991087
+-0.02377355
+-0.68816763
+0.67935658
+0.91496277
+-0.15770555
+0.93392301
+0.25537074
+0.40417409
+0.81626248
+-0.12138599
+0.68763423
+-0.44375181
+-0.80008298
+0.73571682
+-0.30057210
+0.78849518
+0.91937423
+-0.11522007
+-0.72438663
+-0.98523977
+-0.32923996
+-0.84279224
+-0.39748591
+0.88418067
+-0.89500832
+0.76853812
+0.44282937
+-0.15163845
+0.37274325
+0.94808054
+0.87834775
+0.53798640
+-0.11746925
+0.62750423
+0.69131219
+-0.84123482
+0.46552885
+0.26012945
+0.30185461
+-0.60332671
+0.79614878
+-0.91988692
+0.19042873
+0.09638345
+-0.88049532
+0.78566372
+0.86932945
+-0.01017922
+0.98794210
+0.70619309
+0.30994093
+-0.32057297
+0.23466504
+-0.65614104
+-0.18320304
+0.88102853
+0.75590837
+0.09728706
+0.60640919
+-0.69874883
+0.18924332
+-0.02078032
+-0.61135435
+-0.56242573
+-0.40205818
+0.02930951
+-0.88676109
+0.10080850
+-0.04282302
+-0.38187772
+-0.23543030
+-0.98235655
+0.63689208
+-0.18042415
+0.83884275
+0.69260919
+0.95100164
+-0.97596750
+0.53334343
+0.68177259
+-0.15364903
+0.15781951
+0.57973504
+0.48344576
+0.06510127
+0.65755963
+-0.68645650
+-0.50374788
+0.58074689
+0.56180203
+0.38165259
+0.41494417
+0.68366122
+-0.30804539
+0.68050396
+0.24295485
+-0.80348112
+-0.67756706
+-0.37149823
+-0.39941031
+-0.48386914
+-0.15706378
+0.96832132
+-0.90426281
+0.98985934
+-0.68000352
+0.34094822
+-0.84203272
+-0.16945183
+-0.25984246
+0.24349213
+-0.58082193
+-0.89006276
+-0.81267028
+-0.69770670
+0.44183922
+-0.98911613
+0.75146306
+0.64481187
+0.29546607
+0.61481833
+-0.40515894
+-0.27710384
+-0.07385314
+-0.04634887
+0.55597639
+0.55212140
+0.58179736
+0.90519810
+0.30384612
+0.29537237
+-0.52797666
+-0.99082838
+-0.52477083
+-0.98616390
+-0.92225198
+-0.57508829
+0.69989967
+0.39491117
+-0.17769277
+-0.58922163
+0.80401564
+-0.88065169
+-0.30235052
+0.53760493
+-0.63064048
+0.56639528
+0.25769913
+-0.96369467
+-0.63549837
+0.21104515
+0.70626783
+-0.33271831
+-0.07494438
+0.72403669
+0.26185071
+0.21070588
+0.31038165
+-0.86271173
+-0.28865635
+0.82735050
+-0.84562755
+-0.67370722
+-0.59141362
+0.53570318
+0.57066786
+-0.36743605
+0.03343129
+0.20191526
+0.26001394
+0.90943384
+0.48520839
+-0.31968540
+-0.80904943
+0.44709527
+-0.07113492
+0.08150876
+0.22181833
+0.48689413
+-0.55181926
+0.87264276
+-0.20807827
+0.82083094
+-0.34830183
+-0.94132131
+0.22748995
+-0.64497519
+-0.70927796
+-0.56916085
+0.31307054
+0.79389942
+-0.31723046
+0.60242140
+0.88285863
+-0.68542078
+-0.51147997
+0.52203035
+0.04997253
+0.08409190
+0.96505845
+0.69390750
+-0.01157010
+0.72559881
+0.54973376
+0.83043683
+0.58059561
+-0.47633570
+0.74308527
+-0.10046428
+0.22798407
+-0.99049323
+0.15669262
+0.55772734
+-0.34920853
+-0.84575056
+0.62815225
+-0.73177364
+-0.27045459
+-0.74495786
+0.39849985
+0.57561290
+-0.45409065
+-0.04455155
+0.75846314
+-0.53840798
+-0.37517852
+0.46350300
+-0.57005590
+-0.26716751
+-0.44640648
+-0.55474338
+0.29408967
+-0.03085792
+0.84867024
+0.81865573
+-0.97890478
+-0.04803205
+-0.52856430
+0.41265810
+0.21429360
+-0.03795528
+-0.87435576
+-0.06248724
+0.54398167
+-0.75233006
+0.94170690
+-0.38242888
+0.16125631
+-0.16656899
+-0.19474727
+-0.59408337
+0.20764697
+0.95035398
+-0.26069278
+0.61608064
+-0.63164887
+-0.20603842
+0.53793859
+-0.06165832
+0.12230170
+0.42414081
+-0.70256406
+0.15923119
+-0.39901221
+0.95164549
+0.89316535
+-0.42350298
+-0.84764665
+0.07724321
+-0.06465638
+-0.55820432
+-0.74496323
+0.97343016
+0.92384017
+0.88748407
+-0.74212119
+0.17765057
+0.67569101
+0.20956159
+0.57995450
+0.52881026
+0.40737402
+0.62638187
+-0.12473583
+0.19596386
+-0.63311350
+-0.05980623
+0.51839018
+-0.08139884
+0.21027946
+0.37868643
+0.32080305
+-0.10684502
+-0.05207723
+0.46433902
+-0.31302518
+-0.01606369
+0.93253183
+0.36794555
+-0.10131454
+0.58782029
+-0.06801629
+-0.06277353
+-0.02181995
+0.04817294
+0.34865855
+0.34848533
+0.09331829
+0.15392333
+-0.07564125
+0.25089327
+0.08156004
+0.01044171
+0.89084586
+0.83023308
+-0.53629176
+0.40715761
+-0.70014015
+0.84071431
+-0.67472592
+0.04566769
+0.72711250
+-0.01820525
+-0.15777737
+0.85883504
+0.02665028
+-0.39674656
+0.79466178
+0.97918817
+0.08484229
+0.69174319
+0.53424569
+0.95562429
+-0.92789238
+-0.34187433
+0.17483827
+0.32787129
+0.77943279
+-0.96775248
+-0.56334207
+0.81844883
+0.46564501
+-0.19235275
+0.97572923
+0.05767400
+0.60080296
+0.50177000
+0.95916645
+0.77544486
+0.96498663
+0.31024834
+-0.37059332
+0.46330201
+-0.27679025
+-0.40904043
+-0.63155511
+0.81096943
+0.92970735
+0.53794231
+0.58501239
+0.78861200
+-0.34226160
+0.67390695
+0.26861341
+-0.84663776
+0.96980149
+-0.56383930
+0.61354522
+0.60445981
+0.69981143
+0.50267998
+-0.67462060
+-0.71203845
+0.91933365
+0.31632843
+0.38329937
+0.32391682
+0.85497011
+0.10273066
+0.41044874
+0.06405957
+-0.51817972
+0.71182601
+-0.55888657
+-0.73319062
+-0.83740326
+-0.94271629
+0.61321245
+0.71017183
+0.01043810
+-0.00073537
+0.46940963
+-0.13675875
+-0.88951079
+0.34086979
+-0.76287158
+-0.96969375
+-0.32896942
+-0.16674557
+0.76293597
+0.20990182
+0.93697901
+-0.20118486
+-0.57402282
+-0.45893844
+-0.81885201
+0.46660149
+-0.51226926
+0.73637833
+-0.57014285
+-0.93824714
+0.33131670
+0.90541656
+0.94838997
+0.62399452
+-0.47826614
+0.96254627
+0.61543396
+-0.56044640
+0.36595343
+0.08619259
+-0.41488984
+-0.55604675
+0.75392119
+0.85563381
+0.48886562
+-0.80979855
+-0.94376769
+0.28037758
+-0.68755858
+-0.36852953
+0.77106425
+-0.30279290
+-0.14393889
+0.51560901
+0.71020890
+0.84274820
+0.69834547
+-0.93924807
+-0.26411429
+-0.12537545
+-0.85904535
+0.72295692
+-0.88741773
+0.66203724
+-0.23938770
+-0.01129615
+-0.55180274
+-0.49358736
+-0.75713320
+0.47396715
+-0.88184181
+0.27043221
+-0.21533944
+-0.04140147
+0.02622801
+-0.03269684
+0.29799811
+-0.77874569
+0.31701466
+-0.21521641
+0.59015083
+-0.06413721
+-0.77060119
+-0.40221575
+0.13051682
+0.72951219
+0.08280905
+0.61301234
+0.38274661
+-0.99314712
+-0.67920734
+-0.82343345
+-0.91061753
+-0.59099615
+-0.78370974
+-1.00484214
+0.39390223
+0.97894852
+0.02482796
+-0.75280926
+-0.07364680
+0.02616647
+-0.03324719
+0.13772346
+-0.15700017
+0.72272383
+0.66534073
+-0.07435395
+0.43694340
+-0.84040035
+-0.41598494
+0.41512436
+-0.71209153
+0.09901270
+0.25686887
+0.64346752
+-0.05427773
+0.68661344
+0.41678769
+0.74652606
+-0.80555681
+-0.88715117
+0.29476433
+-0.37565098
+-0.28491424
+-0.94939912
+-0.66952348
+-0.80213015
+-0.16580932
+-0.65888547
+-0.31226807
+-0.79269910
+0.16725753
+-0.06515813
+-0.56907069
+0.60228290
+-0.28700719
+-0.91543067
+0.65518484
+0.83795279
+-0.88967291
+-0.05010956
+0.55099698
+-0.89523033
+0.55172268
+-0.20184858
+-0.19518391
+0.26715976
+-0.34061842
+0.54314248
+-0.73584532
+-0.28668086
+-0.09077204
+0.59749403
+0.73302644
+-0.99219498
+-0.36245862
+0.97786944
+-0.88327835
+0.09949186
+0.29502213
+-0.86958617
+0.82823047
+-0.71460480
+-0.41412678
+0.82636862
+0.41021972
+0.46527414
+-0.85727460
+-0.58956722
+-0.31367722
+-0.12249086
+0.30351811
+0.48376675
+-0.30801737
+-0.33651020
+0.79117407
+0.59119877
+-0.49531557
+-0.37298599
+0.23733572
+-0.40098280
+-0.63164060
+0.07637850
+-0.77852715
+0.72922371
+0.79904166
+-0.35411525
+0.56154010
+0.92578335
+-0.96430908
+-1.01344015
+0.02659492
+-0.59309742
+-0.22314189
+0.73274565
+0.35830402
+0.87231275
+-0.14707681
+-0.80790373
+0.26660777
+0.06417534
+0.85352406
+0.16211235
+0.21780251
+0.27076310
+0.73021754
+0.11180210
+-0.36267837
+-0.96958189
+0.23965706
+0.15451133
+0.50189344
+-0.20856763
+0.21344119
+-0.31510806
+-0.58001894
+0.83044597
+-0.91604854
+-0.31106792
+0.39003737
+-0.17702128
+-0.29116726
+-0.00329777
+0.26061418
+-0.03242781
+-0.95032613
+-0.70323019
+0.94227640
+0.34834496
+-0.55689061
+0.66602996
+-0.12404156
+-0.61836838
+-0.14891961
+0.61548088
+-0.60060581
+0.19567647
+0.66300857
+-0.49786178
+0.84629926
+-0.54016024
+-0.98904307
+0.11024797
+0.42993094
+-0.97675188
+-0.42185474
+0.83006640
+-0.66293404
+-0.22464343
+-0.37296375
+-0.37313822
+-0.00048263
+0.67468661
+-0.21536710
+-0.56891277
+0.50615947
+-0.69674892
+-0.33706230
+-0.55460262
+-0.77580978
+0.26578566
+-0.00654219
+-0.57502445
+0.94962485
+-0.69760902
+-0.23234075
+0.18064778
+-0.74901224
+0.54914423
+0.01970048
+0.34192519
+0.25409548
+0.82295023
+-0.10480251
+1.01178040
+-0.09938211
+-0.64574430
+-0.56812718
+0.57045346
+0.72548650
+-0.91830053
+0.83207643
+0.83713928
+-0.94920887
+-0.45853705
+0.13788498
+0.92629599
+-0.79275169
+0.71512280
+0.12039583
+-0.03680653
+-0.95908852
+-0.60793968
+0.21693158
+-0.75757812
+0.38694620
+0.96228154
+0.55322521
+-0.59877951
+-0.88311710
+0.10988475
+0.25464965
+-0.26219562
+-0.10503799
+-0.68403856
+0.28723948
+0.62667692
+-0.58996857
+-0.15834156
+0.37978686
+0.67491991
+0.15900287
+-0.06900526
+0.60320341
+-0.67601171
+-0.46276733
+-0.04584548
+0.05142534
+0.59634987
+0.68168557
+0.83571077
+-0.33168432
+0.29971451
+0.06886300
+-0.25400345
+0.09854829
+0.33898487
+-0.99938415
+-0.74329064
+0.48184955
+-0.23420761
+0.31934642
+0.69279421
+-0.23971820
+0.84850957
+0.08120581
+0.32753136
+0.88646048
+0.97907128
+0.06651184
+0.52248251
+0.92199546
+0.90972609
+-0.57741086
+-0.50347612
+0.79555766
+0.78908028
+0.54822974
+-0.92391207
+-0.07579175
+0.39709288
+0.75571217
+0.93269105
+-0.76241903
+-0.75527024
+0.48302442
+0.01273763
+-0.62689361
+0.36938579
+-0.20284302
+0.92540536
+-0.13816655
+-0.40053997
+0.05881152
+-0.05368704
+-0.31419248
+-0.10490871
+-0.90014481
+0.11135800
+-0.39761095
+-0.26848162
+-0.31532146
+0.50026000
+-0.17486486
+0.31201782
+0.38874099
+-0.44356204
+-0.34043020
+0.15994206
+0.45497425
+-0.00708183
+-0.11761266
+-0.16595149
+-0.34803575
+-0.49573806
+0.94699806
+-0.73728571
+0.26260875
+0.41028878
+-0.00704363
+0.78306239
+-0.81471152
+0.32101055
+-0.85233843
+0.08665472
+0.40089148
+-0.88795490
+0.98646820
+-0.41851096
+-0.31631258
+-0.80799157
+0.07348148
+-0.16565208
+0.91138570
+-0.93328577
+0.15779126
+-0.25303031
+-0.31449856
+0.57297446
+-0.89098899
+0.74373271
+-0.20952040
+0.61148812
+-0.95878355
+0.97099285
+-0.97247838
+0.35541793
+0.76210107
+-0.21696766
+-0.80464410
+0.01423396
+0.21718165
+0.25891733
+0.56387570
+-0.33483088
+0.02335813
+-0.57137036
+-0.07421292
+0.80405971
+0.23977188
+0.12449673
+0.83470326
+0.10006938
+0.33126042
+-0.95357785
+0.42906512
+0.58796814
+-0.58788486
+0.52924237
+-0.31899958
+0.18920641
+-0.92867189
+-0.57933715
+-0.21332857
+0.50695671
+0.90479505
+-0.54020033
+-0.73314873
+-0.02661007
+0.27730183
+-0.08476402
+-0.32179664
+-0.10996996
+-0.84694878
+-0.45231803
+0.42290748
+-0.84406535
+0.80839048
+0.60402957
+-0.38898036
+-0.48158357
+-0.77906152
+-0.54147618
+0.08010968
+-0.37040850
+-0.37373677
+-0.25967734
+-0.00814615
+-0.63774044
+-0.07147792
+-0.13492965
+0.23609536
+-0.38417251
+-0.20495010
+-0.24139906
+-0.09705572
+-0.86305345
+-0.02548006
+0.57120582
+-0.33474971
+-0.82965082
+0.23776088
+-0.60349663
+0.30276442
+-0.41076669
+0.74729652
+0.61815588
+-0.50367142
+0.06957012
+-0.05730349
+0.21832592
+0.27567435
+0.71504758
+0.45629275
+0.67875612
+-0.55030817
+0.12041206
+0.12732301
+0.53288809
+-0.41033690
+-0.65391295
+-0.27000302
+-0.44938427
+0.32379757
+-0.95082312
+-0.10083771
+0.44859565
+-0.50355399
+-0.24711226
+0.46066690
+0.97008344
+-0.12800221
+0.74374911
+0.29924549
+0.66599154
+0.18985459
+-0.40873569
+-0.03673159
+-0.43809798
+0.64224135
+0.02958285
+-0.18852401
+0.61885650
+-0.15299136
+0.60135635
+0.66873178
+0.25586778
+0.64403594
+0.03792218
+0.02915347
+0.96611857
+0.07800758
+0.10028035
+-0.31628973
+-0.79299383
+-0.31242034
+0.87430257
+-0.01522207
+-0.39578154
+0.78706349
+0.66497683
+-0.64634153
+0.54481776
+0.44856649
+0.67405793
+0.87562451
+0.91205555
+-0.51014754
+0.82619682
+-0.43881779
+0.86020457
+-0.73686886
+-0.45581310
+0.54542034
+0.81519779
+0.39415619
+-0.69053668
+0.43513680
+-0.44857332
+-0.43623083
+0.30658554
+-0.30139285
+-0.78779884
+0.69248788
+0.56960889
+0.40292693
+-0.97855532
+0.37457300
+0.46067336
+0.95007635
+0.78643276
+-0.73789701
+0.38867469
+0.99170028
+0.68541513
+0.71643261
+0.55875277
+-0.27259559
+0.47096710
+-0.19261948
+0.37972025
+0.78029382
+0.07328045
+-0.62726797
+-0.93684098
+0.29364262
+-0.09218606
+-0.44150625
+-0.66934589
+-0.08626361
+0.19982334
+-0.45881188
+-0.06310225
+-0.98886058
+0.73382926
+0.84014571
+0.92611980
+0.17859864
+-0.30814773
+0.71171784
+0.55777824
+0.23047423
+-0.64785782
+0.70463967
+0.58329475
+0.40843117
+-0.96002051
+-0.40135980
+0.27774453
+0.20645714
+-0.48567420
+-0.14650393
+-0.49435514
+0.11137974
+0.65943456
+-0.82091938
+-0.48503751
+-0.68213776
+0.08031356
+0.92385483
+0.96763980
+0.81516552
+-0.60693312
+0.66296601
+0.61735523
+0.98442674
+0.09766197
+-0.83534068
+0.68215418
+-0.05305493
+-0.07922745
+-0.13120681
+-0.46781629
+0.17379475
+-0.35232073
+-0.16017717
+0.29929829
+-0.62994605
+-0.20863634
+-0.22541726
+-0.11642367
+-0.08188593
+0.98470211
+0.64581442
+0.90335429
+0.42459226
+-0.91920939
+-0.34949952
+-0.42505163
+-0.04936647
+-0.81442356
+-0.26506686
+-0.23068154
+-0.33444721
+-0.09276748
+-0.46215868
+-0.16024739
+-0.40001345
+-0.25450003
+0.37788749
+0.80772710
+-0.61973220
+-0.73250151
+-0.44260538
+-0.65416664
+-0.62223384
+-0.91732980
+-0.02757430
+0.31194639
+0.26472020
+-0.12701482
+0.42093158
+0.54088748
+-0.41764492
+-0.73315543
+-0.88120291
+0.25776052
+0.58987987
+0.05601382
+-0.50648755
+0.72660506
+-0.79902364
+0.30947518
+-0.63417873
+-0.38780695
+-0.77548788
+0.82264113
+-0.13620335
+-0.12799978
+0.75675333
+0.03103900
+-0.23066646
+-0.21285838
+0.68245101
+-0.00385267
+-0.78036177
+-0.44572651
+0.12794888
+-0.37145352
+0.22008777
+-0.02116984
+0.52747893
+0.47462773
+0.31185758
+-0.32132822
+0.07707322
+0.77609456
+0.41162765
+0.69974601
+0.47283947
+-0.70883882
+-0.48461545
+0.28395939
+0.39281082
+-0.76983647
+-0.69148630
+-0.12457079
+-0.04971981
+0.31313252
+-0.06807607
+0.92957032
+0.16325986
+0.85249913
+0.28947949
+-0.55110875
+0.16370010
+-0.87730496
+0.42682767
+-0.60500807
+-0.66873929
+-0.91876731
+0.84662890
+0.08234227
+0.03020990
+-0.09731305
+-0.06927001
+0.65585530
+-0.35111964
+-0.46414244
+0.21238494
+0.92144394
+-0.46058631
+0.33779263
+0.46681571
+-0.73535511
+-0.32223433
+-0.72807524
+-0.41328382
+-0.85971303
+-0.78022236
+-0.95313065
+0.32113779
+0.64223313
+0.30136502
+0.61383152
+-0.77224815
+-0.87452757
+0.65314591
+0.53040397
+-0.49495828
+-0.17317086
+-0.20790857
+-0.66282216
+0.94894660
+0.95176029
+-0.59639451
+-0.78387089
+0.60596180
+0.28317642
+-0.08910125
+0.39947259
+-0.95945762
+0.18075418
+0.30088139
+-0.15322173
+0.44845665
+-0.20510817
+0.25813448
+-0.90704057
+-0.56519252
+0.38907850
+0.96867180
+-0.27138644
+0.93652236
+0.61806262
+0.89585865
+0.02429760
+-0.34877980
+-0.59023020
+0.14980423
+0.51246917
+-0.30297822
+-0.99271197
+-0.00347465
+-0.18553221
+-0.11742824
+-0.66009146
+0.49531353
+-0.19886929
+0.79753613
+-0.72454715
+-0.37292045
+0.15766144
+-0.63780072
+-0.86728013
+-0.83882032
+-0.45366311
+0.78786230
+-0.34852713
+-0.25141430
+0.97907197
+0.52453685
+0.69089592
+0.13737357
+0.91240740
+0.45088017
+0.90033078
+0.42423356
+-0.35100895
+-0.05663455
+-0.37521023
+0.89799237
+-0.90036588
+-0.31388509
+-0.15510583
+-0.99121051
+0.14162707
+-0.69947433
+0.63494503
+0.35874200
+0.07284915
+0.89286661
+0.95041454
+-0.74495658
+0.26963532
+0.02169085
+0.91533947
+0.95917296
+-0.67610079
+-0.77200010
+0.25358057
+-0.81392165
+0.76080537
+-0.04049808
+-0.35758710
+-0.32229340
+0.42655849
+0.59003353
+-0.19086468
+-0.60903853
+0.52556753
+0.08720791
+0.19456589
+-0.53133330
+-0.16836768
+-0.27451694
+0.67577267
+-0.30600560
+-0.68944180
+0.77970970
+-0.88108539
+0.89045334
+0.84087586
+-0.01694280
+0.32194602
+-0.71122241
+-0.78588456
+-0.78423896
+0.42391324
+0.56856537
+-0.30953217
+-0.75904755
+0.31072366
+0.86044204
+0.99897289
+0.67753661
+0.45653832
+-0.02265334
+-0.25384128
+-0.15411049
+-0.99305766
+0.96891654
+0.50934279
+0.80365312
+-0.46873105
+0.81018639
+0.31389904
+0.76465344
+-0.86431697
+-0.69902682
+-0.12174332
+-0.94960511
+-0.67068020
+0.27929056
+0.18337154
+-0.02672911
+-0.31167966
+-0.43891925
+0.33774662
+-0.79628755
+-0.79097542
+0.62374127
+0.08220029
+-0.13647395
+0.31279016
+-0.87274936
+-0.09148359
+0.60108292
+-0.73235998
+-0.72913769
+-0.31538922
+0.26354992
+0.01953900
+0.54022884
+-0.07994962
+-0.59336790
+-0.00218612
+0.07629204
+0.25373662
+-0.45241952
+0.15356553
+-0.15268070
+-0.67896125
+-0.93095748
+-0.73515257
+0.85205245
+-0.25497657
+-0.59594521
+0.43874276
+0.63612008
+0.94209182
+-0.71268812
+-0.85219303
+0.42891159
+0.72504924
+-0.13131546
+0.95793403
+-0.07469512
+0.68744428
+0.23132155
+-0.06776870
+-0.80432885
+0.57665872
+0.56933882
+0.05259851
+-0.75055714
+-0.65333311
+0.92915146
+-0.63365607
+0.18690095
+0.51238866
+-0.94628811
+-0.78540420
+-0.10779489
+0.77376101
+0.21801370
+-0.85399072
+-0.71098643
+-0.62900768
+0.97016948
+0.25593068
+0.62679669
+-0.17408056
+-0.83830308
+0.42034932
+-0.84429862
+0.73175646
+0.75408407
+-0.08229258
+0.57214706
+0.42409148
+-0.60237869
+-0.94270091
+1.01664000
+-0.55057398
+0.22101907
+0.50249213
+0.31311841
+0.05604310
+-0.22470846
+0.61317622
+-0.01997637
+-0.86919502
+-0.25303563
+0.18018683
+0.11417577
+-0.31021059
+-0.10415946
+-0.64957470
+0.65162267
+-0.72265401
+0.46568603
+-0.91584314
+-0.53533410
+-0.39861367
+-0.38795709
+-0.59172280
+-0.01690283
+-0.17002502
+0.44693610
+-0.15296901
+0.06209870
+-0.88148611
+-0.02910206
+-0.34790109
+-0.67145965
+-0.03420616
+-0.39039354
+-0.01742573
+0.58443016
+-0.45698762
+-0.28067857
+-0.17671843
+0.45731744
+0.36965822
+0.38555380
+-0.06845831
+0.62761752
+0.58054087
+0.63708632
+-0.95742044
+0.59754569
+0.23562599
+-0.63413059
+0.20302406
+-0.92154080
+0.57813261
+0.38470443
+0.31472415
+0.69144344
+0.70961402
+-0.97344739
+-0.54920741
+-0.43031345
+0.99503364
+0.28909403
+-0.90653541
+-0.57714818
+0.93129283
+-0.60826572
+-0.62328829
+0.18374863
+0.78279216
+-0.26407338
+0.72761219
+0.78182946
+0.68224248
+-0.69648608
+0.83666325
+-0.05898994
+-0.97826381
+0.19220042
+-0.88481463
+-0.76344942
+-0.43267435
+-0.40837584
+0.02566165
+0.02452745
+0.64271022
+0.96103145
+-0.01634888
+-0.84594030
+-0.91904978
+-0.14344044
+0.51834560
+-0.03501448
+-0.75533400
+0.83870795
+-0.71776181
+0.70392948
+0.29870500
+0.15975680
+0.50187598
+0.86296572
+0.92096539
+-0.75686442
+-0.60357128
+-0.39769157
+-0.16764746
+0.01055294
+-0.19086815
+0.54742501
+-0.40466023
+0.91000411
+-0.49979293
+-0.67344112
+-0.65081768
+-0.07564107
+-0.70152777
+-0.65459956
+0.52211551
+-0.54839877
+0.24905697
+-0.56591067
+0.86903060
+0.44844699
+-0.77289464
+0.22914421
+-0.73510080
+0.10661635
+0.35764043
+0.71381683
+0.52040631
+0.24204870
+-0.70970390
+0.61745476
+0.38333687
+0.78467301
+-0.87516727
+0.19389520
+0.34245615
+-0.89588708
+-0.03810363
+-0.74551099
+0.50050987
+0.30705873
+0.70384569
+0.41752952
+-0.65451808
+-0.68198786
+0.14733210
+0.83496601
+0.54631038
+0.45907902
+0.92298829
+0.52479816
+0.36584597
+-0.25247566
+0.18187350
+0.68275866
+-0.17122760
+0.72381107
+0.73225878
+-0.95670394
+-0.38298425
+-0.36293715
+0.95825867
+0.89793259
+-0.17610090
+0.00039168
+-0.11835560
+0.83003674
+0.51497661
+0.08913453
+-0.90960396
+-0.52873911
+-0.78414056
+-0.07565076
+0.28678786
+0.58995627
+-0.24553497
+-0.09740146
+-0.36599315
+0.16917421
+0.79045875
+-0.99270269
+0.87205337
+0.88232048
+-0.84935424
+-0.10311559
+0.21589325
+-0.05664816
+0.54996507
+-0.95572853
+-0.39217061
+0.78189111
+0.25247625
+0.44486582
+-0.89032283
+0.02524438
+-0.53557832
+-0.96316126
+-0.45295166
+-0.79546742
+-0.33572547
+-0.01434155
+-0.78376496
+-0.17291095
+-0.27789367
+-0.03466680
+-0.80706073
+-0.50442912
+-0.94317765
+-0.91252389
+0.77212445
+0.33082544
+0.03390933
+0.13098659
+-0.82241747
+-0.15108350
+-0.88020281
+0.25100788
+-0.11440787
+0.22473530
+-0.90356563
+0.01554769
+-0.56714795
+0.23159218
+0.95639629
+0.08398448
+-0.07837193
+0.16484939
+-0.20077224
+0.24888583
+-0.44866657
+-0.53432399
+0.61469586
+-0.03292717
+0.32915663
+-0.81399144
+-0.73448516
+0.86371742
+0.89764647
+-0.74289747
+-0.48839691
+-0.43331008
+-0.05331695
+0.33289095
+-0.30078498
+0.88338472
+0.61978830
+-0.55473492
+-0.82058331
+0.47746909
+0.86448385
+-0.75093925
+-0.43967813
+0.97996115
+-0.47353324
+0.46715207
+0.08441717
+-0.11480124
+-0.10390695
+-0.46578693
+0.25765907
+-0.99873628
+-0.40980704
+0.46046514
+0.47347154
+0.21842206
+-0.81288817
+0.12838370
+-0.38749975
+0.92216206
+-0.41750308
+0.81565046
+0.54514344
+0.37872784
+-0.07250412
+0.98957176
+-0.14056602
+-0.12215290
+-0.34991220
+-0.08650734
+-0.68215259
+-0.42007757
+-0.96990414
+0.44867474
+-0.81283291
+-0.02966702
+0.04753285
+0.46751447
+-0.26456927
+0.79428893
+-0.14435705
+-0.84229923
+0.45079335
+0.02351504
+0.50273931
+0.84450651
+-0.42535256
+0.92704270
+0.39117071
+0.21245232
+-0.22264350
+-0.92568283
+-0.37326858
+-0.58305268
+0.05078665
+-0.55092175
+0.09839112
+0.56343243
+0.03127504
+-0.20353273
+0.93018601
+0.04326877
+0.09969465
+-0.91475200
+-0.60263195
+-0.12033157
+-0.62830346
+0.03493057
+-0.66368534
+0.41200281
+0.56108896
+-0.33051972
+0.99577288
+-0.07495888
+-0.37189624
+-0.74058610
+0.14778831
+-0.17923863
+0.57330333
+-0.96729964
+-0.76351688
+-0.67769644
+-0.06848217
+0.30639445
+0.56145591
+0.58039287
+0.85629015
+-0.95340362
+-0.64310753
+0.45815868
+-0.46738872
+0.45798549
+0.44131835
+-0.82433466
+-0.00798421
+-0.61443543
+0.35325501
+0.25995826
+-0.72951146
+0.16218130
+0.76133425
+-0.61463759
+-0.29704399
+-0.24412596
+-0.05676224
+0.74766507
+0.20041222
+-0.11095592
+0.67356711
+-0.57189975
+0.71369821
+0.70447038
+0.85511356
+-0.39533429
+0.91869185
+-0.77341077
+0.32563974
+0.19145264
+0.52837306
+-0.99177192
+-0.27647256
+-0.70168692
+-0.90871628
+-0.21119347
+-0.82583861
+0.25090847
+-0.37524727
+-0.99015012
+-0.58108490
+-0.75703247
+0.16792363
+0.82910599
+0.91396922
+0.13200215
+-0.64174756
+-0.68637100
+-0.65359576
+0.23856136
+-0.34420549
+-0.61045506
+0.49470457
+0.95846252
+-0.27726928
+-0.03782135
+-0.38093674
+0.87278993
+-0.71313271
+0.74416333
+0.10428556
+0.58784013
+0.21612173
+-0.92257595
+0.79515625
+-0.46980753
+-0.10567406
+-0.28606315
+-0.04290405
+-0.75331062
+0.56518328
+-0.80978510
+0.93667690
+-0.19382262
+-0.46995191
+-0.58824012
+0.62826532
+0.21065158
+-0.25760219
+-0.14239512
+0.83952641
+-0.93876812
+-0.88938917
+-0.66398068
+-0.22866291
+-0.85891592
+-0.04313361
+-0.71747710
+-0.32042498
+-0.61625782
+-0.43747614
+-0.56706472
+0.81616591
+0.67316997
+0.59797166
+-0.93120846
+0.90342204
+0.56903973
+0.10834201
+0.37430488
+-0.13572485
+0.06056284
+-0.39035509
+-0.70729442
+-0.04535196
+-0.89472624
+-0.67123304
+-0.04759451
+0.14388705
+0.64316673
+-0.91480476
+0.19586855
+0.35885692
+0.35211589
+-0.21405359
+-0.53087655
+-0.71749753
+-0.15766127
+0.01021915
+0.38836490
+-0.80491678
+-0.49692973
+-0.60106902
+0.19555176
+-0.04901844
+-0.91397345
+0.59547646
+-1.03196902
+-0.68977580
+-0.51232991
+-0.22624130
+-0.83095555
+0.88458043
+-0.64018798
+0.93828006
+0.32141683
+-0.95403106
+0.71571373
+0.68611353
+0.18094896
+0.62686928
+0.90605431
+0.87819712
+0.30988396
+-0.01352315
+0.07066977
+-0.23496345
+0.71500168
+-0.10407123
+-0.50961132
+-0.16228772
+0.82674614
+-0.81504826
+-0.00512397
+0.24187888
+-0.23330816
+0.93388828
+0.76034431
+-0.74214506
+0.74880679
+-0.58343436
+0.61016406
+0.16417090
+0.01115203
+-0.28568509
+-0.78174258
+0.98401181
+0.37836434
+-0.09281928
+0.70251685
+0.02177779
+-0.13215689
+-0.70202604
+-0.80098439
+-0.68162499
+0.78477388
+0.27051648
+0.99547752
+0.02570740
+0.87855773
+0.30806327
+0.01446366
+0.02708291
+0.42288279
+0.88197432
+-0.92463238
+-0.28789063
+0.47769473
+-0.07456654
+0.04667140
+0.47574673
+-0.90007464
+-0.33994501
+-0.48531776
+-0.49891573
+0.27814567
+-0.10459363
+-0.23792604
+-0.57174513
+-0.23794661
+-0.82387683
+-0.23488808
+0.62933496
+0.54776041
+-0.54857962
+-0.11033879
+-0.90113446
+-0.39763539
+0.40247803
+0.10416956
+-0.90043143
+0.05379633
+-0.80501713
+-0.60470652
+0.07365137
+-0.04346209
+0.48995999
+0.92051632
+0.76303040
+-0.31760242
+-0.96291813
+0.06123715
+0.57111772
+-0.94637130
+0.75697166
+-0.40217256
+-0.05618813
+0.17716099
+0.74343037
+-0.57995418
+0.33193619
+-0.79610938
+-0.63656346
+0.63043961
+-0.78603561
+0.35013068
+0.07574919
+0.03553308
+0.84681498
+-0.12290156
+0.94320888
+0.96115273
+-0.62258664
+-0.87651975
+-0.48336309
+-0.60884484
+0.28485731
+0.14191116
+0.87689530
+-0.86160971
+0.23457618
+0.57426601
+-0.91464930
+-0.41235855
+0.63828784
+-0.71720906
+-0.86065107
+0.24185658
+-0.63143969
+-0.36517435
+0.90944750
+0.06092565
+0.19274839
+0.48166967
+-0.08429223
+-0.71786138
+-0.66651461
+0.20202065
+-0.67309453
+0.92395437
+0.97952422
+0.01949808
+-0.24770032
+0.91119719
+-0.81539446
+0.36827383
+0.87721917
+-0.03496729
+0.34067671
+0.01179397
+0.72099316
+-0.40462524
+0.60500240
+-0.06958354
+0.43246877
+-0.49629915
+-0.50655630
+-0.25134027
+-0.68493256
+0.56121337
+0.22578514
+0.58038962
+-0.80621836
+-0.13566422
+-0.97247015
+-0.15343964
+0.71369708
+-0.80651262
+0.65637267
+-0.55635947
+-0.40462071
+0.28184640
+0.29116511
+-0.30447918
+0.34384453
+-0.65006593
+0.93300831
+0.85748458
+-0.51470551
+-0.50283843
+0.78627396
+0.89754057
+-0.38819927
+0.49972737
+0.54547393
+-0.93530869
+0.60773289
+-0.80231114
+0.72444105
+0.58601308
+0.28150082
+0.66073453
+0.04986238
+-0.26573098
+0.95674884
+0.07127213
+0.96009612
+0.23195517
+-0.05221915
+-0.54551789
+-0.48802245
+0.72461081
+-0.88850287
+-0.38900656
+0.56528258
+-0.00761050
+0.03447604
+0.31584239
+-0.12277818
+-0.76514809
+0.45353782
+-0.53740659
+0.06695676
+0.37674737
+-0.80339792
+0.15468073
+0.64236939
+0.92800856
+-0.98225540
+-0.40663457
+0.23354733
+-0.79766195
+-0.28571928
+0.74217546
+-0.82582232
+-0.48213422
+-0.07911676
+0.31400621
+0.12211418
+0.83866775
+0.13679624
+0.23434842
+-0.27593946
+0.60377610
+0.34587491
+-0.31665111
+-0.23737836
+-0.23474121
+-0.36514592
+-0.98768312
+-0.45232636
+-0.68266898
+-0.21082240
+0.82958055
+0.41063130
+0.27481329
+-0.28655100
+0.39632595
+0.42851532
+-0.01259750
+-0.98179239
+-0.89215751
+-0.68629232
+-0.78429040
+-0.12914652
+0.37661457
+-0.77253212
+-0.12389070
+-0.85106766
+0.91449058
+0.77138615
+0.44788218
+-0.06905788
+0.08409524
+-0.52284056
+0.94235826
+-0.05503893
+-0.53426576
+0.76574755
+-0.32039618
+-0.06129259
+-0.00894862
+-0.50419423
+0.52190959
+0.49890721
+0.40270674
+0.53685081
+0.83276927
+0.66199470
+-0.00540805
+0.52438319
+0.73874474
+0.97974288
+-0.95675415
+-0.08625531
+0.11499584
+-0.19941574
+0.99606311
+-0.16250247
+-0.64752641
+0.85907531
+-0.29370284
+0.12754953
+-0.57712233
+-0.13982391
+0.90184069
+-0.48339713
+-0.39380771
+0.06280565
+-0.26776516
+0.87976933
+0.71925163
+0.70414722
+0.30981135
+0.85189712
+-0.58683115
+0.91214776
+-0.55412543
+-0.57953086
+-0.28348947
+-0.10044807
+-0.99633920
+0.81386542
+-0.35016418
+-0.39503813
+0.80748808
+-0.91306679
+0.33530378
+0.49544907
+0.35983109
+-0.36092520
+0.92094648
+0.91615403
+0.45346367
+-0.36999685
+-0.91197799
+0.24012971
+0.91353607
+-0.55482179
+-0.76375937
+-0.58515036
+-0.84381494
+0.44566429
+-0.10932153
+-0.09103626
+0.88233614
+0.88609767
+-0.87625565
+-0.83880416
+-0.69241822
+0.54380405
+0.61461151
+-0.47476304
+0.45804942
+0.81205583
+-0.08485931
+0.04787183
+-0.50837940
+0.44461012
+0.84032071
+-0.14078009
+-0.10340321
+-0.81258133
+-0.31865430
+-0.50908783
+0.38555312
+-0.68352860
+-0.10821480
+0.03914952
+0.17312753
+-0.13517189
+-0.25726306
+0.15011632
+0.10296798
+-0.31759214
+-0.35404611
+0.04462302
+0.22104716
+0.07763100
+0.60477483
+-0.65476885
+-0.86026634
+-0.36049259
+0.53045571
+-0.92194518
+-0.58149928
+0.50117493
+-0.90428682
+-0.59221482
+-0.59663853
+0.97896194
+-0.35271740
+-0.14344513
+-0.14207774
+0.26235759
+-0.01255631
+-0.55855370
+-0.00698149
+0.57061052
+0.28368521
+-0.14289773
+0.79388535
+0.53281689
+0.65013516
+0.66570044
+-0.24619824
+0.08378088
+-0.04878247
+-0.02745390
+-0.92676683
+-0.52724093
+-0.20732975
+-0.84895176
+0.92653966
+0.16232646
+0.08085632
+-0.47786123
+0.93683672
+0.82230663
+-0.99835258
+-0.73837948
+-0.49182111
+-0.88932105
+0.05943894
+-0.18639666
+-0.19747704
+0.64445722
+0.82610703
+-0.84127745
+0.83583093
+-0.52990347
+0.04688179
+-0.12463969
+-0.43399495
+0.23575771
+0.79264045
+0.56991005
+-0.84323303
+0.54274106
+0.89800429
+0.40578043
+0.21929348
+0.69249213
+0.73934460
+0.02170515
+0.63037395
+-0.72328201
+0.07455122
+0.83069062
+-0.18550795
+0.25509584
+0.30512893
+-0.87106977
+-0.48232234
+0.25816596
+-0.96349397
+-0.88655864
+0.13127327
+-0.46321154
+-0.01279247
+-0.20700592
+0.48786962
+-0.68720198
+-0.18442738
+0.12378275
+-0.50314292
+0.93484628
+0.14548779
+0.80093646
+-0.74316701
+-0.53956982
+0.30713761
+0.21348894
+-0.39322442
+0.73358786
+0.17272437
+0.00132036
+-0.93109393
+0.45291865
+0.91265106
+0.14664042
+0.59776223
+0.41940749
+-0.37309974
+0.75177634
+-0.20760322
+0.23317456
+0.78624296
+0.67905200
+-0.37798566
+0.61182690
+-0.28750294
+-0.21656615
+-0.11842841
+0.30727673
+0.46247125
+0.93490291
+-0.43849343
+0.59437323
+0.93318367
+0.43689907
+0.45735979
+-0.09457564
+0.04463649
+0.40190744
+0.76839530
+-0.80429938
+-0.08801615
+0.65337467
+0.73942184
+0.97528601
+-0.55646869
+-0.22408314
+0.30900400
+-0.17048368
+-0.37735632
+-0.47084184
+-0.00294017
+0.77265124
+-0.58671591
+-0.32950949
+-0.28584376
+0.41698142
+-0.70655613
+-0.32177811
+0.37435239
+-0.49597025
+-0.86285908
+-0.56134108
+0.56472627
+-0.11659630
+0.71693687
+-0.75035358
+-0.74572590
+0.89243757
+-0.07540267
+-0.86680998
+-0.57156607
+-0.09419066
+1.01033021
+0.47735739
+-0.85674943
+-0.60454029
+-0.77887409
+-0.85715984
+0.76404730
+0.20695504
+0.16530188
+-0.84640837
+0.67050792
+-0.62672494
+-0.26715724
+-0.52718942
+0.90535214
+-0.57762358
+0.04538436
+0.19517153
+-0.00822993
+-0.44541718
+-0.11818050
+0.79771897
+-0.82281992
+0.72291431
+-0.92973696
+-0.37696392
+-0.91644609
+-0.86130615
+-0.09077803
+-0.01452182
+-0.30740862
+-0.75441347
+-0.46136254
+0.63428926
+-0.86544723
+0.75211285
+0.20188035
+0.13105465
+0.06064270
+0.71166310
+0.91163533
+0.53656943
+0.61322844
+0.12309914
+0.36503129
+-0.45605511
+0.11729982
+-0.73118079
+-0.79780856
+0.05668918
+0.26191437
+0.11209079
+0.37524360
+-0.84652177
+-0.45243802
+0.06996423
+0.27227457
+0.88448334
+-0.30061808
+-0.86346180
+0.12596356
+0.49347024
+0.44580094
+-0.50586552
+-0.31711476
+-0.93429341
+0.67053102
+0.03638699
+0.50114824
+-0.93280599
+-0.31067100
+0.36442825
+0.90111936
+-0.87372470
+-0.32645776
+0.92725999
+-0.58570062
+-0.85213318
+-1.00292770
+-0.14021662
+-0.86465204
+0.28120024
+-0.44575691
+-0.77471434
+0.18857202
+-0.03796670
+-0.00679180
+0.38563186
+-0.20597112
+-0.91550770
+0.41510598
+-0.10667658
+0.81469565
+-0.12783528
+0.16065055
+-0.30361236
+-0.05906234
+-0.72053207
+0.00316394
+-0.64698729
+-0.30674617
+0.84550619
+-0.28584791
+-0.28327171
+-0.26502875
+-0.88836031
+0.82554986
+0.76555666
+0.25668447
+1.00508339
+-0.03925356
+-0.86410790
+0.26754984
+-0.11243974
+0.52265310
+-0.60149471
+1.02248570
+-0.69853817
+-0.44213989
+-0.39165452
+0.37378689
+-0.64483242
+0.20265812
+0.69064849
+-0.36645720
+-0.89632488
+-0.76458652
+0.76837409
+0.52485132
+0.22786898
+-0.88218607
+0.32381737
+0.62531825
+-0.85185610
+-0.86694356
+-0.12962756
+-0.00032219
+-0.61862771
+-0.82353323
+-0.17894081
+-0.35753121
+-0.83658771
+-0.41920774
+0.96255071
+0.12523487
+-0.61057555
+-0.94633384
+-0.84838808
+0.53113511
+0.13191914
+0.52065447
+-0.92290166
+-0.04054460
+0.24110158
+0.02100117
+0.93774358
+0.49662149
+-0.83598298
+-0.12648645
+-0.01477122
+0.09284545
+-0.87411504
+0.13687958
+-0.90172901
+-0.91802945
+-0.19037594
+-0.99023451
+0.09898564
+0.86584424
+0.72638055
+0.09959135
+-0.82132072
+-0.66158739
+-0.50851242
+-0.43859131
+-0.56466412
+-0.37061638
+-0.06251942
+-0.48057308
+0.19439069
+0.73731603
+-0.20052564
+0.83283794
+-0.49540407
+0.18020339
+0.93110700
+0.63263203
+-0.07222077
+0.66367254
+-0.13990130
+0.84220917
+-0.83512763
+0.58694261
+-0.21091470
+-0.48603562
+-0.91121010
+0.50601996
+-0.11017797
+0.30097080
+-0.48793131
+-0.80628689
+-0.74607816
+-0.05664387
+-0.96506125
+-0.18122528
+0.62789706
+0.99105631
+0.55016811
+-0.97533398
+-0.26237800
+-0.56418702
+0.81096929
+-0.49069963
+-0.25553895
+0.28381910
+-0.24806084
+0.56266174
+0.20327859
+0.02293561
+-0.50413508
+0.20802630
+0.68662422
+-0.69327509
+0.87613875
+-0.66470501
+-1.00986177
+0.66483497
+-0.82665569
+-0.28019181
+0.41355721
+0.87464437
+-0.05166852
+-0.20282988
+-0.96680942
+0.24341976
+-0.52082696
+0.97770313
+0.41986383
+-0.47704925
+-0.29176796
+-0.07297184
+-0.19976631
+0.30931992
+0.69939851
+-0.82579536
+0.41122942
+-0.03128166
+0.77905471
+0.32351947
+0.99489130
+-0.08569327
+-0.08145214
+0.47972727
+0.43010651
+0.09182538
+-1.00733505
+-0.83429712
+-0.16145109
+0.74445938
+0.86477703
+0.12677225
+-0.93823442
+-0.18564446
+0.18104780
+-0.18534044
+0.69632106
+-0.24514274
+0.56735917
+0.21317528
+1.01204723
+0.04768159
+0.30589039
+0.36683779
+0.16937502
+0.85687827
+-0.96274422
+-0.12432930
+0.42003373
+-0.40908358
+-0.33047559
+-0.47831705
+-0.22867846
+-0.17415078
+0.61162562
+0.66160080
+0.89954375
+-0.17104396
+0.83399360
+-0.09427707
+0.27336124
+-0.15928673
+0.00001278
+0.87989348
+-0.73914036
+0.98200245
+0.64882654
+0.75197977
+-0.18241043
+-0.70002212
+0.55913118
+0.80844922
+0.66733388
+0.87230932
+0.94218957
+-0.43159133
+0.30048754
+0.27386343
+0.31101196
+-0.13233921
+-0.65160050
+0.55676529
+0.16943641
+-0.72438076
+-0.82709593
+0.27353625
+-0.71198098
+-0.45069706
+-1.02085509
+0.52645467
+0.67187406
+-0.88407019
+-0.31080166
+0.64686165
+0.53219477
+0.32209117
+-1.00972652
+0.12593219
+-0.43318355
+0.49959662
+0.66475650
+-0.67573555
+-0.62546081
+0.72868709
+-0.03825087
+-0.75368536
+-0.58885050
+0.46462220
+0.66875654
+0.86497974
+0.93033377
+-0.04562433
+-0.37432178
+-0.98979229
+0.67045542
+0.58032127
+0.92600206
+-0.40468956
+0.27058767
+-0.52780495
+0.90891344
+-0.22059491
+0.80153099
+-0.31082073
+0.50189572
+-0.87224417
+0.74572117
+0.70954769
+-0.47958166
+-0.82388340
+-0.20356841
+0.02103761
+0.57534774
+0.56239812
+0.51955973
+0.31066653
+-0.19719102
+0.55210986
+0.15934651
+-0.82364331
+-0.35765349
+0.68047278
+0.51190085
+0.66163159
+-0.06454303
+-0.39267773
+-0.57297661
+-0.73879008
+0.15464604
+0.55275520
+-0.38818633
+0.18110838
+-0.11111279
+0.55886156
+0.40613824
+-0.47534603
+0.12194508
+-0.78414666
+-0.75908761
+0.88731399
+-0.71767715
+-0.05128922
+-0.05565897
+-0.11240344
+-0.93149724
+-0.35960631
+-0.89861471
+0.02514834
+0.75989028
+-0.73221020
+-0.30968232
+0.91287769
+0.75299412
+-0.91792339
+-0.48140760
+0.41501651
+-0.76522324
+0.02933896
+0.49338950
+-0.64277021
+0.21795634
+0.55276862
+-0.10804915
+0.21835366
+0.94526550
+0.18110617
+-0.12029356
+-0.57601026
+0.49590690
+-0.24831151
+-0.51490295
+0.34772153
+0.86596772
+0.37895396
+0.26077661
+-0.87654165
+0.35616314
+0.81066117
+-0.62616649
+0.01881512
+0.97077792
+-0.25546166
+-0.61204684
+0.98786102
+-0.27569287
+-0.25475936
+0.45239116
+0.24646801
+0.45140459
+-0.01862396
+0.98292746
+0.98881097
+0.43133272
+-0.57530551
+0.48382006
+0.85420795
+-0.78697635
+-0.78561166
+0.52612611
+0.10372974
+-0.29637561
+0.74412219
+-0.72703045
+0.40174891
+0.60945441
+-0.89956899
+-0.94868395
+1.00153705
+-0.97730080
+-0.47158343
+-0.61231246
+0.44954113
+-0.95536593
+-0.26741046
+0.25150434
+0.44025756
+0.37148572
+0.64543859
+0.40908009
+-0.70985425
+0.91116283
+-0.18485975
+-0.53979125
+0.64758644
+-0.12988871
+0.00123250
+-0.83402717
+-0.74108430
+0.69746205
+-0.76928758
+-0.57893164
+-0.51407510
+-0.43723104
+-0.25275694
+-0.55621132
+0.42563234
+0.39925562
+0.70689721
+0.21575924
+-0.00729027
+-0.14452927
+0.90444179
+0.32587710
+0.53050202
+-0.94337799
+0.79834984
+-0.61730306
+-0.70272033
+0.52415070
+-0.36870342
+-0.62146150
+-0.80189295
+0.27577014
+-0.19532059
+0.52170142
+-0.46593101
+-0.75065997
+0.34267943
+0.17777157
+-0.73118007
+-0.98775945
+0.63118085
+0.89483953
+0.10827016
+0.68232244
+-0.13206795
+-0.55898977
+0.05461161
+-0.88201360
+0.73881295
+-0.74084026
+0.66635506
+0.98444800
+-0.04028221
+-0.25876197
+0.87253760
+-0.92446631
+0.33796815
+-0.69664935
+-0.60344144
+0.71729985
+0.84758299
+-0.98700469
+-0.58575479
+-0.92543142
+-0.13916940
+0.55485861
+-0.19433290
+0.25977778
+-0.92501334
+0.14790201
+0.67139976
+0.32466075
+0.80844428
+-0.21892267
+0.31885027
+-0.73220743
+-0.51797961
+0.97634825
+0.97351147
+0.02722134
+0.59651227
+-0.55635200
+-1.01315669
+0.45583491
+0.15937790
+-0.31960094
+0.41304947
+0.23587862
+-0.80240348
+-0.13308359
+-0.23520075
+0.70938017
+-0.69241878
+-0.85270194
+0.45434973
+-0.73019460
+-0.43479579
+-0.57967689
+-0.66989648
+-0.12040687
+0.27925158
+-0.03855227
+-1.00618299
+0.25696012
+0.92685637
+0.45716935
+0.95954705
+0.60024491
+0.65522719
+0.45836388
+-0.77436262
+0.04921241
+-0.92606244
+0.84222885
+0.81579861
+0.71240848
+0.70514119
+-0.31372740
+0.19895697
+0.47267722
+0.83232212
+0.28486628
+-0.76088387
+-0.76722257
+-0.72697049
+-0.93172410
+-0.54276636
+0.17603639
+-0.24539655
+0.32574999
+0.71962905
+0.73247714
+0.61292594
+-0.42697457
+-0.25109354
+0.32859236
+0.00943685
+0.46045843
+-0.36365741
+0.74108922
+0.51548934
+-0.89451832
+0.31620662
+-0.00323496
+-0.69043603
+0.03631049
+0.13883687
+-0.93054153
+-0.03603583
+-0.16160391
+0.26372170
+0.55352090
+0.16100128
+0.83318298
+-0.68722022
+-0.16889784
+0.94148309
+-0.24231492
+0.21309728
+0.48955570
+-0.96005885
+0.26904929
+0.34182656
+-0.93916528
+0.13186705
+-0.44747692
+-0.21090376
+0.03864372
+0.95878100
+0.68874359
+-0.11235905
+0.81017601
+0.53835034
+-0.40381092
+0.27325046
+0.00143063
+-0.47155446
+-0.46378523
+0.02318966
+-0.68552643
+0.82173812
+0.12047374
+0.36267555
+-0.64904359
+0.13946664
+0.69420850
+-0.27225053
+-0.82987960
+0.80928111
+-0.85279255
+-0.53008083
+-0.74069950
+-0.16958052
+0.65754640
+-0.11768466
+-0.22830772
+0.15458596
+-0.90300369
+-0.47209698
+-0.22805130
+0.31729174
+0.14879465
+-0.82247300
+-0.98735982
+0.41699350
+-0.73985270
+0.65161324
+-0.90270803
+-0.84225295
+0.64336562
+0.94595850
+-0.07711858
+0.01328778
+-0.01968455
+0.36144888
+-0.73263791
+0.43683314
+0.36380661
+0.67702317
+-0.51358706
+-0.87038204
+-0.06304073
+-0.72196192
+-0.52269235
+-0.80664074
+0.22155285
+0.88252842
+0.41550314
+-0.83672176
+-0.80292249
+-0.59563431
+0.60761368
+0.19581246
+0.14408672
+0.49832296
+0.96971774
+-0.72141424
+0.18636572
+0.37499225
+-0.17516369
+0.55429089
+-0.03508270
+0.70055115
+0.14876008
+-0.99199397
+-0.97502948
+-0.49661028
+0.60525477
+-0.24693710
+-0.05404001
+-0.80164658
+0.60408962
+-0.09017515
+0.05273366
+0.46975398
+0.69296610
+0.66391110
+-0.53682864
+0.00932145
+0.88918114
+-0.90436692
+0.47824204
+-0.66829813
+-0.82123663
+-0.29501635
+0.70550239
+0.72047174
+-0.02423185
+0.91289592
+-0.10577202
+-0.40005189
+-0.08655113
+-0.94027970
+-0.69043094
+-0.53491044
+-0.31007504
+-0.20618325
+0.00667012
+-0.07487589
+-0.11575449
+-0.30475610
+-0.93098995
+-0.00308579
+0.49295890
+-0.82357420
+0.38205016
+0.31227815
+0.98128426
+-0.28534740
+-0.97696982
+0.59363878
+0.68666017
+-0.98858127
+-0.59611845
+0.58053708
+-0.71956757
+0.53393209
+0.60585630
+-0.09271008
+-0.02925009
+0.47215652
+-0.72241861
+-0.21070760
+0.01502979
+0.27893043
+0.86016273
+0.33069265
+0.72214627
+0.77844322
+-0.86573413
+-0.12088799
+-0.41089302
+0.23357677
+-0.37364054
+0.34750175
+0.29522574
+-0.88299745
+-0.33386272
+-0.05159444
+0.29644895
+0.13771987
+0.15001047
+-0.68218219
+0.88256586
+-0.11020142
+-0.37189859
+0.15796971
+0.51489699
+-0.79871415
+-0.71738225
+-0.18231595
+-0.25177348
+0.58719027
+-0.46551627
+0.41064119
+-0.10706472
+-0.59264106
+-0.64238718
+-0.69369379
+-0.76209977
+0.56850421
+0.81148100
+0.93492460
+0.58684945
+-0.57215199
+0.44277215
+0.80550969
+-0.55279890
+-0.36228555
+0.80069768
+-0.31614381
+0.67498994
+0.04949129
+0.57777917
+-0.02976191
+-0.15821075
+-0.90181752
+0.58214986
+-0.25231940
+0.75113487
+0.34177089
+0.65297914
+-0.89141716
+-0.70336479
+-0.07298428
+-0.99023754
+-0.78575009
+0.80075037
+-0.37507951
+-0.34542567
+-0.09327710
+0.04224372
+-0.92971595
+0.15403557
+-0.70714584
+0.46569300
+-0.31512082
+-0.14195466
+-0.87201650
+0.20873046
+-0.43906152
+-0.16169614
+-0.25188363
+-0.77734576
+0.72418272
+0.61747944
+0.36489952
+0.84889436
+-0.35676455
+0.18018925
+0.06018972
+-0.05470687
+0.86947715
+0.92473316
+0.46746290
+0.10808372
+-0.82800798
+0.56903827
+0.89766192
+-0.30632281
+0.56139517
+-0.52819598
+-0.58647671
+-0.93619739
+0.76234829
+-0.12964314
+0.51374996
+-0.55381078
+0.03102255
+0.50714302
+-0.79302879
+0.36194742
+0.52933049
+0.21773410
+-0.47460741
+-0.80647404
+0.58667815
+0.53792143
+0.42589390
+0.39128673
+0.03537393
+0.12080216
+-0.65951428
+-0.06037688
+0.26478016
+-0.82206862
+0.91268623
+-0.72040430
+-0.70180029
+-0.22461170
+-0.74863887
+-0.88173181
+0.82243466
+-0.35999900
+0.66182804
+-0.99232055
+0.83055377
+-0.06884748
+0.25223958
+0.72279501
+0.28442264
+-0.48942792
+0.11991322
+0.35394907
+-0.22011733
+0.40733862
+0.15824103
+-0.78463919
+-0.30542713
+-0.51793674
+0.42046845
+-0.13413930
+-0.62488350
+-0.55277413
+-0.37008274
+0.18510377
+0.00299609
+-0.81552261
+-0.66045678
+0.74773538
+-0.95839945
+-0.86083503
+-0.63565445
+-0.78895871
+0.42335141
+-0.33432162
+0.61950111
+-0.63740507
+-0.66561246
+-0.06228417
+0.97603846
+0.65483892
+0.18952179
+-0.04034221
+0.86032748
+-0.18791544
+0.35879636
+0.17877591
+-0.88581648
+0.41840017
+-0.67836142
+0.96532762
+0.56817234
+-0.27447605
+0.39271188
+0.67477393
+0.61304557
+-0.40303850
+-0.95562990
+-0.63512293
+0.84584010
+0.94355488
+0.49122703
+-0.05637532
+0.36450922
+-0.00930059
+0.70190179
+-0.55839899
+0.84600675
+0.69067466
+-0.66315237
+0.96486807
+0.64122939
+0.27180266
+-0.10215896
+-0.49888670
+0.64193416
+0.59206903
+0.91640413
+0.51899338
+-0.24797934
+0.36484981
+-0.09047401
+0.46918751
+0.30934943
+0.16389826
+0.42252534
+-0.24424967
+0.94655313
+-0.03242390
+0.19716224
+0.92524271
+-0.44245997
+-0.90778908
+0.54973969
+-0.73076993
+-0.40246150
+0.51188503
+-0.90560312
+-0.07032253
+-0.04181259
+-0.86486972
+-0.05204006
+0.71647294
+-0.77961003
+0.90481687
+0.99883241
+0.67549411
+0.91282747
+0.53424730
+0.84160853
+-0.36270647
+-0.89729832
+0.88070227
+0.09632687
+-0.49395985
+-0.59059985
+-0.04743861
+-0.02119554
+0.78740355
+0.07359585
+-0.11848521
+0.24504625
+-0.34732558
+-0.44325220
+-0.76078409
+-0.14812529
+-0.01270757
+0.90086075
+-0.09623417
+0.79175001
+-0.56009958
+0.44264137
+0.76707044
+-0.96872991
+-0.03107639
+-0.37236425
+0.64545084
+0.01514477
+-0.39432188
+0.42921623
+-0.26801531
+-0.63649806
+-0.92775244
+-0.63736562
+0.39904469
+0.27926113
+-0.29821935
+-0.68979796
+0.22397959
+-0.34424045
+-0.25627900
+-0.60508574
+0.23686039
+0.56588704
+0.69053083
+-0.18618387
+0.54915998
+-0.29540817
+-0.21685163
+1.00134317
+0.39606487
+-0.21535326
+0.77554136
+0.24653467
+-0.83911209
+-0.43901107
+0.95440493
+0.40800543
+0.84515111
+0.20669007
+0.15035528
+0.02754544
+-0.12839363
+-0.86100773
+-0.85920986
+0.28338975
+0.26427181
+0.54912669
+0.28176153
+0.07475114
+0.74800725
+-0.76182290
+0.91589014
+0.09692554
+-0.58015398
+-0.86118470
+0.91075200
+0.16781228
+-0.82611443
+0.37188542
+0.63902190
+1.00257801
+-0.20820951
+0.55406071
+-0.47203735
+-0.44870637
+0.35636716
+-0.90884144
+-0.93281581
+0.64129625
+0.99962626
+-0.76049581
+0.77414229
+-0.89409500
+0.80956265
+-0.65029211
+0.06426533
+-0.73666127
+0.16176271
+-0.29259867
+-0.65779448
+0.38512116
+-0.06231377
+-0.19774213
+0.71298521
+0.42401765
+0.27134114
+0.92534966
+-0.49302337
+0.94824923
+-0.95567263
+0.31362359
+-0.74609227
+-0.58517053
+0.77662124
+-0.60516521
+0.46784938
+-0.55548541
+0.42895789
+-0.21635819
+-0.40075716
+0.42126358
+-0.17807210
+0.57242365
+0.84785715
+-0.21352870
+0.41505133
+-0.61134415
+-0.64485668
+-0.41614228
+0.59949690
+-0.78145477
+-0.97429883
+-0.66738741
+0.71133702
+-0.47989635
+0.39771086
+-0.81047975
+-0.01901324
+-0.59204478
+0.89618703
+0.77367345
+-0.56281663
+-0.18948586
+0.11135382
+-0.46197740
+0.77725654
+-0.74587302
+-0.39502320
+0.22742618
+-0.42413635
+-0.84586940
+0.57879998
+-0.87262392
+-0.03827400
+-0.90071315
+-0.69597991
+-0.79298820
+-0.25279649
+0.46019397
+-0.63869956
+-0.67867742
+-0.90219406
+-0.24321346
+-0.52169441
+-0.20739418
+-0.87109998
+-0.35564356
+-0.55919712
+-0.64737844
+0.37239627
+-0.65034349
+-0.61090628
+-0.45814454
+-0.88583880
+0.70208903
+0.78768795
+-0.68057532
+-0.42667064
+0.01978433
+0.79786958
+-0.07913393
+-0.86260534
+-0.69250175
+-0.77483341
+0.53797597
+0.18923538
+-0.07930882
+0.92944186
+-0.48659865
+-0.34855331
+-0.48068896
+0.75467225
+0.38443998
+-0.25791082
+-0.43540395
+0.09718397
+0.79979011
+0.28018477
+-0.24406648
+0.65937778
+-0.33551984
+0.75096513
+-0.87342761
+0.25155336
+-0.18617284
+0.60866478
+0.95204938
+-0.69390060
+-0.54961893
+0.81340652
+-0.86337520
+0.82570308
+0.36610829
+-0.05487027
+-0.37565557
+-0.94810168
+0.62305521
+0.21203868
+0.59067125
+-0.70140983
+-0.94770759
+-0.71549550
+0.04965037
+-0.67977398
+-0.29146418
+0.59244841
+0.91716978
+0.05722648
+0.86436775
+-0.01053201
+-0.29211748
+-0.30489798
+-0.91404376
+0.68515134
+0.50611571
+-0.51439858
+-0.78065469
+-0.77293829
+0.36630883
+-0.10713756
+-0.02449299
+-0.11068071
+-0.31668439
+-0.32782478
+-0.41461972
+-0.31725037
+0.77327564
+-0.05575364
+-0.96389826
+-0.87029160
+0.93216896
+0.74189740
+-0.39395855
+0.49192928
+0.61136744
+0.00983825
+-0.73468422
+-0.88025312
+0.23097414
+-0.01790592
+-0.97142146
+0.30885800
+-0.15320034
+0.52373135
+-0.45599738
+0.18190908
+0.72502125
+-0.55159325
+-0.86395471
+-0.06667465
+0.26598060
+0.41454062
+0.40937268
+0.26866183
+0.18325381
+-0.20361091
+-0.06164372
+0.47048634
+0.70128447
+-0.37079646
+-0.31781768
+0.82498787
+0.96684597
+0.65452435
+-0.40426020
+0.58542708
+0.42622567
+0.37534300
+-0.98175731
+0.43819654
+-0.26364526
+0.33555338
+0.50525614
+-0.57945390
+0.03149106
+-0.13175174
+-0.78716983
+-0.73377583
+-0.35263040
+0.73658747
+0.70400989
+-0.11213853
+0.53781303
+0.72770112
+-0.05584847
+0.00874861
+0.97783594
+0.04167634
+-0.53408618
+0.93152467
+0.59033189
+-0.41401619
+-0.47673991
+0.37183913
+0.02193930
+-0.12320306
+-0.38810858
+-0.93160862
+0.81560402
+0.90656066
+0.68598097
+0.25617228
+0.93774455
+0.55213343
+-0.44573042
+-0.84186878
+-0.79402019
+0.24405460
+-0.30461454
+-0.60689456
+-0.54654458
+0.24269186
+0.66001032
+-0.23002362
+0.41246274
+-0.44295330
+-0.72265121
+-0.34667894
+-0.19400409
+0.36254310
+0.89043110
+-0.46165908
+-0.11423591
+-0.23139573
+0.22025864
+0.76810810
+0.06438303
+-0.26469984
+-0.23598693
+-0.85511125
+0.37230047
+0.40582916
+0.85774017
+0.37200234
+0.70710092
+-0.51930322
+-0.09666216
+-0.57411839
+0.42668437
+-0.69812620
+-0.71270700
+-0.09593039
+0.11359223
+0.34410950
+-0.15478100
+0.18764237
+-0.46134185
+0.33033456
+0.04306358
+-0.87086834
+-0.62913775
+-0.67392178
+-0.13137710
+0.80039648
+-0.67250671
+0.24911618
+0.81837296
+-0.30586007
+-0.07529620
+-0.95797465
+-0.59443061
+0.28940318
+-0.23034324
+0.04985248
+0.40038092
+-0.80022758
+-0.97410503
+-0.88636499
+-0.18025665
+-0.45342419
+0.25992500
+-0.81691726
+-0.25459397
+-0.09520254
+0.77282468
+0.91724222
+-0.59024159
+0.44292197
+-0.52887797
+0.43042334
+0.17672314
+0.04020080
+0.80956410
+-0.90973281
+0.27780026
+-0.82681603
+0.37688091
+0.86002540
+0.76200242
+-0.25620132
+0.95428554
+0.84433207
+-0.57969808
+-0.99064752
+-0.25551314
+0.89114453
+0.13034720
+0.08741027
+-0.69459559
+-0.76010516
+-0.76666606
+-0.93797072
+-0.74737793
+0.61515097
+-0.42367370
+0.29652241
+-0.06888427
+0.67242889
+0.73018847
+-0.58814017
+0.63714718
+-0.37682645
+-0.71126550
+0.47693095
+0.45119304
+-0.22647570
+0.62406848
+0.29585797
+-0.66760571
+-0.71435689
+0.35794602
+0.34789307
+-0.09599077
+0.39220548
+-0.74388848
+-0.73437313
+-0.16391500
+-0.02622613
+-0.36989763
+-0.05574856
+-0.37696086
+-0.21482148
+-0.62457021
+0.19151746
+0.93955433
+0.38438870
+0.92702516
+0.96837035
+-0.11534745
+0.30192942
+-0.91487167
+-0.89679845
+-0.22060524
+-0.17906933
+0.18622009
+-0.24110031
+0.29895964
+0.69254885
+0.26513076
+0.18306867
+0.30709574
+-0.59267858
+0.59968638
+-0.01718910
+0.45805471
+0.65379235
+-0.41790923
+0.30401110
+-0.86462632
+-0.42756743
+0.15872579
+0.55413258
+-0.91504605
+-0.01917256
+0.88710077
+-0.65534014
+-0.01380099
+-0.58902468
+-0.30209457
+-0.69486383
+0.86579862
+0.76055839
+-0.91911591
+-0.78155063
+-0.69919168
+0.89720401
+-0.65983657
+0.34633518
+0.48910122
+0.84854794
+0.21104802
+-0.63146935
+0.92345307
+-0.29680807
+-0.03806506
+-0.24743829
+0.75788532
+0.85593833
+0.44715362
+0.76331424
+0.13272547
+-0.29859814
+-0.51831614
+0.44701946
+-0.23428453
+0.65035821
+0.37057190
+-0.35508920
+-0.74069449
+-0.53977346
+-0.55738276
+-0.35680185
+-0.85578846
+-0.98216911
+-0.61734240
+0.40111533
+-0.67906956
+0.87874742
+-0.59699723
+0.92811692
+-0.37904615
+-0.61806106
+0.44816053
+-0.78316040
+-0.56685369
+-0.99357206
+0.23469446
+0.04282839
+-0.30068363
+-0.40947156
+0.44501277
+0.07627812
+-0.33317216
+0.82259768
+-0.67108806
+-0.91321887
+-0.60940039
+0.91470547
+0.04039176
+0.95533972
+0.55377134
+0.76926129
+-0.32839200
+0.22554451
+0.13111890
+0.81985000
+-0.92768563
+-0.47175945
+0.07422812
+-0.93234892
+0.33508571
+0.41320230
+0.03539524
+-0.10862470
+-0.90041727
+-0.34943816
+0.05801276
+0.08061325
+0.07625193
+-0.96310728
+0.57594321
+-0.09914829
+0.84484074
+-0.04815954
+-0.45708292
+0.44621006
+0.05800989
+0.70343005
+0.77457798
+-0.26536917
+0.01285582
+0.26795729
+-0.42005333
+0.84556252
+0.80472696
+-0.35028353
+0.19071401
+-0.96849131
+-0.49039614
+0.66306062
+0.17578023
+0.33389124
+-0.06813696
+-0.97765195
+0.95334387
+-0.87831359
+-0.78484955
+-0.71706773
+-0.00655109
+0.79160805
+-0.14453644
+0.73913130
+0.89514086
+-0.92832917
+0.67381848
+-0.61579206
+0.23731054
+0.51813614
+0.84346926
+-0.51850535
+-0.23071028
+-0.54271636
+-0.99361858
+-0.83073364
+-0.68391108
+-0.00349108
+-0.31278085
+0.55588652
+-0.87071665
+0.13310074
+0.75748558
+0.87476625
+0.54553661
+0.13135310
+-0.58213560
+0.04292923
+0.87086338
+-0.24688634
+-0.04335600
+-0.70674253
+-0.24380761
+-0.97591977
+-0.36510283
+-0.23584187
+0.32767427
+-0.31785339
+0.95415223
+0.14382553
+0.76932704
+-0.39648348
+-0.62940612
+0.50291121
+-0.10059702
+0.50545621
+-0.04203230
+0.58237326
+-0.24407387
+-0.67585260
+-0.29800695
+-0.74259093
+0.61452293
+-0.64356735
+-0.77618892
+0.95312119
+0.69935799
+0.03736854
+0.13335073
+-0.75128534
+-0.64425471
+0.81481719
+-0.60250834
+-0.75632167
+-0.02427632
+0.88427687
+0.11010849
+-0.12446225
+0.84156358
+-0.23049986
+0.64404237
+0.28106213
+0.21577513
+0.97268951
+0.86644244
+0.23207271
+-0.71576282
+0.98245323
+-0.86374322
+-0.17468971
+-0.51142454
+0.33099961
+0.97046757
+0.66074383
+-0.67802358
+-0.28828657
+-0.92300110
+0.47357583
+0.76944339
+0.93474638
+-0.20972610
+0.62120771
+-0.10637259
+0.22965467
+0.39429641
+-0.04620570
+-0.12755162
+-0.60184553
+-0.85156828
+0.07332861
+-0.23888206
+-0.82089637
+-0.16472524
+-0.51024020
+0.85679781
+-0.56881839
+-0.72039452
+0.92427790
+0.38690400
+0.36931241
+0.83247840
+0.59219122
+-0.98243905
+0.50319743
+-0.23586112
+0.39000154
+-0.29818875
+0.89536786
+0.73507643
+-0.88911919
+0.76060581
+0.93318498
+0.02908635
+-0.98703177
+-0.68219897
+0.25682068
+0.78617716
+-0.55655614
+0.58366406
+0.29731607
+-0.98012219
+0.31327283
+-0.55552471
+0.66845882
+-0.96717974
+0.06198227
+0.78531873
+-0.81447569
+-0.14108783
+-0.59465879
+-0.01573229
+-0.64472926
+0.57732749
+-0.65104595
+-0.53951129
+-0.45111752
+0.84659266
+0.57678568
+-0.80502112
+0.65045607
+0.29688811
+-0.72438174
+-0.03024244
+-0.89195625
+0.38652539
+-0.64323816
+0.97373319
+0.17823148
+0.17837679
+-0.01558739
+0.41708493
+0.50765681
+-0.78102481
+0.77907443
+0.68329787
+0.98165929
+-0.02213454
+0.19157875
+0.37341630
+0.72372139
+0.03493607
+-0.01755029
+-0.93417395
+-0.78148018
+-0.84033728
+-0.51373243
+0.88929713
+-0.09766465
+0.51829147
+0.51845443
+0.58521175
+-0.59519050
+0.85055614
+-0.79997060
+0.76398861
+-0.89658783
+0.12313879
+0.13849914
+-0.61556011
+-0.92543173
+0.35719800
+0.58738840
+-0.08203214
+0.42266774
+-0.75853382
+-0.53565407
+-0.83483647
+0.52230179
+-0.68928713
+0.69022834
+0.52218211
+0.44574833
+-0.61268154
+-0.72683802
+-0.60257411
+0.43656993
+-0.53276747
+-0.65347227
+-0.46753436
+0.84082651
+0.28083646
+0.29682171
+-0.87913450
+-0.49740851
+-0.17172521
+-0.18338501
+-0.23715699
+0.61055315
+-0.54721403
+-0.49799025
+0.98368907
+-0.69137537
+0.97796309
+-0.95472291
+-0.78884743
+-0.67129380
+-0.69850624
+-0.73079726
+0.85907650
+0.16052425
+-0.82928805
+-0.38053364
+-0.95697800
+0.34976828
+-0.99131904
+0.66242087
+-0.87276645
+0.14902472
+0.33352602
+0.09213173
+-0.96920901
+0.58047330
+-0.84911746
+0.68202853
+0.67806113
+0.81478572
+0.54047871
+0.62589312
+0.48776340
+-0.72809574
+0.52808547
+-0.95388190
+-0.69306463
+0.68910396
+0.83263159
+-0.31553149
+-0.34264654
+0.50274575
+-0.67605597
+0.50064969
+0.09622443
+-0.00181061
+0.25345492
+-0.92778774
+-0.18637663
+0.32612586
+-0.88715738
+0.81750619
+-0.30630201
+-0.03781384
+0.01961374
+-0.86727171
+0.69462562
+-0.01669890
+0.51129866
+0.75153351
+0.10737205
+-0.91312954
+0.21034205
+-0.79314625
+-0.30571473
+-0.73423788
+0.75095260
+-0.34281981
+-0.61220208
+0.67166042
+-0.31041449
+-0.31610048
+-0.03172719
+-0.95948741
+-0.27336305
+0.95940948
+-0.50966302
+0.34900653
+-0.36341000
+-0.64266044
+-0.69381797
+0.68718159
+0.72186148
+-0.87559745
+0.45016837
+0.44133806
+0.30183172
+-0.49722296
+-0.91519845
+-0.23191249
+0.41914535
+0.95730567
+0.18817627
+0.68925667
+0.55940521
+0.15312338
+0.87207961
+-0.44722509
+0.36077738
+0.22518408
+0.57700586
+-0.84712136
+-0.19096041
+-0.97437253
+-0.93973992
+0.83503330
+-0.62265465
+-0.67736229
+0.00840235
+-0.66344291
+-0.60965922
+-0.96744562
+0.41089642
+-0.79689255
+-0.01106834
+-0.84421939
+0.24669993
+-0.92123771
+-0.51868746
+-0.71097928
+0.49762535
+0.03289950
+-0.57624337
+-0.77455992
+-0.94131529
+0.24371231
+0.89864337
+-0.64659914
+0.70290267
+0.83538282
+-0.22472769
+-0.78794448
+0.91692662
+0.39298320
+0.89278662
+0.43628967
+-0.98134618
+0.23541129
+-0.51483834
+0.47689629
+-0.51825190
+-0.13210016
+-0.48032689
+0.47601485
+-0.14555120
+0.20718098
+-0.22855866
+0.67141414
+-0.67217171
+0.81801546
+-0.56857193
+-0.64508536
+-0.43035269
+0.38990939
+0.46806502
+0.14750028
+0.39803708
+-0.39375901
+-0.15580034
+-0.41294479
+-0.92132476
+-0.30329520
+-0.94632784
+0.27195668
+-0.11151332
+0.77941382
+-0.28008868
+0.00627501
+0.39758890
+-0.72674331
+0.14347838
+0.53659104
+-0.51047556
+0.25597559
+0.71524212
+0.65661109
+0.69907729
+-0.76048478
+0.26841538
+-0.22542177
+0.59363490
+0.93578861
+0.23370101
+-0.70123415
+0.02148035
+-0.75664737
+-0.93609100
+0.41460600
+-0.55474827
+0.48717482
+0.12214306
+0.89197514
+-0.91031137
+-0.44256956
+0.34746562
+0.50623119
+-0.38978842
+-0.07630735
+0.23043146
+0.53974500
+-0.64503249
+-0.80868641
+-0.23061483
+0.89083744
+0.30612083
+-0.18126154
+0.91168606
+-0.44475682
+0.79205289
+-0.60341028
+0.71749468
+-0.70712746
+-0.84288682
+0.43238226
+-0.86015789
+0.70227179
+0.28943584
+0.78686499
+0.42714086
+-0.20911020
+-0.42854623
+-0.89749318
+-0.19324315
+-0.74558741
+0.84082474
+-0.50428807
+-0.07368695
+0.91752417
+-0.02715115
+0.82121649
+0.47625801
+-0.47948336
+-0.35970214
+0.71362148
+0.25567312
+-0.42063987
+0.17510802
+-1.02773498
+0.57365373
+-0.04393275
+0.40679656
+-0.67433408
+-0.93721644
+0.82322921
+-0.26494636
+-0.28714830
+0.42551977
+0.44778437
+0.09236367
+0.63079541
+-0.19415570
+-0.36112848
+-0.49422889
+-0.88578606
+-0.87937447
+0.51298423
+0.59136121
+-0.34671414
+0.55210619
+-0.00503101
+-0.37569413
+-0.60406107
+0.06438402
+0.23061186
+0.87843310
+-0.91626928
+-0.21452006
+-0.73974508
+0.35629043
+0.31643114
+0.80012635
+0.05217468
+-0.87250138
+-0.92514197
+0.53599291
+0.30025130
+-0.74939769
+-0.20048055
+0.89395119
+-0.17461440
+0.49740618
+-0.58473737
+0.34758767
+0.23268244
+-0.70059882
+-0.63354551
+0.90098721
+-0.27463218
+0.70735453
+-0.63038043
+0.99079160
+0.05621034
+0.43210225
+-0.85885072
+0.81894085
+0.12444232
+-0.74631347
+0.03591249
+0.64511669
+0.61518617
+0.24835728
+0.43339680
+0.26197367
+0.78016098
+0.61164560
+-0.93474869
+0.61175450
+0.03506418
+0.53863123
+-0.79208410
+-0.58937043
+0.66821329
+1.01513289
+0.19516257
+0.03734638
+-0.93474844
+0.34282537
+0.69645738
+0.11383241
+0.95129707
+-0.32837684
+-0.74437757
+0.56439770
+0.71749857
+-0.33533412
+0.56569941
+0.77938155
+0.95888702
+0.87811440
+0.90457777
+-0.50136778
+-0.66884440
+0.00796050
+-0.55325866
+-0.44616805
+-0.77711059
+-0.63394988
+0.02351601
+0.23091535
+-0.18679915
+0.95425711
+0.63032225
+-0.68845219
+-0.13794912
+0.81989223
+0.07741442
+-0.97940729
+0.17337680
+-0.92592536
+-0.73063164
+0.83671281
+0.33540257
+-0.83612833
+-0.60340594
+-0.35813483
+0.86956846
+-0.43657433
+0.23830551
+0.30351417
+0.00913737
+-0.24891738
+-0.23735761
+-0.80055913
+0.89548837
+0.71155712
+-0.37629371
+-0.04080990
+-0.83653849
+-0.62321971
+-0.89039044
+-0.89604117
+0.57210649
+-0.50558801
+0.90790184
+0.69193777
+0.35718095
+-0.29649703
+-0.88397851
+0.98775487
+-0.52812175
+-0.47280832
+0.64181397
+0.97834745
+-0.38040643
+-0.27378391
+0.68055162
+0.95022744
+-0.78694146
+-0.45787294
+0.41868015
+-0.16603660
+-0.24881702
+-0.01071885
+-0.66706529
+0.30364004
+0.30381090
+-0.40866124
+-0.89450342
+-0.39481728
+-0.28127666
+-0.49798054
+-0.63406273
+-0.70345988
+0.43980479
+0.39406837
+0.39132781
+-0.86905755
+0.03757536
+0.55116205
+-0.93375012
+0.61185822
+0.77636998
+0.89516050
+-0.20145227
+-0.32451772
+0.41401874
+0.28489659
+-0.90573137
+-0.80355255
+-0.93172228
+-0.46495068
+0.66790570
+0.58712048
+-0.05468246
+0.85159118
+-0.14095235
+0.23849577
+0.82770101
+0.13152808
+0.06336098
+0.44288156
+0.13012769
+0.06559230
+-0.50946659
+0.85747459
+0.28813099
+-0.00553380
+-0.98867828
+-0.67428766
+-0.54817932
+-0.35683363
+1.01608148
+-0.86934305
+0.20219672
+-0.32044374
+-0.60795447
+-0.52125899
+-1.00662787
+0.56170631
+0.18526605
+0.43733196
+-0.63334050
+-0.59320005
+0.92668080
+0.80078483
+0.39100727
+-0.23540327
+0.52764585
+0.24835562
+0.87968912
+-0.92006972
+-0.60495803
+0.16045951
+-0.16580786
+0.78956722
+0.01503696
+-0.56898962
+0.82083691
+0.55877210
+-0.03187932
+0.64973080
+-0.53331288
+0.19550771
+-0.51492635
+-0.31899025
+-0.66925949
+-0.68992946
+-0.86417241
+0.09793920
+0.26641361
+-0.62215133
+0.35756413
+-0.92240028
+-0.27557760
+0.01315208
+0.95206583
+0.19261604
+0.84208800
+-0.71889191
+0.59284004
+-0.17353886
+-0.92494136
+0.62728085
+-0.52080481
+0.28665776
+0.31840329
+-0.90397930
+-0.54608354
+-0.33658336
+0.52629376
+-0.30097944
+-0.09028596
+-0.83769332
+0.78050437
+-0.34242971
+0.49060932
+0.93911462
+0.15936562
+-0.23327095
+0.28006524
+-0.88764896
+0.10428060
+-0.84410361
+-0.62975334
+-0.50902166
+-0.23090682
+-0.05935853
+-0.94712709
+0.72285855
+-0.07751283
+-0.66448399
+-0.75687121
+0.91478636
+0.06774843
+0.07938525
+-1.01593912
+-0.17690799
+-0.67000231
+0.14783682
+-0.55080361
+0.27668344
+0.74137650
+-0.20006712
+0.76558814
+0.59595106
+0.84492919
+0.50925351
+-0.56392568
+-0.50765478
+0.22697626
+0.11771453
+-0.52286459
+-0.91805748
+-0.94018739
+0.13709253
+0.13465907
+-0.75234093
+-0.00169862
+0.39938525
+0.53601437
+-0.47941844
+-0.73742074
+-0.23332206
+-0.10768993
+-0.79564088
+0.43427502
+0.62297255
+-0.17428883
+0.00780312
+0.30570775
+0.68822246
+0.58533832
+-0.91359930
+-0.48496920
+-0.90451940
+-0.72977746
+-0.80785597
+-0.23421864
+0.91461016
+0.62799321
+0.96104542
+0.53979676
+0.29123588
+-0.33863745
+0.94813938
+0.40334231
+-0.40526966
+-0.85575326
+0.53049177
+0.56825066
+0.10200396
+0.98115446
+0.65952121
+-0.69572105
+-0.89716156
+0.10204543
+-0.75261220
+-0.08129721
+0.21106220
+0.87600629
+-0.88435332
+-0.87973380
+-0.39449387
+0.41969641
+0.33644353
+-0.43677340
+-0.38692129
+0.93839228
+-0.11485642
+-0.64469713
+0.47175640
+1.02128962
+-0.78055454
+-0.44320924
+0.16252135
+-0.35301595
+-0.19853643
+-0.76098157
+0.47157107
+-1.00434218
+-0.29323328
+0.40527654
+-0.58161255
+-0.55607420
+0.58521608
+0.61388387
+0.42485587
+-0.79077599
+-1.03340059
+-0.02959953
+-0.86830818
+-0.86987395
+0.68240921
+0.74793487
+0.94081517
+-0.72015396
+0.98423287
+-0.29080197
+-0.75101271
+-0.49854435
+0.47634156
+-0.18472903
+-0.19933075
+-0.66176945
+-0.04700132
+0.88836812
+-0.02518626
+0.79832075
+-0.63228077
+0.25984400
+0.52202902
+-0.89825079
+0.60473553
+-0.17069384
+-0.89657739
+0.82840753
+0.42233553
+0.33523786
+-0.55001411
+0.04002595
+-0.54278056
+-0.84473763
+-0.96376975
+-0.07432267
+0.16194810
+-0.34398555
+0.85047072
+0.78849439
+-0.32849680
+0.58696772
+-0.52377172
+-0.34862953
+0.73719325
+0.84344706
+0.56577897
+-0.41538658
+-0.24347874
+0.07023966
+-0.80856348
+0.74592172
+0.67880361
+0.50614556
+0.23124168
+-0.28555811
+-0.06583407
+0.78833478
+-0.85998130
+-0.12457049
+0.51538155
+0.52748989
+0.49194402
+-0.05136523
+0.76276354
+0.74973775
+0.99931006
+-0.15763919
+0.83920689
+0.45518644
+0.47410295
+-0.02208842
+0.18949694
+-0.76298094
+0.52546169
+0.73518480
+0.63345824
+0.78447131
+0.53532267
+0.31255151
+0.58437097
+-0.56656800
+0.07130010
+0.56793288
+0.63780243
+0.89127477
+-0.85722105
+0.56963809
+-0.01603226
+0.59770861
+-0.55263779
+0.61448771
+0.53791318
+-0.04920845
+-0.55827278
+-0.27838475
+-0.97916385
+-0.51980933
+-0.93608752
+-0.93125596
+0.48563024
+-0.01814667
+0.65868489
+-0.60566351
+0.25172195
+0.61534795
+0.21373172
+-0.38629119
+-0.04111261
+0.58312757
+-0.54617669
+0.34753146
+0.32828765
+0.82507280
+0.39813659
+-0.56006920
+0.47856324
+0.80244333
+-0.30999841
+0.70944468
+-0.75840807
+-0.77135947
+-0.38144396
+0.81048753
+0.51162783
+0.97761983
+0.61660464
+-0.92874246
+-0.76177014
+-0.86379532
+0.48093555
+0.79133576
+-0.48304307
+0.07346061
+-0.90985660
+0.99646770
+-0.35623603
+0.27080910
+0.25755247
+0.68721323
+-0.65413955
+0.85757011
+-0.30488443
+0.94226686
+-0.90012245
+0.74837243
+0.02479477
+-0.70244578
+-0.06611418
+-0.33606642
+0.17518208
+0.85474175
+0.08376623
+0.75913814
+0.20333301
+-0.39744700
+0.19374841
+-0.26266329
+0.92737036
+-0.88084047
+0.89454803
+-0.38696510
+0.77631796
+0.07009259
+0.51540447
+-0.55248279
+0.76540637
+0.89383001
+-0.55752588
+-0.08695457
+-0.97754184
+0.15345842
+0.18364561
+0.34129563
+-0.96718642
+0.39959859
+-0.76656537
+-0.04604362
+0.65576487
+-0.42716846
+-0.29265311
+0.06239122
+-0.91035193
+-0.26764360
+0.61801625
+-0.61814789
+0.08546674
+-0.11152087
+0.28391669
+-0.09211105
+-0.47345354
+-0.58642653
+-0.90813564
+0.51431587
+0.23012174
+0.96977384
+-0.95289392
+0.22695804
+0.31536543
+0.71883106
+0.64149821
+-0.64061192
+-0.01466274
+-0.11102891
+-0.16403294
+-0.83569831
+0.40055895
+0.37293744
+-0.73502564
+-0.55015361
+-0.04364085
+-0.94045493
+0.85118926
+0.72693777
+-0.39989889
+0.54059398
+0.39495790
+-0.66817230
+-0.13454014
+0.35414565
+-0.95710330
+0.72415102
+-0.68307847
+0.46866202
+-0.94272135
+0.50372565
+-0.17887431
+0.43322062
+-0.54136771
+0.23540747
+0.59416139
+-0.51941246
+-0.26031941
+0.45856416
+-0.37350643
+0.52475345
+-0.47593641
+-0.46019560
+-0.67811212
+-0.12677789
+-0.65277871
+0.89442730
+0.22594953
+0.10907555
+0.87696898
+0.67744493
+0.30173790
+-0.84078133
+0.12701917
+0.00551009
+-0.44310910
+-0.42384046
+-0.30524641
+0.10333169
+0.36953974
+-0.74648350
+-0.95239472
+0.98106670
+0.63585448
+0.42227125
+0.45353353
+0.19085598
+-0.43068635
+0.87028968
+0.51905560
+-0.05787873
+0.81808197
+-0.97787271
+-0.97099273
+-0.83936180
+-0.93531897
+-0.99903169
+0.16356874
+0.66932702
+-0.17614192
+0.22256887
+0.74034107
+0.90394580
+0.67147136
+0.38655758
+0.46397054
+-0.68704686
+0.45172930
+0.51221359
+0.14085233
+0.31390464
+-0.61196792
+-0.74869874
+-0.13208514
+0.87696135
+0.86340320
+-0.93041667
+-0.15922284
+-0.62028992
+0.74468124
+-0.39946264
+-0.08517045
+0.57545769
+0.82451367
+-0.06692886
+-0.20214778
+0.86922061
+0.07657766
+0.84867215
+-0.00784004
+-0.96715816
+0.65728247
+0.74454308
+-0.21155596
+-0.55702657
+0.01492131
+0.15789771
+0.47858024
+0.35930538
+-0.53330559
+-0.57649443
+-0.06299555
+-0.79102856
+0.69074667
+0.66382849
+-0.06629193
+0.38917589
+0.71831012
+-0.49630302
+-0.13979542
+0.98770761
+0.09831059
+-0.42070025
+-0.97159416
+0.33901250
+0.58270967
+0.24024761
+-0.90917955
+-0.43497795
+0.29866791
+0.94785297
+-0.08566451
+-0.05474579
+0.40944171
+0.40600955
+-0.50943249
+0.06117940
+-0.53651530
+-0.45224088
+0.57527375
+-0.10588282
+0.61419666
+0.64163625
+0.64116132
+0.26648307
+0.03723967
+-0.87328468
+-0.65500098
+0.04130709
+-0.13053030
+0.46648085
+-0.30769891
+-0.85325447
+-0.00626242
+0.52791440
+-0.78440793
+0.12933445
+0.60311294
+0.88983619
+0.70328569
+-0.99359801
+0.38404346
+-0.89024209
+-0.73530021
+0.23912096
+-0.10934889
+0.09111297
+-0.41696012
+0.00702035
+-0.88684518
+-0.39876431
+0.70470643
+-0.54747668
+0.47025084
+-0.20639455
+0.53030539
+0.33259475
+0.16682768
+-0.46578902
+0.98651552
+-0.37487280
+0.20510757
+-0.39072937
+-0.33486348
+-0.07627285
+-0.68452099
+0.71363366
+0.03155839
+-0.91447517
+0.84448993
+0.32257056
+-0.53860095
+-0.05281407
+0.49302220
+0.67595959
+-0.49288255
+-0.64065358
+0.60787654
+-0.83802745
+-0.87691453
+0.81251585
+-0.85392775
+0.81668711
+-0.14040649
+-0.89603280
+0.20678043
+-0.56292391
+-0.12447780
+-0.51187813
+0.21158350
+-0.98534157
+-0.69312835
+-0.75585096
+0.22529233
+0.80738521
+0.87161446
+0.07823396
+0.07416356
+-0.23882025
+-0.60453418
+-0.80224484
+-0.31909233
+0.31236708
+-0.72292593
+0.20807195
+-0.12951994
+-0.67616075
+-0.58365983
+0.61465132
+0.42994201
+-0.43311626
+0.04313302
+-0.91437661
+-0.78183505
+0.57282162
+-0.45947677
+-0.15446323
+-0.84482586
+0.56411469
+0.00747597
+0.50279987
+0.20691705
+-0.11240047
+-0.14325815
+-0.72784188
+-0.12263453
+0.94761395
+-0.16333538
+0.63855302
+-0.13892841
+-0.62957421
+-0.29150170
+-0.13196993
+0.66724813
+-0.16661346
+-0.23967719
+0.07844353
+-0.77953865
+0.70631576
+0.29205966
+0.13852847
+0.04652047
+0.33308029
+-0.01624781
+-0.05136770
+-0.86582729
+0.29121506
+0.50808597
+-0.39896941
+-0.17947286
+0.64321601
+0.28724420
+-0.52863821
+-0.21511847
+0.99430394
+-0.18844068
+0.38743198
+0.77399027
+-0.85396513
+0.08024108
+0.20029867
+0.01939261
+-0.95664414
+-0.54623389
+-0.49485123
+0.23089504
+-0.65731141
+-0.89478721
+0.67223859
+-0.98475342
+0.45503974
+-0.90100054
+-0.34255534
+-0.04997516
+0.91332614
+-0.40891868
+-0.76896127
+0.26146054
+-0.31254506
+0.63381982
+-0.68014273
+-0.77025931
+0.73221850
+0.28356993
+0.72595572
+-0.58273917
+-0.38757056
+-0.66640440
+-0.78286345
+-0.94221771
+-0.15857786
+0.40209830
+0.81341743
+-0.87755298
+-0.12740135
+-0.05383670
+0.70014524
+0.17385411
+0.85964143
+0.66571999
+-0.73101252
+-0.41247517
+-0.76021235
+-0.35623145
+0.37154675
+-0.29920995
+0.34697282
+0.40506911
+0.54266369
+-0.33594745
+-0.55340970
+0.35311353
+0.02452028
+-0.17990184
+-0.56616244
+0.24306071
+-0.72691110
+0.04533935
+0.62530267
+-0.42937440
+0.03874803
+-0.76389121
+-0.54850194
+0.17913723
+-0.65083691
+-0.06992638
+-0.70114779
+0.74826229
+-0.48424512
+0.52382338
+0.69701040
+0.37762010
+-0.67897949
+-0.69299723
+0.50122567
+0.11418799
+0.37573850
+0.14341422
+0.38674850
+-0.71672476
+-0.91404589
+0.93040589
+-0.75512603
+0.07068969
+-0.35848393
+-0.37631246
+-0.27194174
+0.76418515
+0.66877497
+0.93056096
+-0.65870265
+0.86113789
+-0.27395306
+-0.87929059
+0.39362341
+-0.64041828
+-0.04770218
+0.74809654
+-0.88021070
+0.57690502
+-0.10416275
+0.01287356
+-0.48219448
+0.13911834
+0.19597233
+0.68903591
+0.46551683
+0.96416104
+-0.39489401
+-0.72980218
+-0.57618578
+0.61004456
+0.47660017
+-0.04664213
+-1.00003618
+0.65674283
+-0.09919761
+0.84342630
+0.43211358
+0.25214979
+0.90717320
+0.74594137
+0.62455855
+0.55367550
+-0.76376561
+-0.48429997
+0.93488403
+-0.08582356
+0.17263695
+-0.48577113
+0.32023505
+-0.10762594
+-0.06496619
+0.46430582
+-0.62453662
+0.56273006
+0.14585512
+-0.78162230
+0.43701774
+0.09150308
+0.12203560
+-0.36960674
+-0.20510095
+0.68584359
+-0.20130073
+-0.84222414
+-0.89564769
+-0.07730704
+0.97117456
+-0.83221950
+-0.68563886
+0.95740221
+0.91528285
+-0.48828366
+-0.05598787
+-0.45055689
+-0.14396812
+-0.84239766
+0.88268044
+0.71239015
+0.13707105
+-0.89342031
+0.10876863
+-0.77421672
+0.03199212
+0.84352154
+0.34947690
+-0.22438256
+0.58276050
+0.60477406
+0.78074341
+-0.98853459
+0.50255164
+-0.48401987
+0.58916183
+-0.84455867
+0.68124445
+-0.83978258
+-0.26101252
+-0.09394417
+-0.42632530
+0.01035148
+-0.51488634
+0.32357136
+0.36565912
+0.62939078
+-0.27408196
+0.58056948
+0.80408302
+0.93897933
+0.37634228
+-0.22896698
+1.03624138
+0.91752808
+0.00069479
+0.93358575
+0.95141297
+0.21724403
+0.35448203
+0.91457478
+0.65871207
+-0.69694639
+-0.76353140
+0.87170642
+-0.55714573
+0.38570765
+0.79812323
+0.14671665
+0.72177422
+-0.49855891
+-1.02512281
+-0.14589946
+0.47584970
+0.38709728
+0.69284439
+-0.85092372
+-0.66174083
+-0.05583640
+-0.06968367
+0.79483261
+-0.30394046
+-0.33894730
+-0.31879322
+0.29270476
+0.78229823
+0.34886049
+0.60768085
+-0.19604815
+-0.10899049
+0.66638992
+1.00219472
+0.00908377
+-0.26872397
+0.20754846
+-0.06457372
+0.43155727
+0.40009309
+0.61748894
+-0.32397666
+-0.21373957
+0.14367173
+0.33870668
+-0.96056189
+0.99603335
+-0.82816742
+-0.22724854
+-0.50636224
+0.44341818
+-0.58141230
+-0.86653688
+0.86353159
+0.46638792
+-0.70424626
+-0.98749466
+-0.36567520
+0.20130360
+-0.70362903
+0.34034126
+0.03082408
+0.06456644
+0.55537961
+0.56397513
+-0.28274378
+-0.44120532
+0.51764401
+-0.12884580
+0.37432541
+-0.50676039
+-0.79700490
+-0.76855880
+-0.28277045
+0.65938201
+-0.26311838
+0.94268196
+0.71808988
+0.90050405
+0.69496959
+0.53575263
+0.94853688
+-0.04516937
+0.79388787
+-0.69994184
+-0.84301095
+0.26194156
+0.89444042
+0.71504227
+-0.06243596
+0.70785498
+-0.63640505
+-0.56641346
+0.42013000
+0.95546797
+-0.20988075
+0.00139189
+0.57366665
+-0.76844414
+0.02965983
+-0.72516149
+0.28977300
+0.53872706
+0.79440650
+0.97722677
+0.24026373
+0.00990124
+0.00754166
+-0.77017740
+0.15069791
+-0.96071875
+0.96659260
+0.78801389
+0.36513261
+0.71900079
+0.08248727
+0.55756406
+0.65741656
+0.00484522
+0.02314926
+-0.33236824
+-0.29542396
+-1.01406307
+0.72420105
+0.86097353
+-0.38668112
+0.97873821
+-0.91937118
+0.23445547
+-0.80558648
+-0.77424858
+0.52642923
+-0.43549847
+0.50507463
+-0.38874279
+-0.04356614
+-0.08214590
+-0.79227818
+0.76591991
+0.75058300
+-0.29231698
+0.03590342
+-0.18999080
+0.24418098
+0.91111940
+0.18565147
+0.27080991
+0.89556790
+-0.94787799
+0.81772040
+-0.85851792
+0.49702613
+-0.72555997
+0.38445665
+-0.11357654
+0.13373783
+-0.76495325
+0.69581190
+0.46646774
+0.07189807
+-0.51014819
+0.96447631
+0.80098530
+-0.52794699
+0.63850455
+0.96801776
+0.69428671
+-0.80787473
+0.22713876
+0.23351435
+0.61753007
+-0.56848579
+0.23540302
+-0.13830010
+0.98083498
+0.30047817
+-0.22506495
+0.71184678
+0.68772809
+-0.49693883
+-0.17986770
+-0.97729619
+0.57487641
+-0.80167307
+-0.89736869
+-0.18467111
+0.88665703
+0.70522576
+-0.79673785
+0.05035123
+1.00474432
+-0.34913844
+-0.31304284
+0.12950428
+-0.29812048
+-0.58181861
+0.43421492
+-0.04283891
+-0.50612053
+0.59190852
+-0.93066722
+-0.24860476
+0.85084204
+-0.46336680
+0.42607524
+-0.54278282
+-0.31571476
+-0.41724680
+0.44871639
+-0.00393250
+-0.67707771
+-0.69551519
+-0.37393001
+-0.37824847
+0.65830177
+0.35154088
+-0.08567156
+0.28427521
+-0.77027385
+0.78438128
+0.90538821
+-0.42323434
+0.34460796
+0.70882451
+0.16694358
+0.85590727
+-0.14812217
+-0.51680617
+-0.22179416
+0.75753898
+-0.28203922
+0.27646080
+0.94140856
+-0.64810633
+0.07978165
+0.18156008
+-0.19267572
+0.27480581
+0.11028648
+-0.82288212
+0.33269228
+0.27512805
+-0.14241131
+0.78466554
+-1.00065496
+0.44166370
+0.83897710
+0.34903202
+0.87722401
+-0.55277598
+0.87609878
+-0.32329451
+0.20103781
+0.05435118
+0.83249106
+-0.12853813
+0.18043911
+-0.44581087
+-0.51872496
+0.44001307
+0.83279693
+0.75242829
+0.19025467
+-0.74397419
+0.40313823
+-0.39428880
+0.95993977
+0.65910037
+0.27694835
+-0.83432119
+-0.60278349
+0.87431992
+0.29381002
+-0.77148230
+-0.81279736
+0.77248281
+0.67400654
+0.62764293
+-0.60873846
+-0.47357591
+0.61248156
+0.24552129
+0.43824449
+0.88641637
+-0.84289033
+-0.38596118
+0.43216545
+0.87279110
+0.09003938
+-0.81112687
+0.40962483
+0.74389339
+0.61188477
+0.26932385
+0.59459984
+-0.94157996
+0.34152774
+0.35639903
+0.49597046
+-0.30751809
+0.10474921
+-0.39180755
+-0.75193538
+0.11012275
+-0.21387502
+-0.63981796
+-0.33619756
+0.12522137
+0.81483472
+0.01012567
+-0.51565111
+0.28820565
+0.87337404
+0.88427710
+0.69907723
+0.76820630
+0.55308604
+-0.17902380
+-0.68456420
+-0.32641579
+0.64375090
+1.01629367
+-0.52217786
+-0.64007813
+0.99038619
+0.16862525
+0.68920325
+-0.15614198
+-0.77990920
+-0.54069205
+0.60812782
+-0.58572053
+-0.06978783
+-0.93540680
+0.69477011
+-0.28303285
+0.15394666
+0.97616032
+-0.30011111
+-1.00002539
+0.71831354
+0.23142513
+-0.55484083
+0.06805776
+-0.65855234
+0.63576863
+-0.96348720
+-0.98367959
+-0.60102505
+0.13981453
+0.71192785
+0.67753444
+0.43890978
+-0.26055855
+0.94091459
+-0.84675284
+0.59445459
+-0.77441895
+-0.25830362
+0.08230858
+0.22642961
+-0.02133844
+0.63721355
+-0.48394126
+0.11430088
+0.37618763
+0.18300062
+-0.85038324
+0.96687390
+0.55748964
+0.61217646
+-0.94492899
+-0.14678476
+-0.82200543
+0.66048336
+-0.33589502
+0.93824801
+-0.77373552
+-0.55079464
+0.02378832
+0.90394705
+0.16455552
+-0.06302192
+-0.77294413
+0.61373946
+0.50676447
+0.44161286
+0.08103096
+-0.25798531
+-0.98647663
+-0.86055545
+0.76295897
+0.73717443
+-0.79895448
+-0.58448700
+0.64272498
+-1.03422241
+0.36561592
+0.59213314
+-0.11191411
+0.53218550
+0.24122294
+-0.71341210
+-0.89798568
+-0.37960781
+0.41702357
+0.53966299
+-0.12036783
+-0.00683314
+0.44214368
+-0.13727300
+0.64036585
+0.75482285
+-0.50463190
+-0.05817984
+-0.74027525
+-0.63823204
+0.81925529
+-0.29702462
+-0.16994387
+0.11576018
+0.47035542
+-0.01725601
+-0.61161769
+-0.18354994
+0.41337106
+-0.63826924
+-0.76496231
+-0.37141493
+0.87150129
+0.97761684
+-0.44606123
+0.60182506
+-0.19755928
+-0.16164987
+0.41553074
+0.45591729
+0.54224027
+-0.35156349
+-0.89976655
+-0.11264541
+0.20087545
+-0.09125992
+-0.04262662
+0.46792407
+-0.99493285
+-0.96529632
+0.50646386
+-0.16332761
+0.31985541
+-0.33883491
+0.36602994
+0.56173332
+0.59886645
+-0.94436427
+0.35527043
+0.88441034
+0.23321407
+-0.92085866
+-0.00104600
+-0.63937047
+-0.34764734
+-0.50881466
+0.05604946
+0.16716333
+-0.07098849
+0.73627886
+-0.46991302
+0.53144488
+0.35488731
+-0.30833959
+-0.81738032
+-0.11657449
+-0.36532039
+-0.75712903
+-0.91048196
+-0.45872923
+0.48301958
+-0.00457969
+0.86594206
+0.23812867
+-0.98698151
+0.37225026
+0.21384393
+-0.76312265
+0.13732715
+-0.49100871
+0.36726626
+0.05938479
+-0.78193135
+-0.05326199
+-0.14419469
+-0.55733361
+-0.63752342
+0.72471261
+-0.45520805
+0.45324367
+0.68737837
+0.53179166
+0.23666495
+-0.53472179
+-0.55941900
+0.52014483
+0.14368378
+0.88601339
+0.32887668
+0.30974238
+-0.04674534
+-0.39348134
+-0.51705015
+-0.44304340
+-0.82170581
+0.49998034
+0.26424050
+0.88190782
+0.63270650
+-0.35913333
+0.40495387
+0.40516936
+0.88852812
+-0.66898070
+-0.56298157
+-0.49240642
+0.83959477
+0.65837371
+0.26545751
+-0.30924612
+0.98788404
+-0.14396459
+-0.67415965
+-0.16584009
+-0.95604765
+0.25621164
+-0.88285167
+-0.02938759
+0.59022319
+-0.35989261
+-0.23871511
+0.56902444
+-0.81638032
+0.14347219
+-0.28740352
+0.32510662
+0.45743132
+0.41438794
+0.71167672
+0.42811680
+0.91949666
+-0.93164467
+0.48453057
+-0.63534454
+-0.75194812
+0.07921171
+0.66688263
+0.58708572
+-0.01553696
+0.73230755
+0.31443441
+-0.95338945
+0.45950782
+0.02866960
+-0.45669848
+-0.17672002
+-0.83316521
+0.33206284
+0.47060919
+0.57569933
+-0.20705003
+0.24253631
+0.32090676
+0.78618371
+-0.30514705
+-0.68045321
+-0.85026799
+0.52731752
+-0.45108849
+0.90028214
+-0.92647406
+0.71808970
+-0.42395717
+-0.29141712
+0.11004484
+0.27352965
+-0.97926310
+0.39880085
+0.10180020
+0.04280269
+-0.80264591
+0.25856674
+0.58935392
+-0.21180242
+0.49447680
+0.24164140
+-0.18240756
+-0.20318240
+0.67486060
+0.39664805
+0.94645405
+0.79368937
+-0.51410052
+-0.88252440
+0.18465960
+0.35600555
+-0.76361799
+0.89330256
+-0.13098675
+-0.92414512
+-0.45596206
+-0.11566156
+0.25297582
+0.95253861
+-0.39173269
+-0.99838416
+-0.14178061
+0.88582563
+-0.46871382
+0.57051325
+-0.30460972
+-0.81730895
+0.19304669
+-0.15111452
+0.11690462
+0.28308475
+-0.91898690
+-0.92536651
+-0.96468561
+0.88645327
+-0.33651882
+0.32375777
+-0.93738879
+0.45695233
+0.69344008
+0.71379805
+-0.82899854
+0.37228024
+0.15465200
+-0.49326903
+0.11440670
+-0.47930169
+0.22030306
+0.24301338
+-0.69704279
+-0.29060543
+-0.09312516
+0.27581930
+0.30965126
+0.99784732
+-0.81982344
+-0.45196605
+0.54100740
+-0.56937811
+0.90732574
+-0.60392463
+0.01466835
+-0.26102388
+-0.92313070
+0.56946123
+0.13466740
+0.20047450
+0.93524849
+0.74913597
+-0.45115763
+0.40333140
+0.25491464
+-0.27858490
+0.95492506
+-0.90968035
+-0.21197003
+0.12001812
+-0.81339841
+-0.00454825
+0.95145977
+0.38770401
+0.06770134
+0.46814609
+0.20016849
+-0.81525823
+0.30427670
+-0.23795652
+-0.30501127
+-0.85956945
+0.81692111
+0.85577750
+-0.70577070
+0.18809462
+0.90183902
+-0.29331529
+-0.18092114
+-0.23261553
+-0.74055251
+0.34065247
+-0.73511654
+-0.56517982
+0.22422791
+0.74245691
+-0.92584759
+0.15251696
+0.25210118
+-0.56004399
+-0.81828740
+-0.65407035
+0.83472788
+-0.72898895
+0.80491769
+-0.19354856
+-0.40491867
+-0.09363431
+0.02806103
+-0.66159523
+-0.05963212
+-0.01958442
+0.37618768
+-0.51483610
+-0.82048535
+0.79063308
+-0.01909709
+0.63656151
+-0.24769878
+0.46849406
+-0.21095693
+0.73762894
+0.78832781
+0.52140462
+0.35045588
+-0.90637334
+0.69230545
+-0.43326235
+-0.17615044
+0.33081520
+0.59152806
+-0.25238353
+0.05003774
+-0.11875290
+-0.90657729
+0.85764956
+-0.23991525
+-0.67531410
+0.29303157
+-0.66641408
+-0.76165137
+0.08726120
+-0.51404029
+-0.79790458
+0.17790127
+-0.41719860
+-0.92482795
+-0.33148420
+-0.49077606
+-0.70824724
+0.26137400
+-0.13317418
+0.24675703
+0.12029076
+0.70093763
+-0.26901966
+-0.76333550
+0.80956602
+-0.26944023
+0.85496378
+0.13161957
+0.71084499
+0.73432660
+-0.53452605
+0.06991148
+-0.42842185
+0.74332833
+-0.25513977
+0.92384946
+0.10541499
+0.17191470
+-0.59567326
+0.56375194
+0.64791083
+0.26840770
+-0.79960263
+-0.85985187
+0.64861619
+-0.57342240
+0.43083143
+0.03483129
+-0.02638024
+0.38947511
+0.85623431
+0.10925341
+-0.50495946
+0.04717612
+-0.48197055
+-0.37358284
+-0.70427516
+0.34884393
+-0.10938072
+-0.03033561
+-0.72321922
+-0.34848845
+-0.18812311
+-0.93408138
+-0.74881825
+-0.24593782
+0.30440915
+0.03040099
+-0.44719994
+-0.18490362
+0.06921589
+-0.76568860
+-0.83911525
+0.26471865
+0.81425548
+-0.84560776
+0.49229360
+0.84003007
+-0.71890131
+-0.03621328
+-0.11429381
+0.76960945
+-0.95003917
+-0.16014326
+-0.13084310
+0.04950798
+0.38069773
+-0.44873571
+0.58377290
+-0.86375673
+-0.19474298
+0.17270470
+0.49372137
+-0.87206408
+-0.00246596
+-0.47262961
+-0.75225946
+0.96309161
+0.52987468
+-0.62377301
+0.52681601
+-0.18876469
+-0.69586694
+0.76315331
+-0.53020668
+-0.21027422
+0.20531690
+0.00009036
+-0.06009078
+-0.59245566
+-0.64378354
+-0.98858741
+-0.29891562
+0.27655756
+-0.49067163
+-0.16775107
+-0.10897708
+-0.01484966
+0.76121521
+-0.92785823
+-0.74275923
+0.13725877
+0.63297009
+-0.99043091
+-0.15140045
+0.76630247
+0.66636360
+0.93440616
+-0.06978452
+-0.02945560
+-0.69710433
+-0.27165437
+0.21183872
+0.12632585
+-0.72908869
+0.93298697
+0.01392615
+-0.15478885
+0.70752060
+0.18758047
+-0.86115256
+-0.71841553
+-0.12179357
+0.49937844
+-0.71692678
+0.25756884
+0.21028817
+0.24470222
+0.04004574
+0.42718053
+-0.93449050
+0.83216250
+0.41259897
+-0.96790853
+0.55138311
+0.19179172
+0.63384902
+-0.81277684
+-0.75567722
+0.21490573
+0.98904007
+-0.19671101
+-0.95860766
+-0.99814205
+0.13434359
+-0.19058609
+-0.55203831
+0.22294032
+-0.31467196
+-0.10854505
+0.43054036
+0.44105314
+0.97630975
+0.96321822
+-0.50899526
+-1.00128077
+-0.54331971
+0.90781325
+0.57914094
+-0.53420102
+0.97759444
+-0.38020925
+0.99996560
+0.71422531
+0.10181229
+0.74870787
+-0.01823107
+-0.24798912
+0.63748823
+0.41976720
+-0.69313126
+-0.73640146
+-0.39387101
+-0.88232210
+-0.32552439
+-0.90042517
+0.15432420
+0.05378695
+0.04401191
+-0.04191036
+-0.11726341
+0.53506104
+0.64366874
+0.89504099
+-0.69607484
+0.98306078
+0.58199509
+0.91821650
+0.63905368
+0.70868225
+-0.78500231
+-0.42645400
+-0.40498588
+0.57540751
+0.71761891
+-0.44304015
+-0.56240885
+-0.03950396
+0.31172809
+0.90469239
+-0.23260404
+0.64878809
+-0.25132844
+-0.08947965
+-0.84442299
+-0.68814827
+0.95225697
+0.41375101
+-0.10336941
+-0.59478254
+-0.38446781
+0.50460894
+0.08874903
+0.97616564
+-0.74160055
+0.68778016
+-0.58544145
+0.16696939
+0.36063363
+0.16865890
+0.44995295
+-0.02187675
+-0.35114503
+-0.63954923
+-0.05801514
+0.93683419
+0.07901612
+0.40761626
+-0.70276297
+0.20993815
+0.79851074
+0.57998850
+0.09297293
+-0.92200406
+-0.73683234
+-0.09928763
+0.18707407
+0.56089478
+-0.07888052
+0.55999407
+0.54502220
+0.09747555
+0.98274019
+0.52086347
+0.91613251
+-1.01736605
+-0.11889366
+0.14653764
+-0.19000818
+-0.68832605
+-0.31175892
+-0.31547330
+0.21144538
+-0.36675000
+0.07543627
+-0.56682458
+0.30584807
+-0.88123064
+-0.60245347
+0.35521818
+-0.30676143
+0.61431421
+0.46261257
+0.02924997
+0.47035212
+0.50274647
+0.75468697
+-0.72143172
+-0.70602837
+-0.68422324
+0.53714569
+-0.23446205
+-0.42075884
+0.13776473
+-0.77158096
+-0.26753601
+-0.22743628
+-0.70165589
+0.64917431
+0.32716250
+0.95302659
+-0.26606184
+-0.83323377
+-0.85543845
+-0.54669946
+-0.14974338
+0.62638491
+0.75924000
+0.93262527
+0.76012413
+-0.06387512
+0.54666894
+-0.54168627
+-0.82272939
+0.06578765
+0.55977463
+0.56645182
+0.45682835
+0.41038410
+-0.34241359
+-0.39406718
+-0.73623704
+-0.11743113
+-0.91709782
+-0.38413772
+0.22581757
+-0.16591616
+-0.93350508
+-0.48760268
+-0.11485588
+0.92338165
+0.07716917
+-0.98038146
+-0.36360621
+-0.86072912
+0.86028055
+-0.79935205
+0.18414839
+-0.28335608
+0.04061150
+0.10990290
+0.44617393
+-0.28156600
+-0.58314856
+-0.75529333
+-0.94011385
+-0.51217663
+0.88757288
+-0.77132162
+0.70903336
+-0.74307570
+-0.61368648
+0.34365734
+0.91600415
+0.43536507
+0.41330963
+0.64328835
+-0.69990349
+-0.18041890
+0.76359717
+-0.55073246
+0.16007347
+0.60211144
+0.63775692
+-0.74348557
+-0.19021695
+0.27542820
+0.71233404
+0.11308963
+0.67945380
+0.91426814
+-0.01947061
+-0.71190669
+-0.95740828
+0.48814282
+0.81598222
+0.68750878
+-0.13696647
+-0.63761122
+-0.50953479
+-0.60130173
+-0.06930037
+0.70746680
+-0.63705590
+-0.46204641
+-0.99094945
+0.91081305
+0.29890099
+0.62854145
+0.79879698
+-0.20189106
+-0.13539848
+0.78194644
+-0.82262442
+-0.39729282
+-0.93568989
+0.54138492
+0.36884716
+0.86403424
+0.53606650
+-0.74457891
+-0.37092277
+-0.80601060
+-0.01980016
+0.73110075
+-0.48962357
+0.45968798
+0.73653279
+0.90270987
+-0.71721190
+-0.14686567
+-0.21071293
+-0.02574822
+-0.25258895
+-0.96766344
+0.80681583
+-0.38348292
+-0.59331721
+-0.32331730
+0.73913471
+-0.66285440
+0.22957294
+0.57855502
+-0.16575249
+-0.77918814
+-0.35747183
+-0.75657576
+-0.90138643
+0.11636601
+-0.70114154
+0.74482908
+-0.33281341
+-0.38981084
+0.56722147
+-0.91472531
+-0.50255429
+-0.47236104
+-0.56449334
+-0.17982281
+0.45611728
+-0.36473893
+0.49735090
+0.69419905
+-0.92413405
+-0.66147229
+0.72048776
+-0.61258925
+-0.60161745
+0.19450771
+0.09690707
+0.00600598
+0.39664324
+-0.09153996
+0.47308068
+-0.17596282
+0.36436228
+0.23126488
+0.47147188
+0.80536927
+0.88543982
+-0.47683524
+0.12067457
+0.21897391
+-1.00753477
+-0.21578473
+-0.70281088
+0.73724973
+0.63043931
+0.07062320
+0.07778533
+0.46717758
+0.17071886
+-0.05133424
+-0.09562796
+0.99695029
+0.19973633
+0.49108994
+0.07048247
+0.70345962
+0.88352324
+-0.05207263
+-0.66999107
+0.59974219
+0.78276182
+0.80954034
+0.69206147
+0.08911529
+0.04652599
+-0.80905915
+-0.70145627
+0.95403377
+0.51002154
+0.19640480
+0.64168801
+-0.68378886
+-0.81290421
+-0.17186405
+-0.41083186
+0.32811963
+0.03890843
+-0.77182153
+-0.60741001
+-0.24482621
+0.03592080
+0.83558360
+0.01476745
+-0.65212131
+0.24485340
+0.50150320
+0.06001305
+-0.88169154
+-0.94996589
+-0.85139454
+-0.08494589
+0.30879876
+-0.12176392
+0.70078998
+0.62811002
+-0.04269556
+-0.33977545
+0.68723957
+-0.73955026
+-0.55241852
+0.94118950
+0.71221978
+0.58056697
+0.47533793
+-0.14833805
+-0.29597680
+-0.13327799
+0.61928449
+0.43399502
+-0.59386822
+0.12150130
+0.54351926
+0.02120182
+-0.19682956
+-0.29113489
+0.07773271
+-0.24712284
+-0.91897520
+-0.71611818
+0.61153037
+-0.87676882
+-0.91359885
+-0.18233391
+-0.75342193
+0.10041167
+-0.09911605
+-0.19247025
+-0.29108690
+0.71232250
+0.87812454
+-0.76570844
+0.96611385
+0.36198635
+-0.12544270
+-0.23605714
+0.00144849
+-0.40135814
+-0.96611486
+-0.40928100
+0.38325255
+0.67772064
+0.94143420
+0.16723510
+-0.30266956
+-0.30683106
+-0.69193549
+-0.94631020
+-0.03575467
+0.63378408
+-0.61541403
+0.39847529
+0.17303216
+0.88856444
+0.46696098
+-0.88364046
+-0.95113611
+0.32837736
+-0.44645767
+-0.22864158
+-0.84352171
+-0.26349811
+0.29750780
+0.02663619
+-0.33227671
+-0.02162934
+0.57847613
+0.33934984
+-0.92980581
+-0.42325631
+-0.46450026
+-0.83655029
+0.46822667
+-0.44379699
+-0.81884145
+-0.38529493
+-0.05081803
+0.20849922
+-0.91971502
+-0.52786261
+0.52290175
+0.47643627
+-0.08250242
+0.17548754
+-0.95041122
+-0.90252167
+0.59896158
+-0.77848432
+-0.38140366
+0.82941578
+-0.08393494
+0.20509383
+0.71993456
+0.43587325
+-0.89440063
+0.39926792
+-0.56714996
+-0.35257656
+-0.14402149
+0.54915282
+0.81404042
+0.08944734
+-0.31117808
+0.47464261
+0.72061383
+0.15009548
+0.10541477
+0.74032709
+0.38620942
+0.19235926
+-0.90056848
+-0.83039119
+0.92640981
+-0.29134324
+-0.16542283
+0.27028685
+-0.19029595
+-0.89932656
+0.61523054
+0.46354919
+-0.53511164
+-0.61692478
+0.47189420
+0.61887888
+0.63009633
+0.32137741
+0.39244560
+-0.77158325
+-0.02957532
+-0.60898947
+0.42373371
+-0.05383887
+-0.94929251
+0.40254354
+0.07239902
+-0.51963116
+-0.66073550
+0.16381117
+-0.75162460
+-0.70272723
+-0.42923358
+-0.78020366
+-0.26931099
+-0.23014516
+0.11360727
+0.33554386
+0.08521552
+0.46627053
+-0.85417592
+0.45191897
+0.41573553
+-0.84249087
+0.36893548
+0.06862271
+0.38919840
+0.69816421
+0.60063715
+0.34369799
+-0.01493802
+-0.59949498
+-0.52005409
+-0.33290764
+-0.04288623
+-0.91815598
+0.27964026
+0.90725441
+-0.65564605
+0.80595004
+-0.10056437
+-0.81079137
+0.98468071
+0.74182708
+0.50881219
+-0.99590175
+-0.79201862
+0.75345123
+-0.22385729
+0.42116115
+-0.91910289
+0.26221107
+-0.87722363
+0.34284852
+0.73747916
+-0.09340260
+0.28548746
+-0.00867800
+0.34158104
+-0.25998138
+-0.91844804
+0.99053760
+-0.50874641
+-0.37490226
+0.70106634
+0.86587003
+0.41655115
+0.93746421
+0.68335100
+-0.20127730
+0.92561871
+-0.84757243
+0.61455161
+0.87060653
+0.18547005
+0.41830440
+0.97947400
+0.76892303
+-0.85476047
+0.26013225
+0.33108260
+-0.42071573
+-0.55567160
+-0.70430079
+0.59962901
+-0.83349616
+-0.15383569
+0.34525046
+0.38867355
+0.58178687
+0.92665597
+-0.44581105
+0.62615098
+-0.79114775
+-0.46094719
+0.25711541
+-0.91736025
+-0.13584262
+-0.64426794
+-0.31679478
+-0.08891525
+0.17415404
+-0.23616730
+-0.94520041
+-0.04971782
+-0.27811072
+0.76959703
+-0.85751799
+-0.08345067
+0.95201674
+0.79463589
+0.91903876
+0.92176903
+0.36080570
+-0.89041514
+0.87213906
+0.02256712
+0.98941201
+-0.74366196
+-0.89636977
+0.62150193
+-0.22320247
+-0.79125313
+-0.65103595
+-0.46517462
+-0.27578947
+0.44768533
+-0.68018183
+-0.20928203
+0.07863835
+-0.38849842
+-0.66052962
+0.29755712
+-0.41359090
+-0.00967736
+-0.95844854
+0.87558660
+0.44385582
+-0.35382074
+0.82721714
+-0.69698014
+-0.17732687
+-0.40624863
+0.54068731
+-0.57912142
+0.16875255
+0.33762925
+-0.72284677
+-0.19717260
+-0.09446659
+0.01826960
+0.76064403
+-0.93432785
+0.32122195
+0.51569223
+-0.16046858
+0.07831621
+-0.44823009
+-0.14813447
+0.20504951
+-0.61883119
+0.76671505
+-0.60020792
+0.54904377
+0.45628524
+0.03630030
+-0.64210638
+0.79861569
+0.89452529
+-0.68015456
+-0.29229778
+-0.03942704
+0.41169465
+-0.07024658
+-0.47946185
+0.63679409
+0.57259631
+-0.29731619
+0.82970989
+-0.14031988
+0.19529355
+0.73017704
+0.55563176
+-0.02761143
+0.35466409
+-0.87678098
+0.60247481
+0.16810513
+0.22116709
+-0.55285782
+0.23888540
+0.64753819
+0.25660121
+0.66651416
+-0.66145220
+0.61328411
+0.72637129
+0.08381438
+0.63535488
+-0.81657782
+-0.05326039
+0.57168293
+-0.70963034
+-0.76191978
+-0.14730120
+-0.19457841
+0.17883325
+-0.80315362
+-0.70063919
+0.38107324
+-0.57821903
+0.28279364
+-0.36724317
+0.17225277
+0.07736039
+-0.18279576
+0.61076999
+-0.37147111
+-0.56180578
+0.24211478
+0.67857742
+-0.55412591
+-0.46025413
+0.77757728
+0.45463312
+-0.85114813
+-0.86669761
+0.96734536
+0.85582018
+0.29222012
+0.12648201
+0.69089317
+-0.80827606
+0.28017676
+-0.77337037
+0.69095695
+0.99733114
+0.67650092
+-0.00894284
+-0.96786847
+-0.17269617
+0.51722741
+-0.29831219
+0.45140195
+0.72177482
+-0.44179034
+0.09738278
+0.82586563
+-0.37269449
+-0.34052098
+-0.77981491
+0.46183240
+-0.77284570
+-0.77029428
+0.38151860
+-0.45428479
+0.85829329
+-0.12515438
+0.71589541
+0.91690290
+0.21855092
+-0.08233315
+0.57500935
+0.94244182
+-0.78929001
+0.63902891
+-0.34203625
+0.54577196
+0.46384907
+-0.75591813
+-0.05784321
+0.92518234
+-0.67713359
+0.05138421
+-0.01976198
+0.25597155
+0.69217217
+-0.35797220
+0.46719551
+-0.71482307
+0.58887255
+-0.31625992
+0.13233685
+0.58208406
+-0.16136301
+0.56216395
+-0.48147786
+0.11671090
+-0.12685925
+-0.58996391
+0.03599226
+0.12347090
+0.81546617
+-0.33944070
+-0.59771669
+-0.35307842
+-0.09434772
+-0.05994171
+-0.29238677
+-0.68635708
+0.58611178
+-0.98708418
+0.60773301
+0.69277143
+-0.01435685
+-0.81638207
+0.67471611
+-0.67405295
+-0.91187972
+0.31614816
+0.86704922
+0.52462649
+0.35746396
+0.23142719
+0.22786736
+0.89124167
+0.25190175
+-0.31196320
+-0.39844799
+0.77263856
+-0.86158535
+0.05814493
+0.18497372
+0.66797876
+-0.22247189
+0.71198058
+0.20230460
+0.78444779
+-0.22646910
+0.18921447
+0.96784723
+0.99877608
+0.29523051
+0.81631255
+-0.03421003
+-0.70431000
+-0.62248781
+0.51018047
+0.90391517
+-0.90113769
+0.97904289
+-0.14791822
+-0.82250518
+0.26522422
+-0.87273850
+0.90363276
+0.40534878
+0.64509702
+0.76451230
+-0.86274751
+0.54167056
+0.45883274
+0.37535489
+0.86801958
+0.63912868
+0.98723900
+-0.39656979
+-0.34886491
+0.10377109
+-0.77503626
+-0.13028371
+-0.00712281
+0.29654276
+0.66597342
+0.24740088
+-0.54926190
+-0.07474643
+0.80279315
+0.71070397
+0.41597664
+0.80545223
+-0.78313112
+-0.34695977
+0.07049787
+0.03900576
+0.50452197
+0.68587017
+-0.17626768
+-0.83881782
+-0.07275867
+-0.09003448
+-0.87534952
+-0.15031856
+0.69017494
+-0.27911490
+-0.63116080
+0.07305694
+-0.17510927
+0.44444156
+0.08384120
+-0.46256655
+0.26973271
+-0.06620044
+-0.13505334
+-0.28090668
+0.77987039
+-0.20436257
+0.19764912
+-0.65715289
+-0.95583647
+-0.66322860
+0.22213495
+0.58172727
+0.27423882
+-0.76024145
+0.94142580
+-0.49467301
+0.01080692
+0.12193429
+-0.15149301
+0.81575203
+-0.26134574
+-0.30494624
+-0.48535478
+-0.85987115
+0.39012814
+-0.15871650
+-0.52483886
+0.66124237
+0.18324673
+0.74612021
+0.30548525
+-0.91665094
+-0.29513836
+-0.77940494
+0.89209259
+0.47751868
+-0.31251001
+0.99128962
+0.59385180
+0.78008568
+-0.79967737
+0.44544148
+0.29335201
+0.95948088
+0.32580113
+0.14462519
+-0.54561102
+-0.85481191
+0.89467573
+0.00233734
+0.29312670
+0.28128016
+-0.34653533
+0.78335214
+0.10104609
+0.81732404
+-0.97059300
+0.67869425
+0.03362155
+-0.85347717
+-0.05382001
+0.25375366
+0.14950466
+0.90539193
+0.11666918
+0.60231757
+0.42547452
+-0.95415233
+0.33410096
+0.85147917
+0.46318817
+-0.43333417
+0.49379754
+0.77537775
+-0.17684561
+-0.57269830
+0.05982423
+0.00711989
+0.56034184
+0.71756983
+-0.78942746
+0.11203814
+0.66637123
+0.74722302
+-0.80051473
+-0.24113613
+-0.73735598
+-0.38054711
+0.26398301
+-0.24515402
+0.76805449
+0.70955682
+0.88491845
+-0.71696350
+0.14952672
+0.12837327
+0.75544596
+-0.73444226
+0.46266961
+0.71761310
+0.53745818
+-0.34502095
+-0.71229485
+0.19881666
+0.49759507
+-0.29182160
+0.19117486
+0.69884431
+-0.33599710
+-0.71721724
+0.24846423
+-0.64748484
+0.08935130
+0.70826435
+-0.58901805
+0.17695189
+-0.21875137
+0.52240705
+0.77785742
+0.94696438
+0.06950903
+-0.27991754
+0.06449640
+-0.66818613
+-0.54658133
+-0.44849047
+0.86597568
+-0.10705585
+0.71735409
+-0.52454575
+0.66968468
+0.90882236
+0.25335045
+-0.38013736
+-0.34740223
+0.88693855
+-0.42147015
+-0.30157383
+0.11934547
+0.46290859
+-0.12019964
+-0.87783902
+-0.81361232
+-0.84628397
+0.93454203
+-0.47202747
+-1.01410114
+0.60485268
+-0.16738671
+-0.00939550
+0.46144754
+0.35172793
+0.64647660
+-0.54805227
+-0.28139354
+0.40659904
+-0.64963251
+0.29813966
+-0.74435856
+0.88109186
+-0.37867710
+0.13699724
+-0.78125749
+0.82267117
+0.08491866
+-0.88107185
+-0.20363579
+-0.55446510
+-0.68280129
+0.85816225
+0.32635085
+1.00447210
+-0.88515646
+0.01308939
+0.10740411
+0.46938304
+0.69628806
+-1.01394114
+0.52356219
+0.55853519
+0.95997719
+0.97596145
+-0.57525164
+0.26620070
+-0.24993083
+-0.56776796
+-0.28073378
+-0.91682036
+0.69508039
+0.02806086
+-0.89865296
+0.68295079
+0.00552242
+-0.15960980
+-0.56869648
+-0.19699506
+0.98136036
+0.35368736
+0.64049201
+-0.32993168
+-0.88144927
+-0.79855928
+0.21731944
+0.94929174
+0.78876522
+-0.34284227
+-0.78881774
+0.91464695
+-0.37252488
+-0.45641906
+-0.38387732
+0.23661418
+-0.47276481
+0.46069658
+0.34125795
+0.88599424
+0.69873203
+-0.63381814
+0.69877956
+-0.09054355
+0.24273604
+-0.35704139
+-0.68074093
+0.72195991
+0.16960590
+0.68082071
+-0.81743631
+-0.73058687
+0.30717848
+0.24730724
+0.31804686
+0.01112645
+0.03762579
+-0.01804513
+0.09322327
+-0.38274882
+0.49252743
+0.47961264
+-0.38744073
+-0.07240932
+-0.62726680
+0.09775047
+-0.95267308
+0.64614291
+0.37197996
+0.50575277
+-0.33450078
+-0.30735755
+-0.81087672
+0.64685852
+0.18817358
+0.22859106
+-0.61950404
+-0.56583289
+-1.03762731
+-0.79482718
+0.68261842
+-0.56184259
+-0.93172130
+-0.36568720
+-0.18550096
+0.82326139
+0.50087621
+-0.51061187
+0.50256397
+-0.84607531
+-0.88175964
+-0.65959877
+0.47183685
+-0.94108150
+0.38133161
+-0.84047891
+-0.12540277
+0.11601822
+0.16192486
+-0.21809842
+-0.01086205
+-0.65754507
+-0.67632626
+-0.94968763
+-0.47429662
+-0.10430486
+-0.33885845
+-0.84540034
+-0.31604822
+0.76862805
+0.45727783
+-0.95014974
+0.67681155
+0.73542204
+-0.93941438
+-0.63742230
+-0.64371930
+0.97353390
+0.54170600
+-0.70414143
+0.11694093
+-0.19096777
+0.10404486
+-0.55303225
+-0.90100107
+0.97603338
+-0.15357832
+-0.74753908
+-0.85263495
+0.88184631
+0.53354658
+0.51979325
+0.44650074
+0.11919709
+0.52626188
+-0.10396654
+0.32557072
+-0.48231796
+0.46209441
+-0.29064318
+0.32959936
+0.81256067
+0.22774891
+-0.81747630
+-0.91447621
+-0.52911331
+-0.02057505
+-0.89247630
+-0.73807468
+0.78725343
+-0.24849103
+-0.06371364
+-0.47149645
+0.42071581
+0.04224673
+0.58235139
+-0.24493719
+0.86635071
+-0.27476205
+-0.74952668
+0.18555635
+-0.61891682
+-0.12480382
+0.48932785
+0.57298646
+0.79155766
+-0.48259704
+0.53601059
+-0.95697451
+0.75160873
+-0.69798028
+-0.08718008
+-0.15305002
+-0.91773339
+0.40610052
+-0.71673971
+-0.44883317
+0.23657541
+0.34388952
+-0.06625327
+0.20059829
+0.55608726
+-0.71387996
+0.11941262
+0.31707528
+0.28242312
+-0.40591224
+-0.79853431
+0.74357490
+-0.96037160
+0.47942555
+0.87099891
+0.36766343
+-0.40969312
+0.18818104
+-0.64186277
+0.16135831
+-0.26160326
+0.60284213
+0.81747800
+0.54431985
+0.22020280
+-0.68560709
+0.04098091
+-0.55553937
+-0.06302102
+0.87788758
+-0.05429164
+-0.08258127
+0.89654189
+-0.60297740
+-0.69060652
+-0.70017942
+0.58426636
+-0.20248659
+-0.01662090
+-0.90002688
+-0.71178860
+-0.83015102
+0.41158437
+0.75205472
+0.26514295
+0.64457114
+0.91783747
+-0.11894943
+-0.84806376
+-0.49750585
+0.07568733
+-0.71833101
+-0.56464855
+0.87630999
+-0.06736018
+0.33902554
+-0.58513421
+0.66048294
+0.77498677
+0.68548571
+-0.31976211
+-0.81586817
+0.92049745
+0.34908463
+0.46239633
+0.11960161
+0.93459381
+-0.93515471
+-0.81356885
+-0.24082157
+0.13038528
+0.82472369
+-0.32983687
+0.14732978
+0.90749193
+0.77084525
+-0.00664401
+-0.89747948
+-0.61280583
+-0.29282067
+-0.55033679
+0.11456786
+0.26527600
+-0.53388482
+-0.01778438
+0.52518824
+-0.37498151
+-0.55328269
+-0.25133659
+-0.24153139
+0.88643453
+0.57484389
+0.73206753
+-0.70919372
+-0.78570562
+0.50515226
+-0.65545171
+-0.67123179
+0.42544537
+0.32483424
+-0.69244178
+0.06137924
+0.56881434
+0.01148641
+0.92152296
+-0.47007180
+0.51273479
+-0.97893128
+-0.47219694
+-0.29354941
+-0.80070052
+0.37107180
+-0.40650657
+-0.13253998
+-0.15606547
+0.03049748
+-0.63602508
+-0.57091479
+-0.34485343
+-0.06779312
+0.20561961
+-0.96803245
+-0.73677627
+0.04699890
+0.20503274
+0.39399291
+-0.32270921
+-0.10990957
+-0.01542658
+-0.75324817
+0.38978379
+-0.07142297
+0.75313696
+0.10086708
+-0.12682260
+0.61641250
+-0.98268863
+0.89040811
+0.03170947
+0.27544189
+0.38066369
+-0.12338698
+0.07600369
+-0.34264342
+0.36319443
+-0.75728502
+0.99018647
+0.52573120
+-0.93598728
+-0.98756931
+-0.11766189
+-0.83772009
+-0.05734156
+-0.98239469
+0.05550181
+-0.53953613
+-0.68405492
+-0.92348478
+-0.42305035
+0.47580613
+-0.13005845
+-0.53500137
+-0.47543560
+-0.76634328
+-0.71885830
+-0.67137143
+-0.74058713
+-0.21154006
+-0.37279937
+0.42195580
+-0.81227639
+-0.61203496
+0.52694369
+-0.98141057
+0.18437749
+0.33858426
+-0.30551666
+-0.18619345
+-0.79298222
+-0.65482335
+0.81402696
+0.27114661
+-0.31505397
+0.58811486
+0.18519109
+-0.48087924
+-0.55401728
+0.95119010
+0.10539128
+-0.43091469
+0.36714999
+0.48997731
+0.84715961
+0.64294319
+-0.82967017
+-0.67260042
+0.58875536
+0.82739703
+0.80877952
+-0.42897394
+0.81538563
+-0.16493245
+-0.32527713
+0.13850553
+0.42594499
+0.10423296
+-0.95631802
+0.46027885
+-0.23303140
+0.71859687
+0.41678833
+0.02073978
+-0.90641741
+0.91244701
+-0.09144874
+0.19993235
+0.02439227
+0.30117384
+0.03193740
+0.11633280
+-0.27313384
+-0.16686905
+-0.86055560
+0.67788010
+-0.55548872
+-0.33637541
+-0.16416232
+-0.38439040
+-0.72459138
+0.45032081
+-0.26666091
+-0.15308284
+-0.33116225
+-0.45646387
+0.65180343
+0.13834788
+-0.05099804
+0.28414565
+0.49470711
+0.61022012
+-0.76806857
+-0.75072877
+0.43192703
+0.31225784
+-0.05650258
+0.30531641
+0.90627308
+-0.42349886
+-0.17514396
+0.13347073
+0.31010236
+0.26848780
+-0.41834043
+-0.93339900
+-0.77082332
+0.85902775
+0.74453853
+0.20204096
+-0.44392629
+0.71308870
+-0.72779695
+0.50899605
+0.87087299
+0.32487131
+-0.40528532
+0.37177402
+0.54086461
+-0.40849062
+-0.45699656
+-0.86470801
+-0.19613734
+-0.24986321
+-0.58312783
+0.03618406
+-0.30737955
+-0.61481324
+-0.83010078
+-0.05880225
+0.87867746
+-0.75334855
+0.42634084
+-0.83945801
+0.65762196
+-0.16891016
+-0.44574254
+0.41975554
+0.31895653
+-0.08640330
+0.51650338
+-0.58040585
+-0.58749062
+-0.78679727
+-0.87350529
+-0.51771762
+0.10829778
+0.38070040
+0.71198234
+0.78706332
+0.36281501
+-0.77327787
+0.42591939
+0.81723867
+-0.03487352
+-0.45799106
+0.54012091
+0.31208510
+0.03043045
+-0.91413914
+-0.41640096
+-0.54594471
+0.53608105
+-0.27057514
+0.99284038
+0.75069845
+0.84094967
+-0.92804027
+0.49331097
+0.27583894
+0.08906773
+-0.18123206
+-0.19567191
+-0.98213079
+-0.12968627
+0.94489404
+-0.29928643
+0.66917945
+0.19408571
+0.87964149
+0.34016339
+-0.86238914
+-0.84160212
+-0.73546982
+0.31650076
+0.48186959
+0.45000869
+0.75939585
+0.24651106
+0.57339372
+0.19684441
+0.14779888
+-0.09055238
+0.75828269
+0.79510044
+0.34234657
+-0.61393809
+0.18847313
+0.82850885
+-0.61673813
+-0.65632831
+0.38941318
+0.82989701
+-0.79423125
+0.40393491
+-0.48731328
+0.95794076
+0.01761548
+-0.96081804
+0.45888870
+-0.97978011
+-0.98670788
+-0.15299735
+0.00132661
+-0.79056594
+-0.67246079
+0.23513175
+-0.84346674
+-0.80751334
+-0.70545939
+-0.49263214
+-0.55331712
+-0.50778037
+0.93189480
+0.76102159
+0.69878084
+0.40612889
+-0.71130117
+-0.95871314
+-0.29806001
+0.97627902
+-0.50112357
+0.91487425
+0.01143500
+-0.73343041
+0.51625675
+0.00423182
+-0.54741409
+0.18879104
+-0.26403327
+0.98659527
+-0.60656687
+0.56789559
+-0.05007765
+-0.55323684
+-0.52001905
+0.56335271
+0.48509112
+0.86205734
+0.03748583
+0.02599120
+-0.24487393
+0.60103399
+0.30360051
+-0.85870744
+-0.03623513
+-0.30652322
+0.44865157
+0.61439379
+0.49989969
+0.06159008
+-0.52675560
+0.37957698
+0.41433868
+-0.39558738
+0.45813519
+0.10025263
+0.52712425
+0.95459352
+0.51756024
+-0.76645806
+0.74839759
+0.18895972
+0.21383607
+0.28189325
+0.58471620
+0.72342801
+0.05988681
+-0.93242873
+0.87301278
+-0.14748436
+0.55632925
+0.07161427
+0.70686340
+-0.96302766
+0.58631408
+0.14791059
+-0.68108109
+-0.91737192
+-0.08873057
+0.80287802
+-0.43041253
+-0.08103144
+0.76582944
+0.09858918
+0.44355416
+0.00220120
+0.35441339
+-0.97294953
+-0.44993281
+-0.47079343
+-0.44259864
+-0.04229897
+0.72019029
+-0.66893023
+0.56244028
+-0.70544842
+0.27314496
+-0.22869366
+0.13773489
+0.50874531
+-0.15447658
+-0.23287606
+-0.21629775
+0.43692207
+-0.13574791
+-0.51520956
+0.61420441
+0.44920087
+-0.15428555
+-0.12327385
+-0.09789729
+0.96797466
+-0.69279397
+0.20458841
+0.21667528
+0.72621608
+0.64554536
+-0.64159983
+-0.02153540
+-0.51647973
+-0.85354163
+0.67264557
+0.41062367
+0.75466835
+0.32743561
+-0.06762326
+0.26211941
+0.16252434
+-0.86218432
+-0.21602970
+-0.75113821
+-0.00170362
+0.85645235
+0.57621324
+0.95802486
+-0.48530680
+0.10952461
+-0.08966541
+0.69324052
+0.48387122
+0.99160218
+0.84261048
+0.98714304
+-0.91277585
+-0.03539205
+-0.28910053
+-0.74448532
+-0.45796901
+0.70171046
+0.86408079
+-0.78186649
+-0.90176136
+-0.56287497
+0.21244109
+-0.36339927
+-0.91721557
+-0.43566692
+-0.78304279
+0.83226967
+0.39163888
+-0.03348136
+0.70509136
+0.41157544
+0.91335833
+-0.87888637
+0.07231128
+-0.78080662
+-0.46862805
+-0.02892977
+-0.96909146
+0.99206018
+0.92333555
+0.34802663
+0.25477207
+-0.04748857
+-0.20404929
+0.04272926
+-0.93580186
+0.41355491
+-0.76003367
+-0.17771715
+0.88396990
+-0.78414184
+0.11643434
+0.95627010
+0.23114908
+-0.88798223
+0.66754675
+0.18820143
+-0.15040475
+-0.30580133
+-0.58972642
+-0.18183297
+-0.32196254
+0.95982611
+0.28194916
+0.27050090
+0.14327049
+0.95875466
+-0.30817044
+-0.57855827
+-0.21392614
+-0.87120657
+-0.00179404
+-0.49311042
+-0.84853160
+-0.26162511
+-0.45946270
+-0.90290497
+-0.79026258
+0.43805718
+0.59161496
+0.79790151
+0.36417103
+-0.30103749
+0.21006584
+0.36323380
+-0.89670978
+0.77775228
+0.06711388
+-0.81722119
+0.27139783
+-0.12271118
+0.84006131
+-0.88691466
+0.71751988
+0.38702083
+0.26676273
+0.95931160
+-0.40608054
+0.50600159
+0.92141056
+0.17554116
+-0.00466484
+-0.72630194
+-0.45468533
+0.85653472
+-0.07718188
+0.30360055
+-0.23417217
+-0.65411401
+0.10261440
+-0.65733629
+-0.30389667
+-0.72835541
+0.25925624
+-0.24785608
+0.27533519
+0.62521672
+-0.41676402
+0.49850917
+0.51404262
+-0.64091727
+-0.57294783
+-0.87758107
+-0.62562701
+-0.15872598
+-0.07969624
+0.00056684
+-0.40536034
+-0.14010024
+0.92603779
+0.65526307
+-0.54787484
+-0.54444283
+0.06294286
+0.70798326
+0.51745403
+0.76610041
+-0.39387268
+-0.23561794
+0.72825420
+-0.41987574
+0.50506330
+-0.94826977
+-0.32391149
+0.91327250
+0.08179724
+0.30944264
+-0.71638566
+-0.71386784
+0.29758382
+0.37537313
+-0.25281245
+-0.03761089
+0.79576123
+0.90787387
+-0.92554782
+-0.71369037
+0.38218248
+0.46653998
+0.25735426
+-0.59054825
+0.34884012
+-0.88799377
+-0.90328519
+-0.25188613
+-0.53893057
+0.81300306
+-0.60603225
+0.20097995
+-0.80089252
+-0.23203599
+0.90985703
+0.25800562
+0.00834990
+-0.12075937
+-0.58744183
+0.59749734
+-0.57870343
+0.20747149
+0.16396606
+0.47041738
+0.27744126
+-0.00055110
+-0.87169567
+-0.30294490
+0.35837460
+0.30906892
+0.75662279
+-0.88015765
+-0.60750476
+0.65300453
+0.83381426
+0.84773540
+-0.35796934
+-0.68495986
+0.73249078
+-0.90349641
+0.21470082
+-0.55632767
+0.00164378
+-0.81838991
+-0.59667960
+0.22381055
+-0.91994065
+-0.84002855
+-0.61875039
+-0.98181614
+0.06068695
+-0.73154825
+-0.63572377
+0.06260371
+0.81657195
+-0.36181408
+0.62682116
+-0.78891608
+-0.71024159
+-0.84404337
+0.02293098
+-0.66391015
+-0.51171866
+-0.80521190
+-0.77873512
+-0.56617451
+0.42881060
+-0.46173209
+-0.09890062
+-0.35532451
+-0.98852274
+-0.79303508
+0.80006146
+-0.25483936
+0.64645112
+-0.29531288
+-0.75867751
+0.86443722
+-0.27851146
+-0.19251102
+-0.19248104
+-0.25640577
+-0.48908043
+-0.16288769
+-0.42063749
+-0.40404779
+0.75213623
+-0.97859669
+0.31447387
+-0.41176116
+0.90401387
+0.56859970
+0.45592558
+0.86194468
+-0.14769399
+-0.31458265
+-0.50628090
+0.23295474
+0.19891012
+-0.44796187
+-0.30626351
+0.80850053
+0.35713279
+-0.57367504
+0.31553316
+-0.78512567
+-0.40028602
+-0.96717028
+-0.10459620
+-0.34389597
+-0.05251253
+0.66960764
+0.27481616
+0.58805442
+0.16092110
+-0.75001432
+0.65568399
+0.32458353
+0.02228975
+-0.65792814
+-0.83116280
+-0.94426253
+0.24062502
+-0.55858690
+-0.82455993
+-0.22707635
+0.91878259
+0.08451271
+-0.95727889
+0.98180258
+0.39704990
+0.13106048
+-0.39322622
+0.36529431
+0.22086298
+-0.68767944
+-0.80407445
+0.42899211
+0.48934265
+-0.38415408
+0.74064547
+-0.68743665
+-0.29532495
+-0.73828736
+0.79869366
+0.02515076
+0.96966969
+-0.25144454
+-0.32292789
+-0.80878819
+-0.38042247
+0.34119155
+-0.38188569
+0.18139757
+-0.14923336
+-0.96130299
+-0.33366998
+0.69221282
+0.59803007
+0.28601524
+-0.39646508
+-0.54067640
+0.96519479
+0.09456855
+-0.39699867
+-0.53520468
+-0.51395089
+-0.14294142
+0.67750983
+-0.10699265
+-0.50452599
+0.22251409
+-0.06230006
+0.77251851
+-0.20296411
+-0.79862030
+0.53165192
+-0.74122546
+-0.56049544
+0.69279901
+-0.05021504
+-0.80491413
+0.35295602
+-0.71577132
+0.22181392
+0.21307237
+-0.68000090
+0.23018370
+0.54024157
+-0.61203789
+-0.61854894
+-0.72969981
+-0.78005458
+0.70921146
+-0.82542620
+-0.33331426
+0.45551048
+0.64090858
+-0.41584196
+-0.74127926
+0.90256991
+-0.02274085
+0.18484502
+0.12354483
+-0.63512671
+0.56310437
+0.43360909
+0.04345620
+-0.77359340
+0.23311947
+0.24660958
+0.72098787
+0.65285209
+0.00504067
+0.47818300
+-0.01804720
+-0.52274277
+0.73207370
+0.72409206
+0.19717770
+0.10320624
+-0.63435705
+-0.59880174
+0.43998040
+-0.83093810
+-0.17892670
+0.12249850
+-0.83249096
+0.73953904
+0.60446731
+-0.48886930
+0.37111964
+-0.47168595
+-0.23274422
+0.66249337
+0.71356413
+-0.96154983
+-0.33957677
+-0.39477037
+-0.64792106
+-0.01959759
+-0.03483340
+-0.18473589
+0.89731293
+0.37400354
+-0.57633396
+-0.14608980
+-0.69681778
+-0.01647896
+-0.86521128
+0.59110912
+-0.58490299
+0.82664175
+0.18343412
+-0.61195147
+-0.61103513
+-0.40487208
+-0.76023210
+-0.83892394
+-0.57565342
+-0.31960976
+0.92043304
+-0.17727735
+-0.63274994
+-0.24533041
+0.89667464
+0.45519688
+-0.79913053
+-0.75306446
+-0.23722830
+-0.87005911
+-0.97049413
+0.58643885
+0.10128030
+-0.75095161
+-0.53397419
+0.65177562
+-0.07091225
+0.38582864
+-1.00999636
+0.85922466
+-0.09595793
+-0.50135418
+-0.76881522
+0.46740975
+-0.25186587
+0.82708552
+0.40435529
+-0.41521551
+0.64120325
+0.92886144
+-0.86264552
+0.78205577
+-0.61841802
+-0.14451778
+-0.78651824
+-0.88764013
+-0.07349159
+-0.37621044
+0.16918945
+-0.49224863
+-0.20325733
+-0.48237153
+-0.55784729
+-0.71804302
+0.69051285
+0.27946611
+0.78085523
+-0.26844993
+0.03139493
+0.64913024
+0.97000435
+0.15500899
+-0.33574385
+-0.38580141
+0.68966296
+0.95055476
+-0.76201665
+-0.86751080
+-0.12695509
+-0.35120377
+-0.00193217
+0.06131645
+0.40697535
+-0.14731915
+0.30540341
+-0.41147278
+-0.05449097
+-0.23848831
+-0.12307508
+-0.78277381
+-0.63553858
+-0.12455509
+-0.24833768
+-0.12754742
+-0.12500254
+-0.90420823
+-0.92024710
+-0.98765908
+-0.04053945
+0.15933867
+-0.84427190
+-0.17420567
+0.45621160
+-0.60485614
+0.12322165
+0.59654447
+0.59504148
+-0.91722899
+0.36318243
+0.79391886
+-0.44163911
+0.61493547
+0.56552966
+0.11570348
+-0.49000359
+-0.79031943
+0.75169215
+-0.71612080
+-0.39854778
+0.27361799
+-0.96651136
+0.18443762
+0.77058078
+-0.08181796
+0.76506922
+-0.28561152
+-0.45027113
+0.25738808
+-0.59320229
+0.54774448
+0.94645194
+0.26012042
+-0.87940857
+0.63465459
+0.71934418
+0.43039788
+0.25414283
+0.90060070
+0.37111233
+-0.36504414
+-0.50207190
+-0.45305881
+0.41511741
+-0.46535605
+-0.42534475
+-0.91082006
+0.50618899
+-0.04462142
+-0.29343097
+-0.69428024
+-0.12006642
+-0.28188023
+-0.34819693
+-0.80520405
+-0.61372338
+0.44485237
+-0.62034756
+0.20848935
+0.41657458
+-0.33017998
+0.77698575
+0.97830831
+-0.80278158
+0.14412940
+0.69230826
+0.08961082
+0.41678590
+0.40643295
+0.18800443
+0.05634934
+0.09497969
+0.97691721
+0.42254216
+0.17178327
+-0.91908591
+-0.57585273
+-1.00040094
+0.45120663
+0.45622732
+-0.68921067
+0.00980240
+0.58146865
+0.47303337
+-0.74801837
+-0.66297154
+0.28111463
+0.38839063
+0.67646657
+0.61186894
+-0.22259983
+0.18234611
+0.81790834
+0.69037701
+0.64749124
+-0.41777668
+0.64689128
+0.93753411
+-0.22323418
+-0.41590345
+-0.66363513
+0.90725367
+0.09388716
+0.85167252
+-0.42747047
+-0.25679016
+-0.37114287
+-0.51733593
+0.83562142
+0.24163939
+0.41465263
+0.65612549
+0.35630718
+0.55395194
+-0.47894901
+0.05321747
+0.35036183
+0.27892467
+0.26399609
+-0.48167067
+-0.30748635
+-0.67486817
+0.20174311
+-0.82514947
+0.08863872
+-0.27745491
+0.28491754
+-0.13827594
+0.78864281
+-0.42765828
+-0.97651199
+-0.03754555
+0.53450066
+-0.24614607
+-0.29173684
+0.18483881
+-0.57627958
+0.90093073
+-0.72130707
+-0.12725259
+0.33343985
+0.60215058
+0.06147868
+0.51265760
+-0.07756173
+0.11276156
+0.37685237
+0.57665470
+0.78616570
+0.29523053
+-0.05705721
+0.08190266
+-0.54550610
+0.78664760
+-0.63909694
+-0.02364749
+0.31907137
+-0.49471612
+0.24464406
+-0.37044031
+-0.79342210
+0.80823293
+-0.95091688
+0.87690471
+-0.12465711
+-0.32963802
+0.24946203
+-0.87463935
+-0.67061622
+0.08896671
+-0.92389908
+-0.26510914
+-0.57704168
+0.67377461
+0.96945470
+-0.27297488
+0.54905025
+0.11885495
+0.57557081
+0.13276244
+0.59463833
+0.76582942
+0.49062943
+-0.53002272
+0.50002312
+0.09160959
+0.35660077
+0.89306641
+-0.46195932
+0.87125548
+0.31505550
+-0.39134040
+0.98180317
+0.40596453
+0.59852518
+0.33686837
+0.27205235
+0.82587480
+0.79567457
+0.56635094
+-0.22190855
+-0.35013624
+0.05254387
+0.57579291
+0.33958278
+0.40659752
+-0.07011215
+-0.73052173
+-0.49965936
+-0.88055746
+-0.18716199
+0.31879682
+0.16123768
+-0.04705361
+-0.63885021
+0.50540034
+-0.11447063
+0.62810882
+0.42409600
+0.16784085
+-0.92243779
+-0.40151523
+-0.05253348
+-0.95401762
+-0.09902944
+-0.61280189
+0.24231855
+0.24156941
+-0.21348889
+0.41913401
+-0.52671195
+-0.99149063
+-0.20700423
+0.41914165
+-0.17830702
+-0.54081000
+0.25829821
+0.86318554
+0.17886011
+0.27537191
+-0.80279921
+-0.70700825
+-0.18686474
+-0.96139844
+-0.86133364
+-0.63915501
+-0.53932596
+0.86933964
+-0.72343934
+0.60953807
+-0.50533709
+-0.93679424
+-0.02027488
+0.21679028
+-0.48456661
+0.73083823
+0.04681863
+-0.72710529
+0.11130952
+-0.96663941
+0.11625101
+-0.23838004
+-0.54815544
+-0.10698646
+-0.29990159
+0.13682182
+-0.90957256
+0.31049416
+-0.48223793
+0.77645073
+-0.56824543
+-0.87035032
+-0.73852309
+-0.41219186
+-0.27843142
+-0.22110727
+0.86504782
+-0.79868656
+0.83944412
+-0.46716700
+0.03423882
+-0.91372899
+-0.45597029
+-0.76293938
+0.24985894
+-0.10408088
+0.33642037
+-0.07056638
+0.16375924
+0.35101797
+-0.20511024
+-0.01242977
+0.14031813
+0.04004902
+0.89994562
+-0.89821422
+0.79410312
+-0.61727760
+-0.56334568
+0.77653482
+-0.12343361
+0.25912791
+0.13874211
+-0.51751262
+0.24860066
+-0.48407956
+0.22818215
+0.71203288
+0.23007983
+0.10321714
+-0.97287056
+-0.69454488
+-0.56034595
+-0.65761103
+0.22655777
+-0.19645101
+0.85289295
+-0.57901862
+0.26519996
+0.60426310
+-0.55603567
+-0.01465585
+0.94062995
+0.15421098
+-0.24373588
+-0.44935668
+0.24387803
+-0.61919156
+0.85911608
+0.12230634
+0.25579896
+-0.25956395
+0.53493252
+-0.87783692
+-0.30200901
+-0.85631349
+0.62756462
+0.83856849
+-0.33967427
+0.17868837
+0.23693014
+0.90839184
+-0.11608437
+0.89010802
+0.55434964
+-0.88238517
+-0.69690976
+-0.78987426
+0.54838697
+-0.21382485
+0.70635392
+0.69691553
+0.84749067
+0.24227032
+0.33226698
+0.48822504
+0.59061269
+0.85052456
+0.82578346
+-0.60420172
+-0.63350137
+0.89936529
+-0.03394221
+0.67655896
+0.93272882
+0.32196691
+0.62501473
+-0.28812139
+0.86831772
+-0.64948316
+0.26515780
+-0.52166266
+0.16192886
+-0.14592467
+-0.22923577
+0.01793336
+-0.82649415
+0.02014109
+-0.30329879
+0.68951270
+-0.78372262
+0.86345081
+-0.72018964
+-0.64038127
+0.89318118
+-0.29089951
+0.39430040
+0.61873560
+-0.43972128
+0.78603052
+0.09390909
+0.50610926
+-0.62738952
+0.02148203
+0.02626452
+-0.45354658
+-0.95569596
+-0.93112135
+0.03555024
+-0.33852047
+0.00234378
+0.44720108
+-0.37944806
+-0.24895689
+-0.06438455
+-0.60195950
+0.41389764
+0.21352592
+-0.50305533
+-0.37247086
+0.12355602
+-0.42709636
+0.64620441
+0.48797294
+0.07488415
+0.62551862
+0.52278424
+0.48347286
+0.24925948
+-0.17257793
+0.54047906
+-0.74169073
+0.83493117
+0.61287897
+-0.74830018
+0.84951783
+0.56058062
+0.73995292
+-0.19528490
+0.57765352
+-0.02668458
+-0.08555883
+0.66512532
+0.17603704
+0.97919138
+-0.87119631
+-0.23008633
+0.21690512
+-0.79574852
+-0.79383888
+0.24115300
+0.34402180
+-0.56177923
+-0.21802318
+0.63860929
+-0.84312548
+0.79443622
+-0.79012951
+-0.99295872
+0.55891180
+-0.37782466
+-0.60333502
+-0.20495212
+-0.81276147
+0.68474805
+0.81270599
+-0.74127695
+-0.32476103
+-0.36236608
+0.77195966
+-0.37239462
+-0.78593333
+0.64336193
+0.88924396
+0.03680229
+0.92257321
+-0.11267924
+0.60534596
+0.01970184
+0.22946358
+-0.67460799
+0.34353733
+-0.86002304
+-0.92111009
+-0.07670885
+0.01153433
+0.76315272
+0.06597865
+-0.97150804
+-0.47972047
+-0.92975241
+0.12548518
+0.80368638
+0.47076011
+-0.94592728
+-0.45568991
+-0.09405005
+0.28060663
+0.70992410
+0.02183902
+-0.70825416
+0.66448760
+-0.24254668
+-0.17236567
+-0.23314136
+0.59457099
+-0.68338764
+0.12586653
+0.13287926
+0.73573232
+0.83624852
+-0.02248055
+-0.62472257
+0.75190389
+0.33078051
+-0.51089260
+0.37800360
+-0.96858748
+-0.74718153
+-0.46344870
+-0.22858846
+0.45337784
+-0.37483186
+-0.66262901
+-0.17385674
+0.91649294
+-0.93953868
+0.86923242
+-0.13992047
+-0.80788094
+-0.03253144
+0.79460621
+0.26475465
+0.31964183
+0.70791757
+-0.83506848
+0.86406434
+-0.82844977
+0.32145691
+-0.15088713
+-0.45400119
+-0.44307482
+-0.02579367
+0.38943827
+-0.91908682
+-0.84914026
+0.53689134
+0.22069800
+-0.40656072
+0.16279078
+-0.97051891
+-0.85315526
+0.72640922
+-0.95660955
+0.37439362
+0.64709192
+-0.56300648
+-0.72033152
+0.84454908
+0.34004254
+0.74892870
+0.69461024
+0.62950861
+0.07609415
+-0.25123137
+-0.27147508
+-0.70618188
+0.47890842
+-0.56840947
+-0.44313806
+0.88216293
+0.71096295
+0.57399859
+0.23846227
+-0.23713693
+0.66894823
+-0.77424935
+-0.61386013
+0.06605126
+-0.46791135
+-0.50852894
+0.77063990
+0.58592546
+-0.52479678
+-0.36617899
+0.75424421
+0.24463248
+-0.11996573
+-0.78969322
+0.96472716
+0.88264704
+0.10053301
+0.38639092
+0.55008388
+0.20263040
+-0.62060192
+-0.41536766
+-0.71239153
+-0.29750913
+-0.26290470
+-0.33021110
+0.61746109
+0.03124642
+-0.84695539
+0.57175565
+-0.58611092
+-0.40571612
+0.34497416
+-0.48966312
+0.30605924
+0.75865746
+0.31429136
+-0.70490956
+0.57572639
+0.31556094
+0.71346903
+0.13071287
+-0.52304280
+-0.75164995
+0.75632596
+-0.02997732
+-0.32364404
+0.63734627
+-0.87877374
+-0.30539626
+0.47730160
+-0.22701067
+-0.60905632
+-0.50164282
+0.65202940
+-0.65587023
+0.37349021
+-0.72426105
+0.68356061
+0.53568184
+-0.26923919
+0.02449679
+0.84019709
+0.71736896
+0.53827035
+-0.63472694
+-0.55343431
+-0.51425439
+-0.20621169
+-0.64397275
+-0.01827639
+0.90643024
+-0.92458948
+-0.13776731
+0.75656319
+-0.44674897
+-0.82262489
+-0.05914819
+0.34663689
+-0.75846678
+-0.98563206
+0.40929866
+0.97021067
+-0.16204077
+-0.81207715
+0.44257879
+0.60296011
+-0.18137079
+-0.69880262
+0.29544520
+-0.12873256
+-0.01326925
+0.83663595
+0.04442346
+0.21151257
+-0.01650745
+0.71027350
+0.74943769
+-0.73535931
+0.26852310
+-0.01034802
+0.02135849
+-0.04783696
+-0.74315971
+0.82831001
+-0.29635310
+0.68932188
+0.23690665
+0.67892122
+-0.41228217
+-0.77561073
+-0.93559351
+0.39912164
+-0.02432090
+-0.78389247
+-0.65391341
+-0.87281577
+0.52277637
+-0.83761273
+-0.84766632
+0.87813544
+0.74100518
+-0.37378597
+0.48848915
+0.94951725
+-0.39252603
+-0.26130199
+-0.29923552
+-0.70106247
+0.47553515
+0.51309717
+-0.19128495
+-0.96492670
+0.99822235
+0.30986679
+-0.14619511
+-0.47044611
+0.40010786
+0.54091167
+-0.11815441
+0.19741547
+-0.38910908
+-0.94913074
+-0.43434596
+0.77997804
+0.32577670
+-0.35920429
+-0.89829893
+-0.58845600
+0.71373963
+-0.97051525
+-0.01792455
+0.25118780
+-0.70902437
+0.61443412
+-0.43990880
+0.85813797
+0.60420930
+-0.62059024
+0.84512568
+0.16529763
+-0.08447361
+-0.58057758
+0.31511307
+0.76383495
+0.69948483
+-0.21426803
+0.25652027
+0.70124972
+-0.26521534
+-0.88498646
+-0.70510921
+-0.67811927
+-0.20752335
+0.09947658
+-0.02784687
+0.66924059
+0.35964084
+0.78796983
+-0.15339679
+0.65539002
+0.68610346
+0.61196125
+-0.72734445
+0.34383905
+-0.72874671
+-0.06864327
+-0.83013363
+0.21461010
+0.91577947
+0.38342166
+0.79361427
+-0.48616177
+0.60954285
+0.54945624
+-0.08802170
+0.71861947
+0.85444796
+0.76833880
+0.53640330
+0.55229819
+-0.32034564
+-0.61288446
+-0.68084174
+0.49411905
+0.55928469
+-0.49180865
+-0.72607636
+-0.94253516
+-0.03093177
+-0.85593256
+0.30887151
+0.93868077
+0.04195380
+-0.95645944
+-0.96000569
+-0.11287689
+0.92948115
+0.42362881
+0.13760412
+0.32099771
+0.76833248
+-0.98735208
+0.98024476
+-0.23457736
+0.71676528
+0.55831945
+0.91269135
+0.46790695
+0.92232764
+0.35901892
+-0.29106927
+0.35362089
+0.93717301
+0.18946111
+0.27468419
+-0.80334412
+-0.34646875
+0.51338216
+0.76670226
+0.90238220
+0.62948681
+0.75289094
+0.61267139
+0.51772925
+-0.17056590
+-0.51209471
+-0.93909443
+-0.30915316
+0.13261387
+-0.14710787
+0.24808011
+-0.92345608
+-0.13238199
+0.68015657
+0.01370000
+-0.33628222
+-0.49113938
+-0.16722610
+0.57733482
+0.59241649
+0.04730772
+-0.23407522
+-0.15014029
+-0.98697509
+-0.03267798
+0.55933197
+-1.03243190
+0.75539744
+0.42967049
+0.38589918
+-0.35536574
+0.97012708
+0.26399136
+-0.47319303
+-0.28234926
+0.14127456
+-0.38816273
+0.22427143
+0.04731367
+-0.45277158
+0.37268406
+0.03846549
+-0.98328331
+-0.85351967
+-0.50352831
+0.13895635
+0.73210105
+-0.54949503
+-0.37124144
+-0.39220744
+0.57278543
+-0.11508481
+0.33919391
+0.87015561
+-0.71484433
+-0.17652138
+-0.83618451
+-0.38295165
+-0.22227046
+0.04471122
+0.20329295
+-0.25865026
+0.13219027
+0.53697741
+-0.17270509
+-0.47420828
+-0.40481504
+0.34728502
+0.35441855
+-0.27532376
+0.17513656
+-0.94977224
+0.84490228
+0.67851785
+0.22502217
+-0.18283616
+0.18955540
+0.34390827
+0.26245114
+-0.54595101
+0.37641971
+-0.02676425
+-0.04653304
+0.34643451
+-0.77788847
+-0.71970177
+-0.19419810
+-0.33845332
+0.85911018
+0.57249241
+0.22657964
+0.65618247
+0.82067027
+-0.90312854
+-0.76905748
+-0.17396445
+0.29723224
+0.88078671
+-0.51533397
+-0.68276121
+-0.79538763
+0.77912036
+-0.16209974
+0.94695178
+-0.33111578
+-0.13635322
+-0.99934405
+-0.96903076
+0.54789040
+0.68816118
+-0.34559762
+-0.99166939
+0.66996644
+-0.52904367
+-0.87638651
+0.08928956
+-0.72543073
+0.02930440
+-0.71030978
+-0.43289981
+0.28240886
+-0.51052539
+0.24096591
+0.57439743
+-0.54673722
+-0.80594482
+0.04932903
+0.43070176
+0.40004588
+0.14828740
+0.58065713
+0.17137900
+0.13627583
+0.31492280
+-0.97908751
+-0.55886363
+0.84891431
+0.61382193
+-0.71567932
+1.00420263
+-0.74635747
+0.46968906
+0.21838537
+0.10913080
+-0.42981749
+0.63724800
+-0.97012496
+0.87658622
+0.90318596
+0.08241157
+-0.93869358
+-0.64375014
+-0.28204088
+0.41015033
+-0.55008442
+-0.01958026
+-0.11877663
+0.48330312
+0.97405580
+-0.69863056
+0.10917419
+0.63939828
+0.79577995
+-0.52583507
+0.23575228
+0.77278803
+0.51011964
+0.07456393
+-0.19002153
+-0.58840634
+0.73641042
+0.24746977
+-0.29469741
+0.86620117
+0.73579096
+0.40665085
+0.30085230
+-0.08605211
+0.95709222
+0.49242149
+-0.78243822
+0.79866884
+-0.27187851
+0.95439570
+-0.81514659
+0.56408730
+-0.82654677
+0.62919567
+0.90308170
+0.48179322
+0.21394032
+0.32719143
+-0.69368567
+0.77462487
+-0.36550943
+-0.61452939
+-0.96126803
+0.38369449
+-0.33577492
+0.53336445
+1.00480033
+0.51317395
+-0.61139315
+-0.34563606
+-0.55341804
+0.53054790
+-0.94285189
+0.11998858
+-0.42910179
+-0.08340397
+-0.66365381
+-0.77909813
+0.53542419
+0.77722571
+0.57379847
+-0.18524420
+-0.78913213
+0.74348993
+0.56554877
+-0.51958585
+-0.37217136
+0.61595021
+0.22441023
+-0.83385186
+-0.18061778
+-0.88494836
+-0.63380502
+0.04731702
+0.01780005
+-0.52038849
+0.00638678
+-0.37693955
+0.57075581
+0.33432178
+-0.55355409
+-0.13019738
+-0.41657318
+-0.26161451
+0.03326008
+0.80005027
+-0.34634243
+0.22068073
+-0.52407816
+0.97365350
+0.98216848
+-0.12565294
+0.72576417
+-0.04664566
+0.97701037
+0.96855048
+-0.61519913
+0.37753763
+0.10239838
+-0.48319399
+-0.20642566
+0.68707180
+-0.12371774
+0.68650319
+-0.38458627
+-0.51714281
+0.35231147
+0.54674395
+-0.33436597
+0.67588723
+-0.49001220
+-0.29111706
+0.22130002
+0.51622171
+-0.68340392
+0.77871944
+0.35515383
+0.24780798
+0.90177271
+-0.55063278
+0.34067139
+0.53490894
+0.27484863
+0.93271170
+0.09040231
+0.13766761
+-0.32503473
+-0.94155713
+0.41849627
+-0.82484448
+-0.39208036
+0.28299100
+0.01429477
+0.07026060
+0.24697595
+-0.80629419
+0.81616978
+0.87790152
+0.73395963
+0.52780391
+-0.92230233
+0.84285354
+0.09201563
+-0.67708726
+-0.82618077
+-0.47576460
+0.03883518
+0.01666542
+0.80606976
+-0.99951134
+0.58995238
+1.00085344
+-0.93946618
+-0.95421623
+0.00145739
+-0.56944790
+-0.65653998
+-0.71801559
+0.70904969
+0.79295255
+0.65528202
+0.79856995
+0.48569691
+0.75795886
+1.02030952
+-0.02298736
+0.83220870
+-0.19474373
+0.31401725
+0.80913415
+0.85900221
+-0.68503295
+-0.34450019
+0.12394855
+-0.50174219
+0.94240904
+0.50973976
+-0.41283240
+-0.18217763
+-0.59710105
+-0.28266943
+0.94366378
+-0.16615457
+-0.76487741
+-0.21560171
+0.23496655
+0.44410378
+-0.50556247
+-0.53536666
+-0.47436281
+-0.23598826
+-0.73501057
+0.43030136
+0.29463351
+-0.81607748
+-0.11993069
+0.81969889
+0.57500607
+0.32759284
+-0.20542555
+-0.52385532
+-0.85802223
+0.55182133
+-0.51071016
+0.60041610
+-0.08799231
+-0.75688981
+-0.36666281
+0.44467824
+-0.04471434
+0.22409862
+0.13334715
+-0.06838685
+0.47172393
+-0.83182850
+-0.81419969
+0.72066564
+-0.12639807
+0.67496460
+0.47161237
+-0.72746669
+0.24547710
+-0.44171971
+0.73066883
+-0.51878991
+-0.62811189
+0.14248114
+0.45925844
+-1.00675234
+-0.48132503
+0.17528157
+-0.94053526
+-1.01410578
+0.68700541
+0.79741646
+-0.48157017
+0.52526879
+0.79542726
+-0.27874834
+0.70633242
+0.68178973
+0.25063964
+0.08969450
+1.01572203
+-0.13325350
+0.39256438
+-0.95071010
+-0.18432159
+-0.97786473
+-0.96252457
+-0.26076548
+0.48670467
+-0.56604467
+0.43648870
+0.57561096
+-0.90431979
+0.94690941
+-0.03145127
+-0.01389682
+0.73965056
+-0.53927870
+0.61241497
+0.96328218
+0.59488314
+-0.34675537
+0.91870115
+-0.19589321
+-0.39809129
+0.07301826
+-0.20642776
+0.34913459
+0.18317653
+0.45642478
+0.36266215
+0.85633766
+-0.23237775
+-0.56400101
+-0.00259835
+0.76442555
+0.58378114
+-0.29997789
+0.26428842
+0.36592327
+-0.48343177
+0.87740808
+0.49875628
+0.71156003
+-0.20309340
+0.59563215
+-0.14663852
+0.11314651
+-0.63223113
+-0.06518629
+0.51045706
+0.20964027
+-1.01427495
+-0.61949504
+0.26833122
+-0.56063935
+-0.87895626
+0.20145756
+-0.92096421
+-0.40790014
+0.68114003
+0.50756100
+0.73889462
+0.84356152
+0.95090219
+-0.05294318
+-0.98408474
+0.65638232
+-0.41152582
+0.67824833
+0.33536641
+0.64028392
+-0.27864521
+0.63761837
+-0.07415993
+0.30921114
+-0.89075957
+0.39383356
+0.88737714
+-0.85337795
+0.71011390
+-0.32965820
+0.13895684
+0.26359074
+-0.90535019
+-0.21128741
+-0.04054823
+-0.43619258
+-0.29565013
+-0.69887150
+-0.78460114
+0.88674266
+0.59500834
+-0.82668403
+0.90245297
+-0.07972161
+0.14264539
+-0.39490251
+0.41772636
+0.75828097
+0.75200697
+-0.40152595
+-0.95155295
+0.61634864
+0.78454610
+-0.65731278
+-0.39653303
+-0.57616694
+0.10081382
+-0.57384965
+-0.12680400
+0.56303705
+0.66577888
+0.90993916
+-0.11561410
+0.75167012
+0.35588344
+0.86872719
+0.56681710
+0.23785503
+-0.82961406
+-0.33995475
+-0.12338811
+-0.22144484
+0.79160855
+0.70592359
+0.91478687
+0.36222799
+0.65642921
+0.03473420
+0.28684798
+0.34667370
+0.78349742
+-0.23383857
+-0.33275066
+0.58452628
+0.04374002
+-0.47426527
+-0.50324779
+-0.25551719
+0.90454773
+-0.03965238
+0.07256474
+-0.49722425
+-0.98310557
+0.47826670
+-0.16663466
+-0.63871805
+-0.46195691
+0.42428790
+-0.61414350
+0.62384435
+0.14792143
+0.56610840
+0.86127987
+-0.15291081
+0.46791439
+-0.00627319
+0.65178908
+0.28887776
+0.40115320
+0.20644621
+-0.63669786
+-0.78456079
+0.45911934
+0.57350289
+0.69730602
+-0.38600373
+0.24979327
+-0.95127571
+-0.65037590
+0.74508094
+-0.22608630
+-0.22910761
+-0.37405718
+0.18314147
+-0.98219599
+-0.69622367
+-0.22865065
+0.50302275
+-0.28512451
+-0.50466245
+-0.74174435
+0.36394901
+-0.58537433
+-0.78270641
+-0.22660177
+-0.89913647
+-0.32476718
+0.72226855
+0.50238133
+0.45185860
+-0.01228166
+-0.08082728
+0.35967664
+-0.19467515
+-0.95354221
+-0.38001845
+0.77592769
+-1.00272443
+0.98269778
+0.49617586
+0.39061469
+0.56881309
+-0.39094516
+-0.87004542
+-0.93511909
+0.79576575
+0.60695858
+0.93631249
+-0.80365418
+0.44927618
+0.16306824
+-0.30966001
+0.11492423
+-0.73235758
+0.16984081
+-0.12693477
+0.34062595
+-0.41952330
+-0.73150170
+0.22434327
+-0.60869983
+0.70972443
+0.72816995
+-0.99326914
+0.29630040
+0.28535986
+-0.58416023
+0.85904530
+-0.52139819
+0.42092297
+0.15322680
+-0.74809655
+0.79687051
+0.97957980
+0.72190515
+-0.42347783
+-0.82881406
+0.69085879
+0.81695148
+-0.20310615
+-0.63490540
+0.11829841
+0.74205328
+-0.72320163
+-0.96593556
+0.46308208
+0.97227776
+0.13196135
+-0.21755791
+0.74794483
+-0.53653023
+0.72705424
+-0.48414695
+0.84178269
+-0.06961292
+0.11208332
+-0.87875777
+-0.33292359
+-0.41830605
+0.99793625
+0.90221620
+0.02010441
+0.13000071
+-0.52640289
+0.29723561
+0.09254730
+-0.16618806
+-0.95415917
+-0.66872787
+0.80169272
+0.43775165
+-0.22338575
+0.41445160
+0.13170707
+-0.37622356
+-0.99337447
+-0.76934552
+-0.39390850
+-0.92866609
+-0.06073272
+-0.67004809
+-0.63398844
+-0.75111994
+0.88001990
+0.09295464
+0.32483065
+0.05667281
+-0.10892165
+0.04440343
+-0.69144368
+0.39391994
+-0.04974848
+0.54887056
+-0.08572155
+-0.96540824
+-0.39657730
+0.67573059
+0.80570114
+0.84293461
+-0.04359138
+0.38483453
+0.09299648
+0.07860911
+0.79779971
+-0.32636565
+-0.86803198
+0.26817572
+0.27560759
+-0.88701653
+-0.83035254
+0.43624711
+0.91162956
+-0.72333214
+0.11184204
+0.90741646
+-0.70956028
+-0.07489288
+0.45191240
+-0.62478936
+0.20812297
+0.45986509
+-0.57640648
+-0.92097305
+-0.15112716
+-0.14120209
+-0.01484269
+0.46029735
+-0.75402884
+-0.42754173
+0.83407843
+-0.17055917
+-0.85767967
+-0.85092807
+-0.45055890
+0.92168844
+-0.96464993
+0.33173257
+-0.05993811
+0.71803778
+0.61396078
+-0.33882940
+-0.49266489
+-0.78778064
+0.59804668
+0.28456182
+-0.33798328
+-0.23100239
+0.84920156
+0.06811619
+0.28093231
+0.32456207
+-0.16007364
+-0.96533659
+0.75465345
+-0.32934207
+0.40945446
+0.91200083
+-0.04973714
+-0.95652551
+-0.82910570
+0.98261016
+-0.62041859
+0.98336813
+0.39721813
+-0.78699534
+0.00154141
+-0.47063208
+-0.36644596
+0.81662130
+0.11494231
+0.97425890
+-0.00735331
+-0.33804607
+0.25513828
+-0.47581744
+-0.27478486
+-0.99434295
+0.36358082
+0.38957822
+-0.46513128
+-0.94503338
+-0.71553746
+0.85787559
+-0.42323744
+-0.01264638
+0.17211354
+-0.43782163
+-0.52234054
+-0.11289638
+0.36098194
+0.65797365
+-0.65016195
+-0.21275377
+0.75751305
+-0.64679283
+0.89180803
+-0.59372166
+-0.22440439
+-0.72032911
+0.53157711
+0.39961588
+-0.12179220
+-0.21531588
+-0.50147364
+-0.34363854
+0.69769585
+0.18248761
+-0.37637728
+-0.67972448
+0.27586949
+0.71350217
+0.59554851
+0.83228052
+-0.78564443
+-0.19756675
+-0.23921484
+-0.80103602
+0.73003662
+0.69144535
+-0.39090574
+-0.41984534
+0.98469889
+-0.05713338
+-0.44646466
+-0.54444519
+0.46382713
+0.02177310
+0.86356473
+-0.79482102
+0.42275333
+-0.30929065
+0.74400818
+0.19093990
+0.16417766
+0.80231929
+0.86383390
+-0.77220626
+0.37841797
+-0.26542610
+0.22496927
+-0.81018861
+0.53569555
+-0.43891251
+-0.23127997
+-0.15033257
+-0.67057240
+0.18752503
+0.46033621
+-0.74277788
+-0.82462078
+-0.28387737
+-0.17239106
+-0.03722608
+-0.53346702
+-0.90385199
+0.78114069
+-0.97542913
+-0.84446229
+-0.25074601
+-0.89343971
+0.57826686
+-0.70649594
+0.95010340
+-0.41284370
+-0.73798567
+0.95071983
+-0.31827474
+0.85255253
+-0.99326204
+-0.15970790
+-0.68245104
+-0.28612816
+0.10135663
+0.23680544
+-0.72190881
+0.15797448
+0.43249941
+0.56990921
+0.88241315
+0.66828692
+0.40326190
+-0.65718719
+0.85588169
+-0.68286502
+-0.95305680
+0.50744176
+0.52508008
+0.90952158
+0.47807515
+0.51350737
+-0.00065988
+0.59713829
+0.11346972
+0.10651553
+-0.27943796
+-0.29634058
+0.34421599
+-0.64196378
+0.39955592
+0.84188747
+0.87097585
+0.53588498
+-0.56196013
+-0.77336997
+-0.45059806
+0.48710716
+0.46927392
+0.42466056
+-0.33948863
+0.46467817
+-0.08319467
+-0.07277232
+-0.63431332
+-0.74514800
+-0.94076026
+0.99970281
+-0.37225121
+0.68087769
+-0.21321869
+0.61305261
+-0.74609253
+0.02300632
+0.77813244
+0.95816040
+-0.30408341
+0.60551035
+0.51302516
+0.76715183
+0.00296724
+-0.30538613
+-0.33155155
+0.20788491
+0.09428239
+0.65536857
+0.06702507
+-0.94795615
+-0.57111719
+0.24897873
+0.33879340
+-0.48639560
+-0.79992588
+0.91816878
+-0.36636913
+0.61895406
+0.39902771
+0.54951322
+0.70162916
+0.16304862
+-0.87194011
+0.59704340
+-0.82437302
+-0.41566157
+0.79005337
+0.31918204
+0.03077412
+0.32328439
+-0.55996412
+0.59485590
+0.72379482
+-0.18491292
+0.55700684
+0.16982794
+0.96732867
+0.14637315
+0.62532103
+0.84974146
+0.93333793
+-0.49006855
+-0.43635845
+-0.22728646
+-0.03809655
+-0.03674084
+-0.47206193
+-0.78101462
+-0.02864891
+-0.81281850
+0.75357413
+-0.76280153
+0.23754287
+-0.22526848
+0.18438852
+0.21181798
+0.58840299
+0.75574458
+0.91321051
+-0.04379982
+-0.33900422
+-0.86350346
+-0.67229792
+0.49566519
+-0.39658570
+-0.69548962
+-0.11802220
+-0.31560349
+-0.14723116
+0.60313416
+0.12902510
+-0.63892972
+0.05423498
+0.51633143
+0.83243060
+-0.59076887
+-0.24356908
+0.78225183
+0.00694370
+0.10834825
+0.18772626
+-0.39487299
+0.69419681
+0.82269923
+0.41026360
+-0.33386506
+0.33645933
+0.23008183
+0.26212980
+-0.06967605
+0.38344536
+0.28915899
+-0.49133235
+0.40170956
+-0.21336227
+-0.34825689
+-0.66744329
+0.40667908
+-0.66015693
+0.76989937
+0.10450759
+-0.35511832
+-0.59985223
+-0.70133328
+-0.19282965
+-0.75379239
+-0.38353076
+-0.02345454
+-0.77782740
+-0.78255294
+-0.56128595
+-0.00851956
+0.61316265
+-0.52385717
+0.65481802
+-0.83457772
+-0.92492581
+0.76219277
+0.29159535
+0.36918606
+0.58755886
+-0.97146010
+0.73711194
+0.87647710
+-0.56369379
+-0.14079262
+-0.15062436
+0.77916658
+-0.28545516
+0.34942076
+0.57403485
+0.86166808
+-0.46045981
+-0.93252041
+0.00839896
+-0.24291438
+-0.68605090
+0.06881282
+-0.00943418
+0.13614096
+0.71016574
+0.60404008
+-0.55700866
+0.00746111
+-0.94848706
+-0.89053986
+-0.83934068
+0.52400053
+-0.11013621
+-0.16623048
+0.19922589
+0.64255981
+0.90128886
+0.21226884
+-0.38296942
+-0.63491664
+-0.33920969
+-1.00528561
+-0.87882892
+-0.61123320
+0.69668920
+0.83154013
+-0.84285604
+0.92260726
+-0.95019537
+-0.76127706
+0.05516944
+-0.56228710
+0.45084619
+-0.26161247
+-0.41739430
+0.64645021
+-0.90252611
+-0.79656174
+-0.33031066
+0.70830314
+0.24427215
+0.70251512
+-0.15334984
+-0.41126162
+0.02425605
+0.23420911
+0.86596001
+0.88026574
+0.94032116
+-0.47992501
+0.68006005
+-0.65504306
+0.95009359
+-0.80466175
+0.95901656
+0.42934576
+-0.90368001
+-0.24518894
+0.26448801
+-0.91521308
+0.68886921
+-0.71091008
+-1.01558027
+-0.51833419
+0.93170811
+-0.89690703
+0.73964270
+-0.48354933
+0.06706396
+0.09380296
+0.95750337
+0.08170753
+-0.28464419
+-0.52300884
+-0.71444108
+0.83718714
+-0.24919857
+-0.88649772
+-0.95500680
+0.23535295
+-0.26564024
+0.04403480
+-0.74540938
+0.95602215
+0.02789432
+-0.19200690
+0.07782504
+-0.98000749
+-0.25346909
+-0.27301119
+-0.64507162
+0.85743746
+-0.55965386
+-0.63876548
+0.50544560
+-0.33338062
+-0.19151159
+-0.01550988
+0.48043408
+0.29780923
+-0.52246805
+-0.85255695
+-0.99205994
+0.17436671
+0.15731176
+-0.44457811
+0.47210557
+0.25235270
+-0.51325566
+0.14317778
+-0.64122092
+-0.92103610
+-0.88020071
+-0.95757299
+0.16027509
+-0.92351184
+0.94063190
+-0.10005696
+-0.61815253
+-0.76449013
+0.21305499
+0.58193949
+0.84847418
+-0.37975168
+-0.90611202
+0.65681669
+0.41287906
+0.71072967
+0.82510063
+0.45878300
+-0.07443433
+0.25410898
+-0.34738832
+0.49829825
+-0.26815922
+-0.64595343
+-0.33044908
+0.18221673
+0.38885522
+0.67106580
+-0.97994905
+0.49050786
+-0.94709179
+0.12517583
+-0.63135932
+-0.72582540
+-0.27200895
+0.94118140
+0.09490722
+0.94626326
+-0.34311094
+-0.81175129
+0.15230978
+0.52108899
+-0.41548781
+-0.70093036
+-0.42180516
+-0.63977950
+-0.99244236
+-0.77853721
+0.77398509
+-0.82860028
+-0.49761986
+0.78469431
+0.83842127
+0.36714667
+0.10140231
+-0.56636170
+-0.89670368
+0.79169927
+0.12361379
+-0.78664815
+-0.08148453
+-0.51169593
+-0.46091093
+0.19345264
+-0.50313580
+-0.00804905
+-0.04778082
+0.16479532
+-0.05455901
+0.23172115
+0.41700787
+-0.02362566
+0.56018663
+0.31522215
+-0.73052232
+0.27010087
+0.56058293
+-0.66183772
+0.07273674
+0.73137513
+-0.56949051
+-0.11950852
+0.43248356
+0.83434772
+-0.34689454
+0.44845697
+-0.16316626
+0.67580204
+0.50295285
+-0.41621340
+-0.40259595
+0.41423071
+0.16901223
+-0.20240804
+-0.96189457
+0.55783035
+-0.85897475
+0.84892311
+-0.91854719
+-0.67484021
+-0.98630182
+0.02846424
+-0.75521333
+0.10699331
+0.45930059
+-0.46726757
+-0.63652181
+-0.27634322
+0.05402774
+-0.22112468
+-0.10568982
+-0.00867626
+-0.50415059
+-0.28345681
+-0.32833726
+0.25453369
+0.92712711
+-0.77467693
+-0.26150095
+-0.58651832
+-0.08067304
+-0.35190814
+0.27663712
+-0.93821880
+-0.14192039
+-0.05261742
+0.04797529
+-0.74909332
+-0.97646565
+0.46966842
+-0.87563905
+0.91286605
+-0.65303387
+0.29652527
+0.90970232
+0.74608716
+-0.57167503
+-0.81208710
+0.54868395
+0.46785376
+0.91076657
+0.44558333
+-0.72381578
+-0.96216821
+0.26610784
+-0.36673552
+-0.02269024
+0.67597670
+-0.90926854
+-0.74513203
+-0.93700125
+-0.19548512
+-0.23701743
+-0.47692698
+0.53501615
+0.01835577
+0.36063556
+-0.87401192
+0.25879452
+0.82353357
+-0.27470509
+-0.69418296
+-0.09175960
+-0.12646203
+-0.56251169
+0.63760987
+0.16940161
+-0.73133475
+-0.75483634
+-0.92652713
+0.28854344
+0.89903028
+-0.82871463
+0.06775457
+0.04325326
+-0.13999575
+0.92564088
+-0.05860966
+-0.11782018
+-0.85440080
+-0.11719799
+-0.58647742
+-0.98587402
+-0.12741487
+0.57330044
+-0.48814777
+-0.06518516
+-0.23735089
+-0.88588784
+0.55586566
+-0.43199816
+-0.97494924
+-0.34594109
+0.13484174
+-0.89423081
+0.68234929
+-0.94138358
+0.18741491
+0.27942646
+0.51320573
+-0.72380797
+-0.86120446
+0.29743784
+0.79694205
+0.63225326
+0.58407234
+0.66885467
+0.15689296
+-0.17452212
+-0.46334802
+0.66502820
+0.55139867
+0.36461756
+-0.60356896
+0.52660117
+-0.61956370
+-0.30695585
+-0.24146867
+0.36237455
+-0.15430865
+0.54879104
+-0.22836063
+0.08374271
+-0.33330830
+-0.50890621
+-0.93475456
+-1.04044792
+0.70567937
+-0.48357812
+0.72298335
+-0.68840526
+-0.75829521
+0.43350062
+0.44070182
+0.90345586
+0.16699879
+-0.18312040
+0.79894638
+-0.04912118
+0.68405547
+0.66926872
+0.76081167
+-0.54520710
+-0.60207191
+-0.10688806
+-0.28772566
+-0.21600943
+0.43130549
+0.37698325
+-0.57418379
+0.84498540
+0.86287708
+0.04333644
+-0.19176102
+-0.17611479
+0.51280691
+-0.05873501
+0.74806910
+0.29727258
+-0.35403696
+0.31410877
+0.14788046
+-0.48006719
+-0.11050214
+-0.81336378
+0.80257529
+-0.41773639
+-0.18078097
+-0.20102543
+-0.14220235
+-0.22275411
+0.39584679
+-0.25481320
+-0.70676949
+-0.49618751
+-0.33042574
+0.79302898
+-0.13294430
+-0.29878931
+-0.27402586
+-0.29723483
+-0.39192974
+-0.87197010
+-0.78899228
+0.21192562
+0.36133542
+0.59849878
+0.00753002
+-0.00306561
+0.59108819
+-0.11457776
+0.43139030
+-0.01226819
+0.36144528
+-0.90350332
+0.96124265
+0.86320343
+0.75195951
+-0.82470387
+0.50220969
+0.77394220
+0.05769808
+0.14663862
+0.23641156
+-0.33308221
+-0.37287649
+-0.27854996
+0.13674570
+0.32535589
+0.02096461
+0.65842706
+0.56902316
+-0.06539068
+-0.58069941
+0.38524099
+0.28641220
+0.37681151
+-0.11790778
+-0.41050603
+0.62748456
+0.20792505
+-0.40904284
+-0.37199135
+-0.22167740
+0.00348893
+0.48748794
+0.47413094
+0.38814369
+-1.01225337
+0.17192955
+-0.56755125
+0.25453793
+0.71381556
+0.02544460
+-0.69079936
+0.93073481
+-0.73442964
+0.14884435
+0.94279632
+0.86159094
+0.21209267
+0.96699961
+0.47688215
+0.94228261
+-0.32023444
+0.31730797
+-0.18046633
+0.27068595
+0.91417364
+0.19826099
+-0.18234292
+-0.73081822
+-0.23415953
+0.21230180
+-0.54710290
+0.98897215
+0.17392003
+0.74260886
+0.81989450
+0.55660664
+-0.07988799
+0.92710035
+-0.86243607
+-0.49660379
+0.57613016
+-0.18274632
+-0.52569819
+0.64061996
+-0.92869573
+-0.91733602
+-0.36300221
+0.17359551
+0.44680372
+0.87587469
+-0.32251491
+-0.46664962
+0.34055032
+0.14234426
+-1.01364425
+0.03071974
+0.22526916
+-0.91718885
+-0.04820194
+0.46689322
+-0.63252905
+-0.90790468
+-0.19595398
+0.21845515
+-0.30285886
+-0.76498773
+-0.98383243
+0.38410871
+-0.45300352
+-0.84318193
+0.58700072
+0.70658149
+-0.33869570
+0.70981878
+0.11466385
+0.63723944
+-0.80102517
+-0.94702963
+0.52152453
+-0.81995838
+0.84458790
+0.69331246
+-0.55542461
+-0.48580390
+-0.74724157
+0.21086287
+-0.29014500
+0.93121181
+-0.04562946
+0.31001230
+0.91194436
+0.58526284
+0.63537778
+0.94070012
+0.66732743
+-0.39049459
+-0.27991723
+0.09484646
+-0.19932054
+0.61898681
+0.77696488
+-0.96835344
+0.40190453
+-0.12399098
+0.65532039
+-0.73082761
+0.67190169
+0.08257271
+0.18980483
+0.75999489
+-0.53247922
+-0.41217628
+0.24156863
+-0.99619440
+-0.86183633
+0.22978724
+0.41191959
+0.98123033
+0.49930127
+-0.96839184
+-0.17013875
+-0.76089373
+0.28885216
+0.24001265
+-0.24910238
+-0.39594870
+0.76747131
+0.84189892
+0.62616451
+-0.53253019
+0.85883900
+0.18534300
+0.03830212
+-0.48614036
+-0.54328879
+0.35104681
+-0.75577932
+0.57027233
+-0.09674967
+0.04861583
+0.09463870
+-0.49758554
+-0.62830344
+-0.50872081
+-0.46285843
+-0.83907813
+0.09348511
+0.30699444
+-0.43720573
+0.02187045
+0.79398152
+-0.46401809
+-0.61912584
+0.85084629
+0.08258355
+0.12208831
+-0.90615608
+-0.68453667
+0.30736935
+0.90740287
+-0.47188759
+-0.31197327
+-0.35905087
+-0.45298934
+0.77568376
+-0.20927858
+-0.43464661
+-0.47937971
+-0.98137741
+-0.78797488
+-0.67123553
+0.23332131
+0.07567298
+0.05465639
+-0.56992432
+-0.90120697
+-0.07526624
+0.07809436
+-0.35056114
+0.22492146
+0.65144849
+-0.09982979
+0.96605802
+0.46244264
+0.56635261
+0.35607827
+-0.23996383
+-0.04372835
+0.55884433
+0.15868771
+-0.17982572
+-0.59129384
+-0.41924769
+-0.41381490
+-0.36853272
+0.05375886
+0.27846372
+-0.75036180
+-0.23097205
+0.93811238
+-0.44015825
+-0.04334551
+-0.42594790
+-0.66135287
+-0.43661326
+0.79125869
+-0.00998551
+0.74110901
+0.21807706
+0.21081173
+-0.88274921
+-0.58679071
+-0.30525029
+-0.15717793
+0.00147843
+0.12918150
+-0.62547290
+-0.10004175
+-0.00818521
+0.29068005
+-0.36039841
+-0.47409612
+-0.87213138
+-0.57986668
+0.91583407
+0.22861969
+0.85310054
+0.99579012
+-0.63961259
+-0.16866994
+-0.74127069
+-0.46124184
+-0.55049101
+0.79022455
+0.57721615
+0.65544522
+0.33426952
+-0.85215114
+-0.24983204
+-0.43080918
+-0.54522887
+0.83501116
+-0.37820310
+0.41746537
+0.23302600
+0.58714177
+-0.42540680
+-0.94693422
+0.20831114
+0.82742037
+-0.20318991
+0.34743873
+-0.17141736
+0.23019807
+0.67711434
+-0.35348241
+-0.61114477
+-0.40956780
+0.68634516
+0.50651159
+-0.41054863
+0.64729706
+0.13246602
+-0.23371686
+-0.88894558
+-0.93811977
+0.54059501
+0.65099457
+0.09160161
+-0.00292093
+-0.85401091
+-0.74486512
+0.70116305
+0.62431586
+0.63955379
+0.40205371
+0.66446304
+-0.00926495
+-0.03705233
+0.16950595
+0.06249785
+0.35834229
+0.33045006
+0.13203013
+-0.50093165
+0.86176777
+0.68939519
+0.81768179
+-0.72027183
+0.51860034
+-0.11710924
+0.11702812
+0.42189860
+0.63967383
+0.41833782
+-0.70046884
+-0.04417568
+0.15472114
+0.77762961
+-0.75876863
+-0.68480048
+-0.31208313
+-0.30968100
+-0.26598465
+0.35600495
+-0.62968895
+-0.29855394
+0.90687323
+-0.23918146
+0.89704168
+0.83328295
+-0.46144104
+-0.14975375
+-0.96716972
+-0.52368000
+0.27980042
+0.84554708
+0.33761919
+-0.11929256
+0.42154777
+-0.97696820
+-0.56348428
+0.35666680
+-0.00691485
+-0.75221488
+-0.56403977
+0.90336549
+-0.68296319
+0.01010680
+0.32545388
+-0.32964760
+-0.45264316
+-0.95350991
+-0.98825876
+-0.06109738
+0.72160351
+-0.29038143
+0.70911539
+-0.04388571
+0.31727707
+0.28269899
+-0.41977888
+0.38923430
+-0.09861678
+0.59444332
+-0.79550463
+-0.58049834
+0.14960027
+-0.68695340
+0.29819870
+-0.43906796
+0.44385743
+0.06384361
+-0.01192862
+-0.45491350
+-0.85113020
+0.60181439
+0.18047905
+0.64780021
+0.71406531
+0.14510643
+0.78405309
+0.14196146
+0.24816334
+0.23416901
+-0.28975266
+-0.03664500
+-0.15094143
+-0.98194767
+0.86631215
+-0.08764559
+0.27285957
+0.59028006
+0.81786072
+-0.75788583
+-0.01663858
+-0.92240083
+0.01586819
+-0.35295886
+0.15641308
+-0.74764055
+-0.93999770
+0.89573753
+-0.10187340
+0.57682133
+0.36617088
+0.97554481
+-0.90289115
+0.62160611
+-0.08058339
+0.76978540
+-0.15937072
+0.45712841
+-0.56229836
+0.08779764
+0.18013763
+0.86719835
+-0.02804726
+0.69614935
+-0.58916914
+-0.94956081
+0.59008002
+-0.02650964
+0.59499204
+-0.56484282
+0.64681029
+-0.60422227
+-0.03286141
+0.32309115
+-0.60790008
+0.52964795
+0.63177955
+-0.22984338
+0.64870250
+0.20618129
+0.26918674
+0.35829806
+0.82061267
+0.50549364
+0.18618321
+0.91383517
+-0.13551253
+0.03999102
+-0.03394419
+-0.59082073
+0.04325855
+0.26422536
+-0.76197204
+0.20444858
+-0.87110208
+0.20295286
+-0.44442594
+0.02109909
+0.28943765
+-0.73864859
+-0.20600843
+-0.47582853
+-0.89867876
+0.61634994
+0.54238892
+0.86329401
+0.78907967
+-0.86306664
+0.21056557
+-0.29049480
+-0.85625939
+0.23908448
+-0.96957303
+0.75019300
+0.74176526
+-0.56935254
+0.24886394
+-0.96693976
+-0.54867351
+-0.23908406
+-0.78727375
+-0.56783751
+-0.57511547
+-0.64988840
+0.15471530
+0.46001041
+0.43747783
+0.80006349
+0.67743862
+0.99557662
+0.00912488
+-0.70646927
+-0.06253296
+0.49606526
+-0.50047091
+0.81141710
+-0.32744968
+-0.66567469
+0.82339263
+0.71799803
+-0.47927743
+0.09757411
+-0.57411334
+-0.97590218
+-0.63933808
+0.33251381
+-0.92325827
+-0.56657055
+0.54764318
+-0.89173076
+0.48765695
+0.37440288
+-0.51192087
+0.00813425
+0.65405071
+0.66093183
+0.93959010
+-0.54424283
+0.61122525
+0.12308049
+-0.27009422
+0.22648764
+-0.13403833
+-0.94472984
+-0.47018147
+-0.61562797
+-0.60782668
+-0.95127847
+-0.60932389
+-0.27429843
+0.55938578
+0.43004918
+0.94707561
+0.48054767
+-0.43540245
+0.76995027
+-0.01958418
+0.08917344
+-0.43827385
+-0.46930742
+0.87607431
+0.35679460
+-0.73586112
+-0.26515746
+0.50367951
+-0.35861534
+-0.58595547
+0.77675211
+0.57340908
+0.60650706
+-0.96743074
+-0.69869676
+-0.57370755
+-0.83887484
+-0.56592804
+-0.94298258
+0.80766800
+-0.58525939
+-0.46870391
+-0.12603108
+-0.85616136
+-0.05029027
+-0.53460349
+0.24590778
+0.82096914
+-0.59505025
+0.34547541
+-0.42505645
+0.66550840
+-0.19095917
+0.17531003
+0.40873140
+-0.51151497
+0.01772890
+0.50965130
+-0.72755116
+0.57117541
+0.87929576
+0.36614986
+0.83535360
+-0.07858316
+-0.53086738
+-0.80928050
+0.92781907
+-0.19986757
+-0.87980588
+0.29635091
+0.65428726
+-0.40036324
+-0.05642652
+-0.63562663
+-0.17797378
+-0.64552373
+0.20889314
+0.14345882
+0.65884351
+0.09969087
+-0.95501426
+0.40371630
+-0.52385158
+0.84497950
+-0.02051823
+-0.94940773
+0.14935349
+-0.48859690
+-0.09130413
+1.00189155
+-0.25844370
+-0.13243572
+-0.30819601
+-0.57894781
+-0.12945818
+0.10216691
+0.93395698
+0.82719554
+-0.94994148
+-0.94679109
+-0.27430548
+-0.12376604
+-0.03146491
+-0.13882960
+0.26908808
+-0.65956536
+0.48178871
+-0.86192259
+-0.55825341
+-0.60117823
+-0.24266352
+0.79606701
+-0.70413840
+-0.19282528
+0.09696849
+-0.66289417
+-0.54517124
+0.27145450
+0.70559046
+-0.19094635
+0.01094867
+0.90931933
+-0.33978741
+-0.17584280
+0.41176913
+-0.49234537
+0.63883299
+0.73684663
+0.32217021
+0.37751569
+0.36273297
+0.04678728
+0.22223317
+-0.82151832
+0.04136844
+0.74473299
+-0.04603560
+0.55422058
+0.40296171
+-0.27675248
+0.43321111
+-0.24715403
+0.43302182
+-0.31008073
+0.85263660
+0.96034995
+-0.63153711
+-0.56211656
+-0.96168290
+0.07802279
+0.09120416
+0.73920009
+0.71951983
+-0.71369699
+-0.04504991
+0.01213461
+-0.20568645
+-0.22118471
+0.83636963
+0.93093999
+0.99452834
+-0.51985632
+-0.49813033
+-0.51034593
+-0.32722664
+0.69564094
+-0.41509254
+0.63310987
+-0.68157363
+-0.17363772
+0.45778446
+-0.46324953
+0.28394368
+-0.91602937
+0.99479652
+0.06186844
+0.23991345
+-0.73448052
+-0.53558140
+-0.97968549
+0.59638568
+-0.05812248
+0.34744493
+0.28392535
+-0.65195424
+0.09301522
+0.09752437
+0.29597953
+0.85005064
+0.25568477
+-0.07581936
+-0.08039442
+0.79730847
+0.39095952
+0.02828539
+-0.38195774
+0.78609154
+-0.75144878
+0.39067016
+-0.41060338
+-0.85867612
+-0.14606809
+-0.45745758
+-0.48170218
+0.19476540
+-0.10051280
+0.74158313
+0.22529300
+-0.71943946
+-0.91317382
+0.75446411
+0.49144640
+-0.80363241
+-0.47869693
+0.83904292
+0.54655033
+0.50685370
+-0.84880060
+0.25240953
+0.51044637
+0.07999367
+-0.43169494
+-0.36537448
+-0.74209420
+0.46186011
+0.81658554
+0.51740322
+-0.28687514
+0.89278151
+-0.15735547
+-0.51584018
+0.41475939
+-0.65870265
+-0.93110528
+0.70658352
+0.17339003
+-0.69892378
+-0.71649870
+-0.75871213
+0.06445157
+0.24096379
+-0.50828887
+0.50180105
+-0.39909898
+0.22201036
+-0.20341396
+-0.27490646
+0.83707351
+0.14740196
+0.51102932
+-0.20468185
+-0.45213592
+0.52027045
+-0.96289899
+-0.58822516
+0.87438770
+-0.15636587
+-1.00100998
+0.20516604
+0.02408595
+0.58072712
+1.00574164
+0.02667461
+-0.08805341
+0.80216497
+-0.56747633
+0.41395403
+-0.20305284
+-0.11335134
+0.32546040
+0.72615761
+0.33437120
+0.35644425
+-0.23884019
+-0.36485258
+0.51759916
+-0.27213006
+-0.66771987
+0.29776026
+-0.85400357
+0.30177873
+-0.03513616
+0.65983835
+-0.26753802
+-0.65192175
+0.78448260
+-0.59844458
+0.49521047
+0.02709019
+0.37370637
+0.46878322
+0.06231831
+0.07798552
+-0.89385177
+0.84795596
+-0.91702418
+0.90241192
+-0.78892341
+-0.30398993
+-0.87888765
+0.85050427
+0.47420248
+-0.96656892
+-0.60739451
+0.02293081
+0.13988213
+0.07716999
+-0.26194439
+0.57863990
+-0.55017269
+0.77936906
+0.83270634
+0.15980640
+-0.50297533
+0.61714587
+0.67789785
+0.90899245
+0.75454587
+0.70188068
+-0.13345828
+0.85090371
+-0.18064405
+0.50439308
+0.24861091
+-0.99707563
+0.48558389
+-0.76723416
+0.20119126
+0.02887467
+-0.36994204
+-0.91200306
+-0.70264705
+-0.57981168
+0.50312045
+0.37565216
+0.70735122
+0.13364122
+-0.30615858
+0.83666925
+0.39538203
+-0.61404966
+-0.42407978
+-0.11396034
+0.23216409
+-0.58386938
+0.03914458
+0.59698649
+0.56507403
+-0.42320919
+-0.74918127
+0.82023638
+-0.46748376
+0.22114838
+0.06679087
+-0.26013074
+-0.43122037
+0.39213056
+-0.18393330
+-0.67753454
+0.18441533
+0.97798973
+-0.00237813
+0.16208363
+-0.81273668
+0.90954531
+0.76648520
+-0.80293881
+-0.14395046
+0.11513433
+-0.80985365
+0.61937914
+0.64274225
+-0.13882600
+0.72009818
+0.32280060
+0.74581304
+-0.61547740
+0.38560068
+0.77204272
+-0.30452781
+0.21554387
+0.30283065
+0.54671858
+-0.73818174
+-0.14467133
+-0.58590877
+0.43265803
+0.74226304
+-0.39005707
+-0.28550875
+-0.33425146
+-0.93481140
+-0.06695436
+0.54478107
+0.83064726
+-0.01107148
+0.73011360
+0.43492353
+0.46629988
+-0.56315172
+-0.71261473
+-0.98878446
+-0.42389012
+-0.98501113
+0.72993205
+-0.83820353
+0.16018345
+-0.42450436
+-0.15539713
+0.68308586
+-0.88219613
+0.38157445
+0.42575026
+0.80021753
+0.78734670
+0.65270689
+0.45851636
+-0.72510322
+-0.34802732
+-0.77038859
+-0.86888406
+0.75639426
+-0.11622838
+0.70333015
+0.18997052
+-0.71874571
+-0.28810318
+-0.54679218
+-0.74344912
+-0.53117458
+-0.41020827
+-0.03360549
+0.18860571
+0.80792101
+0.93925147
+0.06460479
+0.07951005
+0.87747602
+-0.14914605
+0.89689316
+-0.66707740
+0.16010538
+-0.45564592
+0.56354287
+-0.64522531
+-0.34829039
+-0.35226798
+-0.95614122
+0.27215190
+-0.35401441
+-0.12768326
+0.34431879
+-0.79401169
+-0.76097364
+-0.93792998
+0.19330409
+0.50012289
+0.11773349
+-0.42867991
+-0.36139919
+-0.45650626
+0.44261082
+-0.68015921
+0.62896812
+0.13691773
+0.91575439
+0.15553843
+0.25735584
+-0.66370291
+-0.34791512
+0.96384510
+0.00002693
+-0.36565838
+-0.15033873
+0.11838925
+-0.07149743
+0.57906039
+-0.40403708
+-0.89312730
+0.17050222
+-0.48462826
+0.28330193
+0.40077259
+0.64271310
+-0.69742265
+-0.15721309
+-0.64790303
+-0.48898295
+-0.98228666
+-0.77759971
+0.91381360
+0.72610034
+-0.20699601
+0.20571163
+-0.07116447
+0.48980386
+0.02401918
+0.87322218
+0.19635004
+-0.05414731
+0.77357709
+0.51723255
+0.78897360
+-0.49641264
+-0.46502370
+-0.61568760
+0.31245499
+0.75415072
+-0.16143887
+-0.12139047
+-0.23401107
+0.00751994
+-0.19926999
+-0.17028158
+-0.47148559
+0.14724055
+0.55701301
+0.56183738
+-0.21394692
+-0.80700082
+-0.67197073
+0.63382934
+0.32538477
+-0.54691052
+-0.43145840
+-0.25600722
+0.41071974
+0.45596155
+-0.06342278
+-0.64969394
+-0.23533512
+-0.16735370
+0.58787714
+0.64906220
+0.73489396
+0.51697464
+0.64607763
+-0.09536249
+0.33576643
+-0.40760856
+0.70939713
+-0.79978062
+-0.89190868
+-0.40380944
+0.00947624
+0.01336803
+0.94336315
+-0.95994947
+-0.43712582
+0.03641626
+-0.22127986
+0.97136701
+0.83978128
+-0.54689268
+0.37117303
+0.04855067
+0.76084044
+-0.12893869
+0.25602942
+0.82128200
+0.96013589
+-0.63146159
+-0.23903651
+-0.89428928
+-0.80151590
+-0.03491138
+-0.88607446
+-0.60267464
+0.48390583
+-0.52098474
+0.06355609
+-0.15910707
+0.32016508
+-0.36807682
+0.23302253
+-0.53721688
+-0.19668024
+-0.29424232
+-0.36979350
+-0.41760080
+-0.95573145
+-0.35553941
+-0.46470248
+0.57336100
+-0.37723643
+0.67316235
+0.32312788
+-0.29840133
+-0.39243973
+-0.34852378
+0.13188833
+0.37913901
+0.40706195
+-0.88228426
+-0.13162118
+0.37819631
+0.00881122
+0.15496758
+0.75459295
+0.74480557
+0.13154187
+0.44966752
+0.22724706
+-0.75327508
+0.97672907
+-0.75411420
+-0.75995221
+-0.89581967
+-0.38653097
+-0.73632097
+-0.36677192
+-0.60065111
+0.58733323
+0.84263134
+-0.78213215
+-0.13636836
+-0.78859056
+0.81688961
+-0.81562747
+0.19331116
+-0.47830787
+0.30914237
+0.84034945
+-0.30188891
+0.50137414
+-0.49640521
+-0.40116330
+-0.66670858
+0.73227316
+-0.95524129
+-0.32153523
+-0.91241764
+0.10858909
+0.63345955
+0.89002215
+0.88802198
+-0.13874500
+0.43340891
+-0.09709737
+0.76479897
+0.27888173
+0.38297690
+-0.10128477
+0.39459647
+-0.92333388
+-0.98116008
+-0.37900375
+0.46896813
+0.45618672
+-0.65386496
+-0.43251205
+-0.92335133
+-0.91311495
+-0.53661999
+-0.43392295
+0.51119637
+-0.72654414
+0.35295852
+-0.10659489
+0.98538522
+0.50957119
+0.74994016
+-0.74981339
+0.16212523
+0.56290938
+-0.99127535
+-0.79169509
+-0.54534631
+0.44919428
+0.53311809
+0.47781384
+0.69156122
+0.59613777
+0.42248321
+0.82886687
+0.18064725
+-0.62208721
+-0.67358035
+0.50862932
+-0.54298690
+0.18087828
+0.81540501
+-0.91960871
+-0.67608988
+-0.67532682
+0.60909474
+0.34860837
+-0.16546363
+0.70842373
+-0.63414037
+-0.39961803
+-0.63063675
+-0.18171322
+-0.57642046
+0.59866285
+0.95179403
+-0.64085165
+0.49269688
+0.52901042
+0.64939439
+0.33609521
+0.01514864
+0.42199790
+-0.49973887
+0.61492682
+-0.86362836
+0.66315722
+-0.48411745
+-0.15001673
+0.02869022
+-0.30787963
+-0.91818821
+0.91115201
+0.11658299
+0.51225448
+-0.86435266
+0.25701249
+-0.78981575
+0.68385625
+0.73975074
+-0.33802289
+0.79758000
+0.35526323
+0.53117537
+-0.34420443
+-0.67956060
+0.65834200
+0.80849946
+0.62997866
+-0.15766013
+-0.58434209
+-0.83651797
+0.09082556
+-0.46901381
+-0.55996102
+-0.83161467
+0.88898754
+0.47944820
+-0.86196527
+0.05408692
+0.91403341
+-0.82119030
+0.33630645
+0.24895334
+0.01256466
+0.18699658
+-0.33038378
+-0.65454578
+0.81412053
+0.46378553
+-0.40271640
+-0.99256071
+0.77030599
+0.47564828
+0.31045830
+-0.66988847
+0.62253457
+-0.77879539
+-0.53810409
+0.07448021
+0.48055619
+-0.46686263
+0.56204220
+-0.68916688
+-0.51740371
+-0.69766956
+0.94915801
+-0.62605734
+0.83146030
+0.36333505
+-0.70468629
+0.75960939
+-0.70699677
+-0.04766623
+0.28041751
+0.77297941
+-0.44148797
+0.93959296
+-0.85605152
+-0.20966196
+0.02223754
+0.50537181
+-0.16879606
+-0.48802739
+-0.69683960
+0.21071815
+0.27761984
+-0.32108438
+-0.38416737
+0.87647247
+-0.44791049
+0.97132146
+0.76759398
+0.71005571
+-0.20310527
+-0.67062035
+-0.57939845
+0.65987670
+0.51890624
+0.37105823
+-0.33028525
+0.07845604
+-0.79444152
+0.11569858
+-0.00241631
+-0.88097356
+0.16520596
+0.32384598
+0.36210918
+-0.68766358
+-0.89326371
+-0.65878201
+0.37298191
+0.39232504
+0.59543836
+0.40936077
+-0.34464628
+0.97767389
+0.86582530
+-0.78900374
+-0.26887184
+-0.59429628
+-0.78173001
+0.76774967
+0.93137169
+-0.65365183
+-0.67477417
+-0.02593499
+0.22188509
+-0.44393778
+0.71234369
+0.86376178
+-0.93352114
+0.08037710
+-0.60975683
+-0.78965731
+-0.09612125
+0.50332129
+0.81836450
+-0.92384779
+0.64026117
+-0.31080580
+0.30795765
+0.28685820
+-0.53706309
+0.37497687
+-0.00011539
+0.32764626
+0.87233663
+-0.80585694
+-0.11949366
+-0.45900071
+0.27178729
+-0.95623920
+-0.67335451
+-0.44730592
+-0.86869808
+0.04115975
+0.90830123
+0.43182719
+0.63460577
+0.49940634
+0.77979314
+0.23072934
+-0.58181393
+0.67215645
+0.93380201
+0.11680222
+-0.81273322
+-0.56214017
+-0.66693738
+0.07569766
+-0.52377951
+-0.98559265
+-0.95106140
+-0.32393050
+-0.93037079
+0.75962853
+-0.90581872
+-0.43747205
+-0.82220627
+-0.08616972
+0.55523598
+0.06585002
+0.87211478
+-0.10939610
+-0.14729965
+-0.68744290
+0.69084108
+0.48104262
+0.16367602
+0.40178108
+-0.10140312
+-0.97145914
+0.46878362
+-0.63376334
+0.46557319
+0.74520934
+-0.60208365
+-0.18413180
+0.23372626
+0.74554825
+0.22838092
+-0.52104416
+0.36616683
+0.21512854
+-0.30171996
+-0.13017541
+-0.70442238
+0.61075103
+-0.16751474
+-0.22364128
+0.31847429
+-0.64506117
+-0.28182501
+0.24920464
+-0.79128204
+-0.69432208
+0.65034676
+-0.51280382
+-0.22651118
+-0.44919240
+-0.55178204
+0.23098373
+0.04767179
+0.81556380
+0.10068345
+-0.98801747
+-0.96126130
+-0.10646564
+0.05255377
+0.11577499
+-0.32712215
+-0.94447760
+-0.01816231
+-0.05677408
+-0.01904410
+-0.99329716
+0.79384017
+0.66516232
+0.34712172
+-0.65318069
+0.40674818
+0.63510942
+-0.81357090
+-0.43993020
+0.74265659
+-0.42167222
+-0.64705849
+0.41531575
+-0.39175433
+0.28404164
+0.01770055
+0.68731713
+-0.28002858
+-0.44519681
+-0.68776548
+-0.96081458
+0.22571850
+-0.50295061
+0.35762370
+0.77984810
+0.87893629
+0.37243736
+-0.18370253
+-0.12510836
+-0.79675123
+-0.54923868
+0.02546155
+-0.85024445
+-0.52779797
+0.43910277
+-0.99517676
+-0.99591456
+-0.83906791
+-0.67258939
+0.54133141
+-0.18903399
+0.19060230
+-0.03353292
+-0.54078338
+0.98263502
+-0.88170203
+-0.49543840
+0.08964288
+0.88962734
+-0.05769062
+-0.88079804
+0.81589901
+-0.07146281
+0.90565729
+0.59032249
+-0.55849302
+-0.40003335
+0.43851864
+0.83332872
+-0.08679426
+-0.23650616
+-0.13851458
+0.32516813
+0.79561365
+-0.99436974
+0.03914356
+-0.43095517
+0.62953150
+0.16812360
+-0.53186816
+0.01065719
+-0.42063558
+-0.21551150
+-0.66428721
+0.23647249
+0.78257644
+0.17358911
+-0.25289667
+0.58560371
+-0.75250776
+-0.87309742
+0.13107967
+0.82223630
+-0.81341749
+-0.08826643
+0.67694032
+0.65970075
+-0.82036889
+0.25245214
+-0.17928499
+0.72842038
+0.96116936
+-0.51031348
+0.50260258
+0.99812865
+-0.50261936
+-0.24353111
+0.30401480
+0.99476254
+0.22872376
+0.44010723
+-0.12459588
+0.29084003
+0.60028791
+0.85288715
+-0.46860600
+-0.96003585
+0.68961310
+0.54031968
+0.85376414
+-0.85638020
+-0.76951151
+0.54641454
+-0.50683726
+-0.99450426
+-0.85688161
+0.45299577
+-0.73083838
+-0.86149497
+-0.86016679
+-0.76011904
+0.69955905
+0.27805587
+-0.06229517
+-0.49347636
+-0.12891456
+-0.46189271
+-0.38298696
+-0.15356686
+0.44863941
+0.35940409
+0.80684874
+0.33404093
+0.51434777
+0.31095009
+-0.92446962
+-0.48257324
+-0.14815086
+-0.55663412
+0.97721042
+0.89130540
+0.88978028
+0.50539911
+0.74189187
+0.44900721
+-0.31496788
+-0.61008403
+0.16367017
+0.68992483
+-0.07763428
+-0.93667356
+0.47630366
+-0.64913016
+0.15329143
+-0.85610776
+0.61605970
+-0.60411761
+0.77670890
+-0.95860153
+-0.04732242
+0.00767047
+-0.71065013
+-0.23706622
+0.01815678
+-0.42560218
+0.67838273
+-0.97757076
+0.78234889
+-0.46796457
+0.83298100
+-0.71980608
+-0.81316610
+-0.23619596
+-0.10578037
+0.04592690
+-0.71910356
+-0.16763641
+0.22127025
+-0.88858333
+0.17346115
+-0.76834212
+0.50011224
+-0.04486465
+-0.79544141
+-0.70946884
+-0.15834377
+-0.40159905
+0.09967932
+-0.83874473
+0.81169248
+-0.37823825
+-0.09575147
+-0.14101283
+-0.39464382
+-0.62941908
+0.81495984
+-0.49293098
+0.80969860
+-0.38122017
+0.24284863
+-0.74527961
+-0.89977009
+-0.18794886
+-0.59629296
+-0.10205201
+0.85793003
+-0.43202333
+0.83987681
+0.05565607
+-0.00457648
+0.88561057
+0.13136822
+-0.46352062
+-0.93091862
+-0.40805610
+0.38921573
+0.94354148
+-0.15753606
+-0.60024425
+0.94867713
+0.06692522
+0.33380635
+0.30736516
+0.41746290
+-0.32168194
+0.26764341
+-0.96997253
+-0.10331828
+-0.65809503
+0.23384872
+-0.82933070
+0.56628531
+-0.19111696
+0.76994210
+-0.06647979
+-0.19431263
+-0.04187740
+0.30700459
+-0.00776385
+0.88556050
+-0.86749278
+-0.19977054
+-0.08657801
+0.07586633
+0.47212518
+0.20314474
+-0.71683180
+-0.54213124
+0.44359145
+-0.69054522
+0.59970105
+0.32720764
+-0.25791986
+-0.82931246
+0.53495450
+0.43043627
+-0.66342439
+-0.81978456
+-0.96950792
+0.41349979
+0.64868629
+-0.06984170
+1.00500793
+0.32428769
+-0.31038236
+0.59841364
+-0.33443502
+-0.30889608
+-0.50975823
+-0.48864803
+-0.95348399
+0.67000618
+-0.95161961
+0.67049188
+0.40611507
+-0.20737092
+0.04607010
+0.77179288
+-0.26531416
+0.38379596
+0.35735564
+-0.71483449
+0.23890292
+-0.67488840
+0.37398748
+-0.11742161
+-0.56148545
+-0.11856971
+-0.23316922
+0.58379473
+0.65683520
+-0.30098573
+-0.24357533
+-0.01741872
+-0.65438159
+-0.18139513
+-0.00550928
+0.03689575
+0.04087516
+-0.50470123
+-0.20120419
+-1.02325766
+-0.83164536
+-0.96916921
+-0.27668528
+0.50460752
+-0.03526202
+0.17949901
+-0.37431437
+0.79786443
+-0.57355211
+0.11508944
+0.64938896
+-0.54233154
+0.72240603
+0.00201147
+0.46497435
+0.83609261
+-0.45694386
+0.64990719
+0.53561826
+-0.63649680
+0.19645213
+0.23454260
+-0.45879259
+0.33193811
+0.19408544
+-0.53055092
+-0.01587156
+0.63018823
+-0.01646790
+0.54365677
+0.57847535
+0.46906053
+0.75230899
+-0.15540144
+0.48883724
+0.68440946
+-0.35699190
+0.15101765
+-0.78885109
+0.94476899
+-0.13700474
+-0.41328276
+0.94487196
+-0.62701285
+0.43781646
+-0.40239862
+0.22788074
+-0.87275554
+0.64681405
+-1.01422290
+0.50472254
+-0.51462066
+-0.92033384
+0.05243198
+0.19167894
+-0.63435912
+-0.38307476
+-0.05518979
+-0.01909413
+-0.23764946
+0.03955621
+0.42485534
+0.94449438
+0.61498754
+0.53773299
+-0.19201335
+0.25778953
+-0.42545019
+0.65168898
+0.71951918
+-0.85264978
+0.98122590
+0.78002871
+0.34109252
+0.23651680
+-0.42511212
+0.87515282
+0.44615614
+-0.21015557
+0.40570396
+-0.28531821
+0.52031773
+-0.65498393
+-0.75936433
+0.50358696
+-0.01282774
+0.81954197
+0.79836529
+-0.61169965
+-0.62790904
+0.61019381
+-0.28328437
+0.53417430
+-0.20189683
+0.35522352
+-0.33088999
+-0.39177815
+-0.59935689
+0.70617652
+0.83839430
+-0.40330394
+0.56611938
+-1.03237718
+-0.48047900
+-0.56351215
+0.50593949
+-0.33471775
+0.43682923
+0.44777357
+-0.67579275
+-0.82479866
+0.89183245
+0.75458771
+-0.56786046
+-0.88288878
+0.40517351
+0.98566954
+-0.19029505
+-0.83491634
+0.52152571
+0.47580854
+0.01408102
+-0.32212261
+-0.86445844
+-0.00973844
+-0.97399437
+0.53101768
+-0.08105075
+0.51512889
+0.01202069
+0.69210701
+-0.50106983
+0.23270411
+-0.27026503
+-0.68829388
+-0.04781977
+0.21148494
+0.87104006
+0.83482228
+-0.20220223
+0.65170235
+-0.56020869
+-0.04192345
+-0.63442030
+-0.45109439
+0.52741289
+-0.81838345
+-0.32387835
+-0.24467320
+0.83913742
+-0.12418463
+-0.07435611
+0.88327350
+0.60035959
+-0.59817011
+-0.68820052
+-0.75620375
+0.29216331
+-1.00436208
+-0.74490831
+-0.57804565
+-0.55435276
+-0.84271225
+0.52082234
+-0.51045714
+0.51262809
+0.65995895
+-0.33599967
+0.20820452
+-0.57941992
+-0.79963061
+0.55556587
+0.40767602
+-0.08403952
+-0.81987957
+-0.79781859
+-0.79517496
+-0.73355426
+-0.15675258
+-0.49702914
+0.83639461
+-0.37004282
+-0.14186507
+0.26493283
+0.15145425
+0.44753508
+0.18755491
+0.33224545
+0.53061529
+-0.03636758
+-0.11758826
+0.22337751
+-0.99940951
+0.79097115
+0.94376454
+-0.50643093
+-0.31963187
+0.23468772
+-0.46258943
+0.37506328
+0.46117689
+0.38152016
+0.42719378
+0.13977652
+0.65372953
+-0.33907291
+-0.84843492
+-0.23830492
+0.83697469
+-0.07835260
+0.55117548
+-0.85003778
+-0.79967883
+0.80959221
+-0.17498543
+0.63960156
+0.17353038
+0.65962087
+0.45100309
+-0.67172679
+-0.12797749
+0.79441927
+-0.45186119
+0.21432454
+0.09904233
+-0.25443994
+0.51741909
+-0.73248690
+-0.12825003
+-0.03509495
+-0.97177038
+0.98889330
+-0.88165938
+-0.37523284
+-0.75329770
+-0.26252628
+-0.55112915
+-0.29766688
+-0.68306716
+0.30364489
+0.07962802
+-0.78874511
+-0.02115589
+0.61474694
+0.79806961
+0.96083145
+-0.95842333
+-0.59276073
+0.87268376
+-0.32044752
+0.81111464
+-0.61681004
+-0.28116065
+-0.93997903
+0.13264124
+0.79330446
+-0.64599689
+-0.34286113
+-0.68073522
+0.95011983
+-0.88875091
+0.07782465
+0.46945670
+-0.70795592
+-0.37777458
+0.47988486
+-0.46410374
+-0.45712067
+-0.65279232
+0.67727598
+-0.37386638
+-0.35432170
+-0.70067655
+-0.97961484
+0.83419152
+0.05541658
+-0.94256249
+-0.78764080
+0.14535587
+0.62562221
+-0.94481343
+-0.80433207
+-0.72392744
+0.79568220
+0.64348145
+0.38217749
+0.87156198
+0.69113240
+-0.42928189
+-0.77905826
+-0.71177746
+-0.76830526
+-0.86868555
+0.57060832
+-0.00970029
+-0.60330306
+-0.27608715
+0.00361487
+-0.13540165
+0.19303165
+-0.67473664
+0.83013510
+-0.38164378
+0.14785977
+0.34971798
+0.03999511
+0.24798695
+-0.37812729
+-1.00912517
+-0.96835894
+0.72290230
+-0.12115973
+-0.62281065
+0.26319986
+-0.84558949
+0.77422514
+0.00199854
+0.55098354
+-0.13648449
+0.67826012
+0.32093400
+0.71633792
+-0.38005919
+-0.35806212
+0.74995398
+0.40144885
+-0.85854496
+0.23544658
+0.20678136
+0.08187979
+0.10364991
+0.30016234
+-0.58121030
+-0.37206178
+0.23071326
+-0.90433050
+0.27019770
+0.40425160
+-0.15551352
+-0.54323575
+0.90861716
+0.90433439
+0.24885847
+0.20744939
+0.75488160
+-0.02100948
+-0.62197938
+0.45944840
+-0.89663127
+0.20241435
+-0.47224356
+0.50964003
+0.55310547
+-0.89302190
+0.69532350
+-0.71511849
+0.18613746
+-0.87889248
+-0.49106584
+0.24556886
+-0.41273824
+-0.60831663
+0.98066491
+0.51316667
+0.51319750
+-0.69852658
+-0.45357029
+0.35867665
+0.79748602
+0.78850653
+0.59075055
+-0.74507435
+0.67557663
+0.11726951
+-0.46723383
+-0.52552184
+-0.37188738
+0.59908209
+-0.80483021
+0.13758549
+0.22665948
+0.00744237
+0.63508064
+-0.59010303
+-0.44775742
+-0.30773907
+-0.62246045
+0.82366062
+0.78907081
+0.28442008
+-0.18752992
+-0.21077551
+-0.29712258
+-0.43555071
+-0.39387222
+0.43788167
+-0.35302306
+0.38787810
+0.29195124
+-0.53870265
+-0.02338812
+-0.36602974
+0.21001316
+0.84038130
+0.16931005
+-0.03213442
+0.84996795
+0.25728137
+0.31894487
+0.12280759
+0.40625379
+-0.60866487
+0.78554857
+-0.09752991
+0.35942400
+-0.31427426
+-0.06665194
+0.73259828
+0.77236673
+-0.32087346
+0.88292238
+-0.68126903
+-0.50956068
+0.46457251
+0.82948231
+-0.65455280
+-0.49888092
+0.79300630
+0.20407267
+-0.45732930
+0.14944057
+0.38112712
+0.84495199
+0.20897199
+0.74392056
+0.67206718
+0.58474565
+-0.62060401
+-0.86912963
+0.46457431
+0.08912297
+0.30913877
+-0.60326746
+-0.26075160
+0.06194556
+0.72446469
+0.62915111
+0.14580965
+0.42809272
+-0.07188886
+0.70328081
+-0.34972417
+0.82031703
+0.95547211
+0.09950995
+0.06011307
+-0.03822696
+0.20644820
+-0.28554261
+0.63435745
+0.47953415
+-0.76542757
+-0.79163423
+-0.92278346
+-0.10595405
+-0.20003712
+-0.51749602
+-0.32332432
+-0.96412936
+-0.60669288
+0.37506211
+-0.48961729
+-0.58352521
+-0.97507768
+-0.14001077
+-0.05269080
+0.38620377
+-0.86267324
+-0.88188374
+0.70246387
+-0.87990782
+0.48124552
+-0.41629672
+-0.65160280
+-0.00263619
+0.14555871
+0.01647544
+0.74767423
+-0.98540691
+-0.03555441
+-0.79583649
+-0.02497166
+0.03896880
+-0.55119216
+0.99668133
+-0.14302897
+-0.13729322
+0.77276230
+0.17133939
+0.70984304
+0.29541874
+0.51021111
+-0.09688139
+-0.65752846
+-0.44173729
+-0.35151947
+-0.60498881
+0.16994679
+0.86285555
+-0.11152828
+-0.04488945
+-0.56813896
+0.17078984
+-0.47301757
+0.62866044
+0.47080231
+-0.77434663
+0.66811460
+-0.19725362
+-0.92024502
+-0.12786582
+-0.31774527
+-0.78128378
+0.21626124
+0.37338962
+0.84344442
+-0.81047220
+0.50386244
+0.41923036
+-0.86015944
+-0.97989784
+-0.67345119
+0.74736313
+-0.96923485
+-0.47583828
+-0.75287897
+-0.58316519
+-0.05752355
+0.90498640
+0.93296295
+0.00173024
+-0.51407016
+0.24725358
+-0.20569608
+-0.15717958
+0.28319914
+-0.85600751
+0.05178165
+0.87775505
+-0.67284855
+0.35040581
+-0.72766674
+0.53216386
+0.92893898
+0.85403752
+0.99399126
+-0.12063140
+-0.47036594
+0.90894699
+-0.07303351
+-0.43887258
+0.40287590
+0.24631655
+0.05412877
+0.23173571
+0.57793462
+0.39449263
+0.28562152
+-0.98670635
+-0.31055212
+-0.42697680
+-0.15206784
+0.60846043
+-0.24403548
+0.78473723
+0.01055646
+-0.28360212
+-0.88500836
+-0.50793952
+-0.78802326
+-0.54364023
+0.29633808
+-0.12962633
+0.72669339
+-0.14159507
+0.30614674
+0.94155657
+0.25613034
+-0.88246328
+-0.51176962
+0.28705776
+-0.01277298
+0.63602757
+0.18609750
+0.52033842
+-0.96975986
+-0.00521666
+0.99295592
+0.59480178
+-0.42465883
+0.17637861
+0.67294753
+0.00802183
+0.90751123
+0.98507774
+0.61042809
+0.33891022
+-0.90316302
+0.99155521
+-0.51531979
+0.18394351
+0.49090624
+0.00049114
+-0.69614923
+0.05217183
+-0.01656801
+-0.90306415
+-0.30090463
+0.64833093
+-0.01747042
+-0.07727253
+0.54746652
+0.33490932
+-0.43678105
+-0.41826969
+0.83872485
+0.43061423
+-0.66547853
+-0.20424086
+-0.80051228
+-0.22390962
+0.37459636
+0.12238002
+-0.01972508
+-0.93912938
+0.21911860
+0.29823065
+-0.12150371
+-0.24021786
+-0.80091359
+0.37285984
+0.90031600
+0.96019197
+-0.29223645
+-0.55517179
+-0.41057748
+-0.45379490
+0.04558194
+0.14038956
+0.01652753
+0.23025393
+-0.83319734
+0.47093523
+-0.41116762
+-0.53166050
+-0.98957081
+-0.44638973
+-0.89766766
+-0.89433440
+0.52879047
+-0.70290804
+0.71138084
+0.65685141
+0.10599196
+-0.52705872
+0.36509025
+0.66641247
+0.03553462
+0.82129300
+0.57526708
+-0.78748366
+0.74437106
+-0.80975208
+0.74309313
+0.94478095
+0.73355949
+0.80037272
+-0.15238154
+-0.73715934
+0.38553822
+0.07705820
+0.66558158
+0.92097604
+0.74212682
+0.22673607
+-0.42224449
+-0.72647965
+0.09678817
+-0.37270892
+0.73056841
+0.18657649
+0.45308983
+-0.23869979
+0.64232349
+0.58468664
+-0.13308680
+0.08965337
+0.23979664
+0.76190317
+-0.97997520
+0.69670093
+0.47191191
+-0.17443126
+-0.75223494
+0.29110026
+-0.34075481
+-0.32621849
+0.40266728
+0.43586564
+-0.51458895
+0.17119324
+0.53054690
+-0.82850057
+0.79898727
+0.01725793
+0.91116083
+-0.30744481
+-0.71595374
+0.16483307
+0.78301585
+0.65639341
+0.96660805
+-0.59183434
+0.02005064
+0.07328331
+-0.03903943
+0.84369349
+-0.99444086
+-0.89865971
+0.03202486
+-0.67259830
+-0.88738839
+-0.49539983
+0.78098094
+-0.96964285
+0.41579616
+0.77396917
+0.65657961
+-0.48861158
+-0.89101227
+0.31346309
+-0.44424796
+0.71917963
+-0.02504897
+0.35543489
+0.23209918
+-0.07209641
+-0.67331818
+0.34386444
+0.84585798
+0.38709009
+-0.69459805
+-0.51012728
+-0.51811790
+-0.21392804
+0.74064767
+0.03839231
+0.15056086
+-0.33307922
+-0.38840574
+-0.34367770
+-0.72605199
+-0.86419590
+0.00801373
+-0.83482727
+0.65463245
+0.85366738
+-0.93149452
+-0.83549458
+0.68122590
+-0.73580423
+0.39376962
+0.81664288
+0.61974537
+0.97997725
+0.52054703
+-0.43404263
+0.30993295
+0.54775655
+-0.13730377
+0.18334997
+0.33553910
+-0.94245988
+0.15139139
+0.94612408
+0.21136510
+0.60749948
+0.30141068
+0.29552901
+-0.38061261
+0.29454732
+-0.79459909
+0.42704618
+-0.77774823
+-0.13225514
+-0.79176907
+-0.93513228
+-0.53640598
+0.80107653
+0.17833173
+-0.34188730
+-0.34748572
+0.20968544
+-0.46273053
+-0.55117801
+-0.24682176
+-0.69384190
+0.99466026
+-0.47184849
+0.90472579
+-0.50533068
+-0.29413676
+-0.84512822
+-0.47742236
+0.94909811
+0.20066106
+0.97683704
+-0.29075290
+0.72419999
+0.33723759
+-0.02125363
+-0.40524689
+0.47387586
+-0.11315511
+0.34437657
+0.75418788
+0.35375369
+-0.07961090
+0.00652408
+-0.08502430
+-0.87180520
+0.28705375
+0.89511561
+-0.36506870
+0.02175595
+0.11738580
+-0.82120541
+0.50473310
+0.40018676
+-0.09542255
+-0.78624149
+-0.31259804
+0.77985730
+-0.10744744
+-0.31918889
+-0.74847347
+0.05548728
+0.01063289
+0.68403857
+-0.30021656
+0.84984356
+0.10489286
+0.20867996
+0.67511068
+0.44537819
+0.90887087
+-0.93550761
+-0.49551523
+0.56216100
+0.13701930
+0.33257026
+0.92776888
+-0.97418121
+0.51737947
+0.56684060
+-0.71804835
+-0.81355235
+0.00642966
+-0.16250970
+0.98468375
+-0.54548265
+-0.04949262
+-0.10155284
+0.15439109
+0.26269027
+-0.55431382
+0.95686694
+-0.60367889
+0.97425054
+0.59347882
+0.40453373
+-0.47869355
+0.94202289
+0.37845201
+0.82613013
+-0.49795284
+0.75154970
+-0.32707131
+0.75245683
+-0.34102664
+-0.30729213
+0.13553833
+-0.02123111
+0.47090610
+-0.34414912
+-0.44738927
+0.08600165
+0.97005643
+0.15970548
+-0.53292263
+0.17432195
+-0.00054351
+-0.90673609
+-0.98664702
+0.16914997
+0.59152632
+0.58653596
+0.11614650
+-0.09214797
+0.30120687
+0.08018130
+0.21000893
+-0.93929619
+1.00779412
+0.82493257
+0.26652549
+-0.64175467
+-0.71506509
+-0.52179124
+-0.90098294
+-0.39915588
+0.70081784
+0.74073677
+-0.65732408
+0.22086875
+0.68816475
+0.38308003
+0.31299181
+-0.01029663
+-0.32375407
+-0.21916412
+0.78533119
+-0.09622261
+-0.99276452
+0.52299359
+0.45139755
+0.80651918
+-0.71147265
+0.78067313
+-0.77113110
+-0.57927733
+1.01860317
+0.74689452
+0.28412292
+-0.05138996
+-0.62145779
+0.46430633
+0.92482807
+-0.86972968
+-0.33734441
+0.68971878
+0.08741837
+-0.15806132
+-0.07830654
+-0.74061928
+-0.52031049
+0.00330136
+-0.07208723
+0.64968841
+0.76332931
+-0.52527179
+0.12136424
+0.56036898
+0.18230235
+-0.63897985
+-0.92787932
+-0.79871523
+0.43066066
+-1.01749660
+-0.22253726
+0.94934558
+0.51407135
+-0.25419804
+0.23598051
+0.64107615
+-0.91743943
+-0.56422857
+-0.98045708
+-0.37648279
+0.97207285
+0.47512697
+-0.42615176
+-0.95270513
+0.53948782
+-0.26932841
+-0.68378299
+0.83491338
+-0.71985565
+0.28790428
+0.32905529
+0.11916579
+0.05445658
+0.07033541
+-0.61077406
+0.13937453
+0.20449349
+-0.62539196
+-0.73047137
+-0.83279028
+0.95303209
+-0.27517439
+0.15684298
+0.28804360
+0.06008619
+0.85416560
+-0.72737392
+0.26224362
+0.67193158
+0.41060273
+-0.73179226
+0.55534380
+-0.12841465
+0.72031717
+-0.18796491
+-0.86852981
+0.90330143
+-0.17520587
+0.71968420
+-0.94519842
+-0.03752272
+-0.90355298
+-0.21543327
+-0.33743844
+-0.35923973
+0.09154313
+-0.85795427
+0.38014573
+0.58619975
+0.17394103
+0.46220649
+-0.76612702
+-0.09338112
+0.76346465
+0.34700475
+0.80552180
+-0.55260157
+0.36101702
+-0.86925446
+-0.08242677
+0.21269669
+-0.72423290
+0.33297657
+0.87654949
+-0.78296463
+0.61261473
+-0.09997951
+0.60470156
+0.58131288
+0.74351479
+-0.89026013
+0.89646593
+-0.65124788
+-0.13272428
+0.68149882
+0.28030341
+-0.28481057
+-0.47497043
+0.22636901
+-0.41463535
+0.91028282
+0.42112493
+0.96223481
+-0.70127716
+-0.26823046
+0.70202702
+0.21783864
+0.24091370
+0.39081870
+0.32343281
+0.58991723
+0.70816133
+0.18641186
+-0.07862042
+-0.26603445
+0.02121015
+0.55367166
+-0.05810505
+-0.42390007
+0.51845269
+0.37187210
+0.44305349
+-0.78679505
+0.38663515
+-0.88065962
+0.39392568
+-0.19116173
+-0.34909092
+-0.81951568
+0.94206877
+-0.51547359
+0.99455165
+-0.24627074
+-0.55924992
+0.85526081
+0.91215239
+0.02166919
+-0.73819671
+-0.23442858
+-0.21845561
+-0.88755673
+0.41155717
+0.10448409
+0.58332135
+0.28416792
+-0.80252916
+-0.74843720
+0.96171427
+0.54411132
+-0.85125477
+0.31193989
+-1.00798532
+0.95506747
+-0.62478281
+-0.71612992
+0.02155615
+0.91029383
+0.02273300
+0.78351354
+-0.11612949
+-0.32247874
+0.63379910
+-0.64168675
+-0.89971571
+-0.51723571
+-0.74043362
+0.29939024
+0.89790086
+-0.73705753
+0.66048106
+-0.62035959
+-0.85062520
+1.00418787
+-0.47265969
+-0.26874866
+-0.69874834
+0.04916726
+-0.62122097
+-1.00842905
+0.20203631
+0.09572760
+0.94969174
+-0.46187279
+0.32982728
+0.91793869
+-0.07157459
+0.84079268
+0.77403049
+-0.24215069
+-0.38649298
+-0.75223245
+-0.23232883
+0.87881827
+0.65151608
+0.88992704
+0.61196570
+-0.22789362
+0.61624386
+-0.68169953
+-1.00185164
+-0.73366561
+-0.65604754
+0.57853176
+1.02656732
+-0.91411667
+0.21801917
+-0.48246471
+-0.10173021
+0.65486017
+0.85288834
+-0.76404066
+0.61651806
+-0.17071647
+0.76256257
+-0.26565578
+-0.25685154
+0.69266448
+-0.67056734
+-0.41003035
+0.66103615
+0.91273366
+0.99045862
+-0.84215630
+0.54966323
+-0.29249994
+0.77574652
+-0.24076753
+0.72440495
+0.39281008
+0.47822958
+0.76197487
+0.87352335
+0.25447586
+0.99036549
+-0.63647233
+-0.50957498
+-0.94509125
+-0.17943888
+0.89491712
+0.76514912
+0.94675169
+0.49159405
+-0.13641097
+-0.23666828
+-0.47417924
+-0.94221185
+0.06689873
+-0.83682042
+0.14221238
+0.58745619
+-0.10403295
+0.89856024
+-0.99935538
+-0.58119936
+0.24644204
+0.90464595
+-0.39283225
+0.32443879
+0.02573543
+0.22029104
+0.43603929
+0.64607014
+-0.90657233
+-0.31532241
+-0.22226718
+-0.27666526
+-0.27599326
+-0.02525345
+0.07025898
+-0.10346850
+0.91000213
+-0.23365175
+-0.00433298
+0.86700406
+-0.33701564
+-0.07535942
+0.14321750
+-0.34270743
+0.80497401
+0.89926097
+-0.72930895
+-0.79255003
+0.44147802
+0.01690864
+-0.34802370
+-0.27878597
+0.92296383
+-0.51163117
+0.05009485
+-0.16621725
+-0.85991368
+-1.06804805
+-0.22931190
+-0.68379940
+0.80341150
+0.99541655
+-0.37954721
+-0.15681669
+-0.67918791
+0.47281727
+-0.08186301
+-0.47790801
+-0.91729634
+-0.82641467
+0.92837333
+0.22076090
+0.71472284
+-0.63199682
+0.91003547
+0.75560707
+-0.61087413
+-0.63040407
+0.65156986
+-0.75193914
+0.34397413
+-0.49159461
+0.48829105
+-0.48536960
+0.21901040
+0.22118260
+-0.83256862
+-0.74204420
+0.13258489
+-0.86632751
+-0.97693845
+0.70744693
+0.24851012
+0.04892920
+0.53165179
+0.52706498
+-0.42589378
+0.04922267
+-0.19032406
+0.73690454
+0.08344213
+-0.50328291
+-0.39644383
+-0.10107033
+0.09238448
+0.12487820
+0.29909061
+-0.73201882
+-0.19079989
+-0.59863206
+0.23455836
+-0.15535727
+0.53937957
+-0.97421021
+-0.29200777
+0.82598533
+-0.91820089
+-0.81216088
+-0.94874417
+-0.35529102
+0.68533306
+0.33775244
+-0.16730390
+0.31862639
+-0.85727165
+0.80603579
+0.50720165
+-0.45065701
+0.07177624
+-0.31829249
+-0.31214584
+-0.85101777
+-0.03797160
+0.98113217
+0.37056998
+0.27432299
+-0.50368990
+-0.74125301
+-0.61150686
+0.21663462
+-0.72745075
+-0.70637997
+0.55769163
+-0.33171843
+-0.90929752
+-0.29541023
+0.90271991
+0.39292531
+-0.10875203
+0.01567485
+-0.03479429
+0.02986954
+-0.92793387
+0.02790654
+-0.26203273
+0.06043960
+0.28665688
+-0.00484701
+-0.41180094
+-0.04109136
+-0.35578317
+0.38611003
+0.68961273
+0.36800040
+0.73595013
+0.07572739
+-0.28738778
+0.16913044
+-0.83852216
+-0.89952310
+0.90268059
+-0.73402918
+0.33869465
+0.96318352
+-0.39586592
+0.09598601
+0.84405777
+0.88829181
+-0.96567994
+-0.33432716
+-0.05348550
+-0.48345115
+-0.49137092
+-0.56029570
+0.93325874
+-0.28494671
+0.07312415
+0.79708871
+0.61574413
+-0.09223055
+-0.85590592
+0.46123054
+-0.05936264
+0.74541011
+-0.22303571
+0.90757934
+0.30924321
+0.28707947
+-0.62424844
+0.94000608
+0.73697369
+0.01284555
+-0.62387988
+0.36433358
+-0.49463518
+-0.41093067
+-0.27948951
+0.15886909
+-0.91900805
+-0.82192349
+-0.38274205
+-0.70806248
+0.99511577
+0.77765370
+-0.62232008
+-0.42483940
+-0.02581691
+-0.92718454
+0.86214835
+0.32592178
+0.12351945
+-0.24569493
+0.74330007
+-0.03975734
+0.36015649
+-0.21087588
+0.46563753
+-0.37844243
+-0.84301457
+-0.07497292
+0.44566873
+0.41733671
+0.54535674
+-0.23136485
+-0.48280473
+-0.39194987
+-0.85035077
+0.55177744
+-0.66854931
+0.94118095
+-0.14030051
+-0.24241961
+-0.51114251
+0.49050713
+-0.89176623
+-0.10680459
+-0.83958974
+0.09363679
+0.06964767
+-0.95322147
+0.29060652
+-0.34440809
+-0.40396701
+0.02861881
+-0.78219818
+-0.34832584
+-0.51777449
+0.25836523
+-0.12676811
+0.01987624
+0.42470754
+-0.99314452
+0.16235558
+-0.47696394
+0.86912525
+-0.81391516
+-0.60685745
+-0.91730858
+0.61167824
+0.03168976
+-0.61293709
+0.31540191
+0.68830061
+-0.60979339
+-0.33705133
+-0.92804173
+0.86402988
+-0.85200576
+0.61612904
+-0.69908929
+-0.44528067
+0.94533670
+-0.97070565
+0.03698969
+0.17696095
+0.44368720
+0.64352071
+-0.22778714
+-0.24971700
+0.49290884
+0.03699541
+-0.81388250
+-0.18568540
+0.43100727
+0.46402240
+-0.76645151
+-0.99194431
+-0.29984850
+0.78648484
+-0.23668069
+-0.33616376
+-0.14245307
+-0.27489161
+-0.15148097
+0.07380152
+0.15258658
+0.27004349
+-0.18067151
+0.69594073
+-0.53191784
+0.35720897
+-0.97578271
+0.52210367
+0.49810374
+-0.88675652
+0.80657673
+-0.39390194
+-0.08937693
+-0.64117765
+0.09499252
+-0.49904585
+-0.66166946
+0.78321576
+-0.82956608
+-0.79429837
+-0.44694865
+-0.41887408
+-0.47474140
+0.44166195
+-0.84998280
+0.44586074
+-0.23756504
+0.31273663
+0.40962255
+-0.61260698
+-0.66240908
+-0.88000168
+-0.48476985
+0.73444193
+-0.03957452
+-0.42332486
+-0.65422152
+-0.85514166
+-0.10672888
+-0.05948449
+-0.31789676
+-0.98783839
+0.79030613
+0.20442158
+0.93162756
+-0.35926178
+0.67028334
+0.05535789
+-0.17402282
+-0.06561202
+-0.94931157
+0.25932443
+-0.74139073
+-0.43749112
+0.02152979
+-0.72928470
+-0.95779809
+0.69632542
+-0.33043212
+-0.36979908
+-0.84117390
+-0.85148124
+0.37875736
+-0.83360808
+-0.71035922
+0.66091990
+0.39844882
+0.66227067
+0.37384164
+0.12056386
+-0.00986201
+0.20963895
+0.56448865
+0.90279925
+-0.71847311
+0.88458514
+-0.14608991
+-0.32171690
+0.39947379
+-0.12558764
+-0.59337574
+-0.32874840
+0.58985329
+-0.73383844
+0.86332285
+0.94975984
+0.16327393
+-0.29459268
+-0.35584754
+0.64407432
+0.81448269
+0.86594033
+-0.51014522
+-0.81000775
+-0.91497004
+0.85849512
+0.31947374
+-0.37798125
+-0.81009322
+0.59632182
+0.41115308
+0.40662456
+-0.63295174
+-0.90957534
+-0.82065891
+0.02755880
+0.85180807
+-0.28625429
+-0.59175634
+0.26084626
+-0.25776392
+0.81594336
+0.38515759
+-0.18452996
+-0.01306593
+-0.75891532
+-0.37043190
+-0.27398944
+-0.16699415
+0.10667396
+0.32983804
+-0.09004855
+-0.20796072
+-0.56327260
+0.17254496
+-0.18239433
+-0.71512431
+-0.28011525
+0.56301403
+0.49677622
+0.65539026
+-0.14300102
+-0.48994893
+0.30416131
+-0.45613164
+0.26841033
+0.62093341
+0.86224163
+-0.87022749
+0.64585674
+-0.02193582
+0.38247550
+0.66889489
+0.54401553
+-0.95989729
+0.74654686
+-0.85016647
+-0.78234361
+0.96677685
+0.61301827
+-0.56605664
+0.15097153
+-0.65102974
+0.28594828
+0.42587066
+-0.70654660
+0.19464433
+-0.40857005
+-0.68768844
+-0.32460690
+-0.37057996
+-0.47700447
+0.53733528
+0.42277300
+0.92031813
+-0.56512186
+0.82754481
+-0.96785195
+-0.37279534
+0.10273933
+-0.26708609
+0.63906908
+0.31073284
+-0.57097790
+0.81525087
+-0.82647127
+-0.76249845
+-0.78946267
+-0.79659219
+-0.06923330
+-0.23689878
+0.61251545
+0.73741484
+-0.29872799
+0.66029334
+-0.04629725
+0.38769925
+-0.12347335
+-0.80259287
+-0.15451860
+-0.18556833
+-0.23836648
+-0.01605177
+0.16293871
+0.80252314
+-0.83518280
+-0.62395972
+0.93301380
+-0.10401189
+0.16488874
+0.32171011
+-0.54716668
+0.17320585
+0.35171151
+0.00799060
+0.35266638
+-0.78674999
+-0.47183436
+-0.76292187
+0.27141297
+0.81056321
+-0.19952500
+-0.43690485
+-0.14328563
+-0.24282336
+0.54384112
+0.22900116
+-0.87825067
+-0.90508141
+-0.84725694
+0.81530237
+0.74225485
+-0.50238860
+-0.83893645
+0.35898352
+0.40054393
+-0.92196601
+0.96037424
+-0.85185626
+0.06851387
+-0.38148886
+-0.19076926
+0.02489758
+-0.69614372
+-0.48303223
+0.79225469
+0.57152236
+0.11225402
+-0.68423951
+-0.59166056
+0.90730929
+0.73881018
+-0.43996114
+-0.24081290
+0.46459603
+-0.66121310
+-0.71970364
+0.22754896
+0.92203879
+-0.25283355
+-0.53802863
+0.98332047
+0.45812714
+-0.67092901
+-0.18496835
+0.96246648
+0.57990670
+-0.23304158
+-0.98086695
+-0.73098323
+-0.90638462
+0.05769169
+-0.11515671
+0.21270132
+-0.26064533
+-0.95237811
+-0.50901672
+-0.13661224
+0.32551086
+0.58404255
+-0.72221610
+0.43707573
+0.42986524
+0.11146355
+-0.23630267
+0.77257264
+-0.84455717
+0.58300292
+0.02879834
+0.08263993
+-0.10565698
+0.11907005
+0.12696207
+0.12945640
+0.53088033
+0.19904757
+-0.50949562
+0.14080608
+-0.21406871
+0.21758640
+-0.64714178
+-0.34021842
+0.34024608
+-0.50868571
+0.66182077
+0.55761981
+-0.76974595
+0.83689344
+0.42670310
+0.49115670
+-0.37992376
+0.14770257
+0.67045975
+-0.13867402
+0.41648114
+0.02643108
+-0.01133317
+-0.27146643
+0.40477169
+0.44608128
+-0.68064046
+-0.02268118
+-0.92153181
+0.09972954
+-0.37198532
+0.96716547
+0.78089130
+0.11857808
+-0.76936980
+0.55823720
+-0.32829577
+-0.26872545
+-0.81084038
+-0.71745473
+-0.74309772
+0.99937201
+-0.13780403
+-0.39486158
+0.47671819
+-0.12175525
+0.94570012
+0.88081217
+-0.02926848
+-0.16304252
+0.14390401
+0.57082261
+-0.57544451
+-0.84261130
+-0.71574039
+0.16003937
+-0.34074730
+0.73313277
+1.00263259
+0.81978619
+-0.95737086
+0.44496913
+0.94183828
+-0.33233524
+0.70892002
+-0.05993936
+0.22684327
+-0.49095633
+0.29391771
+0.79594028
+-0.37755267
+0.56965727
+0.97793604
+0.09654946
+0.66706646
+-0.07753996
+-0.58170724
+0.91726829
+0.84675830
+0.20867128
+-0.35676923
+-0.89820778
+-0.45301966
+0.51463704
+0.53781720
+0.39815243
+0.56173884
+0.90473485
+0.20854669
+0.70964617
+-0.88228430
+0.37857291
+-0.49902404
+0.13541500
+-0.70538569
+-0.21848789
+-0.77209005
+-0.86193155
+-0.65316991
+-0.85366520
+-0.26966291
+-0.45926541
+0.44696545
+-0.93351962
+0.40893311
+0.36617681
+0.66867981
+0.35042738
+0.82804097
+-0.12252545
+0.06495825
+-0.25405711
+0.88906633
+-0.32251893
+0.64963162
+-0.97084196
+0.42109467
+-0.75702232
+-0.90247380
+0.12611061
+0.61022683
+-0.72273911
+-0.18783833
+0.33406991
+0.12424927
+0.13611717
+0.39838226
+0.68970222
+0.16143385
+0.01070778
+0.17419715
+0.96271115
+0.67736252
+0.81430167
+-0.86218237
+0.09984849
+0.38095329
+-0.65602901
+-0.28345485
+0.76525461
+0.80748429
+0.45247552
+0.13874275
+0.04401704
+0.89523343
+0.80093655
+-0.22671310
+-0.17551918
+0.18227242
+0.99965929
+0.08328973
+-0.58662603
+0.27541396
+-0.42919725
+0.74557110
+-0.64340520
+-0.84626326
+0.73308645
+0.49891890
+-0.24924345
+-0.29295379
+-0.50578912
+0.44686452
+-0.18199543
+0.45252160
+-0.42733354
+-0.71682900
+0.67279436
+-0.81486832
+0.80332560
+-0.66760715
+0.06624455
+-0.03756039
+-0.35416360
+-0.76903969
+-0.40862540
+-0.28733761
+0.35020446
+-0.21439726
+-0.21041871
+0.12283448
+-0.83475345
+0.72139848
+0.76661700
+0.01188088
+-0.15631147
+0.08038577
+0.13855705
+0.50632354
+-0.81681643
+0.53295969
+0.46401335
+-0.09502390
+-0.35964133
+0.04929905
+0.73674581
+0.37790093
+0.06010723
+0.43784020
+0.06919020
+-0.35721219
+-0.46877297
+-0.54816128
+0.78677103
+0.07807553
+-0.35809289
+0.33056497
+0.31981138
+0.42427504
+0.43206142
+-0.17218281
+-0.45899118
+0.21852471
+-0.28210959
+0.18932742
+0.88726480
+0.10266131
+-0.61173979
+-0.40057736
+-0.69637195
+-0.65842770
+0.76723378
+-0.68845978
+0.03630971
+-0.74414965
+0.19338638
+0.68470107
+-0.55774776
+-0.12161531
+0.55663528
+0.37743114
+-0.55823383
+0.18333178
+0.05466820
+0.26404244
+0.02941958
+-1.01621781
+0.04644956
+0.34778053
+0.44884501
+-0.65014225
+-0.55767337
+0.36603174
+0.52180631
+0.21404495
+-0.44428027
+-0.62908752
+0.59448532
+0.31473916
+-0.78195812
+0.50470234
+-0.53797494
+0.40761531
+0.69066242
+-0.01254546
+0.01843295
+0.72528731
+0.47507472
+0.08218086
+-0.81601361
+-0.08836068
+-0.30537193
+-0.87669993
+-0.96935519
+0.58495757
+0.28777836
+-0.27681925
+-0.05797414
+-0.56220061
+-0.69600987
+0.71799014
+-0.57575731
+-0.70532163
+0.13243494
+0.66379161
+-0.48389338
+-0.33035205
+-0.95488091
+-0.26110319
+0.27177802
+0.24073221
+0.43429823
+0.93203722
+0.12117041
+0.27920767
+0.33095784
+-0.36606725
+0.56584351
+-0.35030772
+-0.58979845
+0.44653311
+-0.39124774
+0.71741580
+-0.52663714
+-0.81008755
+0.42854486
+0.21750498
+-0.18864548
+0.24339381
+0.98220532
+0.88084096
+-0.72524118
+-0.56787374
+-0.93071778
+-0.60792925
+0.85710945
+-0.15129872
+-0.60710088
+0.89457172
+0.43960932
+0.10283495
+-0.23672557
+0.73616982
+0.34423980
+0.23712819
+0.24163490
+0.56593439
+-0.56287858
+-0.10234033
+-0.73341162
+-0.40767234
+-0.69554093
+-0.94980559
+-0.64034987
+-0.34717566
+0.55130381
+-0.81242549
+-0.46634245
+0.31544354
+-0.53328742
+0.32900044
+0.07136881
+0.62031172
+-0.07600276
+0.95740847
+0.37472210
+-0.74289678
+0.25904048
+0.65326591
+0.02383841
+0.23525771
+0.85576341
+0.72652278
+0.40063477
+-0.89957860
+-0.37864034
+-0.09507130
+0.56478150
+-0.76896760
+-0.34428129
+-0.61743620
+0.22066234
+0.60465828
+-0.64744841
+0.85413524
+-0.07697237
+-0.16729824
+-0.75913025
+0.89639425
+-0.78327792
+-0.37598816
+0.80493653
+-0.83753693
+-0.69148925
+-0.36826878
+0.17799019
+-0.37535636
+-0.33727529
+0.07911758
+0.52124015
+0.44231743
+-0.08527761
+-0.66227554
+0.92253485
+-0.37691995
+0.47580505
+0.17631973
+0.84922387
+-0.55070142
+-0.87828645
+-0.85161869
+-0.88541715
+-0.85121295
+-0.67132664
+-0.34067906
+-0.87205998
+-0.68786034
+0.10706532
+-0.20249012
+-0.88913468
+0.26400718
+0.74458320
+-1.06046686
+-0.55887679
+0.90900160
+-0.12097635
+-0.03504118
+0.14230822
+0.25043599
+-0.79205901
+-0.50243011
+-0.81748457
+-0.48827149
+-1.01364318
+-0.16727139
+-0.96788886
+0.49399602
+0.90619255
+0.67543631
+0.22759449
+-0.37204001
+0.86196011
+-0.02620927
+0.56074285
+0.15895583
+-0.24420330
+-0.29082020
+0.98625222
+0.77285670
+0.96909173
+0.16605101
+0.24438163
+0.39454872
+-0.14550042
+-0.88037186
+0.53429587
+-0.33304567
+0.79861188
+-0.55214913
+-0.49950792
+-0.10341731
+0.21497008
+-0.90591954
+0.05834294
+0.08701979
+0.29353488
+0.18816837
+0.37001724
+0.05907772
+-0.59373502
+0.82184557
+0.74626923
+0.88824703
+-0.65557229
+0.28136960
+0.19201207
+0.78256408
+0.19777600
+-1.03292278
+-0.25791099
+-0.32937408
+0.93029774
+-0.85375535
+0.77516449
+-0.80817427
+0.45083918
+-0.80733191
+-0.44761440
+0.15095562
+-0.38367370
+0.94288052
+-0.58684109
+-0.48424653
+-0.04688803
+-0.41105733
+-0.36595889
+0.74970932
+-0.86458625
+0.56276419
+-0.84658871
+-0.32275722
+-0.55554374
+-0.61396811
+-0.67148184
+-0.94116267
+0.84323780
+0.54013035
+-0.76388853
+0.43611991
+-0.96519171
+-0.06126542
+0.33539858
+-0.64700425
+-0.91868871
+0.58388381
+0.50090549
+-0.93305189
+-0.17971792
+-0.87316955
+0.98634148
+1.01912958
+0.78323363
+0.42009214
+-0.22935322
+-0.81848196
+0.31141220
+-0.32713150
+0.77847921
+0.95759637
+-0.22412330
+-0.43071978
+0.92385498
+0.44822881
+-0.42860211
+0.79362402
+0.13975358
+0.32582915
+-0.26355440
+-0.68554523
+0.87914193
+0.04967270
+0.81831311
+-0.65523682
+0.69084918
+0.95958993
+-0.22885364
+0.95566218
+0.71833611
+0.27344149
+0.61322818
+-0.70996771
+-0.83431050
+0.24211984
+0.96607722
+-0.84491348
+0.88722670
+-0.91003810
+0.60061956
+-0.17089265
+0.77492548
+-0.69510608
+0.31260236
+0.62023738
+-0.45844616
+0.20016780
+-0.82362083
+-0.74968549
+-0.65709816
+0.50682103
+0.92928545
+-0.73888205
+-0.42932659
+-0.38436584
+-0.79157471
+0.33795753
+-0.45127292
+0.10749235
+-0.84237120
+0.68828113
+-0.96099087
+0.56156116
+-0.95030799
+0.62377545
+0.72050431
+-0.90819267
+-0.24005914
+0.91874739
+-0.05471858
+-0.68028676
+0.87333097
+0.92030779
+-0.30058569
+0.50263240
+-0.02880319
+-0.97062702
+-0.14143436
+0.89641872
+0.25243724
+0.14860564
+-0.45145538
+0.38884117
+0.70472339
+-0.24076464
+-0.96561183
+0.60284642
+0.40351153
+-0.90307449
+-0.02117379
+0.30566079
+-0.43244066
+0.45205531
+0.69259097
+0.69927340
+-0.56388191
+0.83479477
+0.41341184
+0.39676456
+0.67406026
+-0.87668764
+0.14383684
+-0.26912888
+-0.96996830
+-0.42786505
+-0.53861762
+0.20407054
+-0.26219386
+-0.06120771
+-0.78570886
+0.37221310
+0.45920577
+0.80005533
+0.06183792
+0.33167002
+-0.87662164
+0.54261389
+0.09797355
+0.61493000
+-0.57531240
+0.71614370
+0.53162001
+0.47535152
+-0.42608278
+0.96088587
+0.80418518
+0.64441365
+-0.78200777
+-0.10101841
+-0.40036441
+-0.36774829
+-0.01172730
+0.85349304
+-0.19057750
+0.67738490
+0.30728524
+-0.93755479
+0.11751626
+-0.44686834
+-0.40910152
+-0.60453430
+-0.82550688
+-0.66364634
+-0.03554157
+-0.34539008
+-0.36120664
+-0.98835412
+0.92254690
+0.90881332
+0.84898391
+0.46942589
+-0.64471010
+0.34998272
+0.06324426
+-0.37553724
+-0.90956368
+-0.70655760
+-0.85555147
+-0.53940242
+0.06115099
+0.78151280
+0.07293227
+0.21376932
+0.92761999
+0.71920605
+-0.28945719
+-0.07521820
+0.48797416
+-0.39654958
+0.09131263
+-0.71505738
+0.85142680
+0.08134518
+0.64512482
+-0.02745326
+-0.36921804
+-0.31431246
+-0.83950657
+-0.62307597
+0.10386011
+0.60032515
+0.82863307
+0.17253816
+-0.62318845
+-0.04860872
+0.09563054
+-0.57239801
+-0.64781651
+-0.60275616
+-0.53081667
+0.08436902
+0.80553341
+-0.79406013
+0.56885088
+-0.92347006
+0.98121396
+0.20343995
+0.85038733
+-0.70346543
+0.57325923
+-0.10725582
+0.70764351
+0.76022601
+-0.91599644
+-0.71189713
+-0.32990664
+0.03697729
+-0.80252372
+-0.45141417
+-0.40781730
+-0.06572926
+-0.50972354
+-0.22447079
+-0.73254025
+-0.22981554
+0.91493475
+0.37742662
+-0.84798972
+0.23277915
+0.26942587
+-0.74556315
+0.22328007
+0.15263951
+0.11657882
+0.68564999
+0.30291677
+0.73034024
+-0.92075443
+0.23995340
+-0.14499867
+-0.94937969
+0.60665381
+0.07067525
+0.55922019
+0.97586131
+-0.09200209
+-0.35356027
+0.69495034
+-0.24631357
+-0.12618595
+-0.61403897
+0.85890102
+0.05700529
+0.16780698
+-0.47087771
+-0.67360589
+-0.55714011
+-0.20591486
+0.44458115
+-0.56554064
+0.41526973
+0.90256190
+0.02488339
+0.95482492
+0.54617703
+0.11612618
+-0.38344854
+0.46713376
+0.94213820
+-0.24221838
+0.06069815
+-0.81179971
+-0.44910443
+-0.27355504
+0.08465314
+-0.81859896
+0.59044361
+-0.03140414
+0.85126710
+0.62605321
+-0.33791417
+0.04374373
+0.24299192
+-0.09724379
+-0.91790320
+0.01662207
+-0.69872287
+0.58054936
+0.08560491
+-0.92622468
+0.53429925
+0.23395514
+-0.83937494
+-0.11664897
+-0.51232722
+0.68149972
+-0.57516059
+0.63991761
+0.37891006
+0.95301771
+-0.61710697
+-0.34868956
+0.19424391
+0.92158866
+-0.10994923
+-0.10965967
+0.07286572
+-0.80107647
+0.09912729
+-0.11696911
+0.09238338
+-0.04255974
+-0.66124010
+-0.06704152
+0.31247902
+0.77709508
+-0.99861902
+-0.83434488
+0.44278073
+-0.90647990
+-0.00028598
+-0.76663773
+-0.12034845
+0.22791958
+0.25549316
+0.45096862
+0.18396544
+0.41975558
+0.47320831
+0.94657922
+0.07971168
+0.09565020
+0.08430767
+-0.67600134
+0.35809648
+-0.91499357
+-0.66359109
+-0.02368873
+-0.79347050
+-0.57160684
+-0.34219664
+-0.39511007
+-0.17931861
+0.33427215
+-0.90131083
+-0.85409930
+0.10558689
+-0.34997165
+-0.95169020
+0.13205755
+-0.46232146
+0.77046871
+-0.15030986
+-0.72175995
+-0.23645532
+0.19615757
+-0.41032058
+-0.82397282
+-0.93215574
+-0.46490258
+0.43488741
+0.52178967
+-0.20992517
+-0.06587255
+-0.30643052
+0.64014065
+-0.26786160
+-0.12146848
+-0.56978038
+-0.16855222
+-0.21132255
+-0.18231070
+-0.14613760
+-0.38932163
+-0.30662447
+0.42372119
+0.91121447
+-0.87149577
+0.66778135
+0.82290649
+-0.77836460
+0.92635119
+-0.25191718
+-0.45120031
+-0.87728580
+-0.95201582
+-0.63784966
+-0.71341804
+-0.48766714
+0.93246996
+0.65486634
+-0.83708072
+-0.01164466
+0.01894701
+-0.81144600
+0.71033597
+-0.40378726
+-0.16411746
+0.47506523
+-0.47912383
+-0.77994142
+-0.37721270
+0.81143987
+-0.61823639
+0.87911260
+-0.71839225
+-0.44802904
+0.14427817
+0.04384911
+-0.14108449
+-0.69255942
+-0.96805185
+-0.44752401
+-0.14468181
+0.81368661
+0.44126499
+-0.16183603
+-0.97326586
+0.76605678
+0.52936602
+0.83012164
+0.95525765
+0.60574520
+-0.75097068
+0.11597955
+0.31818593
+-0.01630610
+0.40689754
+0.71737754
+-0.52658653
+-0.42692697
+-0.50781712
+-0.02829069
+-0.44036728
+0.46290016
+-0.28627455
+0.97955906
+-0.32818407
+0.01302385
+0.44106221
+-0.20908308
+0.10172808
+0.09933650
+-0.93614187
+-0.67402089
+-0.95128105
+0.58622265
+0.72893739
+0.32618129
+0.49604380
+0.24788284
+0.87726176
+-0.23420018
+-0.56414008
+-0.02226311
+-0.21503788
+0.29467618
+0.09397566
+-0.89950790
+0.94953251
+-0.96819235
+0.87871718
+0.00939298
+-0.43166959
+-0.70891497
+-0.74585167
+0.77735579
+-0.06953520
+-0.93414505
+-0.89210387
+-0.41722572
+0.97669423
+0.93190646
+0.14688349
+-0.07137096
+0.65051615
+-0.48584771
+0.34190083
+-0.29355991
+-0.32065785
+-0.56922078
+-0.93193398
+0.82828212
+0.52740800
+0.21408844
+-0.04882872
+-0.29927105
+-0.81411344
+0.60519814
+-0.98930142
+0.81301379
+-0.19980526
+0.83222234
+-0.43870288
+-0.23468947
+-0.97714391
+0.07352936
+-0.00069344
+-0.76122782
+0.81137955
+-0.84779689
+-0.00959867
+-0.31400782
+0.55414104
+0.73598337
+-0.67572081
+-0.99084941
+0.88420630
+-0.68510133
+0.93337703
+0.09093451
+0.89350796
+-0.06074333
+0.77582920
+-0.92733582
+-0.27993798
+0.71021152
+0.80415201
+-0.91059135
+-0.02904487
+0.79421067
+-0.09180731
+-0.31037503
+-0.21194625
+0.66288638
+-0.13199121
+0.00854254
+-0.68143159
+0.79694819
+-0.29837447
+-0.30755985
+-0.86737470
+-0.83802791
+0.76836109
+-0.45676994
+0.78531814
+-0.38550067
+0.21643603
+-0.54480457
+0.80150926
+-0.35200477
+0.45995891
+-0.13995224
+0.79937756
+0.95918667
+0.29786932
+-0.75327328
+0.13175344
+-0.16470820
+-0.19780093
+-0.76148608
+0.43146098
+-0.32126337
+0.34838629
+-0.99106881
+0.25662732
+-0.70696118
+0.29867470
+-0.90577105
+0.70062184
+-0.50484768
+0.19344866
+0.21562934
+-0.97496112
+-0.11816144
+0.29800689
+0.60086417
+-0.91788690
+0.58965337
+-0.98979493
+0.76700497
+-0.06706423
+-0.61934811
+-0.51094639
+-0.24335033
+0.61667764
+0.90989196
+-0.90450942
+0.44689188
+0.97955988
+0.36521820
+0.65077555
+0.08385521
+-0.77412944
+-0.19154012
+0.68362951
+0.00910131
+-0.51461115
+-0.44862588
+-0.08255435
+-0.02449109
+-0.25476353
+0.24113424
+0.75410311
+0.45295599
+-0.74020906
+0.52376786
+-0.92378008
+0.58492869
+0.69887124
+0.21855086
+-0.82487510
+0.82652367
+-0.07145673
+-0.93385226
+0.32475978
+-0.42896735
+0.68304707
+0.17691866
+0.14472983
+-0.53028497
+0.27068130
+0.91560657
+-0.35407321
+-0.46771705
+-0.82985790
+0.10853953
+0.51677086
+-0.38883532
+-0.57220784
+-0.93561551
+-0.83647176
+0.15233674
+-0.10738472
+0.40504270
+-0.56866204
+-0.41873715
+-0.71305329
+-0.20534208
+-0.81294312
+0.59329983
+0.93873902
+-0.51469998
+0.92414430
+0.26002340
+0.99894369
+-0.85706630
+-0.91796975
+-0.00061211
+-0.72216427
+-0.65741667
+-0.88724543
+-0.55984353
+0.54484844
+-0.52126751
+-0.42347288
+0.25415464
+0.64978667
+0.75187570
+0.81888060
+0.04456932
+0.45801717
+-0.17679477
+0.22504742
+0.46025093
+0.56728370
+-0.55758886
+0.44955408
+0.41571703
+-0.62659105
+-0.39127652
+0.07679014
+-0.15537324
+0.32601844
+0.72733001
+-0.71704428
+0.55517237
+-0.79930605
+0.27870119
+0.74066951
+-0.26610105
+-0.55360241
+-0.92332824
+0.94688628
+-0.40964764
+0.28925301
+-0.71625310
+0.25623694
+0.75982456
+0.34783770
+0.11819907
+-0.97763594
+0.72885211
+-0.49225092
+0.29920566
+0.11627989
+0.94061759
+0.18858870
+0.20745385
+-0.45946307
+-0.49575803
+-0.71893327
+0.69318688
+-0.46570045
+0.08479844
+-0.84963861
+0.57161496
+-0.80405439
+0.02169899
+0.09285216
+0.92582859
+-0.43998734
+-0.70098589
+-0.28879812
+-0.58266595
+0.13451186
+0.76673142
+0.77023455
+-0.69429998
+0.69987917
+0.89696603
+0.41058331
+-0.79244382
+0.09081241
+-0.73033454
+0.34653932
+0.28667558
+0.09566660
+-0.70058918
+0.82575786
+0.50200720
+-0.92794671
+0.36207260
+-0.26812600
+-0.19840497
+0.08042334
+0.74278535
+-0.98643346
+0.67096827
+-0.34865232
+0.75939997
+0.34273993
+0.30046180
+0.93257033
+-0.42731878
+-0.94640830
+0.19571665
+-0.47112663
+0.24105365
+-0.28534068
+-0.85789695
+0.82817075
+0.37565826
+-0.27520567
+0.38772285
+-0.82172924
+0.23520878
+0.74534028
+-0.27794924
+0.81346573
+-0.04316288
+0.13400988
+-0.59975846
+0.10149721
+-0.34263864
+-0.46561997
+0.92507495
+-0.42026267
+-0.98884086
+-0.35612206
+0.90555487
+0.21176823
+-0.22767651
+-0.38829062
+0.26019814
+-0.25839548
+-0.71328682
+-0.98186232
+0.76682959
+0.37353539
+-0.97965886
+-0.35216980
+-0.03742338
+-0.59136096
+0.22453458
+-0.01885220
+0.50726916
+0.71309031
+-1.00929099
+0.08765448
+-0.57874138
+0.79530438
+0.94254094
+-0.95848853
+-0.31379802
+-0.45034888
+0.30336959
+0.72047544
+0.52077496
+0.01059965
+0.46865846
+-0.08281915
+0.54380454
+0.48166502
+-0.53103987
+-0.85052798
+-0.72602622
+-0.54870220
+0.45744616
+-0.44294135
+-0.93512948
+-0.02711049
+0.25614166
+-0.49394068
+0.26161406
+-0.95089923
+-0.68590317
+0.90391787
+-0.31093989
+-0.02108944
+0.72833803
+0.49925285
+0.12109338
+-1.01364376
+0.32365706
+0.31257422
+0.48830765
+0.28132533
+0.52503961
+-0.73399200
+-0.30231400
+0.25599365
+0.79398544
+-0.57939893
+0.58725266
+-0.78627480
+0.18003043
+-0.12482269
+0.30137201
+-0.38673479
+0.30083570
+-0.69430311
+-0.95408978
+-1.02043586
+-0.29985645
+0.72761527
+-0.22367842
+0.23445369
+0.14265123
+0.05547282
+-0.35973043
+-0.91527180
+-0.28185566
+-0.50587649
+0.12300393
+-0.72618138
+0.13554635
+0.39387933
+0.95746575
+0.69257168
+-0.88201951
+-0.38761492
+-0.30792827
+-0.30734314
+-0.17164329
+0.80456206
+-0.88346779
+0.98387210
+0.53738160
+-1.00686291
+-0.05064108
+0.02881042
+-0.88389933
+0.42370571
+0.24654203
+0.35359152
+0.11310829
+-0.20485324
+0.15535964
+0.71884406
+-0.90829606
+0.72333634
+-0.81924830
+0.43720637
+0.00404200
+0.79573369
+0.50502710
+0.18543667
+-0.30577258
+0.59190049
+0.51653134
+-0.95375128
+-0.29810346
+-0.17771903
+-0.79103653
+0.30004421
+0.51572775
+0.55212084
+-0.31482694
+-0.60871499
+0.42554129
+-0.44844806
+-0.91612422
+0.53865598
+0.12915686
+0.59621489
+-0.59453709
+0.03244482
+0.23486661
+0.02418495
+-0.10681739
+-0.23548041
+-0.27415819
+0.37590752
+-0.12529318
+-0.61197269
+0.14063671
+0.02873490
+-0.81204252
+0.27874480
+0.01655260
+0.86531813
+0.67012728
+-0.92435040
+0.83391237
+-0.61177615
+-0.92292625
+-0.74223223
+0.45888601
+0.36889291
+0.84816258
+0.74932812
+-0.16032603
+0.26399056
+-0.99572283
+-0.68760093
+0.51813605
+0.02527259
+0.81961769
+0.07352219
+-0.14113129
+0.07844038
+0.85792633
+0.13079273
+-0.64406449
+0.51667543
+0.87234819
+0.38729713
+-0.07754674
+-0.92668619
+0.76064037
+0.08709892
+-0.50167391
+-0.15479513
+0.03897108
+-0.00051610
+-0.48089945
+0.68185799
+0.03439941
+-0.57920149
+0.13485166
+-0.07195764
+0.83174298
+-0.74939009
+0.91309574
+-0.91413541
+-0.75961449
+-0.31415909
+0.06094843
+-0.30732599
+0.39322434
+0.00449861
+0.56090666
+0.62165643
+0.31578613
+-0.88092422
+-0.70829758
+0.57195047
+0.66114228
+-0.70651755
+0.14536387
+-0.56494755
+-0.90900864
+0.85364164
+-0.17873339
+-0.23431419
+-0.97296496
+-0.29816541
+0.79922016
+0.55271416
+0.13649220
+0.36511030
+-0.82958056
+-0.70405039
+-0.27575137
+-0.20932030
+-0.10545926
+-0.68917010
+0.55855847
+-0.59451653
+-0.02901019
+0.20630401
+0.02705864
+0.08972149
+-0.54044250
+-0.92125316
+0.44053968
+0.70063965
+0.39100822
+-0.24465787
+-0.70775782
+0.09604848
+0.41851602
+-0.55702225
+-0.95254707
+-0.93741171
+0.00147396
+-0.83515643
+0.37180333
+0.70204588
+0.67279407
+0.48898480
+-0.85020026
+0.18956348
+0.55294214
+0.88008951
+-0.18010762
+-0.30764618
+0.99286710
+0.68713423
+0.06745673
+-0.46977323
+-0.13581474
+0.24770471
+-0.01135194
+-0.31301453
+-0.39939095
+0.56505998
+-0.40085865
+0.53228513
+0.81479845
+-0.66626114
+-0.58223985
+0.70379708
+-0.07551997
+0.39269839
+-0.84919952
+-0.38218886
+0.35119234
+0.30205137
+0.90125603
+-0.72550460
+0.25747797
+-0.28351432
+-0.71913483
+0.60851597
+-0.33161467
+0.04732415
+0.41563580
+-0.76683098
+-0.22750197
+0.05904807
+-0.03937317
+-0.89486863
+-0.34871123
+0.30381609
+0.15505762
+-0.57268562
+0.22119789
+0.87689252
+-0.03596831
+0.37781327
+-0.75017615
+-0.28144637
+-0.39077890
+-0.92418104
+-0.12323099
+0.12071707
+-0.82122065
+0.25664536
+-0.38966228
+0.11575314
+0.78032738
+-0.65627405
+-0.73324375
+-0.46916722
+0.44419566
+-0.79543249
+0.05588060
+-0.04597341
+0.86227112
+0.63911890
+-0.45388149
+-0.56451371
+-0.68681461
+-0.76606119
+-0.59506658
+-0.71324058
+0.63829958
+0.24976521
+-0.27087445
+-0.76906966
+0.69551078
+-0.83734282
+-0.03649007
+-0.47810909
+0.85528807
+0.38095690
+0.77327569
+0.17714727
+-0.93151326
+-0.85635885
+0.96396555
+-0.90748935
+0.56413792
+0.01153077
+0.42939611
+0.26846039
+-0.78042611
+-0.03840636
+0.54863204
+-0.12091071
+0.59820738
+-0.22487958
+1.01890334
+0.97056411
+0.30468966
+0.82172112
+0.88268412
+0.25463666
+-0.02848900
+0.12890618
+0.53697638
+-0.09284628
+0.80735564
+-0.73086084
+-0.81274905
+0.05422973
+-0.54185659
+-0.83189512
+0.64040850
+0.31579020
+0.95166177
+0.33591212
+-0.00659397
+-0.93102654
+-0.87851700
+0.83038982
+-0.96892619
+0.84341705
+0.75221879
+0.28538750
+-0.86594452
+0.42876619
+0.92072450
+0.79365828
+0.23144764
+-0.30720994
+-0.85791325
+0.85303615
+-0.83306561
+0.05785378
+0.47799260
+-0.26875885
+0.78129084
+-0.97209145
+-0.99341602
+-0.50338711
+-0.11536083
+0.25175557
+0.76166225
+-0.92983333
+0.59344918
+-0.65637376
+0.70323079
+0.26788723
+-0.97942904
+-0.65705282
+-0.57555323
+0.15653753
+0.89973888
+-0.93904567
+-0.32576223
+0.58272966
+0.67020783
+-0.86191235
+0.39208485
+0.31453344
+0.52026954
+-0.60364211
+0.41719136
+-0.35182585
+0.06360813
+0.35260164
+-0.34889264
+0.40923626
+-0.53111076
+0.58483851
+0.65894576
+-0.15043887
+0.75733308
+-0.66836488
+-0.51451033
+-0.59671165
+0.30893147
+0.36678303
+-0.25040603
+0.92099977
+0.28462811
+-0.21178743
+0.58834044
+-0.96514010
+-0.07962549
+0.18386890
+0.94653034
+-0.38426821
+0.02257824
+0.18695629
+0.05797024
+0.76631579
+0.27874597
+-0.05213344
+0.20948994
+-0.45562177
+0.62927723
+-0.37795689
+0.12008357
+0.74668419
+-0.25671363
+-0.82478806
+-0.04837489
+-0.49103087
+-0.48216510
+-0.26955223
+0.02091014
+0.70155764
+-0.84537013
+0.62306690
+0.50163460
+0.23395813
+0.26047969
+0.37065768
+0.28046429
+-0.42670113
+-0.15792638
+-0.84696305
+-0.56535360
+0.00218809
+-0.98580582
+-0.91707174
+0.71284664
+0.09963632
+-0.45032936
+-0.48845804
+-0.67676288
+-0.72697902
+0.44930232
+0.43024039
+0.59027076
+0.17323005
+0.00133359
+0.01961291
+-0.83132836
+-0.94761130
+-0.31449527
+0.50779593
+0.44324970
+-0.05217242
+-0.87884287
+0.85408723
+-0.60942388
+0.97876644
+-0.33606511
+0.17868459
+0.74523544
+0.97093272
+-0.60673487
+0.40144396
+0.78682053
+0.89612901
+-0.02244323
+0.39584911
+-0.36574471
+-0.30544162
+-0.88652787
+0.40515924
+0.58010972
+0.47341335
+-0.41511762
+0.21822870
+-0.83929926
+-0.27521127
+-0.13328975
+0.12151504
+-0.19205093
+-0.06694537
+0.90584719
+-0.73079953
+0.27834964
+0.21514714
+-0.96902787
+-0.64319056
+-0.65468928
+0.91268456
+0.73799312
+0.57691133
+-0.05726832
+0.85249317
+0.26079667
+-0.57737410
+0.07616782
+0.32272506
+-0.55596715
+0.21954250
+0.48932767
+0.90036333
+0.41245127
+-0.60984078
+0.38110983
+-0.33034158
+0.64153302
+0.10705936
+0.64841735
+0.13660431
+-0.23696303
+0.77385640
+-0.31865460
+0.97198415
+0.51154518
+0.75747883
+-0.18284094
+-0.35050017
+0.33422875
+0.65370965
+-0.20823622
+0.03545666
+-0.19535744
+-0.84915225
+-0.98271086
+-0.14709646
+-0.00781775
+-0.78220417
+0.50701034
+-0.80974048
+-0.41952789
+0.87525809
+-0.65319270
+-0.70921856
+0.69937861
+0.24318480
+0.28781021
+0.69001532
+0.23413837
+0.26264834
+-0.88543807
+0.58624768
+-0.83302364
+0.01985145
+0.30437505
+0.71005809
+-0.74945211
+0.60397911
+-0.32139176
+0.60511065
+0.42341268
+-0.57217750
+0.01632249
+0.05393791
+0.21052170
+0.94274545
+-0.68144506
+0.81819332
+0.02219582
+0.44029295
+0.81812859
+0.19322062
+-0.96850096
+-0.95154454
+-0.69291523
+0.08934772
+0.80291605
+-0.02657306
+0.03717566
+-0.24482793
+0.56441021
+-0.93846226
+0.25316119
+0.44933307
+0.63984632
+0.91415787
+0.63561857
+-0.41970837
+-0.08354753
+-0.83488557
+0.90099633
+-0.68235275
+-0.56114221
+0.79324746
+0.59539807
+0.07400870
+-0.04338175
+0.35497200
+0.65872073
+-0.68841258
+-0.45859313
+-0.99876618
+-0.84652020
+-0.98083716
+-0.15071279
+0.08123016
+-0.52223805
+-0.46776128
+0.22097087
+0.72652614
+0.94668996
+0.81944537
+-0.90377273
+-0.70490041
+-0.21328324
+0.92750847
+0.80718410
+0.60033286
+0.90246212
+-0.21891540
+-0.06353557
+0.32178903
+0.25488544
+-0.21643603
+0.95647490
+0.60940766
+-0.68029854
+0.09881413
+-0.16393954
+-0.93296915
+-0.22042221
+0.61411119
+-0.43405622
+-0.44288546
+0.04597390
+-0.14698100
+0.66724539
+-0.69842848
+-0.04395789
+0.69569826
+-0.58706543
+0.17983437
+0.21970952
+-0.16733366
+0.05295825
+-0.35764158
+-0.32904035
+0.71748877
+-0.97479974
+-0.74688312
+0.27363050
+-0.53286839
+0.18484437
+-0.25751239
+-0.78982800
+0.29935658
+-0.75457031
+-0.17038804
+-0.35300452
+-0.54946408
+0.64393127
+-0.88055560
+-0.15293878
+0.79040539
+0.27814639
+-0.93497410
+0.31686699
+0.67580807
+0.86454773
+-0.06606531
+0.93889832
+-0.31067705
+-0.91722465
+-0.97736140
+-0.75812452
+0.19281745
+0.56378675
+0.45809019
+0.33182335
+0.10106122
+0.12947536
+-0.12702101
+-0.69258714
+-0.24073434
+0.61104023
+0.91783357
+-0.54840234
+-0.52341390
+0.06122351
+-0.70727250
+-0.24978501
+0.31894231
+0.68609762
+0.82713914
+0.98125148
+0.66549325
+-0.26854032
+0.16643035
+0.25067604
+-0.31269515
+0.26232886
+0.60536039
+-0.37285262
+0.22220600
+0.25869489
+0.64965761
+-0.55534428
+0.44934678
+0.36325979
+0.88628185
+0.91986918
+-0.62237203
+0.77607584
+0.57831097
+0.54426146
+0.91778791
+-0.81467982
+0.92957175
+0.27885759
+0.36887264
+-0.14296561
+0.86508417
+-0.12866801
+-0.99554147
+0.62241971
+0.37911606
+0.39421523
+0.13787913
+0.66779375
+0.94281209
+0.54308820
+0.99501872
+-0.64603606
+0.62026536
+0.64993751
+-0.94072800
+-0.87025143
+-0.10562360
+-0.18389839
+-0.04802847
+-0.51450643
+-0.36757690
+-0.90399768
+0.39172232
+-0.71109065
+-0.88169799
+-0.67690438
+0.09123814
+0.62162614
+-0.88921107
+0.97860956
+-0.14491969
+0.05128014
+0.61963451
+-0.38925171
+0.43010163
+-0.51675552
+0.48287487
+0.82351315
+-0.67025027
+-0.25728518
+-0.90351674
+-0.85344778
+-0.00759548
+0.59953821
+-0.40293139
+-0.32488191
+0.87221754
+-0.51114237
+-0.22421324
+-0.34119213
+0.87359452
+-0.96975720
+0.23669744
+-0.09534663
+0.45371997
+0.64705729
+0.35295534
+-0.56371439
+-0.06965280
+-0.22837383
+0.02712679
+-0.77375849
+-0.38098770
+-0.88165569
+0.54716551
+0.50155580
+0.85740709
+-0.38290840
+-0.64785442
+0.38755393
+-0.56535107
+-0.68927330
+-0.80569406
+-0.69329518
+0.53178808
+0.60242789
+-0.13644947
+-0.62294723
+0.51656288
+-0.87432253
+-0.26952171
+0.93951461
+-0.77781933
+0.83394822
+-0.19706854
+-0.17967963
+0.23350595
+0.62255413
+0.58293502
+0.21096922
+0.48728837
+0.41945200
+-0.64095651
+0.46818050
+0.75522845
+-0.18751663
+0.97628192
+-0.70620931
+-0.43626970
+-0.37313178
+-0.06820472
+0.92547310
+0.22214414
+-0.23145221
+-0.53823171
+-0.86192377
+0.73146618
+-0.55462393
+0.87939399
+0.02187922
+-0.66655779
+-0.67942168
+0.34508468
+-0.60039346
+0.87080336
+0.97914498
+-0.04786323
+-0.40961631
+0.99196443
+0.73373155
+0.34896642
+0.41904193
+-0.43081004
+-0.85033598
+0.65586388
+0.25835065
+0.34166289
+0.04554695
+0.95488725
+-0.43417729
+0.79791060
+-0.44064876
+0.69784722
+0.44747505
+0.84339180
+-0.34837174
+0.69697483
+-0.64005534
+-0.23728364
+0.32091286
+-0.25526562
+-0.73194875
+-0.80939127
+0.68960355
+-0.51025203
+-0.16348803
+-0.14897565
+-0.84140606
+0.35885344
+-0.81038972
+-0.14840546
+-0.87496597
+0.26776090
+0.99343980
+-0.30924605
+0.11258976
+0.23673596
+0.37114101
+-0.60802971
+0.05323015
+0.05661365
+0.26925335
+0.66027879
+0.09508699
+0.99506069
+-0.93172020
+-0.80709026
+-0.22957412
+-0.57501117
+-0.40113176
+0.21046108
+-0.89994065
+-0.24624045
+-0.88208945
+0.96626966
+-0.64716143
+-0.53396807
+0.75551604
+0.08257502
+0.54206928
+-0.45418002
+0.19317582
+0.44158239
+0.83546527
+0.22063911
+0.94576397
+0.22255546
+-0.64129546
+0.34113343
+0.93685695
+-0.01235300
+0.03880097
+-0.95125419
+-0.37404054
+0.15983414
+0.82365518
+-0.24853363
+-0.05973522
+0.04201621
+0.60346922
+-0.08876629
+0.26238792
+-0.42069579
+-0.13419835
+0.53147461
+0.27712687
+0.94962289
+-0.71890896
+0.73882103
+0.29164235
+0.20524205
+0.97800446
+-0.20190431
+-0.46705780
+-0.18805054
+-0.61881363
+0.04085642
+0.65189106
+0.39123407
+0.88909978
+0.03113299
+-0.74864125
+0.22679754
+-0.45156627
+0.79201239
+-0.39330806
+0.01369051
+0.89732076
+-0.55199107
+-0.49722328
+0.97653231
+-0.71199829
+-0.40772753
+-0.93383759
+-0.13785447
+0.29710089
+-0.79161021
+-0.72581764
+-0.39989226
+-1.03461499
+-0.15532598
+0.73833735
+0.62911962
+-0.28645484
+-0.39147392
+-0.37059686
+-0.72711364
+0.95647326
+0.49588411
+0.80615868
+0.23867337
+-0.78215764
+-0.78565703
+-0.33126352
+-0.26842648
+-0.31874793
+0.98370234
+0.34185734
+-0.06085838
+0.20573532
+0.99157353
+-0.37348663
+0.65341131
+-0.69196948
+-0.54606727
+-0.73139247
+-0.15294580
+-0.78953159
+-0.74859659
+0.06352135
+0.92155983
+0.50784390
+-0.13256241
+0.57114434
+0.93979780
+0.59120265
+0.64101454
+0.37758565
+-0.14179228
+0.26922661
+-0.35673556
+1.04310269
+0.65753981
+0.82847212
+-0.55496665
+0.11160254
+-0.23839478
+-0.77696361
+-0.31300339
+-0.01362632
+-0.64103990
+1.03310994
+-0.95002620
+0.95051803
+-0.21241106
+-0.49141303
+0.29333936
+-0.04007773
+0.97096407
+0.18686338
+0.26399620
+-0.89317049
+0.31396962
+-0.77258773
+0.55985215
+-0.05873733
+0.81938687
+-0.29902725
+-0.97049431
+0.52865057
+0.46325051
+-0.62253174
+-0.84428206
+-0.52190862
+0.36799480
+-0.02142537
+0.47360467
+0.71720874
+-0.03854538
+0.15368578
+-0.84626010
+0.57325307
+0.55086749
+-0.33240697
+0.56081122
+0.01785502
+-0.23952089
+0.12588952
+0.97846601
+-0.56154205
+0.11535506
+-0.01526024
+0.34283060
+0.75332987
+0.16951248
+0.17940944
+-0.76705024
+-0.88525381
+0.11840238
+0.47799686
+-0.47857448
+-0.86782279
+0.87729229
+-0.87845019
+0.87913604
+-0.58749559
+-0.40920705
+0.49853326
+-0.84847348
+0.01675351
+-0.71636805
+0.37175001
+-0.83049466
+-0.04912200
+0.89059449
+-0.63732582
+-0.15994258
+-0.13977982
+0.67798219
+0.09742516
+-0.08117073
+0.99223288
+0.21179365
+0.08556747
+-0.43296242
+0.00559882
+0.57914413
+0.65784755
+0.64797684
+0.56203298
+-0.97994599
+0.85875853
+0.70844162
+0.83390054
+0.69304883
+0.02454292
+0.70557600
+-0.28381727
+0.74645713
+-0.51762125
+0.82582448
+0.76803040
+0.96313580
+0.69402182
+-0.06152116
+0.17676562
+0.28669885
+0.76790762
+-0.29045975
+-0.30464445
+0.78308236
+0.12836372
+-0.11952879
+0.60795088
+-0.89021588
+-0.17871200
+0.33816329
+-0.68287908
+0.16070317
+0.23360240
+-0.11154720
+-0.56060611
+0.39379741
+-0.22347593
+0.61988397
+-0.64963030
+0.94049598
+-0.19124850
+0.26926473
+0.15599159
+0.48981369
+0.14004323
+-0.35079907
+-0.15031895
+-0.05717280
+-0.32572730
+0.37936798
+0.39769245
+0.12410399
+-0.85981759
+-0.37132488
+-0.58216668
+0.24649887
+-0.91546272
+-0.05345250
+0.10965754
+0.34439238
+0.51585314
+0.36610700
+-0.30975022
+0.21769098
+-0.30175517
+-0.81699962
+0.86124923
+0.95555463
+0.16594338
+0.71413105
+0.68191241
+0.06504714
+0.24511675
+-0.19845876
+-0.77633627
+0.66956612
+0.21781588
+0.46981422
+-0.57676857
+0.56254702
+-0.68239636
+0.55401398
+0.07576164
+0.78947296
+-0.78392180
+0.61531196
+0.06601366
+-0.45648243
+-0.34399941
+0.05383637
+-0.23535882
+-0.57817745
+-0.83736529
+0.79767771
+0.77374681
+-0.87239719
+-0.87738260
+0.32921171
+-1.05339509
+-0.51576964
+0.71912957
+0.26891497
+-0.17149870
+0.33472360
+0.20195989
+-0.59174315
+-0.91575408
+0.82508492
+0.88585350
+-1.03805396
+-0.06015173
+-0.45601272
+-0.44600942
+0.95460897
+0.71130859
+0.42978100
+0.89807455
+0.91691563
+-0.33981791
+-0.32335107
+0.67806665
+-0.78451883
+-0.82089559
+0.82125735
+-0.48883652
+0.00510997
+-0.19110634
+-0.22146729
+-0.31967957
+0.52044253
+-0.93287778
+-0.52863259
+-0.13227484
+-0.08745103
+0.65726238
+-0.82953382
+0.97722763
+-0.10827530
+0.45278775
+-0.55559299
+-0.46040847
+-0.76472842
+-0.41887546
+0.58200552
+-0.78855328
+-0.20900932
+0.82801693
+-0.48987407
+-0.78692401
+0.20774831
+-0.35851701
+0.52353644
+0.57947955
+0.72215161
+0.27715842
+0.57255851
+-0.37115011
+0.39473066
+-0.92262094
+0.74033712
+0.73123181
+0.21550485
+0.67334469
+-0.38270067
+-1.01006789
+-0.26830291
+0.56753576
+0.02692415
+0.78093591
+-0.17393632
+0.56601478
+0.25697017
+0.84105539
+-0.11367542
+-0.88050155
+-0.27983447
+0.54957979
+0.06980307
+-0.69425724
+0.01056585
+-0.22279234
+0.19996989
+0.91240004
+-0.96613438
+-0.91291393
+0.61409945
+0.83329789
+0.78122864
+-0.40028812
+-0.37633400
+-0.53388844
+0.86161664
+0.36371081
+-0.01153445
+-0.90691124
+0.88521640
+-0.55426273
+-0.26450616
+0.69139341
+0.00068986
+-0.50879993
+-0.62792059
+-0.00014792
+0.21811227
+-0.40392568
+0.56378721
+-1.00810554
+0.15131390
+-0.52495994
+-0.56369257
+0.24501871
+-0.90588710
+-0.81694126
+-0.55154389
+0.92472202
+-0.23141470
+0.89777068
+-0.33367798
+0.78628766
+0.32262315
+-0.39074602
+-0.52940503
+0.21525881
+-0.34278539
+-0.17144773
+0.37820496
+-0.40058563
+0.14627542
+0.19143310
+0.24448522
+0.69274940
+0.74654905
+-0.32687965
+0.78848208
+-0.22724198
+-0.62143905
+0.01964403
+-0.10880413
+-0.63898770
+-0.50984298
+0.28117239
+-0.99511818
+0.34726731
+0.03832338
+-0.34894425
+-0.00219436
+0.41476982
+0.30167831
+-0.81782296
+0.72245286
+0.76754920
+0.58261655
+-0.51743640
+-0.93765390
+-0.92235596
+-0.34584755
+0.95447623
+-0.38534829
+-0.23794820
+0.67916395
+0.41676563
+-0.08141201
+0.64887950
+0.36050236
+0.63771012
+0.19085618
+-0.70934610
+0.01771649
+-0.59067054
+0.08842049
+0.41927737
+0.65228633
+-0.40487618
+0.40514197
+-0.67655724
+0.89610657
+-0.82786984
+0.72085459
+0.13799729
+0.57695935
+-0.61255309
+-0.90265235
+-0.82122733
+0.86863840
+-0.96982398
+-0.72213554
+-0.84696948
+0.93988493
+0.81113247
+0.79475696
+-0.73889583
+-0.66054973
+-0.16870037
+0.21516985
+0.36981765
+-0.53789388
+0.12196258
+0.94099114
+0.42338499
+0.83543728
+-0.69540167
+-0.40249903
+0.67635851
+0.90945036
+0.43619467
+0.01618037
+-0.13862590
+-0.62033484
+-0.01685511
+-0.49256422
+0.22909313
+0.62488679
+0.69536089
+-0.07704086
+0.02818263
+-0.42482328
+-0.29673264
+-0.50002700
+-0.13162662
+-0.38748598
+-0.95841825
+-0.44510256
+0.03773487
+0.61362864
+0.98344505
+0.47132039
+0.26157459
+-0.94558680
+0.15592520
+-0.30315757
+-0.98614421
+0.46720220
+0.09277582
+0.87756873
+0.09250319
+-0.89336479
+0.43805416
+0.43221995
+0.16663106
+0.48480642
+0.57395136
+-0.63248151
+0.46137619
+0.82995203
+0.06652045
+-0.85355277
+-0.72630903
+-0.34438944
+0.34634757
+0.98945856
+0.36531031
+0.58642340
+-0.11292386
+0.66837633
+0.93468714
+-0.32900995
+0.27369130
+0.52024245
+-0.09331506
+0.82844603
+-0.46063697
+-0.69125298
+0.12982881
+0.50363457
+-0.11900949
+-0.21939385
+0.54592514
+0.08067489
+-0.67453739
+-0.61086407
+-0.21081752
+-0.07790178
+0.79359472
+0.09066856
+-0.09871584
+0.00131428
+-0.43496215
+0.98211491
+0.20426536
+0.00603449
+0.96953952
+0.71187854
+0.63884234
+0.65405476
+0.01909590
+-0.41161311
+0.08285797
+0.03265989
+0.12622762
+0.51033974
+-0.98960694
+-0.23044187
+-0.60112616
+-0.25235903
+0.37819064
+-0.81926191
+0.42918050
+-0.77664652
+0.42043972
+-0.47225785
+-0.57080799
+-0.20724809
+0.52410078
+0.35166979
+-0.77374840
+0.35370922
+0.02307165
+0.83934271
+-0.25137401
+-0.69123676
+-0.75734776
+0.11701608
+-0.91198754
+-0.64393392
+0.74546790
+0.52120590
+-0.94146138
+-0.43417978
+-0.44525528
+-0.59631166
+-0.42326301
+0.35376179
+-0.02857065
+-0.27538067
+0.37147927
+-0.03324306
+-0.42976224
+0.40605652
+0.32982993
+0.68196034
+-0.07282311
+0.70711863
+-0.25127214
+-0.40532231
+0.81881154
+-0.59079054
+0.82036173
+-0.27986974
+-0.10676461
+-0.35073191
+-0.95973968
+-0.48450911
+0.08102047
+-0.78249858
+0.35298467
+0.73788190
+0.85095227
+0.02763534
+-0.95829336
+-0.98920950
+-0.78252657
+-0.23016113
+0.05147123
+-0.10017318
+-0.57811373
+0.47637165
+0.80846643
+-0.98471559
+0.01358664
+0.62360489
+0.11135352
+-0.52951759
+0.72574317
+0.89111924
+0.35589755
+-0.24044102
+-0.73842710
+0.84122491
+-0.42280418
+-0.11600161
+0.20389438
+-0.52903166
+0.92758203
+0.22357345
+-0.02811641
+-0.68366194
+0.19380319
+-0.63706765
+0.87686253
+-0.75847523
+-0.95981674
+0.29417586
+0.73115265
+-0.61351523
+0.19571722
+0.63345253
+-0.74870712
+0.03307211
+0.37866592
+-0.61166006
+-0.73261166
+-0.68785933
+-0.10912496
+0.55278599
+0.29963398
+0.36721516
+-0.20004386
+-0.10061735
+0.14725971
+0.07626808
+-0.78342894
+-0.56442612
+0.29716957
+0.10024381
+-0.25991309
+0.06247318
+0.03256774
+0.51314425
+-0.81928138
+-0.76689550
+0.17036974
+0.16296840
+0.94784117
+0.55906117
+0.45759475
+-0.85315596
+0.07755673
+-0.67172065
+0.19822931
+0.88918221
+-0.57472074
+0.03021276
+0.82808757
+-0.85420614
+0.80356979
+-0.15057021
+-0.92551666
+-0.71653610
+0.78722250
+-0.28392714
+-0.12115020
+0.86381865
+0.55000150
+0.00133908
+-0.84724508
+0.73246050
+0.80509949
+0.31743848
+0.10590541
+-0.78186196
+-0.18625677
+-0.91398293
+0.07491887
+-0.64634076
+0.46356022
+0.19909441
+0.31561577
+0.10718322
+-0.77150139
+0.88837767
+-0.21655464
+-0.11425024
+0.62860191
+0.52766097
+-0.37153727
+0.87032712
+0.03611887
+-0.68434152
+-0.51589635
+0.62868917
+-0.74554542
+-0.60031992
+0.52706933
+0.97408700
+0.42114401
+0.76416171
+-0.00667632
+0.94948936
+-0.76745556
+-0.78632496
+-0.87288566
+-0.19904393
+-0.61130339
+-0.01141310
+0.78596234
+0.93535483
+-0.77838622
+-0.33557737
+0.52202988
+-0.75873944
+-0.28930169
+-0.42502296
+0.14340460
+0.17823529
+0.40830052
+-0.35664707
+-0.66747519
+-0.71406972
+0.91513693
+-0.28378075
+0.60340178
+0.80574429
+-0.38593858
+-0.17342848
+-0.31592804
+0.79395211
+-0.85985291
+-0.71823439
+-0.32993567
+0.36034465
+0.17915082
+0.59666896
+0.43791950
+0.50201547
+-0.64010990
+0.29072177
+-0.83149803
+-0.62912804
+0.28708458
+-0.54877892
+-0.16984987
+-0.65782189
+-0.69093224
+0.84618413
+0.88835716
+-0.43883777
+0.40396214
+0.87664938
+0.53788757
+-0.40286589
+0.02769279
+0.40221095
+-0.48017758
+0.10112870
+0.09322143
+-0.45435339
+-0.05459702
+-0.45690113
+0.44277763
+-0.16944402
+0.72319520
+0.52753937
+-0.37241006
+0.73188603
+0.15515220
+0.40974844
+0.40500128
+-0.13454419
+0.82097530
+0.59759808
+0.76781642
+0.72652602
+0.14015436
+-0.47907305
+0.75755167
+-0.27017361
+-0.31538153
+-0.27934104
+-0.15052134
+-0.75315695
+-0.69547427
+0.52197540
+0.87031806
+-0.89005696
+0.17850304
+-0.49867678
+0.11876357
+0.94936228
+0.17818201
+0.90279007
+-0.37288314
+0.40139401
+-0.81957445
+0.58024991
+-0.75797203
+0.66934288
+-0.76057316
+-0.92663565
+0.82751215
+0.03546345
+-0.55896544
+-0.93577071
+-0.29906887
+-0.36830252
+0.55539548
+-0.05374807
+-0.31613135
+0.30541265
+0.04327571
+0.01301384
+0.35694754
+0.53328013
+0.02381706
+-0.20826185
+0.61163747
+0.60571241
+0.95925450
+0.24509525
+-0.81761922
+0.14498758
+0.79994798
+-0.96860783
+0.64468491
+0.26525283
+0.93345857
+-0.81261344
+0.44523072
+0.57307744
+0.46719134
+0.95137525
+0.13215494
+0.22993088
+-0.17950988
+-0.30596834
+0.31677246
+0.73997176
+-0.65818951
+0.88036275
+0.56770933
+0.47211552
+-0.11683637
+0.96658802
+0.03712094
+0.35124159
+-0.24969679
+0.98952605
+-0.16848498
+0.80303948
+0.58460011
+-0.86542233
+0.73586452
+-0.07795796
+-0.48941345
+-0.68035948
+0.90621502
+0.81504086
+-1.01854771
+0.55651179
+0.78303464
+0.52525068
+0.78918183
+-0.96404614
+-0.38589589
+0.21153400
+0.48404558
+0.82207336
+0.75227011
+0.61688121
+-0.69080904
+0.79543320
+0.28674770
+0.79103755
+0.89062082
+-0.83784729
+0.93258127
+0.16444618
+-0.62647034
+-0.49949817
+-0.10640464
+0.94230375
+0.61978838
+-0.30257858
+0.43830302
+0.31847754
+-0.29225873
+0.13173787
+-0.26404289
+-0.32341556
+0.51493232
+-0.45322647
+-0.29062126
+0.56675954
+-0.72483701
+-0.35360707
+-0.42984852
+0.56596872
+-0.65821209
+0.60150400
+0.01937967
+-0.41993017
+0.44958047
+-0.47074465
+0.15516569
+0.92537798
+0.83530042
+0.74986044
+0.62158949
+0.96166980
+-0.17425451
+-0.24104306
+0.79858520
+-0.28139023
+-0.32522162
+0.56379323
+0.42540757
+-0.89681013
+-0.64878206
+0.07564536
+0.57742746
+0.71798962
+0.73175824
+-0.01210890
+0.86181073
+0.49881558
+0.23538415
+0.67133098
+0.50819130
+0.71100746
+0.88383018
+0.49595405
+-0.65041022
+0.62661971
+-0.38769467
+0.06531021
+0.27970601
+0.12040039
+0.87993120
+-0.21710934
+-0.65268658
+-0.54607638
+-0.54979228
+-0.60253597
+0.96757933
+0.88379626
+0.67409090
+-0.87288199
+0.92675556
+-0.32699103
+0.20436406
+0.87995245
+-0.25893887
+0.42052818
+-0.63151233
+0.78205208
+-0.44770445
+-0.86464326
+0.41296817
+-0.90859543
+-0.21480484
+0.80295627
+-0.97214923
+-0.03025148
+-0.85566574
+-0.97121248
+-0.09543984
+0.02674261
+-0.83724819
+0.82137378
+0.19568685
+0.79162999
+0.86449132
+-0.77518808
+0.64798811
+-0.98493515
+-1.00195578
+0.52576335
+-0.12032042
+0.17664349
+0.78025662
+0.47509129
+-0.07092450
+0.22516743
+0.19568944
+-0.88520683
+0.98674499
+-0.77750960
+0.58651255
+0.30663664
+-0.16602853
+0.69579718
+0.09636950
+0.27862854
+0.78811755
+0.80522914
+-0.37881681
+-0.30572417
+-0.00028588
+0.76353500
+0.72728533
+0.94576860
+-0.08461733
+0.44955577
+-0.89987346
+0.85898593
+-0.20792962
+-0.36106254
+0.73839508
+0.52987225
+-0.57456718
+0.73928282
+-0.43703834
+0.19017882
+0.04508856
+0.25273726
+0.11656607
+0.50466813
+-0.07344026
+-0.31244660
+0.65628671
+0.64718634
+-0.16232373
+-0.38992074
+-0.68273034
+-0.45326081
+-0.42745973
+0.21379329
+0.57959642
+0.82652613
+0.80395571
+-0.71830808
+-0.40646216
+-0.02667346
+-0.67220340
+-0.81081536
+0.48674825
+-0.49047703
+0.77735694
+-0.59087612
+-0.84379844
+-0.68511329
+0.87677130
+-0.14308774
+-0.81107857
+-1.02411817
+-0.35661657
+-0.63049517
+-0.31812957
+-0.80834838
+0.72710125
+0.01323866
+0.86560973
+-0.48220335
+-0.55947188
+-0.43191510
+-0.61585259
+0.80196023
+0.96712861
+-0.09829280
+-0.90887937
+0.74648697
+-0.16326080
+-0.43720768
+0.79080490
+-0.35731271
+0.28912390
+-0.66368848
+-0.42922365
+-0.09093244
+0.82500597
+-0.53175288
+0.56835599
+-0.76833070
+0.88615164
+-0.53696169
+0.09271260
+0.37958938
+0.71005366
+0.47330578
+-1.00273112
+0.15450623
+-0.91663633
+-0.63543353
+-0.09198267
+0.78840333
+-0.61965189
+0.06781782
+-0.17723920
+-0.74906291
+0.81988790
+0.14707455
+-0.61514691
+-0.78605482
+0.31813765
+0.15832547
+0.95794158
+0.15699488
+-0.37953832
+-0.41104330
+-0.91769529
+-0.30649358
+-0.36735222
+-0.46736967
+-0.92762348
+0.20225195
+0.96959552
+0.51811605
+0.39890582
+-0.28882045
+-0.16450010
+-0.26818329
+0.58066981
+0.99447998
+0.10226042
+-0.64101848
+0.10367636
+-0.93631866
+0.39500719
+0.87361309
+0.78535833
+-0.15868622
+-0.03100566
+0.99205367
+-0.59475463
+-0.86579211
+-0.49245186
+0.06428568
+0.58486245
+0.55136916
+-0.59986133
+-0.28807070
+0.79100739
+-0.92898677
+-0.05186043
+0.43738704
+-0.79309345
+0.71292480
+0.30852828
+-0.62147600
+-0.80074137
+-0.24489280
+-0.90104919
+-0.26221983
+-0.62762380
+-0.30362385
+-0.38972134
+0.43241670
+-0.16478782
+0.70935789
+-0.23115153
+-0.48055609
+0.08756553
+0.11846065
+0.43343325
+-0.79425041
+0.75578498
+-0.65648865
+0.45952483
+-0.14783966
+0.59883478
+-0.67783130
+0.67687895
+0.13475238
+0.57053783
+-0.51887022
+-0.54405173
+0.12467880
+0.26244112
+0.79424940
+0.53837762
+-0.62581877
+0.02294631
+-0.01324449
+-0.18331243
+0.35434045
+-0.96963526
+-0.41774389
+-0.15166597
+-0.81141752
+0.19673441
+0.40617498
+0.58015211
+0.47721873
+-0.78890867
+0.05623444
+-0.81942944
+-0.99762244
+-0.31408006
+-0.25363976
+-0.18700263
+0.29548296
+-0.70612534
+0.20040392
+0.13056240
+-0.47587250
+0.30467706
+-0.85276600
+-0.46134844
+-0.21009980
+0.01567371
+0.75580285
+0.68222384
+-0.46368714
+0.18141997
+0.58286214
+-0.82374841
+0.75207020
+0.49111398
+-0.49497669
+-0.94505956
+-0.84457221
+-0.79154417
+-0.44467547
+-0.86956246
+-0.18854824
+-0.96048985
+0.82241558
+-0.76093922
+-0.29342036
+0.31658469
+0.64748302
+0.03747241
+0.28771264
+0.79513691
+0.36504322
+-0.28347967
+0.07467413
+-0.63386927
+0.01120034
+-0.47308029
+-0.18205631
+-0.63566816
+-0.77348286
+0.20612953
+0.78862365
+0.72969158
+-0.70475561
+-0.40065549
+-0.56767605
+-0.26163700
+0.56116809
+0.18825630
+-0.71499442
+0.01385362
+0.41434813
+0.89319837
+0.10756581
+-0.24850940
+0.01066093
+-0.44168397
+-0.45894511
+-0.76273149
+0.66157811
+0.62790731
+0.24894442
+0.57747924
+0.76403439
+0.21244652
+-0.67631651
+-0.06525847
+-0.95883256
+0.14256345
+-0.23054790
+0.22352310
+-0.33645887
+0.42865001
+0.89970304
+-0.39124221
+-0.13353107
+-0.76395083
+0.86597259
+-0.03995422
+-0.06220402
+-0.08545286
+-0.55215767
+0.54851259
+-0.18805833
+-0.32123756
+0.97641404
+0.80961843
+-0.86735891
+-0.93657983
+0.28676821
+-0.15212348
+-0.48356692
+-0.76732632
+0.07619287
+-0.55106535
+0.35798286
+-1.07689739
+-0.28189854
+0.03243826
+0.46419966
+1.01046714
+0.01138746
+0.56436901
+0.43625091
+0.61801498
+-0.66350936
+0.78060423
+0.08785355
+0.68389260
+0.69911791
+-0.17212686
+0.81929391
+-0.38590694
+0.68118327
+-0.67334219
+-0.19705627
+0.02180555
+-0.08175471
+-0.08955364
+-0.32710441
+0.57417576
+-0.60186202
+0.87916094
+0.61369233
+-0.11276991
+0.28475236
+-0.92517993
+-0.09961518
+0.20658540
+-0.85973110
+0.30666355
+0.94396217
+-0.10952584
+0.57641108
+0.86598468
+0.29696254
+-0.34257078
+-0.72252231
+0.09652697
+0.86205708
+0.15154307
+-0.27633480
+0.27813581
+-0.90908915
+0.06715494
+0.71600818
+-0.41344170
+-0.39347799
+-0.07604252
+-0.98429290
+0.72167987
+0.13429324
+-0.77196946
+0.48173474
+0.97939611
+0.44946679
+-0.87794095
+0.95558841
+-0.14381436
+-0.73142777
+0.08265731
+-0.55196716
+-0.72145004
+-0.06237454
+-0.33539118
+0.56081301
+0.06460004
+-0.35442549
+0.30617048
+-0.14715115
+-0.45564069
+0.33493828
+-0.60053130
+0.23236336
+0.10733822
+0.38639667
+-0.11048768
+0.73936256
+-0.12170295
+0.07418362
+0.24221590
+0.69929112
+-0.56053450
+0.96862087
+0.36893063
+-0.32148445
+-0.93966489
+-0.67406746
+0.69036977
+-0.44368081
+-0.76982131
+-0.55743972
+-0.59193029
+0.77010669
+0.21784553
+0.45423455
+0.55821453
+-0.01423054
+-0.55643798
+0.76691693
+0.25535316
+0.42054903
+-0.35576014
+-0.02938933
+0.90033507
+0.36183009
+-0.57009705
+0.23095014
+0.81553311
+-0.67281105
+0.72483740
+0.55107402
+-0.27233723
+0.54698237
+0.85755177
+-0.62865331
+0.46457388
+-0.39938053
+-0.44604378
+-0.18551291
+0.24877821
+0.93636855
+-0.41048843
+0.87078675
+-0.75540321
+-0.89169306
+-0.12515334
+-0.25778802
+-0.59762898
+0.17219403
+0.60660302
+0.19214190
+0.00746041
+0.03030000
+0.07892624
+0.20815611
+-0.03001699
+0.98807270
+0.35993177
+0.82388270
+-0.36387468
+0.20402380
+0.67945321
+0.48583770
+-0.11751077
+-0.30790386
+-0.51355872
+0.36662077
+-0.39742446
+-0.51499436
+0.16872411
+0.72383005
+0.80947057
+-0.90414921
+0.29359950
+-0.06544740
+-0.21590412
+0.94280199
+-0.03662447
+-0.79006118
+-0.04007967
+0.09802608
+0.17143774
+-0.09814942
+0.67278405
+0.88521943
+0.08773116
+0.05051196
+-0.71161705
+-0.26428662
+0.34201741
+-0.44794076
+-0.98135906
+0.88541126
+0.17669328
+-0.20757499
+0.15099911
+0.79670203
+-0.31045836
+-0.20626007
+0.37228966
+-0.90854767
+-0.20357656
+0.19913137
+-0.08549182
+0.80004165
+0.86228784
+0.75881195
+-0.45099163
+0.86172140
+-0.13670927
+0.29157320
+-0.60150367
+0.07165122
+0.73956811
+0.29201126
+-0.36447203
+-0.27199835
+0.38215029
+0.71250057
+0.83205211
+-0.08887553
+0.49039829
+0.55454314
+-0.11675030
+-0.87552218
+0.14506769
+-0.36084622
+-0.40647513
+-0.33145016
+0.64773774
+-0.70157233
+0.81676316
+-0.01671064
+0.38802361
+0.98574758
+-0.71945494
+0.47468102
+-0.68202585
+-0.48687977
+0.05138481
+-0.86372948
+0.73889768
+0.62399554
+0.12229013
+0.27458346
+-0.89248832
+-0.31672978
+0.88688946
+-0.23573893
+-0.15357769
+0.53631175
+-0.95356883
+-0.32509792
+-0.23951113
+-0.96958177
+-0.46671689
+-0.13203388
+-0.26674801
+0.10581481
+0.21330202
+0.56535184
+-0.79227416
+0.65662730
+-0.25394624
+-0.05152309
+0.28774929
+0.73035252
+-0.39418030
+0.87527847
+0.15545726
+0.02116704
+-0.99199694
+-0.52648526
+-0.68755576
+0.64772713
+0.40572262
+0.65646994
+0.16449249
+-0.87614004
+-0.34307557
+0.33882022
+-0.34913951
+0.32825637
+0.83605492
+0.89480329
+0.53854966
+0.46189606
+0.54353738
+0.82301509
+0.48256981
+-0.13789767
+-0.42214930
+0.47306895
+-0.31315702
+-0.10768986
+-0.10692835
+-0.80254608
+-0.99926262
+-0.81578770
+-0.28342789
+0.13046801
+0.74370408
+0.77920878
+0.25843465
+0.36232567
+0.27955961
+0.39648557
+0.89137769
+-0.08489871
+-0.44831085
+0.10089695
+-0.12595278
+-0.40135413
+0.52727354
+-0.66479227
+0.32195365
+-0.74852198
+0.34244418
+0.91052711
+-0.25330919
+0.74463022
+0.57019210
+-0.96112456
+-0.25274003
+0.41451323
+0.87462449
+0.78343856
+0.57761502
+-0.03209281
+0.11869633
+-0.77063186
+0.15022516
+0.90418005
+-0.96080396
+0.15790725
+0.05766284
+0.07335865
+-0.92540811
+0.27565897
+0.70644057
+0.97931981
+0.05576217
+0.77654827
+0.93576634
+0.33703864
+0.37917411
+-0.65209734
+0.04871762
+0.82797289
+0.06842387
+0.88776016
+-0.57092115
+0.21891224
+-0.55199414
+-0.95841438
+-0.98687572
+0.44225764
+-0.00148016
+0.79285610
+0.42943585
+-0.00968647
+0.39194942
+0.08073342
+-0.39496750
+0.15457773
+-0.90099521
+0.07880890
+0.76307976
+0.13440251
+-0.00805461
+0.14429593
+-0.91348454
+-0.00995928
+-0.00813377
+0.12860489
+0.21075046
+0.08807588
+-0.47752595
+0.96628046
+-0.13431424
+-0.87053648
+0.52490187
+-0.01585269
+0.79310834
+0.94896066
+0.78349507
+0.28112841
+0.09331214
+-0.75613421
+-0.32148337
+0.70527864
+0.49066210
+0.09163666
+0.17409670
+-0.63905424
+-0.65110910
+0.74052870
+0.99413824
+-0.35628837
+-0.14238924
+-0.17733067
+-0.08954525
+-0.08635336
+-0.23253739
+0.49672914
+0.46484065
+0.01243258
+0.38120902
+0.76678932
+-0.30366892
+0.72475541
+0.24304926
+-0.78524339
+0.12450099
+0.63998020
+-0.43652534
+-0.23026359
+-0.94778555
+0.13792348
+0.40356016
+0.12466729
+-0.72398064
+-0.86470965
+-0.07114005
+-0.62376156
+-0.18381792
+0.86889029
+0.22783387
+0.86487079
+0.91078138
+0.80299497
+0.15574288
+-0.86408314
+-0.66660917
+0.98308301
+0.31003952
+-0.96530359
+-0.97309594
+-0.32165623
+-0.58922836
+-0.68256834
+-0.43509161
+-0.90894589
+-0.46088785
+0.07569861
+-0.66992098
+-0.74455136
+0.89839327
+-0.56886348
+0.11803520
+-0.06736118
+-0.87610020
+0.09766829
+0.13219535
+0.44383311
+-0.64132947
+0.13337541
+-0.77815448
+0.08619237
+0.89111674
+-0.16952676
+-0.23976517
+-0.26752454
+-0.89490228
+-0.69124994
+-0.54199034
+-0.75856343
+0.74561763
+-0.57855844
+-0.40802038
+-0.83699681
+0.69466650
+-0.53264877
+0.85971475
+-0.40883332
+-0.28697520
+0.49510109
+-0.23296869
+-0.08554816
+0.91215181
+0.30425000
+-0.18800026
+-0.27748936
+0.40583324
+-0.24151731
+0.63508677
+-0.28971672
+0.93301010
+-0.37768507
+-0.52834487
+-0.35699713
+-0.31228089
+0.36987054
+0.24529862
+0.13027787
+0.29022086
+0.60871565
+-0.23921567
+0.07757783
+-0.21721071
+-0.21884322
+0.55571151
+0.10300803
+-0.62754169
+-0.86133280
+-0.34269363
+-0.07126093
+0.06511092
+-0.49848562
+0.64484382
+-0.88712310
+0.71440387
+0.88191617
+-0.36935282
+0.94576776
+0.53723788
+-0.83945945
+0.19005668
+0.59765232
+0.33621848
+-0.97349892
+0.08346725
+0.12081385
+0.55195522
+0.88673055
+-0.51135141
+-0.26379865
+-0.92373819
+-0.39800632
+0.87089694
+0.26070130
+-0.38302976
+-0.73834795
+0.33283472
+0.04346013
+0.87937462
+0.13940251
+-0.00757003
+0.59328604
+0.30065191
+-0.01269478
+0.06144285
+0.87882185
+-0.42854714
+0.69853020
+0.85426271
+-0.40396142
+0.17965674
+0.18863320
+-0.99271303
+-0.81540903
+0.00666285
+-0.02771103
+-0.89301474
+0.81357932
+0.90298593
+0.51275647
+-0.80569968
+-0.62735966
+-0.08971947
+-0.19830835
+-0.67058939
+-0.89501069
+0.93556166
+0.70284629
+0.70981586
+0.01196182
+0.29594827
+0.42655587
+0.87711906
+0.45953977
+-0.48786348
+0.94607543
+0.45978992
+0.84649427
+0.90813522
+-0.70042034
+0.03817302
+-0.58203643
+0.52353549
+-0.12548017
+0.73947021
+0.66575312
+-0.63001728
+-0.12100498
+-0.05815493
+-0.47204990
+-0.81775634
+0.73883528
+-0.42670904
+0.99989605
+-0.97151475
+-0.29561763
+-0.50683755
+-0.85744664
+-0.82684823
+0.60898270
+-0.11781889
+-0.35989580
+0.78565195
+-0.66771583
+0.38840539
+-0.05603018
+-0.20841397
+-1.00899066
+0.29969483
+0.00663154
+-0.53067613
+0.37106886
+-0.87909911
+-0.65983015
+-0.64879384
+-0.88718054
+-0.93061389
+-0.18877667
+-0.14648583
+0.06252385
+-0.22812309
+0.92157552
+0.17055562
+-0.84685734
+0.61237205
+0.56387266
+-0.42585656
+-0.41844021
+-0.68653354
+0.62098853
+-0.90641178
+0.53803418
+0.90939993
+-0.17269149
+0.13470447
+-0.48956917
+0.87081208
+0.52091611
+-0.56898577
+-0.21775820
+-0.40700354
+0.62706425
+-0.47893503
+-0.61306278
+-0.84500947
+0.57523164
+-0.90734599
+-0.79897848
+-0.65369827
+-0.36021574
+0.06070740
+0.65516130
+0.52647727
+-0.59146574
+-0.56667153
+0.68725771
+0.75499213
+0.62862408
+0.14860821
+0.28804369
+0.13275915
+0.08753238
+-0.17791325
+-0.05824569
+-0.12342990
+-0.75984320
+0.90936177
+0.85879811
+-0.08224436
+0.67907065
+-0.53035433
+-0.65095904
+0.09183445
+-0.63323274
+0.37395132
+-0.72956897
+-0.89507781
+0.88064924
+-0.76591130
+0.68488150
+-0.72873492
+0.26535874
+0.38708733
+0.80169390
+0.10810875
+0.15663374
+0.75819369
+-0.72279372
+-0.20183699
+-0.90515504
+-0.27780629
+-0.78251365
+0.89882948
+0.67435790
+0.51044528
+-0.62114955
+-0.85801120
+-0.83742306
+0.47810142
+0.93833829
+-0.65958279
+0.31468053
+-0.36045081
+0.35214046
+0.90900774
+0.77126863
+1.03179108
+-0.07343940
+-0.19391854
+0.15280147
+-0.05016436
+-0.90932920
+-0.53341849
+0.12567532
+0.22388475
+-1.03038969
+-0.88771060
+0.73034323
+-0.05370678
+0.26482467
+-0.28306948
+-0.96992619
+0.40529212
+0.50643795
+-0.12395656
+-0.05171913
+0.48862680
+0.97115853
+0.89833429
+-0.91013885
+-0.28010474
+0.60440212
+0.12678339
+0.53423449
+-0.21073658
+-0.04511324
+0.85331489
+-0.58262101
+0.60850582
+-0.64878374
+-0.44882480
+-0.62980577
+0.11684032
+0.93859041
+-0.40015072
+0.54484329
+0.66781630
+0.74835695
+-1.01862917
+-0.75376950
+-0.28751764
+-0.17617674
+0.22555443
+0.93831929
+0.92372074
+-0.28904728
+0.00456506
+0.04529452
+0.88994000
+0.67155195
+-0.45631577
+0.60699404
+0.61625976
+-1.04194340
+0.68868292
+-0.75298906
+-0.68033250
+0.96254440
+0.06642492
+-0.32902004
+0.13457499
+0.83077712
+-0.35967485
+-0.39396698
+0.96997039
+-0.83987903
+0.63756829
+-0.04744126
+0.34713561
+0.62407024
+0.44494942
+0.62159652
+-0.53230381
+-0.11439147
+-0.21313732
+-0.74743330
+-0.20202834
+-0.50741233
+-0.03507279
+-0.68475207
+0.03880598
+0.36536723
+-0.66898992
+0.24192986
+-0.70100606
+-0.34210187
+0.87098224
+-0.29786101
+0.27145101
+0.62036795
+-0.87131474
+0.03491679
+0.51407394
+-0.29875885
+-0.09469351
+0.69230574
+0.26517503
+0.26760467
+-0.26431036
+-0.20811402
+0.94714394
+0.36009664
+-0.69589906
+-0.25209328
+-0.34823945
+-0.64044958
+-0.61142955
+0.54703771
+-0.77459729
+-0.02998177
+0.10375164
+-1.00904218
+-0.38856494
+0.87941181
+-0.36829704
+0.01298954
+-0.34293397
+-0.60560926
+0.17488270
+0.64158446
+-0.46686634
+-0.14895819
+0.97621779
+0.44896515
+-0.11428171
+0.71391236
+0.73757745
+-0.68020651
+0.89686869
+0.74255781
+0.83215734
+-0.00872637
+0.12381235
+0.32326331
+0.57573700
+-0.00366311
+-0.21377703
+0.79719360
+-0.96612821
+-0.41962302
+0.56171138
+0.57218369
+0.87219915
+0.39395830
+0.67177053
+-0.24630028
+-0.60685331
+-0.67412510
+-0.56817189
+-0.14215963
+-0.83188566
+0.16527217
+0.13950430
+0.88565444
+0.41158434
+-0.72376796
+0.76147655
+-0.44567633
+-0.19457488
+-0.56846554
+-0.75105455
+0.75552280
+-0.80608416
+0.96693457
+-0.79237409
+-0.27725324
+-0.05971011
+0.97104755
+0.85049977
+-0.98624526
+-0.02157853
+-0.62270085
+-0.51830223
+-0.61896385
+0.32314091
+-0.76278764
+0.34087530
+0.51169105
+-0.47609008
+-0.36771868
+-0.75149195
+-0.65406923
+-0.66110661
+-0.01036435
+-0.46499541
+0.26415643
+0.02117917
+0.53065355
+-0.15915684
+-0.07041736
+-0.74471250
+-0.53354668
+-0.50593133
+-0.51543501
+0.32261030
+0.31280151
+-0.63999317
+-0.61043035
+-0.03290642
+-0.28134847
+0.73725815
+0.23854561
+-0.05855330
+0.36677601
+0.16165947
+-0.27956580
+0.42121429
+0.29158989
+0.65659920
+-0.20179672
+-0.18670432
+-0.33156259
+-0.85201976
+0.76945401
+0.54415131
+-0.17152057
+0.80041053
+-0.27883418
+0.46934981
+0.15780342
+-0.63344343
+0.88143170
+0.07910652
+-0.78289431
+0.34052907
+-0.16146403
+-0.63572093
+0.56698962
+-0.67184272
+0.01231158
+0.23866837
+-0.89205094
+0.50782142
+-0.37934303
+-0.17373045
+-0.61805036
+0.40095659
+0.58241447
+0.70651314
+-0.15757945
+0.35891703
+-0.31115370
+-0.64666656
+0.90034764
+0.03747313
+-0.08006457
+-0.64155596
+0.61407075
+-0.21658603
+-0.68846239
+0.89447196
+0.43814711
+0.05948763
+-0.66576735
+0.15055158
+-0.47052369
+0.16113665
+0.52992920
+0.81150136
+0.85297393
+0.34103205
+0.15102371
+-0.02114019
+-0.47735195
+-0.97069290
+0.62846634
+0.24200179
+0.19791722
+0.01518344
+-0.32132986
+0.61988141
+0.54767179
+-0.01272436
+-0.65838323
+-0.19460848
+0.44793550
+-0.63338939
+0.06905074
+-0.01739064
+0.02795140
+0.04498212
+0.00678506
+0.83638696
+-0.92148450
+0.04741693
+-0.26345527
+-0.47503231
+-0.57347183
+0.79839913
+0.01343887
+0.13664936
+-0.35625132
+-0.18252789
+-0.69252218
+-0.37285710
+0.86512901
+0.97467450
+0.15795536
+-0.98220209
+0.46253576
+0.15587471
+0.82764610
+-0.63459811
+-0.44858943
+-0.91492923
+-0.63337718
+0.70485601
+-0.11840893
+-0.05247900
+0.18884116
+0.40481104
+-0.50333044
+-0.28910550
+-0.99919181
+0.65518694
+-0.69965240
+0.41714742
+0.98372440
+0.66490715
+0.69286801
+0.81030904
+0.12728229
+-0.35465501
+-0.76072736
+-0.70995907
+-0.77179174
+-0.79458631
+0.60206858
+-0.64731927
+-0.40144178
+-0.55534051
+-0.29549934
+0.17516773
+0.86055427
+-0.27674109
+0.78231069
+0.29169102
+-0.85016005
+-0.88614984
+-0.75912764
+-0.22844921
+-0.56089575
+-0.89006556
+-0.62627138
+0.81081481
+0.49676804
+0.31404794
+0.60833598
+-0.02360564
+0.77568512
+-0.03334196
+-0.11247342
+0.96587638
+-0.76397256
+0.04183826
+-0.64135249
+-0.83306728
+0.67798200
+-0.18072226
+0.68936275
+-0.60166202
+-0.24201867
+-0.85427758
+-0.46893297
+0.90776891
+-0.82452319
+-0.65469884
+-0.84253462
+0.70964934
+0.22291220
+-0.17457678
+-0.04884874
+0.46478178
+0.07919079
+0.14286434
+0.36133110
+-0.24805932
+0.86845023
+0.71309103
+-0.72615193
+-0.40229700
+0.10987761
+0.48046359
+0.93208804
+0.23633665
+-0.33006894
+0.49963418
+-0.07033685
+0.30190744
+0.29427159
+-0.43974058
+0.70826565
+-0.66900513
+0.11927338
+-0.09280435
+-0.31708042
+0.91802156
+0.85439339
+-0.20656037
+0.44168635
+0.49951603
+-0.39380931
+-0.21350408
+-0.61676788
+-0.70218270
+0.91214713
+-0.27798492
+-0.62009906
+0.57846792
+0.68828180
+-0.94552708
+0.27465456
+0.97163335
+0.84523260
+0.15525103
+0.13660817
+-0.84033495
+-0.33738250
+-0.55773313
+-0.37453801
+-0.19290776
+-0.00892891
+-0.36007112
+-0.04540319
+0.51042507
+-0.78173179
+-0.18599719
+0.21934972
+0.85404285
+0.93708851
+-0.92527906
+0.28963793
+0.60557064
+-0.00454713
+0.49723770
+-0.35382501
+0.79011029
+0.51538628
+0.75952684
+-0.35401883
+0.54097051
+-0.67961284
+0.22185706
+0.87264558
+-0.77029756
+0.84896418
+0.57246607
+0.31358821
+-0.06732217
+0.94985459
+-0.39218193
+0.62155428
+-0.80516226
+0.51313580
+-0.78695729
+0.92460332
+0.49556830
+0.53797708
+-0.84789851
+0.98694310
+-0.32957780
+-0.82038771
+0.69351475
+0.92084374
+0.78106023
+-0.03191352
+-0.88705569
+-0.04766326
+0.65896122
+0.81020745
+-0.35472666
+0.55021322
+-0.80154220
+-0.57010707
+-0.85103811
+-0.95158701
+-0.67521904
+0.90173039
+-0.15876871
+0.31837059
+-0.78909014
+0.76424555
+-0.75190663
+-0.91632603
+0.83762515
+0.86828554
+0.60811289
+0.10128245
+0.15959732
+0.24846733
+-0.19694108
+-0.37961368
+0.16860700
+0.70473589
+-0.79217641
+0.62598276
+-0.06686423
+-0.70389172
+-0.89607604
+-0.85448489
+0.85166216
+0.58125831
+-0.00700641
+0.75558127
+-0.61759892
+-0.64648396
+-0.79953647
+-0.89464337
+-0.78239827
+-0.40946108
+-0.89152564
+-0.58460718
+-0.29183340
+-0.00379893
+-0.30544907
+-0.92455817
+0.67949116
+0.07763255
+-0.00358582
+-0.88319735
+0.91846597
+0.43940008
+0.32960451
+0.87745500
+-0.81584720
+0.00239491
+-0.78821494
+0.33941531
+0.25692046
+-0.34849125
+0.57636762
+0.45003176
+-0.15277791
+0.40935040
+-0.72040114
+0.73088956
+-0.63862905
+-0.11448741
+0.18075836
+0.02167821
+0.51804793
+-0.76075822
+0.82210755
+0.38948619
+0.15644276
+-0.38410610
+0.61647737
+0.12159169
+0.71825337
+-0.00389194
+-0.57768148
+0.77738929
+-0.12838966
+-0.04125047
+0.94361532
+-0.81830461
+0.54163516
+0.26009333
+0.17235053
+-0.61395004
+-0.27844572
+-0.91949563
+0.31623352
+0.52470553
+0.70172250
+-0.19428688
+-0.63937476
+-0.55936888
+-0.40204608
+-0.02855921
+0.78871799
+0.23974311
+0.09729576
+-0.35848588
+-0.54613635
+0.09695351
+-0.84146065
+0.99705744
+0.08621764
+0.18137431
+-0.43642843
+-0.29664433
+-0.96023159
+-0.03706926
+-0.59411457
+0.30331016
+0.88789976
+-0.62813249
+-0.47769457
+-0.55453476
+0.41056991
+0.12628114
+-0.73525652
+-0.96083891
+-0.69843540
+0.80430746
+0.39004886
+-0.39446574
+-0.91624977
+0.77342761
+0.51595080
+-0.39703470
+0.07608461
+-0.64438286
+0.34059668
+0.79060829
+-0.19630373
+0.97007978
+0.42016077
+-0.62810424
+-0.85495310
+-0.78791177
+-0.42120302
+0.14818156
+0.40446043
+-0.40638292
+-0.48786277
+-0.56858227
+0.69722593
+-0.61250094
+-0.31978238
+-0.08809143
+-0.06974983
+0.28585708
+0.45669186
+0.16219378
+0.67016459
+0.68388331
+-0.24781579
+0.54060733
+0.69288898
+0.68836880
+-0.28981924
+0.50965869
+0.89572084
+0.82737553
+-0.91592905
+-0.33615422
+-0.73997369
+-0.13084853
+0.16851485
+-0.80842008
+0.91089618
+-0.55838522
+0.79771519
+-0.40141976
+0.70343804
+0.58470643
+0.18825829
+-0.46575707
+-0.68259421
+-0.35076648
+-0.41190928
+-0.11947125
+-0.49525267
+0.05987298
+-0.07377821
+0.23138952
+0.29266834
+0.99889731
+0.98475444
+-0.27757895
+-0.80265076
+0.64858782
+0.40208530
+-0.17810225
+-0.35470611
+-0.97535307
+-0.60728046
+-0.71113381
+-0.44553530
+0.16236556
+-0.89393377
+-0.13817585
+-0.43230349
+-0.04453099
+-0.13173300
+0.47333837
+-0.33018363
+0.87548029
+-0.40634775
+0.89994919
+0.69718325
+-0.13901645
+0.02850366
+0.99751616
+0.86235023
+-0.63791630
+-0.17586112
+-0.88169793
+-0.80568899
+-0.44057429
+-0.40497589
+0.25576258
+0.34744525
+-0.12891865
+-0.51426226
+0.52273655
+0.94445550
+-0.76002298
+0.94668806
+-0.58330595
+0.43988681
+0.59789169
+-0.06932575
+0.96913660
+0.35455215
+0.98967385
+-0.40162724
+-0.78043276
+-0.96624264
+0.81193566
+0.72784162
+0.94108152
+0.07091713
+-0.93708372
+0.23701203
+0.51445949
+0.95535302
+0.07500374
+0.70294750
+-0.41270834
+-0.62379849
+0.49518347
+-0.85005410
+-0.46551955
+-0.86014932
+0.22684860
+-0.80671144
+0.81711960
+0.03202593
+-0.15671903
+-0.80353644
+0.89596653
+0.30289924
+-0.03929591
+-0.33803177
+0.82442319
+0.83558643
+-0.86766118
+-0.93286343
+0.16078329
+0.38564467
+0.22052956
+0.19313300
+0.45467627
+-0.66469419
+0.51881588
+-0.46830016
+0.96840906
+0.85733163
+0.28790152
+-0.24197602
+-0.93514021
+-0.76405150
+0.22356153
+0.67027974
+0.85845304
+-0.19885546
+-0.27652121
+-0.67018771
+0.05296779
+-0.05962634
+0.88221264
+0.63944101
+-0.79241319
+0.85283208
+-0.88653208
+0.00209856
+0.41253352
+0.31712115
+-0.32400745
+-0.09502059
+-0.96525983
+0.47969627
+-0.22234762
+-0.57438856
+0.13590229
+-0.17386144
+0.68468559
+0.92884004
+0.65654862
+-0.61739099
+0.26021147
+0.84326172
+0.57079911
+0.06306672
+0.50318813
+-0.18424767
+-0.68350920
+0.58942688
+-0.35764033
+0.96875894
+-0.51066023
+-0.86374040
+-0.46258765
+-0.84140575
+0.29673231
+0.94761026
+-0.87728535
+0.74097908
+-0.75814079
+0.23270023
+0.71352100
+0.08813286
+0.34629965
+-0.11651999
+0.05120909
+-0.54359606
+0.22987998
+0.34736085
+-0.19700938
+0.54753947
+-0.52568543
+-0.03406584
+-0.08684248
+-0.98594208
+0.79192936
+-0.52646843
+0.10610271
+-0.95084812
+-0.77180868
+0.68802667
+0.54228532
+-0.32550055
+0.78810441
+-0.19479901
+0.57237697
+-0.47480106
+0.50197685
+0.01733553
+0.73376644
+0.06399429
+0.60262585
+-0.30492556
+0.30454373
+0.37545002
+-0.14239681
+-0.26494348
+0.75489736
+0.35950363
+0.04887879
+0.53639734
+0.52939343
+-0.70903757
+0.22021973
+0.57710397
+-0.20894724
+0.32291520
+-0.50896594
+0.04808664
+0.68842590
+0.78815556
+0.15034831
+0.50751388
+-0.43555200
+-0.27086228
+-0.18348920
+0.55963051
+-0.71488228
+-0.05489689
+-0.25535214
+0.47233295
+0.50546968
+-0.40836787
+0.84385383
+0.48572624
+-0.09612489
+-0.88489924
+0.85112524
+-0.21018106
+-0.21887982
+0.41491210
+-0.26545084
+-0.17561197
+0.50038818
+0.60194807
+0.82231346
+0.38154693
+-0.02948886
+0.90613008
+0.31950864
+-0.01227403
+0.14065540
+0.83504421
+0.08004928
+-0.24977782
+-0.11296341
+0.09905224
+0.28034701
+0.89064725
+0.47596475
+-0.04958342
+0.60624731
+0.76143389
+0.41795987
+0.49194223
+0.90850421
+0.28657932
+-0.20163755
+-0.27113508
+-0.62090353
+-0.15979943
+0.37323232
+-0.13221585
+0.28393876
+0.55495495
+0.83109550
+-0.47398151
+0.25408520
+-0.37171924
+-0.40186255
+-0.11827064
+-0.05482930
+0.01613537
+0.49160854
+-0.39198805
+0.80460477
+0.37154314
+-0.07574986
+-0.04743946
+0.54063160
+-0.05072364
+0.56789145
+-0.78374540
+-0.86115639
+0.39429732
+0.45405996
+0.98285536
+0.36310733
+0.84871338
+0.37036882
+0.27993276
+0.15015188
+0.92324044
+0.58469103
+-0.06932638
+0.21531766
+-0.36776416
+0.12355383
+-0.74800292
+0.60317402
+0.95394632
+0.24751333
+0.55641992
+0.02735662
+-0.04625660
+-0.50177678
+-0.21261189
+0.88415989
+0.63220014
+-0.62778564
+0.90831442
+0.62292115
+0.84615069
+0.73085963
+0.86314675
+0.74875866
+-0.07336646
+0.93541012
+-0.29491737
+0.68423683
+-0.20947515
+-0.79251617
+-0.01521646
+-0.79072657
+-0.80035265
+-0.46890010
+0.65319727
+-0.69668827
+-0.54806150
+-0.97572723
+-0.33407928
+0.60960482
+0.16247238
+-0.87751383
+-0.24844884
+0.50441649
+0.46979557
+-0.18757562
+-0.72980891
+-0.30083112
+-0.84753888
+0.89566717
+-0.81727727
+-0.18340076
+0.48101880
+-0.38192585
+0.42689119
+-0.08911815
+-0.06493403
+-0.64424902
+-0.75478452
+-0.79765694
+-0.10329996
+-0.24291329
+-0.71504182
+0.80849470
+0.14419589
+0.64430096
+-0.45879881
+-0.09027456
+-0.95039626
+0.43324818
+0.05046497
+-0.66082654
+-0.76607163
+-0.15624299
+0.66269125
+-0.42019484
+-0.33973778
+0.71827444
+0.04210104
+-0.64591262
+0.52775537
+0.84139767
+-0.02279378
+-0.78551044
+-0.03808763
+-0.10492250
+-0.94697796
+0.50721897
+-0.55422449
+0.62570065
+-0.22710987
+-0.38590865
+0.26128883
+0.94810689
+0.84444019
+0.46205470
+-0.53424247
+0.64668101
+-0.56561848
+-0.83276728
+-1.01148745
+0.70590247
+-0.87221062
+0.68868837
+0.70369692
+0.41997778
+0.64573456
+0.43377159
+0.17226120
+0.41231612
+-0.80149743
+-0.16755062
+-0.77921229
+0.01288386
+-0.20957191
+0.05681563
+-0.55453811
+-0.39733465
+0.58522274
+-0.16662215
+0.29698850
+0.78081283
+-0.33827821
+0.10074534
+-0.85376765
+-0.69206415
+-0.18719645
+-0.14903725
+0.82292870
+0.89814570
+0.39999580
+0.44021928
+-0.58149216
+0.12717988
+-0.30912908
+0.34894670
+0.70250905
+0.71864004
+0.64600881
+-0.90082026
+-0.20612461
+-0.47171570
+0.01818025
+-0.55746799
+-0.43073922
+0.62568758
+0.81189277
+0.08759037
+0.57617456
+-1.03907910
+-0.44087614
+-0.61169561
+-0.88991072
+-0.27751980
+0.03015258
+0.85220373
+-0.17383483
+0.15373231
+0.29181590
+0.76760042
+0.17262410
+0.78865490
+0.57587638
+0.04716742
+-0.91683024
+-0.51449057
+0.81787434
+0.36484355
+0.33112938
+0.95422363
+-0.57738457
+-0.06635819
+-0.11682216
+-0.63684320
+0.49665534
+0.58965997
+0.26784104
+-0.94881607
+-0.57697602
+0.79425862
+0.53733004
+-0.04185726
+-0.26316463
+-0.50148006
+-0.55303482
+-0.15615379
+-0.26831806
+-0.57603104
+0.36009735
+-0.06639484
+0.57826297
+-0.48869222
+-0.38569401
+0.97164011
+-0.85933975
+-0.10413999
+-0.92092252
+0.00017970
+-0.39030783
+-0.32411040
+-0.73341963
+-0.42997102
+-0.77721017
+0.76103264
+-0.29805185
+0.03424428
+-0.09012245
+-0.04875971
+0.72609889
+-0.22670068
+-0.73755396
+0.36457145
+-0.08930515
+0.24541162
+0.63001599
+0.50763305
+-0.89022951
+-0.65200004
+0.15949645
+0.25961212
+0.41831265
+0.09810556
+0.28361661
+0.24953376
+0.24889151
+0.62402375
+-0.55059810
+-0.02250771
+0.57688891
+0.16836412
+0.97416439
+0.70163251
+0.57280751
+-0.56104462
+-0.97465056
+-0.61001542
+0.81716344
+0.18661619
+0.01057589
+-0.42593140
+0.44120505
+0.57161684
+0.18510405
+-0.16972160
+0.63878088
+0.96375060
+-0.20383301
+-0.82782807
+0.87348712
+-0.21378616
+0.34243065
+0.66060135
+0.62210842
+0.42379182
+-0.92658745
+0.00047072
+0.99373757
+0.66973364
+0.90184792
+0.37470037
+0.67838854
+0.56271814
+-0.50034170
+-0.90704317
+-0.80872251
+0.15228715
+-0.58347058
+0.75566717
+0.60755688
+0.73235722
+0.94749316
+0.44545896
+-0.78648832
+-0.02335678
+-0.01778204
+-0.38621083
+0.82354722
+0.24711531
+-0.74313233
+0.65740998
+-0.28634273
+-0.86608652
+0.60160231
+0.49687923
+-0.71946112
+0.89615009
+0.83048897
+0.38778875
+-0.43981194
+0.76893467
+-0.39795110
+-0.57489593
+-0.86271729
+-0.12344692
+-0.66575812
+-0.81369925
+-0.25957115
+-0.17994574
+-0.54095635
+-0.95709469
+0.75885648
+-0.10734118
+-0.82853631
+-0.37970503
+0.01385459
+-0.54544043
+-0.34006094
+-0.97955045
+0.10804736
+-0.24795451
+0.08619391
+-0.02005215
+0.41486892
+0.54522651
+0.34130822
+0.54714364
+-0.64409595
+-0.34601469
+-0.26002151
+-0.91617879
+-0.13670533
+-0.08565900
+-0.82045611
+0.97525063
+0.74237407
+-0.98298055
+-0.09661283
+0.62800353
+-0.53816209
+0.54235928
+0.63025944
+-0.99335707
+-0.24858683
+-0.64916350
+0.76859168
+0.37528432
+-0.84838848
+-0.78367577
+0.67164641
+0.71485688
+0.29600838
+0.90509919
+0.81845742
+0.97988685
+-0.07601418
+-0.22998985
+-0.97249258
+-0.38473876
+-0.76582500
+0.39116382
+0.25148278
+0.82953647
+0.40627313
+0.91820084
+0.23875382
+0.26537069
+-0.71918723
+-0.23879704
+0.12411153
+-0.31991197
+-0.10460597
+-0.01643758
+0.46247915
+0.03251769
+-0.04676607
+-0.47136275
+0.62268029
+-0.54585097
+-0.14154978
+0.42607001
+0.50904406
+0.69594836
+-0.11478208
+-0.95946280
+0.76690427
+-0.97983525
+0.18501002
+-0.42381214
+-0.60720767
+-0.80990754
+0.69353128
+0.51002174
+0.19156956
+0.31150807
+0.53098872
+-0.55122911
+0.43851885
+0.40645729
+-0.24247818
+-0.22800344
+0.40052469
+0.38907920
+0.51645299
+0.06749695
+-0.01280026
+-0.86684780
+0.45680736
+-0.24219694
+0.90905649
+0.57673291
+0.78678665
+-0.50713864
+0.39355222
+0.50211894
+0.04318237
+0.76615099
+0.21096730
+0.53982446
+-0.27436107
+0.62024697
+0.56209697
+0.59178653
+-0.93004218
+-0.13388818
+-0.51712205
+-0.75264483
+-0.83099045
+-0.78873573
+0.94925173
+-0.76509233
+-0.38730865
+-0.73492986
+0.62423716
+-0.62101046
+-0.74434542
+0.22279690
+0.80546807
+-0.32609122
+0.78346047
+0.63689226
+0.36353795
+0.59154650
+0.50034375
+-0.66897226
+0.91010959
+-0.60711365
+-0.90968132
+0.61269989
+0.60058223
+0.31019435
+0.10621759
+-0.40707911
+-0.81190062
+0.98253662
+0.43810650
+-0.66086144
+-0.65852190
+-0.24525385
+-0.50280824
+-0.42024887
+-0.23131601
+0.74408341
+0.24205089
+0.54165497
+-0.41231803
+-0.53762348
+-0.60710973
+-0.16406414
+-0.64750983
+-0.71329435
+-0.89709016
+0.16803482
+0.00970665
+0.48122529
+-0.90482832
+-0.00534892
+0.14945980
+-0.04593436
+-0.54829911
+-0.91442560
+0.71805680
+0.01896012
+-0.30705808
+-0.75733955
+-0.21908083
+0.50458094
+-0.27433390
+-0.38427655
+0.59530751
+-0.57141922
+0.00879694
+0.44842705
+0.39863614
+0.15727390
+0.74216332
+-0.30338684
+-0.35416016
+-0.19791456
+-0.33053142
+0.11058676
+0.10661132
+-0.85641119
+-0.89222361
+0.90249316
+0.41295869
+-0.62830081
+-0.02931197
+0.28924542
+-0.64005241
+-0.62903563
+-0.76700991
+0.88528811
+0.39239072
+0.89781449
+0.20709360
+0.39330800
+0.52253062
+-0.37574904
+-0.08885718
+-0.62035144
+-0.89565050
+0.80623099
+0.92802409
+0.92481675
+0.10051534
+0.92217348
+0.66155130
+-0.69539796
+0.62552522
+0.89119645
+-0.05679733
+0.90944215
+0.37486511
+0.77316839
+-0.76530130
+-0.93260757
+-0.76069495
+0.66156414
+-0.15321220
+-0.08875089
+-0.77591443
+0.81260822
+-0.56454035
+0.21902204
+-0.12575707
+-0.70810437
+0.80470092
+0.24041565
+1.03937030
+0.74722444
+-0.29167464
+0.64689302
+-0.47263363
+-0.18753143
+-0.21294245
+-0.32633302
+0.09091221
+-0.93412778
+-0.29374113
+-0.75532479
+0.01941196
+-0.46590096
+-0.92714461
+0.82283363
+-0.71992989
+0.38363421
+-0.55057892
+0.39962615
+-0.62752262
+0.47956432
+0.65498018
+-0.03936774
+-0.04539017
+0.93373606
+0.58290831
+-0.21180177
+-0.16414899
+0.65222837
+0.63150322
+-0.80979766
+-0.53164104
+-0.08402652
+-0.35224185
+-0.58670833
+-0.92262874
+-0.59672806
+0.60407960
+-0.31530772
+-0.90302430
+0.45284988
+0.94261646
+0.59390104
+0.33556302
+-0.30385348
+-0.53137053
+-0.63037330
+0.50542498
+-0.17146843
+0.59053576
+0.83764580
+0.50378764
+-0.17697585
+0.48746538
+0.89566696
+0.60926700
+-0.86903846
+0.05648267
+-0.60476533
+0.69771838
+-0.48827100
+0.86634076
+0.40952122
+0.43043673
+-0.11151624
+0.83064258
+-0.83537421
+0.10097289
+0.62382305
+0.61757171
+-0.01009488
+-0.56604096
+-0.93873525
+-0.76324821
+-0.19213402
+-0.49316901
+0.22671056
+-0.57072249
+-0.61875463
+0.00554228
+0.68986952
+0.36197269
+-0.94333091
+0.77277315
+-0.96083619
+-0.52856636
+0.29866040
+0.33745456
+0.78460205
+0.13637137
+-0.87913691
+-0.13725477
+0.45107603
+-0.04336679
+-0.68036070
+0.31542397
+0.54918122
+0.04784381
+-0.31715310
+-0.25981802
+-0.03528458
+-0.18928885
+0.27943850
+0.32225752
+0.00583041
+0.89756572
+0.32794750
+0.39811933
+-0.45364594
+-0.39334261
+-0.50187424
+-0.84852748
+0.24104214
+0.18527257
+-0.82563643
+-0.74443561
+0.47921109
+0.89057529
+-0.67923149
+0.25155330
+0.29954064
+0.34552872
+0.10660160
+0.91619098
+-0.94618506
+-0.87855151
+-0.06566250
+0.24700975
+-0.10325676
+0.78608930
+0.81280684
+0.79447961
+-0.58347455
+0.10021889
+-0.60948586
+-0.16832691
+0.01700199
+0.62631798
+-0.90902309
+0.89602673
+-0.12376171
+0.77812493
+-0.20967239
+-0.48260188
+0.73894036
+-0.03053629
+-0.73034954
+-0.20240599
+0.68322182
+-0.14085805
+-0.62896931
+-0.56707162
+-0.92007548
+0.71785069
+-0.54007044
+0.06147861
+0.34800935
+0.22506547
+0.58696079
+-0.23073751
+-0.90803537
+-0.08457446
+-0.00175023
+0.50346768
+-0.18793309
+0.70606399
+-0.85760848
+0.04471529
+-0.45712638
+0.33494234
+0.10504913
+-0.67285788
+0.27949786
+0.87093604
+0.09704494
+-0.57383510
+-0.38714421
+0.03324986
+-0.63642588
+-0.98135403
+0.18373895
+0.99104202
+-0.84734407
+0.98860431
+-0.88888703
+0.66737354
+0.33780551
+-0.69829088
+0.93708003
+0.85421789
+0.90286613
+-0.48493874
+0.55780590
+-0.53409129
+0.54390943
+0.76138008
+0.67157114
+0.97237957
+-0.20857978
+-0.63475356
+0.18124521
+-0.42242312
+-0.12203890
+0.20483756
+0.52510405
+-0.87855639
+-0.09550560
+-0.69618329
+0.68701386
+0.15435016
+0.00089788
+0.13129365
+0.57010937
+0.98298323
+0.84934103
+0.17931056
+-0.73089397
+-0.44448572
+0.96509683
+0.76884520
+0.86589468
+0.92039096
+0.23109758
+-0.32665879
+-0.95507656
+0.30151927
+-0.06649786
+-0.98489926
+0.72751737
+-0.97383864
+0.93644714
+0.29928946
+-0.20683122
+-0.79322875
+0.89946008
+-0.96045946
+-0.70320833
+-0.12467778
+-0.76762484
+0.87412632
+0.45861650
+0.10142851
+0.53092480
+0.47856140
+0.78582442
+-0.29807806
+-0.51975691
+-0.91561810
+0.67525208
+0.72039235
+0.49801731
+0.24004042
+-0.23142886
+0.59142435
+-0.86358243
+-0.77211282
+0.84134471
+-0.57774881
+0.56839919
+0.70831943
+0.95441782
+-0.58356145
+-0.32913530
+-0.27219194
+0.44618559
+0.49111879
+0.19659185
+-0.61207199
+-0.61960435
+0.64658844
+0.62658679
+-0.94850715
+-0.92743222
+-0.20267844
+-0.12399536
+0.03885806
+-0.41152555
+-0.67188767
+0.18027794
+-0.49527538
+0.34255266
+0.92280877
+-0.50383770
+0.88693810
+0.60342371
+0.60628033
+0.12563634
+0.18858063
+-0.17315197
+0.77675319
+0.92527187
+-0.78552625
+0.19698215
+-0.84486485
+0.67837775
+-0.86872542
+-0.30143231
+0.51373410
+-0.10732800
+0.28847229
+-0.27841824
+0.59400403
+-0.66786453
+-0.02840716
+0.27112937
+-0.28861862
+0.53086102
+-0.83351813
+-0.68838155
+-0.62103945
+-0.78592364
+0.56466937
+-0.38301522
+0.95752609
+-0.16259038
+0.79617941
+0.93902290
+-0.59308609
+0.66887331
+-0.44897777
+0.01129246
+0.40884888
+-0.46180689
+-0.28221107
+-0.29828691
+-0.26728874
+0.20336378
+-0.50983530
+-0.73038062
+-0.53039992
+-0.49990350
+0.71490276
+0.75102198
+-0.88302533
+0.39358175
+0.03752363
+-0.22785199
+0.08066058
+0.99755669
+-0.67909369
+-0.94146050
+-0.16962421
+-0.17803967
+-0.05104220
+0.75405407
+0.52605438
+0.72879732
+0.13774574
+0.34037113
+-0.72701803
+0.29527950
+-0.99440398
+-0.41240537
+0.42246485
+0.89448404
+-0.09957761
+0.79117835
+-0.16462350
+0.66089511
+0.43978918
+0.15665460
+0.12370670
+-0.45399863
+-0.23938447
+-0.74220946
+0.80707204
+-0.54690462
+0.19466996
+0.41951799
+-0.48768264
+0.44953573
+0.43808115
+-0.59947079
+0.07230568
+-0.39978892
+0.09494317
+0.98378348
+0.26947463
+-0.13282830
+0.04259288
+0.24437070
+0.37406909
+-0.94915673
+-0.51178944
+-0.65779623
+-0.18396556
+-0.69727206
+0.13556159
+0.05392075
+0.31171560
+-0.28109992
+-0.74060512
+-0.93208288
+-0.38328987
+-0.25413221
+0.98976457
+0.81651616
+0.20340037
+-0.80831072
+0.98009896
+-0.75504461
+0.12603390
+-0.23299468
+0.40354276
+0.55473888
+-0.94025819
+0.27809155
+0.60166693
+-0.83638276
+0.13686037
+0.90058351
+0.79180837
+-0.06646388
+0.01081137
+-0.21825010
+0.39114442
+0.41951822
+0.24719737
+-0.83328947
+0.13916349
+0.92520010
+-0.04019387
+-0.52409322
+0.55869683
+-0.37511561
+0.87281992
+-0.47565896
+0.06350752
+-0.55378775
+-0.14769137
+0.63299966
+0.06073684
+-0.87737271
+-1.02029960
+0.33517143
+-0.18949335
+0.57513894
+0.41288758
+0.69270836
+0.27235367
+0.56885024
+0.33263988
+-0.57107033
+0.88908394
+0.43072013
+0.79103900
+-0.45063431
+-0.37519348
+0.63156125
+0.30694096
+-0.49742424
+-0.70268518
+-0.96857424
+0.96414540
+-0.76990608
+-0.63562307
+-0.01502661
+0.86082859
+-0.59279985
+0.38574148
+-0.77039854
+0.68760432
+-0.64934706
+-0.41559188
+0.54544437
+-0.33692875
+-0.01753145
+-0.61661284
+-0.57075869
+-0.52130175
+-0.75203687
+-0.25423031
+-0.34527858
+0.42137986
+-0.05593424
+-0.90176322
+-0.28914107
+-0.39043525
+0.62712804
+-0.34742312
+-0.33234743
+-0.02067214
+0.00789896
+0.32370152
+0.22810316
+-0.08227340
+-0.08257784
+0.97114639
+-0.18185776
+0.23897915
+0.20080017
+-0.83153089
+-0.85565442
+-0.57833154
+0.24579978
+0.46938766
+-0.95319024
+-0.86413136
+0.22251924
+-0.97412159
+-0.53368804
+-0.20344854
+0.85144682
+0.27872677
+-0.92395574
+0.83878105
+0.18119651
+-0.49308700
+-0.91864963
+0.70111802
+0.76461678
+0.70615079
+-0.25597336
+-0.32752556
+-0.33473181
+0.00777612
+0.14368965
+0.41578634
+-0.74997155
+-0.41456059
+0.59097907
+-0.95125015
+-0.39489309
+-0.45481333
+0.48633557
+-0.07589652
+-0.17140069
+0.78261700
+-0.60781735
+-0.71533582
+0.00774089
+0.75427452
+-0.29440187
+-0.90108654
+-0.74650824
+-0.23596861
+-0.50195198
+-0.87293484
+-0.96190939
+0.32366528
+0.75389721
+-0.96593272
+-0.98464500
+0.34363645
+-0.42109278
+0.05707980
+-0.69581489
+-0.04821052
+-0.58899074
+-0.82473781
+-0.69074037
+-0.98944844
+-0.62611918
+-0.76959973
+-0.19120548
+0.39488002
+-0.90742945
+-0.74754913
+-0.10660763
+0.09399369
+-0.73044676
+-0.78762662
+-0.59085424
+0.30849020
+-0.85909842
+-0.09657985
+-0.69466328
+0.94589912
+-0.27980233
+-0.71131537
+0.49744114
+0.31824536
+-0.86523260
+-0.71044622
+-0.08653144
+-0.54215019
+-0.45029840
+-0.83609427
+0.86638014
+0.78235287
+-0.54225408
+0.36917028
+-0.06910371
+0.99482259
+-0.88967619
+0.51032476
+-0.30188334
+-0.40668890
+-0.37581604
+-0.10676885
+-0.97090008
+-0.76782301
+-0.70461928
+-0.89683887
+0.30930955
+0.49377928
+-0.09494824
+0.55317993
+0.42174844
+-0.04055577
+-0.44306829
+-0.20097543
+0.61303476
+-0.89928667
+0.68806610
+-0.11378230
+0.84116926
+0.46220004
+-0.28166492
+-0.92242305
+-0.19027836
+0.62361256
+-0.79085765
+0.77350714
+0.17661829
+-0.17807663
+-0.53823853
+-0.60457570
+-0.84028450
+-0.81019127
+0.33872732
+-0.02964617
+-0.81841006
+0.18938550
+0.21322552
+-0.48902460
+-0.20903551
+0.05747738
+0.30037512
+0.68170186
+0.33426035
+-0.53877222
+0.29501683
+-0.93742531
+-0.11677891
+-0.57406146
+-0.65707190
+-0.12904622
+-0.96910078
+0.71754993
+0.63566583
+0.36662840
+-0.51582860
+0.86124313
+-0.09335058
+-0.41584371
+-0.82362112
+-0.94679104
+-0.56950614
+-0.55039878
+-0.98650514
+0.16777186
+0.48623739
+-0.13516098
+0.26215651
+0.08520822
+-0.51295136
+0.82690610
+0.26897832
+-0.71505258
+0.72286450
+0.26820830
+0.39188409
+-0.80597844
+0.24403216
+-0.62244894
+0.59161496
+0.68691442
+-0.52240737
+0.95745434
+-0.42635183
+-0.59770872
+-0.77489577
+-0.65484702
+-0.32557911
+0.09543984
+-0.71157047
+0.26023821
+0.70722787
+0.75209771
+0.87250097
+-0.21279704
+0.54061032
+0.06824361
+-0.92075397
+-0.61788946
+-0.82667518
+-0.91769236
+0.02729242
+0.21832397
+0.00599096
+0.99980094
+0.20718696
+0.06324555
+-0.04788532
+-0.23387495
+-0.02733917
+-0.12422109
+-0.73598967
+0.75395716
+0.35622671
+-0.83287270
+-0.45259359
+-0.12268970
+0.58256165
+-0.08814431
+-0.75743954
+0.32749149
+0.55952038
+-0.24698574
+-0.29332957
+-0.14029284
+-0.88328349
+0.66508472
+-0.58817909
+0.56991872
+0.90760155
+0.73285546
+0.70279778
+-0.26104409
+-0.11898404
+-0.88339632
+0.53233342
+0.64891404
+0.83160658
+-0.29242837
+-0.71500315
+0.64557101
+-0.59585107
+-0.21708407
+0.08850517
+-0.42413698
+-0.96479669
+-0.90986714
+-0.68360787
+0.52773333
+-0.01096468
+-0.17789343
+-0.10797517
+-0.19763915
+0.21708249
+0.32562473
+0.82459634
+0.96957644
+-0.71780346
+-0.92331076
+0.81727646
+0.89121400
+-0.26637400
+-0.63940573
+0.08412501
+0.80037729
+-0.14728090
+0.39784696
+-0.78907964
+-0.01173560
+-0.30585302
+-0.92221040
+0.43015742
+-0.72212406
+0.18442500
+-0.65054378
+0.23880720
+-0.05863554
+0.98858154
+-0.08765396
+-0.68536898
+0.85874723
+-0.33411004
+-0.42364635
+-0.71866318
+-0.81311133
+-0.72877773
+0.67217731
+-0.94078030
+0.33611486
+0.33745574
+-0.91354589
+-0.84295547
+-0.07293349
+0.33661963
+-0.90278545
+-0.96293678
+-0.93939162
+0.59071474
+0.72842576
+-0.22561310
+-0.79032501
+0.68894578
+0.54681121
+-0.19292694
+0.79436375
+0.79331710
+0.27414182
+0.82881085
+-0.53207840
+0.83737318
+0.93495520
+0.00089314
+-0.71036103
+-0.94710254
+0.89227662
+0.38211574
+-0.47860861
+1.05315942
+0.45008914
+0.51679889
+0.33643770
+-0.85752776
+0.36651726
+0.05716005
+0.46508146
+-0.00792839
+-0.72265404
+0.33239246
+-0.34305620
+-0.68075746
+-0.13347586
+-0.21344025
+0.03517090
+-0.45528530
+-0.20519408
+-0.57216219
+0.58452270
+-0.16759315
+0.18421746
+0.03368579
+-0.78691194
+0.13452368
+-0.31007370
+0.91535683
+-0.08247956
+-0.11535154
+0.47535971
+-0.78346567
+0.63957207
+-0.83496532
+-0.56608012
+-0.59204398
+-0.46278458
+-0.55256997
+0.77164817
+-0.78433815
+-0.96415397
+-0.89045496
+-1.00491758
+-0.81780117
+0.66282838
+0.40834613
+0.72963224
+-0.21052836
+0.23836083
+0.79429867
+0.47355459
+-0.50087872
+0.79553045
+-0.46281084
+-0.48666288
+0.63737845
+-0.10173734
+-0.79953278
+0.63532488
+-0.64404874
+0.21102745
+-0.37023387
+0.36072882
+-0.13176815
+-0.08387078
+-0.33067157
+-0.59688114
+-0.56389652
+0.02424598
+0.70016897
+0.45781476
+0.46011123
+-0.17785153
+0.32115297
+0.85910094
+-0.54793546
+0.16496400
+-0.60700536
+0.54176888
+-0.40813950
+0.45620037
+-0.71381672
+0.29296562
+-0.96542741
+0.30278838
+0.50205680
+0.21341489
+-0.61464571
+0.91590125
+-0.18132931
+-0.68023664
+-0.20917118
+0.43854251
+-0.64437114
+0.10927449
+0.99719344
+-0.22498649
+-0.98580262
+0.29074467
+-0.58812034
+-0.65613223
+0.66235087
+-0.32179485
+0.14208944
+0.36649512
+0.44196510
+-0.55575448
+-0.30051651
+-0.03088873
+0.79989954
+-0.75755628
+-0.37548614
+-0.98224972
+0.54695816
+-0.52453340
+-0.33200543
+0.79074796
+0.71935083
+0.42486098
+0.61044348
+-0.70666143
+0.84372021
+0.55160860
+0.94088154
+-0.07108298
+-0.56919739
+0.30621999
+-0.30637518
+-0.67257019
+0.76673776
+0.83632552
+-0.10405416
+-0.66463315
+-0.52113098
+-0.49675540
+-0.59880933
+-0.36918530
+-0.00733127
+-0.24717485
+-0.07317693
+-0.57307825
+-0.43942214
+0.41929450
+-0.32846382
+-0.41258000
+-1.01017042
+-0.64613441
+-0.19846274
+0.85383237
+0.42695579
+-0.16847805
+-0.39401162
+0.33594365
+-0.94505728
+-0.66347287
+0.46326484
+0.49894305
+0.75316929
+-0.80725870
+-0.92281255
+0.10613313
+0.29669301
+-0.46682833
+0.14976769
+-0.17828417
+0.76149385
+0.42316869
+-0.76711690
+-0.00848665
+0.50302708
+0.45827996
+0.60078976
+-0.86298222
+-0.84005344
+-0.11085701
+0.00299491
+-0.31800463
+-0.84808423
+0.43423921
+-0.09993515
+0.40833218
+-0.87855932
+0.03958172
+0.43839512
+-0.51243743
+-0.93076041
+0.32895504
+0.06216886
+0.60408026
+0.22297915
+0.18988591
+-0.74002259
+0.91841438
+-0.75595113
+-0.74675616
+-0.16584537
+0.56905078
+0.79616786
+0.27387112
+-0.08444890
+-0.04355064
+-0.80162438
+0.45055816
+-0.20070910
+0.48463041
+0.23299511
+-0.57321415
+-0.03639472
+-0.98415498
+0.45620370
+-0.59025441
+0.04245404
+0.78186084
+-0.85569784
+0.38443013
+-0.44204792
+-0.05163570
+0.32338141
+0.67818883
+-0.07723850
+0.21094139
+0.15268979
+-0.01325997
+0.04513574
+-0.96129932
+0.90574934
+0.06284201
+0.76739265
+0.03941989
+0.16313493
+-0.17858003
+-0.14336398
+0.26276211
+0.15597224
+0.56382716
+0.95136084
+0.82564986
+-0.91833756
+0.91489565
+0.80979347
+0.54491802
+0.61860225
+0.73430697
+-0.01424134
+0.39440477
+-0.05817501
+0.44576454
+0.94930078
+0.36501479
+0.86067116
+-0.86106931
+0.28273806
+-0.16161786
+-0.71989918
+-0.88306226
+-0.42357951
+0.01020598
+0.07453421
+0.06756628
+0.21853733
+0.53833830
+0.59965956
+-0.25545305
+0.45871484
+0.41019166
+0.73172641
+-0.75380640
+0.17169964
+0.78967106
+-0.48219401
+0.51350427
+-0.77778696
+-0.57853580
+0.58098006
+-0.15596604
+0.72134387
+-0.57275245
+0.46360266
+0.86357415
+0.18629551
+-0.82735978
+-0.98640447
+0.77896404
+-0.73923695
+0.09138489
+-0.42888850
+-0.33315098
+-0.00164747
+0.76877475
+0.78083980
+0.87837255
+0.16589189
+-0.42314339
+-0.22088653
+-0.47405231
+0.72406685
+0.87420523
+-0.44214427
+0.53429830
+0.47081769
+-0.98347832
+0.12549043
+0.47030830
+-0.06620634
+-0.15434146
+0.36046505
+0.20244694
+0.87618148
+0.75860345
+-0.23159039
+0.57674873
+-0.29569745
+0.58638155
+0.47656178
+-0.87970338
+0.53681624
+0.68077552
+-0.82262439
+0.77402115
+0.11898971
+0.70113099
+-0.77609682
+-0.98171377
+-0.28163421
+-0.37966609
+-0.63232633
+-0.16311973
+0.42994976
+-0.62184370
+-0.76354930
+-0.76809846
+-0.19903398
+0.53504658
+0.68142712
+-0.28682375
+-0.56584114
+-0.42806929
+-0.35461450
+-0.35991436
+0.98258209
+-0.82260424
+-0.33019590
+-0.63204709
+-0.61006039
+0.17680037
+-0.48989844
+-0.83848876
+0.34400392
+-0.70180082
+0.90882301
+0.83920777
+0.69028628
+-0.85437910
+-0.39478868
+-0.79304118
+-0.51343912
+-0.99299758
+0.60595083
+0.32897961
+-0.06640124
+-0.05526543
+-0.22217548
+-0.48358494
+0.24527454
+0.88442469
+0.94122148
+-0.04425055
+0.33271039
+-0.21499074
+0.22239661
+0.17187881
+0.83683658
+0.81634521
+0.07098091
+0.94314206
+0.92045748
+-0.59251842
+-0.58716983
+0.65099871
+0.00332832
+0.24224460
+-0.56231487
+-0.00335383
+-0.13733351
+-0.78810827
+0.97259712
+0.46092677
+0.00440407
+-0.28964293
+-0.03942841
+0.01263988
+0.36004817
+0.65846992
+-0.51268142
+-0.31493956
+0.07209301
+-0.92553097
+0.94691133
+-0.75959851
+-0.14507878
+0.63002324
+-0.53201297
+-0.83425085
+0.94281662
+0.53858006
+-0.59880698
+0.51726949
+-0.55024490
+-0.97026525
+0.51655436
+0.27282882
+-0.65471205
+0.39649177
+-0.74448061
+0.34852886
+0.87597334
+-0.52264509
+0.14026690
+0.29797697
+0.90667105
+-0.23872918
+0.13135111
+0.94197154
+0.03692794
+-0.83574156
+-0.81850368
+-0.60584188
+0.43016195
+0.85779130
+0.37181699
+-0.31273782
+0.94950736
+0.27108276
+-0.61837530
+-0.77120446
+-0.86603527
+-0.65794173
+-0.58284932
+0.18515134
+-0.59190109
+-0.69400552
+-0.72996420
+-0.91025047
+-0.01889479
+-0.82575208
+0.09785366
+-0.88540317
+0.74519742
+-0.47935808
+-0.77571318
+-0.88916049
+0.84415531
+0.90036142
+0.52383208
+0.72643065
+-0.06144643
+0.50899327
+-0.31456149
+0.78706515
+-0.47390205
+-0.81544869
+0.07693040
+-0.16890919
+-0.37263906
+0.18589473
+0.12800300
+0.28576446
+0.62902975
+0.82706559
+-0.35669565
+-0.96087241
+0.69164705
+-0.36219507
+0.04456365
+-0.72003227
+-0.96020439
+-0.22558963
+-0.21197218
+-0.07671225
+-0.95759212
+0.25139380
+0.65719485
+0.85386109
+0.16956758
+-0.14542902
+-0.27355796
+-0.06403697
+0.37951040
+0.15519440
+0.21706343
+-0.75197689
+-0.63715100
+0.43969297
+-0.39421093
+0.25188613
+0.12705314
+0.96384859
+-0.64831695
+0.79936624
+0.55410218
+-0.34079486
+-0.44404161
+0.82460022
+-0.18341810
+0.47903669
+0.29012012
+-0.77640447
+0.64332032
+0.56527758
+-0.52511466
+0.02960908
+0.95820892
+0.61159027
+0.51342797
+-0.66648510
+-0.94299287
+-0.28041255
+0.39103234
+0.04529691
+0.33109796
+-0.44569951
+-0.08565402
+-0.65223521
+0.38007998
+0.19218826
+-0.12469351
+0.06830847
+0.87108815
+0.53226840
+-0.32952219
+0.86868060
+0.25737774
+0.79910660
+-0.75767455
+-0.45104516
+0.86717618
+-0.83822492
+-0.52292335
+0.56092560
+-0.85787651
+0.22227955
+0.00585377
+0.98203826
+0.19152522
+0.89617777
+-0.99262803
+-0.87629079
+0.63415027
+-0.86992529
+0.54605889
+-0.94564365
+-0.49421591
+-0.07276422
+0.98389959
+-0.23665136
+-0.97032156
+0.43613684
+0.83115923
+0.45741212
+-0.02506530
+-0.14934790
+0.38342619
+0.54279089
+0.95651877
+0.48031867
+0.01324368
+-0.94890984
+-0.11405849
+0.51962912
+0.26319742
+-0.73096743
+-0.82885809
+-0.05732083
+0.52717793
+0.68901145
+-0.39048558
+-0.42613715
+0.75603986
+-0.06874633
+-0.63071632
+-0.08800364
+-0.34601641
+-0.49112439
+-0.11162072
+-0.02062327
+-0.49353892
+-0.91890280
+-0.64553654
+0.35667694
+0.86904824
+-0.33382028
+0.95626521
+0.13225865
+0.92121589
+-0.47863030
+-0.18342066
+-0.40412194
+-0.48754895
+-0.15882832
+0.17786610
+0.64723492
+-0.44698250
+-0.52395570
+-0.88839599
+0.19923818
+0.52138424
+0.33605409
+0.47548234
+-0.68936446
+0.73052645
+0.78002250
+0.67174757
+-0.85881171
+-0.96122379
+0.05306947
+-0.27237272
+-0.42212331
+0.70474601
+0.77190983
+-0.28304460
+0.30972396
+-0.62370164
+-0.07416993
+0.78658601
+0.77712440
+0.13992319
+0.91419923
+-0.46921259
+-0.57239411
+-0.77880558
+-0.43583896
+0.11435610
+0.04922531
+-0.90190972
+0.67751643
+-0.95453567
+0.53968998
+0.89623678
+-0.28824045
+-0.56915227
+-0.54871198
+-0.72141716
+0.74253590
+-0.05418347
+-0.19656049
+0.32908784
+0.33053687
+-0.28673319
+-0.10767531
+-0.29281611
+0.26982198
+-0.55018504
+0.87043131
+-0.98159249
+0.71874324
+-0.31110397
+-0.33896026
+0.27345849
+-1.00763398
+-0.49750482
+-0.19706461
+0.04596244
+0.30576957
+0.79168943
+0.06655396
+0.33561667
+0.41059475
+0.75005802
+0.85259513
+0.53933040
+0.88726178
+-0.07673650
+0.45083655
+0.45448800
+-0.90956569
+-0.35553170
+-0.80420228
+0.70244620
+-0.61050881
+0.59213204
+-0.53927186
+-0.75363239
+-0.98112661
+0.97600792
+-0.33147704
+-0.64049845
+0.93269922
+0.53039995
+-0.10120793
+-0.40066368
+0.93981522
+0.81852137
+0.26844328
+-0.50425890
+-0.37174931
+0.91105392
+0.03220531
+0.11258887
+-0.31190713
+0.06543469
+0.68770925
+-0.59346629
+-0.37964460
+-0.62837911
+-0.72383333
+0.05464112
+0.26865586
+0.35524646
+0.52402936
+0.93516570
+-0.23036842
+-0.31681308
+0.59674274
+0.45537990
+-0.84897380
+0.17867667
+0.55201043
+0.51957562
+-0.30565994
+0.55351696
+0.04113738
+0.51114307
+0.01724453
+-0.41109736
+0.25228877
+-0.00622585
+-0.33270391
+0.99303940
+-0.44063435
+0.18595971
+0.32525763
+-0.45953085
+-0.75615622
+-0.96670397
+0.28591019
+0.90822393
+0.83621481
+-0.37153029
+0.44799253
+-0.39875160
+0.78278832
+0.17400732
+-0.21460606
+0.13479613
+0.80961768
+-0.90160534
+-0.11798430
+-0.74749568
+-0.91899380
+-0.30449388
+0.87812572
+0.86622680
+-0.72959818
+0.82898011
+-0.55301250
+-0.86029386
+-0.21429700
+-0.13674622
+0.57674977
+-0.06204858
+0.91425275
+-0.66258518
+0.32835393
+1.01429479
+0.52573813
+-0.60816720
+0.30297275
+-0.37455338
+-0.02415793
+-0.41332090
+-0.06589153
+-0.49888939
+0.49415213
+-0.06705706
+-0.85599090
+-0.70325702
+-0.10739475
+-0.50795577
+0.54539114
+-0.54328673
+-0.58784540
+0.49167841
+0.69420540
+0.41547229
+-0.93931070
+0.46865642
+0.10337439
+-0.90132762
+0.96288066
+0.53581647
+0.54761043
+0.72031175
+-0.36218290
+0.24215474
+-0.43496298
+-0.51347191
+-0.53780143
+0.42306379
+0.75159880
+0.64673762
+0.68710839
+0.90283854
+0.05006362
+0.41448887
+0.01474254
+-0.70676979
+0.67553284
+-0.52246123
+0.23601590
+0.87126404
+-0.92833040
+0.07936911
+0.88751283
+-0.32774491
+-0.36209951
+-0.51466395
+0.74548800
+0.83313357
+-0.19882240
+0.72602797
+0.41628354
+0.41882124
+0.24035271
+0.13698947
+-0.43826758
+-0.58076888
+0.67675448
+-0.88914696
+0.18615683
+-0.29030526
+-0.32461541
+0.46208360
+-0.35813935
+0.62571233
+-0.76344191
+-0.64853574
+0.26805807
+-0.73043845
+0.59097473
+-0.47627688
+0.06754160
+-0.69257060
+0.57004060
+-0.12618002
+0.21549232
+-0.24627229
+-0.66095087
+-0.52149513
+0.41670113
+0.81974946
+-0.43920683
+0.73705787
+-0.64345754
+0.61497197
+0.04675728
+0.45837078
+-0.92000171
+-0.22698494
+-0.74388762
+0.93779300
+1.02969434
+-0.84584650
+0.16557061
+0.55546918
+0.54304392
+-0.18905281
+-0.37122307
+0.86345649
+0.12427543
+0.11909293
+0.08589596
+-0.46110430
+-0.91355828
+-0.07901350
+0.45311103
+0.12028376
+-0.80241591
+-0.17214093
+-0.35935208
+-0.28627784
+-0.95582254
+0.40490384
+-0.23802317
+0.27071616
+0.57355502
+-0.56078710
+0.93501365
+0.41913705
+-0.73527683
+-0.98854521
+0.69416541
+0.91192386
+-0.44071285
+-0.44921918
+-0.78267411
+-0.33416458
+0.72674196
+0.10164870
+0.42182332
+0.39224657
+-0.14054745
+-0.06413993
+-0.19334313
+0.12087687
+-0.64814648
+0.53432913
+0.84392955
+-0.33727059
+-0.28411541
+-0.92025886
+0.64542240
+0.94820329
+0.32812913
+-0.55376646
+0.79072621
+0.55434002
+0.54612791
+0.54085720
+-0.96054920
+0.40992636
+-0.91224810
+-0.85183822
+0.75480293
+-0.66139260
+-0.20528665
+0.05137552
+0.81861005
+-0.75866889
+-0.75643535
+0.86185722
+-0.91376045
+0.62591737
+0.32563808
+0.45135265
+0.69466362
+0.62815451
+-0.60032995
+0.52214437
+-0.47708008
+-0.79798073
+-0.34591823
+0.10609183
+0.01804803
+-0.37754970
+0.70677181
+-0.09194896
+0.71853771
+0.77605895
+-0.14526761
+-0.40310101
+-0.13396172
+0.31174926
+0.66510711
+-0.56175340
+0.12504438
+0.28731703
+-0.09500867
+-0.13621454
+0.92421508
+-0.38731175
+-0.19272307
+-0.90144396
+0.87581757
+0.90485638
+0.72242047
+0.86770605
+-0.55365814
+-0.52120748
+0.06697272
+0.28399676
+0.54697514
+-0.94170396
+0.57234639
+0.67418245
+-0.37675328
+0.84755652
+0.93735936
+0.48138366
+-0.02404659
+0.06808299
+-0.64763709
+-0.40962027
+-0.48654751
+-0.21167123
+-0.61727265
+-0.15433373
+-0.11112745
+0.67506490
+-0.23078870
+0.88023473
+-0.56592292
+-0.27016874
+0.18132345
+-0.78685639
+0.86491073
+-0.26473477
+0.18314248
+-0.03991872
+0.67808033
+0.21155049
+-0.03807250
+-0.22539862
+-0.50621243
+0.60805933
+0.10621055
+0.23379996
+-0.79829679
+0.02446000
+-0.51099276
+-0.33014862
+-0.71704240
+0.67038383
+0.88609829
+-0.17014103
+0.94119681
+0.94798099
+0.24654317
+0.90925697
+-0.46935834
+-0.49218507
+0.54379763
+-0.91725498
+0.58565837
+-0.96625130
+-0.31246497
+-0.60726026
+0.43211555
+0.95055186
+0.27395019
+-0.80881144
+0.08492872
+1.00831518
+-0.58590157
+0.87358951
+-0.13313399
+-0.56243078
+0.48905631
+-0.68934056
+0.80208050
+-0.83622995
+-0.39248993
+0.38541040
+-0.56505023
+-0.12482003
+0.04208802
+0.72573599
+0.59923151
+0.56609252
+0.98846578
+-0.67944527
+-0.27890008
+-0.59053427
+0.54413436
+0.47836757
+-0.41327324
+0.10397866
+-0.93578036
+0.61002627
+-0.02861460
+0.77914954
+0.75272683
+-0.15261893
+0.44069252
+0.11389413
+-0.20238992
+0.38629264
+-0.60880841
+0.63755008
+0.00925046
+-0.33567012
+0.26299527
+0.44426455
+0.46695120
+-0.29991656
+-0.49762383
+0.94195821
+-0.40071173
+-0.75019148
+-0.82520148
+-0.28118771
+-0.22566671
+-0.83808855
+-0.65180389
+-0.13722576
+0.64027050
+0.26622988
+-0.39263442
+-0.03261378
+-0.85456464
+0.70935195
+0.38523153
+0.00357298
+-0.60106361
+-0.65011383
+1.01729071
+-0.41355431
+0.36232423
+0.68293795
+0.25108954
+-0.80289662
+-0.83706739
+-0.96461283
+0.62282555
+0.77033034
+0.39858924
+0.96429692
+0.53245794
+-0.14019971
+0.98207653
+0.19912240
+0.38194610
+-0.44758275
+-0.37121953
+-0.68550390
+-0.27228962
+-0.32783796
+0.22769298
+-0.61468289
+0.70281480
+0.13566741
+0.25517279
+-0.80481649
+0.34922067
+-0.81304385
+0.72219843
+0.04988636
+-0.66010317
+0.72616343
+0.15429247
+0.99180925
+-0.88935192
+-0.50466276
+0.02085887
+-0.10962720
+-0.52658133
+0.65304150
+-0.99198902
+0.35253991
+-0.40971189
+0.16071721
+-0.99172891
+0.17307815
+0.52645385
+0.74346153
+-0.12038485
+-0.05769800
+0.57312408
+0.69455438
+0.42103016
+-0.65280206
+-0.26253731
+0.58833973
+-0.70804474
+0.74722165
+0.27044275
+0.64896078
+0.80082567
+-0.17387018
+-0.90211333
+-0.41072115
+-0.37332559
+0.86329808
+-0.98084994
+0.61787953
+0.98205772
+0.71080755
+-0.51400004
+-0.21320691
+-0.02225832
+-0.28958898
+-0.64822098
+-0.69574957
+-0.15640240
+-0.49283761
+0.25481075
+-0.14303465
+1.00699134
+-0.94279700
+0.63674116
+0.04638111
+0.36571085
+-0.46713570
+0.82078297
+-0.14344697
+0.67758638
+-0.75541963
+-0.86206303
+-0.32283128
+-0.26586489
+0.62805959
+-0.00111419
+0.94675662
+0.02629685
+0.69622640
+-0.32269734
+0.02511879
+-0.03294918
+-0.87550051
+0.83859182
+-0.39771673
+-0.91735767
+0.08578176
+0.60714426
+0.77647398
+-0.85992938
+-0.19013748
+0.99504136
+-0.57243287
+0.18154675
+0.57417831
+-0.19830330
+-0.84694598
+0.37177060
+-0.37538614
+-0.34749785
+-0.68317077
+-0.94098987
+0.25670405
+-0.69809204
+0.07172941
+0.76835149
+0.84917834
+0.61316727
+-0.47656515
+-0.42451051
+-0.89106148
+0.83203079
+-0.37282764
+0.03809509
+-0.11966455
+-0.42951421
+0.76139996
+0.52678720
+0.50308990
+-0.59094015
+0.46356191
+-0.66125304
+-0.12802349
+-0.63930148
+0.18151975
+-0.68078775
+0.63089118
+-0.72209795
+0.57643068
+-0.77801526
+0.52232672
+0.12917781
+0.54835917
+0.57815611
+0.72509861
+-0.10921655
+0.29487798
+0.24985699
+-0.15772164
+0.99411511
+-0.68146305
+0.61150062
+0.76064433
+0.44313776
+-0.84100987
+-0.23876612
+-0.57449749
+0.82428272
+-0.66785800
+0.76174116
+-0.14660399
+0.01291215
+-0.67176315
+0.06682408
+-0.38705504
+-0.98006857
+-0.43272012
+0.27043891
+-0.36426598
+0.40987265
+-0.26619911
+-0.32251126
+-0.33665377
+-0.32885599
+0.72882068
+0.40160239
+-0.97123656
+0.91739476
+0.92866480
+0.58656299
+-0.70951021
+-0.90115211
+-0.32621199
+0.06644630
+0.41093528
+-0.83573192
+-0.41672933
+-0.74672899
+0.07705545
+0.23749995
+-0.72749385
+0.50772357
+-0.25547159
+0.04991758
+-0.42694366
+-0.49755228
+0.37779427
+-0.17625934
+0.79048705
+0.43028390
+0.11993718
+-0.04544979
+-0.94899236
+0.20859408
+-0.10834610
+0.35287261
+0.10507941
+-0.48257273
+0.49316955
+-0.21304911
+0.68867683
+-0.19055670
+-0.12332964
+0.51741636
+-0.57021761
+-0.18860900
+0.77317548
+-0.46500927
+-0.05130923
+0.67165875
+-0.00233042
+0.36573553
+-0.75081562
+-0.69956452
+-0.84498848
+0.33930182
+0.04800808
+0.66603196
+-0.82201646
+-0.07229501
+-0.57124525
+0.41162825
+0.30740762
+-0.85975312
+-0.56621477
+0.43404436
+0.86430299
+-0.59606934
+-0.54167372
+-0.00823885
+-0.08199376
+-0.75485088
+0.81469548
+0.50702059
+-0.81465439
+-0.98517800
+-0.05391824
+-0.91178571
+0.05048072
+-0.86178423
+-0.94309963
+0.19833624
+0.20344937
+0.82869864
+0.97393668
+-0.02422237
+-0.41289955
+-0.56271806
+0.57852292
+-0.58313337
+-0.54876196
+0.41670763
+0.07988811
+0.81834126
+0.90167105
+-0.85067120
+0.97939193
+-0.52638093
+0.58776021
+-0.29781032
+-0.36915773
+0.96334934
+0.06669140
+-0.96523432
+-0.67002222
+-0.27649009
+0.52428949
+-0.19651514
+0.72843802
+0.63151872
+0.12667370
+-0.08087713
+0.23214090
+0.10798395
+-0.75532351
+-0.78091981
+-0.27019674
+-0.27884483
+-0.81124189
+0.86884987
+0.74491370
+0.98447478
+-0.47722089
+-0.67840040
+-0.07422584
+0.50518918
+-0.72433943
+-0.43533057
+0.33444822
+0.37590837
+-0.91213419
+0.77350795
+-0.27706879
+0.16008568
+-0.35256851
+0.58661795
+0.92339921
+-0.46371007
+0.07221723
+-0.04502213
+0.08720696
+-0.59461507
+-0.99590840
+0.72255027
+-0.47844654
+0.94430411
+-0.24501109
+-0.11095619
+-0.24197716
+-0.39635026
+0.49172163
+0.76604509
+0.15559316
+-0.47058588
+-0.18029064
+0.34297347
+0.21137822
+0.35753405
+0.19745517
+0.25578606
+-0.42078424
+0.05679703
+-0.04561913
+0.97238016
+0.49483871
+0.74463391
+-0.43397373
+-0.85816643
+0.82160199
+-0.91513505
+0.49093831
+-0.00361019
+0.92665970
+0.63815522
+0.24134743
+-0.25782156
+0.45588255
+-0.45367765
+0.74022150
+-0.37898260
+-0.41165274
+0.03491020
+-0.42030030
+0.29624319
+0.56587780
+0.02360392
+0.52646720
+0.96497726
+0.19313478
+0.16995907
+-0.64865893
+0.75304389
+0.03997982
+0.95113063
+-0.41145504
+0.78858614
+-0.51176566
+-0.23371571
+0.64458346
+-0.00761324
+-0.38884294
+-0.57672796
+-0.84743224
+0.67270255
+-0.40676475
+-0.83284217
+-0.25420201
+-0.83452348
+-0.36917800
+-0.10795575
+-0.88443404
+0.55164051
+-0.18779689
+0.58251202
+-0.14259869
+0.24789989
+0.95604300
+0.47966766
+0.39496148
+0.03521943
+-0.34914118
+-0.99757610
+0.78757930
+0.94971871
+-0.33917737
+-0.89547674
+0.31089687
+0.24112809
+-0.74411801
+-0.52380151
+0.31657517
+-0.74122176
+-0.45116413
+-0.52040488
+-0.56646511
+-0.13148558
+0.24593425
+0.92503321
+0.38092482
+0.53563559
+0.57106578
+-0.43306839
+0.78215146
+-0.87216991
+-0.88256019
+-0.21134794
+0.65597165
+-0.18637002
+0.39400995
+-0.74733466
+0.42411244
+-0.16736144
+-0.63421017
+0.40337372
+0.24237037
+0.29493713
+0.66378689
+0.64580667
+-0.23074472
+-0.76453371
+-0.98647264
+-0.90770666
+-0.23244387
+-0.21558881
+0.51011086
+-0.20554489
+-0.07874131
+0.92122638
+-0.85023780
+-0.98904843
+-0.18938971
+-0.80079356
+-0.68240076
+-0.65569547
+-0.23841685
+-0.50302851
+-0.57905808
+0.20591271
+-0.42683101
+0.20719504
+0.35296226
+-0.54532087
+-0.97100913
+-0.20576763
+-0.14738500
+-0.35082436
+0.82230043
+-0.23946434
+-0.73921570
+0.65695345
+0.40220463
+0.99678159
+-0.56494373
+0.04461026
+-0.66894865
+0.47089541
+0.67082405
+0.61095715
+-0.78076443
+0.38513207
+-0.70704561
+-0.85485294
+-0.53918657
+0.52630234
+-0.14048588
+-0.22417963
+0.21350062
+-0.96937461
+0.34788024
+0.30371976
+0.10311294
+0.00282240
+-0.52884266
+0.18392158
+0.34500957
+-0.53646389
+0.50846684
+-0.08436257
+0.91688430
+-0.77243221
+0.49190044
+0.29134023
+0.06446564
+0.42522061
+-0.25671953
+-0.49517214
+0.34886718
+0.94792497
+0.55476344
+-0.62154552
+0.07254803
+0.06359673
+0.51784539
+0.59744453
+0.88570249
+-0.46580094
+-0.74206528
+0.33314157
+-0.69293767
+0.95375443
+-0.36253732
+-0.79890552
+0.32004976
+0.25585544
+0.56966209
+0.23218250
+0.25509632
+-0.76895002
+0.33857119
+0.77761722
+0.60920012
+-0.37794650
+0.20878601
+-0.51771197
+0.81874087
+-0.66558153
+-0.52316611
+0.01986491
+0.15164746
+-0.53970102
+0.69335753
+-0.21737516
+0.80924463
+-0.86808541
+0.29037632
+-0.33744099
+0.20341508
+-0.94471256
+-0.34022321
+0.11858961
+0.20805927
+0.08346748
+0.59444487
+-0.01060932
+-0.01250875
+0.90220723
+0.16933327
+0.99476465
+0.80640258
+-0.42323463
+-0.31991136
+0.37602773
+-0.74299566
+0.32587775
+-0.07940394
+-0.57669813
+0.74586457
+0.28308852
+-0.36559124
+-0.30001070
+-0.56539084
+-0.71036818
+0.85827209
+0.82521581
+0.17492414
+-0.64116045
+0.62688038
+0.75759305
+-0.01206790
+-0.70833810
+0.69461592
+0.12865611
+0.07612568
+-0.71261740
+-0.98282774
+0.64852611
+0.32486386
+0.97675639
+0.64564094
+-0.41490395
+0.69902603
+-0.94828226
+0.96853360
+0.19269257
+0.97177749
+-0.96170330
+-0.69821442
+0.59710846
+0.32792571
+0.81102898
+0.01872468
+-0.44130432
+0.95782512
+-0.64957620
+-0.27315164
+-0.62801355
+0.75804076
+-0.44331721
+-0.73066248
+-0.78209764
+-0.27587912
+0.87919967
+0.30997337
+-0.04608683
+-0.47379221
+-0.84754376
+-0.44332588
+0.70361648
+-0.32208365
+0.45545898
+-0.15587836
+0.41845544
+-0.16582535
+-0.85480707
+0.44800379
+0.64951976
+0.40602556
+-0.74681670
+0.45982555
+-0.99240772
+-0.55221128
+0.37931780
+-0.11457162
+-0.91748310
+0.73794626
+0.54745772
+0.96231364
+-0.55342423
+0.67486032
+0.78350840
+-0.44690523
+0.74084659
+-0.93874802
+0.81147340
+0.94278382
+-0.92975369
+-0.54343167
+0.65804611
+-0.41868632
+0.17403342
+-0.96448047
+0.82276316
+0.80072530
+0.83890960
+-0.43303131
+0.15558745
+0.11486576
+-0.48524904
+-0.73807225
+0.63535792
+0.89606735
+-0.70044515
+-0.66002360
+0.66043424
+-0.05829929
+-0.03184487
+-0.51583274
+0.16835159
+0.82058692
+-0.94947267
+0.02662770
+-0.28894732
+0.44862689
+0.65041328
+0.50527765
+0.34168607
+-0.02692338
+0.46885020
+0.68152329
+0.85956422
+-0.08732224
+1.00566760
+0.66270878
+-0.33999086
+-0.90694474
+0.11014035
+0.69588437
+0.31708594
+-0.85832433
+0.26224190
+-0.56127889
+0.95790974
+-0.58661349
+0.26930480
+-0.46101258
+0.89513955
+0.08461881
+-0.74199046
+0.88982844
+0.77413672
+0.03421259
+0.84236038
+-0.25754364
+0.47250368
+-0.09705660
+0.16241295
+-0.62654547
+0.13055977
+0.86663432
+0.47221336
+-0.98451806
+-0.30883460
+-0.04897862
+0.87450861
+0.92282698
+-0.44220015
+0.89570394
+0.25996734
+0.08556347
+0.24668645
+-0.59362873
+0.42717623
+0.32806940
+-0.90971742
+-0.21685904
+-0.66133708
+0.02047832
+-0.14815000
+-0.78366145
+0.26971973
+0.29149082
+-0.86190715
+-0.58516405
+0.61378720
+-0.80039284
+-0.53382865
+0.93673664
+-0.11367334
+-0.81768441
+-0.41329114
+-0.65699296
+-0.64237651
+-0.71691645
+-0.21922754
+-0.74967458
+0.29675686
+-0.56059535
+-0.49346496
+0.71240179
+0.20761026
+-0.15497787
+0.24499578
+-0.02461241
+0.64450334
+0.02701084
+-0.54409602
+-0.88950343
+0.13839975
+-0.72300378
+0.47479997
+-0.47679614
+0.35597061
+-0.71792967
+0.05102518
+0.29041885
+0.41849675
+0.25681357
+-0.28714519
+0.09564981
+-0.54389005
+-0.83550126
+0.99305665
+0.79571476
+-0.47792260
+0.39568256
+0.20276667
+-0.81286945
+0.60173040
+0.04356295
+-0.70522548
+-0.12450508
+0.41461313
+0.67022887
+-0.21349666
+-0.01412473
+0.39502531
+-0.52116504
+0.36171399
+-0.78374441
+0.36370408
+0.68762348
+-0.35946900
+-0.50712422
+0.08718529
+-0.70193168
+-0.60676667
+-0.06391167
+-0.19892516
+-0.78693349
+0.81671479
+-0.54136630
+-0.14271495
+-0.82579057
+-0.64417344
+-0.55050160
+0.46717713
+-0.89292203
+-0.25898202
+0.19705395
+-0.39750158
+0.88743046
+0.60808009
+0.16955175
+0.32287432
+0.64921844
+0.65982091
+0.99417665
+-0.97170927
+-0.56367820
+-0.22567294
+-0.85998905
+-0.60072403
+0.32617398
+0.40891837
+-0.71812647
+-0.75365615
+1.02402246
+0.16988943
+-0.68059195
+0.68192971
+-0.30064599
+-0.62821967
+-0.82023483
+0.65664016
+-0.96290741
+-0.37931937
+-0.75070728
+0.00316919
+-0.42851615
+0.31979520
+-0.51405656
+-0.85850323
+-0.82678082
+-0.86911129
+-0.41863288
+-0.73629988
+-0.27523399
+-0.89528166
+0.27204945
+0.52887679
+-0.98129337
+-0.81499000
+-0.76530974
+-0.40436241
+-0.38493414
+0.36898005
+0.31679441
+-0.98913831
+-0.67400570
+0.66329306
+0.12837338
+-0.02739383
+-0.41092688
+0.65662041
+-0.40459233
+-0.05800126
+-0.57534418
+0.25561428
+0.36391652
+-0.39365433
+0.43484584
+0.00715555
+0.22863225
+0.65605390
+-0.13033584
+0.22554567
+0.71484038
+-0.96797279
+-0.49876518
+0.07813283
+0.87482580
+-0.26369342
+0.49799166
+0.17899854
+-0.88725004
+-0.97100095
+0.72213065
+-0.98065592
+-0.87719278
+-0.41109317
+-0.15467131
+-0.70670457
+-0.66679644
+0.41811097
+-0.23732617
+-0.96831265
+-0.10204209
+-0.86335888
+-0.16294326
+0.03151135
+0.91289739
+-0.67294826
+-0.47360626
+-0.40695356
+-0.39091161
+-0.21097285
+-0.72183068
+0.36712855
+0.70180458
+0.09298949
+-0.71138258
+0.11149820
+-0.78184831
+-0.69898698
+0.90549272
+-0.26317544
+-0.14063559
+-0.52529053
+-0.13049699
+-0.08530947
+0.41346803
+-0.16796323
+-0.70927862
+0.12683372
+-0.06187670
+-0.46096848
+-0.46414631
+0.37401758
+-0.16718512
+0.95456920
+-0.07383240
+-0.12007825
+-0.89367597
+-0.05159031
+-0.43844827
+0.69477656
+-0.12459565
+-0.85685266
+0.49811422
+0.58560279
+-0.91495886
+0.33796572
+-0.56459863
+-0.12959817
+0.38552375
+-0.84997504
+0.11361325
+-1.00165645
+0.06893541
+-0.75748700
+0.28067180
+-0.75924128
+0.52109849
+0.69275634
+0.77338803
+0.61796299
+0.79306937
+-0.07168476
+0.44916523
+-0.37078180
+-0.33261734
+-0.39300015
+0.20657223
+-0.95922007
+0.72209750
+-0.50348031
+0.07785400
+-0.15492300
+0.30072819
+0.07691210
+-0.28387739
+0.19982866
+0.09893958
+-0.44455734
+0.26328149
+-0.47618719
+-0.52576196
+-0.69617678
+-0.40933893
+-0.13873226
+-0.64206413
+0.85123636
+-0.80292127
+0.72898701
+0.53725298
+-0.16464557
+-0.35871460
+0.05425110
+0.77044980
+-0.93054442
+0.14684021
+-0.12237686
+-0.11748729
+0.97904917
+0.38111341
+0.94173684
+0.70913166
+-0.61554491
+0.75189500
+0.13559630
+-0.92564865
+-0.50135211
+-0.13015294
+-0.40691609
+-0.53105677
+0.23345338
+-0.36045881
+0.60131140
+-1.01127968
+-0.02782787
+-0.90867834
+-0.56810242
+0.77290831
+0.82965705
+-0.03327322
+0.89727581
+0.33092880
+-0.07558514
+-0.52917266
+-0.13958682
+0.78711806
+-0.90701453
+-0.04166871
+0.97611189
+-0.24587128
+-0.33304788
+0.51389967
+-0.19879583
+-0.34578572
+0.16891424
+-0.09973114
+0.64369106
+-0.09060733
+0.98009884
+0.16271515
+-0.58795597
+0.13502659
+0.49541547
+0.62392312
+0.18064172
+-0.65919913
+0.61824475
+0.88663587
+-0.79983904
+-0.18606693
+-0.62826090
+-0.33992622
+0.63635657
+0.36394738
+-0.42152925
+-0.40095557
+0.57802689
+-0.93559901
+0.81988243
+0.21568904
+0.17466980
+-0.68381741
+0.77824677
+0.62725137
+-0.40505896
+0.38258510
+0.93994363
+0.86574141
+0.34251874
+0.08260748
+-0.16229817
+0.05046758
+0.02144128
+-0.63298323
+-0.58248120
+-0.81786517
+-0.50584890
+-0.97281622
+-0.26907378
+-0.21041480
+0.27934934
+-0.15315494
+0.68873809
+-0.51114175
+-0.04703668
+-0.64251257
+-0.72385236
+-0.22374608
+-0.02113490
+0.39101703
+0.93755850
+-0.14496287
+0.21673710
+0.18478901
+-0.42403239
+-0.00255735
+-0.91744749
+0.10725831
+0.43984455
+0.36992132
+-0.41788292
+-0.91601488
+-0.92668675
+-0.09416752
+0.84478730
+0.26858188
+0.94811848
+0.56351518
+0.24866106
+0.73749682
+-0.64047313
+-0.19530795
+-0.72481973
+0.31480485
+-0.67819216
+-0.45034979
+0.25429318
+0.47812380
+0.64451480
+-0.35951189
+0.34715408
+-0.96023777
+-0.45396636
+-0.04736622
+0.31405789
+0.47383824
+0.73974143
+0.53966129
+-0.23125839
+-0.91902248
+-0.23198575
+-0.46655863
+-0.03379294
+0.83844485
+0.56651572
+0.33270603
+0.23500910
+-0.78965726
+-0.52869118
+-0.47959008
+-0.34863834
+-0.86268293
+0.67358295
+-0.05038990
+0.65239244
+0.80596420
+0.61575215
+-0.51354722
+0.04222912
+0.59141874
+-0.09280459
+0.87939749
+0.36407570
+-0.77253795
+-0.28211313
+0.49781360
+0.57502949
+0.06104625
+-0.13509476
+-0.53454992
+0.30514546
+-0.06766822
+0.48881344
+0.62139511
+0.54222763
+0.68646969
+-0.75819996
+0.78108383
+0.14653635
+0.07098925
+0.13172837
+-0.94332096
+-0.73654346
+-0.41087532
+-0.21796864
+-0.25950347
+-0.52857083
+0.21835710
+-0.41345459
+-0.35253507
+-0.23342418
+-0.33368459
+0.16995557
+-0.81540085
+0.87291634
+-0.97900138
+-0.16922581
+-0.08553627
+-0.84676504
+-0.98670638
+0.81370986
+-0.81632556
+-0.44809330
+-0.52414981
+-0.45296085
+-0.09681129
+0.33975339
+0.19626582
+0.04564130
+0.11962318
+-0.50289479
+0.86823153
+-0.88702779
+0.39034796
+0.92081857
+0.36717343
+-0.81156887
+0.77433479
+0.07841814
+-0.73041359
+-0.64190096
+-0.47869062
+-0.10226065
+-0.41902506
+-0.22493404
+-0.29098397
+0.55886078
+-0.50030601
+-0.29152441
+0.80713904
+0.10601187
+0.14854848
+0.63487756
+-0.71593586
+0.01597524
+0.96255410
+0.18462944
+-0.88323030
+0.58831513
+-0.55194169
+-0.32214367
+-0.51428568
+0.24328995
+0.74687266
+0.01303101
+0.70785689
+0.19375837
+0.66025972
+-0.89843203
+-0.10049814
+0.38326180
+-0.50612196
+0.83994806
+-0.72486576
+0.19981289
+-0.53344247
+-0.42446160
+0.84244287
+-0.77154364
+0.47552764
+0.56756318
+-0.75934087
+0.30092835
+0.81213927
+0.52400827
+0.01336670
+-0.00477690
+-0.10270089
+-0.76009625
+-0.89155717
+-0.75219192
+-0.22772801
+-0.08278340
+-0.67149264
+0.48656583
+0.89152765
+-0.19680518
+-0.42587370
+-0.77790657
+-0.05500823
+-0.24039215
+-0.55528405
+0.19997287
+-0.51263195
+0.19504917
+0.55514491
+-0.64356661
+-0.18899053
+-0.29213876
+-0.69875467
+-0.63052052
+-0.67525333
+-0.07988340
+0.27015841
+0.23314679
+-0.36663580
+-0.19566578
+0.51168215
+0.71112847
+-0.53382444
+-0.87643199
+-0.19073683
+0.45644629
+0.53129625
+0.60945463
+0.91939104
+-0.42526013
+0.23542953
+-0.04171193
+0.34148383
+0.71848524
+0.42203653
+0.90970564
+-0.17384696
+-0.87715383
+-0.47572035
+0.12113559
+0.93188250
+-0.31305879
+-0.25736445
+0.93682635
+-0.22631574
+-0.74934036
+-0.01525700
+0.60663950
+-0.88702806
+0.18828356
+0.82495940
+-0.39561450
+0.55443418
+-0.51196706
+-0.77932999
+-0.76278210
+0.64016962
+-0.96025338
+-0.92000367
+-0.99060402
+0.31281745
+0.47959018
+-0.55590010
+0.67954981
+-0.42092139
+0.30986154
+0.61697674
+-0.59714967
+0.35688794
+0.18139231
+0.90159965
+0.99740529
+0.22019672
+-0.40766966
+0.08098722
+0.13681388
+-0.01369143
+0.43162942
+-0.79124163
+0.82333779
+0.06923831
+0.05874419
+-0.05429196
+-0.96684575
+-0.10154772
+0.96311581
+-0.70867875
+-0.78498751
+0.99639106
+-0.29759210
+-0.92961939
+0.89812768
+0.82693577
+0.20508325
+-0.80565590
+-0.74028784
+0.16642618
+-0.35924679
+0.71966028
+-0.12481493
+0.09676039
+0.44370067
+0.18496156
+0.69496131
+0.66980517
+-0.43504810
+-0.97812970
+0.17170167
+-0.51201925
+0.15432715
+-0.03900754
+0.79658198
+-0.18238956
+0.23210883
+-0.27967769
+0.47028232
+0.83094704
+0.17891741
+0.17141509
+0.73049808
+0.69209588
+0.19414258
+0.10789788
+-0.57331550
+-0.01959074
+0.13740826
+0.81348991
+-0.11917889
+0.05697119
+-0.07395685
+-0.32703441
+-0.84808627
+0.02401686
+0.75134850
+-0.60249329
+0.10052085
+0.68298364
+-0.50669521
+-0.62050200
+-0.12549400
+0.43933010
+0.22814536
+0.12685513
+-0.64140362
+-0.52166194
+-0.74618891
+0.53730798
+-0.98549454
+-0.27842462
+0.36988688
+0.32710755
+0.72148442
+-0.82397486
+-0.25293958
+-0.52248439
+0.67682207
+0.83539259
+0.88207316
+-0.77824655
+0.45286381
+0.57995880
+0.74663007
+0.85121453
+0.85939264
+0.69346535
+0.96808004
+-0.37666088
+-0.11767793
+-0.52215388
+-0.35891372
+0.76051605
+-0.35318255
+-0.02470493
+-0.70258832
+0.50070643
+-0.67819536
+0.06364024
+0.45500481
+0.36274636
+0.32041991
+-0.19169235
+0.86591625
+0.02755928
+0.26159847
+0.72459495
+0.63907480
+-0.59287015
+0.90986991
+-0.71270826
+0.80184197
+0.92801905
+0.26264274
+-0.36853415
+-0.49896443
+-0.99215075
+0.57530296
+0.00763297
+-0.42633766
+0.61181414
+-0.64944473
+0.47507417
+-0.84309642
+0.49504817
+0.25834072
+-0.76856871
+-0.49140221
+0.24976826
+0.40438628
+0.17218471
+-0.46040666
+-0.89278103
+-0.09938711
+-0.65079170
+0.67574251
+0.75146854
+-0.56577966
+0.05974042
+-0.64897934
+-0.20047730
+-0.68442482
+0.40428507
+0.74058473
+0.57602251
+0.49954939
+0.34223104
+-0.74140903
+0.58633435
+0.76899529
+0.85947096
+-0.29822958
+-0.19772071
+-0.61092559
+0.96811545
+-0.26094818
+-0.23643631
+0.24973834
+0.74562442
+-0.09497744
+0.50598812
+0.94448078
+0.28867602
+-0.49140579
+0.36276984
+-0.11686254
+0.64869428
+0.03031158
+0.77535951
+-0.63165745
+-0.91630020
+0.72124302
+-0.18760026
+-0.77032487
+0.07932496
+0.23540676
+0.01974332
+0.85819376
+-0.48836279
+0.06946778
+-0.31252122
+-0.05978578
+-0.96546870
+0.32197309
+-0.79536968
+0.53876960
+-0.16067678
+-0.28973895
+0.44538307
+-0.50261444
+0.21164441
+0.02141428
+-0.33478624
+0.39306307
+0.23066711
+0.63568640
+0.81374311
+0.75771511
+-0.83586715
+-0.80099420
+-0.45031583
+-0.48889506
+0.46416450
+-0.07587284
+0.35701149
+0.01722783
+-0.55222111
+0.49830511
+0.85475413
+0.09984480
+-0.58466153
+-0.10317969
+-0.15391976
+-0.43509973
+-0.04132367
+-0.22646461
+0.12028728
+-0.63756463
+0.57386788
+1.00547008
+-0.40269426
+0.18030753
+-0.45690941
+-0.13837852
+0.31928500
+-0.30408182
+-0.05215842
+-0.53027098
+0.63604424
+-0.51844243
+-0.87136627
+0.22915474
+0.45128620
+-0.74198062
+0.36395208
+0.74420007
+0.41589262
+0.48892527
+0.65715346
+-0.99964017
+-0.60419011
+0.18324685
+-0.88392902
+-0.84156847
+-0.50771410
+-0.10477240
+0.91832550
+0.50332923
+-0.00368086
+0.46432562
+-0.65353707
+-0.01130187
+-0.72059697
+0.56567095
+0.57077980
+0.51616592
+-0.28012425
+-0.59475156
+0.01934274
+-0.15700041
+-0.42923134
+0.38431378
+1.07083374
+-0.11153436
+0.28340250
+0.79442671
+-0.64392379
+0.84324201
+-0.34706861
+-0.71228514
+0.82792056
+-0.10639313
+0.41478598
+-0.85664690
+-0.10518227
+-0.22144846
+-0.14594043
+-0.55553745
+-0.65139558
+0.91570088
+-0.82366406
+-0.65040732
+0.08961523
+-0.33045771
+-0.53954080
+-0.14307014
+0.50744863
+-0.62852899
+-0.84017267
+0.09582915
+0.76562458
+-0.41934033
+-0.65388248
+-0.77205998
+-0.09736269
+0.42011927
+0.21129626
+0.16905574
+0.35538193
+-1.03549397
+-0.75745895
+-0.88385986
+0.03146464
+-0.29370796
+-0.83889380
+-0.41639646
+-0.19784612
+-0.23716700
+-0.43188578
+0.01229417
+0.62782421
+-0.52682483
+-0.92928403
+0.06490232
+0.67660962
+0.16642445
+-0.87004698
+0.72930589
+0.96038867
+-0.14645908
+-0.63270888
+0.88268533
+-0.41427769
+0.03168406
+0.35236277
+0.29772749
+-0.26035120
+0.83588983
+-0.44018631
+0.54173179
+-0.42455013
+0.07409375
+-0.91799392
+-0.90870134
+-0.73424187
+0.22413830
+0.93332287
+-0.91409458
+0.22670185
+0.26783265
+0.67752364
+0.45163152
+0.25859655
+-0.45474875
+-0.75778841
+0.29866066
+-0.80471330
+-0.37920952
+-0.37880667
+0.31550492
+0.95100346
+-0.56120275
+-0.67905015
+-0.30958425
+0.33176395
+0.27342389
+-0.56840101
+0.73442478
+-0.28374017
+0.63110914
+0.18085338
+-0.24593123
+0.08839608
+-0.64096429
+-0.71661759
+0.24205134
+0.96869973
+0.32905141
+0.91999554
+-0.68765395
+0.00221181
+0.55898169
+-0.23856507
+-0.80687246
+0.91053458
+-0.07507606
+0.59580276
+-0.21252645
+0.90255018
+0.26844399
+0.46575806
+0.03628435
+0.22592270
+-0.70988257
+-0.95159506
+-0.41934660
+0.77388564
+-0.42886579
+0.26312079
+-0.95782572
+0.21402173
+0.41293855
+0.88037793
+-0.19343288
+-0.76605576
+0.30467106
+0.26839547
+-0.18924786
+-0.21744374
+-0.07148684
+0.15797419
+-0.64945465
+0.38155315
+-0.94226604
+0.89867502
+-0.06818682
+0.21905889
+-0.18299528
+0.36535694
+-0.60839472
+0.20499540
+0.02041009
+0.97400459
+-0.35567350
+-0.81751963
+-0.06070555
+-0.50457994
+-1.01082010
+-0.40239679
+-0.72471584
+-0.90092453
+0.31565713
+-0.53150895
+-0.17688742
+-0.75114710
+-0.13812081
+-0.83308827
+0.86869745
+-0.11286631
+-0.00877343
+0.70306666
+0.49554026
+-0.29891435
+0.80561127
+0.67941176
+0.62316187
+-0.93057914
+-0.91364514
+0.74828741
+-0.68630428
+0.93963321
+0.47342449
+0.75776287
+0.38804046
+-0.63624079
+0.44310073
+0.03341791
+0.12434171
+-0.39279979
+-0.06644927
+0.62753124
+-0.10548252
+0.74795143
+-0.32978068
+-0.70629257
+0.74743407
+0.74633287
+0.18596491
+0.33938763
+-0.94610142
+-0.21607428
+0.84738466
+0.68314729
+-0.69015135
+0.48910500
+0.85202345
+-0.40255513
+0.49666954
+0.42920265
+-0.56451473
+0.42119296
+-0.46599553
+0.53583293
+-0.26671515
+0.79924480
+0.84553109
+-0.53896080
+-0.53027059
+0.47357943
+0.43504959
+-0.55745298
+0.04530880
+0.56085512
+0.90718910
+0.05436596
+-0.08323083
+-0.28505003
+0.74839495
+-0.32492668
+0.51742192
+-0.99118127
+0.04428369
+-0.36026439
+0.98483987
+-0.12160985
+-0.53248924
+-0.55294352
+-0.87380139
+0.19024624
+0.73038130
+-0.35724779
+0.02344032
+0.35592460
+0.85993580
+-0.04737071
+0.81338120
+0.52383573
+-0.45080725
+-0.27702715
+0.89105722
+-0.09898629
+0.49714102
+0.32975066
+0.89653884
+0.16540770
+0.34322573
+0.38939745
+-0.32291218
+0.92116322
+-0.32874615
+-0.47593000
+0.27865426
+0.27960084
+-0.46212044
+0.87036900
+-0.54470513
+-0.87358632
+-0.10113988
+0.15612306
+0.12810134
+0.80865600
+0.70729701
+-0.67394981
+0.68042548
+0.02667930
+0.96670683
+0.89474467
+-0.86463021
+0.38047430
+0.21238533
+-0.67809586
+0.79001679
+0.79619254
+0.08208113
+0.29922936
+-0.34370898
+-0.50337521
+-0.81689782
+-0.88785205
+-0.67647227
+0.16355300
+0.46912521
+0.59723807
+0.60181670
+0.39964255
+-0.76275165
+0.46075652
+0.64290594
+-0.50633297
+0.60065341
+0.80059388
+0.64562177
+-0.15535032
+-0.02971969
+-0.39278825
+-0.38066156
+0.56933586
+0.92933096
+0.88095292
+0.69358723
+0.23618243
+-0.31795200
+0.84412544
+0.09203077
+-0.38487134
+0.22385768
+0.26950710
+-0.08427351
+-0.16929008
+-0.80570124
+-0.93683069
+0.25165173
+0.56954103
+-0.09089014
+0.30766237
+0.11022148
+-0.95497553
+0.69953668
+0.30876959
+-0.63254973
+-0.95628451
+0.44936876
+-0.85103587
+0.19860862
+0.05870910
+0.29238338
+-0.35634002
+-0.29465097
+-0.13339920
+0.91490670
+-0.55495867
+0.82368551
+0.42784782
+0.70484632
+0.83850769
+-0.10089342
+0.89124456
+0.34392557
+-0.77408107
+0.15024288
+-0.98571755
+0.61868850
+0.16810725
+-0.20184116
+0.24020762
+0.41101916
+0.05266078
+-0.98755670
+0.52436154
+0.40746435
+-0.51591651
+-0.63810907
+0.49650907
+-0.94622549
+-0.48183085
+0.04870609
+-0.60891784
+0.16688506
+0.68472098
+0.24308998
+0.53701902
+0.98856782
+0.50750166
+-0.45285485
+-0.31348435
+0.47085985
+-0.91521105
+-0.69167406
+0.17153147
+-0.29403226
+0.62749492
+-0.85520175
+-0.43454027
+-0.92825317
+-0.98002127
+-0.35331398
+0.50187569
+0.68298635
+-0.60510718
+-0.11491754
+-0.23689100
+-0.04826072
+-0.54661956
+0.49879958
+0.23877037
+0.81079527
+-0.29140615
+0.07388832
+-0.57891654
+0.10970433
+0.61310426
+0.58579978
+-0.91531789
+-0.09989149
+0.96203815
+0.20203720
+0.31797016
+0.62883321
+-0.23630506
+0.33645695
+0.42575226
+-0.82740590
+0.31950834
+-0.24182696
+-0.05665958
+0.36274224
+-0.71750089
+0.86691322
+-0.38500764
+-0.84854057
+0.99058500
+0.37756060
+-0.97357672
+-0.67526316
+0.96488005
+0.95742231
+-0.75020116
+0.97861497
+-0.65561548
+-0.29174845
+-0.80396784
+-0.12605711
+-0.42821574
+-0.26300809
+-0.67158951
+-0.28978083
+-0.00537842
+0.68505926
+0.75694048
+0.92608892
+-0.60640059
+-0.87601357
+-0.77305518
+0.20170759
+0.08252616
+0.08024537
+0.11947936
+0.32097731
+-0.61489794
+-0.06176119
+-0.75108072
+0.83771866
+-0.74971881
+0.26839280
+-0.59165095
+-0.05892440
+0.84243363
+-0.69829235
+-0.11815107
+0.00313176
+-0.89458167
+0.48202849
+-0.77168004
+-0.96061786
+-0.46333184
+0.32717024
+-0.78310971
+0.52603846
+-0.43797955
+0.48368903
+0.64930985
+-0.75049477
+-0.98224473
+-0.73256730
+-0.00239590
+0.65456061
+-0.54770745
+-0.06222093
+0.12671186
+-0.00534129
+0.46178083
+-0.45239128
+-0.93506963
+0.51214056
+-0.73842004
+-0.73058736
+-0.37113626
+0.06098296
+0.53469230
+0.64246896
+-0.75873750
+0.06605797
+0.00666588
+-0.96105482
+-0.12247035
+0.97143389
+-0.62770964
+0.23031824
+-0.68429806
+0.63370174
+-0.79537998
+0.07741560
+-0.32096538
+0.72409203
+-0.01782650
+-0.56130031
+-0.20072380
+0.43211169
+0.88314713
+-0.09100770
+0.70548690
+0.37805644
+0.65210652
+-0.85259046
+0.96466931
+0.17573136
+-0.71993609
+-0.71284714
+0.23268887
+0.82681042
+-0.28553478
+0.42409331
+-0.45752672
+-0.28166509
+0.87155148
+0.31665736
+-0.29827522
+-0.44770978
+0.19347809
+-0.80911652
+-0.66073329
+-0.67092608
+-0.84856532
+-0.13451845
+0.13211212
+-0.48418518
+-0.54712940
+0.66945268
+-0.39385919
+-0.64280902
+-0.18217381
+0.99050726
+0.93877475
+-0.10519936
+-0.61962258
+-0.04608033
+-0.33414417
+0.93723063
+-0.62417553
+-0.21829695
+0.98927710
+0.99270503
+-0.45859996
+0.30931372
+-0.12897682
+-0.15010367
+0.51653573
+0.98205392
+-0.89331275
+-0.58640826
+0.41012348
+-0.19630778
+0.40195526
+-0.76091433
+0.95220983
+-0.50437097
+-0.78575918
+0.16188232
+0.42772305
+0.60555148
+0.17840399
+-0.22514576
+-0.41356252
+0.16325605
+0.22494483
+0.70077368
+-0.45220223
+-0.44377204
+0.17931926
+-0.41262442
+-0.38212471
+-0.74917892
+0.96639467
+-0.09962332
+-0.31000644
+-0.81089525
+0.11789176
+0.08343847
+-0.22349542
+-0.13492799
+0.77851821
+0.83334041
+0.09381774
+0.86701429
+0.49947631
+-0.61818674
+-0.81487168
+-0.81087956
+0.48666251
+0.90698814
+-0.91608299
+-0.57985744
+0.63151705
+0.80075526
+0.61726284
+0.98136234
+-0.47030538
+-0.24408603
+-0.96073858
+-0.16479051
+0.65148318
+-0.29801160
+0.27447307
+-0.39251232
+0.06135678
+0.00866401
+0.98607183
+0.35764146
+0.21654594
+0.12303984
+-0.65861771
+-0.23744649
+-0.45520008
+-0.85802643
+0.31699359
+0.73550940
+-0.01583743
+-0.28145474
+0.64523518
+-0.16787475
+-0.46417123
+-0.78460655
+-0.72884265
+-0.00680906
+-0.15073979
+-0.58769912
+0.13843584
+-0.03413904
+-0.27817112
+-0.26300991
+-0.62811190
+0.60985637
+0.38651061
+0.60404468
+0.00858581
+0.52140033
+-0.28675693
+-0.78049605
+0.66087925
+0.05003631
+-0.46244025
+0.56387854
+-0.18297952
+-0.92169642
+0.98019850
+0.91324413
+-0.73664457
+0.64520621
+-0.94569883
+0.63769948
+0.83558583
+0.53687191
+-0.15484691
+-0.43022364
+-0.43208867
+0.40584028
+0.06311858
+0.12704325
+-0.66098356
+0.43299413
+-0.80251095
+-0.76836327
+0.66288996
+0.33103788
+-0.19415790
+-0.01305807
+-0.70998469
+-0.49532235
+-0.52120399
+0.69034886
+-0.08113056
+0.92147708
+0.64918435
+-0.57908958
+-0.64103141
+0.08459926
+-0.65742484
+-0.41776258
+0.79262888
+-0.71969533
+0.98095226
+0.16361582
+0.36598241
+-0.57654864
+-0.08422625
+-0.39893603
+-0.53499579
+-0.45692331
+0.28518891
+0.13198221
+-0.53596869
+-0.82161342
+0.71739185
+0.56077087
+0.30171430
+-0.97642835
+0.97329986
+-0.22848094
+-0.11960602
+0.76571059
+-0.83146551
+-0.39106137
+0.75419784
+-0.83159745
+-0.15112931
+-0.00289154
+-0.32870132
+-0.83855154
+-0.95044227
+-0.25612837
+0.01052558
+-0.30018258
+-0.83452311
+-0.41706538
+-0.44588697
+-0.31361175
+0.53728771
+-0.30495268
+0.66332173
+-0.56741482
+0.79650593
+-0.54528767
+-0.51777336
+-0.88463746
+0.14223599
+0.52440107
+0.02110982
+-0.92158408
+-0.68794885
+0.38593042
+-0.26122338
+-0.05365658
+0.75669956
+-0.12859154
+0.04259086
+-0.13458467
+0.94108224
+0.17164886
+-0.71938527
+0.76630020
+0.08045781
+0.85529697
+0.49569428
+0.88254285
+0.98987603
+0.76739025
+0.88438880
+0.96652114
+-0.58471993
+0.51837218
+0.11427796
+0.17596948
+0.29951203
+0.31012225
+0.40916204
+0.40125108
+-0.58933565
+0.36276722
+-0.77203245
+0.73619556
+0.84131312
+0.05812645
+-0.89586057
+-0.37069702
+0.87722456
+-0.60726535
+-0.27291191
+0.16133249
+-0.41989326
+-0.56484804
+0.39974642
+0.60575891
+-0.23310298
+-0.47988385
+0.87187362
+0.67341864
+0.25027192
+0.79290342
+-0.35969573
+-0.03857195
+-0.48859394
+-0.62860307
+-0.70579425
+0.73717344
+-0.64014232
+-0.50748414
+0.40752363
+-0.90513107
+-0.14752781
+-0.26720977
+0.91841459
+0.92369831
+-0.86254019
+0.72652781
+-0.27939874
+0.28285730
+-0.94545928
+-0.82543473
+0.03798282
+-0.92845897
+0.09464097
+-0.36276692
+0.54336524
+-0.34553522
+-0.64236698
+-0.46802002
+0.81799138
+-0.89753771
+-0.92243426
+-0.25678468
+-0.84144060
+0.31647134
+-0.80737217
+-0.75398678
+0.77421272
+-0.14348692
+-0.63874623
+-0.24502432
+0.59363019
+-0.17591381
+-0.23031849
+-0.16296017
+0.60363173
+0.87978709
+-0.46353167
+0.45529962
+-0.64528158
+0.98030961
+-0.26731896
+0.54443073
+0.10972607
+0.74339008
+0.46748662
+0.43199778
+0.81600273
+-0.59553188
+0.47331274
+0.74269938
+0.25695503
+-0.97108051
+0.23028624
+0.63671565
+0.17128289
+0.21910322
+0.90150833
+-0.73446438
+-0.58139378
+-0.93522661
+0.72398412
+-0.41661084
+-0.20972508
+-0.31590790
+0.08674419
+-0.50423154
+0.31054747
+-0.90333621
+0.38021350
+0.74201727
+-0.79824124
+-0.19237995
+-0.03626341
+-0.54711199
+-0.21478832
+-0.08737785
+-0.84717968
+-0.60709316
+0.08458841
+-0.26879346
+-0.63719830
+-0.24785912
+0.49149275
+0.10556102
+-0.06427842
+-0.13361555
+-0.00817823
+-0.69886857
+0.54191089
+-0.47445631
+-0.36573726
+-0.46630919
+0.28764176
+-0.67261723
+-0.52154022
+0.06179428
+-0.72621849
+0.07857275
+-0.28377926
+0.14313769
+0.58165348
+-0.09124088
+0.14363968
+-0.08296782
+0.98240960
+0.21581507
+-0.78591290
+-0.40788293
+0.00314367
+0.08199179
+0.05865312
+-0.43638015
+-0.36542296
+-0.76726818
+0.14872384
+0.63670170
+0.41624546
+0.48912668
+-0.63440302
+-0.34722430
+0.82413888
+-0.87938095
+0.64113307
+0.10692823
+-0.29326820
+0.68140745
+-0.62723154
+0.20229959
+0.54902506
+0.09207499
+-0.07165730
+-0.21914303
+-0.54556251
+-0.28510475
+0.07010889
+0.89686799
+0.03865826
+0.55305207
+0.90685856
+-0.20650542
+0.90848589
+-0.51485842
+-0.63968724
+-0.94789305
+0.12899697
+-0.44653088
+0.34726787
+-0.88414026
+0.40944064
+-0.36729717
+-0.60838637
+0.89049721
+0.43786919
+0.92534673
+-0.71285993
+0.14912260
+-0.26360707
+0.47313166
+-0.62952795
+0.42510518
+0.28216516
+-0.16954884
+-0.05491939
+0.60172442
+0.67693854
+0.95721844
+-0.91423654
+0.75748246
+0.77071230
+0.70039381
+-0.85452104
+-0.01131977
+0.43642233
+0.07385043
+0.79442750
+0.65363260
+0.24179388
+-0.14577670
+-0.85284579
+-0.43136877
+-0.91441212
+0.07908832
+-0.96032634
+-0.20438997
+-0.14799548
+0.03442993
+0.12931541
+-0.73962177
+-0.92546036
+0.68887358
+0.88151416
+-0.60887527
+0.21888885
+-0.62321779
+-0.28110683
+-0.69479801
+0.81671423
+0.86576334
+0.24610729
+-0.36125164
+-0.59005914
+-0.22041798
+0.89514487
+-0.52205546
+-0.15249902
+0.61324789
+-0.28467667
+0.31345691
+0.79702613
+0.56506340
+0.87026871
+0.68906206
+-0.18952194
+-0.83695604
+0.01834191
+0.20109066
+0.96271028
+0.67371837
+0.60009682
+0.60695683
+-0.32590867
+-0.22707985
+-0.68813468
+0.97011354
+-0.06726002
+-0.07643955
+-0.02848984
+0.73879244
+-0.70142179
+-0.97101953
+-0.68482701
+-0.49881648
+-0.22005062
+0.46800749
+0.31217067
+0.83832028
+-0.75381751
+-0.76756450
+-0.55785306
+-0.64343941
+0.25303073
+-0.37875626
+0.80770430
+-0.74129812
+0.77504707
+0.55671285
+0.29642359
+-0.10985057
+-0.94025618
+0.20091927
+-0.10354939
+-0.61534685
+0.65936792
+0.16728727
+-0.12960813
+-0.92548160
+0.84771493
+0.63608711
+0.44976541
+0.06466689
+0.36745039
+-0.77374737
+0.93806128
+-0.96001999
+-0.17690089
+-0.58966684
+0.69079159
+-0.42362117
+1.00735886
+-0.40294570
+-0.15910339
+0.83665856
+-0.00880200
+0.62956862
+-1.00792247
+0.95535215
+0.33207201
+-0.17228164
+-0.36512073
+0.54167975
+-0.20217733
+-0.03832252
+0.57505428
+-0.44695070
+-0.80236962
+-0.34897132
+0.24571434
+-0.51631132
+-0.37972503
+-0.42612218
+-0.57990088
+0.55651044
+0.83749352
+0.53866864
+-0.35222689
+0.11768169
+0.40986690
+-0.72257181
+-0.70642655
+0.90422692
+0.81258535
+-0.49976519
+-0.30886626
+-0.60963124
+0.13678429
+-0.79313231
+0.32677633
+-0.30080544
+0.08825521
+0.56118781
+0.83488821
+-0.35625190
+0.76190347
+-0.53630289
+0.02626329
+-0.76627836
+0.39008594
+1.01087364
+-0.63140870
+0.27097011
+-0.74899141
+0.81317599
+-0.51706016
+-0.54427894
+-0.73804222
+-0.53001728
+-0.23587662
+0.80367157
+-0.15450374
+-0.38060840
+-0.88956540
+0.08949741
+-0.31666209
+0.29301314
+0.68318604
+-0.92652882
+-0.45145028
+-0.64787853
+-0.54450306
+0.29751209
+-0.34382498
+-0.66889216
+0.86649521
+0.53359599
+-0.46764519
+-0.21553213
+0.14995587
+0.66010468
+0.67879706
+0.19559647
+0.44053501
+-0.66187952
+-0.48146964
+0.53304127
+-0.49502846
+-0.87937131
+0.36388577
+-0.15979706
+0.51046364
+0.89897511
+0.15841552
+-0.23946727
+0.37767098
+-0.03771727
+0.59570170
+0.43805574
+-0.25105259
+-0.52355095
+0.12382018
+0.14466370
+0.71872444
+-0.08585367
+0.36045601
+-0.24760377
+0.76901926
+-0.19926316
+0.96340074
+0.42535847
+-0.61238716
+-0.09309877
+0.16652338
+-0.79756225
+0.27646467
+-0.59233596
+0.06503981
+0.26496734
+-0.00415055
+-0.51123945
+0.70331070
+-0.99739229
+0.99915919
+0.68639481
+0.88155442
+-0.90737389
+-0.41479700
+0.00520863
+-0.52958772
+-0.92283981
+0.98082275
+-0.19298986
+-0.68559410
+0.47993626
+0.30993675
+-0.08747003
+-0.48957859
+0.19909211
+-0.58114609
+-0.11631882
+0.94797740
+-0.06711869
+-0.66546092
+0.39456541
+-0.00262722
+0.80103616
+-0.14107062
+0.07337113
+0.10434193
+0.54022392
+-0.30744361
+-0.90521733
+0.12732309
+0.02373267
+-0.83772753
+0.84614957
+0.96554290
+-0.09560726
+-0.66627099
+0.31434020
+0.74037007
+-0.42362082
+-0.92332030
+-0.39822856
+-0.44749603
+0.57845288
+-0.40351003
+-0.26317126
+-0.64745585
+-0.39552142
+0.17700893
+-0.82408541
+0.09121731
+0.34918703
+0.05521917
+0.68558811
+0.59107435
+-0.42222972
+0.13625435
+0.84362528
+-0.63198609
+0.23905228
+-0.07949137
+-0.50954273
+0.88175241
+-0.73414483
+-0.22647933
+0.94168199
+0.67042501
+0.23938282
+-0.17787808
+0.26790168
+0.12557599
+0.84635627
+-0.42895064
+0.48132236
+-0.05847026
+0.18902531
+-0.93045262
+0.86361976
+-0.46649375
+-0.12394135
+-0.97620560
+-0.44999529
+-0.04654845
+0.18439892
+0.96007780
+0.74309964
+-0.20633777
+0.11803749
+-0.58510256
+0.67538097
+0.05566396
+0.23372369
+0.91321743
+0.25028312
+-0.33201299
+0.27115214
+0.17780566
+-0.35603227
+-0.18549507
+0.35586712
+0.59527338
+0.76151164
+-0.61705822
+-0.32920160
+0.41443168
+0.73671095
+-0.58254764
+-0.92122061
+-0.18069103
+1.00324810
+0.29310962
+-0.13437733
+0.86964541
+0.94255492
+0.26412486
+0.37074287
+0.77527789
+-0.73799735
+-0.38080326
+-0.51385665
+0.61011371
+0.82354375
+0.05194974
+-0.95731480
+0.16938349
+-0.13568798
+0.13752499
+-0.36247354
+-1.00908957
+0.65686007
+-0.46679529
+-0.18919579
+0.69896988
+0.48759100
+0.47402134
+-0.30264952
+-0.50321560
+0.88699188
+0.10460519
+0.36887672
+-0.67341811
+-0.50733299
+0.27765837
+0.85060411
+0.69465726
+-0.07516606
+-0.69890086
+0.94735385
+0.42381359
+-0.49633841
+-0.47326317
+-0.60554121
+0.78721952
+0.82495948
+0.39715622
+-0.80040139
+0.75664568
+0.26195088
+0.25945931
+-0.35731068
+0.16007801
+0.16266421
+-0.38735969
+-0.71988041
+-0.20662528
+0.43362787
+-0.17973526
+0.47194255
+-0.44875632
+0.81507857
+0.50979743
+0.22449330
+0.95185277
+0.76794063
+0.15171955
+-0.64267843
+-0.21334886
+-0.69023798
+-0.87212013
+0.69461299
+-0.35398104
+0.94917469
+-0.24632527
+-0.21001226
+0.85858581
+-0.43458914
+0.36023747
+-0.68247306
+0.69406723
+0.33135571
+-0.71824718
+-0.28016851
+0.34033753
+-0.01690676
+0.23099453
+0.56175605
+-0.92210282
+0.05753936
+0.70773374
+-0.42892952
+0.17800040
+-0.94667782
+0.77875118
+-0.45336427
+-0.86693669
+-0.96648374
+0.07320544
+-0.21588890
+-0.85520505
+-0.89459797
+0.00516232
+-0.76992505
+1.00202060
+-0.97969483
+0.72651359
+-0.16882657
+-0.10080107
+-0.72617041
+0.30467645
+0.68443465
+0.89231277
+-0.47437962
+-0.37259094
+-0.94350425
+0.91103702
+-0.56356695
+-0.53676873
+0.21790517
+0.58024850
+-0.56884784
+-0.11263176
+0.73424841
+-0.95548720
+0.23018301
+-0.15879005
+-0.73955232
+-0.66444284
+-0.15521532
+0.20425735
+0.23855462
+0.06281255
+0.83927809
+-0.58530051
+-0.97953446
+0.72389691
+-0.17651301
+-0.25734049
+-0.69439163
+-0.93110616
+0.48554675
+0.57946157
+-0.21681855
+-0.77394997
+0.00691299
+-0.29344070
+0.17562796
+-0.81889408
+0.81576850
+0.25270104
+-0.02983386
+0.94812526
+-0.98905768
+0.72985857
+-0.76752746
+-0.14269426
+0.11438499
+0.81002159
+-0.54577770
+0.05821333
+-0.28402411
+0.72438443
+0.46507151
+-0.22538990
+0.37788339
+-0.11151317
+0.96559786
+0.00028602
+-0.08915477
+-0.74348474
+-0.98337033
+0.55438995
+0.36602863
+0.82040457
+-0.85817325
+-0.02177262
+-0.85923804
+-0.19114414
+-0.49728047
+-0.10706460
+0.93651224
+0.72461990
+0.37922870
+-0.00207719
+0.50335671
+-0.70050826
+-0.17971706
+0.78988823
+0.17822719
+-0.35474030
+-0.81164439
+-0.89894362
+-0.67008213
+0.74136062
+0.09172119
+0.34523561
+-0.87497636
+-0.22160703
+0.59143850
+-0.49446913
+-0.12825304
+-0.32087171
+-0.88638813
+0.92583954
+0.75300517
+-0.73420983
+-0.78169561
+-0.37838599
+-0.88513115
+0.01793175
+0.70410349
+0.90572059
+0.26518724
+-0.16205939
+0.15731117
+0.51512061
+0.62541482
+-0.12542022
+0.26589164
+-0.09990990
+-0.79538226
+0.58273544
+0.41305730
+-0.08305527
+0.86431960
+0.64589479
+-0.65725780
+0.03095123
+-0.57517586
+0.30179840
+-0.84726544
+-0.97005547
+-0.67998070
+0.21579401
+-0.39918392
+0.08544543
+0.55031758
+0.04249140
+0.08954896
+-0.07991858
+0.03341433
+-0.55702753
+0.58109216
+0.02863856
+-0.57321348
+0.61794552
+0.42257176
+-0.28158907
+0.51122392
+0.59274348
+-0.75567614
+-0.63913654
+-0.76330659
+-0.54372055
+0.62082520
+-0.53207329
+-0.12676617
+0.88308047
+-0.81110244
+0.48681147
+0.28282825
+0.17884748
+-0.76191918
+-0.37209543
+-0.84057781
+1.00748058
+-0.15380567
+0.44657302
+0.70621534
+-0.69876679
+-0.69749494
+-0.78526829
+-0.85968105
+0.77411606
+-0.58574596
+0.51604630
+-0.56835809
+0.51791501
+0.49776038
+0.58871589
+-0.24590780
+-0.91036332
+0.75854325
+0.53184189
+-0.39063275
+-0.93168312
+0.30562472
+0.58230197
+-0.50143675
+-0.88231285
+-0.89602059
+-0.47842640
+0.21376312
+0.82060577
+-0.44326389
+0.00392778
+-0.23932087
+-0.25386268
+-0.76362731
+0.29054913
+0.61017342
+0.42850804
+-0.64978302
+-0.42861890
+-0.64615351
+-0.39165958
+-0.15999651
+0.54018557
+-0.09060574
+0.06467915
+0.79509258
+0.65565145
+0.29392266
+0.32594121
+0.66703212
+-0.54851526
+0.22974479
+-0.02539212
+-0.38463420
+0.57621479
+0.29780543
+0.50592780
+0.58985662
+0.73391032
+-0.59893566
+0.89513242
+-0.43932956
+0.36215806
+-0.69547808
+-0.68029034
+-0.85347193
+0.58848202
+-0.19361085
+0.36281276
+0.70509362
+-0.10461575
+0.23291683
+0.12088311
+-0.42109317
+-0.31738049
+-0.89188546
+-0.95447249
+0.30767524
+-0.20586902
+0.19190133
+-0.36997718
+-0.59795326
+0.22506988
+0.94174516
+0.11774337
+0.33648312
+0.73375559
+-0.38774282
+0.18901706
+-0.56161350
+-0.83510722
+0.90056336
+0.77419293
+0.85355127
+-0.87082981
+-0.26216632
+-0.84384550
+0.51855469
+-0.93134417
+-0.87476406
+-0.03014255
+0.28118420
+-0.90174725
+0.24967289
+0.59971833
+-0.69755238
+0.62510777
+0.22263515
+0.52350020
+-0.13896453
+0.62964523
+-0.64559320
+0.85023451
+0.87358248
+0.05741918
+0.18173897
+-0.83019045
+0.08760428
+0.87815344
+-0.73648289
+0.00778186
+0.57545900
+-0.16825730
+-0.07172614
+-0.82839407
+-0.29524350
+0.03033102
+-0.62140933
+-0.76682928
+0.06520677
+-0.79378727
+-0.59043393
+0.70239866
+-0.02518839
+0.71534431
+0.43806660
+0.06997252
+0.73588014
+0.06834388
+0.62470889
+-0.77062577
+0.29843593
+-0.10534346
+-0.30363113
+-0.74034992
+0.63464642
+0.39255822
+-0.04119819
+0.90674520
+-0.41284454
+0.53203201
+-0.44946706
+-0.33284700
+0.51659143
+-0.92586426
+-0.86731714
+0.44060373
+0.70426154
+0.63240945
+-0.66934091
+0.33472133
+0.56870484
+0.58868134
+0.08869922
+0.73607290
+-0.59647754
+-0.38679856
+-0.80665140
+-0.69038928
+0.25329852
+-0.35913670
+0.94288087
+-0.88807166
+-0.84820399
+-0.90016151
+0.02047944
+0.74762321
+0.11143744
+-0.34801793
+0.12818086
+0.43205869
+0.46251476
+0.74917579
+0.10872161
+0.75483394
+0.47824240
+0.23259342
+-0.57340711
+-0.85850115
+-0.17678809
+0.39642096
+-0.81063505
+-0.49909306
+0.71302021
+-0.71114174
+0.96990967
+0.48792148
+0.05449617
+-0.50787804
+0.81352675
+-0.32481235
+-0.61202893
+-0.33213806
+0.28150940
+-0.32416236
+-0.77030706
+-0.20945895
+0.44001937
+0.01890671
+-0.60829866
+0.10605526
+-0.11326993
+0.62788224
+-0.23916227
+0.26282871
+0.53704631
+0.24626982
+0.30488575
+0.01460254
+0.52827919
+0.40144956
+-0.66312525
+-0.59969777
+0.43438959
+-0.05300027
+-0.96675836
+0.31002605
+-0.23685294
+0.10717499
+-0.01372826
+-0.27490473
+0.68726861
+0.67535472
+0.93161404
+0.16964948
+-0.03728259
+0.56555259
+-0.93418760
+0.49964809
+-0.03815120
+-0.95482616
+0.77598298
+0.70099020
+-0.32736075
+-0.40225369
+0.36397755
+0.33353233
+-0.99432399
+0.08651459
+0.41392982
+0.13077676
+0.44331300
+-0.12382376
+0.24486971
+0.06506491
+-0.51925346
+0.50016165
+0.33983934
+-0.22933644
+0.08191621
+-0.73881623
+0.41139030
+-0.61627403
+0.49679923
+0.24906313
+0.08438158
+-0.17488712
+0.90196383
+-0.41473389
+0.62122679
+0.29385090
+0.74432206
+-0.19128734
+-0.58185354
+-0.36286300
+-0.30601561
+-0.67832360
+-0.08956516
+0.30449855
+0.84637630
+0.27971447
+-0.77812472
+-0.86778352
+-0.54314411
+0.66797042
+-0.09623665
+-0.21616006
+-0.66566744
+-0.67601731
+0.00341833
+-0.70854598
+-0.70499146
+0.32342255
+-0.48439652
+-0.63916549
+-0.04638845
+0.87343574
+-0.52172306
+-0.84801368
+-0.30390000
+0.11068690
+0.19269645
+-0.48466533
+0.50094914
+-0.53793427
+-0.66330370
+-0.12798005
+0.16598225
+0.93317866
+-0.01741439
+-0.75401403
+-0.90367674
+-0.45378345
+-0.29451793
+0.22130334
+-0.42791092
+-0.24589199
+0.65062118
+0.81987071
+0.70464802
+-0.10964358
+-0.72879094
+0.47236848
+-0.75419995
+-0.78403047
+0.49284732
+-0.25331873
+0.34744656
+0.22034144
+-0.12067580
+0.05821764
+0.27359867
+0.11442149
+-0.76506205
+0.79927862
+-0.41751271
+-0.20422024
+-0.64540774
+0.97402656
+-0.73139754
+-0.73584518
+-0.38474762
+-0.33276176
+0.09732425
+-0.37443495
+-0.78793019
+-0.62336227
+-0.79952563
+-0.97106235
+-0.36766487
+-0.73029372
+-0.50666729
+0.86008871
+0.92980599
+0.74243903
+-0.83217625
+-0.26449114
+-0.51357955
+0.72170591
+-0.55149239
+0.67108703
+-0.34377360
+0.79975057
+0.35783041
+-0.60488579
+-0.80959229
+-0.67073411
+-0.67732370
+-0.50277469
+-0.89904504
+-0.55775237
+0.21651292
+-0.78987150
+0.30165958
+0.52941298
+-0.54906312
+-0.80913466
+0.94658887
+-0.81782085
+-0.97695101
+0.97313750
+0.02748263
+0.99463940
+0.12063777
+0.92669678
+-0.68354350
+0.15794337
+0.98570263
+-0.68607506
+-0.63303864
+0.92402494
+-0.86269368
+-0.46932858
+-0.60006952
+-0.02025151
+-0.46206802
+-0.33901852
+-0.83520724
+-0.86551324
+-0.79188699
+0.38019526
+0.50268543
+0.92881712
+-0.97956751
+0.10633475
+-0.72160115
+0.42280406
+-0.54287133
+0.74393529
+-0.97935998
+-0.74787323
+-0.01430449
+0.58990698
+0.27736659
+-0.67692485
+-0.48698956
+0.19106952
+-0.20198597
+0.53054572
+0.32397542
+0.58118485
+0.18410772
+0.64050910
+-0.03509304
+-0.66714953
+-0.38360058
+0.12521472
+-0.02423190
+0.86455926
+-0.04686292
+-0.94465274
+-0.19778654
+-0.79475773
+0.21304123
+0.56166658
+-0.55653856
+-0.23450008
+-0.38053954
+-0.96812499
+-0.95676252
+0.70896991
+-0.76358544
+0.11568051
+-0.31393219
+-0.33497425
+-0.05326834
+-0.06640280
+0.84634445
+0.99787067
+0.95716597
+0.62894306
+0.85256002
+0.64922308
+0.14452092
+0.78863450
+0.25278016
+0.63042130
+0.43869752
+-0.05079160
+0.32427330
+0.23694285
+-0.32234379
+-0.40567035
+0.46604987
+-0.81142605
+0.03575617
+0.38059060
+-0.76227558
+-0.42763101
+0.63617257
+-0.78796063
+0.31770954
+-0.64663178
+0.72993213
+-0.18426912
+0.32831708
+0.80085578
+-0.41207677
+0.53110951
+-0.48935106
+0.21567136
+0.16836301
+0.94251017
+-0.88780450
+0.18238446
+0.68646018
+0.17754462
+-0.69035706
+0.35341622
+-0.87453186
+-0.55210376
+-0.37176814
+0.31991084
+0.24626480
+0.70226830
+-0.44309907
+0.02300714
+-0.82089497
+-0.09452142
+-0.62228119
+-0.93560685
+-0.79019020
+0.26292237
+0.00476108
+0.51866140
+0.92620861
+0.92717367
+-0.01152956
+-0.18536133
+-0.03050348
+0.96420945
+-0.18850704
+-0.88571080
+0.14628288
+-0.31835984
+0.91289372
+-0.46298866
+0.76020868
+0.91099286
+0.22102308
+0.40835397
+0.46783012
+-0.53817092
+-0.68778585
+-0.26307974
+-0.40738119
+-0.58957920
+0.56011263
+0.55098310
+-0.79169774
+0.40198301
+0.84543935
+0.63151294
+0.16512786
+0.32720836
+-0.05576303
+-0.78257108
+0.49411963
+-0.49688471
+0.02018366
+0.34403197
+0.60122076
+0.58184829
+0.76331535
+-0.58511555
+-0.97138707
+-0.84764063
+-0.24221834
+0.72593139
+-0.77258522
+-0.54990886
+-0.39920316
+-0.25150017
+0.78607844
+-0.12000120
+0.37906734
+0.53778970
+-0.67991701
+0.54142733
+0.46127638
+-0.55456185
+0.48810172
+-0.41256179
+-0.77062695
+-0.10044335
+-0.67753218
+-0.75827013
+0.72442859
+0.87021235
+-0.35173157
+-0.32985493
+-0.73235636
+-0.65784316
+0.40708400
+-0.85998085
+-0.06928950
+0.96511304
+0.91991884
+-0.76414200
+0.75151657
+-0.52578835
+0.15662174
+-0.90183303
+-0.28424645
+-0.97570046
+0.06801104
+0.15040309
+0.08609515
+-0.92219318
+-0.84825855
+0.22636712
+0.14435581
+-0.74200460
+0.61503309
+0.94382088
+-0.98883196
+0.21993788
+0.93110538
+0.71582331
+0.47053153
+-0.55941379
+0.22419142
+0.21887484
+0.72654272
+-0.72500399
+0.32723652
+-0.04948192
+0.64784219
+0.05810072
+0.18557875
+0.38563921
+0.04667750
+-0.24610330
+-0.73803469
+0.24482751
+-0.16374605
+0.51609665
+0.27363086
+0.34350925
+-0.41536654
+-0.83612198
+-0.68923713
+-0.29236708
+-0.30012948
+0.94772152
+-0.56846901
+1.00773108
+0.39722807
+0.42456445
+-0.28965307
+0.82568709
+-0.29631994
+-0.63870069
+-0.13675757
+0.25987107
+-0.07748434
+-0.17365446
+0.52989647
+-0.50857625
+-0.29175020
+0.84522680
+0.40543550
+0.15591738
+-0.15312567
+0.63939346
+0.28525159
+-0.20106785
+-0.16050102
+-0.05977820
+0.62981559
+0.08993775
+0.40736994
+0.72126404
+-0.10192146
+0.82849963
+-0.28317520
+-0.56525299
+0.21526713
+-0.84632402
+-0.82245497
+0.12064518
+0.27188976
+-0.31390401
+-0.28157536
+0.65131955
+-0.68672874
+-0.72253755
+0.05248268
+-0.07982055
+0.42765116
+0.52361504
+0.55765627
+-0.32850993
+0.90763528
+0.32703769
+0.39114184
+-0.84228685
+0.11924419
+0.67106081
+0.67001844
+-0.65243968
+-0.18429464
+-0.66698249
+0.96298270
+0.81062698
+-0.96545823
+-0.26395935
+-0.52714201
+0.73449870
+-0.02310083
+-0.29929037
+0.28846294
+-0.17048066
+0.77063081
+-0.00386282
+-0.45191614
+-0.78807461
+0.78028016
+0.32947241
+0.06686837
+0.63273034
+-0.09204133
+0.20881039
+0.68253882
+-0.65053308
+0.62167380
+0.43310209
+0.75576017
+0.43524415
+-0.84591824
+-0.78755299
+-0.92477190
+-0.02673600
+0.15151291
+0.81048657
+-0.19560381
+0.80113281
+-0.87740067
+-0.81904871
+0.66796569
+0.50132198
+0.18985626
+0.05210345
+0.75170716
+0.11579240
+-0.35042139
+-0.45981258
+-0.61357386
+0.13807866
+-0.69173880
+-0.41724104
+-0.04402380
+0.79106835
+0.64599249
+0.37725787
+-0.72659762
+0.21885000
+0.88315230
+-0.56380359
+0.47817514
+0.83308143
+0.06188809
+-0.84114143
+0.60971090
+0.41003337
+-0.15453142
+-0.09155223
+-0.42260762
+0.32851995
+-0.78306108
+0.84009335
+0.59092446
+0.75960908
+-0.02031363
+-0.39800936
+0.28196780
+-0.68175708
+-0.93696571
+0.68605800
+0.95317502
+-0.88822649
+-0.15289358
+-0.25645579
+0.09326880
+-0.36472687
+-0.46586440
+0.19543875
+-0.50289659
+-0.15890312
+0.64877792
+-1.01522668
+0.10829738
+-0.23110208
+0.85796018
+-0.72255760
+0.52333931
+0.49077480
+-0.09037303
+-0.60775634
+0.32701118
+-1.04530123
+-0.98582059
+-0.86237079
+-0.57347088
+-0.06880414
+0.22618169
+0.72575406
+0.12811417
+-0.33055895
+0.13877636
+0.24137609
+-0.99132134
+0.59204541
+-0.46867630
+0.47740683
+-0.17056263
+-0.23050355
+-0.36513170
+-0.69699974
+-0.96099084
+0.10276338
+-0.85614482
+-0.15702983
+0.09786034
+-0.67253593
+-0.41260949
+0.73785441
+0.72409114
+0.77121293
+0.50605215
+-0.55786188
+-0.34835732
+-0.21103415
+-1.03957200
+-0.08707278
+0.50850670
+-0.13600424
+-0.63648283
+-0.10262930
+-0.20559084
+0.20203798
+-0.89135947
+-0.49842526
+0.30736109
+-0.42758518
+-0.16425052
+0.38699986
+0.47241961
+-0.23340564
+0.68578174
+0.38006453
+-0.57598497
+-0.02043553
+-0.65675546
+0.14202161
+-0.45298170
+0.59079694
+-0.58336696
+0.53004566
+-0.25682373
+0.01492278
+-0.94129712
+-0.29538844
+-0.17356784
+-0.96409352
+-0.09853535
+-0.26178230
+-0.61616179
+0.74379849
+0.01185071
+-0.99396955
+0.64461072
+-0.93321167
+0.02575098
+0.41528503
+0.46661652
+-0.18551988
+0.36487955
+0.10623571
+-0.77530497
+-0.61123827
+0.81852577
+-0.23547550
+0.06279456
+0.31299666
+-0.99108806
+-0.58787395
+-0.33441843
+-0.79503260
+0.26325016
+0.66572724
+0.66370836
+-0.50732745
+-0.33282315
+-0.33517500
+-0.63549037
+0.37082329
+-0.24837575
+0.68787759
+0.20455301
+0.73872978
+-0.10166224
+-0.97472635
+0.02491279
+0.79791613
+0.51252882
+0.09375540
+0.87570211
+-0.60962584
+-0.04610030
+-0.38385749
+-0.19312038
+-0.48677989
+-0.61236986
+-0.89348561
+0.73855473
+0.16431885
+0.60669681
+0.44085259
+0.16327004
+-0.36922231
+-0.94676892
+-0.75821628
+-0.39586976
+0.07892974
+-0.94619941
+0.00638660
+-0.96763909
+0.58745914
+-0.90273553
+-0.70732689
+-0.34905589
+-0.23802978
+-0.44725948
+-0.92217736
+-0.01962407
+0.56108118
+-0.44673271
+-0.13987606
+0.43390506
+0.12971306
+0.39519167
+0.59730990
+-0.56285154
+-0.44451423
+0.63777986
+0.14390398
+0.80790213
+-0.29614630
+0.78502340
+-0.51509529
+0.60735901
+-0.29618815
+0.80874665
+-0.33436080
+-0.94516327
+0.02823453
+-0.18964977
+0.90758243
+-0.56722403
+-0.79592734
+-0.27641814
+0.97201083
+0.54292243
+0.12020960
+-0.55271197
+0.88322006
+0.22089667
+-0.28229315
+0.82896220
+0.48750525
+-0.41858099
+0.37041560
+0.60560118
+0.62799926
+-0.85546051
+-0.18545371
+-0.06057003
+0.91178705
+-0.28555393
+-0.05902279
+0.10997316
+0.58078372
+0.53473574
+0.80362270
+0.89189792
+0.14180210
+0.07418844
+-0.83536709
+-0.45350540
+0.51609618
+-0.11998132
+0.17434689
+0.04912866
+-0.28150664
+0.68434237
+-0.25302921
+0.04025564
+-0.46418878
+-0.34740370
+0.50954899
+-0.73281654
+-0.35894248
+-0.18378040
+-0.16139983
+-0.68030148
+0.53577907
+0.57314806
+-0.84292487
+-0.74688227
+-0.01949907
+0.93701375
+-0.93503164
+0.78922633
+0.18207097
+0.07138440
+0.52324763
+0.83858126
+0.86443105
+-0.92951910
+0.09271812
+-0.03519378
+0.42865144
+0.82087727
+0.81981940
+0.75186602
+-0.28606881
+-0.17574281
+-0.28386006
+0.61598460
+-0.92480045
+-0.38116270
+-0.34042519
+0.80505856
+-0.55432096
+-0.74958052
+-0.05813026
+-0.95817871
+0.38813903
+0.78487623
+0.76147927
+0.60182106
+0.56542480
+0.84726735
+0.77807269
+-0.80541775
+-0.16461062
+-0.15892822
+-0.93101089
+0.85254991
+-0.61563008
+-0.03147775
+-0.25389713
+-0.21713100
+-0.52064880
+-0.97832537
+0.13672268
+0.88143945
+0.70289614
+-0.01276499
+0.63644041
+0.66595984
+-0.32957804
+-0.70498024
+-0.01888654
+-0.99302185
+0.74223053
+-0.66926003
+0.30896784
+0.08529758
+0.69970265
+0.29902625
+0.44231462
+0.48805618
+-0.20215058
+0.84191167
+-0.00525469
+0.47608805
+0.53862345
+-0.16997427
+0.78198993
+-0.17000043
+0.27895534
+0.26392281
+0.78013468
+0.42591143
+-0.21131474
+-0.81381340
+-0.41196561
+0.85783553
+-0.32040566
+0.79297590
+0.30503404
+-0.07395679
+-0.38709140
+-0.48265183
+-0.74236539
+0.65734255
+0.47566330
+-0.11085391
+-0.45029157
+-0.31304985
+-0.93432788
+0.96645117
+-0.81240019
+0.66771758
+-0.13031441
+0.14540100
+-0.69890225
+-0.88842873
+0.14919877
+0.93059826
+-0.25107098
+0.04232240
+-0.89781756
+-0.29815465
+-0.42272472
+0.35254312
+0.89149499
+-0.08921570
+0.56827855
+0.01531708
+0.19591534
+0.45781040
+0.75262761
+0.72227943
+-0.04037887
+-0.83455443
+0.80017102
+-0.09285516
+0.72569144
+-0.06289250
+-0.57147005
+-0.12195295
+0.34612751
+0.23372757
+0.75646389
+-0.96565563
+0.38417554
+0.13262498
+0.79429030
+0.08072364
+0.32819939
+0.38683772
+0.42222822
+-0.43940145
+0.86940205
+-0.60029814
+-0.11906707
+-0.59986100
+0.45039511
+0.20267117
+0.70366442
+-0.57208011
+0.81018090
+0.14239585
+-0.96428912
+0.65970266
+0.87913239
+0.15708685
+-0.94712572
+-0.76612420
+0.37926984
+0.14790118
+0.45162392
+-0.16035551
+0.93747413
+0.26662958
+-0.51722574
+-0.95199812
+-0.85816738
+-0.54839256
+-0.66249716
+0.63242209
+-0.05149955
+-0.88710166
+-0.71651822
+0.55095506
+-0.04687935
+-0.81372145
+0.49477637
+0.81411970
+0.47553420
+0.75495183
+-0.40908766
+0.54666245
+0.55767715
+-0.42451894
+0.51428986
+-0.97923766
+0.48969305
+0.08005190
+-0.75120400
+0.36956453
+0.62527955
+-0.23516446
+0.83000517
+0.23003685
+-0.27751863
+0.96685350
+0.85544956
+0.31660008
+-0.09285837
+0.03192234
+0.70983791
+0.33245981
+0.08189607
+-0.56899482
+-0.45026189
+-0.84585057
+0.78407156
+0.48465788
+0.88014185
+-0.04669291
+0.23607457
+0.39502823
+0.72541296
+-0.15413105
+-0.49155456
+0.26541233
+-0.37645805
+0.94174433
+0.62897992
+0.69550836
+-0.34016430
+0.92953050
+0.20527029
+0.28533208
+-0.81427021
+0.15488505
+-0.49745780
+0.26720357
+0.61795545
+-0.06242120
+-0.23790300
+0.47684324
+-0.80055963
+0.80795324
+-0.28690952
+-0.95679973
+0.23591161
+0.86013317
+0.10140073
+-0.39643282
+-0.24508363
+-0.84593247
+-0.60051629
+0.60411322
+0.71137941
+-0.11492121
+-0.16796792
+0.08187783
+-0.63165170
+0.79783654
+-0.50321203
+0.78420854
+0.76836073
+-0.74983928
+0.10719585
+0.86516452
+-0.46315491
+0.26787937
+0.07642961
+-0.31237990
+-0.04687881
+-0.03504723
+0.79271114
+0.24307013
+-0.91292682
+-0.26672298
+0.46697509
+0.53585577
+-0.72208187
+-0.18147796
+0.29677844
+0.59094644
+-0.83270575
+-0.76713066
+-0.05577552
+-0.86304626
+0.07920313
+-0.18305987
+-0.57013711
+0.81129646
+-0.58572215
+-0.44739771
+-0.45562512
+-0.62667954
+0.83219612
+-0.92881538
+-0.13085115
+-0.66024169
+-0.78655356
+0.33738995
+-0.14801645
+-0.19669491
+-0.46363312
+0.89691210
+-0.64924127
+0.86820924
+-0.05540502
+-0.22679102
+-0.39711928
+0.41806519
+-0.57737085
+0.61375046
+0.74221015
+0.12532318
+0.71808410
+-0.41629219
+0.90030110
+0.05334878
+-0.34093219
+-0.43333209
+0.32241011
+-0.70998874
+-0.74914351
+-0.44381469
+-0.59016746
+-0.13090402
+0.01212943
+0.63958347
+-0.99339874
+0.91453111
+-0.81983151
+-0.40775168
+-0.68245631
+-0.40978706
+-0.82370618
+-0.44412583
+0.98848724
+0.52021766
+0.40516949
+0.25951540
+0.10135376
+0.42616534
+0.74528909
+0.67470264
+0.36088300
+-0.82828201
+0.82637739
+-0.95995962
+-0.01690388
+-0.10207099
+-0.27105325
+0.16358781
+0.16224682
+0.96636832
+-0.30354726
+0.61525857
+0.68053424
+-0.34077680
+-0.31119174
+-0.52826998
+0.97833419
+-0.94557321
+-0.38557941
+0.85640335
+0.85875833
+-0.64944565
+0.64754021
+0.02092242
+-0.42439210
+-0.36577618
+-0.35168672
+0.21618629
+0.51241267
+0.39385736
+-0.38161266
+-0.77469297
+-0.13446307
+0.10586643
+0.10977805
+0.12891424
+0.59945285
+0.80799055
+-0.51808986
+0.79564774
+0.38197863
+0.87030315
+-0.89353779
+0.63259363
+0.29239643
+0.07779276
+-0.14735484
+-0.00076735
+0.78741133
+-0.80191623
+0.14623785
+-0.70703718
+-0.02303559
+0.40407729
+-0.01514846
+0.06795132
+0.23742712
+-0.74481207
+0.20831478
+0.98225510
+0.10828280
+-0.95215406
+-0.91379116
+0.69667304
+-0.91521103
+0.62179875
+0.61122525
+0.09572232
+-0.91551754
+0.84681594
+0.60422456
+-0.16440833
+-0.93419342
+0.11596870
+-0.68201715
+0.62393618
+0.90952015
+-0.76363952
+0.31631505
+-0.47378641
+-0.21285707
+0.39418185
+0.02706480
+-0.52716348
+-0.01034361
+-0.34376097
+0.91975319
+0.76382220
+0.45414197
+0.93802559
+-0.29019272
+-0.51305422
+0.25904322
+-0.60790196
+-0.46669058
+-0.73248643
+0.64659112
+0.60053845
+-0.91681235
+-0.01151053
+0.53815073
+-0.34152584
+1.00930361
+-0.25220719
+0.93092154
+0.54377038
+-0.86564745
+0.19715602
+-0.37004510
+0.07767372
+-0.11646440
+0.33056256
+0.15142702
+0.79104167
+0.96006939
+0.17939781
+0.60133513
+0.27405948
+0.61196362
+0.29391170
+0.51708657
+0.45198985
+0.28235030
+0.13999872
+0.92944342
+-0.29365221
+-0.42196965
+0.72415577
+-0.24517254
+0.70530398
+-0.05316203
+-0.99399806
+0.25523116
+0.94113578
+0.63854335
+0.09926789
+-0.05055991
+0.75313493
+-0.60364016
+0.72070472
+0.86409155
+-0.16662645
+-0.64629268
+-0.95910863
+0.05133600
+-0.58260959
+-0.58033848
+-0.65364548
+0.26656079
+-0.94616952
+0.11236950
+-0.38535265
+-0.87708101
+-0.31145540
+-0.47539969
+0.56417928
+0.62889333
+0.54506928
+0.55454224
+0.71932835
+0.84503294
+0.58085336
+0.95007004
+-0.50621670
+-0.36318805
+-0.19677953
+-0.30609223
+-0.21658783
+0.54220564
+-0.13653540
+0.03381525
+0.23945326
+-0.33183782
+-0.74396737
+-0.32193074
+-0.47249028
+-0.27840084
+0.86154930
+-0.45947052
+0.82848668
+0.47856137
+-1.00762156
+-0.46907785
+-0.16520133
+-0.61781022
+-0.27780656
+0.48570182
+0.13437326
+0.11200245
+0.06173361
+-0.98421603
+-0.30290789
+-0.52298392
+-0.01870908
+-0.60216509
+0.66675468
+0.51747777
+-0.28492544
+-0.80141003
+-0.74757580
+0.93187945
+-0.91739430
+0.07128870
+-0.15599890
+-0.47827404
+-0.65916299
+-0.50020839
+0.41899708
+-0.17918949
+0.88592252
+-0.07721915
+-0.79146477
+-0.80262118
+0.92360698
+-0.39995021
+-0.37279011
+-0.09290412
+0.92520331
+0.05465236
+0.74851836
+0.56616711
+-0.63827059
+-0.82153373
+-0.91153843
+0.93395108
+-0.62542016
+-0.54647296
+0.86157862
+-0.41524542
+0.29400761
+0.28468263
+-0.91262145
+0.24520900
+-1.01667899
+-0.14317732
+-0.60255729
+0.18664589
+-0.28422682
+0.31764114
+-0.75121497
+0.20421369
+0.78858746
+-0.87274116
+-0.13135720
+-0.58860748
+-0.80214651
+-0.81610317
+0.38448889
+0.33797163
+-0.49416254
+0.44997616
+0.15158309
+-0.30776461
+0.25423811
+-0.81781828
+-0.25721292
+0.12194006
+-0.36355542
+0.52635355
+0.56337345
+-0.11789372
+-0.80686089
+-0.61465908
+0.42727128
+0.26716036
+-0.25959497
+0.24737288
+-0.12460530
+-0.19746219
+-0.50808124
+-0.91984105
+0.36831938
+-0.99808182
+0.53776528
+0.69628847
+-0.45134537
+-0.66984995
+0.18664981
+-0.58606893
+-0.06889118
+0.75826044
+0.36388891
+0.61593932
+0.73947646
+-0.38400493
+0.50632777
+-0.43947259
+-0.55503012
+-0.60130257
+0.11418986
+0.25310767
+-0.07529357
+0.04762819
+0.31696071
+0.15438111
+0.27844707
+-0.61266421
+-0.36620589
+0.29209032
+0.93931455
+-0.60141214
+0.17969062
+-0.46110813
+0.69782757
+-0.56161321
+-0.79472357
+0.04208666
+-0.62191322
+-0.48376320
+0.64722755
+0.38036776
+0.49608028
+0.27100702
+-0.37627396
+0.20401027
+0.81356858
+0.08507208
+-0.22053283
+-0.73945482
+0.67206880
+0.86563683
+-0.62609453
+-0.46639849
+-0.11943246
+0.21398451
+-0.49604907
+0.32241258
+-0.47444563
+0.36473851
+-1.01353686
+-0.51977520
+0.73300205
+-0.88823842
+0.98027347
+0.71190882
+0.18205472
+0.37399991
+-0.31748131
+0.64717784
+-0.10041599
+-0.32076586
+0.01330074
+-0.61451341
+-0.67946634
+-0.96471708
+-0.84465031
+-0.48301606
+0.65068474
+-0.30409396
+-0.67623115
+-0.37416024
+-0.88389234
+0.76779178
+-0.42451447
+0.44052507
+0.43108609
+0.88521413
+-0.77553521
+1.00005259
+0.14253057
+-0.00529325
+0.36515995
+-0.94349952
+-0.19194391
+0.76729272
+-0.36282490
+0.75759120
+0.38192355
+0.83657345
+0.62444229
+0.34093963
+0.63876161
+-0.13718471
+-0.16719236
+0.26388283
+0.83893071
+0.99462780
+0.33293820
+0.24113009
+0.87088712
+0.89082662
+-0.66548004
+-0.62600490
+0.89379183
+0.25324048
+0.27196114
+0.29172047
+-0.63728103
+0.61626476
+0.54491347
+0.02838404
+-0.08577743
+0.59936999
+-0.90692792
+0.38563246
+-0.39422434
+0.81015977
+-0.35274722
+-0.46604770
+-0.85384954
+0.56500033
+0.73072324
+0.38158546
+0.87802414
+-0.58366970
+-0.65341249
+-0.19858870
+-0.95641981
+-0.09954201
+-0.32974498
+0.70461028
+-0.25332644
+0.39033573
+0.62288986
+-0.64393739
+-0.68567853
+-1.00034345
+-0.90491300
+-0.53066724
+-0.10951679
+0.12085452
+-0.69612029
+-0.58962156
+-0.03073490
+0.18678971
+-0.09453497
+0.59333030
+-0.32078094
+0.31264480
+0.31418509
+-0.25096882
+-0.36335056
+-0.73142518
+-0.05358067
+0.65773089
+-0.98736583
+-0.75163477
+0.73864020
+0.59173112
+-0.37608138
+-0.61265295
+0.38414699
+-0.78548612
+0.60748076
+0.18978049
+0.20807686
+0.18126873
+-0.52855510
+0.10090649
+0.21690270
+0.18997409
+0.23268081
+-0.47484965
+-0.40743161
+-0.73922491
+-0.65920728
+-0.45865939
+-0.58484308
+0.44046156
+0.43388328
+-0.95188216
+0.69756194
+0.26692425
+-0.94004948
+-0.72763383
+0.83214999
+-1.01478131
+0.36841843
+-0.68722613
+-0.74846033
+0.75039410
+-0.06276051
+0.48303730
+-0.84634181
+-0.25979312
+-0.26320566
+-0.82036546
+0.81875095
+-0.91515889
+1.00102783
+0.85285083
+0.24805449
+0.69467879
+-0.81087573
+-0.36145167
+-0.04846784
+0.84894871
+-0.73388904
+-0.70826905
+-0.67052789
+-0.74912727
+-0.93261944
+-0.02785180
+-0.33385156
+0.26750413
+-0.50807504
+-0.07358124
+-0.78619676
+0.50317590
+-0.53992154
+0.83680292
+-0.92890835
+0.54345111
+0.77848987
+0.19437118
+0.63873918
+-0.61173419
+0.39215211
+-0.59202745
+-0.38682922
+-0.92154759
+-0.82602730
+0.72963748
+0.90713787
+0.82124697
+-0.05216489
+-0.95501765
+-0.33547391
+-0.64417548
+0.29611030
+-0.14533047
+0.56491733
+0.17095587
+-0.25043923
+0.76810757
+-0.13668212
+-0.36634850
+-0.09525984
+-0.58082228
+-0.93455596
+0.04976111
+0.59805165
+0.56717785
+0.99875094
+-0.86876773
+0.34144484
+-0.82321237
+0.47883127
+-0.86569688
+0.45803381
+0.91017848
+0.49549013
+-0.97244484
+-0.29953670
+0.70587633
+0.89379958
+0.56546476
+0.11070806
+-0.70281068
+0.76975877
+-0.74129765
+-0.44043103
+-0.49925572
+-0.82212553
+-0.13037233
+-0.91868949
+-0.59963998
+-0.60103427
+-0.76659777
+0.35566989
+0.46714967
+0.89365543
+0.91746180
+0.77404382
+-0.80298290
+0.36688509
+0.00297581
+-0.13006200
+-0.66081020
+-0.90954782
+0.83911827
+-0.69701152
+-0.01279292
+-0.63411485
+-0.76785854
+0.10206377
+0.03199453
+-0.68254729
+-0.09471108
+0.92555858
+1.00805045
+0.06770716
+-0.82870358
+0.61101812
+-0.96516740
+-0.49553975
+-0.64697022
+-0.59617995
+0.59780550
+0.68327460
+0.25415204
+0.27031233
+0.39879665
+0.99280846
+-0.75333273
+0.91662890
+-0.96585996
+0.41111174
+0.29204528
+-0.42052340
+0.52863627
+-0.18621082
+0.75845799
+-0.84786957
+0.11062401
+-0.08353865
+0.26565953
+-0.97584213
+-0.86215901
+-0.85275528
+0.67116998
+-0.47872301
+0.49763762
+-0.95807987
+-0.10440963
+-0.73603481
+0.23846373
+-0.59505555
+-0.36631411
+-0.55771340
+0.01314941
+-0.84037517
+-0.84562670
+-0.71631754
+0.48539492
+-0.46550086
+0.77767561
+0.80337702
+-0.87860711
+0.27326530
+0.43207916
+-0.78746043
+-0.80643329
+0.75791806
+0.38389624
+0.63563432
+0.54044630
+0.51237415
+-0.25709793
+-0.68706245
+-0.64943961
+-0.14490622
+-0.34865833
+0.98166764
+-0.06570789
+0.73436233
+-0.18513981
+0.27938518
+-0.77814005
+-0.85318802
+-0.48245685
+0.53383929
+-0.91032419
+0.79650947
+-0.51640303
+0.83627671
+-0.16712119
+-0.42751832
+0.30496245
+-0.55434081
+0.43463034
+0.85906331
+0.96647523
+0.15385744
+-0.18370978
+0.04120637
+0.76032557
+0.42996607
+-0.90116836
+-0.30220732
+0.53107038
+0.90810862
+-0.04615137
+0.85807266
+-0.96381418
+0.82599162
+0.87685714
+0.68047094
+0.99734421
+-0.32862630
+-0.84077605
+-0.05010930
+-0.52421985
+-0.96203113
+-0.56690098
+-0.25098526
+0.01459949
+0.22908297
+0.50873502
+-0.18498130
+-0.21300433
+-0.78744796
+0.86009570
+0.56507569
+-0.66779410
+-0.25085799
+-0.60482600
+0.73214284
+-0.32282962
+0.57198112
+0.11830518
+-0.77578939
+0.11218949
+-0.76827008
+0.26322865
+0.82423874
+-0.09105613
+0.26836137
+0.79776251
+-0.68920958
+-0.14099781
+0.58398926
+0.00668497
+-0.08707649
+0.80556858
+-0.26241068
+-0.11366334
+-0.22622533
+-0.41528660
+0.47435164
+0.23717202
+-0.01005363
+0.91638530
+-0.58841538
+-0.67836514
+-0.96650034
+0.91012261
+-0.65602584
+0.07821608
+-0.89669600
+0.48344900
+-0.20591444
+0.33710946
+0.10119593
+0.80419087
+-0.80295611
+0.86982009
+0.26056274
+0.72702241
+0.99649131
+0.58685804
+0.53063023
+0.25174049
+0.08000326
+0.92013037
+0.50596976
+-0.26094025
+0.02614236
+0.58203185
+0.14850903
+-0.81261015
+-0.18412083
+0.39240551
+0.47412074
+-0.11788970
+0.96321201
+-0.75258763
+0.79642498
+-0.36785847
+0.70018661
+0.84734917
+0.15998077
+-0.87738456
+0.44182837
+-0.02225137
+0.15216994
+-0.74496633
+-0.89916141
+-0.04628181
+0.86830723
+0.57069242
+0.86460733
+0.20171368
+-0.85292242
+0.25902104
+-0.65667063
+-0.73468113
+-0.89912465
+-0.82422547
+-0.93223758
+0.48714626
+-0.02005309
+0.76210678
+-0.25926548
+-0.53714335
+-0.61897257
+-0.60295704
+-0.85632519
+0.49615061
+-0.88114782
+0.15959454
+0.63983583
+0.56087053
+-0.26890999
+0.96332252
+0.13199401
+-0.30787539
+-0.62125242
+0.96949029
+-0.17084837
+0.97216249
+0.87555146
+0.94931781
+-0.09370226
+0.08301508
+0.57122612
+-0.04353642
+-0.94459910
+-0.06376785
+0.70304000
+-0.48948789
+0.42470396
+-0.26633912
+0.03280032
+-0.75140409
+0.97995484
+0.01278555
+-0.89400472
+-0.04209512
+-0.27475077
+0.01112401
+0.58983541
+0.55066943
+0.56267369
+0.45575571
+0.03171599
+0.97735906
+-0.25382608
+0.45278347
+-0.56261900
+0.82911646
+0.81588423
+0.68896580
+-0.35273957
+0.10631263
+0.05112898
+-0.02757716
+0.54775238
+-0.08098006
+0.79387057
+-0.91359408
+0.46309769
+0.66854417
+0.97131455
+-0.63913769
+0.82379425
+0.95903122
+-0.63815680
+-0.58797726
+0.36682880
+0.37727606
+-0.83385326
+0.04014575
+0.46437991
+-0.82700936
+-0.07594126
+0.19953752
+0.54571891
+0.30611622
+-0.25922686
+0.75749147
+-0.67612022
+-0.70215368
+-0.93653721
+0.67281926
+-0.90159430
+0.16998625
+0.63318563
+-0.95103940
+0.21545553
+0.66475976
+0.63264179
+-0.85578826
+-0.54619661
+-0.49523377
+0.89572608
+-0.28902650
+-0.56845635
+0.20603895
+-0.01835150
+0.71900487
+0.23528910
+-0.38972640
+0.84358633
+0.88710523
+-0.35390198
+-0.16084588
+0.93199420
+0.66778052
+-0.78558470
+0.52220595
+-0.54215631
+0.14254582
+-0.30602074
+-0.38872105
+0.14611781
+0.32604516
+0.95439672
+0.28582489
+0.80128062
+0.45850289
+0.36484408
+0.72166944
+-0.26541257
+-0.74995300
+-0.19531184
+-0.07506526
+0.44300520
+-0.44060808
+-0.35587734
+0.42471504
+0.42702019
+0.75845242
+0.21984458
+0.89280105
+0.44905710
+-0.09191120
+0.51008546
+0.99856710
+0.11124885
+0.70875728
+0.33673584
+-0.14500064
+0.86688709
+0.61428738
+-0.77876683
+0.93142819
+-0.59959936
+-0.11204910
+0.27618182
+-0.15668988
+-0.27260512
+0.73479557
+0.56097245
+0.61971390
+0.11882293
+-0.59216765
+-0.89412320
+-0.84009475
+-0.24943769
+-0.30404574
+0.41986334
+0.32182348
+-0.27358735
+-0.48148435
+-0.16822106
+-0.35334319
+0.67431295
+-0.23351228
+-0.62767464
+0.07671034
+-0.28760678
+-0.09844714
+-0.02666157
+-0.35582733
+-0.60293946
+-0.26761335
+0.52748632
+-0.21395397
+-0.08082736
+0.27608788
+-0.61952162
+0.62295246
+-0.22028124
+-0.10648566
+-0.24251688
+0.52424526
+0.15361047
+-0.46217507
+0.59027910
+0.06459141
+-0.78849274
+0.65596414
+-0.38418472
+0.70657003
+0.03320408
+0.97553730
+-0.84927474
+-0.88723534
+0.96704650
+-0.79799218
+-0.41204673
+-0.32280177
+-0.21554941
+-0.64366814
+0.07635403
+0.56404305
+0.05320263
+-0.02540493
+0.48533225
+-0.21573037
+0.58441603
+-0.34925824
+-0.71590865
+-0.35828310
+-0.21281916
+0.71795452
+0.03395605
+0.68567324
+-0.29992002
+0.94566572
+-0.83786203
+-0.97649924
+0.91564989
+-0.46293211
+-0.82152133
+0.55511093
+-0.94356075
+0.78185475
+0.52591860
+0.25648308
+-0.06265754
+-0.83595456
+0.36785722
+-0.37970114
+0.07962859
+0.32045519
+-0.49354661
+0.95225787
+0.22191572
+-0.06564325
+0.03583562
+-0.84531328
+-0.72993505
+0.26840937
+0.18472517
+-0.05011350
+-0.12486839
+-0.64684302
+0.56424212
+0.21213973
+-0.09480786
+-0.26463509
+0.80630922
+-0.28641421
+-0.97633980
+-0.82517797
+-0.42153126
+0.81441975
+0.94082892
+-0.41625166
+0.96182263
+0.71809304
+-0.15284252
+0.77839661
+-0.30871594
+0.78875971
+0.67407775
+0.06077003
+-0.62279260
+-0.65301600
+0.58666563
+0.81749141
+0.07875359
+-0.01430601
+-0.86019069
+0.87504363
+0.11669135
+-0.50788295
+0.84114814
+-0.30224097
+-0.30260992
+0.35478151
+-0.45537233
+-0.95505352
+0.02127409
+0.99589908
+-0.33504683
+-0.02263457
+0.62258351
+0.21478367
+0.07705510
+0.49960625
+-0.27327579
+0.64154112
+-0.52942306
+0.10347450
+0.33759069
+-0.77765888
+-0.17784631
+-0.78284085
+-0.13682145
+-0.87939993
+-0.29726577
+-0.87850888
+0.75565815
+0.35620272
+-0.34823197
+-0.53759867
+0.36891878
+0.17986572
+-0.09837937
+0.46441865
+0.88364446
+0.72473633
+-0.06177777
+-0.35041189
+0.30926478
+-0.39121050
+-0.46708709
+-0.56823379
+0.58752584
+0.72981131
+0.28896129
+-0.43179648
+-0.74520877
+-0.84307094
+0.16001326
+-0.43815123
+0.29095155
+-0.01083602
+-0.84853586
+0.10068817
+0.06185261
+-0.56178889
+-0.16570579
+0.53671068
+0.46658120
+-0.34133874
+-0.69519393
+0.83837847
+-0.39252862
+0.73192831
+-0.47939453
+-0.96070383
+0.13753115
+0.12052160
+-0.16273785
+0.39678773
+0.58394356
+-0.77493255
+0.76813333
+0.78360238
+-0.12115296
+-0.34068449
+0.12596369
+-0.17195029
+0.46074896
+-0.20980240
+0.64423208
+0.60293192
+-0.06958960
+0.14843836
+0.87087978
+-0.75960400
+-0.80530516
+0.09147993
+-0.72997673
+-0.36700040
+-0.06313355
+0.18535920
+0.04107579
+-0.67615779
+0.98462006
+0.75751550
+0.28389971
+0.07258048
+0.54371596
+-0.78038801
+-0.14590331
+0.01663413
+-0.48307369
+0.28828336
+-0.78656843
+1.00272716
+0.02870517
+-0.85404730
+-0.15858153
+0.25046604
+-0.18012399
+-0.17057781
+0.15419879
+-0.59297360
+0.78264222
+0.27740190
+-0.44331532
+-1.03273897
+-0.21709216
+0.37353124
+-0.78517616
+0.66183455
+0.23186315
+-0.46156918
+-0.82793029
+0.96231525
+0.30371776
+0.25577580
+0.11452529
+-0.50352963
+-0.36620437
+-0.42132962
+-0.51447231
+-0.70719721
+0.20688636
+0.35276006
+-0.93042211
+-0.35171584
+-0.29443477
+0.63935616
+-0.99470374
+0.50482032
+-0.84089512
+-0.93347525
+0.72120991
+0.65395187
+0.64788567
+-0.71071517
+-0.35880840
+-0.12622981
+-0.55068826
+-0.01099223
+0.09179743
+0.09896189
+0.42796505
+-0.64559777
+0.03765439
+0.70264131
+-0.20709372
+1.00155487
+-0.05964765
+0.47207940
+0.96384274
+-0.13480482
+-0.21758862
+-0.55479522
+0.25006371
+0.83963828
+-0.85145534
+0.76469847
+-0.18994189
+0.00056054
+-0.02432350
+-0.23294036
+-0.96580975
+-0.09528896
+0.28479007
+-0.61825412
+0.78320188
+-0.69028900
+0.27831364
+-0.34042417
+0.87353119
+-0.62625675
+-0.33532404
+-0.52301681
+-0.40196514
+1.01282392
+0.25543554
+0.25615528
+-0.82070359
+0.78939194
+0.48482046
+0.13298814
+0.77673976
+-0.58579110
+-0.61491828
+-0.88364765
+-0.85666443
+0.61286962
+0.40865031
+-0.47712156
+1.00028993
+0.97593587
+0.76884891
+0.66063301
+-0.62753667
+0.44532564
+-0.02319540
+-0.17290751
+-0.38237800
+0.43829475
+-0.41055093
+-0.65268497
+-0.40211060
+0.95918084
+0.72204381
+0.62889514
+0.70461583
+0.83802655
+0.20268171
+-0.54962819
+-0.99731630
+-0.54775758
+0.54070948
+-0.43395402
+-0.23919386
+-0.26948402
+-0.68065102
+0.76238527
+-0.32444481
+-0.12447235
+-0.24517698
+-0.88423941
+0.86087597
+-0.65910991
+-0.88518363
+0.30144821
+0.54414266
+-0.05741964
+0.46604271
+0.40777535
+0.12130323
+-0.09442149
+-0.48682679
+-0.61325846
+0.85259300
+-0.47623723
+-0.24922624
+-0.95258520
+-0.03727420
+-0.44625903
+0.77185667
+-0.25791410
+-0.32853290
+0.86035414
+-0.32039892
+0.24517813
+-0.64358315
+0.19396299
+0.94696716
+0.56540786
+-0.22798360
+0.00590939
+-0.39090001
+0.17202058
+0.95493979
+-0.94802268
+0.29387999
+-0.69037263
+-0.02872015
+-0.96922130
+0.54035547
+0.84069758
+-0.88368356
+-0.18982962
+-0.04705509
+0.67218253
+-0.89349941
+0.86483701
+-0.39299159
+-0.00638053
+-0.85970331
+0.78115865
+-0.26113723
+-0.11221448
+-0.21296356
+0.32217491
+0.22183054
+0.75852982
+0.86245793
+-0.80861295
+-0.56379596
+0.92591722
+-0.32138914
+-0.23371853
+0.89729083
+0.65220735
+-0.24287295
+-0.82737878
+-0.76718026
+-0.14733282
+-0.93042185
+-0.01229392
+0.44085787
+-0.87043300
+-0.62545222
+-0.80138951
+-0.92255489
+-0.74505295
+-0.73260819
+-0.41262710
+-0.30466816
+-0.18632123
+-0.68908768
+0.34588089
+-0.89135074
+0.32695176
+0.33190415
+0.53709682
+-0.72681330
+-0.36498986
+0.05615047
+-0.28126278
+0.06235381
+-0.45461221
+-0.01570990
+-0.65366601
+0.25445274
+-0.46326816
+-0.24776267
+0.74666400
+-0.42394675
+-0.23228579
+0.40714320
+-0.84455560
+0.27213045
+0.26240848
+0.23407080
+0.57853668
+0.30467190
+-0.35217199
+-0.07827208
+-0.53407203
+-0.77984877
+0.23378407
+0.49665923
+-0.94757784
+-0.36014764
+0.91640903
+-0.90423621
+-0.51332914
+-0.35809747
+-0.40034468
+-0.65244315
+0.85875838
+0.61487145
+0.56890410
+-0.39204482
+-0.82865092
+0.28419397
+-0.40413201
+-0.53693830
+0.53382231
+0.84360299
+-0.91103832
+0.60002251
+-0.82701588
+-0.68078687
+0.86160744
+-0.48561779
+-0.04992743
+0.02834079
+-0.95456961
+-0.49712393
+-0.76322957
+0.21053088
+-0.84119445
+0.39630605
+-0.08413284
+-0.82521069
+-0.83583877
+0.04903893
+-0.28916317
+-0.00445129
+-0.84287568
+-0.10894151
+-0.03111744
+-0.55220080
+-0.79720255
+-0.07222157
+-0.71259656
+0.27830270
+0.50083591
+-0.53079021
+0.92931532
+-0.30972322
+-0.66381789
+-0.78949908
+0.95274195
+0.62526018
+0.35026937
+-0.05602534
+0.15158649
+-0.92142867
+-0.05633177
+-0.57079467
+0.39842784
+-0.54093715
+-0.41339790
+-0.41946245
+0.68026380
+0.77320039
+0.41712748
+-0.24828183
+-0.21670856
+0.32264301
+-0.89820101
+-0.18866698
+-0.90803820
+-0.31134896
+0.49754773
+-0.22118941
+-0.92349458
+-0.94812042
+-0.20338140
+0.79059384
+-0.25958225
+-0.76894873
+0.24457472
+0.22755275
+0.27793181
+-0.10653540
+0.47289581
+-0.36424037
+0.92984519
+-0.97123452
+0.25217787
+-0.91091705
+-0.68777387
+0.51974446
+0.57376066
+-0.54001184
+0.16978741
+-0.54279600
+0.13622193
+-0.33259761
+-0.66588993
+0.79104095
+-0.00011073
+-0.77300266
+0.43608061
+0.66265327
+0.24866071
+-0.97593437
+-0.71109249
+-0.64516231
+-0.04370571
+0.32512793
+-0.00379533
+-0.01600864
+-0.92596347
+-0.21540239
+-0.14174744
+0.62092409
+-0.16547478
+0.08329501
+0.39034262
+-0.90338011
+0.08896670
+-0.92010298
+-0.56068921
+-0.97077161
+0.18563984
+0.14468318
+-0.73724154
+-0.20294582
+-0.87971362
+0.88084290
+-0.16765460
+0.48235871
+-0.36568159
+0.65775731
+-0.93986442
+-0.74639183
+-0.07444136
+-0.19914649
+-0.09662150
+0.28885413
+-0.25907536
+0.17365492
+0.89817527
+-0.51389418
+0.94591803
+-0.45784658
+0.81281297
+0.37729214
+0.43322440
+-0.83860140
+0.83130284
+-0.64056441
+-0.26349499
+0.66725735
+-0.11897970
+-0.14710187
+0.71287503
+0.18993680
+-0.25198893
+0.36044516
+-0.61413262
+-0.50536455
+-0.77077958
+0.64450817
+0.14278735
+-0.75293265
+-0.68948108
+0.26318213
+0.84461741
+0.35996637
+-0.64952206
+0.19006366
+-0.58023623
+-0.02360711
+-0.94969647
+0.55564212
+0.45482543
+-0.76713976
+0.61032956
+-0.25959223
+0.32422232
+-0.92550150
+0.33490900
+0.99004398
+-0.84632818
+0.83522468
+-0.68612107
+-0.72080162
+-0.85073422
+-0.48887285
+0.17030218
+0.03296349
+0.66888390
+0.67930555
+-0.69232008
+0.90112824
+0.54976920
+-0.42725948
+-0.59026977
+-0.11515950
+-0.08231419
+-0.95546982
+-0.11390556
+0.41083352
+0.36091706
+-0.46708159
+-0.56542752
+0.87869874
+0.65004798
+-0.00771601
+-0.23083536
+-0.00184291
+-0.05603238
+-0.09811972
+-0.88360188
+0.28113299
+0.24091999
+-0.55004270
+0.20377592
+-0.75042521
+-1.00112670
+0.70781977
+0.34037435
+0.20020497
+-1.01899714
+0.26478036
+-0.43603653
+0.13630820
+0.52392735
+0.33155703
+-0.58879423
+-0.63645611
+0.27415001
+0.65617252
+0.24900656
+-0.98646015
+-0.79770168
+-0.72992058
+0.85803344
+0.45702826
+0.79039511
+0.17830941
+0.67135726
+0.54040075
+-0.77489339
+-0.03666137
+-0.23356780
+0.77460857
+-0.70312313
+0.49907457
+-0.69585476
+0.24498436
+-0.29846163
+0.38609223
+-0.83930201
+0.37636289
+0.35572397
+0.51103297
+0.18200855
+0.35493847
+0.50703584
+0.98657927
+0.73525445
+0.84233364
+-0.01700874
+0.24181613
+-0.52117810
+0.10475779
+0.25057699
+-0.15165668
+0.03426077
+0.81701252
+-0.47946396
+0.40000074
+0.08659455
+-0.10448346
+0.33232814
+0.21297726
+0.58400780
+0.23319993
+-0.05760532
+0.32252926
+0.26846810
+-0.07984065
+0.54138453
+-0.42812378
+-0.57332180
+0.42144438
+-0.83082593
+-0.30212799
+-0.10499608
+-0.55858686
+-0.84031834
+-0.54361941
+-0.68510536
+0.02029105
+-0.29132016
+-0.66547749
+0.17625351
+0.91814045
+-0.54206644
+0.84597664
+0.91305456
+-0.68526827
+0.47579070
+-0.30473911
+-0.92139462
+0.67854162
+-0.84812666
+-0.92828662
+0.06711125
+-0.29715544
+0.65890719
+-0.50763926
+0.90573431
+-0.55373040
+0.21128535
+-0.87739133
+-0.24834063
+0.90098004
+0.37744570
+-0.91832782
+0.87480749
+-0.50386119
+0.59389831
+0.78162146
+0.52536798
+-0.63720317
+0.82315764
+-0.32088252
+0.93758273
+-0.68689591
+0.38690593
+-0.75559393
+0.96046032
+0.04565322
+-0.39632738
+0.65167947
+0.46112344
+-0.18381862
+0.92060852
+-0.45162702
+0.86511207
+0.09437418
+-0.82995452
+-0.06270307
+-0.16211033
+0.42906117
+-0.40854496
+0.32291412
+0.28862846
+0.65924215
+-0.14726418
+0.13914251
+-0.95025005
+0.66603172
+-0.40467060
+-0.86865571
+0.77857101
+0.51138163
+0.50293231
+-0.50953117
+-0.29253113
+0.26926064
+-0.44047070
+0.39079070
+-0.12490898
+0.81173503
+-0.02378732
+0.96304274
+0.22667909
+0.89387333
+0.31417990
+0.49671924
+0.35525012
+-0.81361493
+-0.54827708
+0.66863239
+0.54636741
+-0.29606563
+0.90712798
+0.13109672
+-0.82209992
+-0.12136805
+0.09274232
+-0.24383432
+-0.98323004
+-0.45537972
+0.45898521
+-0.28218937
+0.51858485
+-0.35972536
+0.95247877
+0.55888045
+-0.72880709
+0.06215942
+0.25032389
+0.91248202
+0.47742116
+-0.36630017
+0.11989939
+0.04092932
+0.13632059
+0.62334275
+0.58460343
+0.30620575
+-0.07533330
+-0.46076936
+-0.70251465
+-0.31009412
+-0.52339002
+0.26467168
+-0.92820528
+0.80341327
+0.22316682
+-0.33452183
+-0.32916766
+0.50266206
+-0.81536911
+0.16328263
+-0.43032700
+0.74645746
+0.41410387
+-0.23322749
+0.50217497
+-0.96098670
+0.66847754
+0.16943061
+-0.88153198
+-0.14280933
+0.69354868
+-0.48910767
+-0.64348659
+0.95169032
+-0.92752760
+0.29621291
+-0.98436046
+0.44399011
+0.01518369
+-0.21619159
+-0.08329928
+0.57080162
+0.25935829
+0.37796354
+-0.12438524
+0.16576445
+-0.27359849
+-0.06107134
+0.78676105
+-0.71702772
+-0.03260911
+-0.24794656
+0.55333459
+-0.07075429
+-0.73554343
+-0.04168987
+-0.13792032
+-0.37267816
+-0.92600605
+-0.15225524
+0.14492583
+0.40663671
+0.07192457
+-0.34800375
+-0.74424526
+-0.26403666
+0.04675317
+0.55843592
+0.45651639
+-0.01466960
+0.30951452
+-0.05364364
+-0.32204986
+-0.49160349
+-0.44613886
+0.99142027
+-0.68679753
+0.17518497
+-0.83910541
+-0.78573254
+-0.05298924
+0.38529050
+0.39135563
+0.48978198
+-0.49378812
+-0.67807841
+0.86058831
+0.80158508
+0.75424600
+0.27819240
+-0.80345096
+-0.43958831
+-0.10986727
+0.31277096
+-0.51775724
+0.75989544
+-0.17183518
+0.89516723
+0.62337601
+0.16945088
+0.67740631
+0.71023929
+-0.84022190
+0.13334775
+-0.83747835
+0.85002792
+0.40623438
+0.40369260
+-0.26741737
+-0.56874150
+-0.72404745
+-0.85633904
+-0.91921867
+-0.74540940
+-0.23406613
+-0.57338312
+0.90496564
+-0.75214970
+0.82676196
+0.76482368
+0.62036228
+-0.53192660
+-0.13156039
+0.75075030
+0.14421570
+0.95734596
+-0.75903766
+-0.66069913
+-0.00141305
+-0.54591578
+-0.72269467
+0.82956016
+0.53712583
+-0.75786117
+-0.75613818
+-0.07783008
+-0.72896481
+0.77862978
+-0.25567323
+-0.15493643
+0.20821965
+-0.26820201
+0.54537845
+-0.64228708
+-0.98067751
+-0.27972013
+0.33341670
+0.71020997
+-0.81063677
+-0.43186647
+-0.90529758
+0.08698571
+-0.66833934
+-0.83997910
+-0.24258721
+-0.93972673
+0.12507904
+-0.87387718
+0.92802680
+0.23851180
+0.36978745
+-0.22472179
+0.13883924
+-0.03061581
+0.08733130
+-0.96089255
+-0.06957340
+0.00402033
+-0.35527313
+0.90982819
+0.91727245
+-0.50446394
+-0.22772849
+0.79791391
+-0.13349313
+-0.07651889
+-0.44064271
+0.30418062
+-0.52944687
+-0.07531255
+-0.75496800
+0.52727115
+0.76768279
+-0.87681651
+0.68830442
+-0.89742407
+-0.11723465
+0.11725080
+0.42940116
+0.16603029
+-0.13909763
+0.44528496
+0.62689328
+0.70545924
+-0.74295533
+0.82147861
+0.24614191
+0.98502636
+0.54434907
+0.52095556
+-0.73795769
+0.97472513
+-0.94156800
+0.63796723
+0.99424553
+0.96493816
+0.58727264
+-0.50092256
+-0.72292954
+0.96107948
+0.98194742
+-0.99053882
+0.03229499
+-0.03197891
+-0.91240312
+0.98232961
+-0.07147300
+0.37756085
+0.23870194
+-0.85005516
+0.63292825
+-0.22606206
+0.16591644
+-0.21956003
+0.48729420
+0.73651636
+0.35940385
+0.10269952
+-0.22840226
+0.74840665
+-0.69388953
+-0.64909679
+-0.43584806
+0.05837560
+0.06414723
+0.69768918
+0.74541759
+-0.53913492
+-0.04859596
+0.52159715
+-0.80629802
+-0.43367046
+0.91262078
+0.33984268
+0.92585707
+0.52946520
+-0.17273414
+0.06110644
+0.23390365
+-0.23393518
+-0.71946761
+-0.58913279
+-0.16378021
+0.63713682
+0.26865339
+0.42383361
+0.72222567
+-0.35930425
+-0.52125949
+-0.80453648
+0.31964290
+0.93690562
+-0.17479974
+0.34993088
+-0.58603698
+0.02437401
+-0.76209345
+-0.35665894
+-0.27485985
+0.90362501
+-0.10413891
+0.64333475
+0.36058259
+-0.01477259
+-0.14429283
+-0.83337469
+-0.05103773
+0.91336513
+-0.98176666
+0.74569762
+-0.50392801
+-0.93152905
+-0.32744998
+0.29133785
+0.12464631
+0.41788602
+-0.55526891
+0.80340469
+-0.07484519
+-0.45848179
+-0.10427386
+-0.03397292
+-0.81629400
+0.34312296
+0.40112424
+0.70288301
+-0.73697203
+0.96093571
+-0.72124627
+0.42275918
+0.41250885
+-0.88314637
+0.50906181
+-0.43511778
+0.35255456
+0.05739391
+-0.77962992
+0.05170962
+-0.45262195
+-0.65528535
+-0.71579886
+0.12578213
+0.56191225
+0.30200288
+-0.87484089
+-0.18026502
+-0.34935474
+-0.06629609
+-0.08642363
+-0.38419657
+0.79837109
+-0.96169221
+-0.22920430
+0.20070297
+0.21614056
+0.46286362
+-0.06102813
+0.72727245
+-0.71646500
+0.02661879
+-0.08826786
+0.19221466
+-0.68014122
+-0.81908915
+0.71558746
+0.33733616
+-0.21322782
+0.00359881
+-0.90153121
+-0.32265881
+0.53430854
+-0.64149131
+0.21360769
+-0.83479375
+-0.08451190
+0.99168030
+-0.24587249
+-0.57252309
+-0.58040738
+0.16307813
+0.22837394
+0.50943194
+0.33096691
+-0.56023279
+0.87608899
+0.92727879
+-0.54753029
+-0.35338653
+0.25253954
+0.74078108
+-0.76155192
+-0.69708325
+-0.20202497
+-0.74017820
+-0.20173411
+0.61978075
+-0.44836668
+-0.76819483
+0.57313426
+0.27711605
+0.01096678
+-0.05465959
+-0.15114819
+-0.94199550
+-0.44955507
+-0.52933701
+-0.85945800
+0.43581784
+-0.53788772
+0.18826286
+0.85509839
+0.20950689
+-0.24886774
+-0.42400347
+-0.44134417
+0.25111014
+-0.40492201
+0.51905147
+-0.83234886
+0.54371555
+-0.73963850
+0.81213090
+-0.90018739
+-0.08312631
+0.91599282
+-0.30948172
+0.07780310
+0.63284042
+-0.67781991
+0.88531120
+-0.40826028
+0.90675793
+0.07651172
+0.42701343
+0.41906435
+-0.49538849
+-0.89291653
+0.72756914
+0.70988736
+0.17533109
+0.06050233
+0.90070901
+0.82837826
+0.41196876
+-0.07068878
+-0.68673008
+0.47604555
+0.86397277
+0.75918954
+-0.57133132
+-0.70204844
+-0.85253511
+0.95477634
+0.54091634
+0.03269237
+0.37833427
+0.34437108
+-0.64084838
+-0.04171711
+-0.78673976
+-0.27662630
+-0.42023793
+-0.09959095
+0.31601389
+0.86190491
+0.64086132
+0.11125923
+-0.39454003
+0.68876730
+0.93175501
+0.44950539
+-0.72169862
+-0.16371970
+-0.04713782
+-0.41612491
+-0.55145937
+-0.00071624
+0.10473622
+0.60827912
+0.18580842
+-0.34852828
+0.61536885
+0.87787391
+-0.55054376
+-0.41721406
+0.61733351
+-0.75558611
+-0.55477559
+0.63455158
+0.26488472
+-0.76466952
+-0.64462438
+0.17752208
+0.90091373
+0.97184935
+-0.98672119
+0.02760729
+-0.18144599
+-0.35780788
+-0.74577114
+0.49547167
+1.00371932
+-0.77108680
+0.64624004
+-0.11110536
+0.10949847
+-0.56211951
+-0.65528093
+0.60366358
+0.06799051
+-0.12851495
+-0.86275947
+-0.77568668
+0.15557231
+-0.73104044
+-0.43099336
+0.42341944
+0.59023167
+-0.61335247
+-0.65855874
+-0.47374881
+-0.39593358
+-0.50116875
+0.31469734
+0.48540390
+-0.67957392
+-0.85790472
+0.34922330
+-0.88695110
+0.04979790
+0.87194968
+-0.20266570
+-0.72894936
+0.33832331
+0.57767256
+-0.73511212
+-0.32853025
+0.05833183
+-0.20357311
+-0.39243974
+0.32308466
+0.45836026
+-0.87118926
+-0.85953456
+0.57123902
+-0.69959814
+-0.70708235
+-0.96528492
+-0.73642854
+-0.46360531
+0.87169569
+0.84793796
+-0.01825723
+0.94385788
+-0.28946453
+0.89755640
+0.74610991
+0.62803258
+0.72999599
+0.04324421
+0.03093586
+0.99195570
+-0.45765878
+0.64038951
+0.58744981
+-0.35449028
+-0.20280235
+0.59298519
+0.52072372
+-0.97095479
+0.76474442
+-0.65938674
+0.83194504
+-0.35937912
+-0.57007686
+0.87510994
+0.75144041
+0.07629800
+-0.26595147
+-0.95091659
+-0.81181732
+0.21420752
+-0.82912971
+0.55685696
+0.75964891
+0.42653583
+0.74877909
+-0.31607481
+0.26749538
+0.82129829
+0.41496749
+-0.09026018
+0.87102726
+-0.47563530
+-0.15500760
+-0.33931261
+-0.08031815
+0.61882094
+-0.75606871
+-0.85626913
+-0.27862758
+-0.81430446
+-0.90397125
+0.01232218
+0.62563161
+0.56068322
+-0.85186236
+0.81043083
+-0.87962364
+-0.12382190
+-0.66575073
+0.94133432
+0.55020867
+0.26828472
+-0.02524801
+0.57651137
+-0.57868899
+-0.23385383
+-0.10216292
+0.91208972
+0.15094956
+-0.79178841
+-0.24483802
+0.24151522
+-0.51207510
+-0.59759560
+0.11074954
+0.19681353
+-0.46278462
+0.66661827
+0.91534217
+0.76486455
+0.20895940
+0.45269458
+-0.86724274
+0.98380945
+-0.36633261
+-0.87648561
+0.02751859
+-0.73761898
+0.04529984
+0.36060303
+-0.00494843
+0.31730139
+-0.57939646
+0.15765837
+0.44400443
+-0.45229787
+0.44801601
+0.85690368
+-0.31664223
+-0.44353902
+-0.74837246
+0.32366073
+-0.47567248
+-0.01031293
+0.97413949
+0.51721791
+-0.68473338
+0.82274271
+0.28570827
+0.56368845
+-0.57411045
+0.51086994
+-0.13226869
+0.76462817
+-0.21386636
+0.02089372
+-0.53076024
+0.70184254
+0.32329525
+0.12834933
+0.95728715
+0.73765117
+-0.49157190
+0.94641263
+-0.86567029
+-0.95717915
+0.42867017
+-0.20624934
+-0.85445767
+0.96943196
+-0.58651861
+0.98247813
+-0.76198267
+-0.13503178
+0.06502323
+0.42724695
+0.60009135
+-0.87379633
+0.97722660
+-0.19029615
+-0.80299595
+0.04024034
+-0.84032073
+-0.67237490
+-0.24891853
+-0.64155002
+-1.02904394
+0.15205625
+0.56470754
+0.27110429
+-0.84885647
+0.49794685
+-0.53332717
+-0.90841809
+-0.70945685
+-0.91975947
+0.15171778
+0.97970229
+0.77966259
+0.94408096
+-0.59560767
+0.18905186
+0.92390930
+0.95895955
+0.25784396
+-0.55790219
+1.01434210
+-0.84713968
+0.11319587
+0.24817080
+-0.51184220
+0.37379263
+-0.62346778
+-0.70062098
+-0.03770828
+0.17284239
+-0.03347810
+0.26052227
+0.75869354
+0.12406302
+-0.76644741
+-0.03819872
+-0.44116832
+0.14256978
+0.01313337
+-0.42085988
+-0.12865213
+0.08609928
+0.06514290
+0.53865536
+-0.72652929
+-0.20914390
+-0.63365477
+0.17033960
+-0.56948068
+0.55693251
+0.06028116
+-0.62735786
+0.38882327
+-0.16038808
+0.83187398
+-0.32824393
+-0.58477621
+-0.14856355
+0.72796487
+0.02830989
+-0.24027686
+0.55620731
+0.92263588
+0.67512549
+0.67318002
+0.89349823
+0.02150238
+0.74085787
+-0.80806254
+0.13237341
+-0.91876286
+-0.20888557
+-0.40192827
+0.76012386
+0.48201918
+-0.58631132
+-0.75863586
+0.69399268
+0.33986037
+-0.06147413
+0.60721598
+-0.07120710
+0.09528293
+-0.64831876
+-0.01717592
+0.47505592
+0.24281474
+0.80994329
+-0.44775641
+-0.01405105
+0.70214548
+-0.81572026
+-0.49005205
+-0.80753476
+0.21955581
+0.94840639
+0.79488985
+0.95481640
+0.17181972
+0.38238825
+0.89386652
+-0.10709071
+0.06340562
+0.04437125
+-0.12151837
+-0.39129198
+-0.52378855
+0.60167457
+0.30092583
+0.66815749
+-0.02627325
+-0.17782002
+0.83071299
+0.80535379
+0.46357276
+-0.34760908
+0.59367727
+0.20941955
+-0.93995033
+0.21376047
+0.38461159
+0.11529277
+0.95591094
+0.88230231
+-0.84250280
+-0.76499590
+-0.47731387
+0.04821352
+0.80848429
+0.60896111
+0.20374954
+0.84304352
+-0.03010409
+-0.63881254
+0.95521901
+-0.79627020
+-0.33317817
+0.95723618
+0.02621000
+0.21806002
+0.30052370
+-0.14211224
+0.01251495
+0.81675393
+-0.32737852
+-0.50914761
+-0.52081373
+-0.96779959
+-0.43448002
+0.42623691
+-0.85913174
+0.39848636
+-0.28442798
+-0.51379988
+-0.94103993
+-0.93664666
+0.96277207
+-0.13544853
+0.25032584
+-0.32802454
+-0.97608946
+-0.02872555
+-0.27198973
+-0.06643713
+-0.58178144
+-0.87335599
+0.20832751
+0.84286259
+-0.54866638
+0.50296694
+-0.61745755
+-0.07005836
+-0.84555697
+0.23584241
+0.17687845
+0.65480875
+-0.22646010
+-0.92051442
+-0.61810881
+0.62015732
+-0.30603317
+-0.96362337
+0.44001995
+-0.88661274
+0.29550528
+0.25040392
+-0.74974531
+-0.98491001
+-0.98026865
+-0.74426362
+0.24431290
+0.41849147
+-0.01772137
+0.63923678
+0.44153832
+0.61622469
+-0.13958264
+-0.51263526
+0.94361388
+-0.83361861
+0.84689195
+0.05742662
+0.96377915
+0.63899085
+0.33363219
+0.71830773
+0.53971284
+-0.71984470
+0.09761997
+0.32106715
+-0.97165532
+-0.63774199
+0.29177868
+-0.72063002
+0.94950810
+0.61910661
+0.07722220
+0.78551774
+-0.76656133
+0.45485166
+-0.34936487
+0.72252213
+0.69401927
+-0.18300837
+-0.89339672
+-0.67073377
+-0.95705896
+-0.70331896
+-0.22620286
+0.18140851
+0.62294826
+-0.15299491
+-0.49328338
+0.24783622
+0.33387167
+0.36249997
+-0.12572316
+0.03129475
+-0.33818902
+-0.49908648
+-0.05292814
+0.17893008
+0.46825735
+0.80886262
+-0.32639602
+0.26356499
+0.94721302
+0.76025207
+0.48899925
+0.42862280
+0.73948583
+0.30898682
+-0.38988125
+0.85868990
+-0.43277256
+0.83640122
+0.28738691
+-0.26236618
+0.96495032
+-0.16848771
+0.18578682
+-0.75470168
+-0.81586951
+-0.84827156
+0.82779743
+0.22510409
+-0.57053705
+0.64515793
+0.14763737
+0.42171129
+0.78838346
+-0.49197443
+-0.68330643
+0.41547048
+-0.66629641
+0.20209336
+-0.29765849
+-0.14335483
+-0.50038242
+-0.31939714
+0.55055556
+0.82183631
+-0.44127369
+0.53934097
+-0.81182470
+0.85377431
+-0.13541850
+0.86454988
+0.95573914
+-0.07084984
+-0.04187769
+0.10018325
+0.18575609
+0.17674720
+-0.30687255
+-0.15657955
+0.24259055
+-0.71505094
+-0.31817746
+-0.43968314
+-0.52895421
+0.10332334
+-0.63191667
+-0.39202631
+0.53317750
+0.17555010
+-0.82878052
+0.69584668
+0.16980720
+-0.29094714
+0.54828703
+0.82700944
+0.72857118
+-0.16710061
+-0.92619839
+0.81361771
+0.17581999
+-0.16330665
+0.41651881
+-0.04012346
+0.32531071
+-0.67151594
+-0.05547816
+-0.58553723
+0.89026415
+0.11631489
+0.39116180
+0.31331217
+-0.30383843
+-0.56958687
+-0.71879792
+0.67148697
+0.42721808
+0.65407145
+0.49535966
+0.95826197
+0.98258269
+-0.45715493
+-0.62828419
+0.16210043
+-0.27975613
+0.07842803
+0.87199664
+0.08287930
+-0.15539092
+-0.08918828
+-0.46489513
+-0.76777932
+0.18476498
+-0.70429596
+-0.61552173
+-0.99871344
+0.32164478
+-0.92605038
+0.05658782
+0.44414675
+-0.71667594
+-0.61954138
+-0.42857206
+-0.81007184
+-0.50772336
+0.79435170
+-0.22784042
+0.28481197
+-0.95687735
+0.32212615
+0.26665235
+-0.83811997
+-0.97761651
+0.50627863
+-0.93445748
+-0.85363767
+0.38574719
+0.69431436
+0.61032987
+0.20759237
+0.81229901
+-0.70121706
+-0.78453988
+-0.22060126
+-0.22116572
+0.22747040
+0.34654355
+-0.29134971
+-0.60518685
+-0.62700748
+0.70684266
+-0.15477276
+-0.16934556
+0.87624574
+0.27712762
+0.39180040
+-0.27494985
+-0.42372608
+0.62979639
+0.31887913
+0.64585912
+-0.11037999
+0.62448764
+0.54380763
+-0.48219740
+0.85893834
+0.71724844
+-0.94876207
+0.75334072
+0.08140755
+-0.41622311
+0.87475455
+-0.45274079
+0.69250119
+0.75223386
+0.19903886
+0.61607254
+0.70338857
+0.77935183
+-0.70704174
+-0.49523371
+-0.52399522
+0.10078466
+-0.77914490
+0.38247430
+-0.17704052
+-0.32533127
+0.08514261
+0.16238928
+-0.94440185
+-0.89535021
+-0.95237871
+-0.46927130
+0.42637908
+-0.77505414
+-0.88520230
+0.44313300
+0.49915886
+-0.87826307
+0.57853472
+0.88676989
+-0.04691589
+0.52065337
+0.79603970
+-0.79886197
+0.95150375
+-0.35058558
+-0.03689319
+0.26848018
+0.22310710
+0.70924473
+0.51352072
+-0.31236494
+0.69482505
+0.70736837
+0.37750936
+-0.81242678
+0.22269058
+-0.96514164
+-0.98191091
+-0.07452053
+0.57469606
+-0.13853061
+0.79747915
+-0.49544781
+-0.96494025
+0.10256851
+-0.75220262
+-0.31296837
+-0.47397918
+0.38691247
+0.00692940
+0.89003813
+0.26127803
+-0.14719176
+-0.05708778
+0.44827151
+0.72371697
+0.76305091
+-0.79144864
+0.65755796
+0.66408658
+-0.19940460
+0.64209914
+0.96889973
+-0.73699310
+-0.49006307
+-0.08442962
+-0.67244035
+-0.09178603
+0.56034219
+0.38494718
+0.30404568
+-0.83903836
+0.07920945
+-0.26798797
+-0.16539282
+0.06781363
+-0.26564419
+-0.34883803
+-0.01667601
+-0.80595097
+-0.05369800
+-0.01188290
+0.92087078
+0.19098437
+-0.38471669
+0.55763173
+-0.40682763
+-0.69477168
+0.72126675
+0.93456030
+0.55588663
+-0.59345084
+0.10326672
+0.10234725
+0.86502433
+0.06900847
+0.67970049
+-0.93755642
+-0.31924522
+-0.71709374
+-0.91812564
+0.44631183
+0.16244638
+-0.30513066
+-0.85640560
+0.64228714
+-0.21444994
+0.68345165
+-0.55526069
+-0.92194243
+-0.63950270
+-0.79824731
+0.55558443
+0.77044535
+-0.39069653
+0.83778572
+-0.63653687
+-0.68439570
+0.10084081
+0.14358866
+0.19303370
+-0.06271589
+-0.88242921
+0.57663202
+0.98612213
+0.50765705
+-0.14542645
+-0.27107322
+-0.30954063
+0.56569529
+-0.70029867
+-0.17834383
+-0.65426365
+-0.52703351
+-0.71687353
+0.27535784
+-0.13612294
+-0.33137059
+0.31948662
+0.66064286
+-0.53600207
+-0.76672509
+0.58609676
+-0.24603343
+0.39882433
+0.64691746
+-0.37995750
+-0.12524754
+0.22320354
+0.95953345
+-0.85508999
+0.31850958
+0.77636397
+0.44394135
+0.70180511
+0.75646877
+-0.81740427
+-0.73009083
+0.59575129
+-0.51546654
+0.45368159
+-0.35211140
+-0.37681073
+-0.50516257
+-0.91704120
+-0.59931523
+-0.19765371
+0.18677628
+-0.54332340
+-0.70053217
+0.54358566
+0.27803886
+-0.41370893
+-0.69759166
+0.03672683
+-0.37352675
+-0.99154672
+-0.30745274
+0.50508928
+0.59315968
+-0.23200518
+0.44283724
+-0.53074542
+-0.84979387
+-0.94534408
+0.67341578
+-0.11366594
+-0.49629962
+0.21394968
+-0.64343765
+-0.22180283
+-0.54267746
+-0.17219037
+0.06774151
+-0.16761374
+0.24362254
+-0.44621152
+-0.42881387
+-0.93350255
+0.72841024
+0.23319483
+-0.02092695
+-0.01816738
+0.27937114
+-0.22373432
+0.29194987
+0.57905781
+0.16617417
+0.25112367
+-0.86722296
+0.81953943
+-0.91348872
+-0.96279381
+0.39957952
+-0.50676435
+-0.40981072
+-0.58654273
+-0.12442225
+-0.28405207
+0.25821328
+-0.37403870
+-0.36036569
+-0.37397605
+-0.88214868
+-0.24349010
+0.71567535
+0.33340812
+-0.34460604
+0.99469721
+-0.75674823
+0.24292180
+-0.31872470
+0.37438544
+-0.03163811
+0.09491570
+0.27527836
+0.75362440
+0.78784978
+0.92863151
+0.73630273
+0.73734488
+-0.61592777
+-0.92616441
+-0.94768039
+0.58777075
+0.94475947
+0.98628811
+0.07267823
+-0.33282060
+-0.56471096
+0.98057864
+-0.97662251
+-0.73938554
+-0.60284090
+0.30649486
+-0.37240254
+0.80687752
+-0.99041633
+-0.35075891
+-0.15031203
+-0.95293018
+0.62709769
+-0.38786925
+0.38359645
+-0.45873849
+-0.25594801
+0.92581441
+-0.74168074
+-0.02104402
+0.06767939
+0.64897830
+0.03621758
+0.90042504
+0.76598776
+0.51580328
+0.50396775
+-0.14906773
+-0.85491475
+-0.55219435
+-0.70782395
+-0.86182671
+-0.53812532
+-1.01219721
+0.30920316
+-0.61457208
+-0.83430033
+-0.62189890
+-0.02015445
+-0.63794707
+-0.61692438
+0.14253593
+-0.36100778
+0.90153701
+0.20976960
+-0.07674617
+-0.28917414
+-0.78252535
+-0.74567830
+0.68217037
+-0.39378013
+-0.58710120
+-0.72523171
+0.52203738
+-0.38381571
+0.25519328
+-0.50639570
+0.64480036
+-0.92037765
+-0.77217304
+-0.86879266
+0.24902617
+-0.17030090
+0.05804706
+-0.00562255
+0.71116240
+0.78736808
+-0.17125173
+-0.50783496
+-0.21258452
+0.16956334
+0.68981949
+0.82958105
+0.13724351
+0.20326738
+-0.36952527
+-0.38198848
+0.91339236
+-0.80550380
+0.55329971
+0.16141528
+-0.60457223
+-0.26129943
+-0.20685169
+0.96932343
+-0.05835992
+0.61774714
+0.37545810
+-0.56405647
+0.27272660
+-0.19254240
+-0.98499895
+-0.93944748
+0.16794123
+0.64485769
+-0.93010670
+0.89278791
+-0.38670200
+0.63376188
+-0.69994733
+0.85760673
+0.50863477
+-0.17381061
+-0.00628603
+-0.47683193
+0.38634369
+-0.74789963
+-0.65475443
+-0.40365428
+0.28117119
+-0.53297983
+0.96985142
+0.20804984
+-0.01711893
+0.43829292
+-0.38030445
+0.17778445
+0.68095694
+0.29851297
+-0.10351547
+0.47370221
+0.15121092
+-0.40963388
+0.54260593
+-0.75341492
+0.57155368
+-0.78488476
+0.55143274
+0.79303448
+0.70447567
+0.86855529
+-0.60828806
+0.17769803
+0.39300270
+0.72319162
+0.71460595
+0.02947380
+-0.12624887
+-0.63932643
+0.10231623
+-0.21342045
+0.63409601
+0.83997594
+0.58684123
+0.02212234
+-0.03781839
+0.51553384
+0.16858944
+-0.77103731
+-0.68687824
+-0.84587986
+-0.50208668
+0.60913405
+-0.07434889
+-0.98314117
+0.22355067
+0.12350585
+-0.40420249
+-0.30321725
+0.68837844
+-0.07228003
+-0.00029825
+0.13696791
+0.04690338
+-0.52803406
+0.92778405
+0.29055782
+-0.42343054
+-0.85177183
+-0.38859105
+-0.04058005
+0.48188289
+0.98708550
+0.30156276
+0.50878006
+-0.06515557
+-0.40344199
+0.12573455
+-0.91581538
+0.93072663
+-0.96788593
+-0.74201268
+0.20675682
+-0.35265053
+0.46426972
+-0.56601624
+0.69456525
+0.33509790
+-0.03423999
+-0.79087342
+0.62782853
+-0.49526644
+-0.85846228
+-0.87865495
+-0.02397506
+-0.70052901
+-0.39600864
+-0.15496210
+0.50113589
+-0.35136496
+-0.07747607
+-0.26717591
+0.82353642
+0.77984338
+0.03907329
+-0.45624852
+0.66392691
+-0.96079953
+0.54866406
+-0.86089713
+-0.63265052
+-0.95563592
+0.83672631
+0.19249505
+0.61484487
+-0.93499623
+-0.72173833
+-0.68073819
+-0.59375066
+0.60093146
+-0.02915499
+0.78369468
+-0.47402077
+0.76104223
+-0.22667348
+-0.10525923
+-0.79834147
+-0.98506444
+0.20008948
+0.80608735
+0.23550435
+-0.40278473
+-0.68643277
+0.04529552
+-0.23824859
+-0.07266373
+0.10594930
+0.46997635
+-0.05378034
+-0.63767907
+0.81542606
+0.79319895
+0.38202469
+-0.82446060
+-0.33164551
+0.65092749
+-0.75939831
+-0.13165474
+0.81922342
+0.67795371
+-0.89075231
+-1.04874189
+0.74455067
+-0.38074013
+0.91402346
+-0.79582679
+0.38484098
+-0.03694676
+-0.92398085
+-0.04252381
+0.88152518
+-0.72371440
+-0.32012422
+0.23630203
+-0.25129957
+-0.02446346
+0.01153941
+0.92881700
+0.36240905
+-0.07993978
+-0.45407316
+-0.47028648
+0.09443295
+0.16481321
+0.38412130
+0.02916154
+-0.93087853
+-0.97947906
+-0.03455617
+0.83806780
+0.59535323
+0.97953364
+-0.07293130
+-0.03606669
+0.66679379
+-0.35260842
+-0.02934116
+0.42135084
+0.53635243
+0.67133205
+-0.86355654
+-0.10701877
+-0.13434346
+0.45140281
+-0.44989239
+0.10036086
+-0.74343756
+0.58400989
+-0.28246954
+0.02678434
+-0.21488988
+0.26995065
+0.56920697
+-0.68001181
+-0.65643612
+0.66673598
+0.81088655
+0.53836552
+0.15285706
+-0.44108207
+-0.43963541
+0.49989250
+0.83208448
+0.58901977
+0.67397978
+-0.27738169
+-0.52332879
+-0.66397860
+-0.71749808
+-0.26325224
+-0.59395770
+0.38697651
+-0.16879054
+0.13930113
+-0.09795753
+0.73579849
+0.47766976
+0.79608508
+0.50279813
+-0.74113039
+-0.77979756
+-0.91448480
+-0.29589908
+-0.10119360
+-0.93492053
+0.30093420
+-0.40184728
+0.15187961
+0.72680934
+-0.67071237
+0.87706920
+0.68443529
+0.92347658
+-0.80324993
+0.62664884
+0.77591032
+-0.61111186
+0.99551345
+0.23255716
+-0.61975539
+-0.41146534
+-0.60755354
+-0.50873878
+-0.79182912
+0.91306612
+0.51898024
+-0.67570152
+0.87630967
+0.11930673
+0.39360617
+-0.07391830
+-0.19370236
+-0.68635023
+0.71423939
+0.22633601
+-0.49790594
+0.86609451
+0.24337880
+0.92888534
+-0.85741856
+0.91833953
+0.11083687
+0.54559826
+-0.86228649
+0.34998922
+-0.04023260
+-0.38004773
+0.89697004
+0.40109218
+0.28035585
+-0.76261877
+0.76180158
+0.75634187
+-0.21229038
+0.54188902
+0.48363950
+-0.53851799
+-0.64435490
+-0.91653243
+-0.22341080
+-0.90063267
+0.90638435
+-0.54976389
+0.90886362
+0.17642325
+-0.01780070
+-0.64684847
+-0.62466098
+0.38972488
+-0.10627530
+0.59983524
+0.57104659
+-0.55139839
+-0.19901413
+0.85109422
+0.34566394
+0.61695236
+0.47219804
+-0.92108152
+-0.86597834
+-0.55649580
+-0.59853678
+0.59845270
+-0.31887487
+-0.48098559
+0.79944049
+0.30968788
+-0.78385622
+0.26432731
+0.86213821
+0.13537564
+0.12654866
+0.75719458
+-0.46029085
+-0.94633163
+-0.26788000
+-0.71620225
+-0.23657438
+-0.84363287
+0.40373958
+0.41686909
+0.99998742
+0.28814759
+0.16701939
+-0.93193905
+0.27928836
+-0.96114110
+-0.45925900
+0.45701655
+0.27043992
+-0.59916298
+-0.79827480
+0.22223811
+0.58674717
+-0.28498841
+-0.73954893
+-0.03973424
+0.23674435
+0.74277149
+0.74660395
+-0.91223703
+-0.60569947
+0.85816387
+0.15222126
+-0.49183167
+0.61163027
+-0.75622192
+-0.32592264
+-0.11563268
+0.96578347
+-0.78683377
+0.62726305
+0.00423937
+-0.12741690
+0.20405199
+-0.37562816
+0.87490147
+0.32069677
+0.15844145
+0.25000434
+0.55694746
+0.28737391
+-0.03812025
+0.83633459
+0.33979442
+0.28105295
+-0.85661663
+-0.72006393
+-0.80612914
+-0.15622901
+0.86872395
+0.71633845
+0.03538829
+-0.71834592
+0.68760331
+-0.94537702
+0.24522358
+0.41410595
+0.82379748
+-0.70711653
+0.81377290
+0.57669870
+0.93686611
+-0.56789940
+-0.58864310
+-0.07790881
+-0.97665370
+-1.02394819
+0.44686320
+-0.92217760
+-0.05065583
+0.55153695
+0.93324153
+-0.75128140
+0.08651640
+0.25945160
+-0.96803297
+-0.55973196
+0.21952474
+0.26451168
+-0.35282387
+0.32471296
+0.56471259
+-0.69420517
+-0.71274389
+-0.44366654
+0.30873545
+-0.12111021
+-0.28742756
+0.27245801
+0.72445836
+-0.02414468
+0.60920127
+0.19165685
+-0.13052518
+0.10349642
+-0.85761562
+-0.21710820
+-0.52471848
+-0.56471214
+0.88756248
+0.68917397
+0.19268699
+0.29843571
+0.08964764
+-0.35870756
+0.94943020
+-0.38385190
+-0.95718158
+0.44322031
+-0.33378127
+0.65534615
+0.56207142
+-0.37277219
+0.46243742
+-0.15495624
+-0.78587375
+-0.94680688
+-0.62626386
+0.30729099
+-0.29905644
+0.49845046
+0.53939761
+0.56448500
+0.33610643
+-0.96332044
+0.31111524
+-0.07444369
+-0.68044486
+0.66742918
+-0.30831515
+0.06654278
+0.50271535
+-0.15223092
+-0.44528249
+-0.06615770
+0.32897314
+0.77933916
+0.30678104
+-0.71273147
+0.88547628
+-0.47663481
+-0.80068989
+-0.09966277
+0.29659591
+-0.08304736
+0.71992269
+-0.67876208
+-0.52803373
+0.26103948
+-0.95847127
+0.34188638
+-0.05503795
+-0.53388467
+-0.51883178
+0.82355015
+0.47293942
+0.36460516
+-0.51465003
+-0.40540794
+-0.02501767
+0.33300602
+-0.00370578
+-0.97949488
+-0.08510299
+0.37495816
+0.32942986
+-0.21516858
+-0.22607052
+0.08407677
+-0.34911603
+0.02472520
+-0.39783750
+0.22224734
+-0.48745968
+0.75285864
+-0.48568404
+0.59505846
+-0.27242941
+-0.34445463
+-0.59101719
+-0.01527452
+0.34902235
+0.88146160
+0.06985287
+-0.42627716
+-0.42671883
+-0.62083666
+-0.90952966
+0.03766276
+0.32392168
+-0.28827423
+0.02594025
+-0.78544362
+0.17815216
+-0.93917127
+-0.08157802
+0.08118797
+0.60267591
+-0.00129297
+0.59777522
+-0.90716442
+0.31821191
+-0.96852562
+-0.83137625
+0.89318597
+0.84088635
+0.29232693
+-0.57151398
+0.30923998
+-0.96595709
+-0.13915884
+0.38937140
+-0.96588973
+-0.08710223
+-0.14496315
+-0.13379931
+-0.65163636
+-0.97893981
+0.96771812
+-0.74408209
+0.87843823
+0.94405293
+0.07628381
+0.78775191
+-0.29352891
+-0.11232996
+-0.48432469
+-0.00991398
+0.43427014
+0.41548860
+-0.25038993
+-0.66291660
+0.51560426
+-0.81962892
+0.14977455
+-0.06485379
+-0.86951520
+-0.72735390
+0.84813786
+0.43229890
+-0.33870482
+0.69195747
+-0.29014611
+-0.22753698
+0.03768301
+0.27454495
+-0.13568091
+-0.01823777
+0.20501280
+0.47788334
+0.55991483
+0.93869483
+0.06744766
+-0.66154152
+0.48865736
+-0.68014279
+0.78561795
+-0.64205462
+0.38845611
+0.82111669
+-0.91129664
+-0.20098352
+0.03629148
+0.47378862
+-0.52146342
+0.71957660
+-0.69356737
+0.37474024
+0.78926790
+0.25496364
+-0.13002610
+0.89182174
+0.14717972
+-0.65300593
+0.37922084
+-0.50318688
+0.80169845
+-0.98681452
+0.08537114
+-0.06231171
+0.41391635
+0.76285052
+0.23880625
+-0.24568081
+0.96463132
+0.98299885
+0.87734330
+0.65461016
+-0.10364270
+0.72814500
+-0.85928358
+0.48417461
+-0.28124678
+-0.69866505
+0.84041822
+-0.56081945
+-0.77850035
+0.99020278
+-0.90103704
+0.79276848
+-0.73663390
+-0.21046168
+-0.17932665
+-0.77110088
+0.71854246
+-0.45951205
+0.05322218
+0.93129182
+0.22980154
+-0.12943757
+0.06366646
+-0.22883373
+0.64963710
+0.50186920
+-0.69778067
+0.84996843
+0.80772960
+-0.06240582
+0.00862038
+0.90106070
+0.47541440
+0.69880843
+0.04477477
+-0.64897507
+-0.58510077
+-0.85287455
+-0.32373226
+-0.24082011
+-0.99152934
+-0.68278810
+0.75961006
+0.70174599
+0.63660145
+-0.99557292
+-0.70398310
+-0.46901530
+-0.48584241
+-0.85547735
+-0.52511999
+0.07556391
+0.72247541
+-0.00921226
+-0.17934293
+-0.97345209
+0.34458947
+-0.90036608
+0.20122910
+-0.92179386
+0.01646996
+-0.48217964
+0.69889736
+-0.35649043
+-0.27699673
+-0.34493405
+0.66403508
+-0.72022757
+0.83414102
+0.08895802
+-0.48101783
+0.62942290
+-0.93402209
+0.86064911
+-0.77274981
+0.08258092
+-0.32835829
+-0.00154549
+-0.86690088
+0.69355762
+-0.77502738
+0.73288643
+0.08688462
+0.60776722
+0.74542677
+0.93024504
+0.61900616
+-0.92046875
+-0.37772739
+0.14577115
+0.06681085
+0.29521453
+-0.37691802
+0.53863168
+-0.45901537
+0.48447216
+0.86738837
+-0.89107388
+0.06895661
+-0.70249367
+0.39460599
+-0.12397587
+-0.49046952
+-0.12284887
+0.70156240
+0.87335730
+0.19337642
+0.12806416
+0.41054428
+0.98215818
+-0.24525028
+-0.98617705
+0.21413600
+0.25074291
+-0.69924578
+0.63102698
+0.44322121
+0.39333510
+-0.00114536
+-0.39546818
+-0.72666004
+0.84667397
+0.73111856
+0.39811230
+0.15601707
+-0.19627130
+-0.30950147
+0.71112204
+0.59473348
+0.37868261
+0.46547890
+0.58258855
+0.59457946
+-0.93253880
+0.29679585
+-0.51970997
+-0.88522437
+-0.87407315
+0.16064608
+-0.39814669
+0.79672980
+-0.27226007
+0.44070852
+-0.85225590
+0.25102377
+0.30246103
+-0.56530973
+0.27587473
+0.59043860
+0.72736371
+0.75501692
+-0.10893083
+0.62720942
+-0.21570176
+-0.78489609
+-0.94107899
+-0.91635978
+-0.50037390
+-0.69010320
+-0.08088237
+-0.38986403
+-0.75941205
+-0.32811409
+0.20536268
+-0.97091702
+0.45698035
+0.71954107
+0.76236784
+-0.39311689
+0.27417266
+-0.79401058
+0.40817690
+-0.53277543
+0.49262989
+-0.14950323
+-0.65082347
+-0.94756727
+0.46126580
+0.64510727
+-0.38371980
+-0.93926803
+0.50730956
+-0.10608333
+-0.28328449
+-0.12252682
+-0.55915615
+0.14718211
+0.98021817
+0.38011074
+-0.13485706
+0.47423303
+0.40365887
+-0.97081866
+0.33949220
+-0.30706686
+0.91800702
+0.19419909
+0.29185343
+-0.21718264
+-0.59045973
+0.65846121
+-0.74123201
+-0.31438184
+-0.99931402
+-0.43808717
+-0.58688802
+-0.23981583
+0.78355968
+-0.57992783
+-0.38496470
+0.93370485
+0.96185803
+0.92455208
+0.13286281
+-0.85711655
+-0.35519671
+-0.60994497
+-0.56108108
+-0.60823148
+-0.35350382
+-0.33362710
+-0.26282996
+0.10286117
+0.36845148
+0.19302547
+0.92796171
+-0.26219189
+-0.32491922
+0.01739347
+-0.91122944
+0.48668039
+-0.23238039
+0.41384780
+0.95727873
+0.78014505
+0.46650720
+0.96381485
+0.70936394
+0.52597201
+-0.47297394
+0.11635029
+0.94421482
+0.18035674
+-0.18855858
+0.34746134
+0.65452623
+-0.10663307
+0.42952836
+-0.15581012
+-0.37438720
+-0.32031864
+0.38729346
+0.29771030
+-0.45468181
+0.44056928
+0.09800231
+-0.77244768
+0.09123755
+0.62640607
+0.26713741
+-0.61551154
+0.07058740
+-0.85965039
+-0.15208822
+0.66496110
+-0.78098711
+-0.14058280
+-0.57530639
+-0.12361187
+0.41371250
+0.60988474
+-0.40135038
+-0.72404063
+-0.16453159
+-0.10279007
+-0.30189930
+0.11203005
+0.62750806
+0.83784898
+-0.93040607
+0.79354742
+-0.65509056
+0.97479319
+-0.18279898
+-0.10346428
+0.64043702
+0.49432038
+-0.58083263
+0.99554080
+-0.59511073
+0.39830982
+-0.48291717
+-0.44616958
+-0.86403347
+-0.29644073
+0.47453065
+0.19715443
+0.73536875
+0.17855388
+-0.97501979
+-0.19177090
+0.28036956
+-0.47749062
+0.48230934
+0.90245492
+-0.46334376
+-0.04083856
+0.81128866
+0.86382357
+0.69123426
+0.38536108
+-0.13028258
+0.47131038
+0.99707642
+0.57609686
+0.82612968
+-0.92516751
+0.08979772
+-0.12535925
+0.04466589
+-0.90268746
+-0.55506911
+0.08686126
+0.06688248
+-0.29851315
+-0.77975838
+0.60124105
+-0.68567664
+0.27946596
+-1.00493303
+-0.48102017
+0.70801234
+-0.55948728
+0.88287452
+0.27520687
+0.84023066
+-1.00397591
+-0.91813689
+0.21405087
+-0.36674541
+-0.15326091
+-0.61980633
+1.02665061
+-0.64390960
+0.78829674
+0.59856150
+0.55447035
+-0.35272237
+-0.93582342
+0.16344245
+-0.03801932
+0.89422434
+0.37985134
+-0.83683936
+0.41047448
+0.95263536
+-0.24148019
+0.34704956
+-0.58115088
+-0.86516645
+-0.79237490
+0.92589997
+0.94517838
+-0.20500702
+-0.20860456
+-0.36804166
+-0.61636809
+0.59952899
+-0.28897953
+0.23097947
+-0.69532450
+-0.30762010
+-0.27664561
+0.91417533
+0.70776243
+0.40083254
+0.30114528
+0.94615437
+0.19004147
+-0.35428121
+0.17705081
+0.57236087
+1.00954913
+-0.16367348
+0.55736928
+0.68296941
+-0.36893557
+0.51760392
+0.23700593
+-0.91218688
+0.32344210
+-0.74362075
+0.67788524
+0.67353754
+-0.91564544
+-0.92348517
+0.53770842
+-0.64924267
+-0.80294505
+0.69846572
+-0.12069890
+-0.79243671
+0.10225460
+-0.68576286
+-0.84014630
+0.36368832
+0.99439907
+0.03992271
+0.21593261
+-0.03188592
+0.65637409
+0.12441606
+-0.08170683
+0.50188369
+-0.08451762
+-0.28097523
+0.46911474
+-0.01017956
+-0.68095199
+0.87889780
+0.97595465
+0.31400384
+-0.19486986
+-0.73818811
+-0.95811469
+-0.31894532
+-0.00846374
+-0.54150123
+-0.91774454
+-0.24551453
+-0.22393743
+-0.91295613
+-0.02628077
+-0.48387646
+0.18254542
+0.36450200
+-0.10376677
+-0.43907890
+0.18462170
+0.00539374
+0.55165094
+-0.10661077
+-0.40456757
+0.34476996
+0.69056940
+-0.97432450
+0.59533307
+0.59332647
+-0.69589334
+0.37769164
+-0.33235714
+-0.97735073
+0.50786559
+0.29514527
+0.37676983
+0.24995319
+0.36124176
+-0.65069152
+0.03127023
+-0.41110362
+-0.00580972
+0.94778548
+-0.08652093
+-0.79425140
+-0.74301883
+0.50244516
+0.87818241
+-0.05495582
+-0.83484743
+0.79108185
+0.55926866
+-0.42344550
+-0.16558857
+1.00829921
+0.98596257
+0.29404452
+-0.54896787
+0.76216446
+-0.88334707
+-0.59609324
+0.43819567
+0.00247875
+-0.06018699
+-0.00445640
+-1.00380683
+0.29361092
+-0.08278416
+0.79465499
+0.00012346
+-0.56614117
+0.11221325
+0.16128314
+0.12508117
+-0.49619599
+-0.81781609
+0.01436665
+0.06925120
+-0.56925302
+0.28571105
+0.21619976
+-0.39688624
+-0.19062024
+0.29718882
+-0.75776902
+-0.22143831
+-0.76576708
+-0.92836491
+-0.42015555
+-0.98476254
+-0.15558226
+0.56160318
+0.96364557
+0.17370354
+0.08809541
+0.30921257
+-0.28599221
+-0.94457915
+0.19832824
+0.39275763
+-0.15895864
+0.15383608
+0.64277560
+-0.38718847
+0.10061700
+-0.77329779
+-0.41289497
+0.47080466
+-0.23659385
+0.16332854
+0.76828476
+-0.33452597
+0.12847580
+0.88424729
+-0.55225614
+0.25437187
+0.88662593
+-0.52023455
+0.66236956
+-0.34686434
+0.05661934
+-0.99528657
+-0.67904050
+-0.93371418
+-0.20124359
+0.39781916
+-0.67290563
+0.61792478
+-0.88267073
+0.03309247
+-0.79997916
+0.59104506
+0.72005398
+0.60491271
+0.85295408
+0.88672906
+-0.29104261
+0.46843307
+0.23264907
+0.33133454
+0.19633934
+-0.54626006
+0.14063127
+0.89159192
+-0.12872172
+-0.52599244
+-0.36124311
+-0.57704614
+0.48243156
+0.69692684
+0.67713605
+0.18695233
+0.82272800
+-0.88580872
+-0.38471771
+-0.86637198
+0.62975334
+-0.13539350
+0.15185953
+-1.02079768
+0.87803857
+0.55886659
+0.51784978
+-0.53009555
+0.52628077
+-0.24225524
+-0.39263064
+-0.02427758
+0.70956352
+-0.03495340
+-0.68821510
+0.93494938
+0.18074230
+-0.55408769
+0.39659438
+-0.24995316
+-0.25652615
+-0.86984234
+0.37715141
+0.16143051
+0.95766618
+0.92639296
+-0.93273243
+-0.45065812
+0.15844498
+-0.36506556
+-0.11449214
+-0.51357823
+-0.48988007
+0.58589183
+-0.39422332
+-0.86746733
+0.98935768
+-0.78978563
+-0.88797235
+-0.07121112
+-0.03423111
+-0.82545585
+0.97281675
+0.24864584
+-0.11080820
+-0.69473081
+0.91976398
+-0.43705193
+0.93228051
+-0.90351568
+-0.15129065
+-0.56345679
+0.07919827
+0.69675508
+0.46396478
+-0.48211545
+-0.18477108
+0.84680854
+-0.07929332
+0.54357032
+-0.79964225
+-0.12945951
+0.56219252
+0.75843808
+0.29068163
+-0.32440089
+-0.50384939
+-0.62025824
+0.02708217
+-0.97071124
+-0.52822820
+-0.26030281
+0.28530724
+-0.34369866
+-0.12383314
+0.22387093
+0.02063916
+-0.65872377
+-0.83019683
+-0.34216979
+-0.19165946
+-0.89792444
+0.41328198
+0.49729924
+0.18117591
+0.56635957
+0.69211042
+-0.19016678
+0.83659040
+-0.26127612
+-0.61846836
+-0.74896560
+0.52701932
+-0.54146141
+0.11199270
+-0.00779826
+-0.10498616
+-1.02490296
+0.83496222
+0.29891030
+-0.93251332
+0.45700598
+-0.11653864
+0.72109318
+-0.96030400
+-0.04134175
+0.19598604
+0.32565432
+-0.96970776
+-0.90589598
+0.49077205
+-0.45149669
+-0.81763009
+0.63292834
+-0.86746962
+0.03335478
+-0.77011241
+0.05383828
+0.49387047
+0.87660696
+-0.69608332
+0.75115059
+0.86384738
+0.26446359
+0.85659568
+0.73377335
+-0.84558636
+-0.97941567
+0.10297674
+-0.26760940
+0.94055535
+-0.79324824
+0.89181429
+0.69563253
+0.19731544
+0.02920197
+-0.97849455
+-0.81340428
+0.30356831
+-0.22204795
+0.53779780
+0.36058382
+-0.63597700
+0.65822242
+0.99474255
+-0.82145257
+0.86990575
+0.16636486
+0.04574233
+-0.86754818
+0.74588543
+-0.15341245
+0.82589584
+0.72493790
+0.77736966
+-0.25696894
+-0.87267001
+0.44569628
+-0.70731684
+0.33080875
+0.16246284
+0.26622377
+-0.31209235
+0.86078064
+0.73795478
+0.49324873
+0.55895798
+-0.67866287
+-0.07133067
+-1.06179604
+0.25102971
+-0.22698868
+-0.23193848
+-0.96728628
+0.58540587
+0.66721587
+-0.43421689
+-0.83427342
+-0.81836048
+0.44209027
+0.04574678
+0.55701426
+-0.11148490
+0.85874363
+0.98048528
+0.47815018
+1.00050685
+0.25966593
+0.20730903
+0.53107790
+0.79946490
+0.87023138
+-0.03457453
+0.82309831
+0.77969806
+-0.94079947
+0.54640030
+-0.15820308
+0.17187516
+0.65297823
+0.68979093
+0.42630490
+-0.66489642
+0.31284103
+-0.32206305
+0.74926337
+0.92930907
+0.21602527
+0.70327614
+-0.77361832
+0.08954701
+-0.22356120
+-0.84817540
+-0.01386298
+-0.11429133
+-0.03064110
+0.01907868
+-0.78244803
+-0.75599492
+0.34689639
+0.21851196
+0.12506155
+0.16023290
+-0.81907613
+-0.91397249
+0.49884174
+0.93287531
+0.93139726
+0.11121815
+0.84396579
+0.47466432
+-0.50864551
+-0.81475396
+-0.75861497
+0.10439180
+0.44543248
+-0.93517953
+0.83408335
+-0.89344914
+-0.66705496
+0.17973243
+-0.12012441
+0.04976937
+-0.57709343
+0.02122371
+0.09414440
+-0.77722930
+-0.36644634
+-0.44776265
+0.09720554
+-0.78091343
+0.49907767
+0.23489008
+-0.78667147
+0.97415094
+-0.91516914
+0.53498599
+0.83891594
+0.38662016
+0.41259602
+-0.30256004
+-0.56001160
+0.33323035
+-0.24845700
+0.22339936
+0.01711446
+0.67210455
+-0.98650808
+0.76418445
+-0.79414388
+0.40998949
+-0.33572509
+0.26044387
+0.77943123
+-0.96889427
+-0.74233057
+0.79477782
+0.96983675
+-0.74736911
+-0.89996598
+-0.95151768
+-0.28941853
+-0.04129275
+-0.05732295
+-0.11640109
+0.43522671
+0.16739372
+0.19390516
+-1.00185116
+0.60734776
+-0.84735599
+-0.43798464
+0.70429545
+-0.10465862
+0.10527310
+-0.10789457
+-0.77266994
+-0.10604812
+-0.08282189
+-0.19423758
+-0.96332640
+0.61934666
+-0.59393589
+0.31077847
+0.17154329
+0.95697018
+-0.65370142
+0.73085427
+0.95102139
+0.42764816
+0.89971129
+-0.51751789
+-0.86582416
+-0.86638382
+0.95142221
+-0.53099443
+-0.36855811
+-0.73000744
+0.62356563
+0.14679680
+-0.19732566
+-0.04513943
+-0.38147241
+0.04717757
+-0.92325701
+0.25139023
+-0.86105901
+-0.22593021
+-0.79879403
+-0.02433088
+-0.21590413
+0.06827736
+0.51782262
+0.85538139
+-0.73278996
+0.89925088
+-0.09150922
+0.69504273
+0.97549469
+-0.97594414
+-0.71945242
+0.92767632
+-0.51122692
+0.81018770
+0.75757968
+0.96496907
+-0.32499629
+0.14534938
+-0.84850690
+0.96396255
+0.34344125
+-0.50558341
+0.61162138
+-0.95873520
+0.01811731
+-0.97989869
+-0.05019027
+-0.19158888
+-0.29651994
+0.38914847
+-0.17750967
+0.20150208
+-0.58352271
+-0.65599087
+0.27763641
+0.28811669
+-0.59508246
+-0.36311007
+0.63498318
+-0.62808529
+-0.69548035
+0.06900609
+-0.68617800
+0.22134340
+0.74942052
+-0.27020741
+0.57498538
+-0.86153112
+-0.57468921
+-0.10768205
+0.30807912
+-0.44337153
+-0.95233711
+-0.31745833
+-0.03617275
+-0.93054660
+-0.63516250
+-0.48115128
+-0.58377445
+0.98331726
+-0.87460586
+-0.91459460
+0.45882154
+-0.80720736
+0.01408422
+-0.29770720
+-0.74390632
+0.50219762
+-0.65839610
+-0.97443898
+0.47129703
+-0.64594170
+0.31643832
+-0.85220642
+0.05640268
+-0.28486151
+-0.87523039
+-0.99547358
+0.76753998
+-0.14481395
+-0.68606403
+0.83842432
+-0.55354121
+0.18199074
+0.70603907
+0.31229794
+-0.79646596
+0.32498825
+-0.77474618
+0.94747138
+-0.64387321
+-0.46055388
+0.99984765
+0.49654138
+0.45223558
+-0.58878624
+-0.55536944
+-0.51216060
+-0.72595438
+0.51013076
+0.12163460
+0.56446815
+-0.60830447
+0.79113746
+-0.96128053
+0.37487447
+-0.73128942
+0.04550493
+0.20796216
+-0.00478715
+0.85933137
+-0.96434591
+0.82545984
+-0.12508774
+-0.05272269
+0.62580514
+0.47647738
+-0.30791909
+-0.23229951
+-0.47450536
+0.74495459
+-0.02274889
+-0.27835310
+0.53763700
+0.60965598
+-0.78194875
+-0.00323689
+-0.08944124
+-0.84052715
+-0.47606921
+0.58447731
+0.47094858
+-0.17963171
+-0.83641511
+0.64662015
+-0.04120255
+0.98849094
+-0.28047186
+0.64471591
+0.38085580
+-0.83689246
+-0.48018724
+0.24801064
+0.54336941
+0.93301129
+-0.39143413
+0.44916189
+-0.76424058
+-0.26578605
+0.31808722
+0.72302234
+0.04000807
+0.52964079
+-0.23235935
+0.60975432
+0.20011163
+0.02551115
+0.45752692
+0.00173545
+-0.90189072
+0.51575089
+0.09749854
+-0.40358335
+-0.40246892
+-0.95353047
+-0.16283977
+-0.09072125
+0.61639726
+-0.15897971
+0.28529871
+-0.51292911
+-0.01275015
+-0.65442926
+0.38875544
+0.00276923
+-0.91008214
+-0.41482091
+-0.46395314
+0.83211863
+0.98985863
+-0.08736920
+0.39062476
+0.37134826
+0.01800203
+0.16827440
+0.03375113
+-0.30795330
+0.49689603
+-0.50128233
+0.55742872
+0.40187478
+0.08081973
+-0.36747289
+0.14816451
+-0.66335675
+-0.53192011
+-0.84049533
+-0.07528859
+0.93355036
+0.72149336
+-0.66631499
+-0.72827232
+0.53738356
+0.96576226
+0.82021332
+-0.94869249
+-0.27447397
+0.30727208
+0.48394907
+-0.59319842
+-0.91471604
+0.47833562
+0.34936142
+-0.34415758
+0.62084115
+0.97191250
+0.52630746
+-0.09776253
+0.46044195
+0.24759102
+-0.12281555
+0.83477414
+-0.95905081
+-0.37252831
+0.96340811
+-0.47729826
+-0.91405790
+-0.08659995
+0.64490092
+0.37733305
+-0.53906825
+-0.00165677
+-0.62505388
+-0.85690981
+0.29993665
+-0.31530964
+0.04214644
+-0.83918488
+0.81492794
+0.51255476
+-0.86003643
+0.21353328
+0.94833446
+0.24942505
+0.21568453
+0.87315834
+-0.26431918
+-0.12542033
+0.75035286
+0.35522842
+-0.74051103
+0.37106013
+0.47529817
+-0.37186933
+-0.99249368
+-0.48098427
+0.35566592
+0.58689833
+-0.03911209
+0.77019656
+0.61876392
+0.96750808
+-0.78479652
+-0.76415160
+-0.42139369
+0.16057980
+-0.30548054
+-0.48861152
+-0.59912348
+-0.44581252
+0.20230901
+0.45851052
+0.09778631
+0.70888388
+0.71888709
+-0.67899299
+0.72352254
+-0.43780118
+-0.17583358
+0.99894023
+0.56739354
+0.41290259
+0.28351951
+-0.16004449
+-0.75032723
+-0.85994823
+-0.06001204
+-0.94304128
+-0.95919692
+0.48918188
+-0.46743888
+-0.64579210
+0.93884325
+-0.39698833
+0.87268150
+-0.16237336
+0.34447908
+-0.95292010
+-0.83385345
+0.50316978
+0.11379814
+0.61706090
+0.58690512
+-0.77632417
+-0.56013206
+0.89632893
+0.30850363
+-0.70401523
+-0.96630321
+-0.98053736
+-0.12281936
+-0.54459628
+0.94714630
+0.78129280
+0.80538547
+0.97024071
+0.68695688
+0.35024416
+0.52627802
+0.98448741
+0.52016497
+0.30443871
+0.36939251
+-0.41590863
+0.80144346
+-0.75247358
+0.14383495
+0.29647434
+-0.90804216
+-0.93932687
+0.88529491
+-0.02782184
+-0.35702068
+0.99330235
+0.71251190
+-0.12501031
+0.90837514
+-0.88378037
+0.48111510
+0.75781763
+-0.32917905
+0.20027566
+0.75814188
+0.37312698
+0.90514064
+0.26768088
+0.84507811
+-0.50129142
+0.80516875
+-0.74365681
+-0.28155547
+0.62019193
+0.98542082
+0.24974680
+0.06074858
+-0.52120027
+-0.43691128
+-0.13495809
+0.35311651
+-0.91404361
+-0.33946836
+-0.00546736
+-0.51500458
+0.28819835
+0.80866098
+0.08090389
+0.60895479
+0.72263583
+-0.32489651
+-0.36797101
+-0.03791427
+0.41397786
+0.27207546
+0.41096355
+-0.05950397
+-0.94176743
+0.22115067
+-0.92984878
+0.38170016
+0.68549247
+-0.94435698
+0.64346654
+-0.08548911
+0.75127931
+0.78509210
+0.09006608
+-0.81909399
+-0.82043117
+0.37393429
+0.78369230
+0.29226184
+-0.75666842
+0.27999684
+-0.89905982
+0.68379524
+0.55450218
+0.22910584
+-0.52377847
+-0.60331736
+0.38136362
+-0.90819201
+0.18413632
+0.48762603
+-0.62187221
+-0.70054927
+0.08662862
+-0.69930947
+-0.76033016
+-0.29099753
+-0.95817593
+0.08415424
+-0.63717142
+0.59075404
+0.22541788
+-0.67914874
+-0.00726793
+-0.19646163
+0.94277539
+-0.00558296
+0.31513886
+0.12103886
+0.58724259
+0.56732335
+-0.19305818
+0.02405610
+-0.59275006
+-0.64685833
+0.57721401
+0.92112334
+-0.52615989
+0.28609584
+0.24337782
+0.81058324
+0.46801607
+0.25659043
+0.18344186
+0.79551177
+0.26376407
+-0.01071757
+-0.29905047
+0.36072513
+-0.44369958
+-0.57765424
+-0.97186057
+-0.13011131
+-0.59704857
+0.83372113
+0.52505722
+-0.74380699
+0.84725748
+-0.99243898
+0.28316962
+-0.15962503
+0.96025548
+-0.79103134
+-0.77520016
+0.07000584
+0.54469451
+0.25855634
+-0.61878108
+0.38629247
+-0.02741607
+0.62556903
+1.01072121
+-0.82601319
+0.90836568
+0.48345158
+-0.48703172
+-0.37098066
+-0.70719806
+0.88557652
+0.98349520
+-0.35854574
+1.00735907
+-0.24331451
+-0.26959226
+-0.28050312
+0.44085350
+0.02699674
+0.43087073
+-0.47122056
+-0.66653520
+0.70616125
+0.02534346
+-0.44035163
+-0.08379335
+-0.64358742
+0.80373091
+-0.40082535
+0.06673857
+0.71720986
+0.83709194
+0.80967298
+1.01625078
+-0.83182496
+-0.33838419
+0.81843827
+0.07730888
+-0.35486210
+-0.73781528
+0.89395201
+0.89116207
+-0.53744232
+-0.47684938
+-0.85245515
+0.22675994
+-0.03154371
+0.83301110
+-0.02105367
+-0.99032307
+0.05945507
+-0.43357532
+-0.38993344
+0.19244526
+0.99492436
+-0.02306123
+0.92571650
+-0.31362153
+-0.63967559
+0.72079570
+-0.79410935
+0.78506342
+0.90007671
+-0.12676234
+-0.06427794
+0.19853530
+-0.77443930
+0.69186731
+-0.00835757
+0.69020306
+-0.55567358
+0.19353992
+-0.06683061
+0.33223416
+0.71431310
+-0.18287868
+0.22095140
+-0.31687810
+-0.62490128
+0.86104239
+-0.86891291
+-0.90685358
+-0.32085607
+-0.30339608
+0.01339951
+-0.20487841
+0.83484529
+-0.34260847
+-0.26071812
+-0.89362222
+0.39141948
+-0.57588324
+-0.58477085
+-0.71583999
+-0.00239336
+0.37238816
+-0.07323843
+0.92913453
+0.08929232
+-0.46633707
+-0.06137968
+-0.87755488
+-0.26552452
+0.37706192
+0.97358300
+0.34560780
+0.61244677
+-0.31929180
+-0.22469125
+-0.30048862
+0.40746699
+0.98411641
+0.79174840
+0.62585097
+-0.19316695
+-0.59318650
+0.01172804
+0.78032022
+0.35190295
+-0.39707085
+0.70258606
+-0.83832228
+0.54965260
+-0.59135769
+0.94667112
+0.14384377
+-0.57394867
+-0.91165950
+0.77090134
+0.10121832
+0.23554930
+-0.27630914
+-0.14165432
+-1.00172672
+0.15058300
+0.19664993
+0.32378520
+-0.19983187
+0.06142781
+0.75669645
+-0.60676646
+0.02043676
+0.44287164
+-0.47290893
+0.19109596
+-0.19315945
+0.61380532
+-0.14137627
+-0.98085651
+0.69354986
+-0.32640195
+0.88171228
+0.83881088
+-0.34994783
+-0.01292479
+-0.78578369
+0.96317358
+0.44157589
+-0.74712189
+0.23676559
+0.44633642
+-0.45234733
+-0.56369572
+0.60280990
+0.67069290
+-0.86901612
+-0.45319437
+0.88936957
+-0.12650934
+-0.75356263
+-0.77740869
+0.88634533
+-0.32339573
+0.55019844
+-0.49815463
+0.34552841
+-0.67205409
+-0.27949921
+0.80539076
+-0.68735073
+0.52565258
+0.87738357
+0.57279358
+-0.03847826
+0.52928666
+0.45415648
+-0.43924278
+0.23949097
+0.43030944
+-0.38655549
+-0.72349953
+-0.83746460
+0.10479755
+0.00283417
+0.45147976
+0.35263119
+-0.46818674
+0.05442607
+0.46362339
+-0.12260805
+-0.93192448
+-0.71678172
+0.70921372
+0.87940207
+0.24630467
+0.85822360
+0.11062834
+0.51545910
+-0.75347721
+0.54782708
+0.16363535
+0.17891609
+0.36203453
+-0.53158939
+0.79947702
+0.03895557
+0.19809423
+0.76415530
+0.73983779
+0.85517319
+-0.21649861
+0.11798622
+0.52107498
+-1.01162082
+-0.82430329
+-0.11094047
+-0.90928713
+0.71699311
+-0.46295465
+-0.30934641
+-0.55228906
+-0.38934677
+-0.05634087
+-0.97433947
+0.43518543
+-0.76684707
+-0.43403330
+0.88217228
+-0.81338425
+0.54783931
+0.59932078
+-0.63629386
+0.43376143
+-0.47983542
+0.40799393
+-0.16812398
+-0.64895918
+-0.14778578
+-0.24083239
+0.55522879
+-0.74067986
+-0.45972727
+-0.26028336
+-0.95997567
+-0.48381029
+0.23667594
+-0.89345029
+0.64650559
+-0.95815659
+-0.44358584
+0.55998469
+-0.42047991
+0.68194851
+-0.04695619
+0.92655981
+0.24966264
+-0.79519906
+0.43636233
+0.86053153
+-0.55615649
+-0.24854500
+-0.45684878
+-0.14477199
+0.46971884
+-0.67058662
+0.71818348
+0.59847316
+0.06826869
+0.25028336
+-0.94509656
+-0.36448966
+-0.14980732
+0.16907167
+0.41072654
+0.32634991
+-0.47850642
+0.19157250
+-0.28145415
+-0.34817991
+0.17030380
+0.03506098
+-0.58220413
+-0.07429189
+0.36346096
+-0.47548726
+-0.36547985
+-0.28237412
+-0.22109648
+-0.03891171
+0.17301969
+1.01485451
+0.45660536
+0.25454495
+-0.01561763
+-0.40990638
+0.42214893
+0.24941404
+-0.91864837
+0.42428005
+-0.21773813
+-0.32475487
+-0.27749853
+-0.77555119
+-0.75942861
+-0.77978488
+-0.50965331
+0.23563940
+0.14255738
+0.65522770
+0.44124286
+-0.12449523
+-0.17413011
+-0.42753897
+0.34676367
+0.74284459
+0.73513623
+-0.60077498
+0.51142438
+0.54022089
+0.74722883
+-0.83391150
+-0.96421728
+0.81317460
+-0.91910181
+0.46466295
+-0.70935359
+-0.41010813
+0.31763169
+0.75018919
+0.57810207
+-0.75184983
+-0.45256915
+-0.62147932
+0.18432763
+0.00244826
+0.51829847
+-0.08596046
+0.08384513
+-0.23178143
+0.37293078
+0.71245309
+0.36810668
+0.31839081
+-0.13693794
+-0.20146777
+-0.24787250
+0.53556368
+-0.43877659
+0.40535759
+-0.46536522
+-0.81455155
+0.92868203
+0.23180506
+0.88408653
+0.15236160
+0.73763224
+-0.47655688
+-0.92940700
+-0.33123792
+-0.11061141
+-0.01422982
+-0.28693753
+0.82909953
+-0.39202548
+0.13410492
+0.71434008
+-0.55446566
+-0.46701388
+0.07154406
+0.63159342
+0.53581129
+0.60524540
+-0.05310335
+-0.57176468
+-0.05851637
+-0.56010423
+-0.25835377
+-0.01852782
+-0.55304855
+0.82150235
+-0.22009123
+-0.48628887
+0.05720069
+-0.70947337
+0.83403590
+0.03704391
+0.89235494
+-0.21655231
+0.59318990
+0.39401617
+0.09836169
+0.91431987
+0.20529444
+-0.06821946
+-0.15539289
+-0.32248801
+-0.01357058
+0.50759241
+-0.43085746
+0.50083239
+-0.78582682
+-0.06855163
+-0.26745280
+0.32655208
+-0.76336647
+0.60919781
+-0.82552267
+0.04599384
+0.99500237
+0.04298898
+-0.29084448
+0.86360556
+0.11867032
+0.19282401
+-0.49789708
+0.09999536
+0.15426956
+0.94906763
+-0.50642614
+-0.19973930
+0.69516983
+-0.87183087
+-0.28480441
+-0.85969332
+0.15533626
+-0.91856673
+-0.30306370
+-0.04300497
+-0.90208697
+0.61135326
+0.49046506
+-0.35772104
+-0.25641661
+-0.85989568
+-0.54204557
+0.13769815
+0.93636298
+0.75968102
+-0.12681560
+0.72503235
+0.68895911
+-0.93597488
+0.39371821
+0.87555169
+-0.19648357
+0.30026239
+-0.51874975
+-0.10560170
+0.53887935
+-0.75324718
+0.89196907
+-0.15611799
+-0.49712756
+0.33604073
+0.95974521
+0.83762341
+0.77904066
+0.97320286
+-0.80307323
+0.63522269
+-0.31604500
+0.12999832
+0.14952120
+-0.36965508
+0.33277111
+-0.92851291
+-0.33194414
+-0.54406907
+0.83026832
+0.42449277
+-0.32816256
+0.05898490
+-0.59486732
+-0.70858999
+0.54758016
+-0.95374778
+-0.25869094
+-0.17203537
+0.87842140
+-0.51576509
+-0.87778775
+0.48503725
+-0.86630701
+-0.43641533
+-0.94223461
+0.73756575
+-0.47241038
+0.46694902
+-0.50379586
+0.29659733
+-0.11685762
+0.26706224
+-0.42795299
+-0.93153449
+0.17647244
+0.87244779
+0.98433515
+0.25956754
+0.38746920
+0.27815562
+0.53617434
+0.37330085
+-0.69940657
+-0.71042561
+-0.93042524
+-0.00100445
+0.78429880
+-0.32410731
+0.26314588
+-0.97746922
+0.39846782
+-0.34176762
+0.22116666
+-0.86797012
+-0.24273081
+0.19485255
+0.71252496
+-0.45274186
+-0.73752771
+-0.51239436
+-0.88815762
+-0.66821450
+-0.69105366
+0.12860252
+0.58708882
+-0.64255344
+-0.03596926
+0.92093694
+-0.40411291
+0.10582135
+-0.17127730
+0.03892708
+0.38272583
+0.28592803
+-0.40966612
+0.25782062
+-0.75321108
+0.17088532
+-0.01261286
+-0.51323643
+-0.67134260
+-0.40687400
+0.49325347
+-0.38374696
+0.30072463
+-0.14393162
+-0.41766667
+-0.50644407
+-0.80873268
+-0.73144680
+0.19873436
+0.19806302
+-0.35342693
+-0.20051073
+-0.33724159
+-0.44930139
+0.31276274
+0.69282520
+0.09604454
+0.32544494
+-0.18595660
+-0.62582883
+-0.69024992
+0.65260470
+0.89191699
+0.01023793
+-0.26777828
+0.93481040
+-0.48825270
+-0.78943910
+0.75815701
+-0.28681993
+0.50816441
+0.71378684
+0.78538823
+0.71903801
+0.07836521
+0.94336557
+0.93996203
+0.74905849
+0.07528877
+-0.89409300
+-0.77711616
+0.88150847
+0.04660511
+0.80794597
+0.98046243
+0.44031489
+-0.70343643
+-0.51742697
+0.17199171
+-0.27297729
+0.89185524
+0.02151597
+0.79059672
+0.16472983
+0.04664230
+0.38100171
+-0.11235535
+-0.49946702
+-0.21148318
+-0.35007334
+-0.30494654
+0.56742597
+-0.08846039
+0.15713441
+0.05158043
+0.99951410
+0.52845681
+-0.14064407
+0.68757033
+0.28509068
+-0.54446089
+-0.83220091
+0.63023615
+0.77801836
+-0.70435059
+0.40400231
+-0.28449070
+0.92170179
+-0.42073536
+0.33657050
+-0.34372556
+0.64525497
+0.95955253
+-0.60457236
+0.65024102
+0.32828212
+-0.93168975
+-0.05899531
+-0.13812333
+-0.35279059
+-0.83580707
+-0.43079895
+0.13989902
+0.66398144
+0.93007278
+-0.05820793
+0.76612580
+-0.25612032
+0.67755222
+-0.39224166
+-0.26756412
+-0.58189645
+0.57742441
+-0.50656128
+-0.40934980
+0.37383878
+-0.42195594
+-0.80015649
+-0.01108783
+0.10099030
+-0.78592217
+0.70180726
+-0.56420657
+0.08934855
+-0.34675694
+-0.12636387
+-0.13999861
+0.97188413
+-0.70449048
+0.63539374
+-0.37558728
+-0.38470697
+0.79637218
+0.96487391
+0.33105242
+0.34658277
+0.43557167
+-0.57634288
+-0.97350871
+0.54802489
+-0.15397513
+0.56503832
+-0.68502903
+-0.20088929
+0.50923872
+0.84796083
+-0.44587851
+-0.84370016
+0.28811502
+0.16684759
+0.04168296
+0.60846174
+-0.03870690
+0.57014084
+0.96312344
+-0.04337960
+-0.59855121
+0.68944442
+-0.82378973
+-0.64306948
+-0.47967118
+0.15629578
+-0.84872723
+0.60939705
+-0.35871673
+-0.52206379
+0.54014277
+-0.84790531
+0.73621786
+0.74824119
+-0.90432543
+-0.24237162
+0.92203641
+-0.58947897
+-0.87100166
+0.06547689
+-0.62533778
+-0.69425556
+0.03852534
+-0.00767130
+0.77445471
+0.29921925
+-0.23699325
+-0.63236251
+0.26827192
+-0.75574264
+0.82189584
+-0.17315125
+0.62717950
+0.07386756
+-0.44721305
+0.25932765
+-0.82724051
+0.93682182
+-0.66187778
+0.73836517
+0.93219113
+-0.71723634
+0.96440709
+0.67390168
+0.28671050
+-0.23576337
+-0.02503300
+-0.25595963
+0.41752028
+-0.36240894
+0.98810554
+0.76136923
+0.86748838
+0.89654005
+0.54097760
+-0.20764518
+0.16875720
+-0.63178176
+0.88325417
+-0.31556267
+-0.47160298
+0.88771224
+0.10765481
+0.70252681
+0.29491484
+-0.00410670
+0.90776217
+-0.76987180
+0.10038698
+0.52464271
+-0.54707205
+-0.48973310
+0.64450777
+-0.00158697
+0.88561833
+-0.21089238
+-0.39584172
+-0.46346861
+0.82621312
+0.74615061
+0.51224613
+-0.08443773
+0.79985952
+-0.20377386
+-0.83460082
+-0.29879910
+-0.50912619
+-0.56281674
+-0.27668822
+-0.30809814
+-0.25132400
+0.04306090
+0.64850724
+-0.81218748
+0.26570308
+-0.82790348
+-0.75226955
+0.82739031
+0.27012265
+-0.55241403
+0.24403059
+0.15348577
+-0.30272472
+0.86071086
+0.99826324
+0.66379797
+0.45038033
+-0.88116474
+0.80261135
+0.25029016
+-0.05405623
+-0.05809158
+0.55156767
+-0.28845227
+-0.07890952
+0.62000096
+0.45249033
+0.08538222
+0.43160093
+0.88499856
+0.48528636
+-0.31769252
+-0.38156456
+-0.65057790
+0.49125624
+-0.08800370
+0.76472712
+0.56669950
+-0.57070416
+-0.75347899
+-0.34558946
+-0.35400248
+0.69053888
+-0.94633170
+-0.25258446
+0.81957877
+0.38116419
+-0.28844702
+0.42280984
+-0.07332367
+-0.50754419
+-0.85647270
+-0.28625858
+0.46668005
+-0.40371996
+0.40439939
+0.03666818
+-0.54849097
+0.62016714
+0.43545294
+0.41856384
+0.21387470
+0.04683828
+0.63131857
+-0.26100212
+0.11128044
+0.65412843
+-0.24913210
+-0.87699986
+0.09523439
+0.43129587
+-0.56874552
+0.96850145
+-0.50187010
+0.80843604
+-0.91901800
+-0.07567561
+0.93140566
+-0.38071865
+0.08774090
+0.05142677
+-0.54631734
+0.64882135
+-0.49001098
+-0.02072704
+0.33748496
+-0.12921554
+-0.08207923
+0.31747377
+0.58635044
+-0.52566227
+-0.50766775
+-0.88447857
+0.77198756
+0.05962348
+0.11818910
+0.92047346
+-0.68244770
+-0.43643451
+-0.92682850
+-0.90397299
+-0.21852177
+0.32022476
+-0.23096240
+0.53943264
+-0.16888213
+0.23227382
+0.07411003
+0.75782776
+-0.44582182
+-0.05814719
+0.20270169
+0.63576782
+0.49039543
+0.26764905
+-0.12571567
+-0.60543162
+-0.09798992
+0.33207524
+0.96859157
+-0.48562080
+-0.25868416
+0.68610060
+-0.90005528
+0.19820011
+-0.21097738
+0.19307709
+0.54270172
+0.66077840
+-0.95435608
+0.45606768
+0.82083637
+-0.77612546
+-0.13303098
+0.73129305
+0.95616177
+0.66952407
+0.94792311
+0.86423948
+0.67241800
+-0.94577049
+0.59593468
+-0.26318556
+0.42013543
+-0.41769375
+0.57620042
+-0.36842959
+0.72721563
+-0.85849641
+0.04482159
+-0.65771908
+-0.22786841
+0.04410230
+0.71861764
+0.01258841
+-0.72734462
+-0.75563804
+-0.62778596
+0.36373250
+-0.60007474
+0.03217417
+-0.82529944
+-0.32316248
+0.28616750
+0.76014651
+0.78701476
+-0.78442704
+-0.77439108
+-0.61128851
+0.91086126
+-0.56376192
+0.01961175
+-0.57262718
+0.85844547
+0.80372157
+0.83062450
+-0.71942971
+-0.01517660
+-0.27299275
+0.18497182
+0.60264037
+0.87937910
+-0.80619646
+-0.28279719
+-0.06455457
+0.62027950
+-0.48206984
+0.61838192
+-0.74631883
+0.78762894
+-0.05244528
+0.43336465
+0.41873448
+0.93650547
+0.86161437
+0.02552874
+-0.51683102
+-0.48975757
+-0.46285098
+-0.70843914
+-0.91373911
+-0.78535322
+-0.35168290
+0.43295272
+0.06955304
+-0.46991805
+0.26478023
+1.01488562
+0.02081849
+-0.66753689
+0.47001464
+-0.99231584
+0.00206938
+0.48091224
+0.87040471
+0.97720008
+0.76063229
+0.74978282
+0.32587752
+0.84474779
+-0.28920747
+-0.51636240
+-0.53715083
+0.37004990
+0.55696164
+0.80800399
+-0.20974277
+0.92406252
+-0.84507711
+0.33716214
+-0.49481911
+0.19136147
+0.80986411
+0.14838319
+0.29400762
+0.75230668
+-0.31796673
+0.02777763
+-0.34074263
+0.63695331
+0.97820410
+-0.52990506
+0.22197940
+-0.93767348
+-0.41398509
+-0.69019099
+-0.73952036
+-0.61847709
+-0.04857426
+0.68839963
+0.46189802
+-0.55997944
+-0.85190174
+0.60447512
+0.85751138
+0.46143791
+-0.61420167
+0.84294378
+0.06480271
+-0.32929385
+0.19932638
+0.97183304
+0.76259920
+0.87051759
+-0.04398820
+0.56955049
+0.28583816
+-0.06707315
+-0.57659282
+-0.31341866
+0.53982321
+-0.17961783
+-0.52826394
+-0.01489769
+0.26342183
+0.38910205
+0.49647240
+0.15272325
+-0.53583815
+0.03478116
+-0.62954448
+0.12532318
+-0.36063797
+0.67798644
+-0.80287226
+0.52792148
+-0.06608244
+0.49996950
+-0.56303037
+0.80698833
+-0.78385606
+0.76523017
+-0.51364898
+-0.40240256
+-0.28178393
+0.92174818
+0.98304867
+-0.59631127
+0.79965333
+-0.76249842
+0.58653959
+-0.79443272
+0.28168825
+-0.10915673
+-0.60693920
+0.10447154
+-0.02235184
+0.21991253
+0.17865911
+0.40012095
+-0.01570705
+-0.01201534
+0.47901243
+-0.32102222
+0.03551854
+0.12751265
+-0.27131291
+-0.13982944
+-0.49474559
+0.40310288
+-0.47756367
+-0.57873886
+-0.60255441
+0.85826262
+-0.55561008
+-0.73973427
+0.58891490
+0.10049520
+-0.81311925
+0.52811966
+-0.85974809
+-0.61902952
+0.00936652
+-0.75089431
+0.52266584
+0.67095808
+-0.06650595
+-0.00968099
+-0.53189409
+-0.55621743
+0.36905750
+0.52500231
+-0.95355678
+0.05096911
+0.29114092
+-0.81138565
+-0.24948940
+0.14671060
+0.97100134
+0.09520889
+-0.39938003
+0.37119207
+-0.84109595
+-0.06028480
+0.92750690
+0.04571731
+0.18315447
+0.79933789
+0.27712008
+0.42445079
+0.52665433
+0.39098232
+-0.44032784
+-0.51104410
+0.78962714
+0.30511470
+0.35989670
+0.33658776
+0.38215019
+-0.61071087
+0.75963582
+0.55220144
+0.52169863
+-0.54493157
+-0.75184897
+-0.72455609
+-0.92969957
+-0.83860067
+-0.06242113
+-0.24870289
+0.48754199
+0.29288743
+-0.39151725
+0.71709102
+0.06237613
+-0.67784918
+0.84374597
+-0.63773847
+-0.53498197
+0.70234018
+0.17826590
+0.41766712
+0.34965804
+0.72181548
+-0.10429368
+-0.55126340
+-0.11616300
+0.19660798
+0.34476950
+0.23821819
+0.86986454
+-0.41275390
+-0.36913970
+0.23374046
+0.46765811
+0.58519743
+-0.32099041
+0.51000289
+-0.22076460
+0.87608129
+-0.80488003
+-0.26021342
+-0.06511195
+0.41775181
+-0.25618824
+-0.24885883
+0.96305899
+-0.63476866
+0.76283403
+0.74282407
+0.64977498
+-0.15316631
+-1.01905394
+-0.11070465
+0.87910013
+0.73928463
+-0.76386512
+-0.83298799
+0.17502649
+0.64675384
+-0.68269755
+0.23848395
+-0.01827620
+0.40263463
+0.09505949
+-0.04227853
+-0.06948163
+-0.10957554
+-0.68817134
+-0.42867037
+-0.29550946
+-0.83657790
+-0.20415721
+-0.46717130
+-0.22000641
+0.84445610
+-0.44286672
+0.17111408
+0.70480309
+-0.27730402
+0.63626800
+0.46016289
+0.90490657
+0.49500813
+0.53362006
+0.48786169
+-0.18621468
+0.90819013
+-0.53086230
+-0.85996238
+-0.79438522
+0.22996391
+0.82395824
+-0.95217787
+-0.62395313
+0.09508156
+-0.35897301
+0.25645139
+-0.55931326
+0.74540330
+0.74279475
+-0.66422846
+0.65039284
+0.59988636
+-0.31776300
+0.65175149
+0.90899292
+-0.88015254
+0.44368571
+0.50504699
+0.26297150
+0.34869971
+-0.61665532
+-0.42169026
+0.05212741
+0.43715149
+-0.69743459
+-0.31146769
+0.85064681
+-0.41566225
+0.70142936
+0.20707195
+-0.60162764
+0.82995987
+0.29789337
+-0.15205756
+0.89805590
+0.08677448
+0.22221774
+0.90659151
+0.74109859
+0.19002785
+0.90135890
+-0.33909183
+0.66610578
+-0.34330277
+-0.65502754
+-0.28498001
+-0.27130987
+-0.66366163
+-0.40907459
+0.75122635
+-0.96783802
+-0.05472104
+0.80729520
+0.08928692
+-0.51786349
+0.78086254
+0.73447206
+-0.44647800
+-0.27915464
+-0.20331304
+-0.90912489
+-0.51153280
+0.75226875
+-0.62656011
+-0.12774915
+-0.30749499
+0.20620173
+0.41733250
+0.70370091
+0.97325730
+-0.86978501
+0.77884101
+0.23797502
+-0.13812653
+0.45730296
+-0.48761986
+-0.98994058
+-0.69410533
+-0.39433421
+0.11101963
+0.32557644
+0.11459597
+0.04209123
+0.57090488
+-0.36893644
+0.77148726
+0.22942362
+-0.66149490
+0.34508471
+0.95987515
+0.06161519
+0.74298379
+-0.35324006
+0.20878019
+-0.83879043
+-0.66277146
+-0.19633692
+-0.91437218
+-0.78560861
+-0.91753361
+-0.43689161
+-0.03546121
+-0.82217690
+-0.16779084
+0.13420719
+0.13493076
+0.02246588
+0.76686915
+0.96682913
+-0.17149311
+0.77236997
+0.36908340
+-0.07863197
+-0.38219692
+-0.85289747
+-0.46521304
+0.10131097
+0.29936210
+-0.76336679
+0.57134612
+-0.21309072
+0.73538498
+-0.04043257
+-0.01890559
+0.32778361
+0.81589928
+-0.83388125
+-0.83595028
+0.58030373
+0.00750739
+-0.10508330
+0.24064105
+-0.38583048
+0.43072230
+-0.34854739
+-0.82680888
+-0.84806247
+-0.63681752
+0.82278817
+0.38214212
+-0.37200843
+0.39159877
+-0.91716718
+0.15569687
+0.74349375
+-0.20531151
+0.61631801
+-0.93117557
+-0.85594680
+0.03174755
+-0.32325728
+0.58546862
+-0.83406494
+0.90454136
+-0.57489878
+-0.00163849
+-0.80741297
+-0.23846083
+-0.78302746
+0.62745819
+-0.82029287
+-0.20253599
+0.42886823
+-0.55211389
+0.09143166
+0.22847926
+0.14883789
+0.99605508
+-0.93862448
+0.21639611
+0.18517661
+-0.85332561
+0.15356560
+-0.88205527
+0.25824026
+-0.49402380
+-0.39931881
+0.31329979
+0.31979479
+-0.35263034
+0.97955636
+-0.35421924
+0.31647548
+-0.62669906
+-0.99435406
+0.41909863
+0.65404539
+0.34430022
+-0.97227485
+-0.94343922
+-0.31981103
+0.65598338
+-0.18072820
+-0.11930114
+-0.34113724
+-0.21441552
+0.08522088
+-0.92729122
+-0.62864659
+0.54550705
+0.79867675
+0.28077993
+0.30942598
+-0.64909545
+-0.12999220
+0.63442371
+-0.23343922
+-0.05998900
+-0.30610685
+0.50512697
+-0.50794701
+0.26676713
+-0.13555893
+0.74798690
+-0.59271272
+0.87587207
+0.54356238
+-0.77853848
+-0.48497264
+-0.65351255
+-0.94405248
+0.08439325
+0.76283154
+-0.91772568
+0.74325280
+0.41944104
+0.85030684
+0.40506270
+0.32519169
+-0.47484029
+-0.69100125
+0.11119841
+0.65481469
+-0.31483896
+-0.55438333
+0.51444524
+-0.85525827
+-0.04000946
+-0.47613572
+-0.95464337
+-0.43178175
+-0.41571881
+-0.81353293
+0.31402719
+0.15710970
+-0.44548541
+-0.51222103
+0.90531329
+0.00139215
+-0.72394174
+-0.30768279
+0.86750516
+-0.58602962
+0.18634678
+-0.51373429
+0.75553039
+0.08096529
+-0.22129711
+0.28619936
+1.00237728
+0.89517611
+-0.42712852
+-0.40272165
+0.99105901
+0.03012198
+0.20823176
+0.40514612
+-0.67675812
+0.07752779
+0.58512180
+0.53078131
+0.14607090
+-0.95423584
+0.57924611
+-0.85899151
+0.29371752
+0.68370130
+0.59069322
+-0.62921614
+-0.55523770
+0.30998353
+0.01000957
+-0.28049172
+-0.57650706
+0.77936213
+-0.25978140
+-0.73644867
+0.13416207
+-0.37356971
+0.85545204
+0.63461320
+-0.02810383
+0.03046894
+0.59510161
+0.91667306
+0.92489423
+0.08463013
+-0.50619972
+-0.59985618
+0.04017696
+-0.09494837
+-0.87954287
+-0.39940357
+0.34155716
+-0.41184664
+-0.86342290
+-0.60025382
+0.69066775
+0.35588177
+0.01056853
+-0.94417140
+0.60760438
+-0.42097020
+-0.96436117
+0.66548014
+-0.43880426
+-0.77023587
+-0.32870752
+0.72428806
+-0.25861350
+-0.00038551
+0.69563162
+0.50040090
+0.31971336
+0.35229671
+0.20917824
+0.47461450
+0.75984597
+-0.60733595
+0.02071989
+-0.14040798
+0.45840514
+-0.35107154
+-0.62034297
+0.97662294
+-0.92600892
+-0.95118933
+0.85973597
+-0.15868360
+0.03958392
+0.46412599
+0.44645894
+-0.59352642
+0.15989268
+-0.65313083
+0.54502165
+-0.01157337
+0.57174373
+0.32084644
+-0.08118141
+-0.69705278
+0.82045245
+-0.84238307
+-0.71639559
+0.66472661
+-0.07324737
+-0.92128517
+-0.46279776
+-0.42590845
+0.09387064
+0.52154434
+-0.49889249
+-0.90798251
+-0.96043385
+-0.88535349
+0.05110133
+0.53000104
+-0.60215250
+-0.63019815
+-0.83400603
+0.44901752
+-0.60099870
+-0.45010191
+-0.89140478
+-0.70687443
+-0.83968343
+-0.24721634
+-0.70789105
+-0.02557236
+0.29093230
+-0.65098929
+-0.74573112
+0.09608614
+-0.23163372
+-0.88238689
+-0.06198943
+-0.77564071
+0.12732732
+0.09133172
+-0.10395968
+0.95667827
+0.47601485
+-0.50865215
+-0.86275546
+0.57060027
+-0.57353666
+0.53950715
+0.36010754
+-0.37108558
+-0.44919658
+-0.94474600
+0.95959651
+0.59460127
+0.03880572
+-0.52613965
+0.44172430
+-0.63283011
+0.26783311
+-0.63083509
+0.66851270
+-0.07995445
+0.94066167
+0.50128353
+-0.70524788
+-0.89600651
+0.71910167
+0.48168933
+-0.39124590
+0.12479317
+-0.82246478
+0.46116292
+-0.47114766
+0.47818696
+0.06918323
+0.37030101
+0.65660369
+-0.80728836
+0.69907355
+-0.70589390
+-0.63065258
+-0.70934784
+-0.41472256
+0.69444883
+-0.49540943
+-0.31851363
+0.83312178
+0.47864425
+-0.22137707
+0.29430699
+0.06072652
+0.56093764
+-0.56693688
+0.91289270
+-0.62680483
+-0.06246585
+0.11474049
+0.14296246
+-0.62772092
+0.77580416
+0.19950342
+-0.26330394
+0.37879479
+0.14172435
+0.04651976
+0.74723208
+0.40033066
+0.64926350
+0.02592695
+-0.56602100
+-0.83707844
+0.85620189
+-0.00610769
+0.92020607
+0.00527191
+-0.21832210
+-0.95672013
+0.46880329
+0.61755633
+-0.23035789
+-0.45540863
+0.88655317
+-0.36417186
+-0.14909637
+-0.52512878
+0.55403149
+-0.02011043
+-0.13609076
+-0.15852654
+0.55397987
+-0.90476639
+-0.55403331
+-0.44253069
+-0.84135802
+0.61100054
+-0.31459296
+0.50760376
+0.35533512
+-0.18750036
+-0.79148595
+0.18012607
+0.93413234
+-0.87103732
+-0.08020490
+0.50380206
+0.06414711
+-0.09777313
+0.64959204
+-0.58369204
+-0.21796000
+0.94014084
+-0.72451282
+0.39247012
+0.68336833
+0.75999117
+0.81885588
+0.14203310
+0.02214837
+-0.30571276
+-0.18057251
+0.02816892
+0.54830253
+-0.91842821
+-0.59108490
+-0.80423304
+0.56958663
+0.44729257
+0.96654487
+0.71635938
+0.69974005
+0.10640693
+0.09095347
+0.09566474
+-0.77894738
+0.94492030
+-0.43074137
+0.03214931
+-0.52428797
+-0.23030561
+0.39355469
+0.05097163
+-0.18519032
+0.17328334
+-0.99579001
+-0.79374653
+-0.10529667
+0.67822766
+0.71922457
+0.64114439
+-0.48591709
+0.11501420
+0.04436803
+-0.08045191
+0.52733421
+0.05417168
+-0.90550938
+0.32761467
+-0.14176887
+-0.56196105
+-0.48995578
+0.40288758
+-0.57893181
+0.02669668
+-0.80421306
+0.42699277
+0.48951590
+-0.33730257
+-0.16261047
+-0.50646788
+0.97046244
+-0.08855945
+0.95649862
+0.40363669
+-0.17597020
+0.18362105
+0.34421515
+0.04152155
+-0.65098488
+-0.59223539
+0.92532146
+-0.75170343
+0.80704641
+0.50546920
+0.76808512
+-0.88728710
+-0.52000275
+-0.55754814
+0.37611842
+-0.19455630
+0.88810921
+-0.12565929
+-0.33052635
+0.02077723
+0.99415481
+0.73195338
+0.63465166
+0.40402639
+-0.32652122
+-0.11251789
+0.67697382
+-0.88903975
+-0.58052379
+-0.22841585
+-0.07079315
+0.38679802
+-0.79167290
+0.05974877
+0.69387889
+0.24598598
+0.11741567
+0.52982676
+0.60890448
+0.33319855
+0.79821551
+-0.40819627
+0.63636565
+0.87810004
+0.26938581
+0.00868011
+-0.91648735
+0.71793044
+0.74245322
+-0.42184365
+0.22807896
+-0.92358762
+-0.95694903
+0.63274646
+0.28918040
+-0.14570928
+-0.61220464
+0.50748765
+0.02529299
+0.39160895
+0.26351452
+-0.24085277
+0.26371300
+0.97284400
+0.11859882
+-0.49255967
+-0.40869099
+0.84797978
+0.04774082
+-0.60444948
+0.21953166
+0.91751039
+-0.55660048
+0.21968412
+-0.07335198
+0.16726005
+0.34963691
+-0.89377424
+-0.59948081
+0.44232869
+-0.89681992
+0.59418595
+0.32953429
+0.57847011
+0.75644481
+-0.10136181
+0.80555177
+-0.01526350
+-0.82068121
+-0.45790321
+0.61022663
+0.34801173
+-0.37044317
+-0.03771728
+-0.70349559
+0.62151885
+0.34373605
+-0.09089124
+0.29517722
+0.09546041
+-0.92350186
+0.13781261
+-0.13156098
+-0.57891756
+-0.75311975
+-0.63958821
+0.43414855
+0.67338991
+-0.94830068
+0.35339034
+0.28169978
+-0.23797250
+-0.35885215
+0.90240312
+-0.45114869
+0.97366572
+0.40108132
+-0.79599722
+-0.60631625
+0.26166103
+-0.58285793
+0.59344761
+0.07278836
+-0.37293561
+-0.84160482
+0.50000925
+-0.01520610
+0.98819674
+-0.07077415
+0.94334166
+-0.49463308
+-0.81518043
+0.78513076
+0.82593421
+-0.03995270
+0.15804727
+-0.86014429
+-0.29285755
+0.69486300
+-0.95257803
+-0.62154941
+-0.85645071
+-0.43126319
+-0.15188814
+0.94321557
+-0.32352068
+0.58316855
+-0.17444790
+-0.88270805
+0.60884694
+-0.00047984
+0.48773660
+-0.71698545
+-0.92627630
+-0.88496992
+-0.72076286
+0.14761633
+-0.67269112
+-0.85550756
+-0.37450385
+-0.98900341
+0.38757414
+0.61599056
+-0.41459257
+-0.07219192
+0.13690772
+-0.88093219
+-0.36119526
+0.33267937
+0.86228820
+-0.78355672
+-0.52948523
+0.51986596
+-0.07757793
+0.56004866
+0.84752496
+-0.29915923
+-0.04005415
+-0.00533484
+-0.21987417
+-0.56326761
+-0.76919365
+0.58182155
+-0.23575039
+-0.49506485
+0.54252928
+0.88154579
+-0.79316223
+0.11801432
+0.48066319
+-0.80943416
+-0.29551915
+-0.70330364
+-0.31372540
+1.00374349
+-0.41452878
+0.34123099
+0.41123322
+-0.40147276
+-0.90114665
+-0.04504964
+0.33161331
+-0.49417823
+-0.27063777
+-0.00472582
+-0.44103037
+-0.74367500
+-0.08020005
+0.97707662
+0.28587110
+0.45659812
+0.84619796
+0.18390392
+0.07372626
+0.90424577
+0.21948144
+0.38710484
+-0.93888142
+0.04622235
+-0.97662230
+-0.79425188
+-0.45410090
+-0.23679960
+0.17410268
+0.87939896
+0.64934921
+0.58864726
+-0.09730852
+0.99090574
+0.58043221
+0.49702609
+0.53172175
+-0.11290703
+0.09273537
+-0.70556047
+0.39020453
+0.87293092
+0.51459585
+0.81525240
+0.50553373
+0.06260508
+-0.15883179
+0.57692678
+0.79613192
+-0.99649676
+1.01235518
+0.46066938
+0.46419850
+0.57512446
+-0.24844590
+0.23460474
+-0.59837752
+0.90911181
+0.01820789
+-0.20340775
+-0.79972814
+0.28856146
+0.12751325
+0.03386997
+0.83481048
+-0.06356454
+-0.92761872
+0.31963886
+-0.60050051
+-0.78528438
+-0.69792995
+-0.75707833
+-0.34997377
+-0.92236148
+-0.71177870
+0.86223978
+-0.40277208
+-0.61758891
+-0.95447430
+0.72655919
+-0.29364454
+-0.83019687
+0.06307107
+-0.39797794
+0.09889075
+-0.48110869
+-0.95979766
+1.03208869
+0.06008915
+-0.12088326
+-0.15588790
+-0.56098111
+-0.25322385
+-0.66314266
+-0.89901972
+0.47550105
+-0.49520169
+0.81966085
+0.60797634
+-0.94994872
+-0.36983188
+-0.95228047
+0.80841656
+0.98825009
+-0.53990789
+-0.96153271
+-0.91470591
+-0.63851465
+-0.70512836
+0.62075065
+0.60934413
+-0.56717743
+-1.03922674
+0.68089615
+0.28327012
+-0.24418970
+0.35188226
+0.91669353
+-0.00218093
+0.42549272
+-0.64750318
+-0.73966069
+-1.02629307
+-0.37346722
+0.53120978
+-0.08501133
+-0.56803880
+0.26613990
+1.00130550
+-0.08867064
+-0.36001162
+-0.44676324
+0.33044438
+0.46394530
+0.19883654
+0.61883558
+0.93358067
+-0.29560244
+-0.08068247
+-0.94175118
+0.48062172
+0.02144455
+-0.40137464
+0.76056745
+-0.75760971
+0.28725707
+-0.76551834
+0.62865156
+0.75093316
+0.98052963
+0.01803642
+-0.28912298
+-0.96581711
+0.81629725
+-0.30950745
+-0.07874491
+0.65067571
+0.08451441
+-0.79173750
+0.75431391
+-0.81945859
+0.59441642
+-0.83386364
+0.95779461
+-0.28540073
+-0.28498097
+0.74566466
+0.54292028
+0.79378541
+0.56245595
+-0.66780564
+0.37352488
+-0.13170538
+0.66452045
+0.01988858
+-0.06216724
+0.53087382
+-0.83576157
+0.61040480
+-0.53301657
+0.04434658
+-0.96174000
+-0.74562607
+0.70357676
+-0.80506290
+0.41778102
+0.75190929
+-0.46164045
+0.41183873
+-0.05955861
+0.80746655
+0.87897323
+0.82386093
+-0.22622479
+-0.36301400
+-0.13526720
+0.10664957
+0.67954004
+-0.87815786
+-0.32657625
+-0.09865104
+-0.41552458
+1.03328251
+-0.59999354
+-0.97081799
+-0.27041216
+0.04567152
+0.89227718
+0.89390600
+0.37469223
+-0.32479364
+-0.27719480
+1.05026680
+-0.75029801
+-0.41414891
+-0.15047457
+0.35893464
+-0.54664202
+0.58419520
+-0.95194547
+0.56640500
+-0.01467709
+0.31950576
+-0.27409694
+-0.75145142
+-0.09444644
+-0.22699892
+0.99783638
+-0.47899619
+-0.96062680
+-0.83694800
+-0.20946289
+-0.49388931
+-0.16409407
+0.67916934
+-0.95325631
+-0.52329518
+-0.73385230
+0.68441116
+-0.79541322
+-0.02277686
+-0.84188158
+0.93127855
+-0.45893580
+0.18349319
+0.45754127
+0.05762359
+0.11163992
+0.16430548
+-0.70290347
+-0.85595587
+0.61770223
+-0.25873449
+0.08505058
+0.07183333
+0.45164954
+0.17745590
+-0.59596312
+-0.32251427
+-0.05938942
+-0.44438438
+0.20215589
+-0.72490550
+-0.92063608
+-0.34963023
+0.84146840
+0.93718206
+-0.12089854
+-0.41180685
+-0.94979783
+0.52475549
+-0.24577999
+-0.30512403
+-0.92606060
+0.64398408
+-0.08632062
+-0.44423408
+-0.84527782
+0.45453854
+0.59197152
+-0.41616344
+-0.81447309
+0.35983248
+0.59844345
+0.62742193
+0.44962588
+-0.14293401
+0.42858370
+-0.68112219
+0.29168124
+0.50038703
+-0.81989264
+0.27660268
+-0.69800094
+0.50477928
+0.47073251
+-0.66662146
+0.32611029
+0.50000832
+0.02990479
+0.30155478
+-0.98272809
+-0.52098438
+0.42007433
+0.27738165
+0.13210354
+0.36521227
+-0.61429844
+-0.67428594
+-0.14340942
+0.26484668
+-0.36914294
+0.74241038
+0.00154458
+-0.55187315
+-0.30838718
+0.16150275
+0.41486665
+0.16202340
+-0.90370243
+-0.53230995
+-0.50883119
+-0.80897064
+-0.86611028
+-0.26505502
+-0.15120834
+0.77735023
+-0.87359298
+0.62471135
+0.57779405
+-0.52304226
+0.90385579
+0.84012964
+-0.94993336
+0.72571765
+-0.68194456
+-0.70205936
+0.60237066
+0.75134685
+0.21394689
+-0.27544478
+0.76872168
+-0.45999136
+0.36886675
+0.21372366
+-0.95135961
+0.78120567
+0.36602969
+0.92755114
+-0.74829150
+-0.55883094
+0.05959516
+0.93988670
+-0.77128908
+0.67320503
+0.44380970
+-0.25799060
+-0.71850632
+-0.18175367
+0.05367714
+0.55291953
+0.90838265
+0.96193946
+0.19758507
+-0.70958978
+-0.83626801
+-0.89499453
+-0.88259700
+-0.48651658
+-0.32982322
+0.55017240
+0.77356514
+0.89097873
+-0.42365519
+-0.62680906
+-0.87401950
+0.15673440
+-0.30542263
+0.24258394
+-0.04629672
+-0.08079269
+-0.23775186
+-0.56889398
+0.53653483
+0.69897150
+-0.66085798
+-0.26196337
+0.88323113
+0.70095134
+-0.57135118
+0.36052039
+0.34564184
+-0.61844964
+0.90830002
+0.52502717
+0.96682237
+-0.29520016
+-0.75405834
+-0.65232522
+-0.27302315
+-0.45959754
+0.47183086
+-0.18817595
+0.67753550
+0.72997681
+0.32929092
+-0.61924690
+0.69330735
+-0.46769257
+-0.91667197
+0.98619682
+0.55182686
+0.09117454
+0.05912774
+0.83387638
+0.45642451
+-0.72473188
+0.48205195
+-0.75119125
+0.57271767
+0.23713489
+0.11349988
+-0.19254128
+0.55300733
+0.28551005
+-0.94309903
+0.97279119
+0.14562811
+0.35075579
+0.91817086
+-0.03156840
+0.39643603
+0.47751493
+-0.06996121
+-0.15121615
+-0.53667689
+0.09018827
+0.91602687
+0.39790099
+-0.27935096
+0.47602486
+-0.25618908
+-0.07709517
+-0.29526756
+-0.10640564
+0.61799384
+-0.55202705
+-0.11612758
+-1.01156019
+-0.66777877
+-0.11900832
+-0.19947527
+-0.23809578
+-0.62771760
+0.25424162
+-0.18991854
+-0.20631809
+-0.28405360
+-0.04665872
+0.29586250
+-0.99396565
+0.88688154
+0.98648729
+0.19946860
+-0.42200751
+-0.73166305
+0.21095275
+0.52295606
+-0.96466772
+0.77720448
+0.59968928
+0.41412409
+0.01534989
+-0.74353768
+-0.54975788
+0.51289794
+0.82573103
+0.86404614
+-0.98107841
+0.97155770
+0.66069839
+-0.39703231
+0.75031949
+-0.00001234
+-0.19469322
+-0.29327623
+-0.12352587
+-0.73352078
+0.89446563
+-0.32725109
+0.23721427
+0.80733280
+0.58123638
+-0.42056631
+0.51310790
+0.96046244
+0.19882472
+0.52835676
+-0.58982029
+0.38491255
+0.34117524
+-0.15558382
+-0.27326438
+0.34876807
+-0.31715254
+0.09087302
+0.55525949
+0.89921112
+-0.47300299
+-0.75019362
+0.51606707
+0.20836365
+0.43648905
+0.61220963
+-0.85396626
+0.53511923
+-0.57773071
+-0.95406892
+0.95817489
+-0.45813383
+0.31302051
+-0.88891288
+0.90594821
+-0.63192986
+-0.71810803
+0.78170830
+0.22447819
+0.57210966
+-0.19320642
+-0.77002452
+0.22726165
+-0.35717849
+0.40611620
+-0.97116336
+0.52725975
+0.77155071
+-0.29466423
+0.04561918
+0.77625688
+0.65834982
+-0.68876901
+0.51712187
+-0.14636591
+-0.04003056
+0.93336952
+-0.93597987
+0.24184694
+-0.56842351
+-0.78685205
+-0.21756876
+-0.36952645
+0.08115741
+0.08795473
+-0.27648218
+-0.89520099
+-0.75428933
+0.90003742
+0.53253770
+0.30590094
+-0.85381447
+0.01226234
+0.40101894
+0.63810608
+0.16745512
+-0.57524756
+-0.35647577
+-0.54639993
+0.97379935
+-0.57893001
+0.57596231
+-0.74403495
+0.02916176
+0.66728911
+0.65587445
+-0.27539629
+0.94961870
+0.29142380
+0.81226254
+0.75405482
+0.12792563
+0.18522775
+0.03133047
+0.18124866
+0.32752979
+0.06056118
+0.14053953
+-0.20009607
+-0.96038983
+0.78315759
+-0.17257863
+-0.02570367
+-0.18068171
+-0.23587137
+0.75723791
+0.92358792
+-0.08629364
+0.46720886
+0.42969429
+0.28683114
+-0.74884132
+0.28014839
+0.46608841
+0.41051269
+0.13651180
+0.94688404
+0.47564507
+0.07677722
+0.53239703
+0.82553422
+-0.26968849
+-0.56005976
+0.39830363
+0.04433870
+0.27456605
+-0.36046183
+-0.56688291
+-0.56326267
+0.36629999
+-0.83666106
+-0.65845677
+0.60333216
+0.76021004
+-0.29391724
+-0.64929062
+-0.75411539
+0.41278994
+0.26854634
+0.12796068
+-0.07752109
+0.02751553
+0.88541234
+0.31922793
+-0.28277099
+0.38400435
+0.68695116
+-0.61097947
+0.06615674
+0.15515113
+0.69651234
+0.41645670
+-0.12371290
+0.63368869
+0.52340162
+-0.51928061
+-0.09860808
+-0.12358159
+-0.22316998
+-0.47516793
+-0.03162402
+0.34598970
+-0.66140363
+-0.76328665
+-0.23770142
+-0.14190590
+-0.58630133
+-0.04259872
+-0.56794411
+0.74783492
+0.02672005
+-0.18415928
+0.33400023
+0.30352974
+-0.24992824
+-0.41247803
+0.39274716
+-0.25899011
+-0.57077554
+0.40195954
+0.04148197
+-0.44748533
+-0.12184995
+-0.29123294
+-0.97542359
+0.88965762
+-0.86467478
+-0.16553485
+-0.41731608
+-0.63120049
+-0.70408028
+0.33862078
+0.12200511
+-0.83593559
+0.80096304
+0.96805346
+0.20727074
+0.79417145
+-0.21830833
+-0.97452283
+-0.09959435
+-0.73098588
+0.20520663
+0.98554850
+0.89048839
+0.08268678
+-0.12850541
+0.81372893
+0.37537432
+0.58752978
+-0.30345565
+-0.41697472
+-0.10950398
+-0.85057901
+0.65756178
+0.23919940
+0.24560809
+-0.14689374
+-0.00930357
+0.86318755
+0.31871927
+-0.33793777
+0.97895861
+-0.92632595
+-0.52602255
+-0.58888447
+0.01883972
+0.55887735
+-0.90477504
+0.48531258
+0.45113504
+-0.96710876
+-0.22492331
+0.80037200
+-0.51031703
+0.37857163
+-0.16381097
+0.92948735
+0.05040359
+0.10108042
+-0.93781708
+0.36782920
+0.23770344
+-0.01323354
+0.38743401
+0.80097961
+-0.72436386
+0.47585094
+0.10169327
+0.42799771
+-0.56529275
+0.58215904
+-0.20482749
+-0.95585367
+0.97637999
+0.64222777
+-0.49839568
+0.03769386
+0.00208151
+0.38550472
+-0.51897275
+-0.05647862
+0.41298926
+0.15692437
+-0.65391472
+0.62802851
+0.17897749
+0.84214616
+-0.18983769
+0.96366024
+-0.32993132
+-0.40749478
+0.12914503
+0.90201044
+-0.11342716
+0.22757769
+0.02430642
+0.37079024
+-0.47867978
+-0.31749576
+-0.06166732
+0.39642334
+0.64593661
+0.62159383
+-0.96528094
+0.49584937
+-0.38964123
+0.68039465
+0.35832775
+0.37221050
+0.86591208
+0.36602736
+-0.60271907
+-0.05249715
+-0.07852721
+0.57223856
+0.64941299
+0.62666786
+-0.68277121
+-0.45197845
+0.31208348
+0.57811451
+-0.17898345
+0.89989257
+-0.52482873
+-0.57349926
+0.16406381
+-0.37939423
+0.64933956
+0.42696965
+0.82473445
+-0.73997962
+0.32537735
+-0.23386705
+0.28522003
+-0.78459834
+0.46112895
+-0.42367142
+0.56035972
+-0.84662803
+-0.54905891
+-0.68193087
+0.17471647
+-0.63673949
+0.56236148
+-0.97432131
+-0.99455807
+0.17434418
+-0.15820271
+-0.69970563
+0.73657811
+0.58316290
+0.02269018
+0.19822061
+-0.90502324
+-0.97303851
+0.65857852
+-0.25327617
+-0.49554765
+0.55778658
+-0.38952029
+-0.94415977
+-0.26250994
+-0.31373972
+-0.15509415
+-0.71355247
+-0.35363835
+-0.78858440
+-0.11362022
+0.72073674
+-0.38383222
+-0.10398930
+-0.07957143
+0.43677473
+0.62774575
+0.25311828
+-0.33904666
+-0.69644508
+-0.55352083
+0.12736189
+0.85648322
+-0.49054456
+0.02933180
+0.31054771
+0.39344549
+-0.83892168
+-0.87220368
+-0.66707885
+-0.49956721
+-0.67052159
+0.24882853
+0.22135079
+-0.02864850
+0.40855920
+0.74252939
+-0.78798416
+0.65881562
+-0.76531088
+0.44688463
+0.09961534
+0.65552700
+-0.71115372
+0.04831254
+-0.36130202
+-0.72461224
+-0.66673732
+0.12019491
+0.32634914
+0.97526109
+-0.79868704
+0.03764951
+-0.84060329
+-0.73627251
+-0.04053199
+-0.19863689
+0.56746495
+-0.75775583
+0.53883207
+0.86308956
+0.42132509
+-0.70848107
+0.22831821
+-0.67293933
+-0.32607490
+-0.12260765
+0.85528255
+0.11653030
+-0.35359949
+0.15780580
+0.90156865
+0.11631560
+0.82816076
+-0.83086646
+-0.62251702
+0.99729788
+0.16600049
+-0.15207589
+0.45867634
+0.73156130
+0.11662698
+0.89651299
+-0.69294760
+-0.13102525
+-0.78628170
+-0.60388374
+0.03320706
+-0.06477416
+-0.46470129
+-0.97478775
+0.98001599
+-0.46380299
+0.36470616
+0.71266079
+-0.50707361
+0.42371464
+-0.01274687
+-0.02212107
+0.94567585
+-0.89569028
+0.48363173
+-0.34755844
+0.46119809
+0.79132242
+0.06904566
+0.62020068
+0.58867638
+0.69460975
+0.00958855
+-0.01848704
+0.51424170
+-0.33912461
+0.57612065
+0.50625963
+0.53409827
+-0.44873603
+0.22953086
+0.14029305
+0.28437090
+-0.22468528
+0.09911777
+0.77440689
+-0.72288499
+-0.67288750
+0.35091770
+0.51964355
+-0.35047186
+0.83663158
+0.36540557
+0.11037207
+-0.74457724
+-0.16123468
+0.92700616
+0.02627073
+-0.42525934
+-0.16996266
+-0.25695249
+-0.09926649
+0.26770465
+0.28388549
+-0.35440947
+-0.93178318
+-0.40593790
+0.75007673
+0.98373188
+0.30685380
+0.12793320
+-0.34295010
+0.33785097
+-0.15738062
+0.00455423
+0.62240042
+-0.00728071
+-0.04966695
+0.84575585
+0.11450328
+-0.38495136
+-0.93219102
+-0.23117079
+0.44005528
+0.98423675
+-0.13020241
+0.52598177
+0.19490534
+-0.01851994
+0.61561904
+0.13507867
+-0.73200434
+-0.39240269
+-0.19771810
+-0.69422749
+0.41926144
+0.80682432
+-0.74269771
+0.91207952
+0.25432184
+-0.83064869
+0.59804719
+0.38005839
+-0.67042950
+0.06855578
+-0.22901544
+0.89315577
+-0.25795742
+-0.38499509
+-0.20835942
+-0.22341485
+0.12462355
+0.28559859
+0.80465199
+-0.57113065
+-0.20502298
+-0.60139289
+-0.27392109
+-0.19795992
+-0.38775823
+0.29991139
+0.90015065
+0.85864201
+0.52398103
+0.19516192
+-0.41075672
+0.98097663
+-0.13149436
+-0.06497649
+0.29525982
+0.07387166
+0.60964531
+-0.57911694
+0.66623559
+-0.35996662
+-0.36181814
+-0.40657579
+-0.74718894
+-0.75030392
+-0.57078253
+-0.50795096
+0.60058097
+-0.17611521
+-0.13077247
+0.44855473
+-0.68947834
+-0.94376794
+-0.79299144
+0.83427582
+0.02229188
+0.60969283
+0.18489298
+-0.36386239
+0.63528064
+-0.05107066
+0.62932454
+-0.57487361
+0.64127926
+-0.55557380
+-0.03834057
+0.39309178
+0.33174353
+-0.52835045
+-0.71254067
+-0.14277151
+-0.78843908
+-0.57847081
+0.30345861
+0.51006787
+-0.95550470
+0.40917899
+0.14285564
+-0.87635622
+-0.94730263
+-0.19377072
+-0.27539570
+-0.45294630
+-0.55599165
+-0.56975879
+-0.40153060
+-0.48102204
+0.38493331
+0.39424871
+-0.10061220
+-0.59507606
+0.54134218
+0.37506722
+-0.83349031
+0.64169478
+-0.09160958
+0.13236698
+-0.23305559
+-0.09177873
+0.94587665
+-0.70525191
+0.31765341
+0.56863671
+0.01661747
+0.39044266
+-0.05990243
+-0.53274871
+-0.34333724
+0.36374046
+0.88787976
+-0.26867602
+0.21688060
+0.95984240
+-0.49493369
+0.90727750
+-0.35191482
+0.78223263
+0.24957313
+-0.29828420
+-0.93278300
+-0.18590420
+-0.84737516
+0.00747821
+-0.29079013
+-0.65181380
+-0.43560701
+-0.26034496
+-0.12201199
+-0.89374500
+0.91095455
+0.77774213
+0.08101660
+-0.26421398
+0.39771552
+0.96853442
+-0.76788362
+0.34628706
+-0.69577798
+0.39390792
+0.42606446
+-0.38250662
+-0.52670636
+0.58101159
+-0.67283368
+1.01668994
+0.22668252
+-0.44724376
+0.96047397
+-0.10526501
+0.98998080
+0.01531265
+0.60983356
+0.34767901
+0.47277384
+0.44365661
+0.01243700
+0.50759101
+-0.79918100
+0.83141198
+-0.75305792
+0.39364281
+-0.26130290
+-0.07800758
+0.40616997
+-0.18909906
+0.51188399
+0.43446296
+-0.55162556
+-0.94300747
+-0.94050985
+0.57508509
+-0.77227024
+0.30609533
+0.95785672
+-0.87573313
+-0.36433861
+-0.92291145
+-0.20413264
+-0.77421193
+0.82266755
+-0.41893084
+0.92968270
+-0.00810247
+-0.08134429
+0.09648996
+0.68133170
+0.76996221
+0.78982577
+-0.03968933
+-0.91933267
+0.88164108
+0.08563003
+-0.00584053
+0.96332862
+0.87619093
+0.30947984
+-0.70200681
+0.76894120
+-0.47180783
+0.00979396
+-0.73131325
+-0.03127311
+-0.89829246
+0.67712816
+0.62961616
+-0.97891486
+-0.61764081
+0.84824480
+-0.12382208
+0.72444148
+0.16805844
+-0.28816178
+0.28778070
+0.71626133
+-0.51576536
+0.27194477
+-0.55569536
+0.37533762
+-0.47460344
+0.00749504
+-0.09889105
+-0.35773385
+0.32928440
+-0.10443893
+0.26539606
+0.65610164
+-0.86930208
+0.82047737
+-0.85811240
+0.40527240
+-0.24846703
+-0.10619933
+-0.89387649
+-0.49326441
+-0.35178218
+1.03916412
+0.19917909
+0.62076498
+-0.21823640
+-0.39678327
+0.83329732
+-0.10529671
+-0.63367367
+-0.13973952
+-0.45728829
+-0.58497272
+0.13847462
+-0.83713758
+0.46342428
+-0.69523777
+0.28680858
+0.01910338
+-0.90812872
+0.13191429
+-0.44352454
+0.04235562
+0.10318590
+-0.73877566
+0.03271959
+-0.26722373
+-0.59036227
+-0.92574538
+0.81775947
+-0.44023089
+-0.81910839
+0.58198585
+0.89703358
+0.99358066
+0.66702448
+0.48161474
+0.65403516
+0.61175077
+-0.76587418
+-0.29869537
+-0.71891093
+0.97967739
+-0.93841529
+0.76068402
+-0.40100735
+0.25363635
+0.98243822
+0.34961376
+0.43294037
+0.00232490
+-0.71786334
+0.18142446
+0.33531246
+-0.32245426
+-0.07965487
+0.11684314
+0.83015538
+0.91323945
+0.10975591
+0.04582327
+-0.62223146
+0.94866684
+0.21722966
+-0.02604415
+-0.62407638
+0.63069290
+-0.83412315
+0.01078597
+0.72150033
+0.16213700
+-0.27068242
+-0.20602871
+0.10765176
+-0.68421373
+0.94375874
+0.88886634
+-0.35191474
+0.28663576
+0.30674972
+0.72765136
+-0.23405056
+0.04639911
+0.06421530
+-0.23372140
+-0.77303704
+-0.67247210
+-0.73202539
+-0.53648788
+-0.92145520
+-0.77600822
+-0.51892637
+-0.07571582
+0.13906856
+0.01623923
+0.99820518
+-0.41980065
+0.77820174
+0.03227941
+-0.46609947
+-0.47364669
+0.14124421
+0.68305206
+-0.48054377
+-0.74994676
+-0.10656731
+0.01625600
+0.46550615
+-0.73991590
+0.40957056
+0.51279415
+-0.70678188
+1.03956935
+-0.55605390
+-1.02541231
+0.28604319
+-0.68441006
+-0.72530066
+0.72870682
+0.55601594
+0.42328158
+0.08972732
+-0.79135579
+0.84847389
+0.21948663
+0.59758317
+0.94652789
+0.04274493
+-0.05307352
+0.90685938
+-0.03149433
+0.94823135
+-0.89902085
+-0.69676482
+-0.65248904
+-0.34375716
+-0.77541064
+0.35395733
+-0.77032069
+0.67743924
+0.86359044
+-0.63226441
+0.02143474
+-0.49004736
+0.67828121
+-0.37048922
+0.69911570
+-0.45835303
+0.61570069
+-0.07055936
+-0.42412558
+0.15969312
+-0.34865288
+0.76377078
+-0.31377314
+0.89751952
+0.41854590
+0.34298823
+0.35102501
+0.91836972
+-0.80801458
+-0.10223386
+-0.99830491
+-0.01541522
+0.56442094
+0.62017105
+0.85549117
+0.67811292
+-0.03154197
+-0.47015221
+-0.30601145
+0.00504265
+-0.06219490
+0.28707545
+0.47498529
+0.78226807
+0.87671340
+0.93076294
+-0.31542258
+0.57850684
+0.82231423
+-0.19595533
+-0.75027757
+-0.43722256
+-0.30636562
+-0.98019927
+-0.42317468
+-0.55371770
+0.49896612
+-0.41269492
+-0.79069438
+-0.32895985
+-0.46186302
+-0.08612937
+0.30376375
+-0.43588471
+0.39108063
+-0.78664708
+-0.14470191
+0.19061379
+0.85021941
+-0.68566069
+-0.93282129
+0.34613434
+0.55381081
+-0.85842635
+0.52052914
+-0.55063399
+0.04023071
+-0.00963456
+-0.80663060
+-0.85787715
+0.46521248
+0.24079784
+0.88272715
+0.09531801
+0.27546225
+-0.03925810
+-0.04639523
+-0.40068090
+0.21123247
+0.00419005
+0.72050506
+0.19246389
+-0.40489796
+-0.48577360
+-0.85804625
+0.26377001
+0.66176056
+0.94464663
+0.06641410
+-0.35192576
+0.61581764
+-0.56141590
+-0.33905086
+0.51206013
+0.48116686
+-0.23381015
+0.05054358
+-0.18332993
+-0.79998543
+0.17379417
+-0.46865368
+-0.51851778
+0.82222449
+-0.85468070
+-0.62592270
+-0.26199235
+-0.04489925
+0.90606555
+-0.75706345
+0.24276369
+-0.28440631
+-0.23860249
+-0.39648897
+-0.45875406
+0.62307778
+-0.77959238
+-0.01547274
+0.21616846
+0.49377952
+0.73739783
+-0.32197271
+-0.68226585
+0.99123019
+0.10682637
+0.14157253
+-0.37537667
+0.95160787
+0.65523626
+-0.22041702
+0.40572143
+-0.42736007
+-0.85808632
+-0.63356794
+-0.71265875
+-0.65629410
+0.57142911
+-0.06637524
+-0.67228850
+0.73638502
+0.77666992
+0.64323441
+0.31936439
+0.56429447
+0.83227652
+0.45204519
+0.29646721
+-0.17267292
+0.90955673
+-0.82840110
+0.50855598
+-0.36918003
+0.91883022
+-0.94134909
+-0.08863211
+0.84599274
+1.00753372
+0.42154702
+0.77346073
+0.06420355
+-0.39920328
+-0.87600503
+-0.55987667
+0.54971273
+-0.43364597
+-0.25808130
+-0.83764189
+0.55362185
+-0.93641756
+-0.80079730
+0.05760737
+-0.24892943
+-0.80341213
+0.38274627
+0.88879900
+-0.27263954
+-0.16197635
+0.28148361
+-0.40024542
+0.99427676
+0.14374395
+0.21759686
+0.88412504
+0.76336575
+-0.26424724
+0.80874385
+-0.71774200
+-0.59148927
+-0.67105702
+0.14734125
+-0.59502451
+-0.18244794
+-0.47145970
+0.02227712
+0.00683248
+0.83706488
+-0.76353341
+-0.49751427
+0.65708756
+-0.67196658
+-0.99001641
+0.64327249
+0.66911022
+-0.45045644
+0.14281440
+-0.22599958
+-0.89362570
+0.43246044
+0.06089163
+0.62183571
+-0.81955438
+-0.22664091
+-0.44214616
+0.10444713
+0.93905246
+-0.18646853
+0.51900375
+0.23632673
+-0.54956374
+0.61154795
+-0.84655422
+0.39149714
+-0.60610223
+-0.93675892
+-0.46823037
+0.21865523
+-0.49990141
+0.38252807
+0.33716476
+0.78998184
+0.02038658
+0.96429300
+-0.76676276
+-0.37660319
+0.02968705
+0.95755064
+0.39721203
+-0.12173623
+0.90089619
+0.75599945
+0.03208756
+0.17947066
+0.83281898
+0.13422048
+-0.29826736
+-0.29971039
+-0.37626112
+-0.45147055
+-0.99125153
+0.25374722
+0.94648099
+0.58309364
+0.92717266
+0.41723979
+0.89862537
+-0.22192419
+0.04088295
+0.47402692
+-0.25436550
+0.81650925
+-0.06133795
+0.03351736
+-0.38878942
+0.76622915
+-0.79873437
+0.20472622
+-0.99256023
+0.79131413
+-0.68067870
+-0.23383915
+-0.52102000
+0.47957027
+-0.97313973
+0.57278693
+-0.44815493
+-0.90321041
+0.95700097
+-0.23269153
+-0.99344894
+-0.81008041
+-0.01955169
+-0.65129450
+0.11988282
+-0.97426217
+-0.14996964
+0.63150918
+-0.32916015
+-0.96664268
+-0.05162209
+0.91536403
+-0.80671892
+0.97932613
+0.27557659
+0.26387250
+-0.41262579
+0.92053139
+0.06214797
+0.04898894
+0.82478094
+-0.35154551
+-0.44992763
+0.52102697
+0.73128796
+0.62965357
+0.07915664
+-0.50694332
+-0.91042769
+-0.00868112
+-0.57136723
+-0.22807080
+0.53722441
+-0.47823703
+-0.84710684
+-0.12831140
+0.29918909
+-0.16212571
+-0.03338420
+0.16786683
+0.61009943
+-0.77816671
+0.54187322
+-0.97415638
+-0.39823288
+0.92210877
+-0.18016136
+0.43313694
+0.95776880
+-0.27551931
+0.49304056
+-0.74249285
+0.26115716
+0.43250501
+-0.05043197
+-0.17058450
+-0.56499988
+-0.64729807
+0.88410521
+-0.00064200
+0.43543851
+-0.15915626
+-0.19132906
+-0.34072137
+0.84595931
+0.70235813
+-0.46731102
+0.14207029
+-0.81883068
+0.77885664
+-0.42344797
+0.20235515
+-0.19154143
+-0.12528902
+-0.35100120
+0.52997160
+-0.45558655
+-0.85076317
+0.24042416
+0.96605134
+0.06276762
+0.10583317
+0.48233390
+0.85271478
+0.04360747
+0.76748645
+0.31812823
+-0.87690360
+-0.74804145
+-0.67525616
+0.56861925
+-0.00270146
+0.48851645
+-0.35254169
+-0.71213084
+0.98068714
+0.50249326
+-0.45589262
+-0.95572867
+0.78332591
+-0.92980279
+0.03764081
+0.57064795
+0.36516356
+-0.85249001
+-0.78320467
+-0.92878036
+0.87720490
+-0.33826697
+0.29975307
+0.13754654
+0.23820591
+0.76335716
+0.71891654
+-0.63204917
+-0.65811276
+-0.84517822
+-0.33405066
+0.80640173
+-0.13569605
+0.95855701
+0.11821675
+-0.33081180
+-0.68380684
+0.28676152
+0.64853346
+0.28448057
+-0.04027188
+-0.16381949
+-0.23393917
+-0.73964125
+-0.51129022
+-0.32335269
+-0.17998368
+-0.58522934
+0.26083946
+0.68692768
+0.31302190
+-0.91255347
+0.53632605
+0.00398934
+-0.01128227
+0.62151456
+-0.48793972
+-0.74585047
+0.82170749
+-0.73635381
+-0.13656998
+0.43970537
+-0.05743247
+0.24465060
+-0.25518525
+0.40731668
+-0.92615056
+-0.42859435
+-0.07734972
+-0.86734147
+0.59678066
+0.90658689
+0.41844046
+0.14964223
+0.97488570
+0.78602767
+-0.56404641
+0.60450006
+-0.56560040
+-0.11498964
+0.48967850
+-0.66529968
+-0.59235039
+0.16215146
+-0.27419335
+0.14684808
+0.83822644
+0.17756057
+-0.44974798
+0.07885575
+0.41073608
+-0.38668805
+-0.56920341
+-0.28987330
+-0.54951075
+0.22972333
+0.80168283
+-0.42176449
+0.34187853
+-0.57437900
+0.27017057
+-0.14494145
+-0.12997413
+-0.62222746
+0.29115403
+-0.45358652
+-0.20449698
+-0.49976450
+-0.33729649
+-0.74068698
+-0.24037117
+0.32826817
+-0.52725065
+-0.10475570
+0.97879589
+-0.37985510
+0.21616805
+0.01483548
+0.91052449
+0.92612290
+-0.73932102
+0.34254253
+-0.74324426
+0.60441148
+-0.70855513
+0.88205981
+0.61482239
+0.81999707
+-0.50087529
+0.31601560
+-0.52076542
+-0.11396706
+-0.23292273
+0.09535563
+-0.86414889
+0.18898952
+-0.75698265
+0.24527979
+0.04415107
+0.14682615
+-0.82762256
+0.40512967
+0.73580754
+-0.12566763
+-0.70943913
+0.58959734
+-0.97678913
+0.80204737
+0.17212749
+0.23200464
+-0.44072032
+-0.17183673
+0.87697136
+0.23773825
+-0.70782262
+-0.90024675
+0.26973164
+0.61695242
+-0.85499939
+-0.70126879
+-0.94137066
+-0.94213507
+-0.62384507
+-0.57323161
+0.27035975
+0.13165832
+-0.91675174
+-0.76012629
+-0.04495925
+0.80144370
+-0.18299878
+0.13531256
+-0.78552626
+0.36145735
+-0.53798291
+-0.54338002
+-0.22126132
+0.05746269
+-0.73403552
+-0.08783913
+0.42689800
+0.46320164
+-0.66211697
+0.49006212
+-0.66840279
+-0.39056504
+0.43388879
+0.18396258
+0.48152125
+0.33055270
+0.44927967
+0.71908844
+-0.57721153
+-0.40937489
+-0.19686157
+0.42226803
+0.28441501
+-0.83494987
+0.35039568
+0.51422954
+-0.64690632
+0.64070141
+-0.96808047
+0.41022420
+-0.26774189
+-0.77255894
+-0.27453612
+0.37732801
+-0.56510467
+-0.79706063
+0.77829496
+0.47297621
+0.92211355
+0.17169323
+0.16674625
+-0.82317771
+0.22947435
+-0.44768988
+0.34171714
+-0.63663549
+0.01868055
+-0.36485827
+-0.71912460
+0.49653706
+-0.71687258
+-0.40596521
+-0.17049100
+0.54609337
+-0.93472956
+-0.32824570
+0.93311766
+0.56480707
+0.80192512
+-0.28284710
+0.75443539
+-0.92348923
+0.34915234
+-0.64787015
+0.21691328
+-0.49709519
+0.21140358
+0.15224045
+0.41952885
+0.69947203
+0.04783662
+-0.20143209
+-0.95466383
+0.54314259
+0.97485421
+0.01409112
+0.80370583
+0.59136375
+0.44947213
+-0.15225826
+-0.06557952
+-0.24479214
+0.76744468
+-0.32461263
+0.41360703
+0.47281702
+-0.48192761
+-0.56845091
+0.99460207
+0.41109234
+-0.22128507
+0.30216738
+-0.17321464
+-0.13461526
+-0.14338560
+0.03700810
+0.96409133
+0.77994368
+-0.43193514
+0.12411536
+0.60448263
+-0.91625573
+-1.00842161
+-0.35698525
+0.19515967
+-0.90771840
+-0.44539355
+0.95545737
+0.20796825
+0.61254275
+0.19837564
+-0.49215870
+-0.18437375
+-0.98614290
+-0.37855057
+0.67607948
+0.91780384
+-0.57252152
+0.62549232
+0.74822956
+-0.29462887
+-0.40105908
+0.42071013
+-0.89084745
+-0.33420435
+0.64975533
+-0.34633738
+-0.24244190
+0.70201092
+0.91796869
+-0.91483748
+0.38557649
+-0.56123324
+-0.69515901
+0.56640893
+-0.50127545
+-0.11920144
+0.18625599
+0.67432163
+-0.51012586
+-0.05603189
+-0.59710609
+-0.00012818
+0.53027872
+0.96123052
+-0.70478069
+0.75601060
+-0.26070103
+-0.23968774
+-0.63539291
+0.23171714
+-0.44075430
+0.91461422
+0.69835096
+0.80431040
+0.00171969
+-0.54099816
+0.37448383
+-0.76328217
+-0.79307644
+0.66178559
+-0.36610802
+0.01318645
+-0.29824382
+0.81495650
+-0.97138280
+0.10141777
+0.20218244
+0.82506862
+-0.97765595
+-0.49342703
+0.15639241
+0.65227742
+1.01051753
+0.39084093
+0.53209212
+-0.08319069
+0.25211282
+0.70949075
+0.26489311
+-0.42407810
+0.93329102
+-0.75415444
+0.06677831
+0.14748614
+0.08024373
+-0.21415363
+0.92905296
+0.57617471
+-0.29946696
+0.95876133
+0.64741635
+-0.30841555
+-0.70725087
+0.75669690
+0.70845099
+0.33101708
+-0.07313769
+-0.06942189
+0.77300469
+0.95121749
+-0.01773508
+0.94429092
+-0.76781153
+-0.68294558
+-0.67844101
+-0.26529066
+0.51122973
+0.67735752
+0.31150045
+-0.86810713
+-0.16134164
+-0.93337238
+-0.48830524
+0.76665117
+0.21448317
+-0.01011935
+-0.24245242
+0.22497168
+-0.32064757
+0.22372367
+0.42292046
+0.12547532
+-0.31642847
+0.95619883
+-0.38364051
+-0.44188108
+-0.19599987
+-0.06494163
+-0.27785420
+0.18409461
+0.62699045
+0.17671722
+0.07465691
+-0.30950710
+0.16227201
+-0.08475476
+0.69650536
+0.67596332
+-0.52293401
+-0.27419497
+-0.03266144
+0.48761682
+0.78047065
+-0.91894137
+0.29545731
+-0.12624314
+-0.91193116
+-0.08684713
+0.76585011
+0.52442070
+0.06765190
+0.93717272
+0.29571735
+0.74096363
+0.53247498
+0.98790194
+-0.63927850
+-0.66556578
+-0.09682093
+0.36057757
+0.83260713
+-0.11333663
+-0.02643474
+-0.52955735
+-0.05815647
+0.78078426
+-0.34058713
+0.04827450
+-0.47592676
+-0.37567619
+0.47059245
+0.85687393
+-0.15975905
+-0.96566647
+0.58628863
+0.46908680
+-0.53957542
+-0.15200747
+-0.47370615
+0.48869895
+-0.17251168
+0.03898796
+0.67889501
+0.49119221
+0.76631039
+0.63761957
+-0.58111280
+-0.22112322
+0.90092801
+0.21387692
+-0.31707242
+0.79215337
+0.78471931
+0.10101331
+-0.94993004
+0.26476951
+0.35318284
+0.14058957
+0.54394535
+-0.34016786
+-0.17813327
+0.45027341
+0.62708955
+0.10911664
+-0.50214126
+-0.09179455
+0.91664555
+-0.24330148
+0.07964604
+-0.40983171
+-0.18356973
+0.23169223
+0.81362900
+0.04673127
+-0.14073381
+0.69649861
+0.21943221
+-0.67631781
+0.07932082
+-0.18778492
+-0.31920487
+0.08902158
+0.01049694
+-0.94475146
+0.77473251
+-0.22316495
+0.69862966
+-0.92797175
+-0.94088439
+-0.94547984
+-0.23052313
+-0.25434726
+0.07203376
+-0.57025335
+-0.70976465
+-0.13248929
+-0.88269958
+-0.22422117
+-0.15256138
+0.52654354
+-0.97472476
+0.14001952
+-1.02234414
+-0.68274900
+0.44823359
+0.45734798
+0.92236550
+0.10599832
+-0.38107821
+-0.72861438
+-0.51157398
+0.15348072
+0.38356214
+0.89035006
+-0.97225683
+-1.01755844
+-0.73625458
+0.92488095
+0.35189823
+-0.34463303
+-0.84619767
+-0.18732567
+-0.58073481
+-0.31510125
+0.58975636
+-0.43621196
+-0.60254024
+0.93413148
+0.82371798
+0.95718170
+0.78158616
+0.64118850
+-0.72820309
+0.86731017
+0.95618636
+0.70829925
+-0.22054600
+-0.89584091
+-0.76854116
+0.65839683
+0.41953442
+-0.27679446
+-0.21893421
+-0.95927467
+0.54694905
+-0.62747281
+0.01229467
+0.61705495
+0.98262936
+-0.06977564
+0.70117771
+-0.71464629
+0.44536606
+-0.39215851
+-0.83219558
+0.15193729
+0.88519369
+0.00416843
+0.02643409
+-0.82204725
+-0.08746065
+-0.44483023
+0.70546887
+-0.58340166
+-0.48466925
+0.69213954
+-0.47490686
+0.38360520
+0.08530076
+-0.50767976
+0.77058736
+0.78246384
+0.75158676
+0.29392207
+0.88264967
+-0.78975588
+0.50228074
+-0.67988714
+-0.54755484
+-0.80213357
+-0.55181081
+0.99777678
+0.89862967
+0.32387467
+0.68473562
+0.96598753
+0.82472149
+-0.49654767
+-0.72987852
+0.25058109
+0.24574439
+-0.12085396
+0.33275173
+0.12039369
+-0.05814802
+-0.00042655
+-0.78941891
+0.21329495
+0.51174110
+-0.16623732
+-0.08427447
+-0.36195022
+-0.62718682
+0.17679187
+0.66927215
+0.29043793
+-0.80211940
+-0.66171729
+0.49602713
+-0.27492735
+0.12318607
+0.27639349
+0.44960016
+0.44863369
+-0.60167717
+0.02751266
+-0.11531131
+-0.47088466
+-0.86850765
+0.35199716
+-0.38281681
+0.25554094
+-0.75755706
+-0.36101184
+0.26306534
+0.50002730
+0.06785024
+0.09817849
+0.88459705
+0.03323525
+-0.50437960
+-0.34475124
+-0.46153496
+-0.56086899
+0.35335503
+-0.69146669
+1.01246368
+0.93767185
+0.67411181
+0.08000835
+0.25494677
+-0.99475326
+0.21571880
+0.66766383
+-0.76428527
+0.35065827
+0.30085730
+-0.92192845
+0.47668962
+-0.51699745
+-0.13548266
+0.13634038
+0.26624261
+-0.57391468
+0.04507167
+0.10299145
+0.32246772
+-0.54620029
+-0.47266621
+0.56434913
+-0.71762867
+0.40881547
+-0.45286264
+0.11209164
+0.98605331
+0.27573271
+0.40764867
+-0.82785867
+-0.22463521
+0.37288989
+-0.63450800
+-1.00448853
+-0.05417663
+-0.87903046
+-0.07211456
+-0.52665675
+0.18587580
+0.50887782
+0.05949067
+0.40271467
+0.40790210
+0.41086544
+-0.97907278
+0.98243566
+0.95948156
+0.69361017
+0.64797581
+-0.20062725
+-0.65551203
+0.51365736
+0.89657044
+0.49026890
+0.54184607
+-0.29950440
+-0.31780781
+0.96565067
+-0.96018848
+-0.57091593
+-0.59851273
+0.10221429
+-0.26586816
+0.48724388
+-0.38181592
+-0.50864587
+-0.37979001
+-0.37206186
+0.15314129
+0.34110856
+0.75824940
+0.36357573
+-0.03137359
+0.72310124
+0.22198996
+0.41093818
+-0.15665695
+0.89996838
+-0.39091104
+-0.35004539
+-0.57138884
+-0.03870460
+-0.68649559
+-0.77510690
+0.48257658
+-0.12269959
+0.26260140
+0.81844709
+-0.49657907
+-0.61576871
+-0.28822201
+0.90592533
+0.95815976
+-0.24651939
+-0.92086949
+-0.59314124
+-0.22014025
+-0.55169326
+0.93238481
+0.68360992
+0.82857118
+-0.40682234
+-0.25717658
+0.99338742
+-0.00381142
+0.97257059
+0.62521693
+0.85200450
+-0.33618703
+0.64419956
+0.51681322
+0.50112937
+-0.38015636
+-0.73050039
+0.08030350
+-0.12588194
+-0.73385864
+0.57247186
+-0.82527797
+-0.03500059
+-0.73979215
+0.95954615
+0.57102909
+0.97320047
+0.77955064
+-0.86665066
+-0.31251623
+0.27917834
+-0.13075217
+-0.97866728
+-0.36844834
+0.25595037
+-0.88770441
+-0.67472752
+0.77558910
+-0.77994657
+-0.47638589
+0.79173296
+-0.11617665
+-0.21960524
+-0.16151018
+0.87928406
+0.45996031
+0.61599335
+-0.31778322
+-0.73667302
+0.16766006
+-0.61851799
+1.01988055
+0.24516965
+0.64020739
+0.66336863
+-0.05116416
+0.50688343
+-0.91771057
+0.96520975
+0.79033774
+-0.41956158
+-0.47259768
+-0.07278891
+-0.55884976
+-0.21395518
+-0.64498440
+-0.20468133
+0.39957980
+0.03225319
+0.49325173
+-0.01667240
+-0.75041316
+-0.10032866
+-0.62389757
+-0.35716963
+-0.62456943
+-0.48722249
+0.75191681
+0.75340748
+0.03305221
+-0.96854307
+0.95004702
+-0.77794047
+-0.58481812
+0.34901869
+0.14797612
+0.86817250
+-0.66230752
+0.79014683
+-0.64582437
+0.62900759
+-0.36557442
+0.33539177
+-0.92025772
+0.73185849
+-0.18345539
+-0.02637496
+0.36758499
+0.35150576
+0.73336601
+-0.21892713
+0.93040466
+-0.70320644
+0.68422461
+-0.70913774
+0.60658641
+-0.27888432
+-0.72226436
+0.05123007
+-0.90585477
+0.32555021
+-0.46923286
+-0.24076298
+0.41792321
+0.08222270
+0.98060238
+0.82054889
+0.41393745
+-0.05194426
+0.66638732
+0.65391493
+0.05904388
+-0.18932730
+-0.74325538
+0.12226307
+0.24589956
+0.33307624
+0.57189810
+0.90091133
+-0.15111554
+0.31217897
+-0.74161527
+-0.21804732
+0.51592374
+0.67451072
+-0.65678480
+0.02218652
+0.04836619
+0.85836267
+0.91895843
+-0.28509635
+0.48433256
+0.48206949
+-0.97420727
+-0.39398998
+0.79763830
+-0.47492146
+-0.35351044
+0.60743284
+0.73924637
+-0.01564568
+-0.58809999
+0.53792930
+-0.91834426
+-0.05825257
+-0.07471985
+0.95437300
+-0.67868912
+-0.91853388
+0.54179645
+-0.87099959
+0.90433848
+0.33534741
+-0.20968860
+0.42927265
+0.88710093
+-0.38004196
+-0.59791031
+0.86356103
+-0.35857290
+0.64209604
+0.88851166
+-0.90869106
+-0.76511893
+0.38623619
+-0.28681535
+-0.07276464
+0.83742559
+-0.11085182
+0.54361629
+-0.50929418
+-0.80137551
+0.09752989
+-0.78088476
+-0.80356120
+0.98381507
+0.22179580
+-0.83299319
+0.20605540
+0.10348749
+-0.73891696
+0.21509719
+-0.50220451
+-0.16559106
+0.85933149
+-0.77596672
+-0.61313000
+0.51795208
+-0.16736758
+0.75590444
+0.82272208
+0.45762861
+0.96275115
+-0.40302294
+0.31801200
+-0.03246188
+-0.40835935
+0.26661634
+-0.42694634
+0.31686747
+0.58103919
+-0.97030527
+-0.98568045
+-0.78846741
+-0.09735733
+0.45780051
+0.40080535
+-0.47969043
+-0.86493483
+0.68533504
+0.88381398
+0.35620332
+0.37526631
+0.29384291
+-0.47958243
+-0.00497538
+-0.62646413
+-0.23960185
+-0.07125837
+-0.11828542
+0.25419688
+0.63916850
+0.86366439
+0.94157958
+0.37822175
+-0.29412681
+0.26482224
+0.94095099
+-0.30661207
+0.60031986
+-0.95742127
+0.11840904
+-0.58953676
+0.20457101
+-0.89370433
+0.40787423
+-0.77429637
+-0.83480243
+0.74477673
+-0.77501674
+0.10723770
+0.30452430
+-0.28340036
+-0.63890877
+0.61055994
+-0.33557773
+0.65768003
+-0.62371376
+-0.25216973
+-0.43362373
+0.21993840
+-0.73489973
+-0.04761982
+0.51368880
+0.02931559
+0.84888136
+0.34559250
+-0.31144798
+0.96958184
+0.56552792
+-0.14710295
+0.88131499
+0.94829607
+-0.02642077
+-0.66052487
+-0.69246602
+0.49910557
+0.90074456
+0.06905317
+0.06676006
+-0.24779302
+0.12285769
+-0.89907286
+-0.14751482
+0.00774312
+-0.76538268
+-0.15291137
+0.59249163
+-0.37003601
+-0.93071756
+0.02250481
+0.08632886
+0.06739271
+0.50814307
+-0.49602407
+0.11302102
+0.14767742
+0.02135527
+-0.64074880
+-0.49405819
+-0.79645000
+0.71522450
+0.30024207
+0.83908021
+0.35238671
+-0.61506900
+-0.17535585
+0.57754290
+0.40747547
+-0.01871288
+-0.34202325
+-0.71101278
+-0.37040097
+0.45492685
+0.55801511
+-0.18254709
+-0.67874545
+0.00426960
+-0.40779281
+0.46164167
+-0.02389634
+0.99601912
+-0.32713532
+0.85790098
+0.29820323
+-0.92184142
+0.80557728
+0.13468802
+0.04174840
+-0.06818372
+-0.99523719
+0.16739905
+-0.24399579
+0.09028280
+-0.58637911
+0.45925152
+-0.35070395
+-0.01478040
+0.21719861
+0.47744668
+0.96584463
+0.37420833
+0.04641807
+0.32163763
+0.45055783
+0.27609944
+0.53963196
+-0.66438001
+-0.91285023
+-0.29100829
+-0.82791673
+-0.01352257
+-0.14587080
+-0.90703963
+0.60630190
+-0.69132373
+-0.40451884
+-0.80825564
+0.59747612
+-0.97823994
+0.51449335
+0.78348899
+0.31149399
+-0.42236000
+0.79118931
+0.41922653
+-0.74927938
+-0.34456050
+0.54420328
+0.30281615
+-0.44419193
+0.77263165
+-0.49961728
+0.63635051
+-0.80479136
+0.36735642
+-0.41629356
+-0.25449872
+0.89265728
+-0.18535775
+0.82812274
+0.58822191
+-0.98939857
+-0.20889699
+0.76115358
+0.92159057
+-0.29799074
+-0.41148442
+0.60833454
+-0.70490578
+-0.28356016
+-0.56949848
+-0.59286880
+0.82333827
+-0.70146328
+-0.29395890
+-0.94423879
+-0.99003331
+0.11404169
+-0.11176878
+0.88820934
+0.09876513
+0.86167717
+0.24089968
+-0.90332706
+-0.59102702
+-0.44801927
+0.15090203
+-0.47142833
+-0.51870570
+-0.37553012
+0.56724644
+-0.23266304
+0.41341591
+0.85215461
+0.96288955
+-0.34661198
+-0.46391648
+-0.56588069
+-0.10662413
+-0.62632558
+-0.77160579
+-0.93749468
+0.90779233
+-0.08370948
+-0.48829329
+-0.20572108
+0.10219455
+0.03791249
+-0.33428067
+0.49172938
+0.45810139
+-0.62797329
+-0.54582953
+-0.95082990
+-0.93179788
+-0.56709582
+-0.23521394
+-0.56886172
+-0.28904665
+-0.04901654
+0.79230940
+0.72987545
+-0.12924904
+-0.45895618
+-0.01991904
+0.71199703
+-0.43736213
+0.82920361
+-0.91984378
+0.67827427
+0.28940701
+0.54009926
+0.12487614
+-0.63312012
+0.57809985
+-0.60219803
+-0.17824173
+-0.54159033
+0.76364255
+0.63287342
+0.44334102
+-0.60158744
+-0.32535237
+-0.86285923
+-0.53478602
+-0.19316101
+0.72789824
+-0.51441684
+-0.73950595
+-0.27349365
+0.61360013
+0.45731294
+-0.74567342
+-0.82560604
+0.15141833
+0.07593097
+0.02911699
+0.18378303
+-0.28112207
+0.68261607
+-0.66632059
+-0.00133363
+0.70929016
+0.61758105
+0.99792898
+-0.26722760
+-0.15295686
+0.65444952
+-0.96254054
+0.84446996
+-0.41652560
+-0.76901959
+-0.29423025
+0.37990114
+-0.04176921
+-0.43298990
+0.42755537
+-0.79619441
+0.51898779
+0.90586551
+0.97266197
+-0.75988624
+0.73061354
+0.54497826
+-0.71162396
+-0.05745447
+-0.23237068
+0.38173551
+-0.55521733
+0.90072575
+0.84502193
+0.48750506
+0.23153119
+-0.95614144
+-0.42757335
+0.93481379
+-0.04042869
+-0.43608669
+-0.27870046
+0.38101509
+0.18799119
+-0.08218389
+0.16620021
+-0.05754290
+0.90126364
+-0.04302213
+0.85751188
+-0.22996793
+-0.46323369
+-0.30738877
+0.13018141
+-0.64139367
+-0.08426488
+0.39414999
+-0.71333708
+0.78185784
+0.38279188
+0.28884417
+0.91392851
+0.69503433
+0.84143963
+1.07032590
+0.93370376
+-0.56763892
+-0.21560085
+-0.12669346
+0.80905595
+-0.43114360
+-0.59399784
+-0.48943085
+0.02364886
+-0.09121011
+-0.53563353
+-0.10215141
+0.96176941
+0.88788830
+-0.89259674
+0.43180335
+-0.31987026
+0.68564421
+0.75141549
+0.39111723
+0.75343192
+0.86700805
+-1.04141098
+0.46576445
+0.67089956
+0.60152179
+0.13209300
+0.35606462
+0.17414619
+0.57778777
+-0.99984918
+0.36332421
+-0.77893020
+0.96263356
+0.20232897
+0.94480793
+0.18523778
+-0.92447673
+0.71229302
+0.93941313
+-0.87302144
+0.94808256
+0.65642415
+0.43548201
+0.55560374
+0.39056258
+0.96674684
+-0.34565149
+-0.64310328
+-0.48253294
+0.17027831
+-0.53213686
+0.13407361
+-0.66787120
+-0.78705332
+-0.30628731
+-0.08014938
+-0.46336040
+0.82120451
+-0.56068963
+0.96273758
+-0.90873807
+-0.95152390
+-1.00592224
+0.66734148
+0.22753442
+-0.89129547
+0.40039255
+-0.28912811
+-0.61166219
+-0.11652829
+0.96370716
+-0.08741027
+-0.32080208
+-0.64550463
+0.83644833
+-0.17112891
+-0.41813335
+-0.39733887
+-0.54690858
+-0.27036016
+0.12720540
+0.01171146
+0.79521305
+0.75387715
+0.35880535
+-0.79887040
+0.90336125
+-0.09522235
+0.93617900
+0.50276978
+-0.09511428
+0.36278006
+-0.75912353
+0.39214084
+-0.45985445
+-0.20076368
+-0.65919490
+0.23265462
+-0.22520212
+-0.06669123
+-0.17778130
+0.50984586
+-0.00341283
+0.35557526
+0.47476018
+0.45699408
+0.15317625
+-0.25733944
+0.56273878
+0.00494736
+-0.34456127
+0.74235733
+-0.13971861
+0.87620017
+-0.03408036
+-0.17836129
+0.71669458
+0.07899441
+0.19730802
+0.14069021
+0.16578237
+0.81366488
+-0.58564096
+0.15882559
+0.11783188
+0.38706695
+-0.25431918
+0.87632718
+0.48639783
+0.51836510
+-0.70597709
+-0.37580163
+-0.54121524
+0.59518576
+0.68263955
+0.15164086
+-0.56829346
+-0.48601821
+0.94463653
+0.28116027
+-0.67736784
+-0.42873626
+0.80179587
+-0.61322042
+0.78769391
+-0.14853810
+0.41984712
+-0.80115826
+-0.16258691
+-0.26821620
+0.63815186
+0.31549617
+0.31202343
+-0.53749995
+-0.38961428
+0.05386137
+0.56236764
+0.42048718
+0.41748695
+0.56658126
+-0.53788667
+-0.76043767
+-0.44079996
+-0.40169909
+0.79666719
+-0.18317604
+-0.71276593
+0.07106967
+-0.59660482
+-0.87704959
+-0.02809436
+0.66776912
+-0.33127281
+0.37041860
+0.15598070
+0.03721671
+-0.93446167
+0.16785522
+-0.77769246
+-0.74681068
+-0.70828711
+-0.89917289
+0.49488279
+-0.98531468
+-0.69379118
+-0.65669901
+0.60560144
+0.77692433
+-0.65224623
+-0.29319414
+-0.88890466
+-0.37938518
+-0.25584150
+0.88272440
+0.80069475
+0.73957431
+-0.75576383
+0.32721294
+-0.40050915
+-0.08386271
+0.79693100
+-0.47280248
+-0.29282167
+-0.34724704
+-0.91631023
+-0.83185041
+-0.52242078
+0.82669817
+0.04748193
+0.80296411
+-0.95661322
+-0.47155064
+0.85820781
+0.17438502
+-0.65430467
+-0.67542547
+-0.63420291
+0.11713610
+0.30910144
+-0.93487093
+-0.90185673
+0.59264118
+0.01851000
+0.19515814
+-0.48874887
+-1.00248116
+-0.64029227
+-0.84413710
+-0.21817130
+-0.52414031
+0.11882342
+0.09824126
+0.77610598
+-0.97541546
+-0.44617342
+-0.15138606
+-0.52946824
+-0.91803581
+0.88262368
+0.13350816
+-0.31821769
+-1.01977995
+0.16331288
+0.56834314
+0.43869775
+-0.08690359
+-0.92904290
+-0.31221768
+-0.77789752
+-0.02133538
+-0.09830307
+-0.40053656
+0.25178677
+0.03875371
+0.76032238
+-0.68447350
+-0.86336708
+0.86760321
+-0.27909052
+-1.00101894
+-0.51243094
+0.03291430
+0.34601455
+-0.99277728
+0.45866818
+-0.91638213
+-0.55166610
+0.55628219
+0.67108068
+-0.71962004
+0.20480018
+0.96760825
+0.34542488
+-0.77059827
+-0.46326752
+0.21200062
+0.25356338
+0.99901113
+-0.61067732
+-0.61793087
+0.10658835
+0.23528299
+0.86596669
+-0.17438848
+-0.82001276
+-0.99885124
+0.78496039
+-0.73959944
+0.28079814
+-0.97165678
+0.00626227
+0.56934688
+0.61703258
+-0.36451658
+0.77381851
+-0.69381694
+-0.86177325
+-0.66255863
+0.26107152
+0.63560219
+-0.40029808
+0.48777586
+0.90661725
+-0.98001219
+-0.11291420
+0.45981332
+-0.89768975
+-0.73206098
+-0.60597658
+0.63161106
+-0.20672449
+-0.80012301
+0.86132735
+-0.58308433
+-0.93408459
+0.22623669
+0.54133655
+0.27346134
+-0.37903078
+0.80965556
+-0.76358121
+0.58867798
+0.85723845
+0.66858009
+-0.78850980
+0.67131663
+-0.76537032
+0.11387517
+-0.03000694
+0.53503944
+0.13977667
+0.69133704
+-0.24356766
+-0.27196851
+-0.68895871
+-0.11481618
+-0.96754448
+-0.43894219
+-0.37622294
+-0.16863197
+-0.56934457
+0.81337278
+0.61471092
+-0.54429933
+0.93791467
+0.17493806
+0.73432418
+0.59257399
+0.62763400
+-0.04479403
+-0.49608361
+-0.09675210
+-0.84885608
+-0.47283517
+0.41555164
+0.43498374
+-0.13139936
+0.70181739
+0.57615029
+0.71191258
+-0.20723476
+0.35350051
+0.29298325
+0.65310444
+0.18709264
+0.32862064
+0.53928121
+0.92937151
+0.66499062
+-0.05848814
+-0.17173583
+-0.35967331
+0.17639123
+-0.97541141
+-0.15783077
+-0.41311371
+0.89287083
+0.08093847
+-0.97730212
+0.00228775
+0.13469144
+0.24212689
+-0.89808287
+0.66829225
+-0.55622795
+-0.97485205
+0.33185331
+0.67174204
+0.29662641
+-0.24434716
+0.13533237
+-0.90891410
+0.18110354
+0.53558457
+-0.31244705
+0.67841743
+-0.09953940
+0.07709460
+-0.48526089
+-0.77329765
+0.28583208
+-0.36334619
+0.34762908
+-0.58030586
+0.52802321
+-0.21749154
+0.54062646
+0.58756130
+-0.14326994
+-0.43318276
+-0.17029180
+0.10502935
+-0.59743389
+0.45199861
+-0.29029452
+0.06376228
+0.09828576
+0.27411264
+0.78852953
+-0.81303763
+0.21729901
+-0.83367506
+-0.66932924
+0.32780137
+-0.12845754
+0.91729282
+-0.81412998
+-0.66206623
+0.34467868
+0.37878323
+-0.24025758
+0.17748936
+0.15219055
+0.11493211
+-0.19839205
+0.90689028
+-0.16917880
+0.56960362
+0.97414077
+-0.18345527
+0.40889004
+-0.35402930
+0.00067074
+0.51077639
+0.01369332
+-0.53190813
+-0.72902211
+0.49917672
+-0.11365043
+-0.23023283
+-0.60341837
+-0.09278682
+-0.71619268
+-0.21039577
+-0.34090800
+0.28583184
+0.11713940
+-0.45605825
+-0.51799053
+0.75008628
+0.35658514
+-0.91834744
+0.59554811
+0.69452457
+-0.10534317
+0.87658211
+-0.12491447
+-0.18986322
+0.75834021
+0.10330382
+-0.85846687
+0.21847362
+-0.21606176
+0.76261395
+0.90383201
+-0.05385009
+0.58071623
+-0.20175182
+0.72710390
+-0.56108342
+0.39471303
+-0.15088190
+0.33463702
+0.51724910
+-0.83747596
+0.17632916
+0.18166839
+-0.26634719
+0.47207770
+-0.05357299
+0.93120963
+-0.02266547
+-0.95088900
+-0.55220696
+0.54209610
+0.44815475
+0.11507617
+0.09340096
+0.38883448
+-0.74252854
+0.22040120
+-0.00650170
+0.18351929
+0.90958630
+0.07435171
+-0.97543468
+0.02789443
+-0.85137791
+0.57097700
+0.56591855
+-0.14484169
+0.66754565
+-0.01122358
+-0.04615842
+0.64662091
+0.39578432
+-0.98861824
+0.42816545
+-0.01381783
+-0.67368926
+0.73531191
+0.28279336
+-0.41258966
+-0.12768689
+0.18185185
+-0.65357879
+-0.20227537
+0.69546135
+-0.83852536
+0.01392820
+0.62788664
+-0.64801265
+0.00348408
+-0.36703052
+0.91103523
+0.57734065
+0.00583300
+0.59795158
+0.37545856
+0.40073950
+0.65131140
+-0.45793448
+0.31645355
+0.60605411
+0.18601346
+-0.36851388
+0.74984016
+-0.12039840
+0.57796479
+-0.86173841
+0.19408345
+0.93497415
+-0.70645934
+-0.03088124
+-0.52147225
+-0.94314851
+-0.41056965
+-0.11532664
+0.15037299
+-0.29647416
+-0.18074840
+-0.03531692
+0.10956297
+0.71611862
+0.52495944
+0.61644697
+-0.58982150
+-0.47346467
+0.91771413
+0.43021059
+-0.63506287
+-0.90901605
+0.50624880
+-0.99402033
+-0.17266673
+0.36538160
+-0.42453706
+0.09482896
+0.66959110
+0.89032674
+0.90139937
+-0.69703734
+-0.69482037
+0.44606197
+-0.46836281
+0.49981499
+0.04413450
+0.11964607
+0.07311928
+-0.96231332
+0.16889668
+0.29498935
+0.45537925
+-0.91797545
+-0.12731850
+0.35197973
+-0.90904810
+-0.80980839
+0.72702169
+0.27075195
+-0.04459435
+0.34675050
+0.83563113
+-0.82166453
+0.25631702
+-0.93806908
+0.94729221
+0.25090134
+0.90465474
+0.19052196
+-0.03300232
+-0.37489539
+-0.89350708
+0.10999596
+0.38152003
+0.62144053
+0.58870983
+0.13895011
+0.87654626
+0.29216051
+-0.63935298
+-0.50127384
+0.97182846
+-0.97892474
+0.22010756
+0.25101447
+0.39020073
+0.02918828
+-0.89977817
+-0.99891599
+-0.53401569
+0.66838622
+0.48285162
+0.55558884
+-0.83199957
+-0.58398330
+-0.08676058
+0.73982644
+-0.21496338
+0.90776753
+0.23904383
+-0.27497518
+0.88413966
+-0.13346404
+-0.52272207
+0.55580938
+0.42156017
+0.88329554
+-0.05177164
+-0.90855587
+0.19076371
+-0.20841360
+-0.67760628
+0.25791109
+-0.73644918
+-0.36686367
+-0.95330722
+-0.70420420
+0.73407876
+-0.91456169
+0.99647653
+-0.11046338
+-0.72998834
+0.98002553
+-0.89103666
+0.39876735
+-0.81536749
+0.52125371
+-0.65755260
+0.82940006
+-0.09513545
+0.57788789
+0.23026335
+0.71639347
+0.82784247
+0.55105007
+0.43533528
+-0.82067017
+-0.82730462
+-0.98499305
+0.33588958
+-0.80998917
+-0.99753322
+0.76642275
+-0.61769542
+0.98448753
+-0.07115328
+0.28607547
+-0.60201561
+-0.43125969
+0.13971198
+0.01452827
+-0.11549062
+-0.95518347
+-0.31775147
+0.14448547
+-0.60426530
+0.16667414
+-0.31299794
+-0.59712625
+-0.16079152
+0.21029377
+-0.42110610
+-0.57257915
+0.56109118
+0.57303417
+-0.82716204
+0.04430151
+-0.85487933
+-0.30609888
+-0.27025706
+-0.74109447
+-0.45824254
+0.23119140
+0.11533535
+0.34378004
+0.53498030
+0.38063955
+0.40822816
+-0.61529028
+-0.67498884
+0.50255942
+-0.44814694
+-0.69628188
+-0.15440291
+0.93914807
+0.79252923
+0.05984747
+0.75600374
+0.81219733
+0.02735269
+0.21301019
+-0.75955941
+-0.82954524
+-0.74780846
+-0.16445738
+0.57661510
+0.26813173
+0.67767239
+-0.20728105
+-0.35682744
+-0.80122623
+-0.68851683
+-0.30238098
+0.01065207
+0.26105607
+-0.33776611
+0.06709766
+-0.08075696
+-0.89923067
+-0.04843444
+-0.87189068
+-0.00356787
+-0.59553757
+-0.80493963
+0.57330418
+-0.00475782
+-0.16715115
+0.29908168
+0.54189360
+-0.78717951
+-0.14941114
+-0.67390853
+-0.80551694
+-0.78136997
+-0.49983251
+0.35924196
+0.40214860
+0.20176601
+0.19017267
+0.84265304
+-0.31070471
+-0.95363664
+-0.51337630
+0.10278487
+-0.04496068
+-0.55697501
+0.15286481
+-0.52389860
+0.38851976
+0.25141513
+0.21112859
+-0.07345909
+-0.09699303
+-0.31632686
+-0.51852146
+-0.10437417
+0.34646416
+-0.84058234
+0.63482845
+-0.46125364
+0.26128900
+0.96205556
+0.77278352
+-0.09785581
+0.27716446
+-0.01394737
+0.36453140
+-0.62426579
+-0.14865476
+0.29421759
+-0.80376907
+0.33676279
+0.46391499
+-0.55944601
+-0.39527595
+0.21274960
+-0.25226533
+-0.76158366
+0.03978193
+-0.82497013
+0.29002655
+0.90845799
+-0.84772390
+-0.54213089
+0.35226250
+0.83149731
+-0.69857004
+0.73199701
+-0.00524586
+-0.28520131
+-0.78627393
+-0.05111635
+0.73213279
+-0.07717550
+0.09514201
+0.29649913
+-0.52544901
+0.76152360
+0.88257313
+0.65692842
+-0.93777927
+0.00912344
+0.84451997
+0.49655938
+-0.17229676
+-0.21633518
+0.63117898
+0.72120106
+-0.02300048
+0.03615606
+-0.51538485
+0.26585662
+0.43412983
+0.83980680
+0.95141137
+-0.60272178
+0.61884332
+0.99826229
+-0.20131761
+-0.52058467
+0.17781866
+-0.61880839
+0.93139195
+-0.12298328
+-0.16873658
+-0.78037372
+0.01009166
+-0.98997362
+0.06482458
+0.53670967
+-0.04753512
+-0.19005877
+-0.57101306
+-0.50510308
+0.31579912
+-0.59927130
+-0.38003623
+-0.60216022
+0.90949011
+0.32183778
+-0.86453670
+-0.14300984
+-0.97865194
+-0.16621745
+-0.08586323
+0.47046208
+-0.28382802
+-0.69820115
+-0.35295957
+-0.64322430
+-0.16432458
+0.44298756
+0.45618260
+0.83380127
+0.81510878
+-0.88969955
+-0.85699254
+-0.88264976
+0.18985057
+0.65907669
+0.79165292
+-0.25850451
+0.86857295
+0.47234821
+0.39395320
+0.95598960
+-0.94967597
+0.45689344
+-0.28770655
+0.77799261
+0.13805068
+0.30244303
+-0.32841772
+0.51239395
+0.20152903
+-0.27265817
+-0.68308175
+-0.89294340
+-0.46532875
+0.91942370
+0.91112995
+-0.40485448
+0.81995201
+0.15609944
+0.93944860
+0.01007962
+0.38867319
+-0.96197712
+-0.75313714
+0.16372871
+0.33743763
+-0.11833179
+0.56347179
+0.49584746
+-0.19174886
+-0.98152374
+-0.26425815
+-0.48167133
+-0.67003408
+-0.18472683
+-0.97425590
+-0.51177511
+-0.20416898
+0.47357190
+-0.10246158
+0.36164808
+-0.65366030
+-0.79949415
+0.02886260
+0.37334561
+0.94183016
+-0.22746313
+0.70110381
+0.42445445
+-0.91109183
+0.61142731
+-0.49912816
+0.16735148
+0.59014714
+-0.13295156
+0.86251938
+-0.37852263
+0.60154748
+-0.54810137
+0.75982988
+-0.01935834
+-0.22354436
+0.87026632
+-0.11133015
+0.14147404
+-0.13086205
+0.35736655
+-0.68599884
+0.81860075
+-0.32823500
+0.06417742
+-0.63257209
+0.81606230
+0.20446819
+0.45730988
+-0.28778585
+0.92234882
+0.44023612
+-0.58702400
+0.59934925
+-0.51959387
+0.78887449
+0.01205409
+-1.00482039
+0.02658937
+-0.44437817
+-0.27779151
+-0.44733323
+0.22512896
+-0.89143261
+0.57239225
+-0.79663867
+0.80047128
+0.92528888
+0.98417547
+-0.15498646
+0.82134254
+0.31978315
+0.64659714
+0.96605630
+-0.75078780
+-0.34489690
+-0.74163727
+-0.98028818
+0.16991698
+-0.02339791
+0.19471525
+0.96882436
+0.30940416
+0.60721937
+-0.13176016
+0.76327122
+0.06724857
+-0.97443633
+-0.24056161
+-0.94665122
+-0.95063282
+-0.94156190
+0.33013379
+0.70288338
+-0.17996993
+0.78566411
+0.36248027
+0.38210035
+0.85835579
+-0.93111462
+-0.80732675
+-0.32969760
+0.01199374
+0.51054178
+-0.48187762
+-0.87300156
+0.28910467
+-0.43274952
+-0.50187465
+0.73028757
+0.33720714
+0.76934405
+0.11207461
+-0.53849095
+0.09208982
+0.07019695
+0.97575273
+0.79308708
+-0.84380394
+0.85760339
+0.64990005
+-0.74336661
+0.41887346
+0.74487745
+0.74921206
+0.87037050
+0.48625510
+-0.65102225
+0.11029200
+-0.86562356
+-0.27955742
+0.17729469
+-0.54617591
+0.15399378
+0.22182508
+0.51357171
+0.25580390
+0.91212847
+0.06946467
+0.33704994
+-0.55185472
+-0.43121804
+-0.79763656
+-0.67297792
+0.97864628
+-0.29738155
+0.77357915
+-0.70943054
+0.14635717
+0.89080693
+-0.48190289
+0.94417447
+-0.22216827
+-0.40080027
+0.37719917
+-0.98609621
+-0.48631894
+-0.76227497
+0.27485830
+0.28026720
+-0.41449125
+0.82101846
+-0.92830628
+0.20607370
+-0.71699562
+-0.62549865
+0.95170315
+-0.81524985
+0.07606044
+0.65327687
+0.80274189
+0.43249200
+-0.24159829
+0.67926666
+-0.38943939
+0.97469796
+0.29385795
+0.71617687
+0.74419017
+0.49966294
+0.39167321
+-0.27788454
+-0.68698327
+0.40680471
+0.93073234
+-0.36336440
+0.18666634
+-0.02874675
+-0.53559261
+0.13441812
+-0.53378962
+-0.79540687
+-0.38580528
+-0.69195405
+-0.38469298
+0.57910215
+-0.05663426
+-0.77716512
+0.72817417
+-0.96903095
+-0.93763907
+0.82152365
+-0.23513450
+-0.63719816
+-0.77203180
+-0.21324624
+-0.98854962
+0.53180082
+-0.64349274
+-0.28307984
+-0.14856525
+0.26356513
+0.11435987
+-0.82737966
+-0.49531736
+-0.57461419
+-0.51488502
+0.03629266
+0.15640663
+0.32767943
+0.18454243
+0.83572875
+-0.00893506
+0.16139457
+-0.44062864
+-0.18066129
+0.70612023
+-0.81159060
+0.99521442
+-0.64776719
+0.63391815
+-0.48005976
+0.34016854
+0.81144428
+0.75146576
+-0.63762598
+0.49430262
+-0.47657326
+-0.46515650
+-0.64710370
+0.91876220
+-0.01576059
+0.52391985
+0.82266375
+0.75035182
+0.09715667
+0.41570616
+-0.95109707
+0.07568544
+-0.07420906
+0.71387452
+0.70384844
+-0.96848307
+0.61755519
+-0.15107874
+-0.56740453
+-0.60067340
+0.36320812
+-0.22135455
+0.62491859
+0.97906201
+-0.25844385
+0.59433353
+-0.10688215
+0.04974610
+-0.96557038
+-0.87822075
+0.01808564
+-0.10696864
+-0.58414530
+0.58638302
+0.95507567
+-0.69967055
+-0.69007915
+0.50221676
+0.70800488
+0.67311349
+0.86634354
+-0.60416878
+-0.88439636
+-0.75269244
+0.85060496
+0.70567448
+-0.96967211
+-0.38639506
+-0.96200131
+-0.93979935
+-0.17785507
+0.83412049
+0.93988958
+0.42225270
+-0.14309443
+0.89240330
+0.89144138
+-0.79284696
+0.63576341
+-0.49905192
+0.01920887
+0.47013465
+-0.61244404
+-0.44080779
+0.56108848
+-0.83729173
+-0.71911516
+0.25881763
+-0.52233338
+0.40819716
+0.28046404
+-0.19785232
+-0.53116781
+0.07888569
+0.74832127
+0.00327666
+-0.82394423
+0.55676634
+-0.39322634
+-0.30000438
+0.24360216
+0.74522622
+-0.05726895
+0.19105882
+-0.16606137
+-0.94625526
+-0.63047366
+-0.24843464
+0.09585910
+0.56058960
+0.91556358
+-0.20561438
+0.75633734
+-0.61305922
+0.65709661
+0.99158798
+0.79409291
+-0.47563014
+0.94495749
+0.01269946
+-0.33488963
+0.75341117
+0.85048371
+0.38394109
+-0.26435510
+0.32918443
+0.49326217
+-0.42225783
+0.45157576
+-0.79012237
+-0.20693322
+-0.45286158
+-0.22954832
+0.26510663
+-0.88629494
+0.64167423
+0.55937815
+0.20614397
+0.21698767
+0.75209208
+-0.56251879
+-0.70377044
+0.53739876
+-0.66376822
+0.73613681
+0.90458706
+0.29548291
+0.02421588
+0.67909620
+-0.78056951
+0.23067648
+-0.01896916
+0.60477247
+0.30278355
+-0.75007173
+0.85373371
+-0.45695562
+0.60896436
+0.15911574
+0.13206238
+0.60591904
+0.55916935
+-0.23017591
+-0.10774619
+0.19316688
+-0.81639874
+-0.73495489
+0.90013705
+0.05825774
+0.79150195
+0.28777818
+-0.88017880
+0.24276610
+0.39261970
+0.10762494
+-0.78714160
+0.33583346
+0.22300431
+0.35582312
+-0.24733492
+0.36954578
+0.17543684
+0.42606379
+-0.96936157
+-0.37035789
+0.54958714
+-0.58515341
+0.82160976
+-0.33067932
+-0.76091384
+-0.28946794
+0.04852793
+-0.45929391
+0.42425526
+0.30718978
+0.06089078
+-0.65780411
+-0.70160986
+0.52264147
+-0.92937885
+-0.19820042
+0.80317413
+0.69400295
+-0.29633194
+-0.43762948
+0.59257772
+-0.72508298
+0.21393559
+-0.75993640
+-0.76303510
+-0.85784741
+0.55188066
+0.03675300
+-0.76071121
+0.59944157
+0.49847090
+-0.92332221
+0.06529774
+0.25595750
+0.10720304
+0.66114784
+0.74687582
+-0.42428597
+-0.21516962
+-0.94894952
+0.35372155
+0.64124369
+0.76712492
+0.04602525
+0.30416042
+-0.95586218
+-0.85516529
+-0.72284259
+-0.34021361
+-0.20831043
+-1.04314536
+-0.41254630
+-0.52379596
+-0.22722587
+-0.75587714
+-0.51612180
+0.21569551
+0.94688674
+-0.24984456
+-0.34947317
+0.35152395
+-0.35479458
+0.58360469
+-0.25450758
+-0.75372648
+0.48204223
+0.23000813
+0.77779914
+0.74592144
+-0.87983519
+0.70502898
+-0.78922078
+0.92039243
+-0.19149023
+0.69036122
+-0.05929506
+-0.46978819
+0.03063546
+-0.96753931
+0.92139040
+-0.31078647
+0.14774355
+-0.35682948
+0.13716838
+-0.16093878
+0.82753345
+-0.02329648
+0.91229402
+0.08751234
+0.27524930
+-0.54654240
+0.52754471
+0.69188090
+-0.27543361
+-0.47032664
+-0.14800178
+-0.16964275
+0.32804258
+0.37114828
+-0.19677229
+-0.16232256
+-0.50869214
+-0.21850210
+-0.14776539
+-0.95141130
+0.53225741
+0.20663237
+-0.50666948
+-1.00582101
+-0.10701873
+0.20642489
+-0.62239786
+0.50288709
+-0.77627474
+-0.95944304
+-0.66751445
+0.51676503
+-0.74719600
+0.18299086
+0.94977515
+-0.48135107
+-0.50248691
+-0.44083138
+-0.33497487
+0.15726519
+-0.63276052
+0.24451126
+-0.37550534
+-0.58202895
+0.20317780
+-0.51482298
+0.62032151
+-0.82363153
+0.64680860
+0.55312789
+0.05061376
+0.94058532
+0.34238433
+-0.53600290
+0.82108063
+0.80094509
+-0.36469767
+-0.59914933
+-0.57682225
+-0.98166937
+-0.13497382
+0.33371232
+0.30333693
+-0.82779182
+-0.88005615
+-0.82527320
+0.61632070
+0.33153007
+-0.40209227
+-0.11913924
+-0.24495231
+-0.06552400
+-0.32371035
+-0.41118218
+0.69100834
+0.01031743
+0.41060937
+0.80801108
+0.78209629
+0.47404464
+-0.90107289
+-0.48736633
+-0.31917225
+0.32524044
+-0.05870721
+-0.06606038
+0.82109910
+0.68380561
+-0.25968881
+0.47327626
+0.71664364
+0.95786781
+-0.21641841
+0.75949263
+-0.05993727
+-0.26268713
+0.04148418
+-0.55449606
+0.54046762
+-0.62370720
+0.60886951
+0.22657517
+0.05999277
+0.56851200
+0.35022150
+0.60355858
+-0.94532103
+0.59973484
+-0.67894749
+0.26088777
+0.32491277
+-0.59279212
+0.99233767
+-0.33168009
+-0.38239311
+-0.18758132
+0.28494412
+-0.08501684
+-0.10481749
+-0.73591466
+0.62046264
+-0.68696494
+-0.26125132
+0.34365883
+-0.72471032
+0.64225823
+-0.58219263
+-0.57937777
+-0.22578320
+-0.03024214
+-0.45203600
+0.33161484
+-0.05668980
+-0.74864920
+-0.79110417
+0.95535151
+0.18716889
+-0.25997205
+-0.72385521
+0.26793906
+-0.70927706
+0.99890912
+-0.87461316
+-0.86765625
+0.18251209
+-0.45868373
+-0.49906754
+-0.33328090
+0.38757479
+-0.90017280
+-0.21742898
+0.47257352
+-0.35672138
+-0.52868428
+0.35588924
+-0.87652952
+-0.81535575
+0.66313936
+-0.52660865
+-0.17770230
+0.33502960
+0.36142433
+-0.84499464
+0.61108026
+0.45570843
+-0.21033150
+-0.87377357
+0.34617843
+-0.41808838
+0.37363352
+0.59307563
+-0.56706935
+0.74669213
+-0.96029680
+0.33403583
+-0.73799452
+0.95428014
+0.92443419
+0.40966117
+0.65219704
+0.08856249
+0.16524720
+-0.58359161
+0.66787636
+0.70666075
+0.26740849
+0.92262828
+0.61218107
+0.20696402
+-0.78266533
+-0.91105413
+-0.13138402
+-0.10109985
+-0.72835660
+0.24004495
+-0.80216379
+0.21998417
+-0.60078868
+0.93263280
+0.74468350
+-0.47930664
+-0.94776600
+-0.35042089
+-0.32186282
+-0.39401203
+0.29175961
+-0.58407643
+0.37636113
+0.97108686
+-0.02805561
+0.97843063
+0.94768119
+0.01836264
+0.37344062
+-0.73592961
+-0.83624300
+-0.39032418
+-0.03329879
+-0.10502332
+-0.81757806
+0.43988085
+0.31719625
+-0.11940229
+-0.90080147
+0.51970565
+0.80689049
+0.34561491
+0.96384370
+0.81717098
+-0.05812716
+-0.71963030
+-0.48583817
+-0.78939378
+-0.88133164
+0.18432653
+-0.08750695
+-0.91507598
+0.19136393
+-0.69139543
+0.48028171
+0.56978834
+0.68796635
+0.10360336
+-0.28972709
+-0.74524027
+0.51362944
+0.84430611
+-0.81676315
+-0.67326188
+-0.88338778
+0.17118812
+-0.71598342
+0.47104144
+0.32551134
+0.46628594
+0.52228391
+0.36252522
+-0.89913267
+0.64604640
+0.97798884
+0.39523160
+0.20278323
+-0.70615408
+-0.00959301
+-0.95948357
+-0.96951443
+-0.64373067
+-0.31897092
+-0.67999643
+0.04277050
+0.97118795
+-0.05603278
+-0.74637949
+-0.16510671
+-0.87716367
+-0.17305553
+0.92149484
+-0.60645798
+0.13371623
+-0.71546018
+-0.29895937
+0.35410166
+0.62944674
+0.27707565
+0.62280858
+-0.17683434
+-0.47296214
+0.14457262
+0.81868804
+0.87994206
+0.54305637
+0.90729952
+0.13738477
+0.87409973
+0.05680275
+0.93660760
+0.13902509
+-0.81958401
+-0.63800699
+0.55287015
+-0.44236320
+0.99411583
+-0.07742286
+0.93088484
+0.64272153
+-0.30414683
+0.72192192
+0.93398285
+0.57507634
+0.82495272
+-0.74059030
+-0.23520577
+-0.61866230
+0.65695035
+0.88826382
+-0.03723264
+0.63079989
+0.89733768
+0.73383737
+-0.69520742
+-0.41004264
+0.85528958
+0.42856383
+0.19890094
+0.36138237
+-0.16385460
+0.64827657
+0.58511245
+0.13607037
+-0.78139953
+-0.40512145
+0.39072120
+0.74763179
+0.30985546
+0.94262373
+-0.83777042
+0.56485248
+-0.73782170
+0.32109177
+-0.26677537
+-0.00634950
+0.41291308
+-0.09848410
+-0.10840410
+0.02665246
+-0.03621644
+-0.14323014
+0.81978774
+0.70544386
+-0.48197412
+0.61188316
+0.34210420
+-0.09680039
+-0.61304733
+-0.61945701
+-0.18459189
+-0.45465034
+-0.45951933
+0.01509368
+-0.17660093
+-0.37142015
+0.02500153
+-0.34927225
+-0.96903211
+0.82696891
+-0.84144144
+0.64617491
+-0.16838050
+0.28461957
+0.12837565
+0.36667800
+0.81750798
+-0.86619829
+-0.64324260
+-0.06612778
+-0.20811588
+-0.84111738
+-0.58729261
+-0.48974437
+0.15439487
+-0.88084131
+-0.81354465
+0.07229769
+-0.19078451
+-0.57475400
+-0.07373810
+0.82078648
+-0.46571207
+0.27493763
+-0.54967073
+-0.05803221
+-0.84773988
+0.75700033
+-0.86000797
+0.88909924
+0.76923192
+-0.04122972
+-0.77714139
+-0.83723262
+0.28185177
+-0.07654566
+-0.01844525
+0.43452835
+-0.60432023
+0.75818920
+-0.88584276
+-0.53409672
+-0.65274271
+0.29384756
+-0.20178747
+-0.56850681
+-0.84562464
+0.20283866
+0.20843244
+0.55047798
+0.59648371
+0.50493848
+-0.91712509
+-0.03502655
+0.39759028
+-0.52165931
+0.64026260
+-0.81885535
+-0.47397888
+0.87130547
+0.74968040
+-0.41771394
+-0.11431009
+0.44528222
+-0.69052276
+0.69118798
+-0.56477213
+0.05947530
+0.29634011
+0.94571888
+0.06647670
+-0.89510092
+-0.56797236
+0.84544885
+-0.97198680
+0.49331403
+0.61049545
+-0.19422305
+-0.79430221
+0.95191979
+0.39588773
+0.66074204
+-0.47048372
+-0.45819795
+-0.42329484
+-0.35334831
+0.28422499
+0.10033906
+-0.68470317
+0.65429163
+0.08918691
+-0.40857339
+-0.27926308
+0.29249120
+-0.52749133
+-0.38209927
+-0.66348973
+0.22132039
+-0.75328346
+0.07716727
+-0.51816121
+-0.78915811
+-0.49181098
+0.38388383
+0.03468668
+-0.45440233
+-0.50530416
+0.61112380
+-0.00497735
+-0.58323726
+-0.77422504
+0.01626050
+-0.17980713
+0.77819431
+0.13102055
+-0.57284048
+-0.37004822
+0.91077828
+0.48413873
+0.92284083
+0.56109059
+0.00524259
+0.84587204
+0.10373199
+0.33068013
+-0.19862461
+-0.76645489
+-0.29325879
+-0.68454516
+0.81498444
+-0.60967696
+0.04971135
+0.28354883
+-0.82789682
+0.91224241
+0.39044583
+-0.50424993
+0.54337227
+0.98528504
+0.12644219
+-0.41425824
+-0.55748531
+0.01628757
+-0.42678678
+0.34404898
+-0.84183852
+0.88885021
+-0.21424323
+-0.95726955
+-0.37795556
+-0.94924671
+0.73865759
+0.75001192
+0.72309875
+-0.50370967
+-0.38932484
+-0.68501288
+0.02253544
+-0.98223347
+0.19016993
+0.96468532
+-0.78966363
+0.62384999
+0.90565431
+-0.93976618
+0.20571125
+0.54787254
+-0.50080821
+0.52493584
+0.82977605
+0.70736599
+0.17834747
+0.08127308
+-0.97681693
+0.41124868
+0.93267477
+-0.83002940
+0.59776461
+0.60225809
+0.65465689
+-0.10430795
+0.48556209
+-0.47413355
+-0.90611180
+0.50351906
+0.32646465
+-0.03052312
+-0.46377832
+0.17467892
+0.59741461
+-0.45819086
+-0.66400892
+0.06112003
+0.30496144
+0.06237447
+-0.15958059
+0.79193548
+0.55381585
+0.22220551
+0.31046563
+-0.46365222
+-0.71350718
+0.69654574
+-0.46874708
+0.60622141
+0.58232504
+-0.14426712
+0.69248373
+-0.91882587
+0.63442361
+-0.63685909
+-0.27934535
+-0.78612093
+0.98575092
+0.96883860
+-0.16811990
+-0.80296347
+0.64521518
+-0.48815903
+-0.51964681
+-0.16625110
+-0.69211068
+0.51932298
+0.10406379
+0.02782546
+-0.67000390
+-0.34141835
+0.06134137
+0.53337883
+-0.35101797
+-0.71086429
+0.52744369
+-0.21660975
+-0.44048174
+-0.06450471
+-0.63837683
+0.55428313
+-0.71457967
+-0.82276555
+-0.27069519
+0.47241754
+0.47724161
+0.06655844
+-0.57883517
+-0.92320579
+0.74765644
+0.14583071
+0.40702878
+-0.52335954
+-0.07052978
+-0.67298027
+0.64248768
+0.50697295
+-0.33554509
+-0.14767611
+-0.26217631
+0.59233528
+-0.72032232
+-0.16752683
+0.66496198
+0.08667150
+-0.58797211
+0.29541938
+-0.96773768
+-0.91710916
+0.16888844
+0.98107979
+-0.73248555
+0.90244603
+-0.21924682
+-0.03457641
+-0.37613770
+0.00640013
+0.56764815
+0.42617915
+-0.02482992
+-0.42087944
+0.61479360
+-0.74306520
+-0.13024377
+-0.75601630
+-0.05950980
+0.52017587
+0.90117139
+0.86157169
+-0.89120256
+-0.02375176
+0.16260810
+0.03911849
+0.22457245
+0.98667240
+0.19309868
+0.65053333
+0.62127353
+-0.25439239
+0.39668993
+-0.84901151
+-0.77928521
+-0.22635105
+0.40043436
+0.16917607
+-0.31645021
+-0.23033313
+0.45216148
+0.24707224
+-0.11005889
+0.81612856
+0.40266947
+0.82957829
+0.28199694
+0.45662503
+-0.60129618
+-0.81291816
+0.30416776
+0.36782873
+-0.60422769
+0.34929766
+-0.80998006
+-0.37507565
+-0.59365226
+0.63539455
+0.21929233
+-0.51747805
+-0.32809699
+-0.00192914
+0.73663934
+1.00137731
+-0.60340125
+0.09178336
+-0.38581413
+0.69057852
+-0.09878971
+-0.64464510
+1.00985369
+-0.93174224
+-0.56712563
+0.96766216
+-0.50402882
+-0.04311011
+-0.65525755
+-0.68567987
+0.33123947
+-0.27028558
+-0.72426873
+-0.06193934
+-0.65837432
+-0.59849637
+-0.17565064
+0.50465598
+0.97749826
+0.82446991
+-0.10348924
+-0.69281905
+0.44324000
+0.64774721
+-0.06060976
+0.00176615
+-0.26773646
+-0.09961570
+-0.44815372
+-0.73906543
+-0.24012090
+-0.51706697
+0.82696137
+0.09017055
+0.41618585
+-0.85198436
+-0.15360813
+-0.68393315
+0.87334492
+-0.44762703
+-0.83192440
+-0.54936307
+0.31818110
+0.84756996
+-0.84022537
+-0.06231656
+-0.16634384
+-0.26756283
+0.28102007
+-0.93648575
+-0.10000525
+-0.92624810
+0.16906816
+0.22083235
+0.57692492
+0.00552172
+0.69502728
+0.50090358
+-0.77123920
+0.97986070
+0.90806467
+-0.46496556
+-0.83978963
+-0.50635790
+0.93807451
+-0.30945358
+1.00132145
+0.48106605
+-0.23732710
+0.63758294
+-0.04614468
+0.52094388
+0.70214785
+-0.10067952
+-0.09253787
+0.71544040
+0.27323391
+0.59427888
+0.53040377
+0.20411916
+-0.82799100
+0.34742008
+0.18304485
+0.70908632
+0.13251075
+0.47769199
+0.06079704
+-0.57795180
+0.34611213
+0.66546769
+0.11333162
+0.72289331
+-0.24507706
+0.26223760
+-0.39205857
+-0.16020431
+-0.13861078
+0.51692091
+-0.35958832
+0.48042734
+-0.30002323
+-0.69921098
+-0.64906355
+-0.33487246
+-0.48797377
+-0.13600536
+-0.15051488
+0.00761352
+0.01973657
+0.71067938
+-0.86678456
+0.08684528
+0.83885981
+0.07118514
+-0.50017274
+-0.06528917
+0.23478568
+-0.57228136
+-0.78011403
+-0.72639862
+0.90222950
+0.95543015
+-0.39802495
+-0.16467365
+0.71853456
+0.28334122
+0.25555407
+0.38443276
+0.66828970
+0.38963184
+1.04793568
+-0.34171318
+-0.75805467
+0.51448006
+-0.84456485
+0.71689297
+-0.06505627
+0.76833597
+0.00442748
+-0.68899912
+-0.68196516
+-0.72861979
+0.22147797
+-0.35202120
+-0.46015856
+0.57292283
+0.55316717
+0.93048921
+-0.50933159
+0.30374364
+0.83513810
+-0.88326073
+-0.76176791
+-0.77509073
+0.15886512
+0.26125753
+-0.42205108
+-0.07168559
+0.72905613
+0.00420363
+0.69850009
+0.40100044
+0.39257843
+-0.07558134
+0.92579423
+0.93884420
+0.39077625
+0.46308494
+0.54466698
+0.68444543
+0.59271739
+0.18407176
+0.48856162
+-0.74343970
+0.87022362
+-0.08035379
+0.37952090
+0.56374142
+-0.86875450
+-0.43188716
+0.24865734
+-0.44892806
+-1.02001264
+0.26585826
+-0.76091050
+0.72773542
+0.53336107
+-0.68307828
+-0.11263119
+-0.70853449
+-1.03425213
+-0.10416656
+0.70026779
+-0.04809984
+-0.91849920
+-0.46457501
+0.17053524
+0.78536642
+0.83517517
+0.04703102
+0.14838740
+-0.39550798
+-0.45476518
+-0.87893043
+0.46283807
+0.90551196
+0.84727062
+0.90192718
+-0.54634552
+0.53102419
+-0.82757492
+0.82657455
+-0.10937225
+-0.36764856
+-0.40249764
+-0.78016082
+0.16157835
+0.20339015
+-0.15415969
+-0.52498514
+0.65618975
+0.31608910
+0.89806487
+0.63280943
+0.15382172
+0.02893292
+-0.41412827
+-0.94474383
+0.06407031
+0.23998276
+-0.40576131
+-0.94136053
+-0.72025772
+0.29469213
+-0.91906688
+0.79560037
+0.94727866
+-0.29824981
+-0.75746065
+0.34854409
+0.96645516
+0.02617208
+0.55795603
+0.49097902
+0.18623737
+-0.59226403
+-0.30350565
+0.57692064
+-0.11848710
+-0.81324424
+-0.24569820
+0.89355935
+0.64853104
+0.36450297
+-0.24991796
+-0.93176693
+-0.80511241
+0.94715019
+-0.59547111
+0.38738789
+-0.45149332
+-0.82472506
+-0.44245736
+-0.21070467
+0.87805912
+0.88080960
+-0.47246327
+0.20809192
+0.20269992
+-0.15994695
+-0.19158976
+0.82023282
+0.52149847
+-0.72860551
+-0.83795438
+-0.44835990
+0.57755983
+0.81334963
+0.69924299
+0.60628988
+-0.08793880
+0.97267698
+-0.03284032
+0.76655846
+0.33135323
+0.27018706
+0.87581661
+-0.14536378
+-0.57220690
+0.64115143
+-0.72685093
+0.00537408
+-0.56516796
+-0.67980989
+-0.07549960
+-0.15772391
+0.23449412
+0.18386891
+0.45622474
+0.76121253
+-0.11800266
+0.58682991
+-0.95853673
+0.26020928
+0.02761463
+-0.65884143
+0.13433073
+-1.03149991
+0.56733307
+0.64642983
+0.59309728
+-0.78361751
+0.15075386
+0.35668965
+-0.75084241
+0.96285404
+-0.78111927
+-1.05333127
+0.36601898
+0.71147421
+0.56702394
+-0.98688852
+-0.25439415
+0.66143580
+0.29796998
+-0.88741424
+0.06703477
+0.60317679
+0.09529026
+-0.73799111
+-0.07887675
+-0.53338252
+0.12087669
+-0.19274171
+-0.78472478
+-0.73506956
+0.84454280
+0.06100533
+0.91904884
+-0.65138309
+-0.81211871
+0.81880078
+-0.19679189
+0.48919762
+-0.30626313
+-0.79540712
+0.46507445
+0.74114841
+0.62707012
+0.48307680
+-0.47796116
+-0.77847441
+0.73547101
+-0.49049639
+0.51947244
+0.81192976
+0.03952725
+-0.37763391
+0.18687684
+-0.27790070
+0.88938687
+0.25091806
+-0.32957428
+-0.81416112
+0.70037681
+-0.22239726
+0.23157408
+0.04389302
+-0.09059247
+0.05179637
+0.30464690
+-0.92625709
+0.78746239
+0.03403276
+-0.25648815
+-0.87213075
+-0.76627105
+0.09000932
+0.28334743
+-0.09291961
+0.76596070
+0.57623101
+-0.08425155
+-0.17597116
+0.09538528
+-0.40706803
+0.57423461
+0.21319694
+-0.99019264
+0.08556758
+0.78085297
+0.49222579
+0.79766439
+-0.24342358
+0.56624264
+0.49772619
+-0.14614706
+-0.93936737
+-0.37792441
+-0.85487885
+-0.59632725
+0.52349355
+-0.48257585
+0.08303714
+0.76258273
+0.13942832
+0.23019925
+0.74876284
+-0.96707468
+-0.07865457
+0.35011941
+-1.00460203
+0.71140743
+0.65965438
+0.56216092
+0.70413295
+-0.33703926
+0.46685199
+0.53518366
+0.31222908
+0.57645923
+0.71189147
+-0.06870328
+-0.19714728
+-0.21306242
+-0.80597632
+-0.49033800
+-0.38199338
+-0.67415883
+-0.06606444
+0.05572527
+0.12489057
+-0.61840252
+0.38309266
+-0.56920312
+-0.71990697
+-0.87357340
+-0.80503671
+-0.61613694
+0.03918022
+0.78309530
+-0.03683418
+-0.21092537
+0.64357388
+0.00871947
+0.37202357
+0.60818091
+-0.65383174
+0.90007037
+-0.45046154
+0.58683114
+-0.79731574
+-0.41823968
+-0.59331412
+0.04071481
+-0.95630295
+-0.35615913
+0.83001492
+-0.05909129
+-0.01346195
+0.43838036
+-0.01531826
+-0.04666489
+-0.37490855
+0.18463552
+-0.34153897
+-0.50357149
+-0.71837949
+-0.56909199
+-0.25789934
+0.82941568
+-0.93557732
+-0.70158276
+-0.51400982
+-0.11179721
+0.77178037
+-0.88542568
+-0.43665304
+-0.87442389
+-0.67668161
+-0.13651240
+-0.04537932
+0.43383288
+-0.13852923
+0.14055097
+0.98674238
+-0.22911303
+-0.50782680
+-0.08679990
+-0.19831532
+0.27422476
+0.77265919
+0.88114190
+-0.42072150
+-0.13136280
+-0.82175422
+0.36475384
+0.69390929
+0.83629191
+0.22751260
+-0.75728016
+-0.30476153
+0.08500588
+-0.02950215
+-0.48389262
+-0.69165841
+0.12028933
+0.74641502
+-0.71566707
+-0.55876461
+-0.66115940
+-0.43366963
+-0.01443863
+-0.34102654
+0.29361212
+-0.10349226
+-0.88967500
+-0.60083267
+-0.51956382
+0.17409694
+0.08862126
+0.54246688
+-0.39720082
+0.93867576
+-0.65727469
+0.38944983
+-0.34293079
+-0.84770247
+0.83709896
+-0.60734236
+-0.44457114
+0.43124211
+0.04098821
+-0.86007045
+0.87790585
+-0.76769030
+0.21138144
+0.21510434
+-0.42923111
+0.54555500
+0.55947173
+0.45648324
+0.42359436
+-0.90154698
+0.81740963
+-0.72021773
+0.20303452
+-0.71314982
+-0.87857228
+0.76739347
+0.74797368
+-0.30964303
+-0.76671669
+0.72823608
+0.60062599
+-0.39227045
+0.84864914
+-0.05870599
+-0.15847838
+-0.16276491
+-0.64777669
+0.60188580
+0.05284560
+0.73888147
+-0.25270325
+-0.45529169
+-0.86703135
+0.74609959
+0.37272346
+-0.36057162
+0.69225383
+-0.77915649
+-0.76302405
+-0.03277320
+0.29873729
+-0.35232389
+0.75154865
+-0.95860532
+-0.91547347
+-0.83424957
+0.87629569
+0.89092886
+-0.58265448
+0.79541147
+-0.84961644
+-0.68486705
+-0.34040719
+-0.77643448
+0.35087180
+-0.49798983
+0.56649303
+0.51364934
+0.05753386
+-0.87653302
+-0.17134672
+0.46060944
+-0.22596925
+-0.60435992
+0.01342404
+0.18171895
+-0.77533305
+0.13399422
+-0.85720603
+-0.79591760
+0.29655778
+0.33794796
+0.09328616
+0.98311257
+0.12216425
+-0.08000469
+0.27954865
+-0.51751682
+0.44407034
+-0.41637373
+-0.16764784
+-0.82107992
+0.25483668
+0.55107248
+0.35999715
+-0.60683596
+-0.26265550
+0.50175166
+0.84972322
+-0.49559611
+0.13704562
+0.11271477
+0.25766361
+0.61575353
+-0.70931581
+0.39142692
+0.59115517
+0.99738598
+0.44703805
+-0.47719646
+-0.28237081
+-0.23871326
+0.87776816
+0.49510455
+-0.32818091
+0.88603544
+0.47584200
+0.49535084
+0.64757597
+-0.06691206
+0.98928571
+-0.75640413
+0.20609617
+0.46059239
+-0.64284155
+0.17878103
+-0.03075397
+-0.68489987
+-0.71802482
+0.51713431
+-0.88374487
+0.63884687
+0.10405314
+0.77294958
+0.16860235
+-0.16502994
+0.49016643
+0.25753605
+-0.30084693
+-0.33814853
+0.29923809
+-0.97575681
+-0.17097098
+0.06171381
+-0.28254914
+-0.95266258
+0.91290319
+-0.81638157
+-0.61967868
+0.44962561
+-0.98984232
+-0.39719152
+0.46203268
+0.52513444
+0.21219599
+-0.72212863
+0.36115158
+0.49724114
+0.75422680
+0.91951501
+-0.62893263
+0.22342706
+-0.76262258
+0.12706411
+-0.85670364
+0.19924057
+-0.20784402
+0.13200819
+-0.38219124
+-0.51778716
+-0.10733318
+0.87798643
+0.79881847
+-0.17080265
+0.06182814
+0.73036230
+0.68226933
+0.40995979
+-0.92736688
+-0.05531317
+-0.36075199
+0.41032004
+0.24182022
+0.67273641
+-0.25365263
+-0.37128991
+-0.07551205
+-0.70868814
+-0.32960111
+-0.88650961
+0.15189219
+-0.00346529
+0.78331041
+-0.65356368
+0.17010093
+-0.81574903
+-0.52988774
+0.55442917
+-0.91193139
+0.88911748
+0.52760100
+-0.63672730
+0.94655228
+-0.49527693
+-0.88534116
+0.30729020
+-0.77732091
+0.31620395
+0.14238417
+-0.70262733
+-0.16428924
+0.46428907
+-0.03955823
+0.60478938
+0.96625865
+0.43751657
+-0.26724851
+-0.72576836
+-0.04772675
+0.53342283
+0.87544727
+-0.98798173
+0.00224507
+0.61802363
+0.43705249
+0.65437567
+-0.88475693
+0.44935393
+-0.83861318
+0.25441456
+0.76625562
+-0.74816152
+-0.02253956
+0.54300821
+-0.11339587
+0.51185453
+-0.44983643
+-0.48959482
+0.35683286
+-0.14611053
+-0.60468927
+-0.29919744
+0.32486534
+-0.17239469
+0.10742211
+-0.43392152
+0.19343948
+0.76306617
+-0.86078291
+-0.82537435
+0.12517488
+0.81435037
+-0.20555729
+0.23828113
+0.22361481
+-0.46263480
+-0.89776648
+0.46080184
+0.02784956
+-0.87267545
+-0.45562303
+0.40251637
+-0.06775725
+-0.42179811
+-0.73703542
+-0.29411155
+-0.93222751
+0.02485335
+-0.32693559
+0.25392795
+-0.30518746
+-0.53317520
+0.95272696
+-0.02269083
+0.11996329
+-0.10078305
+0.92812037
+0.31453538
+0.82745421
+0.49787045
+0.54412127
+0.88246727
+-0.46237290
+-0.34194219
+0.26940751
+-0.44449115
+0.40586233
+-0.83578239
+0.63802457
+-0.11958849
+0.37723279
+0.02855611
+0.93390942
+-0.34720790
+-0.52836928
+0.21289241
+0.55746388
+-0.24605262
+0.48061132
+0.63946223
+0.86036479
+0.25244653
+-0.96257413
+0.03480601
+0.48728693
+0.31035328
+-0.97448265
+0.80272365
+0.16175461
+-0.57819015
+0.63010049
+0.49331248
+0.08115005
+-0.05991882
+-0.20272934
+0.93399346
+-0.64752999
+-0.15934527
+-0.61925071
+0.01414955
+0.28354156
+-0.63224655
+-0.59857589
+0.59416604
+-0.64473534
+-0.85361747
+0.90737009
+-0.42695022
+-0.52228135
+0.33816314
+-0.74338648
+-0.93731847
+-0.34001023
+-0.84785976
+0.41867101
+0.09885752
+-0.43531889
+0.72229326
+-0.73698834
+-0.92124375
+0.85108185
+0.48398292
+0.96833527
+-0.31977749
+-0.59459725
+-0.37259245
+0.02040088
+0.82520556
+0.94434118
+0.26479018
+-0.16938746
+0.30102507
+0.41863764
+-0.23373724
+0.43817835
+0.23991534
+0.76441523
+0.81152573
+0.17041164
+0.43531749
+-0.14344126
+0.80188613
+-0.50077383
+0.03977948
+0.26007054
+0.81267965
+0.51165972
+-0.02547636
+-0.60851930
+-0.10656296
+0.72087283
+-0.27270169
+-0.72506341
+-0.34565627
+-0.26892265
+-0.06348011
+-0.78068913
+-0.93311250
+0.16609762
+0.68048000
+-0.27690419
+-0.46652530
+0.88839170
+-0.86509756
+-0.61373722
+-0.24868212
+0.51558536
+-0.41928269
+-0.58599582
+-0.95763682
+-0.73241258
+-0.13177833
+-0.46565437
+0.96118429
+-0.55925500
+-0.51008420
+-0.37904972
+0.05244835
+0.61958389
+0.43893642
+-0.05386712
+0.52464023
+-0.95902157
+-0.97405298
+0.61921460
+-0.13041807
+-0.26670431
+-0.71612942
+0.73949492
+0.58004827
+0.67239577
+-0.02422266
+-0.34996921
+0.62290864
+-0.00360248
+0.83045412
+0.80969380
+-0.99565726
+-0.75791155
+-0.60200828
+-0.41932559
+0.09369520
+0.12753096
+-0.55469558
+0.54997409
+0.54165256
+0.22997671
+-0.47404948
+0.29802307
+-0.72644987
+-0.29419185
+0.64102011
+0.94477446
+0.44112655
+0.86902178
+-0.86158530
+0.64851431
+-0.21381086
+-0.80834501
+-0.07526879
+0.60772240
+0.56036811
+0.38141124
+0.39886712
+-0.89145417
+-0.99545324
+0.79083629
+0.75446245
+-0.88543437
+-0.97691840
+-0.64933150
+0.94715951
+-0.13543556
+0.88594026
+0.41558747
+0.01597625
+-0.13726192
+-0.18379422
+-0.52920258
+-0.12686128
+0.18592294
+0.33447768
+-0.91433713
+-0.48025576
+0.94086559
+-0.95282155
+-0.70758700
+0.57692845
+0.35598393
+-0.38084265
+0.82534261
+-0.03262483
+-0.01435990
+0.55282625
+0.31100922
+0.89403379
+-0.39646791
+-0.21341167
+0.80966547
+0.12649940
+0.06616772
+-0.15733068
+0.79333908
+0.15052978
+0.34320032
+-0.99507050
+0.49717693
+0.87902665
+0.33203605
+0.24734528
+-0.94698581
+0.85701772
+-0.89108298
+-0.08806352
+-0.04806601
+-0.32115654
+0.77728478
+-0.92614075
+-0.09448086
+-0.39418523
+0.57891197
+-0.00250429
+-0.59992679
+0.89240016
+-0.08314125
+-0.73161913
+0.68555839
+-0.30304226
+0.37325544
+-0.59162096
+-0.28849817
+-0.78453115
+0.06554208
+0.54132315
+0.06324083
+0.44426608
+-0.88336218
+-0.88830279
+0.68250657
+0.89306193
+0.19851155
+-0.72541326
+0.32059228
+0.42908111
+0.84001806
+0.63087024
+-0.83793806
+-0.49028729
+-0.16448080
+-0.23197004
+0.48306010
+0.69750607
+0.65160141
+0.70709375
+0.31474728
+-0.28404811
+-0.22588730
+0.06785245
+0.73250302
+0.61487904
+0.63080015
+0.91964370
+-0.39824717
+-0.05935612
+0.54080076
+-0.37248082
+-0.41555618
+0.19870002
+-0.47598279
+0.53164042
+-0.27785448
+-0.62516401
+0.66793227
+0.24273959
+-0.02809825
+-0.01935774
+-0.64019240
+-0.20738678
+-0.32601097
+-0.47963113
+0.59378689
+-0.75854537
+-0.82854896
+-0.90390928
+0.98473387
+-0.26058531
+-0.22545664
+-0.35581627
+0.90581742
+0.24094406
+0.19108274
+-0.83395005
+0.27279934
+0.09387786
+0.19771878
+0.81434556
+-0.08801547
+-0.08104720
+-0.45154722
+0.21429399
+-0.93944498
+-0.40254403
+0.63963806
+-0.16671427
+0.56405442
+0.13234425
+0.95165215
+-0.29144706
+0.92064926
+0.97065428
+-0.95743425
+0.41255221
+-0.44410003
+0.35985078
+0.24646399
+-0.69612862
+0.08487188
+-0.68669256
+0.04005607
+-0.67765623
+-0.57843631
+0.29540100
+-0.11597036
+-0.39123662
+0.93780323
+-0.01554982
+-0.90215975
+0.41494277
+-0.98600890
+-0.71140911
+0.74835971
+-0.27361151
+-0.13741268
+0.01713377
+-0.11076405
+0.16637287
+0.75635906
+-0.32704193
+-1.00006404
+0.14877445
+0.27348683
+0.74062818
+0.53686858
+-0.27539767
+-0.46043513
+-0.02013968
+0.35438388
+0.11994353
+0.24759747
+0.33809921
+-0.45815029
+-0.95657299
+0.76890374
+-0.30146162
+-0.42818442
+0.83970036
+0.49358400
+-0.14356431
+-0.40739264
+0.07838518
+-0.93136321
+-0.31316258
+-0.95659465
+0.27755685
+0.18220940
+0.17347472
+0.46311056
+0.03802085
+-0.24068949
+0.19512444
+-0.95152056
+0.52574341
+0.59960407
+-0.11436099
+0.26944254
+-0.03039338
+0.34731350
+-0.93808818
+0.68681148
+0.27695348
+0.40927222
+-0.98104552
+-0.59166835
+0.62928735
+-0.81628507
+0.35497934
+-0.36372715
+-0.29360467
+-0.72158376
+-0.51709636
+0.83730869
+0.54215261
+0.76214819
+-0.58297387
+-0.12469884
+0.92178748
+-0.68905859
+-0.57101390
+-0.57871663
+-0.92270273
+0.42678936
+0.08267358
+-0.06165595
+0.29516513
+0.02272485
+0.04641920
+0.71399170
+-0.22465205
+0.12269952
+0.44326251
+0.51278240
+0.71016957
+0.91250176
+-0.80353038
+0.62428449
+-0.70553872
+0.10125640
+-0.55138541
+0.68632104
+-0.21368931
+0.49088128
+-0.85541555
+-0.20110684
+0.68808806
+0.73575285
+-0.33954636
+-0.19773278
+0.02205946
+0.02150783
+-0.51598990
+-0.95613740
+-0.75000958
+-0.37216258
+0.42032795
+-0.09804631
+-0.90915251
+0.69136944
+0.59413359
+-0.54352978
+-0.91310749
+0.53481963
+-0.43991198
+0.10396034
+-0.86832482
+0.40678517
+-0.82572460
+-0.43665561
+0.03981205
+0.93363836
+-0.10264559
+-0.44679164
+-0.28486558
+0.56767237
+0.89634263
+-0.70117720
+0.86542458
+0.43835766
+0.59313934
+0.27692398
+0.64874124
+-0.23957002
+0.44334198
+-0.19022872
+-0.76385576
+0.90815622
+0.24740266
+-0.69899454
+0.48600070
+0.85605598
+-0.33827176
+-0.18269044
+-0.61443611
+0.81920442
+0.86655627
+0.45641826
+-0.04599834
+-0.07250215
+0.18077852
+-0.84451538
+-0.15561729
+-0.52926073
+0.58265474
+0.06010455
+0.43153582
+-0.00913770
+-0.13823744
+0.89588231
+0.33920522
+0.63102585
+0.32464787
+0.50726342
+0.67275457
+0.50483884
+0.60366562
+-0.44634390
+0.93874782
+-0.97726374
+0.59616547
+-0.78386255
+0.28623095
+0.14369445
+0.34926142
+-0.73100650
+-0.51328800
+-0.26696715
+-0.59470732
+0.56596630
+0.32791531
+-0.64655796
+0.67448195
+-0.51986377
+-0.67758618
+0.59947527
+-0.43339097
+0.36183748
+0.07941769
+0.37587010
+0.57414225
+-0.40944138
+0.86101480
+-0.76525358
+0.89103464
+-0.61755688
+-0.54388420
+-0.96386016
+-0.96655666
+0.06492208
+0.32410030
+-0.27924086
+0.94441672
+-0.72311721
+-0.75365591
+-0.39334794
+-0.51769859
+0.99670302
+-0.19004549
+0.91888018
+0.56984461
+0.18302799
+-0.99139295
+0.21229455
+-0.22076991
+0.04043637
+-0.03449531
+0.02365782
+0.24591923
+0.45408236
+-0.83805634
+0.43538545
+-0.11620134
+0.36071631
+0.35719969
+-0.87751612
+0.72690331
+0.03350020
+-0.18264810
+-0.73103259
+-0.65647288
+0.09714270
+0.85705247
+-0.55002111
+0.83183152
+-0.10960119
+0.87308937
+0.25524684
+0.09753766
+0.17550634
+-0.06498809
+0.81275737
+-0.71738092
+0.20852066
+0.49968047
+-0.64588187
+0.39711399
+0.14001894
+0.85225153
+0.43629359
+-0.17311657
+-0.73101649
+0.60932701
+-0.56279302
+-0.39539839
+-0.18151646
+0.39725099
+-0.08479813
+-0.38862965
+0.23309725
+-0.08951878
+-0.42196266
+-0.17876039
+0.11995475
+-0.63157924
+0.73542238
+0.02311236
+-0.01699051
+0.60528306
+-0.51824451
+-0.04151575
+0.47053747
+-0.42942756
+-0.57724034
+-0.76350632
+-0.87888215
+-0.72274169
+0.64728764
+0.12412338
+0.20082515
+-0.92300728
+-0.12062509
+0.92574799
+-0.36870913
+-0.20380347
+-0.46231326
+-0.76368316
+-0.86511932
+-0.62121929
+0.12385481
+-0.60996420
+0.12694014
+0.82440222
+-0.84578136
+-0.13113775
+0.52329383
+0.61913566
+0.15071844
+0.84535257
+-0.42852980
+0.56149882
+-0.84314635
+-0.22067163
+-0.71644281
+-0.33332618
+0.99309549
+-0.91833625
+-0.05925815
+-0.56670906
+0.43676036
+0.73184252
+0.34660746
+0.56207384
+0.61679695
+-0.10515185
+-0.90157750
+0.89898768
+-0.56627659
+-0.55390748
+-0.50841329
+-0.02795273
+-0.62614656
+0.76857591
+0.75616398
+0.54053019
+0.89763188
+-0.44903968
+0.25120105
+-0.50236432
+0.90756922
+0.96958334
+-0.54419947
+-0.20009109
+0.48770744
+-0.73472294
+0.54647394
+0.08124332
+0.39376348
+0.83777963
+-0.06208658
+0.72062014
+0.60586871
+0.72788613
+-0.62319276
+0.85944259
+-0.24703942
+-0.64559236
+0.52317814
+-0.38080895
+0.98242390
+-0.82582262
+0.03441107
+0.38174976
+-0.87385455
+-0.40440679
+0.27268597
+-0.30672165
+-0.37862273
+-0.63238063
+0.71304774
+0.24753477
+-0.77243587
+0.14825798
+0.49539566
+-0.89616189
+-0.65965255
+0.14212522
+-0.79508660
+0.97400713
+0.63208985
+-0.65869086
+0.25303626
+0.76001063
+-0.33629048
+-0.34472257
+-0.71908063
+0.80981231
+-0.34903097
+0.19573879
+-0.74644682
+0.42028058
+-0.77547304
+-0.82880789
+0.57740057
+0.54032445
+0.54018176
+0.74152410
+0.83997858
+0.52426612
+-0.20297074
+-0.85361025
+-0.33974516
+0.55054784
+0.60348260
+0.68493533
+-0.74142736
+-0.15505689
+-0.29066217
+-0.76583229
+0.43268859
+0.82272327
+0.22607350
+0.05805099
+0.34804046
+-0.91268919
+0.03291547
+0.54253387
+-0.39313996
+-0.24607921
+0.07730067
+0.42481625
+0.23349118
+-0.97683490
+-0.73263505
+0.56055212
+-0.14315170
+0.43532062
+-0.08413136
+0.86010683
+-0.50241861
+-0.59558791
+0.52515769
+0.18635416
+-0.31824428
+0.60061407
+-0.88439175
+-0.26201779
+-0.62336454
+0.40932119
+-0.73939350
+0.86279297
+0.83053577
+-0.53131631
+-0.63812065
+-0.88487647
+-0.47237062
+0.58925819
+0.48284936
+0.76970816
+-0.96161001
+0.13313341
+0.97890842
+0.14016628
+-0.99259743
+-0.14816594
+0.06581759
+0.73154211
+0.56960881
+-0.74799988
+0.03541195
+-0.63788506
+-0.16128635
+0.19110143
+-0.84301084
+-0.58124566
+0.23501551
+0.15644145
+0.24597490
+0.96077549
+-0.53703624
+-0.39353013
+-0.68726617
+0.73836386
+-0.43528003
+-0.37860543
+-0.61877519
+-0.78743427
+-0.90156849
+0.16689205
+-0.37388957
+0.87858915
+0.33152735
+0.74799025
+0.52823377
+-0.73446816
+0.62474382
+0.57323289
+-0.94474695
+0.68723226
+-0.33619374
+0.24344122
+0.01571429
+0.43105447
+0.60562372
+-0.77454539
+-0.01100481
+-0.96630925
+0.85113454
+-0.80794720
+-0.29761463
+-0.96533068
+-0.62513283
+-0.36613154
+0.08889902
+-0.54354188
+-0.17187989
+0.02522278
+-0.61534205
+0.77997625
+-0.67363337
+0.78627121
+-0.89096275
+0.53905392
+0.19958305
+-0.45378464
+0.61201727
+0.04664385
+0.03087676
+0.53039110
+-0.47690511
+-0.58661863
+0.15521324
+0.87295747
+-0.96598957
+-0.01577044
+0.41540349
+-0.63033149
+0.55890000
+-0.14100957
+0.44951975
+0.11024714
+0.04100287
+0.70656848
+-0.96559719
+0.75057483
+-0.66827422
+0.63295460
+-0.25823635
+-0.00559592
+0.54297948
+-0.33407259
+0.09583831
+0.62131035
+0.33004665
+-0.63242593
+-0.10715657
+-0.05246532
+-0.81309642
+0.74077213
+-0.15353042
+0.51452303
+-0.51474029
+-0.06950396
+-0.54049426
+0.29970908
+-0.53988791
+0.53647625
+-0.10047090
+0.56704926
+0.71233904
+0.37525892
+0.20050657
+0.36685741
+0.21449220
+0.47125673
+0.10195649
+0.64409554
+0.56916463
+-0.65695524
+0.58954239
+-0.46766341
+-0.36792940
+-0.60284561
+-0.12058932
+-0.33013922
+0.68529403
+0.60208821
+-0.92384885
+0.09223771
+-0.96709264
+-0.17935067
+0.98721886
+0.66120183
+-0.93955473
+0.19640470
+-0.15055442
+0.91227734
+-0.27082628
+0.94687128
+0.32968485
+0.65918231
+-0.55055481
+-0.58279839
+-0.67651913
+0.88926661
+0.44304478
+0.86646628
+0.75789225
+0.03667736
+-0.85983886
+-0.08768404
+-0.35012603
+0.98133385
+-0.89635935
+0.02980113
+0.31819272
+-0.62122297
+-0.72484368
+0.44492531
+0.38148463
+0.20763910
+-0.19291371
+0.89785600
+0.88821018
+0.01324332
+-0.26164538
+-0.47146785
+0.27752924
+-0.70529708
+-0.74883780
+0.14060283
+0.68901563
+0.33438933
+0.11674237
+0.87531173
+0.67635632
+0.34612143
+-0.10921299
+0.85654414
+-0.70906535
+-0.67361739
+-0.50683153
+0.55139625
+-0.30376911
+0.55244315
+-0.96970903
+-0.91825962
+0.83212626
+-0.97872019
+-0.55089399
+-0.80628788
+0.69869244
+-0.28899539
+-0.70729142
+0.80323577
+0.58417964
+0.84912300
+0.27950561
+0.59650981
+0.87466955
+-0.41072720
+-0.71613511
+0.24807584
+-0.59258229
+-0.16911912
+0.98242092
+0.70757627
+0.74805760
+-0.36393076
+0.24061120
+0.66651368
+0.31858063
+-0.14476490
+0.82491541
+0.71455026
+0.23532391
+-0.67815143
+-0.60583144
+0.86444104
+-0.15844512
+-0.54373485
+-0.25822049
+0.61419022
+0.96790171
+0.42651606
+0.99493194
+0.22630477
+0.82609081
+0.60039270
+0.72457874
+-0.29133135
+-0.09699255
+-0.69336522
+-0.28095913
+-0.20801276
+-0.19339174
+-0.58510634
+0.27074873
+0.56130326
+0.63944018
+-0.68178830
+-0.18536979
+0.13461185
+0.22400594
+0.90939033
+0.12332249
+-0.72879195
+0.38149011
+0.46467173
+0.57501984
+0.41044140
+-0.54007727
+-0.19158059
+-0.09701324
+0.68698144
+0.40131700
+0.54319501
+0.57263291
+-0.94619065
+0.65594411
+-0.29774249
+-0.33681637
+0.02765322
+-0.95746778
+0.01856363
+-0.29156208
+-0.50578478
+0.66497421
+0.58613598
+0.36393201
+-0.28252679
+0.96446204
+-0.31655103
+0.39161062
+-0.37277246
+0.11095762
+0.24272609
+-0.85796551
+-0.89771558
+0.26733470
+0.33351982
+-0.06512517
+0.25340712
+-0.95880935
+0.77097797
+-0.62745994
+-0.83700216
+0.65291810
+-0.32389641
+-0.23616242
+0.47407722
+0.70571685
+-0.08089721
+0.09050715
+0.29222739
+-0.94036274
+-0.29291242
+0.71035171
+-0.45784730
+0.95944142
+-0.50161695
+0.66787004
+0.91546762
+-0.77901050
+-0.33689737
+0.29810560
+0.91650939
+-0.48707825
+0.81962323
+-0.48638874
+-0.53962383
+0.04261386
+-0.03312427
+-0.22775233
+-0.17716762
+-0.03892684
+0.02684899
+-0.01749318
+0.09639809
+0.06607342
+-0.07748140
+0.98872286
+-0.32634608
+-0.95874676
+0.35374205
+-0.80933842
+-0.82803449
+0.56327114
+-0.73033679
+-0.29272648
+-0.16277483
+0.45786079
+0.98130710
+-0.06327682
+-0.52625392
+0.50835140
+-0.52256644
+0.72314896
+-0.15939145
+0.93323592
+-0.37809835
+0.14823311
+0.08955145
+0.03471160
+-0.66698139
+0.94857331
+-0.31274495
+0.27068307
+0.44228428
+0.65342739
+-0.69378373
+0.92827675
+-0.45208650
+0.47514316
+0.68945797
+-0.79796751
+0.39481906
+0.90748634
+-0.43003031
+0.54847419
+-0.12367135
+0.51096003
+0.50942547
+-0.27026575
+-0.36323950
+-0.44227999
+0.79408221
+0.12957994
+0.37948946
+0.36213518
+-0.25359537
+-0.15808446
+-0.35689222
+0.18296808
+-0.15492111
+0.67297118
+-0.11431799
+0.86947175
+0.30270915
+-0.12704169
+0.34902979
+-0.67557705
+-0.25423637
+0.85436870
+-0.77385165
+0.50143930
+-0.85041517
+-0.96352550
+0.47307902
+-0.95713676
+-0.41178593
+0.42017499
+0.20590422
+0.79990007
+0.88336975
+-0.16938574
+0.93496460
+0.78662998
+-0.89346372
+0.24017360
+0.89176917
+-0.55807341
+-0.93901114
+-0.00272522
+-0.32118315
+-0.05587581
+-0.54675679
+-0.48694774
+0.63418178
+-0.55102215
+-0.00812232
+-0.62250445
+-0.14849368
+0.01216777
+0.75556304
+0.68120785
+-0.11094628
+0.13822001
+-0.32970850
+0.29790817
+0.32689403
+0.65815361
+0.79281698
+0.66933285
+-0.19736266
+-0.79345067
+-0.48251482
+0.68557313
+0.50994428
+0.74724004
+-0.38703773
+0.79991524
+-0.20472244
+0.93239212
+-0.89123560
+-0.62208614
+-0.64324112
+0.99596360
+0.79226165
+-0.54076222
+0.04706891
+-0.67353989
+-0.79929952
+0.80472921
+0.41786727
+0.75455807
+0.69853359
+0.86868449
+-0.62263286
+-0.51437798
+0.98651857
+0.32165841
+0.12811868
+0.10196630
+-0.14212160
+0.48889733
+0.47388613
+-0.08850682
+0.71595698
+-0.27190857
+-0.95761180
+0.15594525
+-0.77871331
+-0.33701108
+-0.71714842
+0.28338992
+-0.57787799
+0.31304500
+0.73447965
+-0.29258747
+-0.30119235
+0.36980243
+-0.28868687
+-0.94063315
+0.44234598
+-0.65352399
+0.96911601
+0.12042219
+-0.04534870
+0.23317397
+0.56543089
+-0.02927977
+0.97936499
+0.23264464
+0.16902654
+-0.13388051
+0.47209477
+0.83838264
+0.66947244
+0.25647450
+0.91165356
+-0.22758495
+-0.99133532
+0.37677055
+0.49729773
+-0.17185093
+-0.93221898
+0.25717511
+-0.33258878
+-0.37302705
+0.96637165
+0.75562906
+-0.60204047
+-0.97860890
+-0.18026522
+0.82446391
+-0.61205074
+0.90008602
+0.03771743
+0.72215524
+-0.61439588
+-0.70565441
+0.74848418
+0.84790460
+-0.36910929
+0.26552826
+0.56365358
+-0.91873246
+-0.34501158
+0.91974955
+-0.89394738
+0.67476661
+0.86030637
+0.00405007
+-0.26532035
+0.75418301
+-0.97830320
+-0.16393735
+0.25814333
+-0.50242237
+0.08297510
+-0.30536085
+-0.34200467
+-0.86727288
+0.73841021
+0.30980840
+-0.92670204
+0.80566233
+-0.66639312
+-0.88617128
+-0.41374836
+0.02887297
+-0.39881493
+-0.08854104
+0.92791147
+-0.95124605
+-0.60038411
+-0.93328608
+-0.31725736
+-0.00151760
+-0.35120370
+0.59992791
+-0.44830449
+-0.11118878
+-0.78275966
+0.13821716
+-0.55462458
+-0.38152071
+0.94717348
+0.07160554
+0.04341413
+-0.13771724
+0.21518150
+0.20354853
+-0.45906454
+-0.35939510
+0.00509131
+0.17786356
+-0.66820792
+0.46471961
+0.33076329
+0.78983651
+0.53979528
+-0.90539374
+-0.57549606
+0.83581304
+-0.25967732
+-0.18492572
+0.58953545
+-0.60322168
+0.51901084
+0.71376961
+0.19090368
+0.36015470
+-0.66943344
+-0.92589294
+-0.29847158
+0.21693157
+0.59691207
+-0.47798088
+0.10240355
+0.64476351
+-0.86251713
+-0.84221232
+-0.85698976
+-0.39034259
+0.96419518
+-0.63752950
+-0.20396113
+0.11886471
+-0.98579398
+0.43320948
+-0.55259603
+0.40098684
+0.32057807
+0.79834601
+-0.92022912
+0.19306128
+0.80754544
+0.75893590
+0.05058375
+0.90052012
+0.13281267
+-0.01225396
+-0.59594252
+0.84796000
+-0.54536580
+-0.28679908
+-0.55919131
+0.34856163
+-0.75196779
+0.50894144
+0.27761526
+0.00393760
+-0.06275966
+0.07490717
+-0.84815574
+-0.44324096
+-0.70875657
+-0.47781609
+0.57907205
+-0.46238108
+0.77517931
+-0.11632916
+0.52302830
+-0.18268350
+-0.87162056
+-0.01899248
+0.35493081
+-0.33625214
+-1.00398572
+-0.18309219
+-0.91580192
+0.31016135
+-0.73381035
+0.60899765
+0.14317287
+0.48857422
+0.31869595
+0.69960577
+-0.98434074
+0.21537902
+0.05218153
+-0.64186446
+-0.82850980
+0.07431129
+0.78647276
+-0.20932421
+-0.52144556
+0.10980562
+0.66329465
+0.69647533
+0.77160868
+0.06593372
+-0.14579803
+0.60844819
+-0.27214050
+0.93535888
+-0.10126284
+-0.77418342
+-0.34021433
+0.71338452
+-0.29702517
+0.35943045
+0.79531409
+0.87659146
+-0.22751325
+-0.72944881
+-0.78648059
+0.10553125
+0.22463777
+0.57193671
+-0.56495189
+-0.51853330
+-0.62622237
+0.31751712
+-0.35395596
+-0.53379477
+0.58665259
+-0.42457644
+0.94026042
+-0.13161522
+0.38357277
+-0.69511619
+-0.31238672
+-0.00127695
+-0.50131059
+-0.60996034
+0.21862327
+0.10395319
+-0.97535522
+0.70597449
+-0.67745413
+-0.05323369
+-0.53070170
+-0.06306618
+0.58472512
+-0.18707871
+0.38362923
+-0.16149814
+0.54264102
+0.10677097
+-0.97308672
+-0.28497033
+-0.43673383
+-0.86917920
+0.25119524
+0.93584059
+0.53633574
+-0.15795092
+-0.33724847
+0.41563028
+0.03165889
+0.60063718
+0.65379706
+0.38060900
+-0.56786053
+0.80975878
+0.57381962
+-0.19821542
+0.28484228
+-0.34696807
+0.88973924
+-0.41940618
+0.76474086
+-0.04148568
+0.30717214
+0.67925838
+-0.87701510
+0.63866716
+0.89799224
+0.36978804
+-0.38855758
+-0.69037549
+-0.19882249
+0.46177795
+-0.98370469
+-0.38522866
+-0.91263280
+0.87413305
+-0.16490638
+-1.03543952
+-0.79487365
+0.33934545
+0.21111949
+0.69235429
+0.27116188
+-0.26003775
+0.33868158
+0.25323483
+-0.51396970
+0.06400664
+0.40442629
+0.79363477
+0.55368894
+-0.48145929
+0.00514446
+-0.21356991
+0.20373644
+-0.99895822
+0.47672092
+0.67737234
+0.83388610
+-0.73656818
+-0.88563249
+-0.59521200
+0.17374737
+-0.76687745
+-0.92691482
+-0.39950576
+-0.10194019
+-0.35836591
+-0.64322748
+0.71845198
+-0.95236001
+0.59168870
+0.02880175
+0.09945856
+-0.27834264
+-0.53485931
+0.68789815
+0.79398881
+-0.74159336
+-0.44080513
+0.32658403
+-0.75599638
+-0.50854507
+0.93725726
+-0.45625265
+0.28107283
+-0.63213644
+-0.52603728
+0.58316617
+0.52999237
+0.79407074
+0.53717721
+-0.46560006
+0.67543171
+-0.10152943
+-0.63464819
+-0.06594413
+0.15372814
+0.96137201
+-0.68559421
+-0.56088080
+-0.25229817
+-0.91006275
+-0.73780684
+-0.39018087
+0.58511480
+0.74837521
+0.47618982
+0.66794069
+-0.26258348
+-0.24574013
+0.87545899
+-0.24964945
+0.47400744
+-0.51520000
+0.25396901
+0.52209329
+-0.53341982
+-0.38765224
+0.92072530
+0.64944015
+0.73547436
+-0.67138641
+-0.33588156
+0.80190567
+-0.49905929
+-0.54501728
+0.69831388
+0.97650636
+-0.54850231
+0.19983767
+0.89981056
+0.65439112
+0.55110648
+0.28184394
+-0.85165748
+-0.13189117
+0.46941213
+-0.80800298
+0.96617551
+0.73288924
+0.70173135
+-0.06736934
+0.61591783
+-0.37259672
+-0.32895899
+-0.43014939
+-0.05863452
+-0.80434409
+-0.94695774
+0.69721154
+0.53487096
+0.24786321
+-0.50388290
+-0.62665286
+-0.28437358
+-0.76803084
+-0.40278898
+-0.61880943
+-0.15280087
+-0.31672790
+-0.95100727
+0.76399729
+0.85754831
+-0.61327245
+0.66736656
+0.45527637
+-0.02515529
+0.03769721
+0.41390906
+-0.95354825
+-0.58037707
+0.73625472
+0.86524036
+-0.65208685
+-0.73816979
+0.03548711
+-0.31984905
+-0.25162005
+-0.67043365
+0.83249293
+-0.17928070
+-0.92297836
+0.59972872
+0.65845804
+0.35465389
+-0.32457450
+0.17388414
+-0.41172986
+0.97158641
+0.52792716
+-0.71450213
+0.74772100
+0.90218055
+-0.26861308
+0.58660638
+0.70611737
+-0.06709246
+0.84930580
+-0.96231024
+0.22810018
+-0.24597720
+0.57019553
+-0.29793676
+-0.90218046
+-0.50625440
+0.45917322
+0.45350313
+0.91033817
+0.32238722
+-0.22100246
+-0.74137334
+-0.54107734
+-0.92721103
+-0.42784232
+-0.03938657
+-0.65095775
+0.19020510
+0.37744356
+-0.49771464
+-0.31469882
+0.32946999
+0.94695756
+-0.35442374
+-0.38107377
+0.39472187
+-0.05724203
+-0.43037838
+-0.03424415
+-0.64116132
+0.28121293
+-0.92790514
+-0.60353023
+-0.47478992
+0.53711987
+0.14655495
+-0.00462216
+-0.32721323
+-0.61573118
+0.97449064
+-0.85869846
+-0.25071418
+0.43449414
+-0.45771289
+0.92670941
+0.01364803
+0.25008690
+-0.47259933
+0.96542585
+-0.15101510
+0.09872544
+0.70937884
+-0.61018768
+-0.84848076
+0.74796438
+0.23621547
+-0.00056797
+0.49649072
+0.29133320
+-0.87158643
+0.49572611
+0.97219849
+-0.42959660
+0.15051985
+0.76599145
+0.12529886
+0.23630500
+-0.38444817
+-0.10492450
+0.01877594
+0.90912390
+-0.76818667
+-0.14072657
+0.63547730
+0.10866070
+-0.67352763
+-0.48496687
+-0.90062301
+0.48046541
+0.45328271
+0.56872404
+0.63436329
+-0.16616607
+-0.06355131
+0.16836202
+0.74785805
+0.77808857
+0.87245166
+0.09511244
+0.84156787
+0.76628566
+-0.53158367
+-0.31622529
+0.13857579
+-0.01384449
+-0.86225167
+0.87746418
+0.38243425
+-0.08646947
+-0.73638362
+0.20435977
+0.58864903
+0.30600071
+0.40010631
+0.97393119
+-0.45264053
+0.16246068
+-0.02645999
+0.13569856
+-0.10338324
+0.52092195
+-0.75080019
+0.84918737
+0.67107522
+0.50197566
+-0.30584586
+-0.51258370
+0.99030042
+0.34911549
+-0.07946950
+-0.37619561
+-0.37393045
+0.04172063
+-0.98889705
+0.25582242
+-0.71131915
+-0.08922923
+0.49924493
+0.78521466
+0.42686665
+0.51876724
+-0.19531882
+-0.64471427
+0.21169388
+-0.24021137
+-0.53728554
+-0.80127361
+-0.71446228
+-0.31432945
+0.65283072
+0.73370564
+0.77740169
+0.47538543
+0.30976248
+0.80237353
+0.57393003
+-0.17336130
+0.12582278
+0.79781377
+-0.05681139
+-0.23549795
+0.39703369
+0.13679254
+0.23517025
+-0.17073244
+0.11974728
+-0.78209388
+-0.88716899
+-0.52659723
+-0.40185463
+-0.00074887
+-0.82472572
+0.14909029
+-0.84270270
+0.62307465
+0.69752097
+-0.37413883
+0.56234133
+-0.65005484
+-0.24185294
+0.86103964
+0.01542997
+-0.48329771
+0.28571737
+0.78138995
+-0.12446564
+0.72754371
+0.30099523
+-0.86374737
+-0.07705116
+0.97297812
+0.20850003
+-0.58918154
+0.08395886
+0.58096361
+0.83518600
+0.48035812
+-0.33921868
+-0.30699205
+0.01148093
+-0.05243063
+0.26495945
+0.27475286
+0.08614290
+-0.11101538
+-0.30377316
+0.20625508
+0.86424375
+-0.48199224
+-0.34881288
+-0.33678770
+0.93913150
+-0.65749958
+0.15095091
+0.72169292
+0.24641967
+0.29672861
+0.39077735
+0.47371984
+-0.40262896
+0.12226701
+-0.10620987
+0.56715572
+-0.49735898
+0.11164486
+0.18173456
+-0.74637789
+0.88855231
+-0.50058171
+0.37068045
+-0.71701005
+0.92251027
+-0.62571323
+0.74030256
+-0.65851650
+0.57670784
+0.36605835
+0.36752176
+0.11176419
+0.25648344
+0.21552229
+-0.69841465
+-0.07864499
+-0.98585374
+0.48737121
+-0.87022668
+0.85926151
+-0.75076666
+0.39861822
+-0.48382092
+-0.98809274
+-0.69296357
+0.01712060
+0.70671999
+0.83462489
+-0.95861313
+-0.54611295
+-0.77600327
+-0.04394805
+0.65004492
+0.77749336
+0.98588812
+0.97625089
+-0.04828489
+0.57054305
+-0.99826267
+0.34692156
+0.33948040
+-0.27411556
+0.71734643
+0.97079408
+0.00966835
+-0.76133257
+0.36083460
+0.92399883
+0.24692607
+0.01828802
+0.38139141
+0.34005320
+-0.65889755
+0.35498118
+0.94571209
+0.52188754
+-0.55870637
+-0.30806887
+0.36390066
+-0.12418568
+-0.03870201
+-0.90686009
+0.46764028
+0.90554559
+0.29573369
+-0.63838392
+-0.30441189
+0.72244048
+0.40542889
+-0.85118982
+0.02870917
+0.32070994
+0.32877040
+0.67558813
+0.16856921
+0.67371440
+0.13642406
+0.94078398
+0.50188839
+-0.00489819
+0.25303447
+0.98054743
+-0.56388977
+0.33568728
+-0.10936332
+0.15298867
+0.91109371
+0.44053435
+0.54048657
+0.46878755
+0.50044072
+0.70274663
+0.27258945
+0.53311467
+0.07067788
+0.44704533
+0.75067627
+-0.82958731
+-0.82273810
+-0.72824764
+-0.86576396
+0.64242685
+0.75015330
+-0.83858091
+0.76944089
+-0.59127477
+-0.43165588
+-0.82253546
+-0.45217901
+-0.36412102
+0.68751597
+-0.15280324
+0.81829202
+-0.27242833
+-0.06695640
+0.54897785
+-0.92115212
+0.07912922
+0.84386396
+0.16588247
+0.75303352
+-0.01533115
+0.03606331
+-0.70632258
+0.52669513
+-0.74495378
+0.88340151
+-0.50052297
+0.46494770
+0.76721132
+0.69026339
+-0.43951219
+0.67419183
+-0.15126121
+0.21789014
+-0.10240817
+0.65488911
+0.87693727
+0.36152732
+0.56390977
+0.05825198
+-0.87049563
+0.64302111
+-0.36959672
+-0.53574619
+0.89256227
+-0.61185566
+0.60764325
+-0.14910078
+0.57851958
+0.06816816
+-0.21385413
+0.04566824
+-0.51390389
+0.80928671
+-0.55830905
+0.59428549
+0.75196552
+0.77098715
+-0.18971145
+0.37231040
+-0.49443573
+0.37447524
+-0.22568864
+-0.25039619
+0.30944729
+-0.42393905
+0.92069685
+-0.43237495
+0.73996258
+-0.82819818
+0.90167952
+-0.98439476
+0.92678869
+0.76864624
+0.79285753
+0.82131433
+-0.50621423
+0.63945687
+-0.36917937
+-0.01179427
+-0.63906544
+-0.63870642
+-0.11405295
+-0.04580826
+0.37033165
+0.06051636
+0.54083085
+-0.00821990
+0.96252239
+-0.41606176
+0.21881855
+-0.53460374
+0.87933532
+-0.46166637
+-0.55695469
+-0.56299162
+0.94295427
+-0.04315567
+0.94899514
+0.83482800
+-0.75101027
+-0.99305714
+0.09509711
+-0.11073191
+-0.10613416
+-0.99939587
+-0.42660981
+0.67274843
+-0.36631905
+-0.22083562
+-0.33351367
+0.67455905
+-0.53319118
+0.17543550
+-0.91009581
+-0.65754939
+-0.45295864
+0.05479662
+-0.70297180
+-0.61548568
+0.50635088
+0.18431330
+0.06823286
+-0.94994126
+0.76633621
+0.83555890
+0.16737289
+-1.04146230
+0.85116109
+0.03342269
+-0.76282675
+-0.66083022
+-0.61038029
+-0.24970453
+-0.80835267
+-0.25243531
+-0.48657463
+-0.68776832
+-0.92594491
+0.39183768
+-0.39426384
+0.58143872
+0.82460776
+-0.61787925
+-0.01505770
+-0.83097461
+0.50543291
+-0.79097087
+-0.74004336
+0.93017850
+-0.47831013
+0.31398695
+-0.48486246
+-0.56471931
+-0.32261017
+0.80937332
+-0.54957801
+-0.06394402
+0.32551984
+0.67611246
+-0.31130217
+-1.01999492
+-0.93322463
+-0.11658188
+-0.32297406
+-0.78514840
+0.38198263
+-0.19881295
+0.38911285
+-0.89461993
+-0.37434136
+0.66242893
+-0.95267332
+-0.91239451
+0.29687701
+-0.43371423
+-0.44349911
+-0.89474221
+0.01572119
+0.04020213
+0.40397488
+0.65382190
+0.71241253
+-0.80956125
+0.07505386
+-0.73185975
+-0.89891583
+0.73347461
+-0.73754110
+-0.92618419
+-0.12332700
+0.41660212
+-0.66802068
+0.68502343
+0.84821807
+-0.49141904
+-0.75575667
+-0.07906755
+0.79666307
+0.27838801
+0.04539274
+0.18571337
+0.68608778
+0.49231677
+0.99492249
+-0.17244397
+-0.96435307
+0.19181853
+0.72518768
+-0.92222031
+0.33164301
+0.34742841
+0.81500871
+-0.87172791
+0.78147237
+0.91421371
+-0.70806801
+-0.85830474
+-0.42312356
+-0.84316643
+-0.89505819
+-0.16059124
+0.12139372
+0.04519731
+-0.20618724
+-0.26161237
+0.62967504
+-0.63544327
+-0.75958645
+0.29079920
+-0.57768412
+0.92841108
+0.32863867
+0.80826434
+0.67941232
+0.42014135
+0.95471813
+1.03729772
+-0.00138790
+0.24564182
+-0.91101583
+0.65476309
+-0.84085528
+0.88773042
+-0.64915465
+0.38424863
+0.34607650
+-0.11046508
+0.42343736
+-0.40527030
+-0.50315842
+-0.67954283
+0.44725964
+0.73064748
+-0.81539656
+0.70515252
+-0.62142622
+-0.07732822
+0.37752647
+0.60324636
+-0.64656743
+0.64523419
+-0.85645838
+0.47696093
+-0.65904325
+0.99536793
+0.87442613
+-0.54913418
+-0.13650029
+-0.56537286
+-0.16918468
+0.64124832
+-0.00641776
+-0.69203782
+0.23890817
+0.04991125
+0.84331433
+-0.27800569
+0.21803361
+0.62176035
+-0.98123192
+0.68846416
+-0.12613697
+-0.03859075
+-0.57499762
+-0.80405631
+0.87595122
+-0.34955583
+-0.43326089
+-0.09838291
+-0.31886979
+-0.60037550
+0.12383483
+0.22866595
+-0.14606397
+0.06909781
+0.93361919
+0.52237918
+-0.02715099
+-0.13362858
+-0.75400801
+0.62099287
+-0.48450508
+-0.61571578
+0.12404840
+0.91553165
+-0.38681325
+0.57166685
+-0.32617195
+-0.64323973
+-0.80491666
+0.39961522
+0.54294905
+0.72575264
+0.77595018
+-0.86361138
+0.49429120
+0.46506714
+-0.17050796
+-1.01990684
+-0.49924732
+-0.78238490
+0.47747169
+-0.14718845
+0.07635347
+0.20410726
+0.75358445
+-0.88744487
+-0.21896355
+-0.39600037
+0.32979217
+0.91730273
+-0.45414325
+0.39455275
+-0.79582971
+0.53250668
+0.01050598
+-0.69765886
+-0.71399863
+-0.85794033
+0.40044096
+-0.43948620
+0.32136777
+-0.25884434
+-0.37336307
+0.63624581
+0.75291507
+0.99825425
+0.23365624
+0.59334229
+0.68010641
+-0.96804753
+0.82134834
+-0.05388632
+0.20294226
+0.66154423
+0.00001683
+-0.82377528
+0.93808146
+-0.28166952
+-0.23423298
+-0.30175773
+0.49145499
+0.79491794
+-0.42628081
+-0.78276713
+0.17939046
+-0.91326640
+0.14177659
+-0.67675297
+0.28934420
+-0.37663743
+-0.02061543
+-0.92188736
+-0.49036387
+0.85449492
+-0.05915699
+-0.78149931
+-0.62586963
+-0.41258784
+-0.59744274
+0.83024349
+-0.35127392
+0.25246474
+-0.07000816
+0.29864450
+-0.51875142
+-0.03577652
+0.37057531
+-0.72795417
+-0.68320393
+0.14453068
+0.94359461
+0.89702551
+0.27050623
+-0.95430145
+-0.94428379
+0.40813016
+-0.57037977
+0.52784347
+-0.84120199
+0.64229595
+-0.62200881
+0.75128677
+0.01368267
+-0.07744275
+-0.06320168
+-0.06223609
+0.93837203
+-0.80335749
+0.07231736
+-0.33781509
+-0.95277845
+-1.03207808
+0.15801205
+-0.75958876
+0.56023130
+0.75846528
+0.98045370
+0.18492620
+0.06890779
+0.54836519
+0.74914522
+-0.79348258
+0.68207731
+0.23282815
+-0.65476429
+0.71385939
+0.03975607
+-0.32724599
+0.34013837
+0.17395725
+0.93459465
+0.56024463
+-0.80055198
+0.12078126
+0.79971390
+0.84298448
+0.27698662
+-0.38275149
+-0.01128355
+0.35439813
+-0.94350431
+0.39651512
+-0.57937264
+0.51894723
+-0.95685256
+-0.19748303
+-0.44047496
+0.51363961
+0.04783046
+-0.22403317
+-0.98560289
+-0.04040207
+0.97318476
+0.18019229
+-0.59720404
+-0.71018360
+0.77911167
+0.03749840
+0.49238882
+0.80550633
+-0.20772556
+-0.55355179
+0.94458803
+-0.50970761
+-0.68844033
+-0.51978421
+0.32291999
+0.22830509
+0.53691015
+-0.85595680
+-0.82451993
+-0.09815154
+-0.01482321
+0.44790007
+-0.17725049
+-0.11454984
+-0.24155625
+0.03380415
+-0.27065968
+0.50231462
+-0.54096622
+-0.67964840
+0.55452098
+0.86099976
+-0.99062585
+0.14794233
+-0.25820562
+0.55458363
+0.80347515
+0.72285839
+0.42945540
+-0.88518431
+0.25376227
+0.22699045
+-0.03028970
+-0.59426925
+-0.14476302
+0.47136500
+-0.56930815
+0.63672211
+0.57471599
+0.34559283
+0.13983301
+0.34502622
+0.79439635
+-0.58837232
+0.95313303
+0.58279134
+0.23043243
+-0.23593674
+-0.30395896
+-0.47385236
+-0.73780108
+-0.75589940
+0.44706630
+-0.85217567
+0.27595246
+0.63047781
+0.25567670
+0.70996883
+-0.89258940
+-0.65581808
+-0.71903582
+0.35106560
+0.99454998
+-0.11177752
+-0.17402554
+-0.65285728
+0.17834278
+0.51487702
+0.03378666
+-0.29927542
+0.65164242
+-0.31094733
+-0.11572651
+0.04966924
+-0.62999813
+-0.42396313
+-0.99858212
+-0.81247408
+0.21619211
+0.43708969
+0.60524265
+0.17952628
+0.85901457
+-0.15681293
+-0.13229202
+-1.04029322
+0.87236984
+0.08875871
+-0.87313259
+0.15387187
+-0.30585466
+0.99020393
+0.67377834
+0.76084866
+-0.89549226
+-0.53161581
+0.51030835
+-0.26965731
+0.10117161
+-0.86687845
+-0.55188739
+-0.50506956
+-0.95863805
+-0.05642991
+-0.13067958
+-0.86845186
+-0.48452125
+0.02790165
+0.46251266
+-0.97360824
+-0.56627191
+-0.02895543
+-0.31827770
+-0.38290365
+0.05522933
+0.75545612
+-0.18571877
+-0.99480569
+-0.73515008
+-0.94498200
+-0.14421440
+0.30354938
+-0.03215597
+-0.85129659
+-0.91386788
+0.79149821
+-0.15526539
+0.30019595
+0.78960516
+-0.72441948
+-0.83970921
+-0.72004645
+-0.71932257
+0.37228099
+0.66628989
+0.81823166
+0.12832053
+-0.76993689
+0.22810672
+0.88988752
+0.14965871
+0.94692783
+0.02063187
+0.03049391
+-0.92552608
+0.39193777
+-0.71994856
+0.40692742
+-0.94967614
+0.70856024
+0.86759896
+-0.55520835
+0.05727927
+-0.35692173
+0.66873445
+-0.62487544
+0.56159926
+-0.26151799
+0.04685615
+-0.08729362
+0.08205707
+0.34604195
+0.72651498
+0.31147533
+0.56906571
+0.74104743
+-0.41850579
+-0.06038724
+-0.44770253
+-0.72193956
+-0.95134335
+-0.20243558
+-0.09443998
+-0.03367895
+-0.79816481
+0.44447517
+-0.38778603
+0.40171476
+-0.88629524
+-0.40403577
+0.46288781
+0.11088215
+0.88158397
+0.23861843
+-0.76627583
+-0.90540248
+-0.87555251
+0.67524312
+0.63201682
+0.10127446
+-0.75076228
+-0.41379063
+0.35231070
+0.89637810
+0.12384117
+-0.00468014
+-0.04974990
+-0.45953049
+-0.82631901
+-0.41544952
+-0.00345102
+0.59481441
+0.63933879
+0.72951585
+0.25806854
+0.18976468
+0.54462091
+-0.67782779
+0.11899851
+0.20394039
+0.97457473
+-0.26572625
+0.35706072
+0.04501825
+-0.10634080
+0.80502807
+0.68819864
+0.07046897
+0.32345700
+0.76649539
+-0.46173424
+0.33170272
+0.68294033
+0.58067143
+-0.27666817
+-0.76199471
+0.96823796
+-0.83790645
+-0.94740035
+0.69482942
+0.42866192
+-0.76281593
+0.02051020
+0.91594219
+-0.91589495
+-0.27587950
+0.26582171
+0.37541926
+-0.93109289
+-0.99210816
+-0.58038151
+0.19060604
+-0.85324772
+-0.06159562
+0.71225907
+-0.39948547
+0.43179656
+0.40122783
+-0.98851683
+0.37502224
+0.74189636
+-0.81107259
+-0.59708062
+0.73080492
+-0.89313045
+-0.95407591
+0.03239826
+0.40526021
+0.97465205
+0.78675449
+0.98422551
+0.92659450
+-0.30556583
+-0.53386399
+-0.18894565
+0.23879695
+-0.12526029
+0.84445941
+0.12208319
+0.49900961
+0.17769039
+0.56771982
+-0.53721344
+-0.09661764
+-0.04371041
+0.85964954
+0.61323476
+0.96733332
+0.58021927
+0.49991357
+-0.00183678
+-0.20604098
+-0.03791344
+-0.66068637
+-0.00480527
+-0.40150094
+-0.42039573
+0.60723388
+-0.42358291
+0.10681868
+-0.74022827
+-0.85384040
+-0.91495647
+0.16591394
+0.07040536
+-0.32608670
+0.42207277
+0.96529865
+0.75018668
+-0.46849918
+0.28305960
+-0.86230637
+-0.95178967
+-0.46992785
+-0.19473922
+-0.79107094
+0.45784414
+0.58747041
+0.74359250
+0.91172385
+-0.03060830
+0.20036817
+0.18768203
+0.64580989
+0.95573366
+0.79389477
+0.54110217
+-0.51633132
+-0.99620874
+-0.18001199
+0.07349706
+0.66453457
+-0.37744886
+-0.13619035
+-0.81594284
+-0.84375951
+-0.71623227
+-0.60454720
+-0.37671405
+-0.03348035
+-0.28077453
+0.78182435
+0.68028903
+-0.06492025
+0.32540548
+-0.72067761
+-0.74724904
+0.48621631
+0.96189845
+-0.65040341
+-0.14977062
+0.22338748
+0.20145595
+-0.30151188
+-0.30794704
+-0.41452348
+0.40436578
+0.71913195
+-0.17783797
+0.01303840
+-0.60623747
+-0.14983886
+-0.59018892
+-0.68946031
+0.82317781
+0.38617504
+-0.67295110
+0.37166607
+0.32144117
+-0.76734897
+0.36065829
+0.36334813
+0.11322653
+-0.61799484
+-0.01962382
+0.59617507
+-0.34611934
+0.23237228
+-0.09088123
+-0.25034535
+-0.27030796
+0.76268113
+-0.82815160
+0.22394276
+0.11969066
+-0.23338115
+-0.37189299
+-0.96488043
+0.69941652
+0.22346747
+-0.10505408
+-0.98397859
+-0.40224040
+0.09742820
+-0.95276486
+0.68803310
+-0.28951985
+0.30172181
+0.69257057
+-0.68627307
+0.08173656
+0.42085481
+0.89994061
+0.82190943
+0.87907612
+0.68015265
+-0.44738668
+-0.80681477
+-0.40434223
+0.68520439
+0.40483057
+0.06752980
+0.54664242
+0.28973532
+0.77229285
+0.32746744
+0.49116719
+-0.90884791
+-0.85061643
+-0.46167880
+-0.00251299
+-0.66536182
+-0.80356634
+0.39995837
+0.36818445
+0.20408988
+0.58450675
+-0.42654210
+-0.09938031
+-0.24465287
+-0.05125886
+0.48800457
+-0.73081928
+-0.56725278
+0.46441436
+0.32865894
+0.36787367
+-0.56296533
+-0.46529740
+-0.28002334
+-0.43869179
+0.57029951
+-0.54136497
+0.74151087
+0.98153305
+0.66638243
+0.42930281
+-0.30882722
+0.81784213
+0.88340640
+-0.01937890
+0.44572842
+-0.85973731
+0.04973733
+-0.87684266
+-0.10046512
+-0.42646438
+-0.53549325
+-0.31834602
+0.77556705
+0.92782032
+0.42133796
+0.28900862
+0.16886663
+0.94925237
+-0.91149659
+0.63512135
+-0.25610000
+0.13754797
+0.36678600
+0.55977619
+-0.13581425
+0.29658902
+-0.82177866
+0.64435530
+0.44459784
+0.80925667
+-0.35576785
+0.80075991
+-0.97313327
+0.84270883
+0.03290963
+-0.08329958
+0.68707001
+0.41662860
+0.70110822
+-0.04830903
+-0.91391936
+0.13647377
+-0.58420172
+-0.49996907
+0.08477378
+0.58544564
+0.93445647
+-0.77976222
+-0.49355698
+0.20447016
+0.51645887
+-0.30639678
+-0.79848251
+-0.63164493
+0.48262596
+0.63889778
+-0.84046632
+0.12948740
+0.62420285
+-0.03470981
+0.32967961
+-0.07517475
+0.12585282
+-0.30715579
+-0.74488088
+0.39639783
+-0.67757383
+-0.70543653
+-0.16422230
+0.33614707
+-0.51295045
+-0.25890672
+0.80458534
+0.15969253
+-0.43251640
+-0.14054918
+0.10016203
+0.00727379
+0.67324972
+0.40635967
+0.15311503
+0.40750194
+0.09939539
+0.91385496
+0.82804787
+0.03551948
+-0.54410836
+0.39665043
+0.47766447
+0.13063240
+-0.69345227
+-0.06832570
+0.88473284
+-0.62402961
+0.79628527
+0.11387801
+0.46579003
+-0.05859792
+0.60425663
+-0.89061028
+0.36071301
+0.81032109
+-0.68176612
+0.41167676
+-0.44216675
+-0.01472557
+-0.11939394
+0.87920070
+0.16142225
+0.55143559
+0.16784835
+-0.81967586
+-0.96768960
+0.49704993
+0.34704268
+0.07091045
+0.01165295
+-0.78829315
+0.39334571
+-0.68308425
+0.63463056
+0.54680431
+0.87259793
+0.53869474
+0.31040061
+-0.71766964
+0.01024938
+-0.64574710
+-0.02505893
+0.60542107
+-0.13857216
+-0.85062656
+-0.36969185
+-0.63856858
+-0.80987813
+-0.21859848
+-0.46363574
+-0.61550137
+-0.49432051
+-0.03276706
+0.19412673
+0.58608782
+-0.17662978
+-0.07680410
+0.52312613
+-0.43233764
+-0.39005524
+0.50384116
+-0.54597268
+-0.31026262
+0.56491137
+-0.78841586
+0.60627043
+-0.56664848
+0.79741132
+0.37962604
+-0.36817527
+-0.03975815
+0.22285986
+-0.64530134
+-0.67183101
+0.28082848
+-0.14019066
+0.81625605
+-0.07190800
+0.03149927
+-0.34497792
+0.01496947
+0.12528062
+-0.51232424
+-0.60524619
+-0.60760531
+0.71675777
+0.03038061
+0.78063679
+0.35272789
+-0.94392622
+-0.22915381
+0.23172212
+0.69841945
+0.96022856
+0.09869301
+0.19601142
+0.02948189
+-0.49000877
+0.71229851
+-0.08868253
+-0.30155116
+0.12306666
+0.61303103
+0.84454918
+-0.95543662
+0.55486894
+0.90197802
+-0.33578277
+-0.78107248
+-0.09362912
+0.34256053
+0.72769618
+0.17892087
+-0.39081609
+-0.27149471
+0.01137146
+0.40864129
+-0.64610987
+0.17282042
+-0.41877305
+-0.47338921
+-0.52496497
+0.92020435
+-0.93360116
+0.74791328
+-0.74335039
+-0.38442878
+0.06147816
+-0.82356143
+-0.69014447
+0.92440768
+-0.35462891
+0.04144951
+-0.91184972
+0.62401225
+0.18962084
+-0.95431136
+-0.09080151
+0.41805310
+0.09740034
+0.32014787
+-0.43814835
+-0.98409323
+-0.60471987
+-0.40609721
+0.39503026
+0.95555159
+0.92087923
+-0.09111422
+-0.61803180
+-0.65503881
+-0.23798695
+-0.03404357
+0.02535830
+-0.87471012
+-1.03716541
+-0.78719418
+0.42812802
+-0.18646120
+-0.78285859
+0.69117909
+-0.49868694
+-0.92651456
+0.55082894
+0.44283827
+0.55639028
+0.32130179
+0.53345938
+0.61217838
+0.41490249
+0.05667377
+0.82243920
+-0.69328635
+0.48718255
+-0.78340863
+0.64708190
+-0.98339440
+0.62330652
+0.72261364
+-0.76690293
+-0.74171345
+-0.22652390
+-0.68701866
+-0.23751515
+-0.12611712
+0.14031542
+-0.18009235
+0.92925928
+-0.80517737
+0.45570904
+0.56893441
+-0.55238430
+-0.34667363
+-0.47247028
+0.76519038
+0.79918027
+-0.11226943
+-0.35025987
+-0.52944009
+-0.87085568
+-0.98850147
+0.29565442
+-0.07436205
+0.51379983
+0.15613434
+-0.95252549
+0.21157881
+-0.58526280
+0.40409223
+0.86257266
+0.84360942
+-0.71561297
+0.10485946
+0.13615085
+0.26347859
+0.91598887
+0.75231151
+-0.65560564
+0.54244221
+-0.38459912
+-0.33290784
+0.41080610
+0.61310958
+-0.30859136
+0.13313963
+0.10122088
+-0.12107177
+-0.14855062
+0.21948282
+0.36240562
+0.34764709
+-0.23173292
+0.65405908
+0.87700091
+0.13258180
+-0.52979963
+0.55544627
+-0.93505080
+0.21679043
+0.24863660
+-0.93238308
+-0.34537750
+0.37966630
+0.66724603
+-0.74874517
+0.81442596
+-0.87898135
+0.31100326
+0.22835683
+-0.46282489
+0.34610508
+0.73579314
+0.37732203
+-0.77187440
+-1.01784997
+-0.64191282
+0.58810573
+0.17483847
+-0.48702271
+0.82876871
+0.07229344
+0.40305744
+-0.97606716
+-0.62141953
+0.45846456
+-0.87461393
+0.75908840
+0.76562865
+-0.91092959
+-0.13738283
+0.33037888
+-0.75440244
+0.15473483
+0.51554347
+0.13385111
+0.20089906
+-0.00893534
+-0.55586694
+-0.51492636
+0.42914176
+-0.18194634
+-0.81693955
+0.98362653
+-0.15834464
+0.97118282
+0.67394138
+-0.94287805
+-0.79963721
+-0.57903326
+0.92811230
+0.47002633
+-0.85210250
+0.09875428
+-0.66472455
+-0.99006116
+-0.72054555
+0.26014085
+0.11777929
+0.12058979
+-0.65489955
+0.04437794
+-0.43806416
+0.25747634
+-0.49995069
+-0.85007509
+-0.44672010
+0.90572975
+0.82069168
+0.77796483
+-0.46174578
+0.98746835
+0.34917091
+-0.67490106
+0.96367888
+0.96670650
+0.31098979
+0.14151666
+0.37313676
+0.32667615
+-0.61773435
+-0.12392433
+0.73437737
+-0.53705422
+-0.49181643
+0.92943095
+-0.44787527
+-0.47144901
+-0.68234565
+0.51468070
+-0.89795944
+-0.69300101
+-0.52183105
+0.86016891
+0.50077200
+-0.24122341
+0.33868076
+-0.77142192
+0.23371425
+-0.74508219
+0.75638809
+0.61183256
+0.91687425
+0.67994097
+-0.65381398
+-0.96708137
+-0.08331741
+-0.22699793
+-0.81627601
+0.70264124
+-0.33212169
+-0.54029242
+-0.05050799
+-0.49585723
+0.17528228
+-0.80544733
+0.87168352
+0.77144269
+-0.94879965
+0.12414748
+0.92216835
+0.80893923
+-0.32333927
+0.66729298
+0.13709832
+0.37848702
+0.16544465
+0.16002739
+-0.30148730
+0.79506640
+-0.77095096
+0.32010467
+0.38705944
+0.86196089
+-0.42778560
+-0.60748094
+0.23664156
+-0.59986147
+0.31161969
+-0.10668359
+-0.52857479
+-0.36348408
+-0.85320808
+-0.20327915
+0.36362448
+-0.80587585
+-0.73009364
+-0.03196238
+-0.60587322
+-0.16268203
+0.81666189
+0.91518393
+0.94189441
+-0.36798040
+-0.28492281
+-0.83902121
+-0.21374398
+-0.54191633
+-0.46314334
+-0.58579998
+0.19213378
+0.44130055
+0.03986457
+0.15852075
+-0.82034476
+-0.38335157
+-0.23157268
+-0.47671677
+0.45706824
+0.87613083
+0.79948550
+-0.16568189
+0.59651207
+0.83252771
+0.51723671
+0.55628125
+0.32240802
+-0.42850523
+0.44912708
+-0.95284317
+-0.28774450
+0.07234880
+-0.84408784
+-0.02301695
+-0.61034492
+-0.42513996
+-0.03408998
+0.20162635
+-0.11590716
+-0.96443802
+-0.80140864
+0.41334107
+-0.16998973
+0.64338394
+-0.86327594
+-0.99020818
+0.64301743
+-0.91402118
+-0.31810517
+0.51844494
+-0.03362436
+-0.46571258
+-0.73313157
+-0.05117113
+-0.19277252
+-0.27142721
+-0.03584973
+-0.95675774
+-1.00650178
+-0.79855988
+-0.00788789
+-0.67815698
+-0.59331626
+0.01347145
+0.38728564
+-0.00780648
+-0.77797549
+-0.90366322
+-0.95103692
+-0.27665444
+0.79504329
+-0.66266751
+0.85777081
+0.74857098
+-0.94284958
+-0.59333781
+-0.36429900
+-0.73587522
+-0.77755695
+-0.14556830
+-0.46067878
+0.49318744
+-0.30931267
+-0.77657694
+0.17789321
+0.36388877
+0.09338551
+-0.18051621
+0.22777605
+0.87549651
+-0.94479731
+0.25786488
+-0.79701541
+0.64130853
+-0.20124810
+-0.30463465
+-0.76430946
+-0.32684101
+-0.57228897
+-0.82578807
+0.90166015
+0.66940295
+-0.25467021
+-0.34419306
+-0.61337268
+0.13359318
+-0.16262881
+0.45870597
+0.61752665
+-0.87974745
+-0.40080088
+-0.70137980
+-0.11658273
+-0.13145742
+-0.39563234
+-0.30217308
+-0.89837367
+-1.02368768
+-0.29192573
+0.02475043
+0.58351865
+0.46136550
+-0.73567809
+-0.76045758
+-0.39746231
+-0.49765762
+-0.69753514
+-0.64288286
+0.45012923
+0.54629747
+0.72616675
+-0.22734384
+0.28707697
+-0.11826970
+0.05251199
+0.60335548
+-0.14783390
+-0.95856279
+-1.02422558
+-0.41582420
+0.94578647
+0.52560513
+0.33409932
+-0.12534845
+-0.13109139
+0.63816531
+0.80258767
+-1.05369669
+-0.35186210
+-0.41965942
+-0.78254753
+-0.26227870
+0.80754942
+-0.16446696
+-0.72077079
+0.30113863
+0.56773134
+0.16489300
+0.50641299
+-0.30125448
+-0.59645536
+0.26614067
+-0.89590287
+-0.81229070
+-0.96710654
+0.50130557
+-0.61537019
+0.46882702
+-0.74683967
+-0.13401482
+-0.02770218
+0.07838173
+-0.46813969
+0.44102713
+-0.23346370
+-0.60224196
+-0.53600454
+-0.01726796
+-0.43497077
+0.77755466
+-0.32634562
+0.04115169
+-0.53476195
+0.32585949
+-0.31430945
+-0.77126207
+-0.40812445
+0.40265273
+0.22069796
+0.81265208
+-0.37438405
+-0.07727071
+0.07190262
+-0.54493110
+-0.58218497
+0.60612930
+-0.75753962
+-0.62394129
+-0.82522249
+-0.99682674
+-0.06796890
+-0.83838814
+-0.06266870
+0.88825011
+-0.20497384
+-0.49921672
+0.93189463
+-0.37262987
+0.02792357
+-0.91808154
+-0.53319585
+-0.56407612
+-0.85161474
+0.41855478
+-0.32336275
+0.75339608
+-0.04066117
+0.44189300
+-0.09045532
+-0.59475026
+0.80945845
+0.51640490
+-0.10789191
+-0.61270076
+0.71145857
+-0.37535127
+-0.13178770
+0.62673908
+0.10470435
+-0.91472436
+-0.77130439
+-0.51838479
+0.59216180
+0.21879411
+0.74015800
+0.33830093
+0.42799110
+-0.31525068
+0.67543438
+-0.26593507
+0.14798099
+-0.94685875
+-0.19638493
+0.23885128
+0.68170069
+0.70399509
+0.34960748
+0.31153160
+0.18395816
+-0.16459362
+-0.39830959
+-0.30124275
+0.95494627
+-0.29643854
+0.57955141
+-0.99519985
+0.69510067
+0.70599694
+0.75351527
+-0.12750544
+0.16751784
+0.79829171
+-0.93195083
+-0.16379916
+-0.97843625
+-0.63147343
+0.62146110
+0.21410512
+0.55642983
+-0.44709692
+-0.83579843
+-0.34095131
+0.68608939
+0.84331783
+0.65588475
+-0.71125358
+-0.94526740
+-0.18753919
+-0.69708626
+-0.13486968
+-0.14813483
+0.19571265
+-0.93247804
+0.15938108
+0.55970944
+-0.24390366
+0.47275160
+-0.18483511
+0.13472808
+0.54953225
+0.72199094
+0.82742850
+-0.01951078
+0.07603387
+0.30396653
+-0.23172320
+0.88779511
+0.46118883
+-0.87773231
+0.24790589
+-0.85602394
+0.15362665
+-0.46126951
+0.57337548
+-0.97393101
+0.05779718
+-0.57424388
+-0.24614395
+0.97617998
+0.83911936
+0.91359167
+-0.17932734
+-0.24934519
+-0.12154429
+-0.56761741
+-0.08871365
+-0.84107236
+0.21363980
+0.29987215
+-0.56438340
+0.97470331
+0.96983996
+0.99420446
+-0.91102358
+-0.42534059
+0.04846883
+0.02843090
+-0.68414235
+-0.16611333
+-0.01712072
+-0.27171516
+-0.20158909
+-0.92168561
+-0.83256236
+-0.30712414
+-0.57784116
+-0.22810028
+0.39285574
+0.36461381
+-0.77756158
+0.44989240
+0.82068397
+0.21635616
+-0.16962765
+-0.00405705
+-0.69789624
+0.52915473
+0.92297062
+-0.47755603
+-0.73582450
+-0.41673714
+0.83045448
+-0.49407381
+0.72287014
+-0.67717701
+0.53086627
+-0.19272542
+0.62100708
+0.86746919
+0.14086390
+-0.31271511
+0.83887839
+0.03828835
+0.75301373
+0.23077512
+-0.72715402
+0.76298654
+0.72950637
+0.50358248
+-0.93063611
+-0.76278882
+-0.30856359
+0.16170275
+-0.86217377
+-0.51622006
+-0.45858663
+0.29812860
+0.10598660
+-0.68735111
+-0.05790597
+-0.41878027
+-0.87121023
+-0.27092612
+0.84627891
+-0.12455928
+-0.08768582
+-0.73072326
+-0.94635135
+0.08678794
+-0.84225325
+-0.40430778
+-0.95421435
+-0.53964791
+0.46010435
+-0.03996801
+-0.51888454
+0.08798397
+-0.32871670
+-0.41269046
+0.00543439
+-0.80136955
+0.62190759
+0.65130818
+-0.45329410
+-0.45111978
+-0.95151225
+0.39096797
+0.25146317
+0.59308898
+-0.11048853
+0.63228548
+-0.25464147
+0.24109328
+-0.94798340
+0.14301479
+0.50139075
+-0.61925749
+0.41027862
+-0.50223383
+0.30425805
+-0.70037259
+-0.89202623
+0.89873924
+-0.27301662
+-0.35250505
+0.02670389
+-0.44756440
+0.62217110
+-0.89675351
+-0.47902781
+-0.39344140
+-0.41436056
+0.34277691
+0.46255035
+-0.15425500
+0.25501502
+-0.50757587
+0.08461857
+0.39059174
+0.31988358
+-0.74067500
+0.80741155
+-0.26318407
+0.51604390
+-0.29874951
+-0.98965881
+0.55028224
+-0.33287126
+-0.84839861
+-0.35839772
+-0.39680016
+-0.54539835
+-0.77006599
+0.19435847
+-0.25537968
+-0.33853936
+0.30338442
+-0.39126092
+0.19992530
+0.87606525
+0.50916862
+-0.96978534
+-0.93618999
+-0.73289952
+-0.54160821
+0.95921862
+0.32842946
+-0.33584964
+0.28827620
+0.77744353
+-0.47286099
+0.11009812
+0.44544184
+0.35226655
+-0.76754704
+0.68795717
+0.55478215
+-0.40338218
+0.79382718
+-0.60828102
+0.07594860
+0.48796344
+-0.92639416
+0.99689794
+-0.75985408
+0.98654246
+-0.12624770
+0.70438790
+0.63698673
+0.43317544
+0.69548059
+-0.51303878
+-0.35856676
+-0.87230463
+-0.02549899
+0.77706945
+0.94743967
+0.36187446
+0.20482254
+-0.34043401
+-0.30754346
+0.44150555
+-0.16269618
+0.03543651
+0.64245319
+0.78868461
+-0.24988687
+0.57036030
+0.14439023
+0.79733217
+-0.77076139
+-0.38637894
+-0.50878027
+-0.98006663
+-0.71327117
+0.40164769
+0.01616955
+0.57755423
+0.83716917
+-0.14516443
+0.78791428
+-0.27335227
+0.34266925
+0.50089097
+0.29164302
+-0.12834704
+-0.82758179
+0.32798898
+-0.72249591
+0.03634202
+-0.70267439
+-0.23058707
+0.33564019
+0.35444117
+-0.45458305
+0.79752111
+-0.67051238
+0.57345343
+0.56697893
+0.43041468
+0.59440327
+0.00178766
+0.37577939
+0.64091909
+-0.49654996
+0.60475218
+-0.82034709
+0.02045369
+-0.52158874
+0.48025417
+-0.09536535
+0.14166033
+-0.03017467
+0.67190671
+0.00697660
+-0.65637165
+-0.31415474
+0.98673224
+0.21362627
+-0.53230855
+-0.89214064
+0.82599807
+0.35651934
+0.51493657
+0.18301237
+0.02627957
+0.68863690
+-0.21544105
+-0.02127182
+0.14108694
+-0.62772429
+-0.72780827
+0.26461077
+0.50152421
+-0.56859398
+-0.02928990
+-0.56390294
+-0.43617511
+0.02123201
+-0.68376270
+0.69785035
+0.31444490
+-0.03963304
+-0.44595367
+0.40527320
+-0.28263348
+-0.86925687
+0.68443084
+-0.82898781
+0.35469377
+0.41214550
+0.12439609
+0.09111643
+-0.14684701
+-0.73374107
+-0.88844097
+-0.89523409
+-0.29337037
+0.56746435
+0.22968340
+-0.21747148
+-0.30848855
+-0.71338812
+-0.87297955
+-0.13920450
+-0.64635897
+0.96538591
+-0.68951988
+-0.09133071
+0.76402545
+-0.95170682
+-0.42549521
+0.47196817
+-0.51605535
+0.97475636
+0.16922009
+-0.82784496
+-0.93323538
+0.42098808
+0.55367994
+-0.55056432
+-0.59593016
+-0.36365533
+-0.28176039
+0.16990352
+-0.74771872
+0.82142687
+0.13151217
+-0.94215286
+-0.39990056
+-0.16631806
+-0.93232800
+-0.79275553
+0.93658221
+0.08457017
+0.76133108
+0.24981880
+0.74766040
+0.37413776
+-0.34693658
+0.46178949
+-0.53499469
+0.51282954
+0.94992697
+0.02512264
+0.44643843
+0.29327071
+-0.83806251
+-0.80447023
+0.84228146
+-0.14562100
+-0.19017267
+0.15076303
+0.21542490
+0.28208315
+0.29333174
+0.53391969
+-0.68081447
+0.84418309
+0.29901743
+-0.44667339
+-0.41158873
+0.86568451
+-0.45612419
+-0.58255816
+0.41249681
+0.20763040
+0.66664910
+-0.09855527
+0.75764513
+-0.26933980
+0.03508806
+-0.84154524
+-0.66088682
+-0.71000975
+0.80442095
+0.15316093
+0.60129392
+0.10934889
+-0.50385645
+0.97071016
+-0.73133534
+-0.40119261
+-0.63743743
+0.29575026
+-0.12792146
+-0.06939662
+0.34973431
+-0.13493252
+-0.62775460
+0.33456004
+-0.86738186
+-0.94445141
+-0.60398415
+-0.15190679
+-0.18805116
+-0.71398172
+-0.83242920
+-0.14120740
+-0.27672768
+-0.62784433
+0.37391150
+0.55016553
+-0.82495905
+-0.60334855
+-0.71571541
+0.05430782
+0.01323187
+-0.21542013
+-0.02955502
+0.21055877
+-0.20130622
+0.06704664
+-0.23744506
+0.99438810
+0.78895783
+-0.96986750
+0.92193139
+-0.11603469
+0.28494990
+0.34222949
+-0.57545736
+-0.33437443
+0.56370115
+0.12813711
+-0.16682124
+0.11096764
+0.72010243
+0.30002856
+-0.20164156
+0.86945713
+0.38413417
+0.75660574
+0.36917555
+0.39393198
+-0.84640704
+-0.20090357
+-0.87174952
+-0.64952784
+-0.86635601
+-0.39701485
+0.41913420
+-0.86011749
+-0.82443638
+-0.02078996
+-0.84531918
+0.86231020
+0.71355088
+-0.27349258
+0.36110838
+0.32609295
+-0.19385771
+0.37912689
+0.41784098
+-0.54783395
+0.59747698
+0.49227783
+-0.55686746
+-0.23683771
+-0.36740106
+-0.30630254
+0.51500119
+0.73687490
+-0.56435503
+-0.37579311
+-0.00197104
+0.36166034
+-0.22670884
+0.11427024
+0.34321518
+-0.48940282
+0.07935096
+-0.26262495
+-0.98917811
+0.10068666
+-0.72905621
+-0.40267718
+0.52892054
+-0.04014200
+0.83722661
+-0.09407008
+-0.29978122
+0.07581933
+0.60141092
+0.40650549
+-0.87929370
+0.45024907
+0.60358949
+0.01799186
+0.68088260
+-0.79462786
+0.54470094
+0.86639175
+-0.94607476
+-0.61957288
+0.85773872
+-0.07847694
+0.69887994
+0.58531290
+-0.81600444
+0.61502295
+0.96122130
+-0.73432652
+-0.68828601
+0.47364608
+-0.88035893
+0.10526899
+0.59846852
+0.49375238
+0.08870106
+-0.73764323
+-0.31206050
+-0.88516589
+0.42930935
+0.83865281
+0.75003606
+-0.94898632
+-0.46043278
+0.02121705
+0.28719515
+0.36515871
+0.33166897
+-0.66318284
+-0.95738211
+-0.57732872
+0.75748294
+0.82767944
+0.43829395
+0.55311802
+0.01324633
+0.92911719
+0.88500037
+0.10270593
+0.58555550
+-0.31444172
+0.32621941
+-0.02950079
+-0.35637466
+0.89481649
+-0.64125036
+0.03902812
+-0.18181231
+0.85955790
+-0.86909426
+-0.81385387
+-0.45069018
+0.33645913
+0.12492467
+0.43080614
+-0.60949185
+0.15151864
+-0.44484569
+0.20471785
+0.88508466
+0.01769979
+0.31479492
+-0.90585506
+0.66228062
+-0.44053903
+0.13029267
+-0.16970466
+0.06611669
+0.31277726
+-0.73375068
+0.28862180
+-0.33882069
+0.85581494
+-0.00139959
+-0.53624504
+0.63201399
+0.09725403
+0.83763992
+0.67060167
+-0.23210658
+-0.01804403
+-0.76814997
+0.02067669
+-0.73972210
+0.47078265
+0.16111763
+0.48081760
+-0.74901653
+-0.36855332
+-0.17195417
+0.57968458
+-0.15345010
+-0.72039566
+-0.24535179
+0.63498557
+-0.80132932
+0.60428340
+0.33418612
+0.16802009
+-0.78013857
+-0.46167692
+-0.84973929
+-0.15847102
+-0.01354017
+0.95467392
+-0.13994002
+0.10757646
+0.76793892
+-0.18846258
+0.15441867
+-0.83941553
+-0.46078407
+0.14522361
+-0.37059030
+-0.43992085
+-0.80538313
+0.23461993
+0.15147492
+-0.45889384
+-0.31148806
+-0.59114026
+0.82806754
+0.38900334
+-0.43086974
+-0.02463349
+-0.83305502
+1.02502267
+0.35159952
+0.24953901
+0.91639822
+-0.03128021
+-0.78324404
+0.36634813
+0.38699931
+0.11704713
+0.17416797
+-0.92374589
+-0.82453490
+0.02758070
+0.02488674
+-0.68477220
+0.13896679
+-0.31811787
+-0.77380342
+-0.01007105
+-0.42116845
+-0.64734433
+-0.59683812
+-0.59686655
+-0.15512813
+0.74129070
+0.39876830
+-0.18762048
+-0.29852765
+-0.69279134
+0.23719201
+0.35340959
+0.06425462
+0.11594882
+0.78418985
+0.10368675
+0.64241504
+0.32036804
+-0.17146962
+0.05877969
+-0.61671258
+0.26887495
+0.99918996
+-0.18443476
+-0.62127283
+0.83208890
+0.96952712
+0.31357196
+-0.96119687
+-0.75809422
+-0.25074372
+-0.88863511
+0.40420081
+-0.63318416
+-0.12825403
+-0.46646793
+0.02190815
+-0.41200676
+-0.06878380
+-0.31999586
+-0.52136778
+-0.53972136
+-0.08987294
+0.30676757
+0.16097137
+-0.19064357
+0.57372945
+-0.78987952
+-0.80506084
+0.81378481
+-0.29461826
+0.23281384
+-0.83514358
+-0.97670539
+-0.15536111
+-0.39357883
+0.89180192
+0.18548107
+-0.53124549
+-0.01826612
+0.16251671
+-0.21500379
+-0.43609910
+-0.77743788
+0.23263861
+0.33093640
+0.74712432
+-0.34126495
+-0.11880914
+-0.17404717
+0.45524110
+0.99085400
+0.70807749
+-0.79273301
+0.13940580
+-0.61590838
+0.49314082
+0.60436224
+-0.31772780
+-0.65081393
+-0.82078319
+-0.86326598
+-0.63172662
+0.28409717
+0.13035205
+-0.12240063
+-0.20236800
+-0.29948410
+-0.37783094
+-0.32208828
+0.60237907
+0.81778991
+-0.86400835
+0.55239528
+0.03078435
+0.41995773
+-0.18868467
+-0.94752724
+-0.10605031
+-0.01749575
+0.18829886
+-0.65015396
+-0.58672134
+-0.87597544
+0.67958978
+0.89618330
+-0.33960290
+-0.72098054
+0.58981157
+0.68559005
+0.52497112
+-0.26334614
+0.53896285
+-1.02027154
+-0.98467484
+-0.77610897
+-0.88994207
+-0.10213466
+-0.49296282
+0.43848464
+-0.25452232
+-0.53963354
+-0.25048565
+-0.46379840
+-0.21031682
+-0.17601223
+0.77687079
+-0.54913192
+0.38416169
+0.93847019
+-0.70793929
+0.71786343
+-0.78393225
+-0.68055287
+-0.64917185
+0.61708902
+-0.48745853
+0.09726820
+0.72559898
+0.21714495
+-0.54041090
+0.56145738
+-0.70749789
+-0.04371497
+0.55872819
+-0.90943429
+-0.29140899
+0.52053710
+0.68462941
+-0.59377115
+-0.44412510
+0.82609929
+0.41981961
+-0.99353423
+0.66613791
+-0.03209772
+0.74562073
+0.12832585
+-0.85380075
+-0.27090225
+-0.52733364
+0.67893038
+-0.34753838
+-0.66703005
+-0.14297823
+-0.74950754
+-0.91260682
+-0.94961237
+-0.89828665
+-0.76647935
+-0.59566354
+0.39306352
+-0.60991843
+0.01025966
+-0.13725711
+-0.35177424
+-0.30845146
+-0.19650615
+0.02634630
+-0.75329605
+-0.75490690
+0.40457865
+-0.32599890
+-0.02210505
+-0.71134997
+-0.86180093
+-0.13865601
+0.58288971
+-0.16600008
+0.62060591
+-0.91053804
+-0.17906580
+-0.94563245
+0.16883668
+0.77404554
+-0.19711149
+-0.35132611
+0.41275469
+0.58412548
+0.75235314
+0.39912836
+0.96169988
+0.36708638
+0.70581948
+0.63714301
+0.77865630
+-0.89330445
+0.29774540
+-0.29049850
+0.21233979
+-0.85043977
+-0.31760854
+-0.62099360
+-1.02370491
+-0.68380245
+0.67790134
+-0.62116267
+0.83743452
+-0.37488391
+-0.44319988
+0.04233353
+0.66851937
+-0.12426409
+-0.29048009
+0.68558195
+-0.50617868
+-0.27270021
+0.31406175
+-0.93121367
+0.95859046
+-0.10784315
+0.86669137
+-0.55131303
+-0.51531332
+-0.93584052
+-0.17383659
+-0.41526931
+-0.17314913
+-0.29522100
+-0.41756491
+-0.65222142
+0.27359229
+0.70090265
+0.94851678
+0.08789932
+0.46271148
+0.39447797
+0.45232063
+-0.59546751
+0.86483678
+-0.53476380
+0.88343412
+0.49834157
+-0.20900228
+-0.45365794
+0.89586068
+0.73735157
+0.21182307
+0.90918483
+0.62413603
+0.18271085
+-0.18622054
+-0.67266652
+-0.57737621
+-0.96246823
+-0.28940138
+0.63149227
+-0.01672004
+0.71341711
+0.20003265
+-0.17325189
+0.63420673
+0.04640784
+-0.72915492
+0.93444216
+0.70478215
+0.21003162
+0.09960040
+-0.89067164
+0.46586667
+-0.46015357
+0.37055076
+-0.35808950
+0.59506610
+-0.18023312
+-0.55829447
+-0.97792442
+0.22768174
+0.55719052
+0.91887245
+0.86099300
+-0.40090858
+0.75930515
+-0.39192156
+-0.34964430
+-0.36928984
+-0.34764340
+-0.12343232
+0.61779176
+-0.85939531
+-0.74392892
+-0.42909306
+0.00762240
+-0.50960496
+0.66924918
+0.90148121
+-0.39845865
+0.73464667
+0.17813066
+-0.17874205
+-0.94545376
+0.78768428
+0.54376854
+0.65377562
+0.98514621
+0.44804234
+-0.06714512
+0.62022751
+0.03566376
+-0.03429221
+0.96835810
+-0.68075714
+0.93307043
+-0.81308626
+0.61344442
+0.73840268
+-0.75945456
+-0.03036431
+0.70692474
+-0.64468584
+0.25561333
+-0.01835978
+0.70498009
+0.65835576
+0.71884665
+-0.71131202
+-0.28187440
+0.59774964
+-0.60563146
+0.67031201
+0.31583571
+-0.47513062
+0.17310318
+-0.50811292
+0.25223002
+0.97517914
+0.57612154
+-0.07851717
+0.93345054
+-0.17471668
+0.98061998
+-0.75693392
+0.01442421
+0.78253379
+0.57566368
+-0.39309423
+-0.76049947
+-0.48288416
+-0.90140206
+-0.26401747
+-0.32536792
+-0.05792308
+0.03408507
+-0.72478785
+-1.00511792
+0.77886924
+-0.62196684
+-0.58328012
+-0.70467923
+0.13474306
+0.21487289
+-0.70630378
+0.22438798
+0.62045883
+0.54056582
+-0.94836306
+-0.38064289
+-0.81168447
+0.14623711
+-0.62081018
+0.33746089
+-0.29057112
+0.12524143
+-0.03895747
+-0.37034046
+0.80269789
+-0.86962707
+0.08228596
+-0.76542092
+-0.61016769
+0.23107114
+0.05292821
+0.39483457
+-0.51941962
+-0.45598167
+0.17460501
+0.35569608
+-0.20839117
+0.94058666
+0.56066362
+0.69668674
+-0.42109740
+-0.11396979
+-0.15442395
+-0.98418037
+0.32535899
+0.53684771
+0.76808973
+-0.58559072
+0.65677194
+-0.68014270
+-0.15478605
+0.96404745
+0.45655274
+0.12577022
+0.38088202
+-0.90360408
+-0.30368341
+-0.22479955
+-0.90163434
+-0.46917027
+0.64159513
+-0.64086877
+0.04755723
+0.27930586
+0.54815602
+-0.04180425
+-0.08947515
+-0.04590166
+-0.86268683
+-0.70351854
+0.28260779
+-0.11244184
+0.22106338
+-0.87829607
+0.84694815
+0.92416096
+0.64961803
+0.30558693
+-0.88752853
+-0.22572505
+-0.10112935
+-0.27918059
+0.67290056
+-0.17289203
+-0.73228487
+0.72339189
+0.03063691
+0.00374782
+-0.91086528
+-0.99158369
+-0.10107726
+0.51596069
+0.93704820
+0.64632547
+0.32651162
+0.63714516
+0.64498746
+-0.87197715
+0.44071949
+0.36224926
+-0.42792338
+-0.95418328
+0.17010283
+0.95067358
+0.65348423
+0.73961365
+0.59686637
+0.89955664
+-0.18208158
+-0.33924204
+-0.14191461
+0.09067893
+0.81293535
+0.86208940
+0.93736327
+-0.76807553
+0.78266132
+-0.19201958
+0.31262755
+-0.06053889
+0.96701372
+0.07525003
+-0.93465723
+-0.19543725
+-0.80833343
+0.31310045
+0.13261394
+0.39116371
+-0.51825108
+-0.24248368
+0.67440066
+0.00629037
+0.68439702
+-0.85824311
+-0.80304084
+0.96257192
+0.72146966
+-0.30663192
+-0.05992218
+0.76197761
+0.02832751
+0.28634593
+-0.93827600
+-0.72211971
+0.24670259
+0.91809707
+0.22769429
+0.48599309
+0.10641626
+0.93849593
+0.56012647
+0.54832384
+0.58855392
+-0.55886673
+0.38952259
+-0.30169886
+0.24097574
+0.44711566
+0.16940343
+-0.62735990
+-0.43414140
+0.14363241
+0.67339361
+0.38149345
+0.63179612
+0.56203544
+0.82419217
+-0.72101247
+0.22006333
+-0.59255573
+-0.90335605
+-0.28590995
+0.99335527
+0.49205959
+0.47030711
+-0.87572327
+0.93684554
+0.09460461
+-0.81420413
+-0.39803898
+0.51585746
+0.52237499
+0.18047559
+-0.95924908
+-0.26496530
+0.81666625
+-0.51245564
+0.40281451
+0.28339016
+0.99873602
+-0.63961712
+-0.80293873
+-0.97698652
+0.77354765
+-0.89058022
+-0.83659263
+-0.10646409
+0.04864466
+0.87065828
+-0.67913136
+-0.02186465
+0.23220992
+-0.54252210
+-0.41654021
+0.13168609
+0.98124433
+-0.24323034
+0.11591399
+0.09028339
+-0.05342913
+-0.19501549
+0.46509659
+0.65974557
+-0.30258834
+-0.61330223
+-0.66463929
+-0.69207963
+-0.31082273
+0.00693715
+-0.01430923
+0.50845206
+0.68818963
+-0.97327479
+-0.27028954
+0.84423018
+0.69660711
+0.04448342
+-0.98265171
+-0.84247220
+0.70769787
+-0.30771863
+-0.74030659
+0.65070033
+0.62534606
+-0.39947373
+0.29793441
+-0.66384917
+-0.07555610
+-0.15855551
+-0.50998172
+-0.48988277
+-0.52824077
+0.34971726
+0.86027598
+-0.57676783
+0.21234119
+0.63931584
+-0.28712720
+0.56246459
+-0.08191907
+0.39820480
+0.13891339
+-0.46322232
+-0.78209771
+0.34910941
+0.23415422
+-0.72223535
+-0.37060946
+-0.72934604
+-0.03804302
+0.39720070
+0.87665772
+-0.17479271
+0.85526025
+0.82268345
+-0.04364139
+-0.88061202
+-0.91089027
+-0.91168123
+-0.69196030
+-0.52639234
+-0.09215969
+-0.14903677
+0.62034583
+-0.88455610
+-0.09314996
+-0.27815622
+0.09717023
+0.14445305
+-0.16210783
+-0.99037854
+0.22018373
+-0.24881321
+0.85109890
+0.01027358
+-0.87671082
+-0.92276777
+0.83511889
+0.98536468
+0.29484880
+0.10621715
+0.67518294
+0.48817134
+-0.46665353
+-0.65246090
+0.67952740
+0.42310047
+-0.62030751
+0.34136796
+-0.42780632
+0.87771475
+0.36716437
+-0.07247323
+0.49212825
+-0.38274509
+-0.67929968
+-0.56339666
+-0.31110764
+0.17758799
+0.41711307
+-0.27573353
+-0.64394462
+-0.73993370
+0.57336950
+-0.49625659
+0.86609340
+-0.51913831
+0.31796670
+0.27994156
+0.69973314
+0.94825697
+-0.02966541
+-0.13745576
+-0.89125001
+0.63285255
+0.33154535
+-0.09555352
+-0.31969225
+0.64672804
+0.78752160
+0.57472134
+0.34464371
+0.43676651
+0.41547346
+-0.01171798
+0.78701210
+0.02558124
+0.07155955
+-0.93899877
+0.28912473
+-0.24992394
+-0.05129868
+-0.38852155
+0.93815768
+-0.56424057
+0.21641946
+-0.87464051
+-0.52548081
+0.31531107
+-0.23160809
+0.25969112
+0.68542552
+0.16930306
+0.36852932
+-0.67031708
+0.68779564
+-0.31323326
+0.88007259
+0.86030090
+0.83605611
+-0.32406962
+-0.48239911
+0.88308012
+-0.40581745
+-0.88337359
+0.77448606
+0.41206610
+-0.25085485
+-0.50734079
+-0.58088255
+-0.99943049
+-0.34512162
+0.26974392
+0.93958402
+-0.53374845
+0.05420458
+0.60205948
+-0.13542390
+-0.85226119
+0.08891439
+-0.66506886
+0.15834749
+0.99460399
+-0.48418605
+0.06905651
+0.56703138
+-0.29673809
+0.34215212
+-0.56910819
+-0.09825701
+0.38694739
+-0.29977846
+-0.40944391
+0.93640661
+-0.60214853
+-0.25002963
+-0.70781405
+0.16796815
+-0.90959694
+0.35129522
+-0.13761693
+0.20046195
+-0.71359393
+0.73389478
+-0.76809526
+0.76679667
+-0.13241942
+-0.10018164
+0.51508091
+0.21534388
+0.14097464
+-0.40174260
+-0.09696904
+-0.30262023
+0.19865931
+-0.31197089
+-0.70499516
+0.12328959
+0.76814746
+-0.75478386
+0.01072642
+-0.38954465
+-0.29987684
+0.92533154
+0.52515198
+-0.48073860
+-0.28692494
+0.35318184
+-0.68601049
+0.06921324
+0.92676671
+-0.15823645
+-0.14478491
+-0.30173856
+0.96819377
+0.03611631
+0.02127707
+0.48895168
+-0.13794631
+0.29759057
+-0.05025196
+0.61951115
+0.37039324
+0.06453236
+0.28148675
+0.90787122
+0.90945352
+0.78922563
+0.86900333
+-0.58177519
+0.56669350
+0.93199933
+-0.69552062
+-0.81639123
+-0.39317320
+-0.53484136
+0.50313107
+-0.43297399
+-0.72002439
+-0.63904036
+-0.79998904
+0.07816120
+0.74806937
+-0.34627763
+-0.94085271
+0.06413410
+-0.58848991
+-0.71655828
+0.27925143
+0.81988614
+0.01424070
+0.01648952
+-0.81448801
+0.05246797
+0.45965341
+-0.89449144
+0.75860283
+-0.33497799
+0.19636038
+0.03023595
+0.61959065
+-0.62468280
+0.75862810
+0.42738195
+-0.41450513
+0.90256989
+-0.41587402
+0.77790638
+0.50644597
+0.99139270
+0.44148085
+-0.40221013
+-0.33888356
+-0.39555022
+-0.59960757
+0.04594883
+0.17661547
+0.55956121
+0.75050337
+0.66287613
+0.22042420
+-0.05314537
+0.71592145
+-0.49607457
+0.93462616
+-0.73558038
+-0.06384322
+0.28756084
+-0.86825356
+0.58556567
+0.84388976
+-0.65576562
+-0.07238765
+0.95258385
+0.27502589
+0.10353868
+-0.39601761
+0.47049523
+0.09285941
+0.15062495
+-0.30382569
+0.54750474
+-0.00489135
+-0.02812263
+-0.57516405
+0.34679767
+-0.73107552
+0.77537352
+0.80946029
+0.53112124
+-0.23768507
+-0.02661260
+-0.02829313
+0.41487472
+0.41004049
+0.39914496
+-0.73879929
+-0.94637067
+0.89205162
+0.21477264
+0.45943998
+0.27785784
+-0.00262030
+0.71789096
+0.93286608
+0.07080717
+-0.38076921
+0.29747716
+0.58179420
+0.09151693
+-0.51698165
+-0.91262840
+-0.06315771
+-0.79389198
+0.01410408
+-0.28899219
+-1.00577385
+-0.10664079
+0.05594648
+-0.41695460
+-0.48040453
+0.69267817
+-0.17062709
+0.00202512
+0.47478517
+0.59199515
+-0.45413566
+-0.49657564
+0.64898338
+0.49030415
+0.07533414
+0.75690461
+-0.73674520
+0.45257071
+-0.08638404
+-0.56148871
+-0.16212721
+-0.30863644
+-0.65471399
+0.82149512
+0.74830386
+0.88292824
+-0.91565648
+0.06868786
+-0.16834931
+0.00438229
+0.57942232
+0.95319128
+-0.20346779
+-0.14061326
+-0.69905867
+0.76268163
+-0.53485840
+0.63936682
+0.43484667
+0.81867665
+0.00212871
+0.15639854
+-0.18636211
+0.57340519
+0.16226610
+0.06780245
+-0.21773002
+0.62032730
+0.89184460
+-0.09100061
+0.54401964
+-0.98128387
+0.75431201
+0.75113961
+0.57072421
+-0.55268617
+-0.65015737
+-0.90441044
+-0.38576710
+-0.90875635
+0.84065816
+-0.65481111
+0.12732170
+0.35907537
+-0.05675385
+0.84091405
+0.74055992
+-0.74238378
+0.29568279
+0.88142576
+0.88421767
+0.49386495
+0.96669629
+0.49966112
+-0.51362073
+-0.78809081
+0.21289277
+-0.86303687
+0.89484144
+-0.34024892
+-1.02924333
+-0.66278236
+0.79005268
+-0.51840372
+0.87481299
+0.65862553
+-0.56481026
+-0.85573835
+-0.69717660
+0.96013370
+0.90656424
+-0.60534366
+0.37801713
+-0.11557023
+-0.35285757
+-0.46938884
+-0.26305113
+0.87545729
+0.14011704
+0.77870145
+-0.88558293
+-0.51780512
+-0.17616138
+-0.00994034
+-0.16065302
+-0.41979086
+-0.98181847
+0.26416926
+0.94047287
+-0.59995944
+0.23888657
+0.64650994
+1.01408333
+-0.80823932
+0.11081185
+-0.89012160
+-0.17756078
+0.50658017
+-0.30912759
+0.68378544
+0.60103789
+-0.73573171
+0.87981801
+-0.68617016
+0.79134903
+0.32854989
+-0.57652376
+0.48152606
+-0.36403187
+-0.89671986
+-0.49813412
+0.92036861
+0.79721882
+-0.75611831
+-0.51694603
+0.25784788
+0.06737608
+-0.00291242
+0.55569554
+0.34617221
+-0.56709771
+0.44754488
+-0.53115868
+-0.81241329
+0.23477772
+-0.18380647
+-0.53718165
+0.08730450
+0.23310369
+-0.72703627
+0.15600983
+0.33269661
+0.00247961
+0.46653315
+-0.84005343
+-0.41178723
+0.95096294
+-0.41814374
+-0.77765425
+-0.15852100
+-0.47572708
+-0.73034220
+1.01137598
+-0.69041129
+0.42425932
+-0.02742397
+-0.24006751
+-0.56106880
+-0.39850518
+-0.68126675
+-0.82025101
+0.15176588
+-0.72996492
+-0.97071287
+0.25769834
+0.36380241
+-0.15644122
+-0.04724746
+-0.31772362
+0.01238837
+0.92026447
+-0.22033875
+0.55413906
+0.28210573
+-0.31613883
+0.56834168
+0.44593348
+-0.97414372
+-0.39447725
+0.45323803
+0.42780289
+-0.42466834
+0.01940501
+-0.42991071
+0.82595408
+-0.76291845
+-0.71545021
+0.11504551
+0.51603248
+-0.64015510
+0.92302623
+0.59808376
+0.00259675
+-0.37029664
+0.39792599
+0.78276668
+0.28754309
+0.58593568
+-0.73624743
+0.17281429
+0.68268089
+0.64486649
+0.26234392
+0.91019455
+-0.04822554
+0.21172510
+0.42361366
+-0.44186892
+-0.37611176
+-0.42396602
+0.85567873
+-0.19331856
+-0.15653698
+0.23705047
+0.29135749
+0.32913067
+-0.33753912
+0.29978701
+0.55678501
+0.18075349
+-0.65849235
+-0.80129586
+-0.42503547
+0.14225051
+-0.06658903
+-0.56960720
+0.52734649
+0.64090103
+-0.16306961
+0.22205066
+-0.40165606
+-0.23976155
+-0.19944536
+-0.61371964
+-0.19052126
+-0.12656978
+-0.33623191
+0.05413393
+0.75963076
+0.08163435
+-0.90357856
+0.50927635
+-0.03650706
+-0.65009551
+-0.38565908
+0.96780412
+0.85560423
+-0.07477045
+-0.72937402
+-0.47337999
+-0.81914480
+0.84260546
+-0.63266164
+-0.99049934
+-0.84336585
+0.97919501
+-0.28817940
+-0.49532087
+0.80172718
+-0.69163860
+-0.53834738
+0.07729422
+-0.84405769
+0.92293951
+0.23325566
+0.99836748
+-0.21216726
+-0.04673087
+0.87058806
+-0.24030086
+-0.54416255
+0.26246376
+-0.00849289
+0.39994981
+-0.20802189
+-0.45523661
+0.78278686
+-0.13680324
+-0.08754588
+0.45022202
+0.64845151
+0.98260782
+0.19137165
+-0.47799175
+0.34873638
+0.97835943
+-0.08970399
+-0.97888684
+0.80791960
+-0.78388969
+-0.20112571
+0.31089887
+0.34974337
+-0.86514991
+-0.31228484
+0.84449557
+-0.84840870
+-0.66495132
+-0.60002549
+-0.03224049
+0.96959000
+0.23348166
+-0.15980336
+0.10586505
+0.63531148
+-0.27383396
+-0.30608678
+0.45760250
+-0.54061079
+-0.07154227
+0.29890714
+-0.37134650
+-0.74919786
+0.78231230
+-0.81196974
+-0.62592532
+-0.51750353
+-0.70069057
+0.77062267
+0.40510130
+-0.01291417
+0.90636137
+0.76324143
+-0.56997179
+0.29615592
+0.00483378
+-0.26743943
+-0.71416664
+-0.11741434
+0.84919429
+-0.76962849
+-0.48937764
+0.61549431
+0.29469112
+-0.66428004
+0.24382427
+-0.77594436
+0.62151492
+-0.01150521
+-0.45361244
+-0.23034831
+-0.67849254
+-0.48946005
+0.17967115
+0.20576435
+-0.64611190
+0.82766163
+-0.62823549
+-0.50361278
+0.98269461
+-0.61027863
+0.15284661
+0.49569223
+0.11447975
+0.99736818
+0.13383412
+0.36909682
+-0.76108497
+0.54678737
+0.53103392
+-0.45204844
+0.36775543
+-0.80286548
+0.90737000
+-0.31317961
+-0.83087901
+0.39400168
+0.02263355
+0.84014787
+0.16623316
+0.83199561
+-0.58054673
+0.29465792
+-0.59095594
+-0.17857349
+-0.83736112
+0.05721395
+0.03719556
+0.58211058
+-0.64000259
+-0.70582588
+0.03904640
+0.82794964
+-0.65707966
+-0.64965713
+0.47728732
+0.18742538
+0.16755748
+0.21827956
+-0.99486802
+-0.93226853
+-0.24759961
+0.10416384
+0.54215138
+-0.24762530
+-0.87953660
+0.54444922
+0.25028266
+-0.65646956
+-0.63291819
+-0.80095425
+-0.92220705
+-0.53163663
+0.03405168
+-0.19612527
+0.06319580
+0.61455275
+0.93853494
+-0.47204636
+-0.42669910
+-0.73358007
+0.05076798
+0.94078338
+-0.93485890
+0.09482937
+-0.02742570
+0.09246383
+0.14450145
+0.90306293
+0.68102001
+-0.81127732
+-0.15589542
+0.55532824
+0.64771910
+-0.36037446
+-0.21060918
+0.61971321
+0.95965761
+-0.80712510
+0.77712593
+0.27663039
+0.58655591
+0.21754642
+0.42259878
+-0.10691536
+-0.58058348
+-0.68875205
+-0.63861500
+0.80469701
+-0.89148671
+-0.27460757
+-0.43579483
+0.02051389
+-0.63265380
+0.62038868
+0.76063649
+0.93983357
+0.82363863
+-0.39640516
+-0.81790159
+0.53786723
+0.76092432
+0.25048621
+0.80744203
+-0.99089190
+-0.60983480
+0.39319926
+0.15875558
+-0.29954975
+0.28735912
+0.54519327
+1.00755397
+-0.02368632
+0.25927181
+0.98063064
+-0.53276329
+0.36393469
+-0.52009261
+-0.09864157
+-0.79613273
+-0.17718164
+-0.76548418
+0.15475361
+-0.05259347
+-0.34484398
+-0.80529606
+0.46706259
+-0.55941327
+0.89745653
+0.79582739
+-0.69881553
+-0.13496562
+0.83063428
+0.27400184
+0.62188101
+0.59116997
+0.85973203
+-0.71902366
+-0.95344000
+0.75526488
+-0.40492549
+-0.92894170
+-0.00620341
+-0.48423469
+0.41685593
+0.88506316
+0.39325631
+-0.29536186
+0.36208272
+-0.79220475
+0.10828587
+-0.99311826
+0.45856889
+-0.15949345
+0.50761080
+0.30803162
+-0.74731785
+0.07227611
+0.68378615
+0.29592896
+-0.44195187
+-0.78842361
+0.23619771
+0.99196577
+0.12896276
+0.87931442
+-0.40910715
+-0.16043347
+0.09121549
+0.11903989
+-0.63549230
+0.72987998
+0.72099113
+0.15182841
+-0.29513252
+-0.95487561
+-0.42162001
+-0.63862652
+0.94170475
+-0.41285193
+-0.97459459
+-0.52825451
+-0.76915802
+0.37725091
+0.99615204
+-0.04848826
+-0.30333239
+-0.71929371
+0.72223175
+-0.03780365
+-0.68131152
+0.74673331
+-0.25454700
+-0.69785607
+0.48152006
+-0.04368919
+0.88180959
+0.57209396
+-0.27523416
+0.19269061
+0.66592431
+0.54825950
+-0.90332537
+0.40723026
+0.61217475
+0.06821871
+0.92087698
+-0.41467804
+0.06031346
+-0.52810517
+-0.92063085
+0.19452781
+0.51658837
+-0.65121651
+0.56722836
+0.61088630
+0.87681999
+0.68256028
+-0.00713536
+-0.24697680
+0.78074459
+0.71632862
+-0.34424113
+-0.05646349
+-0.73477635
+0.40991312
+-0.51418590
+0.54382482
+-0.13998776
+0.57089566
+-0.93044334
+0.73207462
+-0.18339597
+0.66192686
+-0.81265143
+-0.55490286
+-0.16929986
+0.71064224
+0.77069027
+-0.96895464
+0.82546343
+-0.20380264
+-0.54145017
+0.19742685
+-0.67117368
+0.92985603
+0.35882713
+-0.73895230
+-0.46195009
+0.73083353
+0.49666548
+-0.19182998
+0.44306159
+0.48614264
+0.87496793
+0.04306018
+0.65952694
+0.03403401
+-0.63949874
+-0.90342621
+0.77412033
+0.50358665
+0.04055548
+0.79515135
+0.10277081
+0.78809595
+-0.29858893
+-0.46951097
+-0.39315718
+0.01665652
+0.82056189
+-0.81914382
+-0.14837003
+0.89300191
+-0.91331344
+0.80664539
+-0.74409527
+0.35676014
+-0.67424911
+0.64504099
+-0.88323682
+-0.80251722
+-0.85337861
+0.87780988
+-0.12415355
+-0.72473335
+0.57405925
+0.74471629
+-0.13597709
+-0.33151722
+0.61199903
+0.61205161
+0.66061664
+0.36489236
+-0.57597318
+-0.12226969
+-0.18386316
+-0.39891511
+0.12638545
+0.86048687
+0.23821771
+-0.50221720
+-0.97278248
+0.76840413
+-0.21532452
+-0.25087047
+-0.40234047
+-0.91364578
+0.27722108
+-0.09812498
+-0.93187781
+-0.60600486
+-0.61316088
+0.03265786
+0.69969690
+0.13452601
+-0.90469333
+-0.50282174
+-0.98798281
+0.30926752
+-0.27670711
+-0.93222310
+-0.10631597
+0.67001307
+0.81221044
+0.51469696
+0.87441766
+0.26114404
+-0.23441952
+0.59632266
+-0.66988376
+0.54675686
+-0.08169276
+-0.36541808
+0.37317967
+0.62919807
+-0.86115633
+0.47874784
+-0.77973729
+-0.29976344
+0.02593923
+0.12337303
+-0.83091658
+0.36083400
+0.67566693
+0.92053914
+-0.45318097
+-0.09649873
+-0.63059899
+-0.49542755
+-0.12899303
+0.83322918
+-0.02185374
+0.15793204
+-0.96467741
+-0.04196465
+-0.89131919
+0.21696341
+-0.44020039
+0.75256264
+-0.73817071
+-0.51690671
+0.03219688
+0.76296031
+-0.96105095
+0.31819963
+0.12044954
+-0.91731652
+-0.13314122
+-0.04434496
+0.02503300
+0.50675094
+0.01123893
+0.15860653
+-0.26972383
+-0.03192544
+-0.68668798
+-0.87164374
+0.34332681
+-0.38569915
+-0.05042714
+0.87297320
+-0.34092087
+-0.55464065
+0.65389514
+0.86148107
+0.76216888
+-0.59490272
+-0.22052085
+-0.11604911
+0.56149065
+-0.19851696
+-0.24270850
+-0.90367926
+-0.90891162
+-0.25164771
+-0.90539993
+-0.49486411
+0.12147450
+-0.53196511
+-0.17278588
+-0.43343771
+-0.18927336
+-0.45335329
+-0.57344097
+0.29554021
+0.51772881
+-0.42467898
+-0.08913010
+-0.15615290
+-0.84832731
+-0.76057053
+0.61787522
+-0.62710571
+0.28430164
+0.31206918
+-0.80139531
+-0.31963032
+0.35867798
+-0.24110675
+-0.26920134
+-0.67855895
+0.53271353
+0.60277665
+-0.75656833
+0.32991064
+-0.53063762
+-0.26234907
+-0.19167596
+-0.57566711
+-0.02499449
+-0.10033536
+-0.20163465
+0.31196988
+-0.01504904
+-0.99287315
+-0.23698109
+-0.32620949
+-0.32606506
+-0.44931495
+0.77563858
+0.22175968
+-0.17619431
+-0.76670150
+0.09531796
+-0.74955624
+-0.77173895
+-0.69012842
+0.65045190
+0.89231598
+0.41547203
+0.52450311
+0.03199649
+-0.17129588
+-0.48327583
+0.47696054
+0.60683870
+-0.64018059
+0.69296873
+-0.98737180
+0.80486977
+0.18919396
+0.28529155
+-0.30206543
+0.00318372
+0.82059371
+0.06901681
+-0.39164674
+-0.27508467
+0.75883412
+-0.29189879
+-0.30391181
+0.17498136
+0.33504450
+-0.85230547
+-0.06662923
+-0.81648032
+0.38302040
+-0.32187372
+0.02861501
+0.06205113
+-0.10911411
+-0.00006701
+0.18250532
+0.86734406
+0.41692467
+-0.40229284
+0.39445590
+0.73862243
+0.62358711
+-0.32829295
+-0.28524876
+-0.57426934
+-0.52316865
+-0.01720201
+0.93581460
+0.83064449
+0.10580667
+0.00872959
+-0.77061044
+-0.43862073
+0.38844514
+-0.58202001
+0.94357464
+-0.73144131
+-0.93916881
+0.75419247
+-0.71493809
+-0.82918503
+0.34050522
+-0.67245330
+-0.84094949
+-0.38208034
+0.19028363
+0.74838741
+0.93492959
+-0.14632028
+-0.19196801
+-0.39892464
+-0.30512317
+-0.34869932
+0.79812336
+-0.38767817
+0.75472019
+-0.47915738
+-0.66523536
+-0.63653400
+0.35287102
+-0.43346028
+-0.35490277
+0.85338308
+-0.13944775
+-0.46403088
+0.20138254
+0.80038278
+0.19463364
+0.03724967
+0.47892350
+0.96917535
+-0.61476227
+0.21835403
+0.06380033
+0.80381022
+0.26626385
+-0.39920390
+0.27729672
+-0.87034108
+0.92570558
+-0.19638478
+-0.27282757
+-0.28226774
+0.77306423
+-0.61097670
+0.15939168
+0.52876945
+-0.53281206
+-0.79090410
+-0.83199486
+0.37020240
+0.97841522
+0.50509549
+0.67760753
+-0.95420811
+0.24912862
+0.31655639
+-0.31085273
+0.90265271
+-0.26138461
+0.83758525
+-0.42999581
+-0.06049263
+0.97396588
+-0.51502127
+-0.34856585
+-0.85443387
+-0.58141418
+-0.50221160
+-0.00135600
+0.62961547
+0.35950795
+-0.74652026
+-0.88063808
+-0.79529726
+-0.34109816
+-0.82627885
+-0.58170784
+0.58904733
+-0.30636878
+-0.50696927
+-0.55703302
+0.69999819
+-0.44621217
+-0.36814188
+-0.38268912
+-0.58559750
+0.33618598
+-0.35196904
+0.63597061
+0.52617191
+0.68616981
+-0.08280614
+0.53690258
+-0.57676176
+0.25434878
+0.16329038
+-0.06320667
+-0.88541485
+-0.67953605
+0.20114357
+-0.83728915
+-0.59466367
+0.55321502
+0.31550023
+-0.15623269
+-0.50219186
+0.46822525
+0.89471011
+-0.91633222
+-0.03486412
+0.53348895
+-1.07505014
+0.78584118
+-0.23842906
+-0.70770704
+0.43337879
+-0.02966020
+0.29096319
+0.43739086
+0.20605090
+0.93660974
+-0.45952970
+0.10814682
+0.64228656
+-0.53757571
+0.25548990
+0.45938087
+0.05568069
+-0.66344316
+0.56451059
+-0.79490768
+-0.97128077
+0.25138206
+-0.17868840
+-0.01299513
+-0.06500331
+-0.33825187
+-0.67383768
+0.78533498
+0.58502544
+-1.02909901
+-0.33998843
+0.22308130
+-0.11249622
+0.06557425
+0.33123694
+-0.86915840
+-0.67419699
+0.72855684
+0.15713217
+-0.05123456
+-0.95143445
+-0.69422195
+-0.58619664
+-0.68044955
+0.26782326
+-0.07586952
+-0.78798837
+0.68253807
+0.14098600
+0.00934071
+0.07513090
+0.54468934
+-0.75347781
+-0.83058580
+-0.10967298
+0.17661803
+0.22237291
+-0.50430650
+-0.75431424
+-0.17921872
+-0.08837847
+-0.78751469
+-0.13670742
+-0.87466483
+0.19876028
+-0.78364424
+-0.01176510
+-0.56510398
+-0.14807252
+0.38895712
+-0.53297994
+-0.90654166
+-0.59666422
+0.22780752
+-0.25980288
+-0.54526525
+0.04840242
+-0.82698618
+0.80443857
+0.53432921
+-0.15333117
+0.44393434
+-0.80254901
+0.15006513
+0.17971949
+0.00390448
+0.79678655
+-0.48877698
+0.47746914
+0.28798595
+-0.18942012
+0.18739348
+0.11393406
+-0.86532644
+-0.39264576
+0.19734960
+-0.47958335
+-0.57889130
+-0.11809031
+0.82325153
+-0.49654432
+-0.43054769
+-0.36409341
+0.04733568
+0.83011503
+0.03509021
+-0.42800837
+-0.02290379
+-0.71841276
+-0.42491014
+-0.98028054
+-0.32127981
+-0.21224810
+0.24636384
+0.49114726
+-0.87988751
+-0.83761408
+-0.85288578
+-0.89778887
+0.84271222
+0.65799753
+-0.02433625
+-0.14353651
+0.62397083
+0.50909996
+0.25594237
+-0.22173729
+-0.87386653
+-0.14768732
+-0.87703704
+-0.21684672
+0.09203715
+-0.37070374
+-0.20964305
+0.85515912
+0.51997550
+-0.35465204
+-0.36875653
+0.62803768
+0.62255919
+0.59144767
+-0.76670721
+-0.25462090
+0.13983472
+-0.00869699
+-0.98802733
+-0.69888212
+0.31254415
+-0.21978410
+-0.72460005
+-0.35057124
+0.72234469
+-0.62726878
+0.94070680
+-0.02838801
+0.22780009
+-0.88845861
+-0.42789884
+-0.01719508
+0.63704359
+-0.42142797
+-0.34389516
+-0.08319814
+-0.12030320
+-0.48915229
+0.45269341
+-0.46509656
+0.57193160
+-0.28478506
+-0.85817999
+0.57429795
+-0.07587920
+0.74348971
+-0.35157622
+0.46257929
+0.44420707
+0.92858342
+-0.55489415
+-0.95983069
+0.65634169
+0.49823813
+-0.95025083
+0.24848836
+-0.91043366
+-0.97121350
+-0.24088238
+-0.03002336
+-0.95329443
+-0.27517341
+-1.04689448
+-0.43369357
+0.53098784
+0.39762785
+0.09925310
+0.99707605
+-0.79296700
+-0.97142689
+-0.40394387
+-0.59603349
+0.52350065
+-0.05906784
+0.20493885
+-0.94935310
+-0.77463281
+0.17495649
+0.64405877
+-0.83203729
+0.17733853
+0.24288391
+-0.88600152
+0.05242890
+-0.69582913
+0.92470604
+-0.43223586
+-0.60859258
+-0.11950963
+-0.91581892
+-0.63990091
+0.42577705
+-0.39656068
+0.59004339
+-0.15656831
+0.20320677
+-0.32589487
+0.32539478
+-0.87903609
+-0.29803572
+-0.27556848
+0.93410724
+0.14767462
+-0.75921201
+-0.54289428
+0.93375251
+-0.74693615
+-0.13861311
+-0.36875026
+0.15290781
+0.91358391
+-0.05557630
+0.69005155
+0.88151061
+-0.69298719
+-0.40293555
+-0.79566029
+-0.16856916
+-0.63305001
+-0.42451467
+-0.57755256
+0.88376650
+0.80271984
+-0.26129147
+-0.25954206
+0.10888054
+0.85782372
+0.09711015
+-0.40866002
+-0.72875393
+0.93758791
+0.69107212
+0.11722012
+0.56482661
+0.59015201
+-0.18784294
+0.69391987
+-1.00080131
+0.76898502
+-0.29189647
+-0.30553408
+-0.15696258
+-0.41416021
+0.45887320
+0.55998360
+-0.83295637
+-0.67050676
+0.22473203
+-0.04677736
+1.01362687
+0.65908562
+0.28000190
+-0.00773514
+-0.47584099
+-0.31776237
+0.38795985
+-0.54181854
+-0.38644329
+0.21675105
+-0.45777658
+0.64243315
+0.26400386
+-0.43001684
+0.62474003
+0.95394963
+0.12703216
+0.95868282
+0.86634876
+0.93726203
+-0.54240854
+-0.05167802
+0.15136027
+-0.98902128
+0.18694524
+-0.16867005
+0.86849561
+0.18091979
+-0.39358467
+0.59408112
+0.93144765
+-0.80803134
+-0.12762600
+-0.31365368
+0.72932834
+0.63827151
+0.31437808
+-0.42978272
+-0.68370012
+-0.33754929
+-0.49047210
+-0.44011155
+-0.63282493
+0.87945547
+0.03757410
+0.89769475
+0.76807361
+-0.53837338
+0.97004103
+-0.74245708
+0.53564854
+-0.98479309
+0.87745222
+0.35119226
+-0.41632942
+0.39403150
+0.33092716
+0.72038499
+-0.54656739
+0.58553269
+0.87187209
+-0.54363713
+-0.49021230
+0.18130614
+0.25846385
+-0.47280410
+-0.08023731
+-0.06101358
+0.40870210
+0.47501901
+-0.70744272
+-0.35228842
+-0.39146501
+-0.71181739
+-0.94757194
+0.05206574
+0.05434902
+0.10536553
+0.50522946
+0.43169978
+-0.71320730
+0.07163715
+-0.52309064
+0.26895240
+-0.05120909
+0.55852751
+0.15532458
+-0.15714469
+0.56685635
+-0.53306025
+-0.44848375
+-0.83846085
+-0.33514535
+0.14371537
+0.91848412
+0.80646417
+0.10166097
+0.27555492
+0.87623796
+-0.64840745
+0.77361181
+-0.17736477
+0.59829763
+0.41959868
+-0.45220084
+-0.79953775
+0.81195331
+0.54812932
+0.41805905
+-0.35364079
+-0.89458071
+-0.84141973
+0.89533573
+0.21730302
+-0.28889359
+0.93067775
+-0.32021737
+0.00494547
+-0.53042200
+0.87875152
+-0.43745899
+0.47314084
+-0.87493592
+-0.72546615
+-0.20286962
+0.18176325
+0.00640843
+0.48816990
+0.15398502
+-0.28042132
+0.89122140
+-0.21998894
+-0.84759698
+0.26840246
+-0.90367988
+-0.90693834
+0.34304667
+0.07415596
+0.43887830
+0.12338245
+-0.03355624
+0.80254877
+-0.41876140
+0.63985670
+0.79649971
+-0.08102738
+0.44678771
+-0.98480210
+0.56925750
+0.02046357
+-0.49940471
+-0.87795614
+0.07624060
+0.55811715
+-0.81898223
+-0.36500346
+-0.32046247
+0.89339980
+0.60445167
+0.88377383
+-0.63790294
+-0.18932030
+-0.33807017
+-0.00547282
+-0.89456788
+0.24039135
+0.93847268
+0.96780392
+0.87112735
+-0.98497486
+0.16663025
+-0.76509869
+-0.58037361
+0.74646927
+0.58920743
+-0.42230156
+-0.46726095
+-0.70180915
+-0.73356097
+0.58446691
+0.42216240
+0.88172588
+0.12388862
+-0.66095067
+0.96877351
+0.27125006
+0.17556286
+-0.86013605
+0.72582637
+0.10316592
+0.54139555
+0.38373339
+0.70321615
+-0.67865585
+0.96049953
+0.53219220
+-0.87194231
+-0.47270839
+0.33401718
+0.56399120
+-0.33341530
+-0.94356637
+0.41484974
+-0.22482017
+-0.88637606
+0.51803075
+0.49685234
+-0.35867997
+0.82847862
+-0.93424245
+-0.37036556
+-0.40748289
+0.23137147
+0.75103843
+-0.74712251
+0.39074616
+0.41487098
+-0.69707987
+-0.72759743
+0.77719865
+-0.54238739
+-0.64685560
+0.55571757
+0.05845129
+0.64745918
+0.14410017
+-0.98118270
+-0.14443833
+0.06271458
+-0.90820604
+-0.82501103
+-0.77557162
+-0.42281443
+-0.32770425
+0.40189879
+-0.39163391
+-0.88732018
+0.36156452
+0.46411622
+0.79265752
+-0.04336226
+-0.84569010
+-0.45483148
+0.77565873
+-0.36602960
+0.38655135
+-0.55020745
+0.84587812
+-0.98827650
+-0.56149530
+0.53250217
+0.01858970
+0.48078406
+-0.28238082
+0.47842679
+-0.15235871
+-0.04308413
+0.73108959
+0.92239773
+-0.85383137
+-0.21040541
+-0.25408108
+-0.74630955
+-0.13197142
+0.57810688
+0.75274408
+0.12905395
+-0.51963702
+0.79776299
+-0.65515807
+0.35042763
+0.78298163
+0.22054720
+0.07740879
+-0.27349550
+-0.17712069
+0.98167324
+-0.22753310
+0.39130199
+-0.48181456
+-0.79970837
+-0.09121639
+-0.89141415
+-0.39426160
+0.61255419
+0.25086653
+0.22016311
+0.96083784
+-0.70164660
+0.14795411
+-0.58191296
+0.54065812
+-0.45823920
+-0.80046719
+-0.52405915
+-0.56613722
+-0.27805221
+-0.15427792
+-0.04974079
+-0.11658311
+0.62167072
+0.56107116
+0.37754464
+0.28963625
+0.58724487
+-0.80237000
+0.83579755
+-0.12746942
+-0.09923232
+0.25436342
+-0.82812010
+-0.59252051
+-0.82960525
+0.18065661
+0.52606394
+-0.15425974
+0.25579981
+-0.52563522
+-0.59439014
+0.72400602
+-0.11662010
+0.52924867
+-0.62535259
+0.03936058
+0.33683195
+0.20300931
+0.05312923
+-0.49167508
+0.07310943
+-0.17754016
+-0.60927768
+-0.46567153
+0.86806253
+-0.08448751
+0.09929840
+0.21014440
+-0.93578416
+0.16415119
+0.11943170
+-0.58958793
+0.21450261
+0.03339770
+0.53062410
+0.08142835
+0.83491733
+0.50094360
+-0.63800019
+-0.56419924
+-0.70836808
+-0.98091401
+-0.37123547
+-0.91034583
+-0.77548268
+0.11937528
+0.66318347
+-0.45910579
+-0.21917977
+0.08371228
+-0.97906857
+-0.58381042
+-0.99962941
+0.63102109
+-0.38995090
+0.95527196
+0.41842794
+0.22719920
+-0.15549713
+0.48546445
+0.77399600
+0.26245451
+-0.23924774
+0.11600447
+0.86313403
+-0.77968648
+-0.63425151
+-0.76712111
+0.71144485
+0.49743915
+0.26598239
+-0.74646112
+-0.43826157
+-0.47444540
+0.30618727
+0.88058066
+-0.79620728
+-0.59841219
+0.78606820
+-0.11476821
+0.82783079
+-0.30389190
+0.03117454
+0.56907094
+0.98062921
+-0.76993535
+-0.61204877
+0.47971272
+-0.89763416
+-0.33451176
+0.30193853
+0.86660123
+0.23758113
+-0.41236454
+0.70099306
+-0.46841556
+0.69197774
+0.92380571
+0.55259585
+0.74492764
+-0.13388735
+-0.39800286
+-0.88314655
+-0.12802887
+-0.12733895
+0.62833726
+0.60209048
+0.03243446
+-0.86948881
+0.20532346
+-0.61444700
+0.49151444
+0.49909770
+-0.81492342
+0.11592293
+-0.52963173
+-0.35277063
+-0.28209680
+0.27393889
+-0.36837095
+0.80879116
+-0.72210842
+0.77169037
+0.42738092
+0.72098732
+-0.44647682
+-0.16744441
+0.21949315
+0.76266873
+0.57461762
+-0.57193220
+0.55097830
+0.85989785
+-0.84092836
+0.67122054
+-0.36452085
+-0.84950532
+-0.73003653
+0.78660417
+-0.23509842
+-0.82305449
+0.98468506
+0.26907229
+-0.36062253
+0.25023365
+0.48526454
+-0.73852694
+0.45332682
+0.60282850
+-0.23149872
+0.90749466
+0.61608672
+0.63243818
+0.99579346
+-0.04784328
+-0.42521852
+-0.12200564
+0.93057382
+0.74335515
+0.03957069
+-0.23642629
+-0.71385518
+0.54687822
+0.69362092
+-0.51014218
+-0.03251290
+-0.98808311
+0.94117141
+-0.89458361
+0.11434317
+-0.30920351
+-0.00363338
+0.54798067
+-0.77932671
+0.99929154
+0.72228324
+-0.51916122
+0.38734233
+-0.84570678
+0.99792826
+0.14305997
+-0.33778083
+-0.44071925
+0.43749166
+-0.66094780
+-0.91296280
+-0.76376235
+-0.84651940
+-0.34233987
+-0.53384462
+-0.43303227
+0.12443590
+-0.21271038
+0.00384891
+0.03399932
+-0.94338503
+-0.40030897
+-0.82835938
+-0.44952977
+-0.32406729
+-0.97658869
+-0.97413971
+-0.00320834
+0.11214340
+-0.25450528
+-0.42579979
+0.38869739
+0.11600888
+-0.07787138
+-0.20301682
+-0.16966331
+-0.05499929
+0.82838714
+-0.45963997
+-0.76177683
+0.52745676
+0.19365811
+0.36439037
+-0.83933502
+0.13858879
+0.91356719
+0.49275827
+0.02325821
+-0.90514795
+-0.43347597
+0.96737862
+-0.33207977
+0.62281084
+0.80525613
+-0.00725764
+-0.13506639
+-0.71837410
+0.89115727
+-0.91753761
+-0.64024404
+-0.06703955
+0.51405942
+0.76376688
+-0.23242533
+-0.76337558
+0.84908330
+-0.70710894
+0.39369833
+0.17414391
+0.23238981
+0.09914804
+0.17590225
+-0.34105539
+0.65396249
+-0.77099492
+-0.21129930
+-0.64187017
+0.21129906
+0.57099843
+-0.11686110
+0.68612635
+-0.24769598
+0.00663698
+0.85107684
+0.56720138
+-0.05133027
+-0.84655695
+-0.08316970
+0.52195382
+0.62450695
+-0.30526614
+0.69953001
+-0.46970588
+-0.42616391
+0.07194412
+-0.52698737
+0.08839214
+-0.90346304
+-0.85189322
+0.03558612
+0.23191997
+-0.18555195
+0.44379389
+-0.69771734
+-0.78895201
+0.12323199
+-0.34517102
+0.47145315
+-0.22969805
+0.72518635
+-0.39589413
+0.53304364
+0.18109584
+0.37855659
+0.29982934
+0.86787836
+0.70714428
+0.57169395
+0.78687549
+-0.84339692
+-0.36644914
+-0.41889690
+0.33818507
+-0.07167598
+-0.22604396
+0.57625360
+-0.54006975
+-0.81294328
+-0.80507645
+-0.14540760
+-0.37430896
+0.38936533
+0.29478168
+0.42975710
+-0.34227046
+-0.59079637
+0.07797299
+0.03258944
+-0.42174034
+0.18844534
+-0.69021799
+0.62039162
+0.75864112
+0.48213790
+0.06508968
+-0.56167148
+0.19411371
+0.10837317
+0.17132719
+0.46277512
+-0.58375834
+-0.04021625
+0.79326999
+0.36365757
+-0.50990107
+-0.53519906
+-0.12640603
+0.13828671
+-0.03814094
+-0.27358513
+0.67653285
+0.94139244
+0.63178110
+0.55624483
+-0.82912842
+-0.36008226
+-0.91698977
+-0.62753314
+0.00580748
+0.94449676
+0.33921693
+-0.20320247
+0.80338991
+-0.19258823
+0.75926981
+0.49980111
+0.01623402
+-0.34628445
+0.50310393
+0.77853073
+-0.14477243
+-0.16671227
+0.26652753
+0.21968184
+-0.22988000
+-0.41603647
+0.65357373
+-0.00282788
+0.46641560
+-0.16755967
+-0.13620331
+-0.14011465
+0.23863518
+0.72109459
+0.64308713
+-0.35833209
+0.37685857
+-0.55492434
+-0.23571084
+0.05438758
+-0.48133382
+-0.79944417
+-0.54814015
+0.93967814
+-0.39829121
+0.01640635
+-0.27082927
+0.11102088
+0.92337343
+-0.84042913
+-0.71781597
+0.36699488
+0.65097586
+-0.90968822
+0.43503384
+-0.86536791
+0.62641572
+0.49036833
+-0.68594843
+0.27054855
+-0.18100967
+0.05969723
+0.70267366
+-0.75414381
+0.90882451
+-0.48422377
+0.81947862
+0.95517370
+-0.63987705
+-0.98368238
+0.42295871
+-0.38615929
+0.99854684
+-0.85231560
+-0.56296488
+-0.05970167
+0.32390604
+-0.35754019
+-0.62654663
+-0.77866867
+0.08329917
+0.79352441
+0.31562865
+-0.79598042
+-0.30031707
+-0.15644150
+-0.17935915
+0.42604445
+-0.41002045
+0.51167501
+0.20112487
+0.42047767
+0.52613831
+0.11718936
+0.59175561
+-0.11103574
+-0.51015636
+0.04834820
+0.95957329
+0.28788878
+-0.87329302
+0.40980184
+0.02493513
+0.23232985
+0.74269579
+0.54255482
+-0.15490833
+-0.91877085
+-0.24726313
+0.18376102
+0.27214517
+0.34627092
+0.52080107
+-0.57330745
+-0.87248798
+0.97968133
+0.30116144
+-0.08629629
+0.04638189
+-0.91015708
+-0.80786380
+-0.68925145
+0.57457685
+0.98843301
+0.85934267
+-0.04012088
+-0.86562867
+-0.83634018
+0.22350854
+-0.29700606
+-0.93151167
+0.14631471
+0.86236707
+-0.91688011
+0.05517671
+-0.37363827
+0.66610786
+-0.12834099
+0.05789382
+0.25393181
+0.20152807
+0.40477919
+-0.18853830
+-0.25510356
+0.96790030
+0.94237074
+0.44267301
+0.35295469
+-0.21248338
+0.64835296
+0.78651048
+0.10225933
+-0.33171444
+-0.33141931
+-0.06335546
+-0.18868923
+-0.06202633
+-0.10826269
+-0.18143792
+0.69545835
+-0.20763202
+-0.68658906
+0.05431046
+0.59267077
+-0.88594968
+0.03255695
+0.20781566
+-0.36328362
+-0.58608300
+0.36632339
+-0.67966874
+0.61557570
+0.78178453
+0.26679703
+-0.37448212
+0.75552979
+0.84943437
+-0.53854813
+0.82607134
+0.20482453
+-0.74207591
+-0.74301268
+-0.11036353
+0.63756658
+0.38704089
+-0.67699817
+0.12309886
+-0.31716853
+-0.71633229
+0.74984619
+0.13038705
+0.28941981
+0.08272046
+-0.38734048
+0.73032614
+0.89185367
+-0.74505470
+0.08190316
+-0.18217150
+-0.91977590
+0.85735762
+-0.33367791
+0.92379428
+-0.94521661
+0.33733808
+-0.78941496
+0.42696621
+-0.21101720
+0.74739979
+0.99155617
+-0.02234618
+0.27613926
+0.95506681
+0.47035181
+-0.16824823
+0.38751962
+-0.20075813
+0.19734990
+-0.00408484
+-0.33435033
+0.81450420
+-0.32772558
+0.61185253
+0.70341630
+-0.78608458
+0.72685695
+-0.87803489
+0.46610996
+-0.57648744
+-0.40376182
+0.44611689
+0.28743596
+0.07464723
+-0.18991112
+0.37826946
+0.09005114
+-0.99941916
+0.42985358
+-0.77737043
+-0.33710528
+-0.13720729
+-0.07808753
+-0.85661352
+-0.13677407
+-0.15590867
+0.76334005
+-0.98459769
+-0.95264320
+-0.56493499
+0.89143603
+0.69660535
+-0.34971739
+-0.69447082
+0.61615613
+0.92175333
+-0.07298849
+0.77476799
+0.94758890
+-0.66546578
+0.51949400
+0.31495967
+-0.34799023
+-0.56878528
+0.09016959
+-0.16149298
+0.83959016
+0.52549926
+0.98612366
+-0.32070513
+0.92222396
+0.01552852
+-0.41835333
+0.43305373
+0.25856605
+-0.83057152
+0.24751827
+-0.02667844
+0.19374798
+-0.67197000
+-0.35101271
+0.85686991
+-0.84004664
+-0.37804794
+0.08078900
+0.15919809
+0.02449534
+0.50973004
+-0.27559562
+-0.43193908
+-0.66651584
+0.85630653
+0.74725374
+-0.69348097
+-0.52332715
+-0.42729590
+0.18586883
+-0.45449090
+-0.21520278
+0.24265383
+-0.28132905
+0.58433909
+-0.27675422
+0.91675436
+-0.22648034
+-0.44560339
+0.30651531
+-0.93902808
+-0.87055192
+0.78077887
+-0.95902705
+0.10033579
+0.48368413
+0.09487844
+-0.07388261
+0.30341945
+-0.69176840
+0.24388331
+0.94042516
+0.73202096
+-0.16710609
+-0.83200185
+0.43254417
+-0.23784643
+0.95738699
+0.22474689
+0.20105087
+-0.90414010
+-0.42429098
+-0.03513624
+-0.58064108
+-0.40218427
+-0.48165998
+-0.52028266
+-0.82960091
+0.15887090
+-0.52285958
+-0.01403398
+0.83987588
+0.20177613
+-0.72878418
+0.60654884
+0.93309067
+0.43382835
+-0.44894574
+-0.88547833
+0.55142641
+0.04737501
+0.71969741
+0.68449829
+0.44846096
+-0.45984884
+0.73038564
+-0.12621188
+-0.42736254
+-0.53805831
+0.46777667
+0.79331057
+-0.36936704
+0.15605007
+0.24095190
+0.56235615
+-0.93218275
+0.00508821
+0.32543423
+-0.16231859
+0.13538826
+0.04505568
+-0.98423418
+-0.65763958
+0.78911948
+0.88610498
+0.91777132
+-0.52200291
+0.20227268
+-0.38774103
+0.40131522
+-0.40529902
+-0.09256009
+0.30170439
+-0.88998233
+0.52160529
+-0.30364110
+0.16254151
+0.01021066
+0.44129455
+-0.14479958
+0.58313244
+-0.16309688
+-0.18758781
+0.73215532
+0.27919944
+-0.31935765
+0.98121178
+-0.53420012
+-0.10546058
+-0.87901940
+0.28075370
+0.50751871
+0.28049819
+0.27139735
+-0.91896957
+-0.72826453
+0.29549348
+0.55325141
+-0.89711849
+-0.14259773
+-0.01276999
+-0.89634265
+-0.64027004
+0.36529493
+-0.89529023
+-0.39958864
+-0.72177309
+-0.46486640
+0.59351814
+-0.89684445
+-0.11606383
+0.72533655
+-0.71737370
+-0.15153432
+-0.00855881
+-0.43393791
+-0.07293481
+0.25258243
+0.46852124
+-0.78471039
+0.39196873
+-0.39998960
+0.97609699
+0.19523394
+-0.21962011
+0.52163947
+0.34844232
+0.05731189
+0.10840249
+0.58816171
+0.72592998
+-0.22589296
+0.22892535
+0.93542302
+-0.05256450
+-0.89477655
+0.91421866
+0.57495415
+0.84634113
+0.28008938
+0.51427114
+0.26755118
+0.68419731
+-0.93747092
+0.15742409
+-0.25380297
+-0.23345977
+-0.94200113
+-0.16668142
+-0.74860132
+0.95675564
+-0.75428581
+0.52741802
+0.83706971
+-0.46108491
+0.31488581
+-0.45667130
+0.53775330
+0.22526920
+0.91857207
+0.88326993
+0.32732270
+0.51685774
+0.08463687
+-0.92205870
+0.25664233
+0.85359046
+-0.74772851
+0.55541118
+0.59804940
+-0.39027864
+-0.22275161
+-0.02459061
+0.68416841
+-0.52845119
+-0.96700629
+-0.35379498
+0.89361117
+0.26779790
+-0.27576709
+-0.03646761
+0.60997524
+-0.32705879
+-0.12928432
+-0.19237273
+-0.28599892
+0.27359166
+0.04830396
+-0.58588980
+0.41045451
+0.98276544
+0.15728973
+-0.30602825
+-0.65541265
+-0.35097325
+-0.41033050
+-0.96662776
+0.76618319
+-0.18528438
+-0.33244997
+0.33143682
+-0.67247823
+0.86712539
+0.72738080
+-0.33712983
+-0.04592621
+0.59396459
+-0.96449763
+0.74983633
+0.63890946
+-0.78383741
+0.85397420
+-0.01319188
+-0.58100149
+0.08403610
+-0.79109630
+0.37166631
+0.98279424
+0.72872126
+0.26359281
+-0.18499887
+0.33903889
+-0.05118004
+-0.02628790
+0.82448333
+0.24514105
+-0.77795835
+0.79742781
+0.75062185
+0.05751233
+0.56016347
+-0.55336643
+-0.23168134
+0.14718107
+0.32363003
+0.61930873
+-0.51453131
+0.84593586
+-0.36934608
+0.99458520
+-0.85225964
+0.84061136
+0.00563807
+-0.34046569
+-0.57251930
+0.05674434
+0.50437295
+-0.18302238
+0.49291611
+0.95691884
+-0.33683872
+0.69347215
+0.45549965
+-0.31562710
+-0.81486632
+-0.09427798
+-0.05479532
+0.75078917
+0.23943508
+0.82628953
+-0.86945038
+-0.81053202
+0.52026296
+-0.74856842
+0.75736117
+0.20805550
+0.03008795
+0.16708803
+0.65356100
+-0.21002442
+-0.48471671
+-0.80002996
+-0.30391192
+-0.90703423
+-0.24218196
+-0.69452605
+0.26936853
+0.91486597
+-0.70992365
+0.46010923
+-0.00660080
+0.88885117
+-0.77562383
+-0.60981119
+0.73087585
+-0.45141548
+0.18975806
+0.08427775
+-0.86335438
+0.02288115
+-0.73779505
+0.22471201
+0.25102067
+0.38677680
+-0.24641317
+-0.39543927
+0.65068209
+0.28887928
+-0.95671226
+-0.30388170
+-0.27959251
+-0.27078575
+0.33737111
+0.77331054
+-0.50671861
+0.89232671
+0.66850615
+-0.42414135
+0.28082681
+0.72244108
+0.45735168
+-0.81784955
+0.73421860
+-0.66793641
+-0.67471308
+0.01127923
+0.55073655
+-0.09599864
+-0.60234851
+-0.80608644
+-0.03341419
+-0.78293760
+-0.56170860
+-0.69991755
+0.12764096
+0.66449964
+-0.86821428
+-0.41889799
+-0.79736671
+0.36224985
+0.54227459
+-0.81534603
+-0.92568606
+-0.68676564
+-0.26865542
+-0.05061787
+0.01657224
+0.22429693
+-0.82515700
+0.76058996
+0.01083243
+-0.08280766
+0.95985246
+0.91733360
+-0.23264235
+0.02655101
+-0.81013483
+0.59494650
+0.41474509
+0.72518611
+-0.90926264
+0.71783388
+-0.45376426
+0.11510170
+-0.63564581
+-0.32014036
+-0.91651455
+0.64865935
+-0.25789595
+0.47480774
+0.73255980
+-0.97716431
+0.46953642
+-0.00377500
+0.00264394
+0.08289325
+0.36301720
+0.88110411
+0.74243391
+-0.04533571
+-0.89687322
+0.40951920
+0.19660187
+0.83752847
+0.49939013
+0.32131267
+-0.02817285
+-0.70515496
+-0.23809314
+0.27029431
+0.59149837
+0.93218839
+-0.51932073
+0.43182361
+-0.85603869
+-0.18327717
+0.44903511
+-0.95279075
+-0.73539889
+0.55596344
+0.61990675
+0.58479561
+0.69253726
+0.44014016
+0.22229075
+0.47823934
+0.10872662
+-0.21066432
+-0.46064514
+0.33486983
+-0.70526469
+-0.69017609
+-0.85904073
+-0.47955399
+-0.26199460
+0.42465260
+0.02700561
+-0.36051228
+-0.33111942
+0.70601873
+-0.39850506
+0.69971599
+0.36819286
+-0.73644608
+0.02977353
+0.68988957
+-0.94651226
+-0.76298668
+-0.62362382
+-0.18135221
+-0.06170324
+0.82373335
+-0.27839743
+0.98408249
+0.12437248
+-0.34864414
+-0.46945119
+-0.96966478
+-0.42375910
+0.66487467
+0.55607283
+0.72484434
+0.48986113
+0.28265333
+0.39646268
+-0.71340641
+0.27107084
+0.89860928
+0.24764442
+-0.33418423
+0.15383673
+-0.91994388
+-0.59767053
+0.34089208
+0.85471606
+0.37864554
+0.49343169
+0.87432742
+0.24869502
+-0.97352165
+-0.30525398
+-0.95026007
+0.19764245
+0.31697166
+0.02281368
+-0.59511298
+0.16353822
+0.70896184
+-0.61803830
+-0.88154990
+-0.70104113
+-0.82295121
+0.21308422
+-0.89281416
+-0.77499068
+-0.91045038
+0.72345400
+0.30697751
+-0.87415767
+0.19018781
+0.24047875
+-0.83955337
+-0.48479885
+0.86469042
+-0.58569488
+0.14492130
+-0.46382976
+-0.36523408
+0.71903372
+-0.39744836
+-0.98940823
+0.61411655
+0.98191452
+-0.44954407
+-0.28519046
+-0.47091949
+0.89992142
+-0.03101921
+-0.46234167
+0.80273354
+0.02507424
+-0.01748431
+0.40109360
+0.33736408
+-0.84127927
+-0.33776838
+0.52529800
+0.00071394
+0.86210632
+0.50414872
+-0.67185822
+-0.14857006
+0.05148995
+-0.99427171
+0.84423423
+0.14896393
+0.27062821
+-0.47457206
+0.79913449
+0.61352587
+-0.63745701
+-0.20557743
+0.36045277
+0.23353577
+0.74613225
+0.85646951
+-0.11987400
+0.94381487
+0.24436736
+-0.26653469
+0.96772289
+-0.87147382
+0.56706345
+0.12245512
+0.27918005
+0.72234130
+0.85472131
+-0.88621956
+0.12807477
+0.99399257
+-0.88597521
+0.45669031
+-0.11385977
+0.15172529
+0.19018209
+-0.28976172
+-0.57558876
+0.75701630
+0.95965791
+0.44447851
+0.02814233
+0.24139297
+0.87112367
+0.40061438
+-0.36240184
+0.33430314
+0.58833623
+-0.06370926
+0.53797603
+0.26160276
+-0.70042986
+0.82456148
+0.92662120
+0.10909295
+0.63238382
+0.93897426
+0.13932562
+0.96717119
+0.96752822
+-0.10977584
+0.59549856
+0.09237182
+-0.53009278
+-0.06385911
+-0.38179821
+0.62617564
+-0.61526713
+-0.29012996
+-0.72311094
+-0.38697284
+0.49411511
+-0.05117697
+0.35843933
+-0.73724720
+0.49925208
+0.22608268
+-0.24891800
+0.02062154
+-0.98209286
+-0.48757720
+0.84134293
+0.49196160
+0.15785515
+0.65915632
+0.05352294
+-0.09890682
+0.49645078
+-0.70611948
+-0.57063365
+0.17908549
+-0.72322714
+0.73646188
+0.64995086
+0.61550319
+0.02185690
+0.57580543
+0.23657703
+0.43838120
+0.39296353
+-0.57619029
+-0.05329943
+-0.92574480
+-0.70116559
+0.66306269
+-0.45920223
+0.96381640
+0.53012657
+-0.61409402
+-0.41415805
+-0.07570630
+-0.72227687
+0.48698616
+-0.71573088
+0.08823276
+-0.28515589
+0.48242903
+-0.35469884
+-0.42089397
+0.67473710
+0.94000804
+0.13875461
+-0.97413727
+0.56358838
+-0.57794830
+0.23041701
+0.91473842
+-0.24681163
+0.37163031
+0.41752696
+0.93215704
+-0.75540747
+-0.54060370
+0.59068060
+0.52645767
+-0.46190304
+0.27809596
+-0.96522053
+0.20084560
+0.88408196
+-0.76185657
+-0.93948090
+0.28551865
+0.24935818
+0.33971643
+-0.34117123
+0.32645234
+0.08766210
+0.17685973
+-0.66248175
+0.20100428
+-0.02796158
+-0.87978802
+-0.21360024
+0.60339630
+-0.30296679
+-0.36770605
+-0.36665565
+-0.91383202
+-0.89287515
+0.56457646
+0.67457829
+-0.17595070
+0.44754191
+0.32341172
+0.30484364
+-0.68505751
+0.51344633
+-0.06197079
+-0.02369084
+0.74647183
+-0.99060476
+0.86818183
+-0.41048501
+-0.92138079
+0.25830935
+-0.56452833
+-0.94123543
+-0.30924847
+0.38922510
+0.35714943
+0.32056651
+0.09424412
+0.75629349
+-0.36670922
+-0.39442666
+0.54549910
+0.72483337
+0.66246448
+-0.17415275
+0.78410656
+0.74795757
+0.86455131
+0.53360410
+-0.48901795
+-0.42595257
+-0.36319844
+-0.46427649
+-0.76614047
+0.95208738
+-0.19658541
+-0.25389006
+-0.86520390
+0.45476575
+0.14255239
+0.38814102
+-0.18393444
+-0.18585229
+0.64754365
+-0.27985390
+-0.60391896
+-0.93142025
+-0.50283164
+0.60578247
+0.99115373
+0.74622832
+-0.01547591
+0.31739616
+0.21509586
+-0.26744583
+0.74957199
+-0.71382280
+-0.85923348
+-0.52313368
+0.55199088
+0.03845523
+-0.56251405
+-0.10058630
+-0.70887860
+0.83390746
+-0.69491549
+0.06708846
+-0.77450448
+0.80134316
+0.62496592
+0.57453154
+0.84141530
+-0.13583231
+-0.53361814
+-0.22931435
+-0.27487599
+-0.55402209
+-0.54561430
+-0.05829946
+0.14359607
+0.55052207
+0.74964692
+0.81288219
+-0.52929937
+-0.72190320
+-0.51279854
+-0.26029881
+0.42623353
+0.09378918
+0.59043146
+-0.02149840
+0.82661273
+0.27820754
+0.06788013
+-0.86558790
+0.50049717
+-0.85384621
+-0.36563819
+0.96504338
+0.67341889
+-0.88831591
+0.41197850
+0.79411352
+0.24124811
+-0.74026456
+-0.55483242
+0.74211131
+-0.62759343
+0.53081556
+0.03651620
+0.48560796
+0.75939418
+-0.13786328
+-0.69867395
+0.23523471
+-0.06764601
+-0.48798247
+-0.19773066
+0.32273706
+0.77930833
+0.75233958
+-0.27610700
+0.84976041
+0.04336045
+-0.86407017
+0.31906826
+0.62864755
+-0.24543136
+0.39721842
+0.66621603
+0.33867921
+-0.74428591
+-0.96776687
+0.55798452
+0.74050090
+-0.82833955
+-0.57896490
+0.58184884
+-0.18024031
+-0.73796474
+0.71342279
+0.47680123
+-0.37371272
+0.87059440
+0.57276986
+0.05970867
+0.53526028
+-0.43515521
+0.46608834
+0.30089630
+0.08615496
+0.73057163
+0.66316724
+0.66542757
+0.77681909
+-0.60008080
+0.64629200
+-0.37650684
+0.64752335
+-0.91828852
+0.48382356
+-0.41346705
+-0.40103412
+0.30506134
+-0.98899681
+-0.28759814
+0.89144082
+-0.77740837
+0.15589725
+0.37950923
+-0.81446332
+-0.39648734
+-0.72482979
+0.74574961
+0.45432954
+0.04029906
+0.00326653
+-0.09886789
+0.12833483
+0.23142922
+-0.61891674
+-0.53401576
+0.85970962
+-0.28308610
+0.50878811
+-0.21044700
+-0.89761460
+-0.14968798
+-0.56021918
+0.23357701
+-0.33128713
+0.96898956
+0.38233048
+-0.94327730
+0.63838261
+0.77202492
+0.48132762
+-0.96917742
+-0.73958442
+0.62492422
+-0.87638306
+-0.75098937
+-0.85676534
+-0.54314013
+-0.81050313
+-0.29053605
+-0.86633848
+-0.68306927
+-0.95919226
+0.07479516
+-0.69451867
+0.49416141
+-0.71127117
+-0.19384503
+-0.20127893
+0.17446647
+0.78520286
+0.06767118
+0.22319931
+-0.78904614
+0.01925828
+0.49211152
+-0.66479638
+0.80050950
+0.80218166
+-0.93308650
+0.58279046
+0.12508400
+-0.36619286
+0.93954006
+0.36624972
+0.67282210
+0.95707309
+0.62224688
+0.41783249
+-0.73848706
+-0.23978741
+-0.87136181
+0.68237863
+0.60151982
+-0.57724981
+0.68620990
+0.05154538
+-0.37569938
+0.02136648
+0.88802052
+0.93201928
+-0.21195570
+0.35789762
+-0.02379274
+0.21842090
+0.58662210
+0.19626939
+-0.99183588
+0.35436833
+-0.26282280
+0.51537841
+0.87427476
+-0.48673858
+0.80115152
+0.74284677
+0.68908797
+-0.43801671
+-0.96939103
+-0.41384697
+-0.56696876
+-0.48955036
+-0.44471738
+0.84451161
+-0.03301239
+-0.46097668
+0.72342978
+0.08890319
+-0.59853456
+-0.81099211
+-0.07824402
+0.18066709
+-0.74023354
+-0.40841885
+0.37540114
+0.71941356
+-0.83758502
+-0.37386960
+-0.46997038
+-0.28513563
+0.26436938
+-0.31802441
+0.53363421
+-0.36037226
+-0.54500109
+0.34816102
+0.49866675
+-0.07203311
+-0.80743641
+-0.86680697
+0.04559518
+0.87331705
+-0.29437551
+0.09305857
+-0.34876227
+0.48667864
+0.33381735
+-0.06134564
+-0.87510688
+0.14817071
+0.19834186
+-0.86121141
+-0.68076638
+0.11039244
+-0.48290217
+0.55357949
+0.07722019
+-0.09645271
+-0.66209788
+0.52736926
+0.50327683
+-0.61671008
+0.39651814
+0.66014622
+0.08593702
+0.28718178
+-0.31482257
+-0.24086070
+-0.92294963
+-0.18645871
+-0.41531318
+0.47443109
+0.82601454
+0.16370378
+0.16908646
+0.23658339
+-0.96990654
+0.77001023
+-0.62441549
+-0.78068973
+-0.56482114
+0.09984844
+-0.16701743
+0.13580571
+0.09055388
+0.20071224
+-0.57335027
+-0.52737507
+-0.15807865
+0.26365721
+0.76397658
+0.39503710
+-0.79948008
+0.50704406
+0.12900996
+-0.63264259
+-0.11601992
+-0.13563913
+-0.64896951
+0.19329309
+0.74848331
+-0.39585025
+-0.40804449
+-0.88718993
+0.26466966
+0.18410997
+-0.57740493
+0.79956520
+-0.05966530
+-0.39449739
+0.75452305
+-0.31942982
+0.16848638
+-0.58171172
+0.71142280
+-0.68451606
+-0.22219165
+0.90117812
+0.25020912
+-0.75782998
+0.48035563
+0.37564116
+0.26847949
+-0.92122242
+0.49573565
+-0.94507663
+0.07389019
+-0.33231127
+-0.94443825
+0.05307126
+-0.15380990
+-0.01582927
+-0.95483386
+-0.20823510
+-0.94513953
+-0.67846080
+0.78358744
+0.79015672
+-0.08660827
+-0.76976614
+-0.41738640
+-0.57002554
+0.30787935
+0.30282007
+0.26913428
+-0.38085361
+-0.03060635
+-0.93587656
+0.84971371
+0.70656717
+-0.96469302
+0.73936002
+-0.42649231
+-0.26228376
+-0.08453309
+0.17052905
+-0.44811024
+0.09517753
+0.04756441
+0.35297084
+0.89671660
+-0.13557513
+0.91352573
+0.00412975
+-0.69277206
+0.13085035
+0.92411715
+-0.77185248
+-0.07801904
+-0.55541012
+0.20036495
+-0.27157106
+-0.80052985
+-0.34238943
+0.39619231
+0.94197466
+0.09923750
+-0.38012576
+0.63531242
+0.47710073
+-0.69619301
+0.77544520
+0.43539468
+0.44001959
+0.02603233
+-0.86396050
+0.91620398
+-0.50979114
+-0.97385158
+0.52026033
+0.44742036
+-0.16675019
+0.64716649
+-0.21739489
+-0.28745115
+-0.93816368
+-0.26833284
+-0.69911653
+0.33219934
+-0.75934203
+-0.90547705
+-0.06545812
+-0.82346407
+-0.23419917
+-0.43526202
+-0.28606617
+0.41685021
+-0.88825512
+-0.35948426
+0.38750303
+0.73829186
+-0.65811703
+0.04249454
+0.63693058
+0.69085979
+0.67309225
+0.46993613
+0.40572536
+-0.32528234
+0.02371395
+-0.80964874
+0.98723316
+-0.76325281
+0.74426758
+-0.56248641
+0.82945633
+-0.48073703
+0.60949636
+-0.46569043
+-0.15028083
+0.97213745
+0.45385778
+-0.21817094
+0.84162331
+-0.35427606
+-0.76366758
+-0.62486923
+0.57898140
+-0.86868785
+-0.56252858
+-0.06359577
+-0.48305839
+0.29942441
+0.97024989
+-0.52595887
+0.78210711
+-0.16393375
+-0.54346433
+-0.42604065
+0.69527018
+-0.76228985
+0.20513010
+-0.32059985
+-0.89089140
+0.20321250
+0.49608457
+-0.44571023
+-0.49029676
+0.64762078
+0.56885695
+-0.00167787
+0.06101987
+-0.70699953
+-0.64946407
+0.76975028
+-0.36380309
+0.12176717
+-0.65768254
+0.24601351
+0.92128670
+-0.19551545
+0.01198546
+-0.26772223
+0.96732950
+0.07013331
+-0.51679674
+0.61463638
+-0.88260235
+0.01532726
+-0.02121085
+-0.99886059
+-0.51325826
+-0.51935714
+0.25960720
+-0.65190470
+0.17541766
+0.86078417
+-0.99090936
+-0.31615621
+-0.57865983
+-0.30065519
+0.41206431
+0.83920527
+-0.30577689
+-0.00587618
+-0.12206603
+0.46859066
+0.80720389
+0.09003157
+-0.13932765
+0.23171612
+-0.81838891
+0.30015043
+0.87621906
+-0.10120427
+0.75336963
+0.50600245
+-0.14576042
+-0.61001801
+-0.73734483
+-0.32707341
+0.94435403
+0.77132894
+0.92277117
+-0.48826763
+0.78092521
+0.84797003
+0.09253985
+-0.33433732
+-0.56603909
+-0.42255671
+0.18501314
+0.54819800
+-0.72432323
+0.97455958
+0.23947203
+0.10509586
+-0.16676784
+0.98454475
+0.30344009
+0.86340797
+0.79059815
+0.40330589
+-0.19061941
+-0.65591624
+-0.95975988
+-0.66552326
+-0.86996377
+0.48559201
+-0.63012028
+-0.14994437
+-0.70502388
+0.37763011
+-0.34464473
+-0.93113068
+0.65371644
+0.90289342
+0.92393768
+0.35617602
+-0.26317525
+0.61624241
+0.78725135
+-0.77545802
+-0.52811778
+-0.22162306
+-0.24894607
+-0.50102973
+0.90647924
+-0.39037979
+0.14163387
+-0.84552190
+-0.61113337
+-0.58577758
+0.78436756
+-0.64554501
+0.34091043
+-0.83256914
+0.01463652
+0.74647260
+-0.96093501
+0.21156073
+-0.98946098
+-0.40940195
+0.46652770
+0.69635069
+-0.63084728
+0.84536350
+0.70642114
+-0.18894541
+-0.76283427
+-0.33740878
+-0.81855389
+-0.97143656
+-0.51934510
+-0.39395028
+-0.57044283
+0.52413619
+0.53919768
+0.41235137
+0.67293048
+0.70900381
+-0.58452314
+-0.09964484
+0.85658526
+-0.68804270
+-0.67795348
+0.80164278
+-0.75601821
+0.77532613
+-0.25400436
+0.23987937
+-0.51778445
+0.40143573
+-0.80727029
+0.74767208
+-0.01590687
+0.55947137
+-0.07264668
+0.96360421
+-0.73728010
+-0.84561130
+-0.71053693
+-0.98398787
+0.89186263
+-0.59985474
+0.31098604
+0.07635784
+-0.73396075
+0.07337260
+-0.96372029
+-0.93248834
+-0.85596383
+-0.11541092
+0.37417507
+-0.63305023
+0.93632400
+-0.61169949
+0.75284350
+-0.10280848
+-0.43433887
+0.99339235
+-0.19332451
+-0.31028050
+0.45755517
+-0.00200832
+-0.49484575
+0.87727284
+-0.93487322
+0.63171351
+-0.16610152
+-0.70332238
+0.62228525
+-0.16683418
+0.51693213
+-0.34237987
+-0.26576149
+-0.14933127
+0.13123715
+-0.71078843
+-0.35994536
+-0.32420766
+0.69333923
+0.31507015
+0.76934481
+-0.54172045
+0.65487564
+0.71831453
+0.96369147
+-0.54839694
+0.07444692
+-0.61999717
+0.72884023
+-0.15461951
+0.32268441
+-0.37182218
+-0.20413333
+-0.11598575
+0.02365255
+0.32982659
+0.84968948
+-0.57863531
+0.84880805
+-0.68625623
+-0.59156024
+0.67184877
+-0.32011098
+-0.02096409
+-0.63228181
+0.68594360
+0.50951648
+-0.40231234
+0.72542799
+-0.85355090
+0.92120230
+0.58344293
+0.21824699
+-0.35465590
+-0.09910184
+-0.91429682
+-0.09212977
+-0.78070685
+0.85564014
+-0.56408171
+-0.64006810
+0.90803412
+-0.34622658
+0.76851811
+-0.16212696
+0.69166580
+0.16254407
+0.75191919
+0.23893639
+0.18116416
+-0.00660019
+0.77890662
+-0.61374447
+0.47196317
+-0.93530186
+-0.63771579
+0.23620832
+-0.50641024
+0.92311931
+0.36889362
+0.35639262
+-0.66778782
+0.56175625
+-0.19172835
+0.60317206
+0.92735291
+0.85183597
+-0.40386218
+0.43967927
+0.04237318
+0.38552403
+0.33309627
+0.22067308
+-0.29210418
+-0.75326067
+0.83528769
+-0.03891325
+0.34632599
+-0.20852196
+-0.41146106
+0.63365507
+0.14368916
+-0.93569170
+-0.09252471
+-0.29811251
+0.10644841
+0.44708300
+-0.75285730
+0.71092105
+0.16697204
+0.96492660
+-0.83151251
+-0.08621275
+0.73020577
+0.30241311
+-0.70605370
+-0.50337914
+-0.21219671
+0.29643035
+-0.96460457
+-0.23399580
+0.53648639
+-0.73419920
+-0.32845801
+-0.35052389
+0.47591603
+0.82684338
+0.70987964
+0.79528010
+-0.08121133
+-0.21198034
+0.98514891
+-0.05166578
+0.74754155
+0.90628922
+-0.41173828
+0.14240432
+-0.64892846
+-0.66293913
+-0.19686884
+-0.02713031
+0.06987488
+-0.40022045
+0.31502867
+0.18610692
+0.93038833
+-0.10933203
+0.70074260
+-0.49469209
+-0.11045736
+0.99304605
+0.89571965
+0.39940238
+0.51164222
+-0.87302551
+-0.23320496
+0.79069924
+0.29656529
+0.87006426
+-0.68451950
+-0.78113927
+-0.63395524
+-0.94623381
+0.84067166
+0.73703074
+0.79814351
+-0.16982794
+-0.25549179
+-0.58581445
+0.43014610
+0.16731930
+-0.82836421
+-0.86688726
+-0.33013541
+-0.41278154
+0.71154702
+-0.79083283
+-0.74508917
+0.27838039
+0.81696403
+-0.79993522
+0.36001599
+0.98672462
+0.13732982
+0.14949322
+0.35777831
+-0.78637198
+-0.91050120
+0.67506909
+-0.40206707
+-0.96319371
+0.80036438
+0.76971090
+-0.39367861
+0.11055255
+-0.53057396
+-0.91665750
+0.94614291
+0.87953269
+0.77587998
+0.64503860
+0.95004916
+-0.84466201
+0.77865934
+-0.40310222
+-0.93329795
+-0.27481169
+0.36181736
+-0.47305363
+0.80132711
+-0.77658558
+0.19595075
+0.37539470
+-0.26881975
+-0.78053677
+-0.23182684
+0.84032190
+-0.09676695
+0.55965400
+-0.44547969
+-0.00891161
+-0.52113613
+0.95489323
+0.48627365
+-0.58148304
+-0.85051174
+0.96217525
+0.92891288
+0.12096083
+-0.72386521
+0.94934320
+0.29816818
+-0.32580906
+-0.66950294
+-0.94155475
+0.02288175
+0.79680312
+0.29574049
+0.39835107
+-0.41503751
+0.72291791
+-0.43242359
+-0.87037253
+0.02957439
+-0.09249091
+-0.26513416
+0.78960454
+0.75610602
+-0.97414705
+0.52087474
+0.78823507
+0.15336502
+0.46482527
+0.73233557
+0.45091319
+0.33592439
+-0.64693123
+0.70042717
+0.36743701
+-0.50728309
+0.18189383
+0.37899256
+0.70485699
+-0.03559053
+0.45183575
+-0.49076414
+0.40782237
+0.15662038
+0.23806560
+-0.26610422
+-0.73742965
+-0.19428515
+0.92552793
+-0.99952659
+0.88093436
+0.63457644
+0.59240365
+0.51127923
+0.67028034
+0.25366533
+0.97608531
+0.56943130
+0.72241223
+-0.16290730
+-0.42414081
+0.22202253
+0.54871356
+0.95466745
+-0.47072709
+-0.21376455
+-0.86904536
+0.77322030
+0.77746749
+-0.91254364
+0.48320997
+0.45896649
+0.54819965
+0.25152457
+-0.97450943
+-0.13686043
+-0.49695182
+-0.79066306
+0.48016040
+0.00962099
+0.93593979
+-0.72196574
+0.70038267
+0.75036354
+0.20289063
+0.29512568
+-0.80241969
+-0.84297099
+0.81091640
+0.31373812
+-0.11975962
+0.91883562
+0.95510588
+0.68546088
+-0.34790083
+-0.13504922
+0.13014110
+-0.49078594
+-0.12375470
+0.39089335
+0.78233397
+-0.15396293
+0.87938938
+-0.08877741
+-0.22082814
+-0.14037424
+-0.37373917
+-0.36299627
+0.66380284
+0.14062227
+0.98745298
+0.44738791
+-0.70399564
+-0.73815589
+0.41109977
+0.88046670
+-0.83508137
+0.05241193
+-0.59208455
+-0.87416561
+0.79810762
+0.55917631
+0.37298868
+-0.87602788
+0.72763763
+-0.91404167
+0.83278437
+-0.12068008
+-0.03335603
+0.39947392
+-0.84514345
+0.84282229
+-0.68463054
+0.77233262
+0.26625214
+-0.16146391
+-0.85675684
+-0.50337430
+0.26424692
+-0.42758630
+-0.31601924
+-0.20784863
+0.87533221
+-0.43017178
+0.93351529
+0.51000440
+-0.22561250
+0.34388710
+-0.96494531
+-0.26990049
+-0.34613729
+0.47221074
+0.15205238
+0.49751849
+-0.91158913
+0.86596894
+0.01533093
+-0.05052452
+0.32472263
+0.28315796
+-0.58974087
+-0.88903621
+0.58323870
+-0.54001896
+-0.01503356
+0.79135406
+-0.53219642
+-0.08827089
+-0.35720827
+0.61052848
+-0.93776894
+0.08469639
+0.62213752
+0.16284950
+-0.96392329
+0.95244181
+0.44286259
+0.19399239
+0.37701080
+0.48984744
+-0.30278516
+0.69891951
+0.15104351
+-0.41667806
+0.65009747
+0.41230464
+0.70152970
+0.93112351
+0.51683245
+0.19904639
+0.04582596
+-0.28509965
+0.04770897
+0.72809811
+0.74200843
+0.61773002
+0.61988302
+0.33903242
+0.75330267
+-0.44512127
+-0.20254672
+-0.73224126
+-0.82225653
+0.24133284
+0.23562429
+-1.01641162
+0.17133172
+-0.31344514
+0.44816039
+0.75778378
+-0.39070654
+0.01577554
+-0.87920313
+0.28339906
+-0.63164513
+-0.91826244
+-0.59547384
+-0.58286052
+-0.36732914
+0.25326861
+0.87089801
+0.41454862
+0.58691058
+0.45609100
+0.45646427
+0.70116425
+0.92062171
+-0.44069772
+0.76397346
+0.74798168
+0.92337501
+-0.86126918
+-0.72255486
+-0.70824673
+0.01036654
+0.87890160
+0.62255498
+-0.00270848
+0.17954515
+0.19750473
+0.28602266
+0.86475045
+-0.40527203
+-0.69251670
+0.29804332
+-0.88210329
+0.39949708
+0.06226076
+-0.05250101
+0.48028693
+-0.60121790
+0.14144866
+0.84642146
+-0.69466524
+-0.94219328
+-0.25190159
+-0.70558828
+-0.35744433
+-0.29708732
+-0.81129688
+-0.26686186
+-0.38496319
+-0.24122535
+0.35885544
+-0.34792950
+0.74366601
+-0.57952374
+0.80131830
+0.94604306
+0.54904710
+-0.31124163
+-0.31173608
+0.79462063
+0.91369403
+-0.58999128
+0.70358768
+-0.20790549
+-0.17881870
+-0.16357391
+-0.33533882
+-0.48205495
+-0.37663163
+-0.14405430
+0.89861959
+-0.58961118
+0.44416089
+-0.99507742
+0.91761771
+0.99726464
+-0.57596310
+0.58826989
+0.87649421
+0.66484540
+-0.79689109
+-0.43286828
+-0.56286420
+-0.38076840
+-0.46238097
+0.29093541
+-0.13764875
+-0.52473381
+0.76824169
+-0.38539189
+-0.27796335
+0.27922376
+-0.30342864
+0.89574166
+0.37187890
+0.63475730
+0.66373463
+-0.84379841
+-0.64934100
+-0.88328387
+-0.43451209
+0.01820465
+0.43474264
+0.32743939
+0.77659658
+-0.15482052
+0.89087342
+0.03106964
+-0.54592592
+0.81760323
+-0.78181387
+0.24120896
+-0.56310985
+0.65791748
+-0.05044031
+-0.69807055
+0.83844398
+-0.77551940
+0.21310725
+0.93744969
+-0.62825148
+0.36719351
+0.21819833
+0.17551754
+-0.21044415
+-0.20102109
+-0.62937163
+-0.87866823
+-0.90412051
+-0.47727507
+-0.54146888
+-0.01869638
+-0.31300953
+0.27298187
+-0.70721611
+0.45227186
+0.52398525
+0.30745173
+-0.09826712
+-0.98853247
+0.05837000
+-0.71735300
+0.98816219
+0.45301746
+-0.69143709
+-0.28491505
+-0.16002526
+-0.76652658
+-0.36156104
+0.78502405
+-0.54981433
+0.71995120
+-0.59499970
+0.28516053
+-0.54352936
+0.28000550
+-0.08479567
+0.49731874
+0.42518630
+-0.29648155
+-0.39674549
+0.15262573
+0.40575376
+-0.23989172
+0.67249644
+0.52544312
+-0.34549321
+0.36286771
+0.94759180
+-0.44908416
+0.86699940
+-0.10363711
+0.90031614
+0.00283883
+0.05113423
+0.23155622
+-0.72606032
+-0.35413533
+-0.56354512
+-0.84120159
+-0.25069111
+-0.23999328
+0.36141851
+0.45938180
+0.93732488
+-0.28197737
+-0.46741505
+0.38829505
+-0.00592551
+0.37270653
+0.94158245
+0.55629449
+0.43554654
+-0.53122820
+-0.90248106
+-0.05120279
+-0.79408585
+-0.54129967
+0.45690110
+0.23042727
+-0.27856117
+-0.51743726
+0.12908652
+0.91284083
+-0.73100400
+-0.69980364
+-0.97977617
+0.71065211
+-0.25745086
+-0.80338435
+-0.40057920
+-0.67717964
+0.31542232
+-0.59451272
+-0.00122291
+0.20453541
+-0.66776742
+0.13681459
+0.06566396
+-0.67500731
+-0.19142305
+0.89049428
+0.94847157
+-0.94543891
+0.56143463
+-0.87605491
+0.61030482
+-0.57889748
+-0.29579631
+-0.30650032
+0.00669218
+0.08260851
+-0.74113352
+0.43771933
+-0.15745121
+-0.25752731
+0.59844290
+0.06327844
+-0.22781352
+0.47790027
+-0.97560581
+-0.06405641
+0.70883312
+0.53061055
+0.09877074
+-0.06745239
+0.88528751
+-0.26127476
+0.40810432
+-0.69613698
+-0.95602555
+-0.14775426
+0.89408603
+0.58257757
+0.47268391
+0.69317440
+-0.25577302
+-0.20179009
+0.27887311
+0.50860822
+0.55842925
+-0.72033195
+-0.66278181
+0.79272626
+0.46444345
+0.14961318
+-0.44707455
+-0.94022370
+0.93493881
+0.69477928
+0.21326865
+-0.79102469
+-0.30385235
+0.51554142
+-0.31288236
+0.65852741
+-0.92038169
+-0.27940589
+-0.77104179
+-0.86678717
+-0.06598364
+0.12801509
+0.63656595
+-0.90544929
+0.54052651
+0.39148720
+0.70546271
+-0.59864154
+0.22177192
+0.40412092
+0.32358242
+0.38335259
+-0.81190962
+-0.00599066
+-0.95832527
+-0.80523992
+0.92530352
+0.17459083
+0.33609329
+0.16666830
+-0.47073227
+-0.92866177
+0.84998023
+0.27667074
+-0.89801367
+-0.86011296
+0.95843031
+-0.74630284
+0.82112093
+0.33609629
+-0.31044996
+-0.55952593
+0.90436563
+-0.83161201
+0.84092367
+0.32338047
+-0.30009282
+-0.91621552
+0.38851714
+-0.20597827
+-0.19956839
+0.60174108
+0.08184433
+0.27754235
+0.10060334
+0.67603493
+0.62474930
+0.21084619
+0.85675752
+0.71787632
+0.89361465
+0.99608266
+0.00637603
+-0.56628650
+-0.43404084
+-0.81571361
+0.46082056
+0.71249795
+0.29407346
+-0.71754599
+-0.47837836
+-0.84514011
+0.77762401
+-0.27637476
+0.70968723
+-0.81836122
+0.41483903
+0.83485448
+-0.43732280
+0.67592108
+0.05627441
+-0.55981714
+-0.13214195
+-0.91782715
+0.24791181
+0.59944189
+-0.57854769
+0.90635300
+0.66278934
+-0.99028087
+-0.91103797
+0.35161555
+-0.51009330
+0.98428833
+0.67299461
+-0.21989900
+0.99662578
+0.31910360
+0.41441500
+-0.13025433
+-0.34687948
+-0.33617711
+0.65576756
+0.35558367
+0.57260764
+-0.42707580
+0.14943719
+-0.19059420
+-0.93242554
+-0.66268843
+-0.66279122
+-0.61445490
+0.16107655
+0.40513062
+-0.26429659
+-0.09786057
+-0.18098301
+0.33746886
+0.76131368
+-0.18109655
+-0.26608980
+-0.91633646
+-0.07514912
+-0.85729630
+0.81160915
+0.60966432
+0.41712081
+-0.65607303
+-0.53393155
+-0.30304903
+-0.83565211
+-0.57041132
+0.43800974
+0.50840867
+-0.11636138
+0.03437889
+0.99974608
+-0.55528921
+0.87982285
+0.33323395
+0.55170119
+-0.26776725
+-0.14078033
+-0.82474923
+0.37590313
+-0.21389747
+-0.00578052
+-0.56371248
+-0.43720168
+0.35476565
+-0.65504450
+-0.06347573
+-0.37614548
+0.04559910
+0.51172435
+-0.60788384
+0.81400718
+-0.35537803
+0.48032704
+-0.98857741
+0.30605845
+0.60473320
+0.02979364
+0.97273297
+0.53327278
+0.84821158
+-0.61613087
+-0.72382831
+0.81272725
+-0.62792021
+-0.31647714
+-0.01723668
+-0.72539590
+-0.23158138
+-0.46538081
+-0.69747588
+0.35393514
+-0.31654763
+-0.99842386
+-0.05614668
+-0.41387554
+-0.31089333
+-0.09600131
+-0.20220261
+0.99055425
+0.30149954
+-0.05197040
+-0.32832777
+-0.08446052
+-0.85651742
+0.14894037
+-0.71460819
+-0.01504539
+-0.24938320
+0.38025895
+-0.10313952
+-0.28428876
+-0.82332006
+0.66064906
+-0.86208950
+-0.13650078
+-0.36049104
+0.98246205
+-0.42368245
+0.54825389
+0.44532990
+0.75129163
+-0.01461089
+0.83868146
+-0.90525864
+-0.91730340
+0.83979034
+-0.03928363
+-0.28512406
+0.44586265
+0.38116789
+0.11053562
+-0.16945291
+-0.85322073
+-0.64946404
+-0.01503617
+-0.68556452
+0.98420906
+0.68779218
+-0.33338159
+-0.01509511
+0.84338844
+-0.82701023
+-0.85073289
+0.78811193
+-0.33461225
+-0.00709575
+0.63699913
+-0.01596242
+-0.07413554
+0.24313533
+0.52225006
+-0.11000806
+-0.75239699
+0.81027174
+-0.30052286
+-0.12412763
+-0.73623872
+0.94046187
+0.04285336
+0.42841506
+-0.79871368
+0.67243588
+0.34152949
+0.37185740
+-0.90748743
+-0.42145079
+-0.62626293
+0.93179202
+-0.85765783
+-0.40255725
+0.91984463
+0.89185810
+0.02530825
+-0.20834678
+0.03150046
+-0.43004984
+0.57715321
+-0.05275452
+-0.75325181
+-0.34937000
+-0.64621383
+-0.58947980
+0.21128869
+0.26707399
+-0.09517765
+0.51361513
+0.80183351
+0.19378722
+-0.53413826
+0.43187892
+0.02864063
+-0.01660347
+-0.42386281
+0.51603484
+-0.50824860
+-0.82263130
+0.40095985
+0.45026827
+-0.49303287
+0.99122477
+0.54364574
+-0.25460494
+-0.96098264
+-0.95060509
+-0.28768456
+0.24743545
+0.04854298
+-0.61730847
+0.92421496
+0.43333435
+0.23101926
+0.17392039
+0.71620131
+0.73100722
+0.37592089
+-0.21552581
+0.49888349
+0.56748545
+-0.29820991
+-0.13149536
+0.19206393
+-0.79201825
+0.97435677
+0.50646830
+-0.71834579
+0.08005583
+0.21698523
+0.37021053
+-0.40155077
+-0.93965103
+-0.46680582
+-0.60627818
+-0.79838480
+0.06020010
+0.63593554
+-0.02713513
+-0.10180891
+-0.89266425
+0.52944350
+-0.70173249
+0.28793299
+0.55694723
+0.19316268
+-0.47669905
+-0.18514937
+0.41520119
+0.56505942
+-0.45981485
+-0.19574636
+0.62850082
+-0.14337558
+0.24574113
+0.89216197
+-0.18161041
+-0.17613024
+-0.49056906
+-0.23326212
+0.12757719
+0.43680370
+-0.31004304
+-0.38355297
+0.36075306
+-0.64032632
+0.51822186
+-0.49080074
+0.49214661
+-0.94552913
+0.21665728
+-0.34457070
+-0.24426472
+0.17100453
+-0.08131963
+0.30373454
+0.96600163
+0.68235826
+-0.57638127
+0.67174613
+-0.27714801
+0.51395607
+0.33134937
+-0.81825288
+0.22221720
+0.82513058
+0.40722764
+0.99543810
+-0.08689159
+0.20252287
+-0.30472928
+0.11239719
+0.47343314
+-0.10551333
+0.68082845
+-0.72565582
+0.20514250
+-0.52723518
+-0.94169039
+-0.90653265
+0.04185915
+-0.55476576
+-0.22228497
+-0.77772550
+-0.85546775
+-0.95686974
+0.97299922
+-0.60528445
+-0.77360108
+0.14945912
+0.65686882
+-0.42105454
+-0.78154099
+0.96665299
+0.53362250
+-0.68879595
+-0.28526813
+0.25154495
+0.92011225
+0.36288297
+0.95214438
+0.11990881
+0.47365224
+0.00371325
+0.92587364
+0.69807005
+0.43273795
+0.76861155
+0.57126033
+-0.84128168
+0.59938192
+0.90348935
+0.11347365
+-0.91291376
+-0.57830653
+-0.23071861
+-0.82181992
+-0.86119348
+0.98477864
+0.91423464
+0.47505808
+0.62151420
+0.26102054
+0.27155030
+-0.34554785
+0.84504962
+0.01599753
+0.21007967
+-0.91985460
+-0.86043131
+0.15228987
+-0.58435169
+0.64921653
+-0.15045506
+-0.71811688
+0.46076548
+0.36962807
+-0.39312917
+0.08918464
+0.83656001
+0.93515015
+0.88878238
+-0.25194257
+0.55147910
+0.04528546
+0.13753557
+0.98785675
+0.22028351
+-0.90030833
+0.26398861
+-0.59937704
+-0.01427925
+0.11215961
+0.09486222
+0.55076230
+-0.42859888
+-0.21328205
+-0.60661700
+0.23692632
+-0.34555215
+0.02172935
+0.01482093
+0.47259033
+0.24020016
+0.93033373
+0.03803205
+0.43314075
+0.71052682
+-0.83886141
+-0.30611634
+0.84821081
+-0.87107556
+-0.54925349
+-0.99067198
+0.60182714
+0.55379272
+-0.02135956
+-0.91998254
+-0.56868431
+-0.27149272
+-0.44044924
+-0.10167515
+-0.27769607
+-0.79020092
+0.45041835
+-0.99824982
+-0.35898632
+-0.18323225
+-0.69634116
+-0.79405454
+0.81789148
+0.17417264
+0.57518637
+0.54746199
+-0.79772037
+-0.03308457
+0.41226852
+-0.86942591
+0.56916463
+0.23081672
+0.18927419
+0.10149670
+0.60874653
+-0.52446553
+0.79875016
+-0.16359156
+-0.38543797
+-0.43221092
+-0.10959899
+0.19126737
+-0.91380436
+0.25497293
+-0.99979001
+0.93034387
+-0.35018629
+0.04137409
+-0.40470409
+0.44732606
+0.06464851
+-0.58748204
+0.48178053
+-0.48877615
+-0.16149664
+0.60368347
+-0.20454168
+-0.82114226
+-0.80940032
+-0.41587222
+-0.45342237
+-0.35979640
+0.33243358
+0.07995272
+-0.84674512
+0.48407006
+-0.51756486
+0.11225092
+-0.27960551
+0.31604552
+0.32799315
+-0.20637804
+0.52990329
+0.39246225
+-0.38906366
+0.70995128
+-0.43509465
+0.30201304
+0.67756045
+0.98773813
+-0.39309424
+0.05206013
+-0.60066551
+0.67620635
+0.09421992
+0.90133178
+-0.85884708
+-0.11315447
+-0.18135971
+0.06782758
+-0.63089409
+-0.56547558
+-0.80059454
+0.16174996
+-0.67143863
+-0.34055078
+-0.84007341
+-0.55049348
+-0.49902797
+0.47952998
+-0.55993357
+-0.31497228
+-0.99243899
+0.91923594
+0.15318823
+0.55688500
+-0.72531968
+0.02580881
+0.73622465
+-0.73016775
+0.07654774
+0.04834664
+-0.22023863
+-0.80878772
+-0.20072567
+-0.12462306
+0.45951724
+-0.49503160
+0.11076748
+0.39080727
+0.80686462
+0.45755696
+-0.75965355
+0.50702453
+-0.19887155
+-0.97452723
+0.81907296
+-0.28179777
+0.66669321
+-0.97087901
+-0.01316714
+-0.29976350
+0.21045196
+-0.94399266
+0.44432184
+-0.66994758
+-0.97358243
+0.18491852
+0.61208497
+0.03357251
+-0.44126491
+-0.55115534
+0.77996830
+-0.42677218
+-0.17471423
+-0.63069089
+-0.54567799
+-0.05500700
+0.23322156
+-0.21444951
+-0.03486693
+0.27412003
+-0.19539200
+0.74478508
+-0.20326646
+-0.96514490
+-0.61826342
+0.36440657
+-0.79941130
+-0.02327960
+0.40809999
+0.92913795
+0.09661682
+-0.38416831
+0.69577501
+0.48069681
+0.56680417
+-0.85749221
+0.21408937
+0.43708892
+0.96602188
+-0.81754090
+-0.54603170
+-0.33001106
+0.67607806
+-0.01978742
+0.57378399
+0.63899563
+0.79921112
+0.83394523
+0.47449754
+-0.92880389
+0.60957833
+-0.98823578
+-0.80048131
+-0.49179880
+0.68274045
+-0.62863188
+-0.41180732
+0.45031972
+0.92648945
+0.58550954
+-0.78206616
+-0.31403177
+-0.16973956
+-0.76827960
+0.60508907
+0.50351642
+0.69215200
+-0.47507046
+-0.46850075
+-0.05542129
+-0.16366194
+-0.92477676
+-0.21577760
+0.32964696
+-0.55245054
+0.94358287
+-0.00756522
+-0.12415926
+0.79130040
+0.95292282
+0.44809552
+0.58821071
+0.24858997
+-0.71154545
+-0.64396179
+0.86970148
+-0.59501972
+-0.41941355
+0.91729389
+0.02760077
+-0.19618700
+0.08761526
+0.94072805
+-0.27186738
+-0.37155020
+-0.29748066
+-0.19854458
+-0.59080823
+-0.18256684
+0.23069537
+0.07738741
+-0.92865258
+-0.70261698
+-0.36122750
+-0.78593770
+-0.17637350
+-0.04791781
+-0.43615954
+-0.04809060
+-0.58459014
+0.39986630
+0.64505924
+0.89936970
+0.78156544
+-0.40045696
+-0.60853224
+-0.79948529
+-0.23426937
+-0.71186702
+-0.72658020
+0.76404985
+0.31029416
+-0.13904717
+-0.10010074
+-0.09013450
+-0.48902478
+0.90642784
+0.54305584
+0.12358747
+-0.11574989
+0.88287707
+0.35110010
+-0.21981748
+-0.22771744
+-0.93860359
+0.46292649
+-0.25643232
+0.72890277
+0.22814296
+-0.27554047
+0.62308641
+0.43523051
+-0.34865125
+-0.61715092
+0.56142855
+0.71824358
+0.89633570
+-0.09958254
+-0.29287126
+0.63958287
+0.56149216
+-0.34377478
+-0.17829480
+-0.78777164
+-0.54153094
+-0.15522107
+0.95014463
+-0.37968783
+-0.92849812
+0.75325585
+0.08742245
+0.52006770
+0.34281257
+-0.01656912
+0.79380775
+-0.88588098
+0.21585896
+-0.99960556
+-0.47546888
+-0.51996565
+-0.49721794
+0.09829761
+0.88197850
+0.23788329
+-0.90677582
+-0.82318444
+-0.82292564
+-0.01599565
+-0.79891539
+-0.63690413
+0.32418066
+-0.85209476
+-0.20510018
+-0.94906397
+-0.89895862
+0.26389500
+0.59769189
+0.90841425
+0.80832606
+0.49154692
+0.83917058
+0.63861394
+-0.97037607
+0.20724805
+0.52163553
+0.47453907
+-0.62636247
+0.56852425
+0.55215078
+0.25081684
+-1.00536437
+-0.19152403
+0.53671850
+-0.28403144
+-0.88667984
+0.12265973
+0.25298160
+0.95984428
+0.92020782
+-0.60031702
+0.94884904
+0.13658444
+0.85213007
+0.72531338
+-0.49161136
+0.13842134
+-0.45216000
+-0.33615810
+0.09256478
+-0.77027465
+0.13259765
+-0.68362769
+0.46399249
+-0.51338856
+0.28400451
+0.20578913
+0.63315266
+0.88132887
+0.19842490
+0.92063291
+-0.44994292
+-0.35292932
+-0.77060059
+-0.33778758
+0.50902772
+-0.55013070
+-0.50680616
+-0.03638410
+0.77479952
+-0.42899016
+0.71575068
+-0.45176333
+-0.00731202
+-0.45156957
+0.94204259
+-0.30394272
+0.87117636
+0.28412057
+-0.58174426
+0.89411643
+0.00304018
+-0.73253855
+0.50478284
+0.62299465
+-0.78002033
+0.02610745
+0.11085188
+0.83769942
+0.38743787
+0.93419471
+-0.53654747
+0.06319702
+0.78335969
+-0.27021004
+-0.18015599
+0.41567256
+-0.52950394
+-0.17051028
+0.85389559
+0.48372200
+-0.67379041
+0.47797740
+0.80563406
+-0.10626485
+-0.47056395
+-0.29476104
+-0.71787789
+-0.19786124
+-0.39041180
+-0.40072653
+0.45659576
+-0.13810170
+0.50574700
+0.73334358
+-0.85208645
+-0.16656039
+-0.01792544
+0.40103603
+-0.69582195
+-0.22370133
+0.78868280
+0.40772224
+-0.94584440
+0.78173040
+-0.70918566
+0.64348605
+-0.46702713
+0.96558083
+0.29268818
+1.00010493
+-0.02507831
+-0.00173044
+0.90445904
+0.33365963
+0.20116723
+0.45412209
+0.42238712
+-0.44558053
+0.95517283
+0.66945067
+-0.27190526
+-0.03536177
+-0.22322210
+-0.33039440
+0.10640454
+-0.55917675
+-0.62778005
+-0.40814500
+0.09143810
+-0.20665434
+-0.02677293
+-0.22659612
+-0.55173071
+0.65961300
+0.61365545
+-0.60424126
+0.63773060
+0.59662486
+0.08728044
+0.55508247
+-0.73243080
+0.02183426
+-0.14063843
+0.71942340
+0.48342264
+-0.84732243
+0.99429524
+0.54454542
+-0.60143338
+0.73070779
+0.14528631
+0.57717729
+-0.14690586
+-0.75186004
+0.34960926
+-0.82700937
+-0.26674205
+0.42631901
+0.96770387
+0.51749351
+0.71388195
+0.59054411
+-0.39267005
+-0.05231460
+-0.89674447
+0.54948606
+-0.05889547
+-0.77486876
+-0.97130386
+0.49108079
+-0.14032264
+0.94158268
+0.74635450
+0.97070752
+-0.15080565
+0.38124528
+-0.87204517
+0.18361653
+-0.96293169
+0.78403738
+0.19252585
+0.52765310
+-0.95000284
+0.50882850
+-0.57578808
+-0.55380116
+-0.76020201
+0.21737040
+-0.06907673
+0.30629542
+-0.39548685
+-0.42824143
+0.69198291
+-0.13059940
+-0.00503039
+-0.06546132
+0.60433662
+0.24799419
+-0.40102471
+0.46595516
+-0.96296322
+0.52997399
+-0.32366611
+-0.02293636
+0.41397250
+0.26613262
+0.62186325
+0.18987204
+0.77214437
+0.56535580
+0.91770385
+-0.71781716
+-0.67288627
+-0.70603432
+-0.99897956
+0.16584720
+-0.26632100
+-0.43632292
+-0.29840888
+-0.97881496
+0.13743339
+0.64802373
+0.02891283
+0.10381620
+-0.99932962
+0.07863908
+-0.19534624
+-0.96193233
+0.33566224
+0.02323387
+0.72432278
+0.44453967
+-0.68221371
+-0.92974965
+-0.38823152
+0.58184652
+-0.83061537
+-0.13389391
+0.10112187
+-0.85125118
+-0.93058712
+0.97301006
+-0.53097174
+-0.31207156
+0.99364972
+-0.01341009
+0.58210635
+0.90893459
+-0.50827974
+0.27861059
+0.62265301
+0.67947912
+-0.98894756
+-0.96864479
+-0.10809845
+0.56088459
+0.04345238
+-0.46968430
+0.67661190
+0.81732643
+-0.50145271
+0.18938959
+0.83892035
+0.45579290
+-0.79572819
+-0.60976517
+0.60685945
+0.29130626
+-0.21376967
+-0.02409643
+0.41257024
+-0.05555767
+0.31523979
+-0.02064121
+0.63599908
+-0.59176537
+0.75526977
+0.83794260
+-0.36705452
+-0.52647904
+0.58146608
+-0.84804571
+0.13890469
+0.39731514
+0.96184158
+-0.16402519
+0.08280969
+-0.93842866
+-0.45506549
+0.95058501
+-0.15745240
+0.30353630
+-0.40306985
+0.11248946
+0.12166440
+-0.31807178
+-0.97669483
+0.17320955
+-0.45823818
+-0.03509861
+-0.89704086
+0.49744129
+-0.28892678
+0.87973630
+-0.47060716
+-0.33366841
+-0.03303623
+0.69446778
+0.87301087
+-0.70355481
+-0.41115624
+0.15630639
+0.13486660
+0.76086640
+0.26795697
+-0.90933200
+-0.72340259
+-0.44011778
+-0.73515064
+0.95724761
+0.98847699
+0.90385568
+-0.27321541
+0.71997392
+-0.67771652
+0.41469407
+0.09128296
+-0.24283975
+-0.96182845
+-0.37118447
+0.12908196
+0.55765331
+-0.29776269
+0.60715592
+0.59385216
+0.81212842
+0.98835790
+-0.80326870
+-0.63535935
+-0.57479921
+0.39041185
+0.11727631
+0.33590305
+-0.11708117
+0.92414498
+-0.12651300
+-0.32545626
+-0.19243163
+-0.23790044
+0.98087645
+-0.08372271
+0.22138119
+-0.42917764
+0.16565192
+0.43568671
+-0.81199725
+0.30493736
+-0.17859668
+0.49278235
+-0.00893950
+0.96459198
+0.74033403
+-0.35177893
+0.63082196
+-0.98433471
+-0.64136973
+0.77804595
+0.95799808
+0.13871118
+0.29214098
+-0.47739695
+0.68548659
+-0.36724252
+-0.60290409
+0.24320036
+0.29040948
+0.33336097
+-0.22899814
+-0.94816274
+-0.70004783
+-0.90188237
+-0.00712528
+0.23270541
+-0.77935218
+0.43206531
+0.07366244
+-0.45472282
+0.52121489
+-0.08393279
+-0.24904100
+0.39829226
+0.71995250
+0.29033058
+-0.82526798
+-0.45297629
+0.28182164
+-0.02627927
+-0.64803319
+0.95219382
+0.18694546
+0.08213980
+0.41860643
+0.90417397
+-0.74709621
+-0.32518953
+-0.14050204
+-0.03527951
+-0.11112446
+0.74944687
+0.35741329
+0.82401121
+-0.96363650
+0.76698756
+0.01176989
+-0.79827920
+-0.21171391
+0.83334589
+-0.37853658
+0.64375043
+0.48295856
+-0.89508788
+-0.49852604
+-0.47343504
+-0.78505997
+0.89180100
+-0.08909309
+-0.69009113
+0.65963781
+-0.88179069
+-0.61175659
+0.28531075
+-0.00536305
+-0.39841884
+0.86710703
+0.59815979
+0.96318126
+-0.18394881
+-0.08996660
+-0.73349404
+0.03292608
+0.31032801
+0.69674385
+-0.28858006
+0.85700881
+-0.50607133
+-0.76550604
+-0.92548060
+0.23039687
+-0.98255120
+0.21313798
+0.49059212
+-0.85670632
+0.67442620
+-0.65057209
+-0.51393726
+-0.32084554
+-0.12204927
+0.59901047
+0.44227481
+0.83842027
+-0.53335789
+-0.24106461
+-0.63817555
+-0.94321427
+-0.72644439
+-0.89256921
+-0.95410810
+-0.06629610
+0.07159042
+0.38519406
+-0.64079505
+0.94217205
+0.86051083
+0.05958462
+0.74760854
+0.29727161
+0.19625103
+-0.05920529
+0.61592245
+-0.69963235
+0.79915440
+0.15008748
+-0.73367292
+0.99406528
+-0.45002240
+0.22868013
+-0.92752729
+-0.92775944
+-0.46546358
+0.09982896
+0.98588145
+0.70992661
+0.50175893
+-0.29372048
+0.21619725
+-0.59024867
+-0.56019583
+-0.13784415
+-0.69358879
+0.37908447
+-0.89017510
+0.51811254
+-0.20369583
+0.55048966
+0.01305914
+-0.56145781
+-0.60984194
+0.49430323
+-0.78363998
+0.87179768
+-0.47189915
+0.61359751
+0.38342750
+0.45218170
+0.11832249
+-0.64297220
+-0.01439190
+0.71568358
+-0.88182412
+-0.16958177
+-0.77650349
+0.24620986
+0.93701601
+-0.96589064
+0.76268065
+0.05755770
+0.98970091
+0.90485597
+0.19434130
+-0.65574357
+0.91902256
+0.93302965
+0.50554860
+0.98593640
+0.84861529
+0.33926690
+0.80726206
+0.65814281
+-0.42651790
+0.94077408
+0.16815436
+-0.65495992
+0.64034092
+-0.88088006
+-0.71591607
+0.65982831
+-0.22051388
+0.27022862
+0.47377479
+-0.54294705
+0.37184215
+-0.40779328
+-0.66896859
+0.95893240
+-0.36180991
+0.83619678
+-0.53858680
+-0.95457100
+0.81353366
+-0.73797461
+0.24333775
+0.88924551
+-0.97382457
+0.82376719
+0.69952559
+-0.84834154
+-0.70409241
+-0.91766984
+0.69652903
+0.31347930
+0.68066812
+-0.28311634
+-0.19799602
+0.83651257
+-0.93383501
+0.30745268
+0.74752450
+-0.49265307
+0.79948235
+-0.96540754
+0.90577996
+0.75456417
+0.59197164
+-0.61373726
+0.08448195
+-0.02580684
+0.66762245
+0.71865106
+0.66976440
+-0.61325511
+-0.09226364
+0.62539136
+-0.46901518
+-0.77022542
+-0.64773199
+0.06787002
+-0.59513250
+-0.72240999
+-0.87379801
+0.56656790
+-0.36677426
+-0.62217769
+0.00715303
+-0.40506470
+-0.82833822
+0.76993954
+-0.78445242
+-0.38556647
+0.26492751
+0.09146225
+0.93626714
+-0.59674817
+0.80411923
+-0.57488844
+-0.04784191
+-0.32521135
+-0.05537558
+-0.75991923
+0.17304015
+-0.04628444
+0.84004378
+-0.03828096
+-0.95758056
+-0.18687689
+-0.75468761
+0.27308857
+-0.83775544
+0.23322129
+0.97735703
+0.81027877
+-0.02718771
+-0.28486848
+-0.57533753
+0.63818264
+0.61213255
+-0.88210255
+0.16148937
+-0.90562050
+0.39832330
+-0.06799269
+0.98705602
+0.73812902
+0.20207047
+0.68630123
+0.75865114
+0.92538798
+-0.31821322
+-0.96922794
+-0.17194235
+0.74621356
+-0.08937812
+0.81677151
+0.07108641
+-0.27031583
+-0.54334047
+0.33276010
+-0.20652360
+-0.16819316
+0.74316132
+0.59157002
+-0.28908670
+0.48894954
+0.82688189
+-0.19612408
+0.19178939
+0.94873762
+0.21496284
+0.78852749
+-0.11968577
+-0.66664919
+-0.00212443
+-0.68589100
+-0.25040925
+0.90629327
+-0.07162941
+-0.10396576
+-0.68932104
+-0.13338518
+0.66242957
+0.69985557
+0.85588968
+0.51538050
+-0.56318980
+-0.43563181
+-0.03932428
+-0.51032782
+-0.12748855
+0.71901798
+-0.78263710
+-0.48561037
+0.34149265
+0.13071096
+0.14646351
+-0.76516648
+-0.58236712
+-0.04449266
+-0.00599092
+-0.52449581
+0.80641711
+0.88533473
+-0.90712735
+0.26561952
+0.70619893
+0.26543152
+0.63731170
+0.00263667
+0.89245033
+0.34740996
+0.64108169
+0.31704557
+-0.13132930
+0.73933649
+0.37108636
+-0.90137439
+-0.92885647
+-0.29835021
+0.74600673
+0.21510422
+0.30719042
+-0.56291738
+0.93271875
+0.55997598
+0.85366285
+-0.06007981
+-0.16702753
+0.73408747
+-0.78201476
+-0.32142901
+0.76223409
+0.02403831
+-0.90794817
+-0.42722148
+-0.93703220
+-0.38877302
+-0.97637354
+-0.60566381
+-0.79413797
+-0.16030717
+-0.11532831
+0.63467264
+-0.28951919
+0.48085642
+0.77933204
+-0.84541763
+-0.98287874
+0.74112499
+-0.22272998
+0.80572093
+-0.31365335
+-0.28232962
+-0.90256722
+0.13321471
+0.43582189
+-0.66629961
+0.39847445
+0.22334337
+0.88194978
+-0.40120000
+-0.72927874
+0.32008171
+0.70772421
+-0.85162835
+-0.06171423
+-0.33232188
+-0.21912062
+-0.02397329
+0.34400654
+0.39584243
+-0.35276157
+0.81191635
+0.49289405
+-0.12706006
+-0.09548199
+-0.61046487
+0.93411100
+-0.85319544
+-0.66137651
+-0.37452829
+0.31316745
+-0.41168678
+0.73276782
+0.37794936
+-0.74249199
+0.90269911
+0.31180680
+-0.33911288
+0.23116648
+0.54759240
+0.07525432
+-0.29379541
+0.92238140
+-0.97375220
+-0.01098990
+-0.26687551
+0.75913274
+-0.38142794
+-0.50594634
+0.36303473
+0.21843696
+0.87476265
+0.04759157
+0.37013602
+0.42574716
+-0.95117257
+0.98475528
+-0.36340433
+0.60565746
+0.00932884
+-0.18167406
+0.77930832
+0.01818919
+-0.88247420
+-0.23093641
+0.09132576
+-0.69063523
+-0.64146137
+0.98100519
+-0.91149041
+0.60219920
+-0.31259650
+0.40378857
+-0.12034661
+0.76906157
+0.35061443
+0.76049089
+0.31500399
+0.47779238
+-0.52954283
+0.84928453
+-0.08251315
+0.90485561
+0.04364681
+0.58374651
+0.56766757
+-0.16727400
+-0.19316549
+-0.21355272
+0.39371306
+-0.16293792
+-0.47119010
+0.84862832
+0.99126399
+-0.84817126
+0.18148652
+0.82608116
+0.34028516
+0.15597817
+0.99103007
+-0.94132035
+0.11879908
+-0.58971868
+0.36782409
+0.84239898
+-0.85443582
+-0.62701410
+0.79363332
+0.09846411
+-0.88071607
+0.31443224
+0.13077140
+0.93174263
+-0.54707848
+-0.19463696
+0.51892127
+-0.69582787
+-0.34290471
+-0.27445348
+-0.53149371
+0.15321575
+0.52223981
+0.19409617
+-0.99110570
+-0.05813088
+0.75379564
+0.11550426
+-0.10998090
+-0.43737503
+0.76192613
+0.91134630
+-0.52586973
+-0.33730618
+0.80886675
+0.94461701
+-0.23682486
+-0.05076206
+-0.67226799
+-0.95335489
+0.76860960
+-0.30324491
+-0.01264870
+0.77852984
+0.20909311
+0.50946460
+-0.59279604
+0.89222240
+-0.06935050
+0.53066001
+0.08301563
+0.67580614
+0.50076199
+-0.79414969
+-0.70918419
+-0.34932687
+0.25081910
+0.68108296
+0.45036958
+-0.20769521
+0.19532831
+-0.22692968
+0.92783368
+-0.26273803
+0.45386328
+0.51125215
+-0.31940393
+0.53780615
+0.80761419
+-0.07596078
+0.68267221
+-0.42708470
+-0.08405733
+-0.20033155
+0.15854396
+-0.42817046
+0.02829958
+-0.21048206
+-0.43979009
+-0.02415922
+-0.13161193
+0.81489632
+0.74598241
+-0.88100141
+0.01383270
+-0.01272144
+-0.77976185
+-0.42943227
+-0.18124475
+-0.72040453
+-0.49620168
+-0.87621158
+0.17079914
+0.29347880
+0.89224399
+1.00155805
+-0.12164359
+0.37824905
+-0.13290842
+-0.81145940
+0.98587890
+0.71773181
+-0.17132377
+1.00021108
+-0.84913637
+0.85088251
+0.36127724
+0.66405952
+0.57138739
+0.16113434
+-0.37504928
+-0.46463074
+0.92988098
+-0.81967023
+-0.32916682
+0.59466038
+-0.71599068
+0.20061529
+0.71590851
+0.79142365
+-0.12469991
+0.20363404
+-0.85996445
+0.27880991
+-0.13114022
+0.08445615
+-0.48128689
+0.24576807
+0.49504636
+-0.76932523
+0.88364673
+0.21754653
+0.32524868
+0.50191658
+0.21573616
+-0.83967037
+-0.68754088
+-0.97993854
+-0.03073669
+0.08549774
+0.30379544
+-0.25629049
+0.80780698
+-0.04202348
+-0.60503694
+-0.63119900
+0.48859000
+0.12305045
+-0.04464668
+0.87318468
+-0.87471527
+-0.51281819
+0.10602891
+-0.99678440
+0.79955721
+-0.85974315
+-0.55896950
+-0.03384727
+0.16517603
+-0.72773594
+0.91515052
+0.91070592
+0.86476541
+0.91126776
+0.68196440
+0.86081975
+0.26428618
+0.52744347
+0.68550519
+0.23067718
+0.45161073
+0.01950380
+0.41036941
+0.03472526
+0.64258925
+-0.78649683
+0.89652630
+0.45401353
+-0.81304520
+0.84000808
+0.15216200
+0.25538732
+-0.43614825
+-0.55350455
+-0.34163704
+-0.63847387
+0.26418366
+0.16864735
+0.62664775
+-0.51932591
+-0.05512918
+-0.56222727
+-0.12630565
+-0.52733618
+0.48111514
+-0.99202721
+0.91210261
+0.63947553
+-0.63010129
+0.02509755
+0.28903835
+-0.84989189
+-0.28325299
+-0.49985347
+-0.54457390
+-0.20512321
+-0.21885045
+-0.12875634
+0.12131562
+-0.40828824
+-0.06080656
+0.71650570
+-0.02685556
+0.26490973
+-0.28990471
+-0.68346526
+0.60210548
+0.04549587
+0.38858416
+-0.53740335
+0.42262114
+-0.00233925
+-0.91430966
+0.71133958
+0.45903135
+0.73028521
+-0.80597170
+0.81755865
+0.76494195
+-0.81595804
+-0.85662297
+-0.44979704
+-0.87231929
+-0.74303429
+-0.31696987
+0.60083048
+-0.12080075
+-0.11157304
+-0.42452047
+-0.80011758
+-0.49023884
+0.15953725
+0.29539707
+0.88873731
+0.84765673
+0.08336095
+-0.72726216
+-0.42652977
+0.02927556
+0.49746907
+-0.29407339
+-0.05704231
+0.68142178
+0.09167395
+0.15973866
+-0.94138189
+-0.66001557
+-0.76803775
+-0.15152792
+-0.56166828
+0.82255817
+-0.49352975
+0.25206652
+0.46121584
+0.38729036
+0.55644719
+0.39026879
+-0.86761320
+-0.52903871
+-0.20710266
+-0.14977460
+-0.67337115
+0.54895594
+0.52377950
+-0.07345867
+0.51702694
+-0.61080088
+0.61795866
+-1.00087335
+-0.68833432
+0.86807180
+0.32004922
+0.34738639
+-0.02512749
+0.57455552
+-0.39593549
+-0.09772821
+-0.25706911
+0.86364271
+-0.46347028
+0.24073578
+-0.59160290
+0.61437085
+-0.77093481
+-0.25786608
+-0.77636598
+0.43734263
+-0.24729949
+0.53089180
+-0.84103179
+-0.73063635
+0.01620226
+-0.39783749
+0.36418639
+0.02526164
+0.96480135
+-0.21547003
+-0.31008899
+-0.24980227
+0.98936474
+-0.50646903
+-0.54845516
+0.86663225
+0.62294351
+0.35356450
+0.19736115
+0.25551747
+-0.42546284
+-0.10717396
+-0.78894885
+-0.42007159
+-0.90106125
+0.38012996
+0.01386593
+-0.68295020
+0.04740504
+0.36450098
+-0.36536968
+0.98347356
+0.10007572
+0.31933094
+0.71868484
+0.33905139
+0.13025771
+-0.85808898
+-0.13073291
+-0.60658519
+0.41909528
+-0.18744162
+-0.22777587
+0.14566422
+0.09167795
+-0.91413133
+0.96558736
+-0.50519427
+0.28765563
+0.99432467
+0.83832252
+-0.11510936
+0.59200037
+-0.65444230
+0.82841401
+0.64263156
+-0.19745792
+0.29170084
+0.36069880
+-0.00521111
+-0.09059924
+0.87185643
+-0.72252688
+0.86421193
+0.88167946
+0.46531259
+0.17518642
+-0.89533718
+0.78374832
+-0.40054176
+-0.21521538
+0.61039499
+0.69976223
+-0.27965354
+0.56747510
+-0.23756229
+0.34851652
+-0.35868567
+0.99981850
+-0.89253817
+-0.92846589
+0.70702208
+-0.93825368
+-0.55721980
+-0.12643516
+-0.86925452
+-0.29091690
+0.07621968
+0.10735250
+0.26815259
+-0.80531450
+0.20961344
+-0.33927184
+0.65013003
+-0.44852114
+-0.37457460
+0.66205621
+-0.11550593
+0.45952404
+0.60523403
+0.49600840
+-0.98073885
+0.56060410
+0.81566298
+0.27487135
+0.00798047
+-0.03793001
+-0.71593076
+-0.19070399
+-0.28409541
+0.46891689
+0.91921675
+-0.50862637
+-0.19166797
+-0.76392770
+-0.21961588
+0.93660092
+-0.04152197
+-0.50219971
+0.16933799
+0.30709684
+-0.33346087
+-0.06413460
+0.77859938
+0.22291732
+0.05654097
+-0.60962102
+0.16310692
+-0.20958602
+-0.09119147
+-0.63537961
+0.68570542
+0.10149252
+0.53825772
+0.14104795
+-0.94863727
+0.05807018
+0.33162105
+0.14571035
+0.97065747
+0.80042911
+0.82870650
+-0.70506439
+-0.12483060
+0.75571918
+0.28094375
+0.49297595
+-0.06133753
+0.18596244
+0.31917620
+-0.45960289
+-0.39779729
+0.53107047
+0.89035916
+0.01277757
+0.18497550
+0.34849322
+0.99429202
+0.88423097
+-0.20767564
+0.15950036
+-0.11364287
+0.94991708
+-0.12209135
+0.62204516
+-0.30165434
+-0.48062187
+-0.50705016
+-0.00901794
+-0.19528621
+0.92135918
+-0.99006233
+0.75882006
+0.62491977
+-0.54350367
+-0.99356236
+-0.32719994
+0.78229201
+0.16308331
+0.81514084
+-0.65593058
+-0.01685858
+0.19012558
+0.34862709
+0.30661118
+0.73156500
+-0.83958226
+-0.77812929
+-0.21203047
+-0.39506924
+-0.84361418
+-0.01385105
+-0.10544455
+-0.82370462
+0.92775142
+0.10752785
+-0.39731741
+0.54935515
+-0.47062862
+0.97632957
+-0.82185692
+0.28076231
+0.73490191
+-0.42645472
+0.34522212
+0.34696031
+0.67744493
+0.25990176
+0.73186791
+-0.97014641
+0.23498559
+0.71010411
+0.77680230
+0.90444231
+-0.83211942
+-0.10175192
+-0.14950699
+-0.72908917
+-0.38075537
+0.77422824
+-0.63906467
+-0.37712922
+-0.84831117
+0.77449433
+0.46842620
+0.83721103
+0.98481269
+-0.35153690
+-0.79038184
+0.25797441
+-0.50866315
+-0.20601597
+0.62150079
+-0.41781934
+0.15748831
+0.69726731
+0.07082422
+-0.74530288
+0.33666890
+0.51564970
+0.75701815
+0.69195393
+0.18542868
+-0.66840159
+0.55432185
+-0.06273417
+0.65072353
+0.31415406
+0.57751876
+0.72192790
+-0.30887014
+-0.36627456
+0.87207359
+-0.74759139
+-0.89925613
+-0.33135150
+0.08796473
+0.18086079
+-0.57740271
+0.84423149
+0.86077058
+0.85456252
+-0.95043144
+-0.67399171
+0.58184361
+-0.01993740
+-0.04342532
+0.64103401
+-0.27532822
+0.48012900
+0.39709663
+0.94624352
+-0.37853438
+0.85712433
+0.30569267
+-0.58822578
+0.14782071
+0.67676854
+0.56910038
+-0.78172365
+0.76657498
+0.58165801
+0.65207708
+-0.58705974
+-0.05093890
+-0.46402425
+0.23672950
+0.83183467
+-0.70870572
+-0.56793916
+-0.65732020
+-0.35209203
+0.31837559
+0.50734901
+-0.86890931
+-0.12375700
+-0.08103317
+0.65126920
+0.34379578
+0.82313788
+0.64106870
+-0.11763400
+-0.75072406
+0.91607571
+-0.20280260
+-0.40373832
+0.07384503
+0.50570691
+0.22391689
+0.53378510
+-0.29031038
+0.37541950
+0.44524908
+0.98841381
+0.36487675
+0.52256274
+-0.16025835
+0.28895140
+-0.44102019
+0.06809163
+0.70206654
+0.62319982
+-0.11702341
+-0.09516436
+-0.05698520
+-0.77899717
+-0.75304167
+-0.55098861
+0.29246259
+0.81021583
+-0.08390456
+-0.07921433
+-0.37939411
+0.01350415
+-0.02875227
+-0.34679121
+-0.61746308
+0.30817807
+0.17478287
+0.68204808
+0.14058626
+-0.38957435
+0.99507272
+0.20685923
+0.79702759
+0.28222954
+-0.20827323
+0.52021575
+0.22044468
+-0.87290645
+-0.94713977
+0.54622281
+0.42830741
+-0.47953409
+-0.17646724
+0.97195542
+0.90710664
+-0.94030833
+-0.87257430
+0.06895101
+-0.51452732
+-0.52626637
+-0.41580814
+-0.71937293
+0.67332351
+0.83408988
+0.54878449
+-0.22722805
+0.31451118
+0.22656739
+0.84906030
+-0.03962922
+0.06530929
+-0.21491492
+0.23255002
+-0.60199538
+0.79934585
+0.13666773
+-0.41952801
+-0.41142333
+0.31569004
+-0.54704568
+0.96003258
+-0.13835990
+0.47647154
+-0.99175918
+0.41304004
+-0.21470702
+0.34206343
+-0.54341969
+-0.80306943
+-0.29806495
+0.46030164
+-0.37802422
+-0.68354586
+0.78526592
+-0.71686468
+0.42890942
+0.48031640
+-0.97929430
+0.37094748
+-0.68911114
+-0.63662162
+0.55423617
+0.70149386
+-0.30315971
+-0.67297491
+-0.16009164
+0.16456699
+-0.94526668
+-0.61689973
+-0.51301223
+0.62528408
+0.72658241
+-0.79636975
+0.11268723
+0.13945425
+-0.37780601
+-0.12349874
+0.32739556
+0.71940446
+0.17991245
+0.23309708
+-0.76842429
+-0.22996652
+-0.37527835
+0.64144456
+0.07066369
+0.25291729
+0.54466581
+0.84181440
+0.83817661
+-0.98104876
+-0.78242439
+0.78406119
+0.99670208
+-0.49567795
+0.64879537
+-0.02781385
+-0.78615351
+0.62757051
+0.17836237
+0.42366385
+-0.55866805
+-0.44154781
+0.83289456
+0.37693501
+0.56994188
+-0.55119327
+0.15941131
+0.92287254
+-0.70040372
+-0.49817985
+0.58540690
+0.39528036
+-0.13421553
+0.53310359
+-0.84016518
+0.75628650
+-0.79063228
+-0.52369288
+0.10818410
+-0.90309963
+-0.00949609
+-0.74632242
+0.41632283
+-0.33776689
+0.07400858
+-0.38635767
+-0.65120962
+-0.20618081
+-0.57502297
+-0.61142641
+-0.79819940
+-0.50621754
+-0.91002017
+0.04042900
+-0.83915055
+-0.40110165
+-0.25336862
+-0.49436414
+-0.28657907
+-0.57544309
+-0.06244570
+-0.30739248
+0.55290747
+0.76024306
+-0.41891176
+0.33887911
+-0.66813630
+0.93627810
+-0.12628418
+-0.96706336
+0.28991890
+0.38353729
+-0.48494101
+-0.35953593
+0.23015380
+0.03974760
+-0.40195465
+0.49430799
+0.64709520
+-0.87263823
+-0.57779491
+0.24399590
+0.72357976
+0.67183435
+0.06105542
+-0.43882674
+0.81010783
+-0.82561967
+0.94754088
+0.22812903
+-0.75865254
+0.95714748
+-0.14403391
+0.11628640
+0.71469533
+-0.99263112
+-0.54444405
+-0.24979198
+0.51425624
+-0.42591143
+0.37901688
+0.89376843
+0.12954938
+-0.08928317
+-0.07456893
+-0.36537689
+-0.43448454
+-0.18278354
+-0.64727432
+-0.99539289
+0.32851171
+0.61146545
+0.80135858
+-0.20054913
+0.14558458
+0.81135571
+-0.62790149
+-0.64673197
+0.35281348
+-0.88913856
+-0.41038013
+-0.91815959
+0.72904539
+0.05174959
+0.99925315
+-0.13253677
+-0.26034868
+0.30335259
+0.67877614
+-0.25788558
+-0.61280119
+0.61487639
+-0.32952768
+-0.30778962
+0.92796993
+0.68991458
+-0.54988775
+0.86320281
+0.39123225
+0.10500371
+-0.52536511
+-0.95527177
+-0.55134568
+-0.11513114
+0.82435739
+-0.33979613
+0.62235272
+-0.60337865
+-0.98093095
+0.86300313
+0.25749612
+0.13927639
+-0.80006219
+-0.97623343
+-0.92865376
+0.93893623
+0.57428432
+0.38266194
+-0.85559441
+-0.35955709
+-0.98177253
+0.73017085
+-0.18007815
+0.75149047
+0.53885162
+-0.35099548
+0.60131586
+0.66489267
+0.88756871
+-0.41595316
+-0.51321918
+-0.49996543
+0.49950671
+0.85946000
+0.00079405
+-0.01009518
+0.14096045
+0.32758987
+0.46651995
+0.58491933
+-0.99866585
+-0.87525724
+0.42928052
+0.93020964
+0.47309399
+-0.07429820
+0.76710272
+-0.26413101
+0.99150276
+-0.05120200
+-0.75740968
+0.37438798
+-0.68276370
+-0.34427899
+0.37542963
+-0.51331431
+0.07631123
+-0.99096525
+0.25123823
+0.51951456
+-0.44246221
+-0.21466064
+-0.53966531
+-0.48981166
+-0.00518835
+0.42525291
+0.83738184
+0.44562328
+0.20923793
+-0.71007979
+0.86974990
+-0.89921744
+0.09297073
+0.02627563
+0.92295372
+0.77207303
+-0.43807936
+0.22826540
+-0.39035153
+-0.99486892
+0.05988622
+0.77666593
+0.34023809
+-0.03353339
+-0.39955097
+-0.94830523
+0.39383209
+-0.29608649
+0.41211367
+0.98821211
+0.51132238
+0.35286391
+0.66630030
+0.06689155
+0.06625104
+0.50009298
+0.18433082
+0.30668259
+0.76422858
+0.14929640
+0.80724871
+-0.12265199
+0.86725295
+0.84863591
+0.96780300
+-0.97429438
+0.30432391
+0.27350545
+-0.53722194
+-0.32032323
+0.50595117
+0.51552618
+0.94569981
+0.13185227
+0.14680707
+0.67085862
+0.17596292
+-0.89049394
+0.75645232
+-0.18661928
+0.71781504
+0.33386838
+0.77913415
+0.54687166
+0.66735578
+0.27991056
+-0.71195409
+0.88084698
+-0.22586179
+0.58813405
+-0.33509380
+0.53056693
+0.38927269
+-0.88279145
+0.06288505
+-0.70988941
+0.65522909
+-0.48232055
+-0.51107529
+0.29477763
+-0.17637628
+0.02733338
+-0.48190266
+-0.90703410
+-0.86663096
+-0.98471896
+0.01135111
+-0.43217456
+-0.92072464
+0.12396097
+-0.01664710
+-0.07893008
+0.88903701
+-0.87932648
+0.59603167
+0.65871671
+-0.97276008
+0.87824333
+0.12954569
+0.06678789
+-0.86954761
+0.70726011
+0.72398357
+0.39796165
+0.71683431
+0.42736733
+-0.21820210
+-0.71967822
+0.54189681
+-0.27429302
+-0.32155068
+-0.60273211
+-0.69544828
+0.54511760
+-0.57005003
+0.24053777
+0.75524907
+-0.23053759
+0.09440385
+0.19095108
+-0.15432051
+-0.77148503
+-0.20351649
+0.69127503
+0.46483375
+-0.26845923
+0.01066474
+-0.87386651
+0.25258385
+0.15190119
+0.60007901
+0.42750458
+-0.42592647
+0.26449096
+0.46249105
+-0.06519419
+0.75705019
+-0.50564986
+0.77926455
+-0.52893033
+0.83055941
+0.96091248
+0.36509086
+-0.63277217
+-0.26232081
+0.74281557
+-0.74535988
+-0.90711723
+0.85282407
+0.03687246
+0.81685581
+0.18755445
+0.49921021
+0.02551263
+-0.16733574
+0.57536516
+0.93260743
+0.67162025
+0.92367421
+-0.41450176
+0.69768036
+-0.62980166
+-0.21035059
+0.65093106
+0.16727437
+-0.61561404
+-0.41993115
+0.34897411
+0.16557036
+-0.99691948
+-0.86316053
+-0.00643378
+-0.71800704
+-0.14779802
+-0.96434911
+0.33857435
+0.23259476
+0.02498603
+0.37595723
+-0.90100925
+-0.62852163
+0.17144195
+0.10197536
+0.93321848
+0.52076234
+0.20749379
+-0.90285808
+-0.82270952
+0.87009572
+-0.01551273
+-0.16220221
+0.06265733
+-0.51866661
+-0.16899867
+0.77698279
+0.48739284
+0.87069102
+0.72839081
+-0.86906456
+0.69932686
+0.44808123
+-0.72353656
+-0.06395044
+-0.61820880
+-0.59128162
+0.07377604
+-0.63599257
+-0.41729063
+-0.33655876
+-0.54345364
+-0.68507077
+-0.88504671
+0.78678869
+-0.33396788
+-0.14762848
+-0.91981842
+-0.56428081
+-0.78361766
+-0.43208307
+0.72849607
+-0.76379815
+-0.30362070
+0.92891908
+-0.26550680
+-0.55090934
+-0.88818017
+-0.96440367
+0.88716435
+0.66864765
+0.92216051
+-0.56940666
+-0.70217314
+0.67478132
+-0.73785618
+-0.75386724
+0.25982440
+0.65247607
+-0.69481698
+-0.94697432
+0.54504788
+0.78883708
+-0.82420263
+0.42221177
+-0.34934539
+0.40234172
+-0.29956919
+-0.20041285
+-0.34114629
+-0.03682532
+-0.51531729
+0.44498758
+-0.53106529
+-0.69580094
+0.23326321
+-0.14183172
+0.30670398
+-0.09516690
+-0.27562523
+0.73662845
+-0.77682248
+-0.53774969
+0.35823127
+0.01486029
+-0.66894172
+0.89135710
+-0.06532980
+-0.43752905
+-0.58848867
+-0.06497418
+0.87636423
+0.70071789
+-0.54093883
+0.96620385
+0.04396524
+-0.90328760
+0.67080939
+-0.26132882
+-0.14581829
+0.14593768
+-0.58576140
+-0.97909073
+0.01335168
+-0.07355922
+0.75246251
+0.66137135
+0.02540863
+0.24462914
+0.59217763
+0.96984208
+-0.52174911
+0.79048502
+-0.99311846
+-0.41563559
+0.39953351
+-0.51984870
+-0.59665934
+0.38968436
+0.32009923
+-0.35727810
+-0.01394999
+-0.46579981
+-0.34244554
+0.48084222
+-0.03580636
+-0.19262135
+-0.65927917
+0.67258113
+-0.15149748
+-0.95792434
+-0.84029213
+0.86089599
+-0.30439240
+0.56723858
+-0.83015372
+-0.24102735
+-0.33949448
+0.40728195
+-0.10169697
+0.14658184
+0.82641232
+0.20103896
+0.70723590
+-0.33218246
+0.39614599
+-0.40158826
+-0.60919142
+0.33786886
+0.66927660
+0.24016831
+0.62733650
+0.95565522
+-0.74347248
+-0.53676636
+-0.46068255
+-0.87605201
+0.66053618
+-0.69425399
+-0.03022051
+-0.18935795
+-0.88445517
+0.00428034
+0.31498430
+0.38006136
+0.63280392
+-0.33857149
+0.68442869
+-0.92810848
+0.29496574
+-0.94350508
+-0.48769182
+0.51230634
+-0.00539637
+0.57603694
+-0.10463149
+0.93321324
+0.91537863
+-0.04946051
+-0.63271722
+-0.44829475
+0.22063994
+-0.05360883
+-0.33978450
+-0.47795046
+0.67952748
+0.81138456
+-0.19927415
+-0.83672405
+0.19262385
+0.34968493
+0.38458586
+0.33488239
+0.27210475
+0.81279039
+-0.67640006
+0.56672514
+0.02908658
+-0.06589104
+-0.73290387
+-0.36388997
+-0.27290511
+0.77027143
+0.80385193
+0.95553078
+0.18686397
+0.01470268
+-0.44521876
+-0.08652481
+0.89046574
+-0.49387997
+0.27307332
+0.23616374
+-0.35954858
+-0.90737746
+-0.92656101
+0.08648038
+0.14974843
+0.85867944
+-0.87006098
+0.59205029
+-0.17708969
+-0.51238923
+-0.40433938
+-0.28880053
+-0.74564639
+-0.00446462
+-0.59473094
+0.46361902
+-0.11572087
+0.76009558
+0.40095341
+0.53432549
+-0.21738956
+-0.47850770
+-0.46998234
+0.69904339
+-0.27443139
+-0.25816465
+-0.01381427
+0.13417587
+-0.88229778
+-0.64298662
+0.66674065
+0.12687982
+0.23227186
+0.57869148
+-0.03850059
+0.20129820
+-0.65713313
+-0.76598593
+-0.85168195
+-0.46263170
+-0.09195165
+-0.62455792
+0.61098697
+-0.47572011
+-0.31992211
+0.40442948
+0.50472832
+0.86175546
+-0.38697231
+0.35687268
+-0.39079001
+0.29043549
+0.29484387
+-0.87389092
+-0.20228388
+0.14293722
+0.52376091
+-0.34201071
+0.50154495
+0.66271889
+0.35316891
+-0.47626704
+0.85220741
+-0.84684865
+-0.42625451
+0.38866639
+-0.38015801
+0.53688610
+-0.94998427
+0.50292706
+-0.16342854
+0.09264445
+-0.80009191
+-0.15205586
+0.85495245
+0.77036238
+-0.78645442
+0.09819984
+-0.15876180
+-0.18045497
+-0.89134794
+-0.57337108
+0.52910423
+-0.54186463
+-0.64420351
+0.98905373
+0.57099032
+0.30105746
+0.19134450
+-0.24672449
+-0.54790112
+-0.08652222
+-0.40415770
+0.36605763
+-0.80825190
+-0.03460640
+0.26581180
+-0.85822034
+-0.89344072
+-0.71811056
+0.76737905
+-0.68037015
+-0.09761977
+-0.60558268
+0.41733205
+0.76427042
+-0.66607219
+-0.79751857
+-0.81434612
+-0.24599916
+0.86693466
+-0.93053278
+0.81856751
+-0.99286365
+0.42676687
+-0.37840480
+0.59285724
+-0.67515233
+-0.30658674
+0.26343942
+0.70759833
+0.23102534
+0.54098856
+0.08409560
+-0.54467380
+0.80768096
+-0.21563101
+0.43745708
+0.43662429
+-0.79391895
+0.80320036
+0.62771010
+0.76945388
+-0.03543860
+0.63720024
+-0.31702965
+-0.94887534
+-0.28590715
+0.76215827
+0.33588564
+0.49093091
+-0.24486095
+-0.35242581
+-0.30937237
+-0.29119790
+-0.16661161
+0.52945876
+0.94453502
+-0.97949275
+0.98557389
+0.83318555
+0.03475165
+-0.87161067
+-0.68803746
+-0.55455104
+-0.03638452
+-0.51419047
+-0.11720645
+0.53836584
+0.01072788
+0.95397675
+0.60599494
+-0.37005484
+-0.34443510
+-0.52049184
+-0.26123935
+-0.87457557
+0.55934811
+0.07960212
+-0.91121201
+-0.68536100
+0.21882594
+0.30656862
+-0.34591442
+0.89804697
+-0.32975209
+-0.92749689
+-0.16729724
+0.05601454
+0.21131265
+-0.79088406
+-0.77554683
+0.44652736
+0.89791453
+0.21696663
+-0.79722454
+-0.53293794
+0.69825852
+0.21402347
+-0.74557137
+-0.58215779
+0.29671431
+-0.44061381
+0.74445772
+-0.00139976
+-0.35984337
+0.75415194
+0.40946686
+0.23530996
+0.77441680
+0.66371107
+-0.05299664
+0.16136682
+0.64242196
+-0.51774132
+0.87316632
+-0.80275008
+-0.00740677
+0.91583920
+-0.96335179
+-0.58767956
+0.47498620
+-0.60705021
+-0.97634122
+-0.31035740
+0.71653440
+-0.03986937
+-0.11952885
+-0.95924098
+0.53206997
+0.07898041
+0.67094387
+-0.87630780
+0.88874594
+0.49548434
+0.99614720
+0.03396535
+0.69422002
+-0.47586215
+0.30740043
+-0.57151044
+-0.47059365
+-0.14673481
+0.10192604
+0.50661176
+-0.33547054
+-0.81570825
+-0.56128808
+-0.89987691
+-0.24220558
+0.18847605
+0.50324096
+0.70880659
+-0.64307296
+0.38646603
+0.94173586
+-0.37442410
+0.37511528
+0.32940567
+0.39141583
+0.73251188
+-0.46995211
+0.80729508
+0.96116948
+-0.07495111
+0.21134329
+-0.58880597
+0.13393271
+0.46312284
+-0.72926241
+0.56020808
+0.50547087
+0.85797310
+-0.59799615
+-0.30380541
+0.46911716
+-0.46344078
+0.61232996
+0.79964864
+-0.80808976
+0.05114961
+-0.69609517
+0.07879555
+-0.24022406
+-0.57049048
+-0.55432901
+-0.98529587
+-0.64557064
+-0.58060098
+0.06946278
+0.86049950
+-0.16178817
+-0.80945137
+-0.36547083
+0.94988656
+-0.37085742
+0.19765341
+0.41498005
+0.12794876
+0.67078483
+-0.96327274
+0.67379582
+-0.40733194
+0.38281560
+0.42446399
+0.16015959
+0.80770326
+0.33974910
+0.89889646
+-0.63718215
+0.95239425
+0.74783945
+-0.63368884
+0.64079046
+-0.60890919
+0.42470980
+0.94061351
+0.81951630
+-0.26839554
+0.99126267
+-0.50584593
+-0.10147244
+0.34641683
+0.48006868
+-0.76896998
+0.72672522
+-0.70979464
+-0.67051503
+-0.16708624
+0.66437602
+0.48133349
+-0.25817889
+-0.34352052
+-0.79518960
+0.08590984
+-0.70144314
+0.63999140
+-0.11973703
+0.70579231
+-0.42489415
+-0.51647064
+0.94155347
+0.68705761
+-0.23963898
+-0.94474781
+0.60965145
+-0.65785623
+-0.69863793
+0.97657049
+-0.80636629
+0.45165741
+-0.66066417
+-0.93806019
+-0.65965849
+0.99058700
+-0.12118924
+0.32003951
+0.46684432
+-0.67827049
+0.66727424
+0.81464434
+0.30750203
+-0.09529400
+0.89148450
+-0.38045299
+-0.61196414
+-0.96637065
+-0.63767868
+-0.84859093
+0.23905933
+0.66570270
+0.64803636
+-0.02385646
+-0.37042433
+-0.86201067
+-0.99405930
+0.91675198
+0.92055750
+0.59702241
+-0.38072401
+0.39429748
+0.73362565
+-0.32614535
+-0.21033782
+-0.04163879
+0.73514378
+0.04644656
+-0.30071235
+-0.24691182
+-0.09856516
+0.44380343
+0.31677079
+-0.26541317
+0.78084457
+0.58560002
+0.32727885
+0.72158194
+0.18568218
+-0.65516129
+-0.50473756
+-0.76443717
+-0.31958240
+-0.44820899
+-0.57573339
+0.47561538
+-0.38231581
+-0.58268312
+-0.79275241
+0.14471650
+-0.85049002
+0.13959944
+-0.39292222
+-0.44329613
+-0.40222752
+0.04636812
+-0.55396402
+0.78625965
+0.97721732
+-0.23715925
+-0.74046692
+-0.45346969
+-0.97346454
+0.89034200
+-0.69155663
+-0.65336758
+0.70608866
+0.80320394
+-0.67368728
+-0.19716084
+-0.55249962
+-0.25994372
+-0.71225199
+-0.17608428
+-0.55849698
+-0.76343353
+-0.11322212
+0.64252651
+-0.70133260
+-0.28945822
+-0.52981904
+-0.27540880
+0.24565876
+-0.07407671
+0.17277837
+-0.18793857
+0.94659984
+0.89614224
+-0.30199879
+-0.96331664
+0.47622788
+-0.91890879
+0.14298868
+-0.30601484
+-0.12078762
+-0.66769710
+-0.14197290
+-0.40180933
+0.00745332
+-0.04015845
+0.30503750
+0.12615752
+0.37985694
+0.68644273
+0.98914111
+-0.16040409
+0.59022105
+0.00361109
+-0.50106645
+0.28801334
+-0.17815077
+-0.21109867
+0.35902107
+0.44048691
+0.89285684
+0.67111886
+-0.01047361
+-0.03177035
+-0.53090397
+0.19436455
+0.27343059
+0.36677539
+-0.60446906
+0.97660589
+-0.25302875
+-0.83152455
+-0.50473171
+0.76322854
+0.90059507
+0.47869992
+-0.84878446
+-0.32559228
+-0.30596727
+-0.69833064
+0.47225714
+-0.85799715
+0.09320307
+0.59887993
+0.40827990
+-0.03307527
+-0.60716116
+-0.94924723
+-0.69283429
+-0.62890473
+0.94807231
+0.53619719
+0.18280613
+0.93275988
+-0.80973478
+-0.71774361
+-0.12281388
+-0.66463840
+0.50325131
+0.11600041
+0.09491813
+-0.67237467
+0.34970653
+0.42799807
+-0.72019815
+0.49001765
+-0.24433106
+0.98831403
+-0.32985616
+0.44389355
+0.28342760
+-0.54069117
+0.84699380
+0.17932093
+-0.91098204
+-0.93228790
+-0.19252241
+-0.94908405
+0.82988381
+-0.17263281
+0.02163315
+0.55044615
+-0.16089779
+-0.59083608
+0.25144064
+0.40714669
+0.16833246
+0.86191583
+-0.79097918
+0.24589419
+-0.21616900
+-0.00136793
+-0.32425070
+0.45564628
+-0.07643712
+0.21682489
+0.06893873
+-0.50660795
+0.79334509
+0.82955813
+0.16490042
+-0.94483943
+0.70548415
+-0.51695871
+0.69323468
+0.95908296
+-0.81294468
+-0.72920874
+-0.55687958
+0.48262298
+0.65781820
+0.79728842
+0.13705373
+0.44754601
+-0.61154786
+0.86098444
+-0.32333720
+-0.52820009
+-0.67738932
+0.04414523
+-0.63042498
+-0.46572542
+-0.75665702
+0.71621096
+0.96659160
+-0.44489664
+-0.54960102
+-0.50673825
+-0.45536143
+0.22953403
+0.54579830
+-0.33284658
+-0.66450277
+0.28964841
+0.66652632
+0.42900670
+0.16424727
+-0.25738239
+0.18854761
+0.87635171
+0.82359445
+0.02841115
+0.77732980
+0.13516355
+0.27328992
+-0.32227284
+-0.51186219
+0.15823174
+-0.28179133
+0.41610444
+-0.98125329
+0.60538411
+0.12432563
+-0.19076055
+-0.48129541
+-0.96159106
+-0.28908336
+-0.77282670
+0.33301306
+-0.35871923
+-0.32707649
+0.73198581
+0.90766454
+-0.47001863
+0.33845139
+-0.46135926
+-0.42390478
+-0.23870260
+0.13284945
+-0.36638290
+0.07751334
+-0.12782937
+0.81995082
+0.53338313
+0.35347342
+0.28573418
+0.91904426
+0.34822154
+0.96062160
+-0.45802897
+-0.43335980
+-0.31199610
+0.09694695
+0.07948291
+-0.67667085
+0.02194524
+-0.09192032
+0.37992430
+0.12715590
+-0.12282395
+0.26451838
+-0.47404897
+0.19095051
+0.18694091
+-0.66788399
+0.32856750
+-0.28694791
+-0.34144580
+0.73029387
+-0.40788203
+-0.09572959
+-0.94272275
+-0.12590468
+0.92365634
+0.92923021
+0.94422400
+0.26257694
+0.81235170
+-0.84323627
+-0.33536226
+0.04237080
+-0.22195750
+0.28013813
+-0.94691468
+0.46579266
+0.27080536
+-0.13529623
+0.34263861
+0.07679224
+0.99140227
+0.94586205
+-0.12802827
+-0.32333088
+-0.47706127
+-0.46619320
+-0.36353415
+0.63437140
+0.64194238
+-0.95669214
+0.21694636
+-0.83939978
+0.57623374
+0.10717690
+0.85595775
+0.78864777
+0.78023362
+-0.59089980
+-0.10015094
+0.37727487
+-0.35028827
+0.71737790
+-0.51036105
+0.57057750
+-0.04500383
+0.92487764
+-0.42194825
+0.63670146
+-0.06024498
+0.66480744
+-0.90446080
+0.27034068
+0.63573134
+-0.13317883
+-0.13781881
+0.41399586
+0.47536075
+0.94787824
+0.33522093
+0.22516859
+0.69887567
+0.62524736
+-0.92472186
+0.66531622
+0.27666628
+0.31965148
+-0.70647478
+0.90883327
+-0.13722128
+-0.01781762
+0.69457424
+-0.08870047
+-0.87593010
+-0.47438520
+-0.44356436
+-0.38547158
+-0.27766800
+0.24847853
+-0.63977721
+-0.59002659
+0.49769163
+0.19069219
+-0.84107308
+0.70076323
+0.29298425
+0.13788342
+0.80072057
+-0.59415752
+-0.43395203
+0.85432756
+0.05144501
+-0.52198672
+-0.97526120
+-0.38003325
+0.03356051
+-0.75429127
+0.99037564
+0.48332667
+-0.36836308
+-0.60105535
+-0.25442934
+0.07712805
+0.75759816
+0.71641135
+-0.16666991
+0.16177201
+-0.85083672
+0.05589890
+-0.31163990
+0.09397197
+-0.32738340
+-0.53991941
+-0.11417443
+-0.87054038
+-0.86390592
+0.05829775
+0.92114091
+0.28343582
+-0.45440942
+-0.61776099
+-0.28757787
+-0.58630317
+0.65869522
+0.80219352
+-0.68788218
+-0.46741158
+-0.37755328
+-0.32035834
+0.31876099
+0.12667644
+0.50970387
+-0.80495510
+0.09083116
+-0.09663749
+-0.72773176
+-0.45183975
+0.92928791
+0.70136547
+-0.69827616
+-0.21598428
+-0.57788721
+0.24668801
+0.80084431
+-0.55650875
+0.28813362
+0.23863864
+0.10725129
+0.12429500
+-0.04768497
+0.26410508
+0.20226407
+-0.69405159
+-0.16163731
+0.93683290
+0.88267469
+-0.50384101
+-0.13270795
+-0.10320181
+-0.35886073
+-0.07622784
+-0.55211514
+0.23830676
+0.28021550
+0.24896276
+0.30250573
+0.22774076
+-0.66370279
+0.39161885
+0.26806927
+-0.79002173
+-0.30505109
+0.30010831
+0.14152575
+0.48341155
+-0.33326983
+0.67357635
+0.74646819
+-0.93318965
+0.61503518
+0.33665597
+-0.85890077
+-0.59688902
+0.53505027
+-0.61597726
+0.61004889
+-0.33114761
+-0.85757828
+-0.87570982
+0.76635146
+-0.18188798
+0.16783834
+-0.05867207
+0.08279538
+0.13517547
+0.03978586
+0.88974071
+-0.47562730
+-0.60849711
+0.43783832
+-0.13514614
+-0.62130299
+-0.77256349
+-0.89755332
+-0.16106254
+0.81599748
+0.00520897
+0.52463377
+0.79174602
+-0.60034513
+0.85538399
+0.95463586
+-0.76245122
+0.47659355
+-0.45072655
+-0.32461935
+-0.76580236
+0.58211428
+-0.11253841
+-0.14637402
+0.65998997
+0.03299184
+-0.50175735
+-0.75108456
+0.12974574
+0.03025502
+-0.27477338
+0.11588591
+-0.89525952
+-0.37384060
+-0.27311538
+0.33045204
+0.28581384
+-0.59397901
+-0.21547683
+0.34730697
+0.29830260
+0.89302384
+0.89793917
+-0.82253364
+0.46760336
+-0.74348000
+-0.38037252
+0.84535461
+0.68399694
+0.76264542
+-0.19655355
+0.01621610
+0.91148917
+-0.95879628
+0.16161658
+-0.26421707
+-0.34227970
+-0.87402189
+-0.01892096
+0.04288149
+-0.70986176
+-0.32017064
+-0.86347608
+0.05298436
+0.12374341
+0.57918334
+-0.93921990
+-0.16241050
+-0.10162127
+-0.04263836
+-0.51786998
+0.39025736
+-0.45508730
+-0.84451661
+0.92816353
+-0.97736441
+0.71372318
+0.27184629
+-0.73792863
+0.64126050
+-0.58597335
+0.83317244
+0.62362373
+-0.67409998
+0.12450528
+-0.58553723
+-0.04053056
+-0.86744155
+0.83905172
+0.51991224
+-0.70199892
+0.23600626
+-0.10493267
+0.09653306
+0.54437172
+-0.95468123
+0.88162899
+-0.32309949
+0.71864748
+-0.80643658
+-0.25697553
+-0.07448179
+-0.81363823
+0.18421125
+0.24030375
+0.71059430
+0.57292199
+0.87304938
+0.64078093
+0.06593037
+-0.17169207
+0.43666697
+-0.68957570
+0.56245589
+-0.33885366
+-0.41455609
+-0.54827332
+-0.45277828
+0.71836603
+0.27501476
+0.86801946
+-0.71731928
+0.10828352
+-0.74677408
+0.09151530
+-0.77610672
+0.89143562
+0.46190691
+-0.72628704
+0.12550795
+-0.64688092
+0.33650637
+0.76834929
+0.71893907
+0.48944819
+-0.68363550
+0.85748518
+-0.16832358
+0.53438270
+-0.73192096
+-0.06515414
+-0.02664453
+0.19889164
+0.06167495
+0.88326406
+-0.44344789
+0.72417235
+0.56140506
+0.73414481
+0.96799493
+0.22492695
+-0.70272028
+-0.33029318
+-0.73592579
+-0.23826653
+-0.10274035
+-0.86718185
+-0.59031209
+-0.48279512
+0.03057742
+0.78315103
+-0.71018052
+-0.50633678
+-0.11105293
+0.66484201
+-0.60372484
+0.31889486
+-0.07221627
+-0.42785174
+0.86115742
+-0.92539269
+-0.92284740
+-0.07411325
+0.32085896
+-0.74242082
+0.68482804
+-0.33431804
+0.66776621
+0.36072898
+0.46316385
+-0.40352464
+0.55789375
+-0.83442800
+-0.27769685
+0.64948344
+0.44750869
+0.06381702
+-0.89516458
+0.15431583
+-0.88868314
+0.17560577
+-0.77568296
+0.32036495
+0.79383039
+-0.03603989
+-0.08693790
+-0.77776018
+0.36559200
+0.33191323
+0.60872793
+-0.10040021
+-0.76520088
+0.18297958
+0.17720377
+-0.04374653
+0.50471306
+-0.74822477
+-0.55308813
+0.46437669
+-0.04738015
+-0.07452178
+0.80541348
+0.13098705
+-0.38294148
+-0.14147598
+-0.64540073
+-0.54814985
+-0.95178464
+0.06660724
+0.04194617
+0.60920179
+0.40637565
+-0.97150281
+-0.92611698
+-0.03375006
+-0.14774925
+0.01642585
+0.32496655
+0.18092287
+0.05069637
+0.70306611
+-0.91525814
+-0.05204135
+-0.49934638
+0.45915484
+0.31924307
+-0.89078794
+-0.15918416
+0.43897283
+0.42131901
+-0.14482367
+-0.06959009
+-0.02692896
+0.32229626
+0.86703813
+-0.17395025
+0.69062042
+-0.29399270
+-0.89942684
+-0.80527642
+0.23977458
+-0.62726653
+-0.19323152
+0.43835509
+0.54454303
+-0.62183911
+0.54652405
+0.31173110
+0.17106140
+0.24100089
+-0.74657154
+-0.78526849
+-0.92386532
+-0.53401375
+0.70134687
+-0.65632814
+-0.00307876
+-0.19887584
+0.60311627
+0.04256773
+-0.55929786
+0.69603348
+0.89925861
+0.32485998
+-0.79444605
+0.99454558
+0.83669960
+0.60277843
+-0.39789081
+0.71184790
+0.44623113
+-0.98419952
+-0.51564938
+0.75028384
+-0.15353632
+0.42599952
+-0.43652695
+0.77893305
+0.68363118
+0.91837800
+0.53198791
+-0.16242993
+0.14712715
+0.11437571
+-0.04014391
+0.83198595
+-0.57290176
+-0.84677541
+-0.30111146
+-0.33147848
+0.31323349
+-0.63316840
+0.96683717
+0.61983943
+-0.30518478
+-0.16739482
+0.51979721
+0.36673200
+-0.00665969
+-0.43217623
+-0.14880520
+0.37728167
+0.44221032
+0.62435555
+0.09396124
+0.78175569
+-0.41542083
+-0.12559593
+-0.50832421
+0.03552008
+-0.08311540
+0.05541539
+-0.14025295
+-0.04259461
+-0.85624792
+0.89834094
+-0.81863177
+0.94463861
+0.93770850
+-0.95960507
+0.69230068
+-0.97261434
+-0.64989233
+-0.46065754
+-0.89193618
+0.29882789
+-0.70360214
+0.53062510
+-0.62526703
+-0.77209079
+-0.16997039
+0.05284381
+0.31263399
+0.11214530
+-0.54863229
+-0.10749567
+-0.93253377
+0.46777129
+0.78841352
+0.04451263
+-0.21984857
+0.40792048
+0.80172265
+-0.76679897
+0.87322378
+0.72821796
+0.51456308
+0.91883802
+0.77222252
+-0.75598903
+-0.98892045
+-0.38967949
+-0.88195425
+-0.10423267
+-0.40526026
+-0.25816643
+-0.27100933
+0.67040586
+-0.94808561
+-0.56239071
+0.64041948
+-0.38344163
+-0.20300573
+-0.88652195
+-0.97829186
+0.87276781
+-0.13844240
+0.74078017
+-0.05143259
+-0.32046270
+-0.76366491
+-0.85133983
+0.11530726
+0.46994802
+-0.17492424
+0.22318811
+0.27432207
+0.12617265
+0.37513391
+0.76686621
+-0.05904364
+-0.38268704
+-0.10724673
+-0.82653505
+-0.53078126
+-0.18085674
+-0.34983181
+-0.51773638
+0.93325712
+0.66666061
+-0.56316766
+0.56372171
+-0.84752350
+-0.48819074
+-0.41339056
+0.76710148
+-0.27828714
+-0.93524034
+0.07096126
+-0.88128227
+-0.94714493
+0.65867382
+-0.81918891
+0.54102537
+0.54887988
+-0.37986462
+0.81589142
+0.23180306
+0.18961596
+0.57756460
+-0.97363934
+0.38363063
+-0.63820767
+-0.26049244
+-0.85192600
+-0.88360628
+-0.94281404
+-0.08705485
+0.53778732
+0.69309151
+0.28406703
+-0.91497725
+-0.92156622
+-0.76683187
+-0.95258349
+-0.73551974
+0.23544574
+0.99052906
+-0.15895611
+0.37341797
+0.01258385
+-0.40744215
+-0.15338916
+0.98727822
+0.13831735
+0.66706061
+-0.23916608
+-0.22578186
+0.82576895
+-0.81829904
+0.95340252
+-0.23168999
+-0.23626059
+0.30399954
+-0.61807269
+-0.86313289
+-0.73577407
+-0.40744030
+-0.33219624
+-0.75780737
+0.03321099
+0.41588891
+0.54823732
+0.87426603
+-0.08277428
+-0.90908325
+-0.11662346
+-0.42350048
+-0.90695203
+0.10705805
+0.39008808
+0.77906024
+-0.91112035
+0.28102565
+0.99629033
+-0.74656421
+-0.52971360
+0.05658984
+-0.31394058
+-0.68244943
+0.92190599
+0.58521712
+0.92994797
+-0.13903511
+0.20903528
+0.92188776
+-0.83248723
+-0.84700036
+-0.19275331
+-0.43933821
+-0.08438677
+-0.92923158
+0.24198830
+0.12688410
+-0.86172463
+0.60684466
+-0.85339114
+0.37352872
+0.06183112
+-0.90493051
+-0.74995348
+0.35260403
+0.09991562
+-0.56360069
+0.04044175
+-0.05728710
+-0.22375798
+-0.02560472
+0.33610797
+0.83204699
+0.49652481
+-0.64752960
+-0.10040122
+-0.66946152
+0.95060766
+-0.04766178
+-0.41076428
+-0.48656267
+0.74378407
+0.85044277
+-0.93692083
+0.53708959
+0.48663425
+0.49683595
+-0.25777137
+0.31466424
+-0.39546716
+0.29779530
+-0.74597117
+0.24746263
+-0.57254574
+-0.50659689
+0.68915844
+0.04821861
+-0.98236802
+0.14912605
+-0.25257015
+-0.63719937
+-0.60824141
+0.15771532
+0.69868720
+0.03399146
+-0.30539900
+0.17911088
+-0.45709902
+-0.02091855
+-0.92448819
+-0.52709535
+-0.79749052
+0.16962171
+0.74795008
+-0.52312577
+-0.99938955
+0.09114230
+0.93090367
+0.63740778
+0.80993915
+-0.24067247
+-0.28098905
+-0.08040357
+-0.37794966
+0.56266749
+-0.77429509
+0.11910486
+0.90969443
+-0.88918594
+0.03384125
+0.95277703
+0.83488560
+-0.95948485
+-0.18040341
+0.96235228
+-0.16662532
+-0.98548869
+-0.53098166
+-0.83670717
+0.04246783
+0.20593870
+-0.01163161
+0.45469034
+-0.67783448
+-0.03812331
+-0.60308725
+-0.35452408
+-0.83127062
+0.25937402
+0.05438280
+0.80486274
+0.44112468
+-0.52475175
+-0.87676539
+-0.71324873
+0.39930296
+-0.55132058
+0.94507122
+0.31412351
+0.30176044
+0.56933224
+-0.26205957
+0.51293182
+0.99115133
+-0.08273917
+-0.11363864
+0.41408455
+-0.58914661
+0.77338707
+-0.94294508
+0.84734607
+0.89120591
+-0.30579805
+0.20252788
+-0.64669269
+-0.90036572
+0.33595848
+-0.32665890
+0.35521412
+0.84844697
+-0.35779649
+-0.19700336
+0.52489746
+-0.34850466
+-0.29353607
+-0.89108661
+0.11175072
+0.84500992
+-0.95616300
+-0.41633427
+-0.73409015
+0.46229577
+0.10284603
+0.17314422
+-0.48218143
+-0.48769969
+-0.19886357
+0.91568673
+0.98739064
+0.78229463
+-0.03948468
+0.81562090
+0.06581903
+-0.51506734
+0.82258952
+-0.85498977
+0.98415577
+-0.05377644
+0.74944091
+-0.02752274
+0.51708555
+0.25513291
+0.92796063
+0.31184602
+0.69916403
+-0.28502393
+0.55839992
+-0.32786936
+0.66218054
+0.42313540
+0.89756906
+-0.35508400
+-0.06333202
+-0.47589695
+-0.82918899
+0.93162417
+0.69728708
+-0.41394436
+0.00593019
+-0.77298361
+-0.70000353
+0.36589897
+0.55898380
+-0.26250738
+-0.94766646
+0.83612275
+-0.39304233
+0.49134779
+-0.24618936
+-0.07287139
+0.48914826
+-0.80080952
+-0.79225466
+0.63240409
+0.32352340
+-0.16941190
+0.68825245
+-0.31762272
+0.82793343
+0.40709758
+-0.59533998
+-0.13181967
+-0.33724600
+-0.37215990
+-0.16394424
+0.03235149
+-0.32420832
+0.93134987
+-0.73560062
+0.01934338
+-0.60031021
+0.63451076
+-0.34722793
+0.31008267
+0.94256198
+0.80389178
+-0.53320077
+0.05353975
+0.83182704
+0.64017594
+-0.09474063
+0.83971882
+-0.18785059
+-0.22181600
+0.90110707
+0.45292068
+0.78568196
+0.22455966
+-0.63436729
+0.29595935
+0.26706755
+0.22134221
+0.36088252
+0.56784761
+-0.03395438
+0.02944338
+0.37213361
+-0.20340002
+-0.71052590
+-0.17928839
+0.09316611
+0.60466588
+0.19122148
+0.99934340
+0.93856704
+0.68166721
+-0.05125672
+0.24798405
+0.67930961
+-0.80262086
+0.68533003
+-0.00496143
+-0.07116848
+-0.45125431
+-0.53652757
+-0.20547402
+-0.72601539
+-0.20520365
+-0.42025006
+0.95752263
+0.33768821
+0.02421868
+-0.23205781
+-0.03527892
+-0.87142548
+-0.84497894
+-0.52273142
+-0.65942633
+-0.16837806
+0.42844713
+-0.48019308
+-0.31397122
+-0.97267797
+-0.17108160
+0.72595108
+-0.20599616
+-0.40656024
+-0.77999768
+-0.36123282
+0.77339923
+-0.11484414
+-0.60771656
+0.71681428
+-0.56788185
+0.39568961
+0.24150825
+-0.77736066
+-0.12324417
+-0.46173882
+-0.22430360
+-0.42743909
+-0.01578748
+0.59103966
+0.43023634
+-0.23967707
+0.93269897
+-0.20252585
+-0.41901475
+0.59812880
+0.79999614
+0.05523789
+0.79679906
+0.57994413
+0.16706538
+-0.55990803
+0.98049271
+0.24050212
+0.04284859
+-0.91078757
+-0.59155226
+-0.67721418
+-0.41918749
+-0.14537424
+0.87422478
+0.59601164
+-0.76128726
+-0.87372345
+-0.56748334
+0.63607895
+0.34138656
+0.93901265
+0.56465983
+-0.62993670
+0.89781690
+-0.85746378
+-0.16133118
+-0.21079946
+0.92542231
+-0.93754087
+0.42127252
+-0.10899341
+-0.07145017
+0.64561355
+0.27054489
+-0.32848459
+0.51300120
+-0.04156530
+0.58684218
+-0.84043349
+0.14552569
+0.81992745
+-0.58495456
+-0.91976310
+-0.48225772
+-0.79127128
+0.16984212
+-0.78455508
+-0.09588647
+0.90833426
+-0.35515428
+-0.98110033
+-0.12372851
+0.92311084
+-0.73499423
+-0.29781860
+0.15710008
+0.76432741
+-0.99863206
+-0.13485873
+0.99345493
+0.34942186
+0.12369716
+0.27362549
+0.32902014
+0.02452838
+0.59312153
+0.76272261
+-0.80289012
+0.49602318
+0.59814382
+0.66402256
+-0.95313351
+0.88361061
+-0.99481568
+-0.29325658
+0.71659648
+0.66821158
+0.83026206
+-0.53380713
+-0.66460302
+0.77458322
+0.30109704
+0.48383307
+-0.94539728
+0.80392921
+0.75091279
+-0.11136961
+0.63261247
+0.90685010
+0.08666217
+0.75657153
+-0.73542154
+-0.48730028
+0.13913250
+0.01817286
+0.79968762
+0.42218816
+0.56682622
+-0.77634931
+-0.28256667
+0.28663301
+-0.48783141
+0.09007275
+-0.67966643
+-0.63395894
+-0.24300617
+0.49127722
+0.98335099
+-0.37085414
+0.14605343
+-0.42553842
+-0.29310894
+-0.97711134
+-0.50063753
+-0.19186914
+0.22826183
+-0.12244940
+0.50166225
+0.69483614
+-0.25923073
+0.05635691
+0.04689169
+0.10857844
+0.12615907
+0.69846022
+0.14421165
+-0.90432569
+-0.00964254
+-0.48072493
+0.94255245
+0.51076221
+0.74777067
+0.85041261
+-0.18195629
+-0.75240263
+-0.70648903
+0.41451764
+-0.15375453
+-0.47001243
+0.78661227
+0.20969748
+-0.99096473
+0.40973330
+0.94429731
+0.17307889
+0.28546154
+-0.01278931
+0.18244219
+0.14844096
+-0.95189691
+0.10852003
+-0.54014289
+0.66769910
+-0.87955778
+-0.64396930
+-0.86960220
+0.05536222
+0.36727858
+-0.40495747
+-0.12597597
+-0.46762490
+-0.23228741
+0.04524302
+0.06109059
+0.36077368
+0.67731357
+-0.63834795
+0.25071621
+-0.47402269
+-0.04957652
+-0.64972192
+-0.19854200
+-0.97978664
+-0.77995904
+-0.64594632
+0.02028000
+-0.53209531
+0.55325627
+-0.55040100
+-0.76886292
+-0.56861421
+0.97565603
+0.11606026
+-0.57661712
+-0.68698007
+0.72635007
+0.00511932
+0.24628973
+-0.04891264
+-0.72785741
+0.02373028
+-0.06893104
+0.83058977
+-0.49823034
+0.49945974
+0.32217324
+0.84644032
+-0.97501787
+0.01543701
+0.67129874
+0.22975600
+-0.81613915
+-0.12220234
+0.80708313
+-0.17788100
+0.61850142
+0.20370901
+-0.27830029
+-0.59012485
+-0.11395013
+-0.39307809
+0.08637047
+0.53076589
+-0.92756514
+0.43096280
+-0.44041407
+-0.83327430
+0.43951523
+0.51025391
+-0.15592492
+0.28607428
+0.09685659
+0.30444193
+-0.37891114
+0.35708761
+-0.66982025
+0.73001862
+0.44021082
+0.33815539
+0.86400759
+0.73210495
+-0.14064352
+-0.69883037
+0.81780628
+0.61440152
+-0.77899099
+-0.91593284
+0.52721586
+0.27876384
+0.79002598
+-0.09713871
+0.95607628
+0.46674639
+0.87334493
+0.12671727
+-0.51282241
+-0.90778924
+0.54689719
+0.57551308
+-0.61043709
+-0.84270921
+-0.14772918
+-0.82442549
+0.58942540
+0.36863601
+-0.19499907
+-0.57310743
+0.15001599
+0.61189928
+0.38212890
+-0.75093076
+-0.61924730
+-0.60445687
+-0.57822602
+-0.87682559
+-0.24926187
+0.59093603
+0.42143144
+0.20706768
+-0.48886254
+0.22470891
+0.19767737
+0.19908476
+-0.87687391
+0.88936651
+0.72847164
+-0.37895501
+0.42652071
+0.17250252
+0.32732356
+-0.38752687
+0.91089940
+-0.47887295
+0.29503429
+-0.40998888
+-0.31511420
+0.04733884
+0.79547501
+0.30569685
+0.90651155
+0.38535082
+-0.92455443
+-0.73341727
+-0.94792151
+0.90160441
+-0.96714197
+0.87440324
+0.31032884
+-0.91596947
+0.25577188
+-0.78529873
+0.34008467
+0.46432686
+-0.52759162
+-0.63391995
+-0.06200147
+-0.83091410
+0.22891748
+0.21009791
+-0.56898910
+0.82102132
+0.65114009
+-0.77327664
+0.21184611
+-0.68454984
+-0.19858348
+-0.48823112
+-0.40504259
+0.90491724
+-0.40563905
+-0.21514791
+0.85120058
+0.70553517
+-0.82810788
+-0.98975214
+-0.44655019
+-0.48387337
+0.84394741
+-0.53411430
+0.54772675
+-0.22377414
+0.43849587
+-0.15975606
+0.13572705
+0.16469347
+0.22769451
+-0.29858267
+-0.39435869
+-0.27361745
+0.90658927
+-0.09350175
+0.07605743
+-0.38012260
+-0.72105163
+-0.40923882
+-0.57373577
+-0.66139966
+-0.92506629
+0.78796315
+-0.54079607
+0.11784923
+-0.19943577
+0.91232991
+0.31177020
+0.20211589
+0.59636259
+-0.08379757
+0.49027181
+0.38458800
+-0.91953340
+0.23279572
+0.44150198
+-0.54267853
+0.90005898
+-0.73564211
+0.73585284
+-0.28131479
+-0.06111294
+0.15070534
+-0.17734617
+0.68421209
+-0.68643925
+-0.07659775
+-0.61582720
+0.54838538
+-0.05665177
+0.49385977
+0.62913096
+0.36796260
+0.19257069
+0.50184250
+0.19757891
+-0.10349905
+0.91403735
+-0.51410654
+-0.81458208
+0.09277153
+-0.59748074
+-0.33990401
+-0.63987151
+0.04274416
+-0.92018396
+-0.83811158
+0.23090470
+-0.35699254
+0.50366342
+0.91695225
+-0.51167744
+0.43836486
+-0.43632233
+0.72979534
+0.02450860
+0.41944718
+0.42959654
+-0.09919411
+-0.19814199
+0.47943664
+-0.30899465
+-0.36022538
+-0.46331555
+-0.87583328
+-0.12274623
+-0.53275225
+0.88008094
+-0.33041245
+0.59910822
+0.37113142
+0.25221765
+-0.24682540
+-0.54516304
+0.28848660
+0.84812176
+-0.47356594
+-0.71409768
+0.89749146
+0.85394537
+0.83212841
+0.55514669
+0.16650498
+-0.20929539
+-0.88419202
+-0.90393254
+0.91173041
+-0.58638775
+0.79462135
+-0.16210407
+-0.48417336
+0.81793630
+0.02565670
+-0.00665772
+0.40110648
+-0.03118950
+-0.72067940
+-0.68477127
+-0.94867576
+0.51523519
+0.31619942
+-0.81392038
+-0.40987223
+-0.70367700
+-0.65571177
+-0.17987579
+0.04136646
+-0.18476188
+0.40393996
+-0.90233640
+0.09827030
+-0.12591583
+0.49634826
+0.70922410
+-0.07041562
+-0.25139874
+-0.87143971
+0.19999516
+-0.96434305
+-0.18051451
+-0.15202415
+-0.57765496
+-0.84942353
+0.67363071
+-0.30278933
+-0.26489389
+0.11204982
+0.84160173
+0.31977808
+-0.73196292
+-0.41415274
+0.56102192
+0.84590554
+0.57186639
+0.95494497
+0.22827399
+-0.74671865
+-0.27566719
+0.68732464
+0.05148685
+0.49779880
+0.89769781
+-0.05857271
+-0.38049376
+0.08446848
+-0.58966640
+0.53555429
+0.02291417
+0.48091543
+-0.81960231
+0.38047206
+-0.77307226
+0.64904284
+0.87532532
+-0.14408469
+-0.28863198
+0.18410611
+-0.79894091
+-0.22712088
+-0.12314641
+-0.41916746
+-0.55492923
+0.43532228
+-0.66807139
+0.45189714
+0.04083312
+0.38970089
+-0.08011281
+0.39951980
+-0.64666060
+-0.60528210
+0.87353504
+-0.50929075
+0.87262261
+-0.57254699
+0.84180892
+0.55127919
+0.80650890
+-0.53254169
+-0.98235874
+-0.21940768
+-0.82860979
+0.63491952
+0.03168201
+0.44209898
+-0.68937463
+0.86307526
+-0.96869248
+-0.78704096
+-0.04403055
+0.65566707
+-0.27239037
+-0.80289970
+0.48206234
+0.50180411
+-0.79650895
+-0.06297565
+-0.03628033
+0.48747241
+0.96123683
+-0.59926909
+0.44245088
+-0.86895636
+0.22095716
+-0.51276314
+-0.58570889
+0.58058500
+-0.53544942
+-0.06690925
+-0.11333537
+-0.86095767
+-0.48440337
+0.08367705
+0.54879439
+-0.49647528
+-0.41814905
+0.08674705
+0.53577590
+0.32403684
+-0.84291059
+0.01154947
+-0.91503074
+0.48606622
+-0.98569909
+-0.92006067
+-0.70653015
+-0.13200343
+0.32533598
+-0.59083220
+0.73518252
+0.33809984
+0.73944974
+0.03753889
+0.10526752
+0.38877296
+-0.94450351
+0.02687037
+0.13605082
+0.66887558
+-0.99686284
+0.79234338
+-0.91031455
+-0.85772821
+-0.74107078
+0.26312643
+-0.83820244
+0.75613982
+-0.82937669
+-0.05279321
+-0.50165977
+0.63440022
+-0.27660797
+-0.91610511
+-0.27477374
+-0.30176151
+-0.72410885
+-0.93214575
+0.97166816
+-0.32125944
+0.03885607
+-0.77281027
+0.48731913
+0.13571675
+0.43979529
+0.27640837
+0.48558082
+-0.65192723
+0.24318007
+-0.75535916
+-0.99996312
+-0.06902454
+0.85678591
+-0.42984693
+0.84517649
+-0.10684616
+0.58488514
+-0.28191441
+0.50883607
+-0.53456477
+-0.02342601
+-0.97334537
+-0.80258873
+-0.45599281
+-0.65289431
+0.80334055
+-0.92668962
+-0.10899550
+0.65167630
+0.69203389
+0.30379713
+-0.65355071
+-0.92851067
+0.97213697
+-0.04760921
+-0.59956133
+0.26068032
+-0.56075254
+-0.76542257
+0.05556369
+0.78519130
+0.37112010
+0.60521376
+-0.16408837
+-0.74609536
+-0.68824369
+0.51457834
+0.10032153
+-0.43545645
+0.01993537
+-0.05670887
+-0.98908874
+0.77725792
+-0.33475316
+0.83008289
+-0.28452986
+-0.92174849
+-0.88878630
+0.24344599
+-0.20553756
+0.92629826
+0.43028641
+-0.49455321
+0.90619087
+-0.28442025
+-0.62179226
+-0.97416068
+0.86990464
+-0.60239214
+0.15999651
+0.46342921
+0.55591702
+-0.54682401
+-0.30635852
+0.14862168
+-0.94622716
+-0.18123263
+-0.29790795
+-0.25310820
+0.48804808
+0.52640629
+0.10030663
+-0.20641041
+0.14351213
+0.91441500
+0.43390656
+-0.29624164
+-0.17490637
+0.37813103
+-0.22319686
+0.62069166
+-0.34148252
+-0.18848002
+-0.97883200
+0.58494270
+0.02976227
+0.72172511
+-0.41252065
+-0.65103033
+-0.03067684
+-0.97243391
+0.43221688
+-0.97124558
+-0.24473387
+-0.76849194
+0.19048595
+-0.32770789
+0.45143270
+0.64301777
+0.03798294
+0.35304105
+0.88007438
+-0.88725053
+-0.19472754
+0.91894865
+-0.87094863
+0.45612395
+0.16954732
+0.55560052
+-0.63343745
+-0.74014318
+0.27563608
+0.16006505
+0.14529049
+0.80923915
+-0.10324818
+-0.85359064
+-0.94186888
+-0.75112246
+-0.72603127
+0.88425636
+0.48157895
+-0.92575379
+-0.22229248
+-0.70619079
+-0.58310434
+0.98280656
+0.05769432
+0.04485953
+0.65649366
+-0.75904080
+-0.85569358
+-0.42228121
+0.06083918
+0.28947985
+0.04666829
+-0.15892172
+0.55136347
+0.06667435
+0.13485384
+0.68189037
+0.65376508
+0.17153072
+0.63315094
+-0.57865039
+-0.99009767
+-0.24532866
+0.78133857
+-0.79324375
+-0.92183724
+-0.94338302
+0.74455690
+0.46291554
+0.74483538
+-0.79217140
+-0.34356844
+-0.63175824
+0.73858297
+0.75316906
+0.47911143
+0.30990362
+-0.14302284
+0.04116213
+0.84484267
+-0.60506171
+-0.87759552
+0.32455158
+-0.69635093
+-0.98980043
+0.58274198
+-0.65310788
+-0.12450284
+0.26386845
+-0.82195641
+-0.57669446
+-0.69120264
+0.48260677
+-0.49589545
+-0.40297771
+0.44321764
+-0.96866594
+-0.11800140
+0.15474188
+-0.02173054
+0.22416973
+-0.15814555
+-0.42477715
+0.78600097
+-0.12779355
+-0.67419395
+0.89359248
+0.16978323
+-0.47167009
+0.44772840
+0.33829045
+0.95732737
+-0.66935167
+-0.79880153
+0.85329640
+-0.29675299
+-0.22489971
+0.12484670
+0.81217742
+0.10846329
+-0.27880555
+-0.57952416
+0.73256755
+-0.98736795
+0.46396649
+-0.89015026
+0.28726959
+0.15944052
+-0.30058587
+-0.95169717
+-0.25172877
+-0.10983378
+-0.18487966
+-0.93400045
+0.88687778
+-0.12672645
+-0.64481711
+0.46418035
+-0.82604039
+-0.12068081
+-0.36934203
+0.99618113
+0.14154506
+0.97401392
+-0.10331118
+0.34551191
+-0.48746836
+0.49385750
+0.05778587
+-0.32952088
+0.72510874
+0.58964837
+-0.72425240
+0.60726380
+-0.35867870
+-0.22504669
+-0.04929912
+-0.04725939
+-0.59580678
+-0.18211567
+0.69692564
+-0.28289217
+0.13849032
+0.19540215
+-0.29372305
+0.44012249
+-0.11292613
+-0.65956837
+-0.64880279
+-0.02535385
+0.30878460
+0.44705939
+-0.47199571
+-0.43848515
+-0.89035259
+-0.97917736
+0.53594327
+0.76333189
+-0.75500578
+0.79140675
+-0.44119281
+-0.85972230
+-0.33301157
+-0.49792677
+-0.79390256
+0.05329657
+0.95578218
+-0.23211563
+-0.76897644
+-0.86194390
+0.97801816
+-0.20552808
+0.89837146
+0.35551775
+0.68451297
+-0.84687196
+-0.77089131
+-0.97588735
+0.39472032
+-0.42187589
+0.00068533
+0.22829139
+-0.32839715
+0.93719995
+-0.01392627
+0.44021320
+-0.53466675
+-0.91695701
+-0.58469346
+-0.69341618
+-0.18422365
+0.80979991
+-0.61114839
+-0.64402512
+-0.08206809
+-0.73773137
+0.19423831
+-0.46949136
+-0.56524512
+-0.39346784
+0.95619726
+0.51368940
+0.38497388
+-0.70658275
+0.19372725
+-0.83791298
+-0.62316847
+0.71160090
+0.58721983
+-0.41122919
+-0.69904497
+-0.89083566
+0.89673269
+0.36027682
+0.78036904
+-0.36955410
+0.92290425
+-0.72497144
+-0.25743014
+0.11919498
+-0.56378052
+-0.39991426
+-0.31297457
+0.60878444
+0.49761868
+-0.81929579
+-0.35083699
+-0.80726226
+-0.36113858
+0.44362497
+0.96446133
+0.86039805
+-0.69506907
+-0.27993536
+0.44024062
+-0.17857939
+-0.64057946
+0.44782555
+0.05050242
+-0.17087984
+-0.24184030
+0.12572014
+-0.58577672
+0.49386263
+-0.56558433
+-0.27456713
+0.43013501
+-0.47772533
+0.25446618
+-0.80523753
+-0.58684701
+-0.65619132
+-0.58328483
+0.17645144
+0.24737513
+-0.03160268
+0.58323407
+0.56719291
+-0.80208930
+0.37378311
+0.26312327
+0.19763255
+-0.05853635
+-0.85114680
+-0.12524003
+0.10326850
+0.80476880
+0.28026938
+0.68740940
+-0.54599786
+0.97721386
+-0.59031546
+-0.53431916
+-0.65189299
+0.84041035
+-0.87956513
+-0.68812543
+0.65723026
+-0.11313170
+0.37964869
+-0.87296252
+-0.39883393
+0.58375537
+-0.21949488
+-0.38073277
+-0.68635413
+-0.61516505
+0.43001592
+-0.66512033
+0.23637354
+0.19512296
+0.04561412
+-0.85660413
+-0.95961446
+0.70659459
+0.59179926
+0.78306913
+-0.63890341
+0.20709360
+-0.40837032
+0.84559309
+0.85951495
+-0.83441235
+-0.65539598
+-0.27995026
+0.66582644
+0.96173441
+-0.48225856
+-0.31090415
+0.94940066
+0.16771686
+-0.83188915
+-0.46662647
+0.11847365
+0.52271402
+0.86402464
+0.13730037
+-0.55906266
+-0.43567801
+0.28040850
+0.70047140
+-0.51033425
+0.04101837
+0.14518678
+-0.59718865
+0.62985766
+-0.87543063
+-0.17001843
+-0.97620137
+-0.34497738
+-0.37504399
+-0.63759121
+0.41142154
+-0.02201122
+-0.63049337
+0.78878331
+-0.22528756
+-0.87533142
+0.16628146
+0.19322693
+-0.96573253
+0.82124031
+0.07114840
+-0.80196196
+0.08377635
+-0.57337308
+-0.19387239
+-0.76348133
+0.47721648
+0.13644099
+0.53975189
+-0.53130984
+-0.65079007
+-0.86151446
+0.10890460
+0.75786459
+0.76945436
+-0.28680307
+0.61664474
+0.95348239
+0.44486618
+0.02731884
+0.52420747
+0.03360415
+-0.02057964
+0.21412134
+0.22105217
+-0.87320839
+0.68213594
+-0.27593207
+0.38971949
+-0.44558740
+-0.06609923
+-0.21154851
+0.84529555
+-0.14428973
+-0.95209672
+-0.85111198
+-0.79257612
+-0.26256955
+-0.22929209
+-0.74533036
+0.46943450
+0.03855217
+0.27288818
+-0.29833537
+-0.64358601
+-0.40008461
+-0.32185006
+-0.18881238
+0.19401646
+0.30815053
+0.94128656
+-0.24537581
+-0.28127390
+-0.71998566
+0.54643238
+-0.92752425
+0.49198174
+0.45706463
+-0.76384059
+0.83154213
+-0.62845284
+0.43267334
+0.36041796
+0.54953885
+-0.46604598
+0.56312883
+-0.07191229
+0.01200449
+0.80513012
+-0.39916885
+-0.87371221
+-0.22982234
+-0.47631931
+0.98964155
+0.31307256
+0.25818205
+-0.96241216
+-0.25376701
+0.80128264
+-0.66413698
+-0.07351732
+-0.45215875
+-0.00549614
+0.97556722
+-0.36611176
+-0.98781624
+0.81668580
+0.88072121
+-0.62397623
+0.71013355
+0.96889579
+-0.93584286
+-0.52574685
+-0.88305438
+0.58788645
+-0.23308915
+0.19794989
+-0.35745007
+-0.79167926
+0.07327759
+0.70660079
+-0.64881659
+0.98846865
+-0.10061926
+-0.36036217
+0.98995137
+-0.54616392
+-0.34840727
+-0.48999804
+-0.63360387
+0.16157281
+-0.25036722
+-0.67899674
+-0.19073820
+-0.47389752
+0.79634118
+-0.37270463
+-0.59834647
+-0.81456156
+-0.69563127
+-0.92829727
+-0.11585093
+-0.71360150
+0.19103050
+-0.84479567
+0.68682265
+-0.12193781
+0.74588096
+-0.54523978
+0.87880039
+0.31231022
+0.66039979
+0.49135613
+0.35191500
+0.03333092
+0.45259511
+0.87968040
+-0.80380866
+-0.20761329
+0.64951050
+0.33735931
+0.07372165
+-0.99606759
+0.36894786
+-0.61436716
+-0.64856800
+0.76739931
+-0.09328198
+0.62123287
+0.88396788
+0.40080070
+0.43444490
+-0.82043055
+-0.34759206
+0.69741929
+0.40467727
+-0.14130545
+0.13354158
+-0.66731837
+-0.54633823
+-0.01160741
+0.97586787
+-0.69427329
+-0.82234913
+0.80885375
+-0.13518059
+0.68358183
+0.96006083
+-0.39427990
+-0.16074878
+0.74550476
+-0.58301493
+-0.33921959
+-0.58378306
+-0.01194294
+0.00863370
+-0.35817037
+-0.57911919
+0.32538870
+0.83695262
+-0.72694648
+-0.29055893
+-0.33104076
+0.19154757
+0.52958242
+-0.81120211
+-0.76754658
+-0.14919268
+0.08055190
+0.44041239
+-0.93942600
+-0.26475978
+-0.41106825
+0.53891396
+-0.86510730
+-0.01423562
+-0.78303436
+0.64213302
+-0.63416820
+-0.31608910
+-0.23606666
+-0.78735970
+0.86247713
+-0.62205181
+0.72246775
+-0.53964982
+-0.78750595
+0.63826849
+-0.81635866
+-0.51659086
+0.19412184
+0.64393401
+-0.75108799
+0.44182229
+0.13702512
+-0.55941585
+-0.77086601
+0.77365088
+0.17401290
+0.75674689
+-0.01247174
+-0.35558951
+0.26727855
+0.97052824
+0.02541113
+-0.94785760
+-0.21248078
+-0.08690614
+0.85871840
+-0.39258832
+0.28850365
+0.92559600
+-0.57579133
+-0.64025202
+0.66253102
+0.03564012
+-0.20752013
+0.07917917
+-0.67745587
+0.21404886
+-0.84399717
+-0.00678170
+-0.65180841
+0.46846151
+0.40722513
+0.25326705
+0.80677724
+0.46588266
+0.21003783
+-0.03098297
+0.59040654
+0.12694013
+-0.52531230
+0.56249523
+-0.18569905
+-0.41590720
+-0.10266316
+0.18048906
+0.56767595
+-0.76218246
+0.65685821
+0.62798071
+-0.18197656
+-0.60297599
+0.44864178
+-0.89570620
+0.66325068
+-0.30151635
+0.01106811
+0.88394582
+-0.99272107
+-0.40145540
+0.88942969
+0.36434388
+-0.67607072
+0.55675542
+0.20337689
+-0.85277648
+0.66606951
+-0.53338566
+-0.10773897
+-0.04023910
+0.32849061
+0.27181482
+0.71461236
+0.84529579
+-0.55742642
+0.79496622
+0.78268671
+0.58540678
+-0.50141981
+-0.27982879
+0.13300204
+0.45129716
+-0.00031281
+-0.15576059
+0.99506533
+0.70276678
+0.06872618
+-0.02586710
+-0.24484527
+0.75747049
+0.23171818
+0.48028326
+-0.36109036
+-0.55204737
+0.10872090
+-0.71073720
+-0.15141666
+-0.36578488
+-0.66375133
+0.17065489
+-0.88657120
+0.99026597
+-0.42665988
+0.23133576
+0.31980264
+-0.28500062
+-0.96094804
+-0.42937422
+0.27722085
+0.96563756
+0.69778156
+-0.81546921
+-0.16611135
+0.03407705
+0.45126927
+0.31059086
+-0.97365659
+0.98819137
+0.26958048
+0.81663239
+0.57696474
+0.08644569
+0.48150826
+0.07957363
+-0.30094045
+0.95464766
+-0.37379825
+0.35712016
+-0.75903378
+-0.60100886
+-0.84315282
+0.94092059
+0.23199451
+0.20255375
+-0.53848642
+-0.52030435
+0.62754250
+0.97017205
+0.61617911
+0.07167184
+-0.33253634
+-0.09113801
+0.63361776
+-0.05781162
+0.16771650
+0.26076674
+0.32160652
+0.90864670
+-0.06492162
+-0.07869023
+0.70880342
+-0.78229496
+-0.78661904
+0.60147619
+-0.50231034
+-0.39624745
+-0.16087079
+0.05847275
+0.44198394
+-0.65650383
+0.03040743
+-0.51078972
+0.95475674
+0.96258545
+0.68986332
+0.84758759
+0.60213888
+-0.56908810
+0.76884460
+0.67700052
+0.72197747
+0.48139536
+-0.51365122
+0.08028841
+0.75521231
+-0.90792789
+-0.13517505
+-0.84915435
+-0.21837795
+0.97853017
+0.51350129
+0.58007622
+-0.99942529
+0.32254255
+0.77670360
+0.42432129
+-0.83283970
+0.58648336
+-0.83133632
+-0.98632122
+0.80094123
+-0.81295353
+0.71299195
+-0.71367016
+0.30883455
+-0.73090979
+-0.84709631
+0.01041996
+0.20318282
+-0.33639026
+-0.55326998
+0.83999932
+0.00598657
+-0.82699639
+-0.96924775
+-0.38208324
+-0.47119194
+0.31931317
+-0.68308213
+0.03662157
+0.68921387
+0.98380709
+0.84907985
+0.94490302
+-0.80341212
+-0.35369939
+-0.45438737
+-0.19362891
+-0.12825906
+0.40780306
+-0.27207768
+-0.37555408
+-0.84598428
+0.55751908
+-0.45045406
+0.67809105
+-0.79613733
+-0.20664716
+-0.63449559
+0.44851756
+-0.21120709
+0.88748968
+0.55104923
+-0.72008249
+-0.37512183
+-0.84836370
+-0.85126188
+0.81147218
+-0.41293114
+0.65415668
+-0.56300667
+0.59116590
+0.59677017
+0.24615717
+-0.65011069
+0.43976593
+0.27828705
+-0.73581839
+0.66006887
+0.39322412
+0.70102084
+-0.62809747
+-0.41557097
+-0.48826557
+-0.99046349
+-0.69079816
+-0.46795428
+-0.59818143
+0.35820103
+-0.05390167
+0.35147369
+-0.71180901
+0.03596306
+0.60756028
+0.39431703
+-0.59455046
+-0.72246784
+-0.99350812
+-0.59485322
+-0.72221112
+-0.14871866
+-0.81076932
+0.31456220
+-0.27701211
+-0.18823373
+-0.29675245
+-0.21607506
+0.34319055
+-0.85451198
+-0.80551326
+0.86867905
+-0.44076431
+-0.46473145
+-0.42258322
+0.27309430
+0.13847041
+0.74393582
+0.10456157
+-0.47831273
+0.47605789
+0.57911646
+0.47419369
+-0.90241498
+0.23089731
+0.16165340
+-0.45187974
+0.75923383
+0.24782288
+0.82426345
+0.87000644
+0.43224347
+0.62747133
+0.17538428
+0.52632260
+-0.37610984
+0.83955681
+0.46057820
+0.90001345
+0.10284531
+0.23792672
+0.33983719
+-0.50227940
+0.98711276
+0.12231481
+0.29982364
+-0.84905216
+-0.85199104
+-0.20206815
+-0.51597405
+-0.21770918
+0.81665174
+-0.18351048
+0.46103661
+-0.81027083
+0.45639779
+-0.94344136
+0.56305615
+0.31616467
+0.51475300
+-0.10859913
+0.54965488
+-0.94995541
+0.76314883
+-0.15144316
+0.90895500
+-0.16598742
+0.39278213
+-0.43219692
+0.98738732
+-0.04808855
+0.22856549
+0.45590967
+0.47519474
+0.29298278
+-0.17463909
+0.87354560
+0.63445118
+0.47062808
+-0.35233817
+0.06134576
+0.71522096
+0.53055674
+0.97449259
+-0.29062119
+-0.89851380
+0.51355941
+0.14668897
+0.86552894
+0.34719789
+0.85985816
+-0.62548435
+0.93780196
+0.99498630
+0.31268477
+0.10610771
+-0.11674279
+-0.27229077
+-0.50180092
+-0.39851290
+-0.97925026
+-0.26809460
+0.89499080
+-0.83845794
+-0.58086753
+0.13011813
+0.88941038
+0.01299906
+-0.93735392
+-0.51217759
+0.81580961
+0.77365196
+0.47661829
+0.47572756
+-0.50236911
+0.44062054
+-0.39120203
+-0.42984402
+0.45428956
+-0.97513307
+-0.65905789
+0.82368195
+0.44608915
+-0.82793501
+0.54624808
+-0.38096422
+-0.95260347
+-0.29217279
+-0.85560492
+-0.20178801
+0.28623414
+-0.87040749
+-0.52467996
+0.39317906
+-0.74940336
+-0.98314856
+-0.16516894
+0.80473852
+0.57310331
+0.75052440
+-0.99565551
+0.42974699
+0.24432111
+-0.07194638
+0.83733642
+-0.54683852
+-0.87569633
+0.88803875
+0.69977057
+0.89974010
+0.14877033
+0.90683699
+-0.81643644
+-0.40648991
+0.06122959
+-0.25800413
+0.55714524
+0.35496688
+0.18534112
+0.25153077
+-0.03014308
+0.79772627
+0.54640007
+-0.34053653
+-0.25198525
+0.81079483
+0.41135907
+0.36139536
+-0.70343852
+-0.97911692
+0.93877506
+-0.69383988
+-0.49995923
+-0.53423306
+-0.32444495
+0.23313057
+0.87511015
+0.83737707
+-0.93573626
+-0.58349702
+-0.72373912
+-0.99922207
+-0.88469515
+-0.62982848
+0.71416295
+-0.38667607
+0.14672589
+-0.22101647
+-0.84747984
+-0.61334890
+-0.63102934
+-0.85188155
+0.20657563
+0.53548932
+-0.18243682
+0.23295510
+0.46118355
+0.79844439
+0.14843500
+0.16974640
+0.73388410
+-0.16349566
+-0.93908397
+-0.75844423
+-0.62064132
+-0.33030701
+-0.56358358
+0.95705521
+-0.87316261
+0.80003273
+-0.15731966
+0.43508029
+-0.47785223
+0.36067569
+-0.69281223
+-0.40666515
+-0.47923809
+-0.54018897
+0.18509662
+0.63775790
+-0.65430206
+0.53416872
+0.83154106
+-0.02621979
+-0.41102290
+0.24134207
+-0.29452217
+0.81065774
+-0.53080601
+0.75322032
+-0.11716288
+0.86070371
+-0.51123542
+0.40149605
+-0.06808031
+0.22868121
+0.11885226
+-0.31274682
+-0.72225633
+-0.75311507
+-0.37584692
+-0.27328128
+-0.22629178
+-0.39236587
+0.74857652
+0.11104345
+0.09284186
+-0.23801285
+-0.48337233
+-0.05746228
+-0.62473121
+-0.63906917
+0.00107086
+-0.05324107
+0.48928392
+-0.22710210
+0.64627445
+0.81423926
+0.58531415
+0.89272404
+-0.69251442
+-0.46379477
+0.51414132
+-0.81218253
+0.95266211
+0.41103685
+0.89490891
+-0.43242615
+-0.58833578
+0.87003362
+-0.50522593
+-0.98882254
+-0.09085536
+0.39636791
+0.91348720
+-0.84489977
+0.56736612
+-0.75524135
+0.52234447
+-0.61448166
+0.56535923
+-0.19728482
+0.24135649
+0.44626427
+0.76576924
+0.43690097
+0.28901947
+-0.55489716
+0.26140797
+0.72870708
+-0.40583128
+0.22379684
+-0.92433624
+-0.47790903
+-0.51497734
+-0.03476465
+-0.65060970
+0.12780404
+0.56487072
+-0.54427925
+0.17617643
+-0.31808633
+0.73321700
+0.82391179
+0.89544237
+0.69519019
+-0.14236569
+0.45216000
+0.62755108
+0.86746728
+-0.15972650
+-0.16653144
+0.86511099
+0.13671517
+-0.60393396
+-0.02896911
+-0.27779436
+0.09661388
+0.15698111
+-0.48643196
+0.43214035
+0.97450995
+-0.87145570
+-0.97680658
+0.31150615
+-0.07943207
+-0.98433396
+0.53873146
+-0.78475964
+-0.27111822
+0.49649036
+-0.44344121
+-0.25447094
+-0.22261930
+-0.19343352
+0.24776852
+0.46347201
+0.37910914
+0.31441617
+-0.57693893
+0.59189701
+0.59532011
+0.55501318
+-0.69068390
+-0.28647429
+-0.86283828
+-0.59511966
+-0.33232069
+0.47667634
+-0.48717225
+-0.78174791
+0.93445361
+-0.50019160
+-0.93249656
+0.28620791
+0.09542835
+0.95822930
+0.83305526
+0.67746091
+-0.27213675
+0.12837267
+-0.04967618
+0.99035895
+0.11853039
+-0.79701830
+-0.62614921
+-0.87261409
+0.97915125
+-0.45730126
+0.14575481
+-0.08777219
+0.79227495
+-0.71273521
+-0.23964244
+-0.35862571
+0.39957356
+0.09799492
+-0.84480530
+0.24975288
+-0.68750051
+-0.82760677
+0.23118329
+0.96629405
+0.16878664
+-0.78868672
+-0.31923097
+-0.85761364
+-0.75568666
+-0.55181831
+0.73001349
+-0.55709079
+0.96618390
+-0.17987198
+-0.81612355
+0.80486989
+-0.48499590
+-0.05989319
+-0.43900698
+0.43741870
+-0.65641218
+0.09704649
+-0.68526405
+0.43952179
+-0.60157737
+0.05798078
+-0.82352114
+-0.16059268
+0.95488930
+-0.58416468
+0.15726578
+0.76144052
+0.94599628
+0.99044836
+0.13272452
+0.85333931
+-0.95993388
+-0.70062613
+-0.03658152
+0.41263056
+-0.86708595
+-0.77164081
+-0.22527379
+-0.08704025
+0.30105901
+0.37928808
+-0.59471703
+0.76730669
+0.98786700
+-0.93157802
+0.67230070
+-0.39722133
+-0.70799515
+-0.24788791
+0.14607430
+-0.84814239
+0.71060872
+-0.34564233
+-0.12446660
+-0.72385710
+0.89542496
+0.34588087
+-0.08659643
+-0.79098715
+-0.15407407
+0.61770904
+-0.43329257
+-0.35864568
+-0.68773004
+-0.98443689
+0.48782420
+-0.84460868
+0.34597564
+0.80735719
+0.81977499
+0.37045419
+0.71379089
+-0.84853908
+0.82786036
+-0.82229029
+0.92028916
+-0.38056940
+-0.35364717
+0.55489469
+0.90205133
+-0.73740435
+0.32922518
+0.24742925
+-0.80246878
+0.03498542
+0.59256971
+-0.79942608
+0.95488513
+-0.80813478
+0.94337046
+-0.30251765
+0.41770458
+0.09411812
+0.14005315
+0.94156229
+-0.75530840
+-0.11364692
+-0.06912887
+0.99332821
+-0.58551320
+0.32084608
+0.04782212
+-0.65686542
+-0.52719349
+-0.16568244
+0.89235365
+-0.38510060
+0.16334772
+-0.37149572
+-0.68622887
+-0.41013885
+0.80047500
+-0.32766002
+-0.35751706
+0.42815709
+-0.30575997
+-0.66795558
+-0.40739167
+-0.22173136
+-0.88991745
+-0.53045592
+-0.47415435
+-0.37440699
+0.65379298
+-0.70957789
+-0.55864868
+0.96802044
+0.68718708
+-0.68155316
+-0.01395595
+0.48734725
+-0.87819873
+-0.45444989
+0.17805767
+0.33297408
+-0.54911682
+0.64023304
+-0.46776545
+0.11685121
+0.56743789
+0.86274087
+-0.87138911
+-0.34411818
+-0.07207727
+-0.17931759
+0.17609847
+0.17010248
+0.65938914
+-0.00877905
+0.38839483
+0.83717620
+-0.41407830
+0.47418082
+0.50862563
+-0.94590738
+-0.68140948
+0.59214675
+-0.90081148
+0.52702188
+-0.52085522
+-0.23510373
+-0.36405224
+-0.91043282
+-0.98153339
+0.93665016
+0.92178547
+0.02245951
+-0.02828979
+0.42595160
+0.81326640
+0.44766641
+0.38528252
+-0.75847080
+0.32547963
+-0.99751157
+-0.08323914
+0.53621542
+-0.96887976
+-0.33611906
+-0.80206135
+-0.59614047
+0.33803880
+0.05660653
+0.71577168
+-0.05215544
+0.36463535
+-0.37289917
+-0.21056390
+-0.56642175
+0.87310016
+-0.28102571
+-0.29078591
+0.80671620
+0.72581637
+0.86136854
+-0.10507029
+-0.28735268
+0.97811913
+-0.17142838
+-0.36460871
+0.82952332
+-0.27831358
+0.33534026
+0.05786419
+-0.06345797
+0.76152027
+0.31960166
+-0.81951824
+0.90431619
+-0.44073468
+0.69104886
+0.62111974
+-0.24591887
+-0.41269302
+-0.72685954
+-0.89755317
+0.79542053
+0.04410911
+0.99928355
+0.57306051
+0.88829112
+-0.85117207
+0.82140481
+-0.28547567
+0.95373011
+0.53154600
+0.98898399
+0.71052098
+0.34348989
+-0.25676471
+-0.80815545
+-0.92201681
+-0.44931889
+0.75523269
+0.81843030
+0.97575033
+-0.62880081
+0.76731980
+0.60184407
+-0.87079442
+-0.23694193
+-0.43603528
+0.13034260
+0.78591788
+0.49090886
+-0.76993911
+-0.48361295
+0.82626271
+0.37658155
+-0.24690390
+-0.86209992
+-0.14811540
+0.17185998
+-0.87085739
+0.65024710
+0.87323511
+-0.32099003
+-0.24634409
+0.35545087
+-0.57781065
+0.61350739
+0.81906271
+0.34441006
+0.41961932
+0.91514337
+-0.24127585
+-0.37924480
+-0.89399780
+-0.48477674
+0.05155444
+-0.13963866
+-0.80401917
+0.49299061
+0.65223360
+0.97121787
+-0.76751754
+0.04597771
+-0.03137642
+-0.90050005
+0.37361598
+-0.90197738
+0.05954754
+-0.96807511
+-0.27410352
+0.16232574
+0.28715193
+0.24596620
+0.90996206
+0.91397524
+0.84298110
+0.42574310
+0.53814363
+-0.07318789
+0.31792235
+-0.62909272
+-0.82425961
+0.60210860
+-0.27489126
+0.96880126
+0.67068601
+0.13842094
+0.22805774
+0.19715703
+0.15904820
+0.22634137
+0.42937982
+0.26602662
+0.97655654
+-0.59653705
+0.15514874
+0.99297667
+0.32431889
+-0.77684093
+-0.36110598
+0.87193805
+-0.15122316
+-0.39687401
+0.87200502
+0.53192395
+-0.97751607
+-0.29979053
+0.30128481
+0.79205317
+-0.19044295
+-0.08788634
+-0.69916970
+0.40611273
+-0.30639991
+-0.17057008
+-0.66119434
+0.45055982
+0.79070498
+-0.51933568
+-0.69605749
+0.93203997
+-0.26005949
+0.94538427
+0.37017603
+0.69419205
+0.01514968
+0.55340927
+-0.50466868
+-0.87248952
+-0.52295580
+-0.25435418
+0.54811621
+0.41232610
+0.30822539
+-0.06498897
+-0.70482591
+-0.26211828
+-0.06435645
+0.28453672
+-0.08897060
+-0.44241279
+0.05354881
+-0.82713953
+0.73528862
+0.73648190
+0.90558600
+-0.97930001
+0.96115041
+-0.24143809
+-0.38929796
+-0.90860806
+0.75348592
+-0.38370609
+0.36695695
+-0.41256845
+0.55049205
+0.39390600
+0.36856866
+-0.35796875
+-0.66965660
+-0.64625302
+0.55834329
+-0.35481393
+0.93009710
+-0.74276173
+0.13971341
+0.73509085
+0.43328631
+0.36639762
+-0.70851782
+-0.61251551
+-0.44047463
+-0.33235437
+0.01694858
+0.70653999
+0.34077573
+0.85875595
+0.39022219
+0.49082196
+0.35466492
+0.94571781
+-0.11205119
+-0.00500143
+-0.65087694
+0.35665989
+0.99083328
+0.85899556
+0.42951751
+0.46237242
+0.63430059
+-0.47955543
+0.21437764
+-0.42329717
+0.63214910
+0.24356902
+-0.35411000
+0.64615083
+0.91151619
+0.89593959
+0.25646281
+0.56820226
+-0.28809005
+-0.88889800
+0.05055439
+0.12213719
+0.11351454
+-0.29671878
+-0.76895772
+0.36954772
+0.24443579
+-0.96960283
+0.58487022
+0.51165235
+-0.53930351
+-0.46486050
+-0.77629703
+-0.84548476
+0.12354815
+-0.00269574
+-0.24141097
+0.25840342
+-0.49793351
+0.00663364
+0.09094548
+-0.86212292
+-0.46424747
+0.46736586
+0.95330656
+-0.28755838
+-0.62575316
+0.42568111
+-0.03827566
+0.49420679
+0.72680092
+0.63464141
+-0.00656837
+0.09623456
+0.82485926
+-0.65981445
+-0.28402078
+-0.58553135
+0.81665695
+0.96412408
+-0.34853476
+0.44815254
+0.46028435
+-0.75550951
+-0.30512506
+-0.73143542
+-0.25329870
+0.00102079
+0.05997658
+-0.13475114
+0.53484058
+0.50999713
+-0.78788517
+0.68575335
+0.98239541
+-0.84102815
+0.61480880
+0.77696633
+-0.37541693
+0.85609901
+-0.63990429
+0.10809124
+-0.77664420
+0.53680718
+0.11174738
+0.70879841
+-0.56319904
+0.38872898
+0.51477456
+0.22338557
+-0.76830836
+0.99902678
+0.36682630
+-0.88742222
+-0.43053120
+-0.32150292
+-0.50479960
+0.69980669
+-0.62498543
+0.53417790
+0.04627252
+0.56952405
+0.55675685
+0.13822937
+0.25775898
+-0.96046885
+0.71766591
+-0.75792967
+0.57339299
+-0.02980304
+-0.64418814
+-0.83029623
+0.95100796
+-0.85094492
+0.73258615
+0.83765447
+0.93348539
+-0.92491160
+-0.80225264
+0.60818875
+-0.41786766
+-0.62419316
+-0.88970173
+-0.54084879
+0.18807840
+0.37849045
+-0.11791575
+0.27346253
+-0.27565444
+0.62174225
+-0.20405376
+0.99537957
+-0.24546301
+-0.23800308
+-0.17789304
+0.50998843
+0.12263751
+0.13209796
+0.37830722
+-0.41027659
+0.62797070
+0.48672628
+-0.14628077
+0.61665428
+0.44316113
+-0.67419082
+-0.02146322
+-0.82714994
+-0.86281627
+0.61425114
+-0.07024783
+0.95359504
+0.55186713
+-0.32790619
+-0.45902157
+-0.83585955
+-0.70668024
+0.53112638
+-0.98346584
+-0.26560324
+-0.23600233
+-0.08601654
+-0.23634547
+0.47690880
+-0.23786265
+0.08662653
+-0.76020618
+-0.99667720
+-0.61260983
+-0.26843852
+0.19567633
+0.60415912
+0.16256082
+0.88216531
+-0.83848575
+-0.18621337
+0.88662004
+0.08397377
+-0.63146508
+0.68416882
+0.07363319
+-0.31207573
+0.21494448
+-0.11010879
+0.84171009
+-0.57533848
+-0.64617237
+-0.62299305
+-0.92901438
+0.44385958
+0.41697717
+0.07267022
+-0.08916724
+-0.23502439
+-0.85694709
+-0.33052105
+0.13247788
+-0.73173770
+0.42792678
+0.45000207
+0.32923663
+-0.71239203
+-0.47942042
+0.87832630
+-0.78336053
+-0.95930439
+0.09419143
+0.52662146
+0.34591985
+-0.57216930
+0.69019806
+-0.90940815
+0.41469979
+0.67669439
+-0.57900408
+0.81826818
+0.59141469
+0.19658709
+-0.56789526
+0.26448953
+0.49041903
+0.49679732
+0.92283559
+-0.75159690
+-0.27903491
+-0.11509269
+0.87890887
+-0.60562232
+0.43556309
+-0.96030914
+0.36144459
+-0.57455885
+0.27774513
+-0.02558297
+-0.04973638
+0.69946015
+0.25935423
+0.18797398
+-0.89990181
+-0.36693966
+-0.32770574
+-0.39842862
+-0.45776045
+-0.42956918
+-0.26308376
+0.12506771
+-0.65763834
+-0.62309688
+0.27166545
+-0.07171535
+-0.88057101
+0.53348553
+-0.43823910
+-0.59863424
+0.75672889
+-0.67364082
+0.62763870
+0.37336862
+-0.63975066
+0.60592830
+0.84529674
+-0.42092633
+-0.44614077
+-0.87444998
+0.84337282
+-0.12986803
+-0.20181817
+-0.58869681
+0.67989113
+-0.15426403
+-0.33150866
+-0.71131033
+-0.88074270
+0.17583343
+0.68708851
+0.25616498
+-0.24694719
+-0.01010228
+-0.88879886
+-0.18028253
+-0.38575807
+0.66811043
+-0.20425727
+-0.03541503
+-0.04547064
+-0.26247727
+0.24079672
+0.47743421
+0.58093943
+0.96846944
+-0.46452113
+-0.63236794
+0.69448392
+-0.06313792
+-0.52866034
+-0.26456379
+0.63840655
+-0.54637984
+0.65213134
+0.64966685
+0.93331388
+0.45220142
+0.10733049
+0.23190257
+-0.85051220
+-0.46261685
+-0.89714334
+0.66953218
+0.89290798
+-0.26616144
+-0.35639989
+-0.02777719
+-0.73013318
+-0.77019577
+0.03718102
+0.57941830
+-0.13232595
+0.85501516
+0.25227809
+-0.59202680
+-0.05938804
+-0.53236178
+0.88629985
+-0.73100090
+-0.35196882
+0.04908693
+0.18597388
+-0.47643632
+-0.76816000
+-0.40514982
+0.60655320
+-0.99326628
+-0.84212612
+0.92440677
+0.24325979
+-0.87849089
+0.01012087
+0.26298332
+0.11079121
+0.25801861
+-0.17292690
+0.99686027
+-0.55183765
+0.77831995
+0.38497603
+0.94177997
+-0.57643190
+-0.18784505
+-0.20330012
+-0.70594743
+-0.73211911
+0.12532485
+-0.71138203
+-0.83744097
+-0.51412219
+0.36729836
+-0.10313350
+-0.55479699
+-0.46735913
+-0.74633399
+0.03051853
+0.01801157
+0.42779839
+0.00831044
+0.12744522
+-0.15312356
+-0.22198993
+-0.07254934
+-0.33186448
+0.49345291
+-0.87816031
+0.10467744
+0.40458834
+0.51353991
+0.60925806
+-0.80102809
+0.75693405
+0.90118694
+-0.01650125
+-0.82750981
+0.33904552
+-0.15798360
+-0.96296813
+0.60796952
+0.81763864
+-0.50690565
+-0.17549503
+-0.08925921
+0.40265548
+-0.37637615
+0.11470962
+0.95058894
+0.69346166
+-0.22396278
+0.52935112
+0.34989309
+-0.34947193
+0.04291201
+-0.81665497
+-0.96709681
+0.88356495
+-0.05172622
+0.27853918
+0.57149541
+-0.88896015
+-0.74757397
+-0.82768750
+0.89125609
+-0.59546617
+0.66776788
+-0.23399603
+-0.59873608
+-0.94066989
+0.85640562
+0.30274069
+0.88439584
+0.78589499
+-0.04866564
+0.20931649
+-0.96376760
+-0.28226542
+0.14659071
+0.81774986
+-0.51042491
+-0.23581803
+0.07924139
+-0.55034924
+-0.14723486
+-0.82871658
+-0.33679080
+0.54903615
+0.40213883
+-0.72615820
+-0.14014554
+0.46610582
+-0.14609820
+-0.78680466
+0.90871119
+0.75390422
+0.24465108
+0.80931878
+-0.63948733
+-0.94606722
+-0.58751279
+0.64913857
+0.20422840
+-0.30391997
+-0.46459246
+-0.40373755
+0.59353602
+-0.22801012
+0.07515132
+-0.25004596
+0.23874295
+0.43604052
+-0.81753497
+0.87560618
+-0.81984711
+0.29086411
+-0.75634678
+-0.30055439
+-0.79870649
+0.99331903
+0.84439778
+-0.27760142
+0.19986558
+-0.98793792
+0.38497043
+-0.58277288
+-0.05653656
+-0.82457255
+-0.72758669
+0.54253614
+-0.09102303
+0.29013479
+0.72023296
+0.87362683
+0.81204438
+-0.26815170
+0.42533994
+-0.45206773
+0.07377803
+-0.23025423
+0.97942650
+0.75716412
+0.10116875
+-0.66539600
+-0.26608646
+-0.50195831
+-0.60380527
+0.92518854
+0.43367076
+-0.88025504
+-0.54103082
+0.27621675
+-0.10466677
+0.87238836
+-0.68706194
+0.87652361
+-0.95629799
+-0.59404203
+-0.97916293
+-0.16728354
+-0.58901283
+-0.41141009
+-0.64264905
+0.34745800
+-0.02197593
+0.05385923
+-0.58595416
+-0.83075082
+-0.36367333
+-0.85347338
+0.97646940
+0.22370899
+0.38205504
+-0.25452513
+0.49868619
+-0.46156847
+-0.16068387
+-0.44820684
+-0.98498927
+-0.15647072
+0.61392987
+0.38063848
+-0.29124910
+-0.65182751
+0.39161372
+0.19205785
+0.69834769
+-0.48934144
+0.50365090
+0.14909744
+-0.60929024
+-0.40512890
+0.31188822
+0.76118624
+0.89051294
+-0.97147084
+0.48450017
+-0.90333867
+-0.71263698
+0.87846816
+0.01035774
+0.34749746
+0.19418120
+0.48184347
+0.19771779
+0.67320740
+-0.51983070
+0.53830552
+0.13560951
+0.07978570
+0.18547189
+-0.45640165
+-0.17011565
+-0.08583730
+-0.34991872
+0.05978918
+-0.35419613
+0.50924122
+0.66957581
+-0.58362317
+0.07910049
+-0.04194385
+-0.52472883
+-0.33775169
+0.48238027
+0.30067050
+0.28099394
+0.63669562
+-0.23187423
+-0.90630765
+-0.20914787
+-0.56428632
+-0.60876143
+-0.71509585
+-0.06029612
+0.13169324
+0.38014603
+0.64665723
+0.03008950
+0.05189264
+0.84367228
+-0.87736683
+-0.10722321
+-0.30276728
+0.68312263
+-0.25299585
+-0.70972800
+-0.00578845
+0.13227510
+0.26111031
+-0.55802000
+-0.77404162
+-0.04981863
+0.95646322
+-0.02409607
+-0.25582731
+0.28229356
+0.41092360
+-0.17418015
+0.02391434
+-0.42649269
+-0.39069468
+-0.54657158
+-0.96605769
+0.95192909
+-0.78317264
+-0.28404820
+-0.69806227
+-0.11178052
+0.87352586
+-0.07858306
+0.16310430
+-0.20760828
+0.31756938
+0.25081742
+-0.63131431
+0.95675468
+-0.37368703
+-0.21147138
+0.69062006
+-0.05572921
+-0.58303982
+0.61820972
+0.11687839
+0.50706887
+0.59645104
+0.96417451
+0.33425188
+-0.92774316
+-0.09274721
+-0.36925513
+0.71810317
+0.91226900
+-0.00161195
+-0.09856373
+0.88712275
+0.34494507
+0.23543203
+0.09987032
+0.72596800
+0.33937395
+0.96854722
+-0.60029209
+-0.10688728
+-0.50434381
+-0.87776673
+-0.24038434
+-0.56300893
+-0.89461169
+-0.92498653
+0.83996964
+-0.04474133
+0.87699914
+0.11580884
+-0.17731255
+0.55641568
+0.61648536
+-0.36505163
+-0.53443131
+0.16857564
+-0.64760658
+-0.16272759
+0.05480468
+0.69160688
+0.81749308
+0.96358025
+-0.28717816
+0.65761673
+-0.99549434
+-0.01844800
+0.71387255
+0.74130535
+-0.05852550
+-0.89414509
+0.41838801
+0.95486212
+-0.10480016
+-0.00232613
+0.89929748
+0.83511066
+-0.30650359
+-0.63271886
+-0.79374109
+0.19957972
+-0.25732309
+-0.73385468
+-0.59649825
+0.01853967
+-0.67168614
+0.36182845
+0.96966708
+0.25887942
+-0.73769155
+-0.33918393
+-0.47039872
+0.80162048
+0.52899659
+-0.79271060
+-0.47244132
+-0.09038270
+0.87115884
+-0.95642139
+0.37372756
+0.96689069
+-0.62132445
+0.30171716
+0.91494071
+-0.25896811
+0.97087228
+0.91027415
+-0.56035545
+-0.79880226
+0.26717770
+-0.93331441
+-0.43793905
+-0.89040630
+-0.66612533
+-0.99617519
+-0.58894295
+0.95947635
+0.85019469
+0.48230267
+0.08277678
+0.98088908
+-0.73158833
+-0.76198448
+-0.39959157
+0.48351276
+-0.59600157
+-0.72824115
+0.32342255
+0.80441856
+-0.06126654
+0.23302186
+0.92657769
+0.82265544
+-0.14158350
+-0.66913643
+-0.31555438
+-0.98617358
+-0.60063249
+0.33538902
+0.80776596
+-0.24567854
+-0.83137919
+0.29840541
+0.31222439
+-0.09060252
+-0.90579541
+-0.03082210
+0.50247812
+0.70476890
+0.09680617
+0.57899225
+0.39489877
+-0.08665484
+-0.00424212
+0.09804201
+-0.93865109
+-0.17907125
+-0.55487058
+-0.60765067
+0.15866363
+-0.57327521
+-0.98197504
+0.91367805
+-0.61149865
+-0.26285654
+0.95187438
+-0.81816500
+0.31072247
+-0.10422021
+0.26631951
+0.97916591
+-0.67610615
+-0.33745384
+0.16114938
+-0.55370197
+-0.25405335
+-0.76245627
+-0.44358379
+-0.40543020
+-0.16441172
+0.79655075
+-0.34729731
+0.04818487
+-0.42380041
+-0.35835099
+0.66747499
+-0.82755511
+0.64972544
+-0.84403613
+-0.63147449
+0.74627876
+0.10674858
+-0.63053527
+-0.67843074
+-0.58960593
+-0.03844482
+0.70650840
+-0.06073344
+0.17728066
+-0.61115915
+0.65299904
+-0.66811991
+0.79061639
+0.37649727
+0.66441739
+-0.25727236
+-0.05530733
+-0.47553349
+0.87153733
+-0.07470292
+0.38520038
+-0.48930877
+0.26120567
+-0.35380536
+-0.20999026
+0.09643459
+-0.14902502
+-0.71182922
+-0.53766581
+-0.62416992
+0.14763546
+0.58620644
+-0.89105713
+-0.86629400
+-0.29930830
+-0.34539872
+0.25685096
+0.98838210
+-0.19905519
+0.11283600
+-0.73027840
+0.07789409
+-0.50897595
+0.53463030
+0.66655123
+0.12031543
+0.32029963
+-0.65960452
+0.42774808
+-0.79988886
+-0.03285944
+0.97241855
+0.20328271
+0.18404174
+0.19577825
+-0.43963647
+0.85956252
+0.32712841
+0.16298985
+-0.68860584
+0.15343440
+0.39647710
+0.31269729
+-0.26990426
+-0.24665970
+-0.56118840
+0.90055394
+-0.47350442
+0.71006191
+-0.74844745
+-0.00525492
+-0.33389139
+-0.40501922
+0.78974068
+0.65953922
+-0.34971821
+-0.34853333
+-0.81541800
+0.79138970
+-0.26394951
+-0.29341465
+-0.97351908
+0.71838748
+-0.54758263
+0.38438642
+0.16492105
+-0.95074137
+0.74632192
+-0.91964553
+-0.47293633
+-0.54146701
+-0.68889499
+-0.74890891
+0.71527088
+-0.45317554
+0.48428476
+0.01501381
+-0.03757149
+0.83978200
+0.18341196
+-0.96928156
+-0.40848869
+0.38776863
+-0.27072090
+0.96561432
+0.87688422
+0.58392632
+0.84288299
+-0.25274086
+-0.41910768
+0.69840562
+-0.21704406
+-0.16119748
+0.33938038
+-0.24125004
+0.28283334
+0.92987120
+-0.09103614
+0.32280731
+0.61465359
+-0.65798193
+0.72371262
+-0.18515233
+-0.62282839
+0.26075188
+0.19139880
+-0.20983918
+-0.24269524
+-0.33908937
+0.61370439
+-0.07298353
+-0.50950656
+0.54454639
+-0.88524889
+-0.15812602
+-0.66664192
+0.09651475
+-0.46173057
+0.38580527
+0.46739764
+0.76797274
+-0.51437203
+-0.79417921
+0.83413077
+-0.32745837
+0.68808436
+0.93483707
+-0.26474107
+-0.74130415
+0.05467071
+0.52968175
+-0.66381315
+-0.16283683
+-0.34606337
+-0.42228379
+-0.60627991
+0.01832573
+-0.73032406
+0.73761739
+-0.32576023
+0.79946140
+0.22692847
+0.20753336
+0.48408115
+-0.81839144
+-0.94382575
+0.45971012
+-0.88117984
+0.68788242
+0.08736110
+-0.22180724
+-0.54190007
+0.88424695
+0.31395471
+0.47878325
+0.21266508
+0.83876705
+-0.64772096
+0.44915497
+-0.48048925
+0.62643373
+0.42470253
+-0.36436546
+-0.01657569
+0.29897690
+-0.82301870
+0.07606566
+0.07356143
+-0.58243680
+-0.73745015
+-0.50107098
+0.50676298
+-0.13372672
+-0.94353703
+-0.16620570
+-0.63361317
+0.60319889
+0.31278276
+-0.26962376
+-0.73298085
+-0.81291491
+0.85572362
+0.03537476
+-0.76010360
+0.74577141
+0.86803150
+-0.18705875
+-0.97689785
+-0.24233609
+-0.00855476
+-0.25691301
+-0.00036031
+0.55066979
+-0.81733957
+0.43524015
+-0.28846705
+0.36219954
+0.79915118
+-0.81354363
+-0.57761642
+0.71733677
+0.94261122
+0.82385015
+0.44117355
+-0.03703082
+0.62345493
+0.51813304
+0.79894519
+-0.86647697
+-0.55873516
+0.37764549
+-0.95253049
+-0.32543206
+-0.12427878
+0.78662980
+-0.10956323
+0.50433266
+0.34766817
+0.51777387
+-0.25658607
+0.84133542
+0.03869164
+0.32873797
+-0.93609261
+0.68464577
+-0.39026994
+0.45899320
+-0.97763744
+0.96673620
+-0.70052835
+0.96784830
+-0.01748502
+0.84267843
+-0.55828583
+-0.33782774
+0.30785346
+0.56131208
+-0.98005674
+0.01967430
+-0.32643658
+-0.26770639
+-0.55671719
+0.08056438
+0.23246372
+-0.51162201
+0.38236618
+0.92123473
+0.48393977
+-0.92668692
+0.91565311
+0.53064072
+-0.21703696
+0.51498222
+0.46396232
+0.81296337
+-0.36644387
+0.49782634
+0.95000505
+0.91360855
+0.71379232
+-0.18311077
+-0.40643775
+-0.89980362
+-0.08405638
+-0.65894374
+-0.51111978
+0.59485471
+0.26851439
+-0.85062377
+0.70507526
+0.46890140
+0.21311808
+-0.33055860
+-0.77712251
+0.93521059
+0.31357884
+0.98673534
+0.79408562
+-0.67884159
+-0.06021535
+0.62649727
+-0.22461927
+0.28844333
+0.55802310
+0.68482614
+0.56319797
+-0.67607141
+0.73624277
+-0.90762006
+0.89782369
+-0.81778127
+0.52673984
+0.35297990
+0.08138347
+0.35902584
+0.00412142
+-0.17111313
+0.58458066
+0.46060252
+0.29188192
+0.12758410
+-0.29993683
+0.28189409
+-0.43972623
+-0.33563715
+0.24186254
+0.92288494
+-0.97639508
+0.27742112
+-0.55581066
+0.18309319
+-0.31199217
+0.86074686
+0.94542146
+-0.96764600
+-0.95005080
+0.28942180
+0.03011882
+-0.69219562
+-0.42854172
+-0.76248786
+0.36397254
+0.81210017
+-0.71226183
+0.28960884
+-0.40333921
+0.66482925
+-0.40939885
+0.59423280
+0.28278649
+0.02738583
+-0.45483655
+-0.10985726
+-0.44717658
+-0.60305098
+0.33272314
+0.66520476
+0.42591333
+-0.59765235
+-0.45751536
+-0.75368580
+-0.18117803
+-0.48975694
+0.62707877
+-0.88633280
+0.31989658
+0.53702676
+0.96143734
+-0.94507689
+0.51117766
+0.58045161
+0.84740698
+-0.16759712
+0.58630586
+0.44936228
+0.24530053
+-0.74848965
+0.62016737
+0.97806227
+0.10365486
+0.58140409
+-0.57542232
+-0.92666763
+0.50919127
+0.96954536
+-0.51970121
+-0.37916911
+0.61064792
+-0.31259304
+-0.23887628
+-0.70472226
+0.92434490
+0.87864590
+-0.90632116
+0.92191112
+0.69979715
+0.10970628
+-0.85304168
+-0.89267168
+0.69573486
+-0.86554547
+0.27511978
+0.78684151
+-0.70328075
+-0.89194110
+-0.17136437
+-0.26560128
+-0.65192938
+-0.35652179
+-0.89148252
+0.20609677
+0.33330917
+-0.90554193
+-0.94950266
+-0.85327782
+-0.98456343
+0.94536257
+-0.52661732
+-0.37990665
+0.82929087
+-0.97190440
+-0.78284171
+0.65983903
+0.21246696
+-0.19640064
+-0.15576404
+-0.86425671
+-0.09632361
+0.14305186
+0.47560012
+-0.29090011
+0.60091472
+0.41965687
+-0.99955623
+-0.76394434
+-0.01790416
+-0.54117754
+-0.16333306
+0.35204482
+0.11364663
+-0.13355261
+-0.83139074
+0.11494815
+0.32446122
+0.40822875
+-0.36927140
+0.43398297
+0.84363747
+-0.12348521
+0.54210103
+0.24098420
+-0.19362229
+-0.36162376
+0.19379115
+0.41963768
+0.73396766
+-0.61154062
+-0.80737175
+-0.47975659
+0.57873249
+-0.72566867
+0.48964465
+0.96095705
+-0.36164623
+0.63203776
+0.38812912
+0.28554940
+-0.05603397
+0.28047001
+0.54256070
+-0.15160149
+-0.20675391
+-0.52614603
+-0.71200150
+0.05831174
+-0.24934393
+0.67786460
+0.17020544
+-0.71018473
+0.86566169
+0.06106547
+0.54019355
+-0.65512915
+0.80492342
+-0.28138404
+-0.16571028
+-0.48008952
+0.31921035
+-0.20285090
+-0.34722999
+0.24224014
+-0.63554496
+0.65086929
+-0.87283861
+-0.83235460
+0.28716635
+0.61124393
+-0.87274454
+-0.56090205
+0.01857343
+0.97105820
+-0.00098211
+-0.01953349
+-0.94704631
+-0.48342368
+0.66808587
+-0.24164833
+0.34073862
+-0.40870319
+-0.01895945
+0.82276574
+0.63481468
+0.79745593
+-0.20369577
+0.28429917
+0.62710362
+0.32821087
+-0.07282809
+-0.17408965
+0.28340383
+0.98609248
+0.77142870
+-0.84246111
+0.82804871
+0.16359735
+-0.48070514
+-0.27071840
+-0.29654491
+-0.52270696
+-0.77522632
+-0.80897705
+-0.59422094
+0.17256439
+0.82573605
+-0.60099357
+0.71613646
+-0.61954579
+-0.87731289
+-0.14753592
+0.12799501
+0.02448320
+-0.92985855
+-0.23364460
+-0.63619873
+0.73250544
+0.76118827
+0.10792851
+0.07435203
+-0.94865632
+0.94856107
+-0.58720624
+-0.64076850
+0.95116961
+0.45813596
+0.47934961
+-0.99495632
+0.34414327
+-0.35246348
+-0.43509704
+0.71003437
+0.73446727
+-0.99168088
+-0.27053016
+0.60962391
+0.76353574
+-0.64200646
+0.75210965
+0.51585197
+-0.38099158
+-0.54553172
+0.95635796
+0.36142385
+-0.14937967
+-0.93353045
+0.82737041
+-0.99615607
+0.93951190
+-0.78073594
+-0.63085300
+0.26174068
+0.61352801
+0.58116472
+-0.40640420
+-0.95110669
+-0.26825833
+0.37628412
+0.53922594
+-0.70767784
+0.34148598
+0.23345077
+-0.39889193
+0.38641906
+0.46963656
+0.45269740
+-0.43598425
+0.92677534
+0.61956763
+-0.50490746
+0.12105811
+-0.54491991
+0.53638673
+0.78200638
+0.63404858
+0.36877334
+0.26764500
+-0.25692618
+-0.84684205
+0.66796899
+0.68544745
+0.22736263
+-0.64001805
+-0.28383869
+0.73120236
+-0.60677287
+-0.85166188
+-0.56260753
+-0.87302785
+0.12892890
+0.09457278
+0.86218703
+0.21034336
+0.62603903
+0.29993820
+-0.90379673
+0.85811901
+0.74174523
+0.25244415
+-0.55641139
+-0.81207322
+-0.98658142
+0.27056324
+0.81443393
+0.09277678
+0.58897066
+0.79440808
+0.78059995
+0.19404066
+-0.79672188
+0.22639346
+0.21145403
+-0.79059497
+-0.39004982
+-0.21726507
+-0.06163645
+-0.99391505
+-0.17378348
+0.33829939
+0.65994442
+0.03431034
+-0.35169113
+-0.39742559
+0.42778242
+0.69117248
+-0.98048889
+-0.85949224
+-0.02846658
+0.38912487
+0.28631330
+0.82875967
+-0.07591283
+-0.21404672
+0.49459541
+-0.37858409
+-0.34177786
+-0.98140141
+-0.37165415
+-0.43745220
+0.80681968
+0.51144373
+0.39429450
+0.59689152
+-0.31718808
+0.02483082
+0.75443006
+-0.11099076
+-0.26385748
+-0.00523365
+-0.80015355
+0.07843280
+-0.82075621
+-0.99069502
+-0.96482131
+-0.81336258
+0.34950423
+0.72564161
+-0.49086511
+0.10780263
+0.57093036
+0.17354167
+0.87741411
+-0.07846224
+0.62122238
+0.97329569
+0.86877179
+0.35006893
+-0.46233702
+-0.74135435
+0.49845946
+-0.81799616
+-0.76811424
+0.80414069
+-0.33173215
+0.10822368
+-0.24921644
+-0.27876258
+0.66167927
+0.23282957
+-0.51645222
+0.14871597
+-0.80090012
+0.47118068
+-0.21158874
+-0.90936020
+-0.87052791
+0.60213459
+-0.61655891
+-0.41362655
+0.37612092
+0.20051134
+-0.68951225
+-0.65365839
+0.77198946
+0.73857629
+-0.56276375
+0.44359756
+0.60490489
+0.22565758
+0.39859164
+0.07632279
+0.37503767
+0.11894703
+-0.82853113
+-0.79691866
+-0.71894476
+-0.07989651
+0.40197909
+0.17403364
+-0.10392988
+0.76557779
+0.16076136
+0.32057810
+0.13639438
+-0.43620306
+0.21368456
+-0.95335989
+-0.63345471
+0.98173082
+-0.41872227
+-0.93075480
+-0.81646723
+-0.01721644
+-0.84440850
+0.24398780
+-0.03585136
+0.90408158
+0.90773833
+0.00095260
+0.11707199
+0.93581426
+-0.51108834
+-0.05167681
+0.57072580
+-0.47201419
+-0.26744783
+-0.06365013
+0.45254433
+-0.37227488
+0.09225476
+0.68324935
+0.50990736
+-0.32954514
+0.44057667
+0.95442903
+0.53132796
+-0.19204867
+-0.03916287
+-0.12825221
+-0.78313930
+0.95041323
+0.28506899
+0.63390684
+-0.47131956
+0.61348510
+0.72050214
+0.17327976
+0.32892454
+-0.46504384
+-0.48541659
+0.45576680
+-0.32900470
+0.98971188
+-0.64000240
+-0.93535967
+0.46156406
+0.24622643
+-0.02695733
+-0.69285622
+0.28117466
+0.09132648
+0.57193720
+-0.89473353
+0.39929557
+0.92831278
+-0.25378865
+0.11743426
+0.38760507
+0.13812983
+-0.37267005
+0.37431061
+-0.65070656
+0.59106338
+-0.47371274
+0.97194481
+-0.78287007
+0.33056951
+0.96560013
+0.45356047
+-0.51133218
+0.00732148
+-0.74503282
+-0.07437962
+0.80886590
+-0.99941110
+0.31190312
+0.98977637
+-0.64739680
+0.39923298
+-0.55665743
+0.84055173
+-0.83933723
+-0.12227595
+-0.93680253
+-0.04607797
+-0.74901682
+-0.05378890
+0.36490512
+0.79632926
+-0.19940579
+-0.76121935
+0.18751585
+0.46905136
+-0.30945766
+-0.65130633
+-0.29318398
+-0.73091796
+-0.65936428
+0.26906335
+0.68144453
+-0.26773149
+0.99275267
+0.72075498
+0.35531449
+0.09436905
+-0.14987361
+-0.55938351
+-0.99660558
+0.33705389
+0.75506294
+0.13146317
+-0.92571390
+0.47013509
+0.34076953
+-0.65496233
+-0.77879827
+-0.22077763
+0.69812286
+0.60183156
+-0.60928911
+0.72418427
+-0.11591882
+-0.45348960
+-0.36036319
+0.26598203
+0.44615495
+0.68581927
+-0.33961928
+-0.66802627
+-0.41381478
+-0.82968260
+0.24947202
+0.04495835
+-0.58634549
+-0.21527404
+-0.57351631
+-0.81694236
+-0.93603315
+0.17315459
+0.92856967
+0.79238701
+0.93491316
+0.56670237
+0.57627976
+-0.05947715
+0.78393948
+-0.09806871
+0.46681476
+0.34885597
+-0.42986256
+0.71439326
+-0.96180174
+-0.14980924
+0.11900520
+0.00053012
+-0.67848170
+-0.25956428
+0.72697306
+0.24424160
+-0.81393975
+0.63641787
+-0.18961632
+-0.30214131
+-0.54465863
+0.33004165
+0.03421807
+-0.35041314
+-0.59887654
+0.89625025
+0.59811223
+0.08718705
+0.97072649
+0.12195909
+-0.20700949
+-0.59825599
+0.93271863
+0.42497599
+-0.12901604
+-0.77580473
+-0.01102060
+0.20146453
+0.98595703
+-0.39020181
+0.64359808
+0.71821666
+-0.59665999
+0.46063995
+-0.36326241
+-0.93749039
+0.45699048
+0.36300838
+-0.57027191
+-0.00560939
+-0.90454797
+0.34472311
+0.97443366
+-0.28915691
+0.45228553
+0.02800310
+-0.12791121
+-0.02762938
+0.21856368
+-0.83975902
+-0.63506967
+-0.60991436
+0.70021939
+0.34200835
+-0.51950520
+-0.99375555
+0.66778457
+-0.77016044
+0.15960050
+0.20649576
+-0.88314484
+0.62054861
+-0.40402782
+0.77649140
+0.46884108
+0.01203668
+-0.92739488
+0.44980443
+0.78423905
+-0.21660018
+-0.81547992
+-0.22581112
+-0.25093186
+0.28892291
+-0.28543627
+-0.18213189
+0.62367928
+-0.24325854
+-0.53127974
+-0.16629797
+-0.00841504
+-0.06980777
+-0.90983568
+0.40992033
+-0.95968238
+0.47201908
+0.57492101
+0.82391036
+-0.43617213
+-0.45805752
+0.58977497
+0.78729618
+0.74349332
+-0.17936844
+0.83170331
+-0.20623159
+0.12726080
+-0.14406663
+0.72218871
+0.41674161
+-0.22760868
+-0.45841610
+0.57842577
+-0.13195598
+-0.50996792
+0.89910948
+-0.05462170
+0.80303597
+-0.79749778
+-0.47663558
+-0.47858125
+0.58843493
+0.81995249
+0.16148651
+0.98798060
+-0.29596168
+-0.88105819
+0.94311297
+0.09288418
+-0.27487499
+0.55158818
+-0.74001041
+0.03051281
+0.14423382
+-0.39248538
+0.80563855
+-0.83618994
+-0.74877033
+0.68706501
+0.96078515
+0.10257924
+0.01740611
+0.43063891
+0.40119708
+0.90241528
+0.87058103
+0.76830578
+0.23048007
+-0.08755517
+-0.55225798
+0.27197373
+-0.22738379
+0.06919074
+0.70993423
+-0.99265259
+0.28750229
+-0.09898841
+-0.38461912
+0.53588784
+0.08385396
+0.83315659
+-0.15698200
+0.55114782
+0.93517053
+0.38528240
+-0.77573031
+-0.81047523
+-0.44016606
+-0.50136226
+-0.24983191
+0.54088473
+0.97215343
+0.37353373
+0.08860254
+-0.79692432
+-0.69435310
+0.47664928
+-0.95878840
+-0.70618060
+0.57041466
+0.76512122
+0.15351665
+0.88197398
+-0.24321145
+0.98383582
+-0.30117708
+0.65434456
+0.88195872
+0.57696176
+0.00091517
+0.92649770
+0.76271307
+-0.37017721
+0.47027159
+-0.60645398
+-0.80683228
+0.41853833
+-0.18293995
+0.66810155
+0.59596574
+-0.54390320
+-0.28502405
+-0.90042681
+0.50693715
+0.94217277
+0.17958724
+-0.51445684
+-0.64157614
+-0.48553765
+-0.06826735
+-0.11993432
+-0.24803424
+0.93988252
+-0.32082158
+-0.50525975
+-0.71452749
+0.65075266
+0.89003968
+0.67964637
+-0.48510647
+0.73248243
+-0.49819094
+-0.87515654
+-0.34739113
+-0.41428018
+-0.66275409
+0.77706814
+0.99457240
+0.56424820
+0.55884218
+0.17457205
+0.22489264
+-0.26414430
+0.08985594
+-0.04474873
+-0.98649761
+0.20247325
+-0.06609241
+0.54278345
+-0.81486380
+-0.70079312
+0.55891683
+-0.76578890
+0.46179513
+-0.71565008
+0.83770101
+0.60418758
+0.56133546
+0.46816714
+-0.67904812
+-0.37466127
+0.26522164
+0.11430788
+-0.84288465
+-0.37203038
+-0.79605282
+-0.41942704
+0.60334960
+-0.68840254
+-0.90806492
+0.58086580
+-0.82739931
+0.66109961
+0.52602235
+-0.33132887
+0.36489968
+0.10918638
+0.95491435
+-0.73396455
+0.66106323
+-0.38319486
+0.26999068
+-0.44354784
+-0.23030257
+0.47069168
+0.62229836
+-0.21368086
+0.69547641
+0.78521347
+-0.73970109
+-0.31067795
+-0.46611005
+0.31489503
+0.68942654
+0.92741323
+0.98728025
+0.30212259
+0.01282418
+0.50490689
+0.73440504
+0.53107357
+0.55918312
+0.79199493
+0.71227038
+0.73844540
+0.88862264
+0.57424688
+-0.89731448
+-0.90296037
+-0.48435950
+-0.54215035
+-0.68787286
+-0.41804165
+0.78435683
+-0.94933166
+0.87287104
+0.31184351
+-0.08781922
+0.03984833
+0.08109748
+0.06193733
+0.72919667
+-0.46979135
+-0.51190853
+-0.71049133
+-0.52218923
+-0.27123880
+-0.68458235
+0.34145665
+0.14493787
+-0.23913783
+0.05557752
+0.17807865
+0.92323923
+-0.01365751
+0.12848341
+-0.58601961
+0.45172071
+-0.69417968
+0.98980343
+0.76138663
+0.89224994
+-0.80340806
+0.67438388
+-0.24129820
+-0.00459611
+0.68642712
+-0.23464203
+0.91880286
+0.19037986
+-0.32233018
+-0.17102945
+0.15718377
+-0.17557651
+-0.33734548
+-0.86017224
+0.86349046
+0.18626297
+-0.73177132
+0.11927426
+-0.09295845
+0.40811527
+0.71646106
+-0.72919151
+0.31321824
+0.65192986
+0.86298180
+-0.19684744
+0.76657569
+-0.37902093
+0.49482739
+-0.68601462
+-0.43942422
+-0.38867164
+-0.31543678
+0.15638423
+-0.79635006
+-0.37819445
+0.64218938
+0.30356443
+0.43474531
+-0.34165907
+-0.84190413
+0.82848263
+0.93338931
+0.13591075
+0.83108592
+-0.21514457
+0.54629362
+0.09488261
+-0.16545862
+-0.15091318
+0.27551627
+-0.17295831
+0.56624413
+0.34054637
+0.80094445
+-0.84995659
+0.51088965
+-0.14186102
+-0.03778160
+-0.15135026
+0.65583265
+-0.50713676
+0.99828172
+0.97790265
+-0.36341012
+0.96644509
+-0.02515209
+-0.01251256
+-0.78004864
+-0.94378767
+-0.65597716
+-0.81191254
+0.20742416
+0.02033377
+0.44314063
+0.47276938
+-0.15535688
+0.40994108
+0.13747501
+0.83602619
+0.34459686
+0.14182687
+0.43474364
+0.40045261
+0.87422371
+0.30825102
+-0.12083125
+0.05252945
+0.45702767
+0.03074849
+-0.75691919
+-0.33435643
+0.31108737
+0.98317432
+0.94767952
+0.50289035
+0.93847013
+0.73698413
+0.34036136
+0.37305284
+0.24024534
+0.28206527
+-0.21084964
+-0.16528690
+0.04608405
+-0.80505463
+-0.08034003
+0.23915315
+0.43020952
+-0.76094609
+0.37815905
+-0.35202438
+-0.28715664
+-0.09933382
+0.86012459
+-0.95863597
+-0.20597810
+0.47722220
+0.93423080
+-0.26981908
+0.60887480
+0.26630282
+-0.99464439
+-0.36455154
+-0.26002026
+0.28904212
+0.70782769
+-0.63992792
+-0.01877224
+0.69077742
+-0.46418595
+0.02252412
+-0.73984420
+-0.20028460
+0.57106292
+0.54720879
+-0.84923039
+-0.97421380
+-0.88543604
+0.65507150
+-0.75937228
+0.80420220
+0.64462006
+-0.25188929
+-0.61088890
+0.72474813
+-0.69423568
+-0.88894886
+0.05152214
+-0.22340035
+0.00977600
+-0.25736970
+0.88387430
+0.03376794
+-0.08049279
+-0.91474324
+-0.68108037
+0.89051437
+-0.75077415
+-0.32404363
+0.21725225
+-0.95896487
+-0.58113819
+-0.47893941
+0.65920949
+0.68899107
+-0.04531193
+0.34305573
+0.59125900
+-0.90412487
+-0.09423947
+-0.21959919
+-0.64440057
+-0.84187235
+0.03215241
+-0.36417657
+0.06719017
+-0.06225431
+-0.66960117
+-0.93707563
+-0.89194275
+-0.75327978
+-0.57180229
+-0.14625466
+0.46273720
+-0.39527929
+-0.83119579
+0.53009474
+0.42139745
+0.75740612
+-0.75475062
+0.53602099
+0.47075069
+-0.74804315
+0.68274093
+-0.17907870
+0.62576938
+-0.86101872
+-0.12335956
+-0.01962250
+0.58144832
+0.12255502
+-0.53906521
+0.95796812
+0.47321677
+-0.39397824
+-0.60471162
+0.05204022
+-0.38997078
+-0.16339439
+0.41744888
+-0.11329097
+0.59137964
+-0.86666137
+-0.66215345
+-0.73640847
+0.72840929
+-0.06133801
+-0.28293341
+0.85585952
+0.94725692
+-0.67731115
+0.08077013
+0.12181389
+0.00336576
+0.67671859
+-0.81833287
+-0.81538278
+0.87585211
+0.56225789
+0.10060382
+0.89745367
+-0.63329813
+0.64289904
+0.66538513
+-0.10259664
+-0.13209927
+-0.79975069
+-0.52828497
+-0.95810131
+-0.05522716
+0.77178824
+0.37564492
+0.42192233
+-0.22562921
+0.02798140
+0.26922083
+-0.56123066
+0.40264225
+-0.06407422
+-0.00935841
+0.04333866
+-0.77081634
+0.30354691
+-0.38243783
+0.59617352
+-0.59738749
+-0.58893058
+0.07903999
+0.74751057
+0.97060806
+-0.29187718
+0.44478327
+0.50545876
+-0.75318830
+0.35341086
+-0.30141197
+-0.55434343
+-0.91923995
+-0.70187845
+0.65299535
+0.11464627
+0.44461202
+-0.17738220
+0.19222468
+-0.72912406
+-0.69788221
+0.64617819
+0.24374288
+0.19630625
+0.07312685
+0.24209670
+-0.23246759
+0.07473592
+-0.69951236
+-0.37739221
+0.43072076
+0.77977327
+0.68674618
+0.11535718
+0.74319607
+-0.15457543
+-0.00894338
+0.50913612
+0.86450681
+-0.71235235
+0.89696832
+-0.98530094
+-0.07645226
+-0.76920941
+-0.24397230
+-0.98127851
+-0.07823032
+-0.04625720
+-0.55631974
+-0.26091123
+-0.47283524
+0.31681776
+0.06025743
+-0.04569501
+-0.12276280
+-0.70914242
+0.84075773
+-0.27456421
+-0.82349123
+0.61380613
+0.15644801
+0.17626023
+0.65954328
+-0.48435062
+0.83605611
+0.16908240
+-0.72908339
+0.66952646
+-0.88253404
+-0.11061800
+0.69537520
+-0.73375887
+0.05678582
+0.73364115
+-0.94857281
+-0.73374769
+-0.24737000
+0.80837429
+-0.93364514
+-0.37058580
+0.83486044
+0.35726225
+0.96810842
+-0.83600554
+-0.83976285
+-0.70516399
+0.61870325
+0.35154974
+0.93001795
+0.42526805
+-0.22799289
+0.45125270
+0.65627420
+0.69817841
+0.89956748
+-0.20835429
+0.95558321
+-0.91107173
+-0.73349929
+-0.41108876
+-0.15133351
+-0.55170459
+-0.00028998
+-0.12089956
+-0.09966379
+-0.65991709
+0.91459560
+-0.48016495
+0.74419749
+-0.72891054
+0.41949725
+-0.07771969
+0.25904775
+-0.77420817
+-0.24990141
+-0.90694596
+-0.97208987
+-0.02086473
+-0.86711350
+0.57774794
+0.55862665
+0.49653137
+-0.21863765
+0.28427124
+0.18697596
+-0.11431795
+0.01895428
+0.97596157
+0.27955163
+0.71240580
+0.05933726
+0.08115304
+0.15575373
+-0.73252013
+-0.82201315
+0.62027621
+0.99901044
+-0.94924661
+-0.92507157
+-0.06108302
+-0.80539206
+-0.49006194
+0.59069788
+-0.75812890
+0.92188179
+0.06951606
+0.53506780
+0.22762406
+0.43441713
+0.91595984
+0.61189294
+-0.30584794
+0.45485520
+-0.26825523
+-0.87237646
+-0.40169191
+-0.84996554
+-0.37151825
+0.65912533
+0.75810122
+-0.45804358
+0.38993073
+0.98326755
+0.91685104
+0.72735476
+-0.45947653
+0.80952525
+0.48492861
+-0.03310257
+0.64961231
+-0.78952740
+0.29484510
+0.58970332
+0.92394626
+-0.07664275
+0.10214269
+-0.90082668
+0.29179978
+0.76027572
+-0.61954525
+-0.76709293
+-0.33097911
+0.84891117
+0.97106850
+-0.08553612
+0.12154734
+-0.13340813
+0.24163735
+-0.06194276
+0.50332022
+0.01417577
+-0.21035588
+-0.93443997
+0.35214043
+-0.52857971
+-0.02991706
+-0.87394945
+0.97700346
+0.85899365
+0.24969852
+0.10431087
+-0.70847601
+-0.37017328
+0.84977472
+-0.69885597
+-0.54197785
+-0.67939731
+-0.68059391
+-0.85176961
+0.71717894
+-0.24199963
+-0.81840821
+-0.84059358
+0.04869616
+0.14956737
+-0.75951611
+-0.93029887
+-0.24051183
+0.98379600
+0.74686253
+-0.75427085
+0.34301019
+0.12313902
+0.05637920
+0.08197355
+-0.28022593
+-0.56910399
+-0.86166048
+-0.03146034
+-0.02970481
+0.12466025
+0.34082997
+0.06562078
+-0.64275712
+-0.31989318
+-0.82904084
+-0.98707073
+-0.71803784
+-0.95127589
+-0.96856276
+-0.24574494
+-0.99683426
+0.88305676
+0.82766509
+0.52567375
+0.39779794
+0.75195670
+-0.64950711
+-0.17957395
+0.58573008
+0.83677948
+-0.46484786
+0.26395512
+0.63112855
+0.22984743
+0.28483093
+-0.36348850
+-0.44521165
+0.99153244
+-0.82376668
+-0.45428431
+-0.41892302
+-0.91402723
+-0.57181177
+0.82540679
+-0.36289531
+0.30942917
+0.24618351
+-0.93873452
+0.78739500
+0.75541687
+-0.52017224
+-0.27287066
+-0.02123439
+-0.59822139
+-0.72524539
+-0.19768625
+-0.82301532
+-0.74306694
+0.73750007
+0.13188279
+-0.83946656
+0.93594074
+-0.09044892
+0.83560014
+0.10043931
+0.01070154
+0.59877145
+-0.89962517
+0.52156532
+0.86969197
+0.13540590
+0.34380662
+0.37381530
+0.14366150
+0.18593395
+-0.11003703
+-0.73926762
+-0.14127171
+0.93014824
+0.60253131
+-0.31987232
+0.90857315
+-0.53467855
+0.87936950
+-0.78744514
+0.63891029
+-0.05595380
+-0.79328802
+-0.96427801
+0.97219062
+-0.76598410
+-0.04524738
+-0.71995941
+0.42611051
+0.27281022
+0.10656166
+-0.43523085
+0.90277934
+-0.96439558
+0.49141455
+0.50155807
+0.02819717
+0.21541011
+0.35924184
+0.91346097
+-0.98729852
+0.31354010
+-0.92893150
+0.47387993
+-0.12567502
+-0.06244701
+-0.30936635
+-0.68956822
+0.68719125
+-0.61379978
+0.05799937
+0.07697082
+-0.83287413
+0.72615957
+0.38930702
+-0.75704636
+0.24705660
+-0.12482667
+-0.51865882
+0.09135044
+-0.80973449
+0.56695414
+-0.29044241
+-0.34852016
+-0.87294599
+0.53492236
+0.73514402
+-0.72674879
+-0.25039220
+0.20025003
+-0.80906181
+-0.08029109
+0.03097594
+0.72659421
+-0.64187971
+0.93146360
+-0.63793162
+0.48300540
+-0.88360204
+-0.52616391
+0.34074128
+-0.03500062
+-0.16237271
+-0.47866356
+0.79172492
+-0.97567300
+-0.52766821
+-0.09049320
+0.68108189
+-0.29614156
+0.27210069
+-0.61098507
+-0.51369271
+-0.64124960
+0.23501098
+0.77400720
+-0.13371342
+-0.39809263
+-0.46824920
+0.71739101
+0.68807113
+0.01631355
+-0.63816285
+0.75793767
+0.05493402
+-0.84914356
+-0.38997740
+-0.35931802
+0.45632482
+0.87343156
+-0.46450776
+0.96510267
+-0.40142059
+0.15864098
+-0.57428455
+0.99829078
+0.98148525
+-0.88958612
+0.69687426
+0.22587788
+0.93419957
+-0.66081977
+-0.23989940
+-0.34231120
+0.85551465
+0.05961883
+-0.21422851
+-0.54652387
+0.21492112
+-0.09618378
+-0.31044286
+-0.65243113
+0.87957692
+-0.19680655
+-0.64605090
+-0.52984160
+-0.94817036
+-0.37978065
+-0.41931200
+-0.64669415
+-0.34136206
+0.68249774
+-0.49905485
+0.75850213
+0.99552655
+-0.89023021
+-0.16830772
+0.29984641
+0.25590301
+0.34511852
+-0.18150729
+0.54591000
+0.80399835
+0.31115174
+-0.83214433
+-0.40231079
+0.92961097
+-0.84050962
+-0.19862825
+0.74894524
+-0.90122785
+-0.98560860
+-0.39784223
+-0.94134789
+-0.73382992
+0.86990678
+-0.31143445
+0.76401186
+0.39125097
+0.02664590
+-0.35201585
+-0.91518439
+0.76726592
+-0.00472254
+-0.10447621
+-0.13236040
+0.63632691
+-0.62367335
+0.21573317
+-0.89778981
+-0.05547082
+-0.48970813
+-0.68295696
+0.54013312
+0.92362821
+-0.69920832
+-0.57694939
+0.48879921
+-0.23696125
+-0.46367681
+-0.34007144
+0.04408252
+-0.99006249
+-0.62291738
+-0.13804269
+-0.52418098
+0.84587276
+0.15442073
+-0.25710368
+-0.69234854
+-0.34938455
+-0.94520501
+-0.27358443
+0.39868701
+0.74670565
+-0.32797021
+0.89466071
+0.11915803
+-0.65700132
+-0.72758937
+-0.61679164
+0.86715603
+0.43322039
+0.32116556
+-0.45294750
+0.95135128
+0.97492850
+0.02754247
+-0.47187442
+-0.47581118
+0.24719262
+0.13156331
+0.38878047
+0.50749397
+-0.69210646
+-0.26862550
+-0.52171215
+-0.25589663
+-0.78518850
+0.63313365
+-0.91498391
+0.55225134
+-0.62967148
+-0.36884570
+-0.13740480
+0.43993080
+-0.91860439
+0.68734801
+-0.16475028
+-0.15018946
+0.59935915
+-0.06597829
+0.06748080
+0.15311337
+0.95676064
+0.59352553
+-0.76803993
+-0.19644731
+0.82096815
+-0.01168388
+-0.32963938
+0.61535740
+-0.09727478
+-0.94483119
+0.22713435
+0.33306313
+0.21965098
+0.35485613
+0.95842481
+-0.38216060
+0.76691401
+-0.00341201
+0.16083992
+-0.36099261
+0.07786083
+0.79531431
+-0.27805883
+0.70865059
+-0.64144877
+-0.20458043
+-0.60221523
+-0.15754116
+-0.00392008
+0.09009516
+-0.58873552
+0.59040248
+0.76022410
+0.25469685
+0.48338079
+0.10762453
+0.49618232
+0.06866634
+0.47173953
+0.82111967
+-0.01315129
+-0.11297774
+0.82445014
+0.15026855
+0.94364500
+-0.98255362
+0.60687089
+-0.00151432
+0.21365511
+0.10397482
+0.76127696
+-0.75867870
+-0.08231670
+0.70200539
+0.26757252
+-0.01350993
+-0.79927501
+-0.35961020
+-0.92995934
+0.51905608
+-0.11131775
+0.23303413
+0.37636793
+-0.91240402
+0.12227583
+0.61877882
+-0.81166174
+-0.34870881
+-0.88036879
+-0.59160206
+-0.09583247
+0.05798280
+-0.86812513
+0.35890245
+-0.01158953
+0.71046245
+-0.23874265
+-0.53235140
+-0.91023705
+-0.43346500
+0.82979155
+0.97660697
+0.20471072
+-0.12913316
+0.05180120
+-0.98649685
+-0.35728687
+-0.15777791
+0.63749993
+-0.06015587
+-0.40988266
+0.97795987
+-0.95021918
+0.52644730
+-0.52014294
+-0.49311310
+-0.73420221
+0.10527909
+0.63402081
+-0.82033527
+0.91688323
+-0.99598903
+0.64996111
+0.39893258
+0.91386962
+0.62147546
+-0.48458236
+-0.24645430
+0.02690315
+-0.24830568
+0.12590849
+-0.41157520
+-0.35400230
+-0.44939343
+0.53514534
+-0.21785840
+-0.99848412
+-0.14548530
+-0.35850284
+-0.69062344
+0.93351920
+-0.97184281
+0.51927918
+-0.59761615
+0.21998030
+0.35370759
+0.45897168
+-0.27611245
+0.35355195
+0.31211092
+0.92467244
+-0.85888601
+-0.57063339
+-0.78957773
+-0.01319116
+0.03530593
+0.76714706
+-0.85911457
+-0.26075465
+0.39189283
+-0.86826607
+-0.62062433
+-0.53922537
+0.00147440
+0.51814514
+-0.18337956
+-0.15599436
+-0.62396567
+0.75132975
+0.14116861
+-0.16013198
+-0.86774306
+0.14409566
+0.91090035
+-0.48505497
+0.02844846
+0.63049603
+-0.95740620
+-0.05196184
+0.34886098
+-0.70682365
+-0.88750125
+-0.14424515
+0.09033275
+-0.98610418
+0.95379078
+0.56798673
+0.85300148
+0.20603848
+-0.24279529
+-0.56809717
+-0.68459448
+0.43211269
+0.46975350
+-0.00945729
+0.00618279
+0.88599634
+-0.81674689
+-0.54767203
+-0.75260445
+-0.52734321
+0.02036679
+-0.43707681
+-0.91619965
+0.58894742
+0.71954906
+-0.06108302
+0.05978417
+-0.65270087
+0.51468372
+-0.32770658
+0.76765764
+0.30085588
+-0.72639462
+0.53056896
+-0.28080696
+0.38899875
+0.30244863
+-0.67636117
+-0.43415254
+-0.51571923
+0.00516546
+-0.22751486
+0.71263742
+0.20151305
+0.07528913
+0.17335665
+-0.06898141
+0.87254560
+0.51729918
+-0.94169173
+0.81209159
+0.94925594
+-0.26560163
+-0.05950761
+-0.10869175
+-0.76996587
+-0.90179285
+-0.62389782
+-0.99613820
+0.71890223
+0.09671187
+0.53220117
+-0.34452397
+-0.08961886
+-0.35451472
+0.43306518
+0.07761538
+-0.41524637
+0.94294763
+-0.39713573
+0.14436293
+0.60557938
+-0.80147760
+-0.09121567
+-0.91272324
+-0.63647488
+0.37348855
+-0.49931967
+0.90080154
+-0.98566533
+-0.71264264
+-0.57292616
+-0.10475487
+-0.45460320
+0.53640330
+-0.37714678
+0.99450350
+0.54129601
+-0.39019936
+-0.40858090
+0.10971820
+0.11473954
+0.24240029
+0.43895054
+-0.34592611
+-0.04980981
+0.74259305
+0.43871415
+0.02214587
+-0.22701263
+-0.21050316
+0.84646654
+-0.72889870
+0.51173055
+0.79852951
+0.47886145
+0.93600047
+-0.88576544
+0.30182230
+-0.24096298
+-0.67655605
+0.48682487
+0.38650322
+0.98418629
+0.10361540
+0.54431283
+-0.87527645
+0.10211897
+0.09991360
+-0.51027793
+0.76108468
+0.31746602
+-0.89965577
+-0.50373945
+-0.01812673
+-0.26867771
+-0.28285205
+0.84016168
+0.87186491
+-0.52727067
+-0.67454249
+-0.86169420
+0.52693558
+-0.32986301
+0.59446692
+-0.84862016
+-0.10576600
+0.40659702
+0.70994055
+0.36050677
+0.35665512
+0.27067518
+0.49390864
+0.57480025
+-0.63656324
+-0.80210558
+0.12308431
+0.23202646
+-0.72478247
+-0.93700379
+-0.32877886
+0.72732353
+-0.60042989
+0.67128766
+-0.81867759
+-0.05429047
+0.94734073
+-0.30313694
+-0.32586879
+-0.05486804
+-0.70475790
+0.05533087
+0.25472248
+-0.06719553
+-0.62324256
+0.01488101
+-0.26200062
+-0.11759305
+-0.19235134
+0.09015405
+-0.99434696
+-0.53018498
+0.80483127
+0.39615452
+0.65517128
+-0.24348867
+0.86109233
+-0.70144981
+0.69968808
+-0.17810452
+0.50936925
+-0.54164955
+0.23252976
+0.29233587
+0.09693539
+0.89568508
+-0.41133666
+-0.17839950
+0.91519809
+-0.70406690
+-0.46534806
+0.43523669
+0.68031871
+0.58998442
+-0.42195392
+-0.68393725
+-0.22622377
+0.89722562
+-0.09022278
+0.47143710
+-0.72869423
+-0.09503067
+0.01957464
+0.11076438
+0.58304262
+0.45480824
+-0.98341793
+0.26883113
+-0.81477551
+-0.76111862
+0.67160273
+0.88797200
+-0.62354147
+0.10458302
+0.81979609
+0.64024782
+0.01435971
+0.01738036
+-0.15204996
+0.80810010
+-0.00173688
+-0.81121764
+-0.85697024
+-0.46914160
+0.07878065
+0.49339569
+0.27452552
+-0.35768807
+0.93883240
+0.95835280
+-0.96738880
+-0.79703635
+0.53818321
+-0.35720265
+-0.25102687
+0.10055089
+0.67718613
+0.61173534
+-0.34872228
+0.89873433
+0.47380626
+0.27780759
+-0.74645406
+-0.61307466
+-0.92429083
+0.03828228
+0.86204255
+-0.36073840
+-0.14974737
+-0.92536438
+0.38105536
+-0.62137055
+0.07901180
+-0.09452164
+-0.71006855
+-0.60676196
+0.40759671
+0.52657843
+0.54797697
+-0.37688792
+-0.83063607
+0.94449186
+-0.92008863
+0.35505080
+-0.03385246
+0.80300272
+-0.17620075
+-0.18090320
+-0.85791259
+-0.16006273
+-0.42488813
+0.85163188
+-0.76235913
+-0.99922149
+-0.74250230
+0.92889190
+-0.30378407
+-0.48826224
+-0.02596271
+0.94698441
+-0.08170348
+-0.00424111
+0.24805939
+-0.99744382
+-0.79452850
+0.43751907
+-0.50601378
+0.85616326
+0.44425035
+-0.56708267
+-0.83141398
+0.64934635
+0.72450733
+-0.02613467
+-0.20781320
+-0.41025513
+0.37423539
+0.96358430
+-0.60392064
+0.24135602
+0.68065417
+0.93984747
+-0.97075805
+0.64496100
+0.61168683
+0.07778037
+0.32820070
+-0.14096993
+0.48519254
+0.98475742
+0.69368529
+-0.61688421
+-0.08066253
+-0.81495526
+0.40605072
+-0.46523696
+-0.34624113
+-0.21530953
+0.30050232
+-0.87158673
+0.05263618
+0.05167138
+0.11386101
+-0.16987324
+-0.48046457
+0.97782587
+0.41092261
+-0.21442509
+0.76518361
+-0.04380224
+0.08228833
+-0.52122266
+0.66160528
+0.34035134
+-0.51849171
+0.22158265
+-0.25785652
+-0.36330599
+0.51952759
+0.53685679
+-0.35648095
+0.08991879
+-0.95191093
+-0.01292419
+0.83234302
+0.53317135
+0.63758676
+0.14155921
+-0.87032851
+-0.36576961
+-0.18284538
+0.64797270
+0.69927371
+0.19690120
+0.12747121
+0.19677210
+0.51586199
+0.77116907
+-0.97250244
+-0.37491351
+-0.66746032
+0.33940423
+0.89253831
+-0.69120532
+0.52076554
+0.45260680
+0.68486094
+-0.43583167
+-0.57468405
+-0.79272240
+-0.99655806
+0.92530704
+0.26232564
+-0.37292618
+0.19626760
+-0.32921767
+0.85745704
+-0.62369588
+0.61366963
+-0.99538510
+-0.86358239
+0.58217025
+0.85357666
+-0.51954964
+-0.86960228
+-0.49462706
+-0.66686007
+0.23987591
+-0.66122094
+0.16383958
+-0.73441887
+-0.55635983
+-0.51474068
+-0.12902248
+0.49902928
+-0.64796406
+-0.16533357
+-0.35943413
+0.78065825
+0.84410596
+0.25503004
+-0.72434047
+0.62402570
+0.01634538
+-0.54002571
+0.45664835
+-0.31932759
+0.65625000
+-0.11185634
+-0.53818697
+0.77173662
+0.07501054
+0.15539420
+0.57703972
+0.55268610
+-0.15515804
+0.69061792
+0.61365104
+-0.40292132
+0.99137652
+0.14962351
+0.65125346
+-0.36619210
+-0.82422666
+0.17587459
+-0.73727003
+-0.45013237
+-0.15618616
+-0.64122292
+0.62316358
+-0.24059570
+-0.72253683
+-0.07920527
+-0.27408117
+0.74570668
+0.18401325
+-0.59411484
+-0.70035443
+0.09677160
+-0.78339434
+0.25251484
+0.47339582
+0.52089798
+-0.84677735
+-0.30730879
+-0.34639037
+-0.34298033
+0.39647305
+0.88563645
+-0.08657688
+0.10250115
+-0.61536473
+0.82630348
+-0.67146987
+0.47290206
+0.91095483
+0.37690055
+-0.44284189
+-0.53801942
+-0.18183649
+-0.27336144
+0.22933161
+0.01283538
+-0.25366867
+-0.35537678
+-0.06460065
+0.30422592
+0.38333166
+-0.65479511
+0.79441416
+0.61950970
+-0.38030517
+0.74848878
+-0.47473127
+0.24973714
+-0.93711393
+-0.11151081
+-0.59368822
+-0.45258766
+0.76403117
+-0.55419251
+0.68308723
+-0.87675055
+0.08111906
+0.94673026
+-0.36633891
+-0.72190410
+-0.07450718
+0.99126315
+0.51401496
+-0.49377626
+-0.69860241
+-0.85781457
+-0.17001790
+-0.91478215
+0.77445233
+0.62031901
+0.59143484
+-0.80532622
+0.72482502
+0.31983984
+0.20127213
+0.01218939
+0.62582839
+0.59290075
+0.47624493
+0.59816885
+-0.12629253
+0.46370804
+-0.15819168
+-0.83203509
+-0.59246510
+-0.60613891
+0.54650581
+0.80309486
+0.08701932
+0.96653545
+-0.85359615
+-0.42305714
+0.85790300
+0.97651863
+-0.32749683
+-0.77329014
+-0.59112775
+-0.27946186
+0.15705025
+-0.09558201
+0.19116664
+0.08642852
+0.07282639
+-0.26874936
+-0.84756711
+0.55613232
+0.05744708
+0.50541532
+0.18589258
+-0.23120284
+0.86829734
+0.88781261
+-0.73541957
+0.27556145
+-0.53679749
+-0.90834165
+-0.25828624
+-0.70500821
+-0.61400172
+-0.73493177
+0.59996700
+0.63795388
+0.14806628
+0.51313818
+-0.74427208
+0.88995171
+-0.66254824
+0.45493555
+-0.78814235
+0.74234068
+-0.51296401
+0.70705473
+-0.87080611
+0.21709621
+0.53515363
+0.71167970
+0.86481833
+0.98276627
+0.99384809
+0.18176532
+0.91805542
+0.19262815
+0.22261584
+-0.78551912
+-0.45342803
+0.89708078
+0.38544118
+0.49924302
+0.12455559
+0.62622094
+0.78861356
+-0.08309025
+0.48955870
+-0.58320686
+-0.71350399
+0.02472413
+-0.21200961
+-0.68918014
+-0.95770406
+-0.97825589
+-0.03322303
+-0.91119192
+0.65938318
+0.09898531
+-0.69407886
+0.64853966
+-0.13987142
+-0.62379447
+-0.39663941
+-0.83485179
+0.20459497
+-0.11300516
+-0.54813707
+0.89254129
+-0.34663421
+0.62385404
+-0.12645113
+0.43290591
+-0.93921241
+-0.81602412
+-0.11521631
+-0.34365821
+0.65358436
+0.09673214
+-0.92474935
+-0.44119722
+-0.00849128
+0.02581108
+0.09537685
+-0.27392483
+0.68268645
+-0.72673401
+0.81209421
+-0.20406997
+0.94034410
+0.16854024
+-0.28137058
+0.26894927
+0.79786289
+-0.32822347
+0.19231570
+-0.61500835
+0.04601777
+0.75618315
+0.39104927
+-0.99259133
+-0.76993257
+-0.67660865
+0.67699718
+-0.01071209
+0.82934332
+0.44110966
+-0.12375319
+-0.07138157
+0.70751286
+-0.53933963
+0.31996667
+-0.37069237
+0.98819101
+0.39957380
+-0.40644044
+-0.01918763
+-0.46071333
+0.13350737
+0.37354994
+-0.16717887
+-0.11938632
+-0.60468450
+0.49277329
+0.31774771
+0.96501470
+0.26569128
+-0.19708747
+0.07553434
+0.73669076
+0.45182276
+0.03201389
+-0.21960258
+-0.54321581
+-0.12252295
+0.51794291
+-0.46169740
+-0.90855368
+-0.91340356
+-0.29573208
+0.78335178
+0.26417923
+-0.40893829
+0.91737950
+-0.62415197
+-0.40294343
+0.45709133
+0.49300730
+-0.77081680
+0.92380250
+-0.13389194
+0.08934093
+0.75770617
+0.26870990
+0.38010502
+-0.40326881
+-0.14407045
+0.55247128
+-0.95853912
+0.60643470
+0.87662053
+-0.27403563
+0.52047157
+-0.96076817
+0.23260772
+0.56159830
+0.46758831
+-0.86630595
+-0.95965169
+0.27997804
+-0.25117195
+0.69964910
+-0.36932880
+-0.36337060
+0.92738295
+-0.68932801
+-0.81894973
+0.07106864
+0.56530488
+0.26058233
+-0.98930861
+-0.59134725
+0.01521218
+-0.68615425
+0.73837209
+0.36120975
+0.47520554
+-0.54063210
+0.16549766
+0.78644288
+0.24988472
+0.60740960
+-0.66112247
+0.65422928
+0.59954727
+0.60462904
+0.16664875
+-0.07304949
+-0.61401427
+0.72508287
+-0.64840773
+-0.29226804
+0.84335947
+0.67408419
+0.84149754
+0.42746329
+0.25170898
+-0.80847622
+0.60810864
+-0.62489995
+0.99020243
+0.68595183
+-0.41441393
+0.87672997
+0.30372620
+0.92980886
+-0.49784034
+-0.70400000
+-0.96178793
+0.62149000
+0.47975111
+0.76764369
+0.24542022
+0.79798758
+0.54377794
+-0.17790496
+-0.55727768
+0.04719520
+-0.71426678
+0.98037684
+0.10877430
+0.66219783
+-0.27605063
+0.99249566
+0.28419471
+0.04170084
+0.93623030
+0.48117828
+0.66632760
+-0.37417120
+0.89956295
+-0.26354414
+0.56434810
+-0.90790087
+0.73415244
+0.12642968
+0.85848057
+0.28594398
+-0.64526847
+-0.47485024
+0.81781089
+-0.50372514
+0.30896878
+0.03715026
+0.64133549
+-0.57266372
+0.02536595
+-0.81013206
+-0.17388660
+0.64252377
+0.37699449
+0.35981691
+0.52481890
+0.43741369
+0.53708899
+-0.45598519
+-0.71868584
+0.22358859
+-0.03284031
+-0.76716599
+-0.74472055
+-0.69953746
+0.40386665
+0.49085152
+0.43019056
+0.44547105
+-0.39621097
+-0.11574447
+0.92073882
+0.14730930
+0.31449711
+-0.01841646
+0.15482402
+-0.72958460
+0.12756085
+-0.90809734
+0.65538943
+-0.94361794
+0.46463382
+-0.94485461
+-0.32368219
+-0.42416489
+0.38682032
+0.66916132
+0.01991677
+0.90200782
+-0.22276837
+-0.50663388
+-0.34743744
+-0.52423599
+0.22549975
+0.92466855
+0.99153244
+-0.83069453
+0.10712135
+0.71788406
+-0.92440486
+-0.56809285
+0.39089215
+-0.42581606
+-0.08770019
+-0.09258217
+-0.52120009
+0.57356858
+-0.72809207
+-0.34742230
+0.45126927
+0.48567402
+-0.77131340
+0.77169311
+0.34421360
+0.18806267
+0.89525557
+0.85164034
+-0.99362705
+0.05051672
+-0.26689368
+0.35212731
+0.55696857
+-0.07370830
+-0.93374258
+0.96523249
+0.12926495
+-0.07470691
+0.44494605
+-0.21646875
+-0.45665228
+-0.86085492
+0.61908412
+0.79971409
+0.69414771
+0.96873474
+-0.97627016
+-0.51716840
+-0.09271604
+-0.56206644
+0.53871763
+-0.46413773
+-0.80376787
+0.70570624
+0.80156744
+-0.77231662
+-0.82107699
+-0.90515269
+-0.91956592
+-0.96773354
+0.52484071
+-0.35444790
+-0.44749635
+0.75496376
+0.09586942
+0.15083790
+-0.71128371
+-0.37859643
+0.77807975
+-0.26283062
+-0.40456611
+0.71373808
+0.68681800
+-0.54255614
+0.12125182
+-0.54334280
+0.04457307
+-0.23771143
+-0.60737666
+0.17205894
+-0.67692500
+0.95402431
+-0.09993970
+0.24839735
+-0.10883617
+-0.76261003
+0.93653750
+-0.77338880
+-0.91344623
+-0.81926814
+0.85331631
+-0.50359660
+-0.34303761
+-0.04626608
+-0.44309795
+0.70829773
+-0.58906236
+-0.55277652
+-0.63263258
+-0.85643019
+0.55301797
+0.34302425
+-0.52913657
+0.08598828
+-0.47325611
+0.26945448
+-0.50095284
+-0.06847715
+0.13263535
+-0.57145715
+-0.45224750
+0.34684455
+0.12027252
+0.47610140
+0.37464476
+0.36591589
+-0.77843781
+0.88740993
+0.37654209
+0.97795999
+0.22253847
+0.15176880
+-0.92710846
+-0.82001108
+0.11145785
+0.75310093
+-0.74886301
+0.58476060
+0.84884541
+0.86395427
+-0.91832087
+-0.28514426
+0.00816992
+-0.35685003
+-0.13638190
+0.24997634
+-0.47078302
+-0.24793333
+0.54347043
+0.08396169
+0.56324579
+0.90309842
+-0.37589195
+-0.00739027
+-0.38420113
+-0.47251409
+0.21664531
+-0.07047439
+0.94314548
+-0.80781903
+-0.69444820
+0.83632293
+-0.01731758
+-0.20924503
+-0.57343317
+-0.19444686
+0.37638072
+-0.33969957
+0.70213024
+-0.20902112
+-0.00628052
+-0.18466769
+-0.72715032
+0.38672864
+-0.30106634
+0.61658025
+0.68086183
+0.92450988
+0.09671450
+-0.60044605
+0.75455797
+0.73208499
+0.53131700
+-0.16579872
+0.78990781
+-0.29423988
+-0.81125696
+-0.75786179
+0.62404227
+0.24048221
+0.02980566
+-0.48466247
+-0.85767895
+0.59194314
+0.20682502
+0.24399805
+-0.60932574
+0.05696046
+0.90617192
+0.84641552
+0.11976612
+-0.57736525
+-0.63825262
+-0.90913298
+0.29657125
+-0.65948936
+0.41184044
+0.08818495
+0.96491909
+-0.52315384
+0.32473958
+0.24458587
+-0.35041606
+0.84285438
+0.99333870
+0.20099926
+0.58735514
+0.52363789
+0.50317037
+0.25166821
+0.37373924
+0.52792466
+0.87310386
+0.38650501
+-0.29542685
+0.12130404
+0.70870066
+-0.99128235
+-0.33199131
+-0.28877586
+0.58154929
+0.37505352
+-0.75867413
+0.15223908
+-0.76075689
+0.63839471
+-0.11356884
+-0.01585644
+0.23585856
+-0.36641604
+0.38294637
+0.43749511
+-0.47703063
+0.01568019
+-0.79959381
+0.13028705
+-0.43161309
+-0.71819061
+-0.35631162
+0.86397815
+0.67717028
+-0.47135109
+0.48020184
+0.19472539
+0.54059982
+-0.15033162
+-0.97249031
+-0.61225832
+-0.12016243
+-0.46556342
+-0.97790722
+0.07400715
+0.14869821
+-0.60512179
+0.49943197
+-0.14080095
+0.29881990
+0.01252496
+-0.12994111
+0.60926139
+0.58953452
+-0.01046044
+-0.99511153
+-0.58623689
+-0.35813254
+-0.85933158
+-0.95958898
+-0.61066774
+-0.76083797
+0.05380702
+0.24678159
+0.31370234
+0.70476866
+-0.96791896
+-0.69502878
+-0.48931992
+-0.05828905
+-0.62987283
+-0.48431522
+-0.71479642
+0.12712574
+0.98521996
+-0.46562791
+-0.43904185
+0.45778620
+0.03851819
+0.01172996
+0.36743963
+-0.06242996
+0.95393074
+-0.78362243
+0.40616274
+0.63762033
+-0.56820247
+0.87251186
+-0.27222520
+-0.90329339
+-0.64865407
+0.38812542
+0.27526474
+-0.74612758
+0.46703780
+-0.54048592
+0.08506346
+0.91404200
+0.49117732
+0.37264121
+-0.86505415
+0.73003364
+-0.20248741
+-0.81849305
+-0.29568428
+-0.03421974
+-0.72569570
+0.34325135
+0.25723922
+-0.21754843
+-0.52662051
+-0.50223926
+-0.87150505
+-0.77861202
+0.37884986
+-0.38527113
+0.03433514
+-0.93821947
+0.57999861
+0.69020426
+0.88770723
+0.42763031
+0.55327845
+0.33763885
+-0.74680510
+-0.92777399
+0.97437418
+-0.34229088
+-0.41447431
+-0.52330011
+0.47351325
+0.73393571
+-0.63566524
+0.42323792
+0.97970283
+0.50296223
+-0.41568959
+-0.51179013
+-0.58537790
+-0.02017725
+-0.80722713
+-0.88665238
+0.60746849
+0.36918008
+0.05694723
+0.77529252
+-0.17598331
+0.92406929
+0.12755525
+0.74616838
+0.75068605
+-0.19296354
+0.72242665
+0.51775289
+0.42941284
+0.75649023
+-0.74912235
+-0.62635297
+0.62077153
+-0.29479092
+0.77382183
+0.55539405
+0.12423754
+-0.39372563
+-0.16168147
+-0.21590704
+0.62756371
+-0.92394973
+-0.00266349
+-0.47558630
+-0.90447503
+-0.10637623
+0.63123500
+-0.55911663
+-0.53739947
+-0.20193136
+-0.65126231
+0.62966347
+0.52301788
+0.83138573
+0.40075099
+-0.93293191
+-0.24906236
+-0.09524786
+-0.70143649
+0.51327848
+-0.98027917
+-0.96356126
+-0.20975977
+0.55215836
+0.07226181
+-0.54993752
+0.62639654
+0.22834170
+-0.87756467
+0.05189764
+0.36921191
+0.30765235
+-0.98636394
+-0.55331913
+0.66225255
+0.90273726
+0.53724992
+-0.20596147
+0.28538668
+0.77097368
+-0.75073166
+-0.11041063
+0.11072814
+0.60557103
+0.27858138
+-0.55744711
+-0.36181015
+-0.86693183
+0.89838636
+0.98246896
+-0.71192569
+0.29167557
+-0.67085868
+-0.19982111
+-0.20307082
+0.56009936
+-0.99121809
+0.53142297
+-0.54803395
+0.93054771
+0.44201612
+-0.77778904
+-0.66129690
+0.24891496
+-0.55266228
+0.21128714
+0.40300155
+-0.91478413
+0.76730955
+0.83236086
+0.99898708
+-0.87075853
+-0.63209909
+-0.93075828
+-0.24499696
+-0.89301628
+-0.38011032
+-0.32917368
+-0.39967972
+0.44897604
+0.45986044
+0.87254262
+0.04578853
+0.68645000
+0.41956794
+0.97210014
+0.61216831
+0.88220429
+0.81068683
+-0.72527570
+-0.34496266
+0.35252178
+0.51490152
+-0.38549387
+-0.06488258
+-0.83447661
+-0.11734706
+0.66742373
+-0.26107049
+-0.69512716
+-0.71295384
+0.16464317
+0.87306750
+0.51489806
+-0.65271500
+-0.35318476
+0.43406343
+0.28126884
+0.18560481
+-0.14732659
+0.66387635
+-0.27395515
+0.53481418
+0.20271698
+-0.67979411
+-0.81172545
+-0.34056458
+0.64650645
+0.14093537
+-0.01742193
+-0.11868907
+-0.08572092
+0.51380611
+0.07633681
+-0.16276873
+0.07438335
+-0.46272070
+-0.06598689
+0.74789443
+-0.39586817
+-0.89416463
+-0.88804785
+-0.66713360
+-0.39793413
+0.94765174
+0.13376781
+0.35018914
+-0.99855554
+-0.85321701
+0.96487112
+-0.10112370
+0.18346922
+-0.33180415
+-0.25611304
+0.47069478
+-0.68168569
+0.10197299
+-0.04251214
+-0.63194186
+0.29073889
+-0.72832165
+0.30821671
+0.76112324
+-0.33793422
+0.06428832
+-0.83697793
+-0.29886690
+-0.84133589
+-0.97710124
+-0.90396875
+-0.06024623
+-0.33508307
+-0.51977211
+0.36943638
+-0.71094087
+-0.81583312
+0.85367787
+-0.41465569
+0.82545471
+-0.04514885
+0.11142695
+-0.37343019
+-0.70363119
+-0.02352244
+-0.71193635
+-0.62685135
+0.32114589
+0.94100881
+0.11610031
+-0.82236993
+-0.47025639
+0.04807067
+-0.49834496
+0.59308743
+-0.30514026
+0.39730382
+-0.37197369
+-0.86541228
+-0.01175368
+0.99076080
+-0.18073982
+0.00464523
+0.26232350
+0.31526434
+-0.37251294
+-0.25531149
+-0.28946209
+-0.09388179
+-0.51387382
+-0.85158078
+0.45227265
+0.35657632
+0.96095097
+-0.97695079
+0.11267543
+-0.62936068
+0.78348589
+-0.79064769
+0.96878099
+-0.46373618
+0.26056039
+0.80740726
+0.48619866
+-0.32253438
+-0.73287985
+0.17952204
+0.41858339
+-0.48299891
+-0.65649125
+-0.03791469
+-0.22957778
+-0.62303767
+-0.58986980
+0.87978482
+0.54699790
+-0.40521336
+-0.60941294
+-0.75330140
+0.62604642
+0.43792498
+0.93375337
+0.09938169
+-0.28636485
+0.81892908
+0.85861230
+0.26577640
+-0.73155934
+0.76316059
+0.46102810
+-0.88401094
+-0.70268759
+0.36975610
+-0.07115823
+-0.48854369
+-0.82747352
+-0.31385690
+0.38969862
+-0.54801863
+0.25295448
+-0.94084369
+0.89423251
+-0.16694432
+0.92973423
+-0.33117080
+-0.34120643
+0.68316638
+0.91050291
+-0.17772114
+-0.04772007
+0.01475143
+0.65894020
+0.85274541
+-0.52646938
+0.31177270
+-0.25182241
+0.29011703
+-0.36948442
+-0.03111732
+0.67359710
+-0.67529750
+-0.12661564
+0.01816988
+0.50530446
+-0.04714781
+-0.52809742
+0.24528718
+0.81562686
+0.75987458
+-0.59510717
+0.18559313
+0.27838361
+0.82845592
+0.34801733
+-0.11784595
+-0.29873496
+-0.66392845
+0.67373359
+-0.81602190
+0.46127343
+-0.28184283
+0.93795025
+0.94556832
+-0.24176109
+-0.71088448
+-0.91106971
+0.33598971
+0.53753054
+0.08655071
+-0.29456389
+-0.95447339
+-0.55066028
+0.37192750
+-0.66183519
+0.17083240
+-0.40923184
+0.88381827
+0.63870263
+0.55348849
+0.60022342
+0.34038138
+-0.81537683
+0.86248684
+0.06057394
+-0.11565107
+-0.56741366
+-0.98908969
+0.43042493
+0.82853127
+-0.65270430
+-0.65011230
+-0.47468805
+-0.00437278
+-0.92919390
+0.00616848
+0.37392735
+0.58537066
+0.88499403
+0.26398838
+0.47644901
+0.93547344
+0.69863975
+-0.48515511
+0.63021982
+-0.02117002
+0.82340717
+0.03357613
+-0.12600374
+-0.93511234
+0.54878366
+0.19404674
+-0.71854091
+-0.86918318
+0.10477006
+0.50734842
+0.81245625
+0.91015959
+0.84006643
+0.25874329
+-0.83128254
+-0.21585840
+0.14746106
+0.34342980
+-0.75584638
+-0.65404376
+-0.32787836
+-0.68058655
+0.85969985
+0.70002139
+0.05291867
+0.19906414
+-0.43357730
+0.17942858
+-0.32057977
+-0.94005287
+0.89799166
+-0.54148769
+-0.21760792
+0.92202461
+0.60172009
+0.78364456
+-0.64402220
+-0.79071346
+0.63775456
+0.40143907
+0.08301258
+-0.03639418
+-0.02160120
+0.74373472
+-0.44221425
+0.60618651
+-0.18671697
+0.51920295
+-0.70770112
+-0.10158968
+0.62249470
+-0.19727802
+-0.91257454
+-0.08125597
+0.75611198
+-0.61515251
+0.99418461
+-0.24819785
+0.26689446
+0.05808759
+-0.05257303
+0.92567563
+0.17361104
+0.90657008
+0.19341087
+-0.91016399
+-0.57825717
+-0.29512346
+0.19785094
+-0.06879914
+0.67050290
+0.30145526
+-0.50674999
+0.61583447
+0.72816956
+0.83217573
+0.00757194
+-0.13403565
+-0.08890396
+0.54215670
+0.06013751
+0.93241990
+0.41566837
+0.61282468
+0.80958164
+-0.34476185
+-0.64478511
+-0.78987822
+-0.74995691
+0.86305511
+0.49942851
+-0.20927322
+0.36913645
+0.67208266
+-0.63009739
+-0.96942603
+0.35970199
+-0.79509993
+0.60725331
+0.81201386
+0.31239331
+0.73527467
+-0.47863185
+0.71307731
+-0.06502914
+-0.18565607
+-0.47397816
+-0.12702614
+-0.02947676
+0.86205280
+-0.47599870
+-0.67346817
+0.61305797
+0.16035116
+-0.41542667
+0.02065527
+-0.43850297
+-0.70076516
+0.63677299
+-0.67385864
+-0.32656389
+-0.91869488
+-0.41709101
+0.22340024
+-0.10769033
+0.91637194
+-0.90443525
+-0.85422198
+-0.74386021
+0.50411153
+0.43666244
+-0.72280422
+-0.61211067
+0.91182303
+0.17457044
+0.96131468
+0.96443880
+0.58225787
+0.29446769
+-0.89361987
+0.59506619
+-0.63336837
+-0.32130426
+-0.50648296
+-0.12186867
+0.47937179
+-0.51984528
+-0.55487341
+0.67552161
+-0.52265000
+-0.78768064
+0.54030538
+-0.63645411
+-0.00781852
+-0.28038752
+0.13049483
+-0.81650998
+0.16837335
+-0.05823404
+-0.08218539
+0.97689497
+0.02828920
+-0.45522004
+0.48864472
+-0.30199564
+0.31764519
+0.57577682
+0.29592037
+0.59706700
+-0.77671801
+0.94733977
+0.69964266
+-0.69796777
+-0.94385045
+-0.89551736
+0.27276182
+-0.65386018
+-0.72195309
+0.57889044
+-0.74148616
+0.54714715
+0.57223129
+-0.60400745
+0.76237643
+-0.61741787
+0.56870234
+-0.04107505
+-0.80491850
+-0.50162408
+-0.15837514
+0.48817337
+-0.12601548
+-0.12062478
+0.99483812
+-0.51202685
+0.08276963
+-0.61295772
+0.08097935
+-0.37886453
+-0.84311126
+0.07217097
+0.07712853
+0.61437988
+0.21929955
+-0.64514822
+-0.94969243
+-0.71824402
+0.20301557
+-0.10544461
+0.11115730
+-0.13596964
+0.05665004
+0.78284574
+0.05724680
+-0.96244217
+0.43372297
+0.32237506
+0.75695741
+-0.27700800
+-0.68994087
+-0.18444431
+-0.24238789
+-0.99139597
+-0.16486907
+0.54109049
+0.31126535
+0.77974474
+0.76872683
+0.42240405
+0.07639742
+0.31184959
+-0.11677122
+0.86936378
+0.32627082
+-0.92673770
+-0.43526417
+0.87606883
+-0.95633851
+-0.03265393
+0.08891237
+-0.46998775
+0.12018037
+-0.75609782
+0.21249032
+0.38807487
+0.49052858
+0.29090846
+-0.96302128
+0.94718528
+-0.23011827
+0.43840802
+0.43975174
+-0.53809381
+-0.44261456
+0.02947056
+0.19184983
+0.25640118
+-0.52782995
+-0.60469526
+-0.32777888
+-0.10358393
+-0.93268117
+-0.02135801
+-0.48196697
+-0.93624427
+0.17522407
+-0.19552612
+0.90808117
+0.41299009
+0.98762000
+0.21599793
+-0.17294186
+0.14481592
+-0.18081474
+-0.18363720
+0.62898397
+-0.08881629
+-0.63478771
+-0.68481791
+-0.34213638
+-0.19403386
+-0.00304860
+0.32077754
+-0.36541402
+-0.40610176
+0.84845316
+0.70600140
+0.89472711
+0.04819500
+-0.60332733
+0.39801180
+0.56875145
+0.68639886
+-0.97289355
+0.44099319
+-0.97843368
+-0.19779885
+0.99087083
+-0.19138283
+-0.52644089
+-0.19368613
+-0.26372284
+-0.96637620
+0.23078167
+-0.43876231
+-0.64076436
+0.65213585
+-0.04164541
+0.45059443
+0.97419703
+-0.85583431
+-0.62780544
+0.31753695
+0.77686512
+0.38875043
+-0.95367703
+0.39395761
+0.97292542
+0.23981333
+0.28826904
+0.00663090
+-0.14833480
+-0.71088275
+-0.18965024
+0.54107189
+-0.23858964
+0.91182780
+0.73880327
+-0.21203363
+0.22769165
+-0.86809495
+0.98480105
+0.65728211
+-0.44734943
+-0.84199266
+0.01737928
+0.39224160
+-0.17924547
+-0.16815615
+-0.84087314
+-0.37589699
+0.29023159
+-0.75970630
+-0.75057422
+-0.56665945
+-0.35831946
+-0.69808730
+0.51969135
+-0.66934681
+0.90242839
+-0.00247079
+-0.90285241
+0.23205709
+0.02784777
+-0.55231869
+-0.11353397
+-0.63258740
+-0.07328200
+0.64436340
+0.24534225
+-0.59787562
+-0.94874226
+0.60937929
+-0.20578003
+0.21359980
+0.26553380
+-0.57234523
+0.60966516
+0.95768690
+-0.49400663
+0.23131597
+0.44476724
+0.55846381
+-0.97592463
+0.07149100
+-0.34148228
+-0.37577331
+0.57677901
+0.58922720
+0.53089762
+0.66346014
+0.96141064
+0.46463931
+0.84186137
+-0.29486716
+0.48457754
+-0.45786947
+0.46079636
+0.75989103
+-0.89055608
+-0.36718571
+0.48160374
+-0.86698151
+0.16687083
+0.89706624
+0.74807751
+-0.80821079
+-0.02145791
+0.19508386
+-0.81616457
+-0.02272880
+-0.90808737
+0.37498295
+0.20293832
+-0.26187789
+-0.59079388
+0.18074822
+0.17934978
+-0.55687293
+0.33900082
+-0.90216279
+-0.69083199
+0.14604640
+0.73916447
+0.10256696
+-0.53007349
+0.92558336
+-0.56506687
+-0.99132555
+-0.32199872
+0.85010576
+0.78888941
+0.31775630
+-0.77761142
+-0.26582426
+0.23171043
+0.53273862
+-0.61315475
+-0.17382264
+0.90698997
+-0.63731039
+0.58596651
+-0.35462740
+-0.08797411
+0.13068039
+-0.52237042
+0.70128226
+0.02353267
+-0.63507014
+-0.08536201
+0.57335484
+0.11096403
+0.22069782
+-0.59963482
+0.60985317
+0.48822124
+0.78564941
+-0.05315037
+-0.72826299
+-0.62199088
+-0.83344318
+0.24617740
+-0.27498419
+0.14311770
+0.66033378
+-0.21499424
+0.38672101
+0.75579226
+-0.48574537
+0.66520751
+0.83428955
+0.83040690
+0.44946396
+-0.99077998
+0.82195938
+0.24415135
+-0.83051974
+-0.58587798
+0.81829965
+0.44650197
+-0.90986319
+0.45855308
+-0.75714090
+0.29564261
+0.76642704
+-0.58182937
+-0.04178691
+-0.90066065
+0.82734549
+-0.33041584
+-0.40917879
+-0.56831139
+0.42198062
+-0.76969290
+-0.99739864
+0.76461375
+0.53361475
+-0.15153253
+-0.02753544
+0.28413045
+-0.56552768
+-0.29469621
+0.13848114
+0.37091541
+-0.00990552
+0.07887077
+0.47256768
+-0.47583795
+0.68057406
+0.90711665
+0.68452954
+-0.53927279
+0.73339844
+0.05728304
+-0.16255319
+-0.06375140
+-0.17128873
+-0.99023228
+0.84703422
+0.12360930
+0.36429167
+0.80920279
+-0.31672549
+0.37900138
+0.98844337
+-0.34994054
+-0.45826983
+0.66649163
+-0.74764490
+0.76279652
+0.30524552
+-0.10289323
+-0.04195917
+0.60913801
+-0.78276636
+-0.74545106
+0.64314961
+0.66136026
+0.93255615
+0.06618750
+-0.15963650
+0.03801978
+0.65618968
+-0.31861418
+0.32528377
+0.66894615
+-0.74776164
+-0.99980028
+-0.89554718
+-0.80951907
+0.07503450
+0.65979981
+-0.67471725
+0.32324219
+0.64342391
+0.42009652
+0.83344448
+-0.32853687
+0.31755853
+0.17128932
+-0.58170816
+-0.72329050
+0.27580190
+0.20425189
+0.68844366
+0.13530934
+0.66258264
+-0.27245456
+-0.46832138
+0.19565606
+0.28685749
+-0.13713157
+-0.71487403
+0.42103553
+-0.91369943
+-0.23592341
+0.64913380
+0.35368598
+-0.44279045
+-0.00277960
+-0.31912035
+0.38818932
+-0.13050777
+0.40544903
+0.61871779
+0.94360900
+0.59883511
+0.16972327
+0.54653847
+0.57615852
+0.96013236
+-0.25949657
+-0.73396063
+-0.14083695
+0.59643424
+0.88716149
+0.22786915
+-0.98310905
+0.29599178
+-0.78897487
+0.35872781
+0.45667017
+0.33758187
+-0.82416369
+0.39137220
+0.89991951
+0.48843420
+0.30926406
+-0.58028105
+0.95048213
+0.17856503
+-0.12732792
+-0.07594246
+-0.58258355
+0.09069574
+0.15087736
+-0.69695058
+-0.87316605
+0.70943201
+-0.66408435
+-0.90612421
+0.98077691
+-0.63781384
+0.89767349
+0.52680421
+-0.62852997
+-0.87432051
+0.23270607
+0.98850179
+-0.93118575
+0.12921107
+0.52179480
+0.01906943
+-0.05455297
+0.58503044
+-0.44225842
+-0.25206828
+-0.86976488
+-0.22455615
+-0.79286379
+0.41834629
+-0.68939146
+-0.09969246
+-0.56996945
+-0.99836025
+-0.06683689
+-0.92827579
+0.29736662
+0.68020427
+0.70396125
+-0.55841118
+-0.33544713
+-0.62613097
+-0.36426437
+-0.51256874
+-0.82094705
+0.43876970
+0.46534562
+-0.80159393
+-0.76380844
+-0.01836193
+0.30338013
+0.08997965
+-0.71540684
+0.51547456
+-0.77351944
+0.44800770
+-0.09749466
+0.97232664
+-0.95275874
+-0.45365185
+-0.09779251
+0.05759215
+-0.88706139
+0.83073676
+-0.12043506
+-0.74263713
+-0.72133267
+-0.03872186
+0.65287876
+0.17282820
+0.90850163
+-0.76699381
+0.82490528
+-0.10272336
+0.59893024
+0.23992181
+-0.41972226
+0.98683834
+-0.44568229
+0.85536468
+0.49650013
+-0.07964516
+0.17189682
+0.55872810
+-0.56229597
+-0.99305995
+-0.95341713
+-0.91160061
+-0.17717487
+0.65169442
+0.92729235
+0.00059283
+0.93049097
+0.92663133
+-0.80514455
+-0.30629432
+0.80897510
+0.36166787
+-0.94274038
+-0.25625050
+-0.69124344
+-0.93623877
+-0.63505578
+0.15007412
+-0.75206821
+0.85195494
+-0.22750789
+-0.64591992
+-0.64415252
+0.62963533
+0.90627873
+-0.23207718
+-0.64059022
+-0.86072934
+-0.29792088
+-0.59808618
+-0.47062045
+0.23319495
+0.28882515
+-0.12219745
+-0.75304873
+-0.74381098
+-0.97658911
+-0.69488117
+0.91980612
+-0.31914073
+0.77808762
+-0.71171960
+0.07635963
+0.72920346
+0.35197949
+-0.39887929
+0.92066848
+-0.97475815
+0.09614098
+-0.99780425
+-0.76000300
+-0.52226129
+0.14819372
+0.32501650
+-0.65206882
+0.40375435
+-0.08822697
+0.17662954
+-0.00705159
+0.93824792
+0.43702459
+-0.03273338
+0.97927177
+-0.28630674
+-0.54584357
+0.80957544
+-0.55210868
+-0.67364389
+-0.46977091
+0.33277893
+0.63953876
+-0.93755352
+-0.26310456
+-0.17928302
+0.11646819
+-0.28026164
+0.87937737
+-0.93215430
+-0.87217841
+-0.85456562
+0.70426357
+-0.71786559
+-0.65250990
+-0.91330950
+0.33168006
+-0.79002148
+0.52815211
+-0.22429490
+-0.55185169
+-0.69825652
+0.83191729
+0.39540052
+-0.95503306
+-0.48752594
+-0.89191184
+0.78969324
+0.35753584
+0.13293040
+-0.05793417
+-0.48071087
+-0.37771275
+-0.90049789
+-0.92104768
+-0.23219908
+0.34420344
+-0.39054710
+-0.03694703
+-0.45753423
+0.00474364
+-0.85189036
+-0.28156348
+-0.73360225
+0.57805307
+-0.35557968
+-0.94167864
+-0.54976663
+-0.84739745
+0.02467921
+0.74391062
+-0.76945081
+-0.30451318
+-0.77249774
+0.79215176
+-0.72384084
+0.28379604
+-0.15238876
+-0.23352518
+0.23467102
+0.62878997
+-0.63867254
+0.46518330
+0.76164091
+-0.72582545
+-0.71612442
+-0.16991452
+0.56593495
+0.81195167
+-0.64817891
+-0.54059520
+-0.58598363
+0.83993638
+-0.18262011
+-0.85996459
+-0.19061726
+0.09473777
+0.76677012
+-0.95439415
+-0.27765250
+0.44941735
+-0.53238830
+0.03221691
+-0.89947044
+0.44863904
+-0.32900274
+0.34165061
+-0.70652950
+0.97038555
+0.68334961
+0.94415319
+0.71755505
+0.64202082
+-0.38742232
+0.83719945
+0.17959762
+-0.86101739
+-0.74176970
+-0.58317202
+-0.74916613
+0.99217582
+-0.39280105
+-0.59299737
+0.55744863
+0.75294304
+0.11915159
+0.01967096
+0.94447112
+0.31984949
+0.27026880
+0.37618124
+-0.47425056
+0.39869130
+-0.74873939
+0.83908510
+-0.42628706
+-0.10924017
+-0.17636061
+0.13681090
+0.62818158
+-0.00429934
+0.81566405
+-0.43738848
+0.85560215
+-0.76121654
+-0.57959434
+-0.87723696
+-0.85253012
+-0.35631812
+0.97463953
+-0.91613203
+-0.30579448
+0.78549826
+0.82787287
+0.83084702
+-0.22703147
+-0.39405906
+-0.42998236
+-0.47499335
+-0.85759513
+0.31888580
+0.29224420
+0.27021074
+-0.50551605
+0.61033058
+-0.59427452
+-0.64643967
+-0.29845911
+-0.53051424
+0.89110970
+-0.29113811
+-0.57839331
+-0.18381387
+0.90464711
+0.75845730
+-0.57978594
+-0.96913933
+0.81630766
+-0.10483509
+-0.83088404
+-0.85010032
+-0.23103237
+0.79838145
+0.36671698
+-0.12596160
+0.74892521
+0.11521757
+-0.43195850
+-0.89045326
+-0.85265501
+0.99865186
+-0.02539456
+0.21537411
+0.19813919
+-0.89326697
+-0.28985679
+-0.30646002
+0.09557343
+0.67381525
+-0.97308048
+0.71958089
+0.74892938
+0.99075174
+-0.59486610
+-0.35728908
+0.23392332
+-0.01093554
+0.08306921
+0.49035513
+0.72471607
+0.66186631
+0.74815416
+-0.02248144
+-0.67658275
+0.79365969
+0.94363272
+0.32540584
+-0.86743183
+0.33820748
+-0.29027694
+0.39198923
+0.37484765
+0.27826118
+0.99736214
+0.44128668
+-0.45825964
+0.24342394
+0.34507716
+0.18007398
+0.57547283
+0.56307638
+-0.24806917
+0.67896569
+0.37477612
+0.83440387
+0.49779952
+-0.68289235
+-0.96449193
+0.58957112
+-0.70953286
+0.58993638
+0.35057735
+-0.06803465
+-0.46791226
+-0.99161423
+0.10427070
+0.43436468
+0.62055409
+-0.45130593
+-0.08104587
+0.89800549
+0.10050488
+0.55067313
+0.78088462
+0.45252502
+0.58103049
+0.51299727
+0.16119492
+0.08971691
+-0.88232707
+0.70709252
+0.19014883
+0.63018405
+0.94812310
+0.56184983
+0.97012615
+-0.25737792
+-0.05944824
+-0.31906235
+-0.23801285
+0.87001050
+0.07902509
+-0.90188804
+-0.28504795
+0.70076469
+-0.90665206
+-0.19914724
+-0.73361182
+-0.88489126
+-0.68977149
+-0.51756957
+0.58306211
+0.36611356
+0.37097341
+-0.62398418
+-0.90987411
+-0.66422142
+-0.17512647
+-0.34546546
+-0.04627984
+-0.60160687
+-0.63465932
+-0.14712838
+0.14301235
+-0.26122412
+0.00168687
+0.09177534
+0.76751277
+-0.87928424
+-0.84038747
+-0.42717811
+-0.42980260
+-0.94150114
+-0.78814325
+-0.13477737
+0.72940338
+-0.70938399
+0.56808257
+-0.70722273
+-0.97237466
+-0.73525354
+0.50062263
+-0.50735873
+0.74815166
+-0.47676027
+-0.50231206
+0.18718565
+0.22724247
+0.78878331
+0.28396368
+0.73518455
+-0.22448921
+-0.47765988
+-0.40414155
+0.16013718
+0.59402537
+-0.29597646
+0.85373497
+0.67808521
+-0.50093085
+-0.52352339
+0.21771264
+0.83405340
+-0.46562892
+0.43489957
+0.75869417
+-0.17166591
+-0.84674096
+0.16962600
+0.59269381
+-0.16760629
+0.84220588
+-0.76404473
+0.03292894
+0.41404986
+0.33600855
+-0.28240198
+0.66467023
+0.46263337
+0.82831967
+0.39094234
+-0.75299169
+-0.76036139
+0.68770015
+-0.81181116
+-0.06928557
+-0.30287582
+0.05927861
+-0.63741228
+-0.07406652
+0.50554788
+-0.34988755
+0.18293643
+0.15166628
+-0.54405358
+-0.50422513
+0.60357726
+0.98330057
+-0.63750273
+-0.00443941
+0.49248707
+-0.38592356
+0.29322970
+-0.07003814
+0.01394510
+0.70891440
+-0.49449235
+0.28821969
+0.12035346
+0.34468281
+-0.16009462
+-0.90153877
+-0.70094159
+-0.35084867
+0.62808549
+-0.61963856
+-0.87637022
+-0.32531720
+0.06539595
+0.21190214
+-0.46693188
+-0.13900357
+0.99998653
+0.07131302
+-0.43203998
+0.37853611
+-0.11660212
+0.34721506
+0.29834676
+0.05181360
+0.33301079
+0.57412314
+-0.08340919
+0.39434326
+0.28532541
+0.91256213
+0.97613764
+-0.72069192
+0.47529137
+-0.69876647
+-0.02183336
+-0.94299393
+-0.73901263
+-0.41862428
+0.10561347
+-0.53626326
+-0.27613914
+-0.65167981
+0.47514057
+0.88583910
+0.38567090
+-0.64273039
+0.22883618
+-0.78903957
+0.29151523
+-0.39175564
+0.83750451
+0.83849037
+0.06114829
+-0.06000853
+0.51579332
+0.41202307
+0.27806759
+0.88051915
+0.79512155
+0.72615588
+-0.35616016
+0.88508868
+0.61031425
+0.52679396
+-0.30453533
+-0.13438427
+0.57851005
+-0.07425046
+0.72802806
+0.50619793
+-0.25649405
+0.45434439
+0.35409713
+0.23613751
+-0.52211589
+0.36115623
+0.98097265
+-0.70605576
+-0.68132311
+0.57151008
+-0.21032792
+0.99137235
+-0.87723552
+-0.30931848
+0.91668427
+0.36063182
+-0.97108984
+0.31291068
+-0.63330659
+-0.89956632
+0.72997916
+0.74688387
+0.10336709
+-0.49759161
+-0.48522240
+-0.88190314
+-0.43189162
+0.75208819
+0.57007790
+0.81255257
+-0.40922719
+0.01608312
+0.70293581
+-0.70864320
+0.84611058
+-0.64903790
+-0.52990484
+-0.74484619
+0.63237369
+-0.42941493
+-0.25609773
+-0.05194294
+0.18775117
+0.87325799
+0.21890152
+-0.75002436
+-0.41046518
+0.12661934
+-0.81079887
+-0.52209550
+0.57910669
+-0.74405804
+-0.06746238
+-0.26690304
+-0.91242829
+-0.59543210
+-0.49974781
+-0.24224168
+0.62794316
+-0.67023239
+-0.48454148
+-0.08325684
+-0.57314488
+-0.56743422
+0.16265655
+0.65834928
+0.26415086
+-0.00028116
+-0.81760792
+-0.58640704
+-0.92238193
+-0.05506361
+-0.16924334
+0.70304930
+0.55092323
+0.91777897
+-0.90562094
+0.28448284
+-0.80940430
+0.94205654
+-0.25520682
+-0.01108903
+0.46857524
+0.30212760
+-0.91259315
+0.81336832
+0.73527455
+-0.53218466
+0.52609444
+-0.70179501
+-0.39773214
+0.95787024
+0.03033686
+-0.81683898
+0.14970326
+-0.34202945
+-0.70515752
+0.77119505
+-0.29558003
+0.23535502
+0.83508909
+0.37914252
+-0.85767792
+0.27139187
+0.40514398
+0.08165359
+-0.93462867
+-0.49233902
+0.50117397
+-0.11511886
+0.05601621
+0.43151152
+0.35465038
+0.11437154
+0.18621266
+0.38724983
+-0.41559511
+-0.43310112
+0.10441434
+-0.16914976
+0.89022911
+-0.01884210
+0.55101573
+0.30647767
+-0.20319474
+-0.06155252
+-0.97594334
+0.30945456
+0.49604332
+-0.68141872
+0.25641489
+-0.20659637
+-0.14032459
+-0.65888044
+-0.52710247
+0.46393263
+0.16639936
+0.64936018
+-0.73748928
+0.80257034
+0.85594976
+0.85549128
+0.98705804
+0.29085529
+0.37213171
+-0.96174337
+0.72795558
+0.41753340
+-0.82305124
+0.87514508
+-0.54159090
+-0.02605164
+-0.35469842
+-0.69862592
+-0.75435603
+0.00185704
+0.13596213
+-0.84516296
+-0.25544989
+0.17001557
+-0.47988498
+-0.38943905
+-0.96061799
+0.54039192
+-0.81795795
+-0.15953457
+0.76355457
+0.91459191
+0.04062414
+-0.39831054
+-0.48973513
+-0.63967764
+0.73452795
+0.39349055
+-0.96906886
+-0.14730930
+0.54261339
+0.32524562
+-0.74138838
+-0.28163064
+0.28895974
+0.68201435
+0.29675007
+-0.97122347
+0.67464280
+-0.57502723
+-0.71199092
+-0.58468348
+0.23114252
+0.29739439
+-0.73036751
+-0.22757572
+-0.85775466
+-0.28345686
+0.11318362
+0.63451672
+0.44781077
+0.81977308
+0.91219115
+0.78396547
+-0.85082327
+0.38867640
+-0.58408955
+-0.77052929
+-0.43724316
+0.62877393
+0.44244003
+-0.29796177
+0.72600901
+0.33237600
+-0.68626660
+0.02332354
+-0.31410939
+-0.42471004
+-0.96489043
+0.40506184
+0.64026904
+0.57319057
+0.88000929
+-0.68046188
+-0.66967896
+0.37096310
+-0.49308562
+-0.05967879
+-0.07720333
+0.85493922
+0.64899230
+0.59093249
+0.11707199
+-0.27964061
+-0.85138535
+-0.41433525
+0.83193099
+-0.35137230
+-0.59418878
+-0.66091803
+-0.28593773
+0.35093164
+0.25317824
+0.91665161
+-0.20793980
+0.39014053
+0.61866367
+0.87025738
+0.11030781
+0.14699304
+0.71018803
+-0.08621520
+-0.65306392
+-0.92035242
+0.46455395
+0.10419548
+-0.26336491
+0.94467962
+-0.61049744
+0.73580056
+-0.23628918
+0.53875524
+0.67854277
+0.85197764
+-0.08699109
+-0.69871587
+0.82083156
+-0.38093774
+-0.29836347
+-0.34204031
+0.55862896
+-0.54342118
+0.94575031
+0.92754483
+0.88539931
+-0.46335239
+0.00535957
+0.24753323
+-0.90492766
+-0.78796211
+0.63652992
+-0.92683972
+-0.78789565
+-0.37354362
+0.18061578
+-0.16457224
+-0.52659357
+0.62005401
+-0.54590759
+0.66266334
+-0.52528280
+0.01567471
+0.26522207
+0.28968525
+0.32433867
+0.65195739
+0.28359640
+-0.65143177
+0.08906758
+0.51823485
+0.02700102
+0.61929619
+0.83184981
+-0.85362402
+-0.48609084
+-0.18746173
+0.45295072
+0.82313263
+-0.78004794
+-0.22141916
+-0.84825927
+0.17451811
+-0.43589658
+0.18177402
+0.91493821
+-0.81687114
+-0.32377756
+-0.64879048
+-0.08586860
+-0.00961983
+-0.28213423
+0.07581687
+0.08097148
+-0.67525345
+-0.79918566
+-0.90786546
+-0.56150618
+0.16607893
+-0.27377719
+0.09964323
+-0.29995227
+-0.56512552
+-0.17273605
+-0.50701153
+-0.34197444
+-0.89926748
+-0.96824010
+0.75756311
+-0.84428956
+-0.38438833
+-0.71660990
+-0.53954318
+-0.55030701
+0.16900718
+-0.46690571
+-0.61239058
+0.05955243
+-0.01401711
+-0.66357344
+0.20337272
+0.21495557
+0.30758429
+0.61147928
+0.87351906
+-0.59902570
+-0.84189874
+0.80424595
+0.07720661
+-0.23198467
+-0.42109787
+0.95235610
+-0.32508415
+-0.26666439
+0.98882830
+0.44964373
+0.30970931
+-0.96241399
+0.34397888
+-0.59113765
+0.84880245
+-0.12672740
+0.29197741
+0.48561645
+-0.44194806
+-0.96043417
+-0.12448990
+0.53876352
+0.36625028
+0.37403011
+-0.88032773
+0.01068401
+-0.88827913
+0.98693383
+0.22977245
+-0.58187842
+-0.63064772
+0.27911615
+-0.22877675
+0.45553112
+0.60451782
+0.31058514
+0.25471866
+-0.19609833
+-0.74555397
+0.14471030
+-0.82036154
+-0.59074441
+0.29027498
+0.47256982
+0.03016841
+-0.75672638
+-0.41106212
+-0.68223187
+0.82710254
+-0.34564430
+0.38570309
+0.04835391
+0.02059054
+-0.33418322
+-0.29535311
+-0.92697877
+-0.69880763
+-0.97308800
+-0.32727915
+0.36842859
+-0.81418659
+-0.38785791
+0.86541021
+0.83291340
+-0.79611215
+-0.28851402
+-0.99128071
+0.98741353
+-0.55521187
+-0.57183686
+-0.42958552
+-0.62939525
+0.20011747
+-0.10532159
+0.09211993
+-0.41123974
+-0.38789904
+0.35836506
+-0.21877450
+-0.40357709
+-0.06838518
+-0.20326126
+-0.62001032
+-0.26578128
+-0.93228859
+-0.62079740
+-0.94111742
+-0.53429967
+0.73424613
+0.80313599
+-0.14818037
+-0.21190244
+0.32347357
+-0.26301706
+0.57278514
+-0.78012434
+-0.36210442
+-0.84844723
+0.60231757
+-0.67127085
+0.51529169
+0.52105141
+0.72555232
+-0.64775178
+-0.20508081
+-0.25891590
+-0.90228775
+0.41903067
+-0.89694412
+0.71375906
+0.12909484
+-0.86749186
+-0.44759351
+0.89008307
+0.68811905
+-0.35147160
+-0.90067620
+0.18471253
+0.16080153
+-0.51859510
+-0.03207403
+-0.00751704
+0.94592762
+-0.78744605
+0.12188876
+-0.47391206
+-0.22318292
+0.61236274
+-0.32770747
+0.66708028
+-0.50097740
+0.89214528
+-0.47761768
+0.49159002
+0.25929534
+0.62432027
+-0.26828504
+0.06707788
+0.99235213
+-0.83520976
+-0.90365092
+-0.37701339
+0.30548823
+-0.05070937
+0.73641109
+-0.37283248
+-0.33664179
+0.04778469
+0.60024643
+0.85591447
+0.67820084
+-0.42418182
+0.25187933
+0.35931814
+0.35249245
+0.52967560
+-0.79582597
+-0.93771555
+0.76961005
+-0.83766136
+-0.35012394
+-0.39090186
+-0.67015830
+0.84273720
+-0.02707613
+-0.52753851
+0.00413096
+0.93522239
+0.04715693
+-0.45231819
+-0.63364664
+-0.13227892
+-0.61508071
+-0.68319654
+0.85318279
+-0.49819696
+-0.83385582
+0.96538436
+-0.07377523
+-0.83405341
+-0.92316324
+-0.98253340
+0.43960476
+-0.91900176
+0.58177459
+-0.37834859
+-0.86782648
+0.62514937
+0.96553814
+-0.16922420
+-0.32680589
+0.04081941
+-0.07218641
+0.60810745
+-0.11351109
+-0.95983454
+0.32785285
+0.42763686
+0.38987648
+-0.73218727
+0.08200777
+-0.18121284
+0.78683162
+0.92014897
+-0.81107187
+0.65107238
+-0.58793312
+0.02818179
+-0.76408920
+0.70972753
+0.30433345
+-0.38976616
+-0.00592554
+-0.44067705
+0.82157838
+0.84947085
+0.43179357
+-0.04668409
+0.62749898
+-0.95702740
+0.18038118
+0.82192397
+-0.00518978
+0.31419921
+-0.38661188
+0.58146465
+0.66775727
+0.08117473
+0.93509924
+-0.07194734
+0.62931669
+-0.01430082
+0.58271456
+-0.68406358
+-0.58798161
+0.32689500
+0.57038271
+-0.29197770
+-0.02165914
+-0.23251772
+-0.25453103
+0.51233160
+-0.24109733
+0.30968606
+0.42230546
+0.53189313
+0.35083783
+-0.28858209
+0.56191146
+0.95768547
+0.34415150
+0.24927807
+0.41553962
+0.91514325
+-0.83485221
+-0.17269959
+0.42789424
+0.71464593
+-0.94388210
+0.30174681
+0.14376312
+-0.58237227
+0.54261997
+-0.48570268
+-0.50765945
+0.06777881
+-0.70706111
+-0.53996373
+-0.94195518
+-0.21561899
+-0.33201275
+-0.00583824
+-0.74216688
+0.10440784
+-0.13155076
+0.32834904
+-0.91053657
+-0.84949336
+0.30220089
+-0.17533858
+-0.34951218
+0.56052378
+-0.14511045
+0.87930111
+-0.41247417
+-0.94426204
+0.46582157
+-0.13555325
+-0.29720546
+-0.92578147
+-0.16498415
+0.63018200
+0.25467253
+-0.59118892
+0.84611117
+0.59249453
+0.88074029
+-0.84982750
+-0.75588000
+0.63493225
+0.86091476
+0.66199819
+-0.13280795
+-0.68976887
+0.44022763
+-0.25542498
+-0.56347731
+-0.71997654
+0.56456459
+0.75846303
+-0.89947369
+0.69823170
+-0.17201364
+-0.58261698
+-0.76354936
+0.24042058
+-0.31733453
+0.96291339
+0.61715817
+-0.84539342
+0.24065995
+-0.55559337
+-0.46682113
+0.08684576
+0.58994472
+0.62653208
+0.45270503
+0.25608683
+0.84300315
+-0.53987455
+0.51065350
+0.55271673
+0.05800080
+0.54448116
+-0.16285956
+0.27562690
+-0.75268728
+-0.56402543
+0.42803001
+0.66530466
+-0.55210066
+0.18281901
+0.23669159
+-0.09827137
+-0.50393906
+-0.78740813
+-0.74783492
+0.36558163
+-0.85134508
+-0.28913146
+-0.52744254
+-0.68766296
+0.83014953
+0.04609954
+-0.00791723
+-0.25769848
+-0.68753171
+0.66695642
+-0.49082059
+-0.61842999
+0.40478694
+0.31313014
+0.62326777
+0.06710315
+0.67841911
+-0.51825273
+-0.15818244
+0.02849221
+0.88871467
+0.87940824
+0.60388112
+0.68533325
+0.66003323
+-0.08430248
+0.78086102
+0.14027202
+-0.26181978
+-0.59573931
+0.02530181
+0.93071747
+0.96829569
+0.80749953
+-0.76651615
+-0.74559352
+-0.09781504
+0.04632545
+0.80169737
+-0.54286200
+-0.83957256
+0.45103943
+0.88130987
+-0.48770779
+0.24278605
+0.66760647
+0.06387007
+0.49156320
+0.12114358
+-0.06882596
+0.97997618
+-0.44279468
+-0.29768908
+-0.33724529
+0.69720984
+-0.78648761
+-0.22996974
+-0.99098150
+-0.41092277
+-0.61878482
+-0.38563401
+-0.83575484
+-0.25020844
+0.52513766
+0.27655196
+-0.09232569
+-0.85312107
+0.93572438
+-0.00905627
+0.96562314
+-0.96161832
+0.09228373
+0.30550539
+0.07965493
+0.64800811
+-0.38141692
+-0.45961171
+-0.59009552
+-0.80717109
+0.07517445
+0.01232278
+0.70338643
+0.45431757
+-0.50863689
+0.86498547
+-0.84490855
+0.97842813
+0.72694659
+-0.06484228
+0.09565604
+-0.03400427
+-0.77299468
+-0.06840670
+0.53138232
+-0.86728862
+-0.84679501
+0.90365732
+-0.86341038
+-0.01145315
+0.08669376
+0.62601066
+-0.26935852
+0.01486516
+0.46269310
+-0.46326274
+-0.50195387
+0.20555329
+-0.18295085
+-0.78370893
+-0.29521161
+0.37752545
+0.47910368
+0.23865032
+0.57532859
+0.64874041
+0.94620264
+0.06998556
+0.83204856
+-0.43088484
+0.68816045
+-0.60746148
+-0.21769311
+-0.01632962
+-0.93089266
+-0.01444166
+-0.07171788
+0.41216301
+-0.45521422
+0.21060991
+-0.14641594
+0.54246520
+0.14780530
+0.57537013
+-0.72322317
+0.04417887
+0.93552942
+0.13835203
+0.73332433
+-0.40955400
+-0.36382859
+-0.86976029
+0.96201905
+0.83140510
+-0.90877928
+0.79728653
+-0.66686850
+0.31231564
+-0.07023505
+-0.27583808
+0.49745313
+-0.51592219
+0.59457736
+0.85304829
+-0.91796559
+-0.58007188
+0.61041144
+0.87780505
+0.03686001
+-0.19607836
+0.82182661
+-0.23632896
+0.98198537
+-0.81314950
+0.05245473
+-0.95714218
+-0.92771254
+0.51707375
+-0.71118155
+0.56945705
+-0.94184985
+0.84818923
+-0.22253782
+-0.00089681
+0.81606269
+-0.60897532
+-0.69537973
+0.69815254
+0.17007828
+0.55472636
+-0.11217171
+0.95109677
+0.25507605
+0.53401148
+-0.42366832
+0.57942617
+-0.34001046
+-0.51698717
+0.89967668
+0.32867217
+-0.00175470
+-0.70121089
+-0.59475225
+0.09270489
+0.07528496
+-0.46705216
+-0.89251499
+0.76532042
+0.62886119
+-0.32313806
+0.38578808
+0.03825700
+-0.52292866
+0.02716839
+0.04541194
+0.56805909
+0.32043922
+-0.05743474
+-0.63931602
+0.67388666
+0.49386561
+-0.79065375
+-0.56775492
+0.33934081
+0.94556224
+-0.44205713
+-0.96790015
+-0.41218615
+-0.84307544
+-0.23642880
+0.84952116
+-0.55121088
+-0.72795370
+-0.71929777
+0.50906479
+0.83715332
+0.55032253
+0.88420689
+0.37970102
+-0.43230593
+-0.46932721
+-0.92411954
+0.34993827
+-0.93878811
+-0.54920116
+-0.23974222
+-0.09509546
+0.13612735
+-0.90576613
+-0.28704053
+0.12420607
+-0.43533117
+0.19546950
+0.09126937
+-0.89297100
+0.37257040
+0.48401725
+0.35008097
+0.04650760
+-0.46153766
+-0.90540612
+-0.87113701
+-0.55914053
+0.47432661
+-0.73986116
+-0.62513277
+-0.97496865
+0.45864165
+-0.71547565
+0.29155779
+-0.09786230
+0.01645899
+-0.32647491
+0.09640396
+0.99501979
+0.30818129
+0.79839969
+-0.44035608
+-0.52291709
+-0.21736383
+0.92086434
+-0.65624210
+0.30529690
+0.33210051
+0.30793548
+-0.65069211
+-0.57355040
+0.24379683
+-0.01235366
+-0.98405542
+-0.98799246
+-0.79309925
+0.71805263
+0.27270091
+0.41293907
+-0.54684287
+0.16487265
+0.71935475
+0.75360644
+0.78306758
+0.30489147
+0.82696390
+-0.67797494
+-0.45658845
+-0.00342405
+-0.30088896
+0.70997977
+-0.76713701
+0.10866857
+0.08117175
+0.72355831
+-0.59156817
+0.23791826
+-0.20876640
+0.15449274
+0.12769651
+-0.10726523
+-0.45696658
+-0.91772097
+0.85362256
+0.09540451
+0.63575113
+-0.01046318
+0.35664630
+-0.87279133
+-0.75099562
+-0.30462211
+0.40875924
+0.20508993
+-0.13720304
+-0.42723376
+-0.10483253
+0.90661430
+0.52581477
+-0.42338181
+0.65832353
+0.70909345
+-0.06532985
+-0.42018902
+-0.96240050
+-0.81219935
+-0.59280226
+0.37792456
+0.25601614
+-0.12195009
+-0.57503393
+-0.80551249
+0.62962079
+0.59927666
+-0.95816818
+0.16989362
+-0.39498663
+-0.77493788
+-0.76091833
+0.38005590
+-0.40811670
+-0.61599201
+0.46361935
+0.64110160
+-0.77835366
+-0.77602866
+0.58739614
+0.23454952
+-0.78394014
+0.63547099
+0.82365453
+-0.31912130
+-0.12132311
+-0.17381710
+0.39610696
+0.96262777
+-0.80093007
+-0.22154582
+0.77868533
+0.51922321
+0.94416618
+0.86091506
+0.39204764
+-0.54543033
+-0.68261909
+-0.55904931
+-0.94056612
+0.71945822
+0.61433589
+0.41523921
+0.99621236
+0.47750008
+0.86604536
+0.17963254
+0.17918634
+0.41835654
+-0.48527879
+0.91157556
+-0.45449144
+-0.14515752
+0.33939624
+0.35009396
+-0.11726052
+-0.71151981
+0.06173372
+0.32667065
+-0.37609881
+-0.10968482
+-0.51067054
+-0.30638325
+0.90315044
+0.05285394
+0.25107801
+0.80350983
+0.52336645
+-0.56290755
+-0.20214993
+-0.73041749
+0.24624574
+-0.82437855
+0.20149636
+0.59844863
+-0.39497006
+-0.90969896
+0.95900595
+0.65803599
+0.10332131
+0.06687677
+0.15932357
+-0.03020430
+0.16738772
+-0.64389515
+0.10485744
+-0.42429769
+0.03817928
+0.36923933
+-0.27805936
+-0.10554659
+-0.76456623
+-0.31928134
+-0.56344372
+-0.56763107
+0.69685948
+0.50295866
+0.79977667
+-0.95074027
+-0.29678440
+0.85263455
+0.39230347
+0.21064329
+-0.14443260
+0.09773099
+-0.70168895
+-0.17910415
+0.63501132
+-0.17369753
+0.59927523
+0.30573940
+-0.64808482
+-0.00973761
+0.21222043
+0.46002460
+0.92071569
+0.73671687
+-0.96617850
+-0.36793315
+0.70067501
+0.06342483
+0.64485073
+0.42684329
+-0.25545150
+-0.96069853
+-0.94238454
+-0.67340529
+0.42835593
+0.57013965
+-0.57017201
+-0.07236308
+0.68895733
+-0.41913617
+0.29947627
+-0.57257313
+-0.97961047
+-0.81324622
+-0.74920905
+0.41361487
+0.24573016
+0.01928341
+0.96769106
+0.50229287
+-0.91425505
+0.60368049
+0.55235898
+-0.00269955
+0.01690769
+-0.39829975
+-0.58750990
+0.91065395
+-0.87969139
+-0.50796449
+0.04453874
+0.39287722
+0.28547156
+0.46841657
+-0.95607517
+0.93918109
+-0.70190313
+0.29394782
+0.89943969
+-0.46268868
+0.13685453
+-0.25472677
+-0.83571970
+0.39391625
+0.37158811
+-0.56451729
+0.07705712
+0.58369803
+0.30919886
+0.09759426
+0.19750261
+-0.27290988
+0.77890146
+-0.49383777
+-0.32285988
+-0.03422552
+0.76263297
+0.40031028
+-0.81970644
+0.04627347
+0.35915363
+-0.00599217
+0.27604795
+-0.69819927
+0.57564557
+0.96734381
+-0.15101504
+0.24831402
+0.36615586
+-0.77188151
+-0.64525861
+0.61200869
+-0.77693173
+0.03096712
+0.99238682
+0.70180964
+0.47638190
+-0.17231321
+0.83897591
+-0.33380109
+-0.23655516
+0.11100757
+-0.18210447
+-0.32670939
+0.95821559
+0.37865257
+-0.76438566
+0.10941720
+0.76339829
+-0.71710232
+0.44128263
+-0.29336530
+-0.48050320
+-0.79364285
+-0.24056631
+-0.24523008
+0.98597276
+0.59611261
+-0.40043855
+0.95169055
+0.89477611
+-0.99702554
+-0.49431712
+0.49180009
+0.58220285
+0.73553184
+-0.35564381
+0.81895070
+-0.06511018
+0.70361664
+0.57942886
+-0.28602227
+0.20087391
+-0.32764713
+-0.83298351
+-0.93877632
+-0.91250950
+0.10109489
+0.24881467
+0.95497968
+0.63112040
+-0.18047329
+-0.80013334
+-0.49586842
+0.14501733
+0.81151799
+-0.05843967
+0.59812908
+-0.40689346
+-0.45381437
+0.31603391
+0.29150334
+0.45474064
+0.23119664
+0.46702552
+0.45199883
+-0.79776333
+0.94109583
+0.62635458
+0.38920724
+-0.01243055
+-0.60550600
+0.62585688
+-0.75279303
+0.49407709
+-0.26203942
+-0.44468808
+0.75533831
+0.04735124
+-0.01281869
+0.95021021
+-0.66375545
+-0.01570767
+0.42553198
+-0.93095136
+-0.14390439
+-0.94851228
+0.03140116
+0.11816990
+0.86772966
+0.70345283
+-0.84651718
+0.51498127
+0.59693778
+0.06080174
+-0.73085311
+0.94338000
+-0.75215247
+0.63099575
+0.88583791
+0.85276794
+0.29663992
+-0.76558821
+0.67737114
+-0.55915123
+-0.79000030
+0.58411098
+0.35485315
+-0.81376426
+-0.29589802
+-0.61091122
+-0.35379851
+-0.66734558
+0.34270978
+-0.82937974
+-0.75278485
+-0.27883130
+0.31699395
+0.25257218
+0.70846975
+0.19750309
+-0.31354934
+-0.94901187
+-0.02715641
+-0.05745816
+-0.55912900
+0.16048872
+0.85486138
+0.46857750
+0.05861151
+-0.31012231
+0.29844451
+0.89209569
+0.59189153
+0.26336944
+0.26477265
+0.43113065
+-0.51445064
+0.15868127
+0.62434554
+-0.11640996
+0.74288499
+0.38580167
+0.44223416
+0.92115462
+0.42246258
+-0.04461795
+-0.07123351
+0.87580907
+-0.06415677
+-0.16803777
+-0.43113339
+0.74875355
+0.15423620
+0.73778987
+-0.76322275
+-0.88096629
+0.70525134
+-0.55654454
+-0.04070944
+0.12791049
+0.03910816
+-0.98963840
+0.25195718
+0.44080758
+0.28192568
+0.95340526
+0.94707322
+0.94122100
+0.53509820
+0.55343664
+0.88457072
+-0.61850595
+-0.65465567
+-0.01852340
+0.17679930
+-0.22094959
+0.48060656
+-0.07887930
+-0.76104738
+-0.99375901
+0.36650968
+0.29823005
+0.40510392
+0.68149209
+0.24639261
+-0.38312751
+0.65994823
+-0.70682180
+-0.63396835
+0.36699271
+-0.20854682
+-0.70262656
+-0.53067231
+-0.41117954
+-0.35839492
+-0.40458971
+-0.90328543
+-0.30765444
+0.45770037
+0.16917980
+-0.92986541
+-0.02581847
+-0.50936189
+-0.43870997
+-0.36927342
+-0.85892308
+-0.93093444
+-0.25286269
+-0.94615512
+-0.25143278
+-0.56057945
+-0.18615633
+0.56003809
+0.72268641
+-0.29661149
+0.39600050
+0.31522453
+-0.16719574
+0.09190488
+0.74399364
+-0.76875941
+-0.30230886
+-0.05769736
+-0.81605087
+-0.01056999
+-0.39016706
+0.87406266
+0.26529944
+-0.15745497
+-0.67222416
+0.40587747
+0.35135424
+0.91063738
+0.88591421
+0.54399860
+0.12552261
+0.49535799
+0.81150579
+-0.57331291
+0.31273079
+-0.41278154
+0.12342525
+-0.93840509
+-0.88668033
+-0.19606984
+0.54086733
+0.71564555
+0.13652372
+-0.02521336
+-0.36271769
+-0.57287017
+0.88025475
+0.02080882
+0.96597040
+0.67247450
+-0.10350645
+-0.87739106
+-0.89397509
+0.34169483
+-0.17913496
+-0.94282815
+0.85877073
+-0.68611556
+-0.18170446
+0.86393332
+-0.42568421
+-0.72698706
+0.52788413
+0.35673797
+-0.78267317
+0.61776042
+-0.52000597
+0.03447902
+0.18823981
+-0.57545081
+-0.75306225
+0.66879845
+-0.76363824
+0.40653503
+0.34902990
+0.28382814
+0.47444570
+0.59074891
+0.06253731
+0.42681539
+0.08206689
+-0.66688630
+-0.76972669
+0.29776311
+0.38381553
+0.36133564
+-0.41078585
+-0.21543854
+0.33440876
+0.82027757
+0.29742372
+0.96418631
+-0.51978058
+-0.50887838
+0.95653200
+-0.19251633
+0.93179226
+0.26559353
+0.61705339
+0.58240461
+-0.19006914
+0.49403012
+0.37958169
+-0.78107293
+-0.27507132
+0.85977817
+-0.39990282
+-0.08551878
+0.92494476
+-0.46425962
+0.82868731
+-0.19221872
+-0.95117477
+0.09590912
+0.90076864
+-0.99252694
+0.14307618
+-0.69763613
+0.89687216
+0.19447005
+0.52746034
+0.68506491
+0.36265111
+-0.72332051
+0.59473467
+-0.98985112
+-0.76789434
+0.99161518
+0.89206100
+-0.11409336
+0.09714174
+-0.92744081
+-0.78067693
+-0.68380329
+-0.23630172
+0.45930099
+-0.14656132
+-0.00694752
+0.33027554
+0.15114415
+-0.54859385
+-0.89852905
+0.89392447
+-0.89431365
+-0.77970245
+-0.55397537
+-0.18410558
+0.17612207
+0.40358853
+-0.03467703
+-0.25075150
+-0.08132964
+0.54491997
+-0.46387869
+0.70055282
+0.13369417
+-0.55941615
+0.36398005
+0.97297907
+-0.96568325
+-0.85936534
+0.44854569
+0.01805496
+-0.43022102
+-0.71791506
+-0.88119554
+-0.49885255
+-0.95934658
+0.89229476
+-0.23853004
+0.39413023
+0.09250021
+-0.56733409
+0.71993196
+-0.19319993
+-0.70286900
+0.37486493
+-0.62833535
+-0.62984276
+-0.82163492
+0.70919430
+0.69769940
+-0.34350819
+0.88319794
+0.86973979
+-0.82277021
+0.66361640
+-0.50554663
+0.74664021
+0.00676438
+0.97065006
+0.18819013
+0.19171707
+-0.17956174
+-0.77826086
+0.08561274
+-0.69817477
+-0.20792249
+0.80416198
+0.92636631
+-0.91427391
+0.05334827
+-0.90187673
+-0.37031060
+-0.25856140
+0.16393110
+0.04676600
+0.46268352
+-0.56441116
+0.67521357
+-0.52196762
+0.83569141
+0.54480711
+-0.49968248
+-0.59185338
+0.83165382
+-0.26013400
+-0.77132745
+-0.88542093
+0.72571545
+0.96180682
+0.64856098
+-0.23493056
+-0.64768192
+0.75730932
+0.90352409
+0.76523029
+0.21724729
+-0.41110653
+-0.20413445
+0.30511844
+-0.53637398
+0.62328749
+0.32999746
+0.95751157
+-0.94157203
+-0.56149358
+0.31679976
+-0.16926885
+0.96999800
+-0.27354401
+-0.17765218
+0.51952434
+0.16332054
+-0.11426699
+-0.64687291
+0.15863538
+0.25196016
+-0.24453276
+-0.28882563
+0.72833979
+-0.92866150
+-0.76561897
+-0.15702987
+0.71412373
+0.00649190
+-0.93676881
+-0.57081175
+-0.23216933
+-0.36332911
+0.95560968
+0.73026037
+0.35435748
+0.13351643
+-0.60408604
+-0.60443234
+-0.99276685
+-0.37532848
+-0.34032112
+0.81848121
+0.11401439
+-0.38419211
+-0.05250865
+0.86764526
+-0.38777637
+-0.41945314
+-0.63904601
+0.75675750
+-0.30881661
+-0.80777462
+0.88867807
+-0.59207404
+0.94069207
+-0.04729521
+0.08008063
+-0.59098262
+-0.87659631
+0.29812741
+0.89053154
+-0.81620385
+-0.24920690
+0.96552920
+-0.83411014
+0.84555769
+0.09279823
+-0.17060268
+0.33729446
+0.31119061
+0.00195765
+0.94382906
+0.88138485
+0.07440853
+0.55218220
+-0.67706719
+-0.29254013
+-0.19333881
+0.69827628
+0.83782518
+-0.56566912
+-0.78982893
+-0.68995947
+0.86629939
+0.82831812
+-0.17199934
+-0.26661116
+0.59523809
+-0.03191364
+-0.73042738
+0.14239955
+0.82285714
+-0.67586026
+0.03897357
+-0.18338156
+0.69837391
+-0.17881179
+-0.40090716
+-0.02228063
+-0.65050411
+-0.14096904
+-0.98300724
+0.18139195
+-0.34276229
+-0.91784216
+0.04278493
+-0.00339651
+-0.19155389
+-0.69678947
+0.04182887
+0.82508409
+-0.44837058
+0.84415972
+-0.36032331
+0.19271231
+0.26393509
+-0.48630935
+0.42591321
+-0.51988137
+0.48245871
+-0.59784544
+-0.83378175
+0.65443444
+-0.94349004
+0.69595957
+-0.41084713
+-0.34954315
+-0.68268019
+-0.73496765
+-0.92461406
+-0.27031875
+0.79283965
+0.19095790
+-0.76050952
+0.13067424
+-0.46937048
+0.96555734
+0.49229968
+0.99199641
+0.30718112
+-0.00816882
+-0.20743662
+0.45804465
+0.49984527
+-0.90500307
+0.13739908
+-0.27550739
+-0.03742403
+-0.46725434
+-0.92167118
+-0.48707914
+0.47357786
+0.60985672
+0.41111732
+0.24399161
+-0.74032867
+0.52528298
+0.90371144
+0.39924824
+0.17583323
+0.02680898
+0.01826310
+-0.19292516
+0.79566395
+0.20282376
+-0.61639592
+-0.23781425
+-0.34667313
+0.81898743
+-0.64840389
+-0.36831325
+0.86114637
+0.83630746
+-0.94317111
+0.87848350
+0.27539851
+0.73368700
+-0.39739200
+-0.15266962
+0.47920839
+0.23836041
+0.69588823
+-0.18963618
+-0.43906608
+-0.82649674
+0.36680428
+0.93964293
+0.31422610
+-0.36384655
+0.61179296
+0.89161205
+0.40118427
+0.94186806
+0.63411781
+-0.99581258
+0.99097661
+0.78460576
+-0.94840801
+-0.79948860
+0.72057990
+0.14200235
+0.78500433
+-0.61035163
+-0.28620425
+0.77019697
+0.01841644
+0.68088498
+-0.67785769
+-0.86711878
+0.20878673
+-0.71939158
+-0.07747579
+0.57594228
+0.00468349
+-0.81437665
+0.15409636
+0.78527892
+-0.14299423
+0.91999888
+-0.55780494
+0.91996062
+-0.73165387
+0.10633755
+-0.60548228
+0.10985637
+-0.45283943
+-0.70882148
+0.91262889
+-0.72636962
+0.51477551
+-0.92436579
+-0.76883076
+-0.60438097
+0.99180603
+-0.55363259
+0.26148164
+-0.78190625
+0.43223011
+-0.69703847
+0.10785973
+-0.16508830
+-0.32014918
+-0.14436150
+0.09033692
+0.28630185
+0.60884988
+0.05747223
+-0.75655162
+0.35441053
+-0.54418722
+0.71198058
+-0.90189339
+0.48549092
+0.65648103
+-0.28254640
+0.28900719
+-0.64181316
+0.65782773
+-0.98775189
+-0.23374802
+0.86534357
+0.77757001
+-0.92272037
+-0.72852522
+-0.11901569
+0.06734955
+0.52261853
+0.42671263
+0.53281176
+0.58398497
+-0.34356391
+0.45758986
+0.34016943
+-0.22040957
+0.23480034
+-0.07021242
+0.14326584
+0.86092019
+0.44926322
+0.86483347
+-0.15674001
+-0.45518410
+0.17155838
+0.43874884
+0.80553067
+-0.83881804
+-0.87895472
+0.36132348
+0.97818387
+0.79192722
+-0.76832724
+-0.43948972
+-0.49048477
+0.86090088
+0.72232020
+0.88564408
+0.17666888
+-0.52373648
+-0.36907005
+-0.38063478
+-0.74436572
+0.30731428
+0.14764977
+0.66177452
+0.40115976
+0.16884172
+0.53191483
+0.39174449
+-0.55357075
+0.30938387
+0.57249188
+-0.16410881
+-0.98434467
+0.16906059
+-0.97958059
+0.16721106
+-0.81160890
+-0.45106727
+-0.86809942
+-0.51500422
+-0.56725249
+0.57639170
+-0.00696093
+-0.49296683
+0.03923571
+-0.55690378
+0.02465427
+0.93651927
+0.58600259
+-0.56013870
+0.25109851
+0.73625231
+0.49658608
+-0.68039590
+-0.12572563
+-0.05522662
+0.23493803
+0.89708805
+-0.98199775
+-0.08566141
+0.05186975
+0.21697569
+0.91385388
+-0.21003991
+0.57197690
+0.70438862
+0.27029395
+-0.40586764
+-0.05876899
+0.36578751
+0.11961269
+-0.61980867
+0.04207528
+-0.66303933
+-0.27117413
+0.95967567
+-0.05920541
+-0.76127510
+0.68253958
+-0.17794311
+-0.82837759
+-0.23277360
+-0.76004112
+0.26266623
+0.93942273
+0.54983747
+-0.96355223
+0.77732992
+-0.05928671
+0.63933372
+-0.26130426
+0.16809702
+-0.86518978
+-0.72348914
+-0.56811428
+0.41210544
+-0.76288623
+0.57350850
+-0.71779603
+-0.15404332
+0.70768011
+0.37314880
+0.22745895
+-0.18567222
+-0.52392665
+0.77177048
+-0.72782436
+0.34621906
+-0.92991119
+-0.78096047
+0.16006505
+0.14292896
+0.87825429
+-0.24122030
+0.69184327
+-0.10806596
+0.63152468
+0.88276434
+0.07822025
+0.28372431
+0.49229896
+0.22471404
+-0.88495325
+0.24970663
+0.44429648
+-0.09082335
+-0.37672323
+-0.63225034
+-0.46597272
+0.10994458
+0.01265609
+0.11830771
+0.27005851
+0.01196170
+-0.02033716
+-0.09675264
+-0.22923625
+-0.54733202
+-0.05973768
+0.35811222
+0.62772357
+-0.30159283
+0.63101661
+-0.68614447
+0.93353045
+-0.46950239
+-0.36554623
+0.47382224
diff --git a/Project2-Character-Recognition/build/cr_W2_HxC_10_x_52.txt b/Project2-Character-Recognition/build/cr_W2_HxC_10_x_52.txt
new file mode 100644
index 0000000..44b3708
--- /dev/null
+++ b/Project2-Character-Recognition/build/cr_W2_HxC_10_x_52.txt
@@ -0,0 +1,520 @@
+0.02234437
+2.44178838
+2.12211869
+2.86910908
+1.39794079
+-3.37807807
+1.79872024
+-3.25161667
+-5.14672692
+-3.82594618
+-4.36467364
+1.05448366
+1.34464836
+-2.70558592
+-1.29232861
+-4.45322911
+1.12452646
+0.05129583
+-1.53145817
+2.29747285
+-0.17928053
+1.22056949
+1.85546884
+2.26923765
+7.72128419
+0.56676446
+-0.59855473
+0.34405155
+-0.07450361
+-2.81415459
+2.08598835
+-0.47959715
+-1.18020942
+-3.54638591
+0.49263043
+3.51805568
+0.28332691
+0.94279276
+0.10403002
+3.55367626
+-0.20846972
+-0.57336788
+-1.63715663
+-4.42079677
+3.62606363
+-4.75628906
+1.71687876
+-3.60419377
+-0.58926909
+1.12312184
+-0.93837230
+1.02161558
+-1.99439051
+-1.66877795
+-0.47272724
+-1.92237566
+-0.65147517
+-1.67161539
+-1.65340364
+-0.41736635
+-0.96666603
+-2.00534589
+-0.24940603
+-0.21780509
+-0.68745857
+-1.76812782
+-1.69955534
+-0.91664097
+-1.99045331
+-2.08961946
+1.95625394
+-1.35927350
+2.16917533
+-1.45013560
+4.34069940
+-1.78569307
+-1.36826806
+-2.40150731
+-1.72052882
+-1.42870622
+-1.93580023
+-1.57120953
+3.93023604
+-1.50947076
+3.96687650
+-0.98050795
+3.15903624
+-1.84092854
+2.30948191
+3.71612203
+2.93363918
+-1.22285724
+-3.64187775
+-2.52899566
+2.22525671
+4.57807446
+-0.29206579
+-1.33727831
+3.30435509
+3.51734746
+2.41451160
+3.46033995
+2.73766160
+2.78666063
+-0.56444583
+-1.50717050
+2.90448926
+-0.50944431
+2.57287118
+-1.24795231
+1.44276649
+-0.33453929
+3.85329059
+-0.06194339
+2.74633881
+-2.66863912
+3.86157067
+-1.10027464
+3.44725168
+-0.31827424
+-0.99496430
+4.85996637
+3.58155703
+3.97230211
+-1.32438874
+4.11562237
+-1.76102091
+-2.47773409
+-0.77006312
+-2.01230207
+-0.46187672
+-1.14037968
+-1.33359197
+-1.90759140
+-2.74224019
+-1.69564899
+-0.81759004
+-2.25480444
+4.99607051
+-1.00420779
+-0.94399773
+-0.12900643
+2.53208776
+-0.61161108
+-1.61346279
+-1.25051345
+-0.93662990
+0.01209936
+-1.59083979
+-0.64290910
+-1.17560385
+-0.91370719
+-1.29934883
+-1.49271788
+-0.38279559
+-0.87281425
+0.87195025
+1.88068890
+1.20685565
+-3.23215833
+0.65898479
+4.46368446
+0.30732024
+2.88912314
+2.00189056
+2.66182735
+0.00416151
+-2.85011285
+2.51673143
+4.74300932
+0.49546370
+-4.29365896
+1.38348189
+-2.85051105
+1.03518557
+-2.48453524
+-3.74340421
+2.22373576
+-2.62697394
+-2.58897643
+-1.83618233
+2.56299083
+-1.42150899
+1.52180253
+-3.30263784
+4.34358648
+-1.85626629
+-3.62798116
+0.89870843
+1.56615258
+-2.04684895
+-2.67556129
+-3.48254747
+2.77137837
+-2.68175027
+-2.83070828
+0.59285769
+0.58829105
+-3.31627902
+0.60370787
+-2.73067211
+1.86065981
+2.66664819
+1.92799047
+1.46272360
+2.00129662
+0.62389047
+-2.19732016
+-3.22605052
+2.28552456
+2.61076783
+2.77234982
+2.07733036
+-3.67155053
+0.33752553
+-2.06917430
+2.60614139
+3.27261984
+2.82254237
+4.37907355
+-5.20032356
+4.59297057
+1.08857794
+5.01668379
+1.71066513
+-2.19201261
+1.25287245
+-1.71080786
+2.01223504
+-2.35519499
+-2.90179015
+-2.47115809
+-2.63651532
+-3.06549187
+-2.93057829
+-2.34808294
+2.16435845
+-2.27738377
+-2.32156673
+2.50111263
+0.77389352
+1.71260555
+-1.73274959
+-2.41800194
+2.78133318
+-2.80577541
+-0.27508988
+6.04277712
+1.75554821
+1.02978271
+0.78041520
+2.03958239
+-3.24255352
+3.32588491
+-1.98929991
+-2.28297877
+1.52067562
+1.68655415
+-3.21364777
+-1.95381174
+-2.06233206
+-2.22298768
+-1.80348311
+-2.05830494
+-1.87995171
+-0.67577089
+-0.44382271
+4.20706794
+-1.18228443
+-1.37365493
+-1.05650687
+-2.02966709
+-1.27287134
+-0.31277148
+3.25713817
+-0.84268740
+-2.64515693
+3.33530698
+1.77635318
+-1.33245430
+2.02754064
+-1.90175529
+-1.78627701
+4.27331574
+-1.75607897
+2.95675335
+3.45109021
+-3.38702814
+-2.92380651
+-0.93511930
+4.33888915
+3.38764241
+1.55577853
+-1.76272342
+2.81499956
+-0.81972380
+2.71453472
+-1.76005896
+-2.09843488
+-0.70750318
+3.30562858
+2.72980051
+2.06350419
+-1.40164804
+-1.46211969
+-1.65860465
+-1.65001866
+-1.17519148
+3.55159733
+-3.65599789
+2.51833760
+-1.08035097
+1.40048027
+-2.21005077
+-2.79129714
+3.86463169
+-2.60703264
+5.21058972
+-2.77459353
+-1.81943360
+-2.41254703
+3.75876841
+-2.00997201
+-2.90532230
+-2.57997251
+-2.84595063
+1.37901057
+5.26427982
+1.63151655
+2.35976606
+0.07321900
+-1.62854140
+1.25562611
+2.53801401
+3.85063761
+3.35605763
+-2.16352863
+1.26890311
+1.78032953
+2.15428869
+1.32205728
+-2.15165015
+-2.80287224
+1.72602561
+-2.91310689
+2.34373051
+-2.06496560
+-1.88494825
+-2.15968417
+-1.91505968
+1.84094830
+-3.63674926
+-3.30054277
+0.63488729
+0.34412194
+1.70240709
+-2.31547881
+-2.42724158
+-2.81194571
+2.56395007
+1.19455114
+0.90831936
+0.73689405
+-1.39378618
+1.43796898
+-2.72640276
+1.25008425
+-2.43610241
+1.27555608
+-1.63298194
+2.15128850
+-1.36079828
+2.87842394
+-3.20078726
+1.88037636
+4.73869734
+2.95859981
+-2.47676072
+1.20086879
+-1.64876827
+-2.21245796
+-1.37292240
+-2.64926221
+-1.99366862
+-2.61197146
+-2.42037390
+-1.69700797
+-2.61727877
+-2.00283254
+2.80193074
+2.17398867
+2.74828299
+1.89859703
+1.63000254
+-1.22019192
+2.98193246
+2.71323761
+4.82065895
+-1.23986136
+-1.71608723
+-2.46404070
+-1.55481777
+3.14083856
+-2.97212520
+2.31152158
+-2.42709810
+2.38669934
+-0.98088669
+6.13672183
+-1.51858463
+-1.35090733
+-1.64022275
+-2.63873572
+-0.36994333
+2.38701700
+-1.91253877
+2.45372541
+2.79834039
+-3.35927343
+-0.55435167
+1.28266945
+-1.02396327
+-1.81623533
+3.79640024
+-1.10465280
+-0.96389700
+-1.21746508
+-2.00081054
+-0.81447816
+-2.71045453
+-0.98633027
+-0.47366725
+-2.00061472
+-1.12570771
+-1.57260963
+-1.33590128
+-2.11516036
+-0.82271302
+-0.96687719
+-1.51235854
+-2.32042104
+-3.22214651
+3.58840832
+3.10634936
+2.55341604
+-1.48530011
+-1.78709120
+-1.97663591
+1.34015604
+-1.73106926
+-0.37102147
+5.97811702
+3.15291421
+3.02307008
+-1.22484752
+-2.06195501
+2.06280045
+2.27850558
+2.13215110
+2.40756292
+-1.08814103
+5.30066516
+-2.48557407
+-0.35968480
+-1.71889374
+-2.27288506
+-1.76290175
+3.23610464
+4.10088359
+-1.11843755
+-2.61634186
+-2.11321485
+-2.59093557
+-1.04686311
+4.35423497
+-0.56777076
+-2.99893667
+-1.05259207
+4.71422665
+-0.42004211
+-1.76466408
+-1.38104584
+-1.72265757
+-0.26025632
+3.89225868
+0.78622880
+2.45642204
+4.95748122
+3.58781801
+-1.03226293
+-1.31419006
+-1.42850982
+-1.39648520
+-1.24103914
+-1.29710668
+-3.31151068
+3.07427276
+5.19890627
+-0.53040221
+-1.62574959
+-1.61546083
+-1.12818533
+-1.35332518
+-1.79835719
+-1.76282834
+-2.20464367
+-0.93834226
+-1.17917553
+-0.74051930
+3.19793449
+2.46613493
+-1.67891551
+-0.80699423
+-0.12919697
+3.16991714
+3.64328970
+-2.82860894
+-1.89732238
+2.49245552
+3.98195807
diff --git a/Project2-Character-Recognition/build/cr_losses.txt b/Project2-Character-Recognition/build/cr_losses.txt
new file mode 100644
index 0000000..15e73c2
--- /dev/null
+++ b/Project2-Character-Recognition/build/cr_losses.txt
@@ -0,0 +1,5001 @@
+4.79193339
+4.60569768
+4.48124055
+4.39336828
+4.33439360
+4.28509756
+4.23347534
+4.18263887
+4.14351092
+4.10743282
+4.07348860
+4.04139590
+4.01077620
+3.98135895
+3.95294559
+3.92533144
+3.89827878
+3.87144730
+3.84415824
+3.81521365
+3.78592231
+3.75778205
+3.72956850
+3.70276501
+3.67628343
+3.64768263
+3.62117750
+3.59816343
+3.57558692
+3.55315742
+3.53084184
+3.50865991
+3.48636639
+3.46412264
+3.44269267
+3.42210845
+3.40214974
+3.38243467
+3.36226867
+3.33984163
+3.31278679
+3.29084664
+3.27150324
+3.25256752
+3.23285809
+3.21110362
+3.19023648
+3.17016317
+3.14832593
+3.12725486
+3.10881560
+3.09122119
+3.07417761
+3.05750782
+3.04102286
+3.02453607
+3.00775865
+2.99005032
+2.97168614
+2.95551539
+2.94026955
+2.92528140
+2.91033008
+2.89516204
+2.87967046
+2.86452108
+2.85008493
+2.83595408
+2.82191963
+2.80782384
+2.79336274
+2.77768495
+2.75922036
+2.74255028
+2.72886113
+2.71565082
+2.70268778
+2.68989077
+2.67722656
+2.66468697
+2.65227237
+2.63997016
+2.62774211
+2.61552910
+2.60327521
+2.59100265
+2.57887739
+2.56702581
+2.55540030
+2.54392549
+2.53255581
+2.52126065
+2.51001206
+2.49877899
+2.48752986
+2.47625488
+2.46501057
+2.45391156
+2.44301831
+2.43230390
+2.42172498
+2.41125309
+2.40087159
+2.39056979
+2.38033973
+2.37017441
+2.36006686
+2.35000919
+2.33999169
+2.33000167
+2.32002188
+2.31002835
+2.29998774
+2.28985197
+2.27953935
+2.26886766
+2.25748588
+2.24569236
+2.23505067
+2.22514529
+2.21546769
+2.20592062
+2.19646926
+2.18709131
+2.17776467
+2.16846048
+2.15913851
+2.14975008
+2.14026763
+2.13075874
+2.12139761
+2.11228341
+2.10337281
+2.09460239
+2.08593585
+2.07735465
+2.06884835
+2.06041034
+2.05203594
+2.04372160
+2.03546445
+2.02726206
+2.01911223
+2.01101293
+2.00296213
+1.99495775
+1.98699761
+1.97907932
+1.97120036
+1.96335813
+1.95555024
+1.94777512
+1.94003290
+1.93232648
+1.92466200
+1.91704771
+1.90949122
+1.90199676
+1.89456460
+1.88719258
+1.87987779
+1.87261751
+1.86540939
+1.85825153
+1.85114227
+1.84408022
+1.83706419
+1.83009312
+1.82316609
+1.81628228
+1.80944097
+1.80264150
+1.79588327
+1.78916574
+1.78248841
+1.77585081
+1.76925252
+1.76269312
+1.75617224
+1.74968951
+1.74324459
+1.73683714
+1.73046685
+1.72413341
+1.71783653
+1.71157593
+1.70535133
+1.69916247
+1.69300909
+1.68689093
+1.68080775
+1.67475931
+1.66874538
+1.66276572
+1.65682011
+1.65090832
+1.64503015
+1.63918537
+1.63337377
+1.62759515
+1.62184928
+1.61613598
+1.61045504
+1.60480624
+1.59918940
+1.59360430
+1.58805076
+1.58252857
+1.57703753
+1.57157745
+1.56614813
+1.56074938
+1.55538099
+1.55004277
+1.54473452
+1.53945606
+1.53420719
+1.52898770
+1.52379742
+1.51863615
+1.51350369
+1.50839985
+1.50332445
+1.49827729
+1.49325819
+1.48826694
+1.48330338
+1.47836731
+1.47345854
+1.46857689
+1.46372218
+1.45889422
+1.45409283
+1.44931783
+1.44456904
+1.43984628
+1.43514938
+1.43047815
+1.42583241
+1.42121200
+1.41661675
+1.41204647
+1.40750100
+1.40298017
+1.39848380
+1.39401173
+1.38956380
+1.38513983
+1.38073967
+1.37636314
+1.37201009
+1.36768035
+1.36337376
+1.35909017
+1.35482941
+1.35059133
+1.34637578
+1.34218258
+1.33801160
+1.33386267
+1.32973565
+1.32563038
+1.32154671
+1.31748449
+1.31344358
+1.30942381
+1.30542505
+1.30144715
+1.29748996
+1.29355333
+1.28963712
+1.28574118
+1.28186537
+1.27800954
+1.27417355
+1.27035725
+1.26656050
+1.26278316
+1.25902507
+1.25528611
+1.25156611
+1.24786493
+1.24418243
+1.24051845
+1.23687286
+1.23324549
+1.22963621
+1.22604485
+1.22247126
+1.21891529
+1.21537678
+1.21185559
+1.20835154
+1.20486450
+1.20139432
+1.19794084
+1.19450394
+1.19108350
+1.18767941
+1.18429159
+1.18091999
+1.17756459
+1.17422540
+1.17090248
+1.16759593
+1.16430586
+1.16103240
+1.15777569
+1.15453581
+1.15131280
+1.14810663
+1.14491719
+1.14174429
+1.13858770
+1.13544713
+1.13232227
+1.12921281
+1.12611844
+1.12303886
+1.11997378
+1.11692290
+1.11388595
+1.11086260
+1.10785252
+1.10485535
+1.10187066
+1.09889797
+1.09593669
+1.09298612
+1.09004539
+1.08711344
+1.08418895
+1.08127026
+1.07835532
+1.07544170
+1.07252665
+1.06960744
+1.06668224
+1.06375160
+1.06082046
+1.05789912
+1.05500114
+1.05213766
+1.04931264
+1.04652324
+1.04376365
+1.04102842
+1.03831349
+1.03561620
+1.03293486
+1.03026836
+1.02761598
+1.02497721
+1.02235167
+1.01973910
+1.01713924
+1.01455192
+1.01197698
+1.00941426
+1.00686364
+1.00432501
+1.00179825
+0.99928326
+0.99677994
+0.99428821
+0.99180797
+0.98933915
+0.98688165
+0.98443541
+0.98200034
+0.97957637
+0.97716343
+0.97476144
+0.97237034
+0.96999005
+0.96762050
+0.96526164
+0.96291339
+0.96057569
+0.95824848
+0.95593168
+0.95362525
+0.95132911
+0.94904321
+0.94676748
+0.94450187
+0.94224632
+0.94000076
+0.93776514
+0.93553940
+0.93332349
+0.93111734
+0.92892091
+0.92673414
+0.92455696
+0.92238934
+0.92023121
+0.91808251
+0.91594321
+0.91381323
+0.91169254
+0.90958108
+0.90747880
+0.90538564
+0.90330156
+0.90122651
+0.89916044
+0.89710329
+0.89505502
+0.89301557
+0.89098491
+0.88896299
+0.88694974
+0.88494514
+0.88294913
+0.88096166
+0.87898269
+0.87701217
+0.87505006
+0.87309631
+0.87115088
+0.86921372
+0.86728479
+0.86536404
+0.86345143
+0.86154692
+0.85965047
+0.85776202
+0.85588155
+0.85400900
+0.85214434
+0.85028751
+0.84843850
+0.84659724
+0.84476370
+0.84293785
+0.84111963
+0.83930901
+0.83750595
+0.83571042
+0.83392236
+0.83214175
+0.83036855
+0.82860271
+0.82684420
+0.82509297
+0.82334901
+0.82161225
+0.81988268
+0.81816024
+0.81644491
+0.81473665
+0.81303542
+0.81134119
+0.80965392
+0.80797357
+0.80630011
+0.80463351
+0.80297372
+0.80132072
+0.79967447
+0.79803494
+0.79640209
+0.79477589
+0.79315630
+0.79154330
+0.78993684
+0.78833689
+0.78674343
+0.78515642
+0.78357582
+0.78200161
+0.78043375
+0.77887221
+0.77731696
+0.77576797
+0.77422520
+0.77268862
+0.77115821
+0.76963393
+0.76811575
+0.76660364
+0.76509756
+0.76359750
+0.76210342
+0.76061528
+0.75913307
+0.75765674
+0.75618628
+0.75472164
+0.75326280
+0.75180974
+0.75036242
+0.74892081
+0.74748489
+0.74605462
+0.74462998
+0.74321094
+0.74179747
+0.74038954
+0.73898713
+0.73759021
+0.73619875
+0.73481271
+0.73343209
+0.73205684
+0.73068694
+0.72932236
+0.72796308
+0.72660906
+0.72526029
+0.72391674
+0.72257837
+0.72124517
+0.71991710
+0.71859414
+0.71727627
+0.71596345
+0.71465567
+0.71335289
+0.71205509
+0.71076225
+0.70947434
+0.70819133
+0.70691320
+0.70563993
+0.70437148
+0.70310784
+0.70184897
+0.70059486
+0.69934548
+0.69810080
+0.69686080
+0.69562546
+0.69439474
+0.69316863
+0.69194710
+0.69073013
+0.68951769
+0.68830976
+0.68710631
+0.68590732
+0.68471277
+0.68352262
+0.68233686
+0.68115547
+0.67997841
+0.67880566
+0.67763720
+0.67647300
+0.67531305
+0.67415730
+0.67300575
+0.67185836
+0.67071511
+0.66957597
+0.66844092
+0.66730994
+0.66618298
+0.66506004
+0.66394108
+0.66282608
+0.66171501
+0.66060783
+0.65950453
+0.65840507
+0.65730943
+0.65621757
+0.65512946
+0.65404508
+0.65296438
+0.65188735
+0.65081393
+0.64974411
+0.64867784
+0.64761509
+0.64655582
+0.64549999
+0.64444756
+0.64339850
+0.64235276
+0.64131030
+0.64027109
+0.63923508
+0.63820224
+0.63717252
+0.63614590
+0.63512235
+0.63410183
+0.63308434
+0.63206985
+0.63105838
+0.63004992
+0.62904450
+0.62804216
+0.62704294
+0.62604692
+0.62505416
+0.62406475
+0.62307880
+0.62209638
+0.62111759
+0.62014250
+0.61917119
+0.61820370
+0.61724004
+0.61628023
+0.61532423
+0.61437202
+0.61342354
+0.61247873
+0.61153752
+0.61059984
+0.60966563
+0.60873483
+0.60780737
+0.60688320
+0.60596228
+0.60504456
+0.60413001
+0.60321859
+0.60231028
+0.60140504
+0.60050287
+0.59960372
+0.59870760
+0.59781446
+0.59692431
+0.59603712
+0.59515287
+0.59427156
+0.59339316
+0.59251765
+0.59164504
+0.59077529
+0.58990841
+0.58904436
+0.58818315
+0.58732474
+0.58646915
+0.58561633
+0.58476630
+0.58391902
+0.58307450
+0.58223271
+0.58139364
+0.58055728
+0.57972361
+0.57889263
+0.57806432
+0.57723867
+0.57641567
+0.57559530
+0.57477755
+0.57396240
+0.57314986
+0.57233990
+0.57153251
+0.57072768
+0.56992539
+0.56912565
+0.56832842
+0.56753371
+0.56674150
+0.56595178
+0.56516453
+0.56437975
+0.56359743
+0.56281754
+0.56204008
+0.56126505
+0.56049242
+0.55972218
+0.55895433
+0.55818885
+0.55742574
+0.55666497
+0.55590654
+0.55515043
+0.55439664
+0.55364516
+0.55289597
+0.55214905
+0.55140441
+0.55066202
+0.54992188
+0.54918397
+0.54844828
+0.54771481
+0.54698352
+0.54625443
+0.54552751
+0.54480275
+0.54408013
+0.54335965
+0.54264130
+0.54192505
+0.54121089
+0.54049882
+0.53978882
+0.53908086
+0.53837494
+0.53767105
+0.53696916
+0.53626925
+0.53557132
+0.53487534
+0.53418130
+0.53348917
+0.53279894
+0.53211058
+0.53142406
+0.53073938
+0.53005650
+0.52937539
+0.52869603
+0.52801839
+0.52734244
+0.52666815
+0.52599548
+0.52532441
+0.52465490
+0.52398691
+0.52332043
+0.52265541
+0.52199185
+0.52132972
+0.52066901
+0.52000974
+0.51935193
+0.51869562
+0.51804087
+0.51738776
+0.51673639
+0.51608689
+0.51543937
+0.51479395
+0.51415073
+0.51350978
+0.51287114
+0.51223480
+0.51160072
+0.51096885
+0.51033909
+0.50971139
+0.50908565
+0.50846181
+0.50783982
+0.50721964
+0.50660124
+0.50598459
+0.50536967
+0.50475646
+0.50414496
+0.50353515
+0.50292703
+0.50232059
+0.50171581
+0.50111269
+0.50051122
+0.49991140
+0.49931321
+0.49871666
+0.49812173
+0.49752841
+0.49693670
+0.49634660
+0.49575809
+0.49517117
+0.49458582
+0.49400206
+0.49341986
+0.49283922
+0.49226013
+0.49168259
+0.49110659
+0.49053213
+0.48995919
+0.48938778
+0.48881788
+0.48824948
+0.48768259
+0.48711720
+0.48655329
+0.48599086
+0.48542992
+0.48487044
+0.48431243
+0.48375587
+0.48320077
+0.48264711
+0.48209490
+0.48154411
+0.48099476
+0.48044683
+0.47990031
+0.47935521
+0.47881151
+0.47826920
+0.47772830
+0.47718877
+0.47665064
+0.47611387
+0.47557848
+0.47504445
+0.47451178
+0.47398047
+0.47345050
+0.47292188
+0.47239459
+0.47186864
+0.47134401
+0.47082070
+0.47029871
+0.46977803
+0.46925866
+0.46874058
+0.46822380
+0.46770831
+0.46719411
+0.46668118
+0.46616953
+0.46565915
+0.46515003
+0.46464217
+0.46413557
+0.46363021
+0.46312610
+0.46262322
+0.46212159
+0.46162118
+0.46112199
+0.46062403
+0.46012728
+0.45963174
+0.45913740
+0.45864427
+0.45815233
+0.45766158
+0.45717202
+0.45668364
+0.45619644
+0.45571041
+0.45522555
+0.45474186
+0.45425932
+0.45377793
+0.45329770
+0.45281861
+0.45234066
+0.45186385
+0.45138817
+0.45091362
+0.45044020
+0.44996789
+0.44949669
+0.44902661
+0.44855764
+0.44808976
+0.44762298
+0.44715730
+0.44669271
+0.44622920
+0.44576677
+0.44530542
+0.44484514
+0.44438593
+0.44392778
+0.44347070
+0.44301467
+0.44255969
+0.44210577
+0.44165288
+0.44120104
+0.44075023
+0.44030046
+0.43985171
+0.43940399
+0.43895729
+0.43851161
+0.43806694
+0.43762328
+0.43718063
+0.43673898
+0.43629832
+0.43585866
+0.43541999
+0.43498231
+0.43454561
+0.43410989
+0.43367515
+0.43324137
+0.43280857
+0.43237673
+0.43194586
+0.43151594
+0.43108697
+0.43065896
+0.43023189
+0.42980577
+0.42938058
+0.42895633
+0.42853302
+0.42811064
+0.42768918
+0.42726864
+0.42684903
+0.42643033
+0.42601254
+0.42559566
+0.42517969
+0.42476462
+0.42435045
+0.42393717
+0.42352479
+0.42311330
+0.42270269
+0.42229296
+0.42188412
+0.42147615
+0.42106906
+0.42066283
+0.42025747
+0.41985297
+0.41944934
+0.41904656
+0.41864464
+0.41824356
+0.41784334
+0.41744395
+0.41704541
+0.41664771
+0.41625084
+0.41585481
+0.41545960
+0.41506522
+0.41467166
+0.41427892
+0.41388700
+0.41349589
+0.41310559
+0.41271610
+0.41232742
+0.41193953
+0.41155244
+0.41116615
+0.41078065
+0.41039594
+0.41001201
+0.40962887
+0.40924650
+0.40886492
+0.40848410
+0.40810406
+0.40772478
+0.40734627
+0.40696852
+0.40659152
+0.40621528
+0.40583980
+0.40546505
+0.40509106
+0.40471780
+0.40434529
+0.40397350
+0.40360245
+0.40323213
+0.40286252
+0.40249364
+0.40212548
+0.40175802
+0.40139128
+0.40102524
+0.40065990
+0.40029526
+0.39993130
+0.39956804
+0.39920545
+0.39884354
+0.39848231
+0.39812174
+0.39776183
+0.39740258
+0.39704397
+0.39668600
+0.39632867
+0.39597196
+0.39561587
+0.39526039
+0.39490551
+0.39455121
+0.39419749
+0.39384433
+0.39349171
+0.39313963
+0.39278806
+0.39243699
+0.39208638
+0.39173621
+0.39138646
+0.39103709
+0.39068805
+0.39033930
+0.38999079
+0.38964245
+0.38929420
+0.38894595
+0.38859757
+0.38824894
+0.38789987
+0.38755013
+0.38719945
+0.38684746
+0.38649368
+0.38613747
+0.38577796
+0.38541394
+0.38504370
+0.38466478
+0.38427351
+0.38386438
+0.38342893
+0.38295434
+0.38242227
+0.38181174
+0.38111570
+0.38037709
+0.37969060
+0.37911033
+0.37861118
+0.37815441
+0.37771794
+0.37729158
+0.37687063
+0.37645283
+0.37603702
+0.37562256
+0.37520910
+0.37479642
+0.37438440
+0.37397295
+0.37356203
+0.37315160
+0.37274165
+0.37233215
+0.37192312
+0.37151455
+0.37110643
+0.37069879
+0.37029162
+0.36988492
+0.36947872
+0.36907302
+0.36866782
+0.36826313
+0.36785897
+0.36745532
+0.36705221
+0.36664963
+0.36624759
+0.36584608
+0.36544511
+0.36504469
+0.36464480
+0.36424545
+0.36384663
+0.36344834
+0.36305059
+0.36265336
+0.36225665
+0.36186045
+0.36146478
+0.36106962
+0.36067498
+0.36028084
+0.35988722
+0.35949411
+0.35910150
+0.35870941
+0.35831782
+0.35792674
+0.35753615
+0.35714606
+0.35675645
+0.35636731
+0.35597862
+0.35559036
+0.35520253
+0.35481507
+0.35442798
+0.35404122
+0.35365476
+0.35326856
+0.35288259
+0.35249682
+0.35211119
+0.35172568
+0.35134025
+0.35095485
+0.35056946
+0.35018402
+0.34979851
+0.34941287
+0.34902709
+0.34864111
+0.34825491
+0.34786844
+0.34748167
+0.34709458
+0.34670712
+0.34631927
+0.34593100
+0.34554229
+0.34515312
+0.34476346
+0.34437329
+0.34398261
+0.34359141
+0.34319968
+0.34280742
+0.34241463
+0.34202132
+0.34162751
+0.34123320
+0.34083843
+0.34044321
+0.34004757
+0.33965156
+0.33925519
+0.33885853
+0.33846160
+0.33806446
+0.33766714
+0.33726971
+0.33687221
+0.33647468
+0.33607719
+0.33567979
+0.33528251
+0.33488542
+0.33448856
+0.33409198
+0.33369572
+0.33329982
+0.33290433
+0.33250929
+0.33211473
+0.33172070
+0.33132721
+0.33093431
+0.33054201
+0.33015036
+0.32975937
+0.32936906
+0.32897946
+0.32859058
+0.32820245
+0.32781508
+0.32742849
+0.32704268
+0.32665767
+0.32627348
+0.32589010
+0.32550756
+0.32512585
+0.32474499
+0.32436498
+0.32398582
+0.32360753
+0.32323011
+0.32285355
+0.32247787
+0.32210306
+0.32172913
+0.32135608
+0.32098391
+0.32061262
+0.32024222
+0.31987269
+0.31950405
+0.31913629
+0.31876941
+0.31840341
+0.31803829
+0.31767405
+0.31731069
+0.31694821
+0.31658659
+0.31622586
+0.31586599
+0.31550699
+0.31514885
+0.31479158
+0.31443518
+0.31407963
+0.31372494
+0.31337111
+0.31301813
+0.31266600
+0.31231471
+0.31196427
+0.31161467
+0.31126592
+0.31091800
+0.31057091
+0.31022465
+0.30987922
+0.30953462
+0.30919084
+0.30884788
+0.30850573
+0.30816440
+0.30782388
+0.30748417
+0.30714527
+0.30680717
+0.30646987
+0.30613337
+0.30579766
+0.30546274
+0.30512862
+0.30479528
+0.30446272
+0.30413095
+0.30379996
+0.30346974
+0.30314030
+0.30281163
+0.30248373
+0.30215660
+0.30183024
+0.30150464
+0.30117980
+0.30085572
+0.30053239
+0.30020982
+0.29988801
+0.29956694
+0.29924663
+0.29892706
+0.29860824
+0.29829016
+0.29797282
+0.29765623
+0.29734037
+0.29702525
+0.29671086
+0.29639721
+0.29608429
+0.29577211
+0.29546065
+0.29514991
+0.29483991
+0.29453062
+0.29422206
+0.29391422
+0.29360709
+0.29330068
+0.29299499
+0.29269001
+0.29238574
+0.29208218
+0.29177932
+0.29147717
+0.29117572
+0.29087498
+0.29057493
+0.29027557
+0.28997691
+0.28967893
+0.28938165
+0.28908505
+0.28878913
+0.28849389
+0.28819933
+0.28790544
+0.28761223
+0.28731968
+0.28702780
+0.28673657
+0.28644601
+0.28615611
+0.28586685
+0.28557825
+0.28529029
+0.28500297
+0.28471629
+0.28443025
+0.28414484
+0.28386006
+0.28357590
+0.28329237
+0.28300945
+0.28272714
+0.28244545
+0.28216436
+0.28188387
+0.28160398
+0.28132468
+0.28104597
+0.28076784
+0.28049030
+0.28021332
+0.27993692
+0.27966108
+0.27938580
+0.27911107
+0.27883689
+0.27856325
+0.27829015
+0.27801758
+0.27774552
+0.27747398
+0.27720295
+0.27693242
+0.27666237
+0.27639281
+0.27612372
+0.27585509
+0.27558691
+0.27531918
+0.27505187
+0.27478498
+0.27451849
+0.27425240
+0.27398668
+0.27372133
+0.27345633
+0.27319167
+0.27292733
+0.27266331
+0.27239960
+0.27213618
+0.27187306
+0.27161023
+0.27134770
+0.27108549
+0.27082361
+0.27056210
+0.27030100
+0.27004035
+0.26978022
+0.26952066
+0.26926177
+0.26900360
+0.26874623
+0.26848971
+0.26823409
+0.26797940
+0.26772565
+0.26747282
+0.26722090
+0.26696984
+0.26671961
+0.26647015
+0.26622142
+0.26597337
+0.26572596
+0.26547918
+0.26523298
+0.26498734
+0.26474226
+0.26449772
+0.26425370
+0.26401021
+0.26376722
+0.26352475
+0.26328278
+0.26304131
+0.26280034
+0.26255987
+0.26231989
+0.26208040
+0.26184140
+0.26160289
+0.26136487
+0.26112733
+0.26089027
+0.26065369
+0.26041759
+0.26018196
+0.25994682
+0.25971214
+0.25947794
+0.25924420
+0.25901093
+0.25877814
+0.25854580
+0.25831393
+0.25808252
+0.25785157
+0.25762108
+0.25739105
+0.25716147
+0.25693234
+0.25670367
+0.25647545
+0.25624768
+0.25602035
+0.25579348
+0.25556704
+0.25534105
+0.25511551
+0.25489040
+0.25466573
+0.25444150
+0.25421771
+0.25399435
+0.25377143
+0.25354893
+0.25332687
+0.25310524
+0.25288403
+0.25266325
+0.25244290
+0.25222297
+0.25200346
+0.25178437
+0.25156570
+0.25134745
+0.25112962
+0.25091221
+0.25069520
+0.25047861
+0.25026244
+0.25004667
+0.24983131
+0.24961636
+0.24940182
+0.24918768
+0.24897395
+0.24876062
+0.24854769
+0.24833516
+0.24812303
+0.24791129
+0.24769995
+0.24748901
+0.24727846
+0.24706831
+0.24685854
+0.24664917
+0.24644018
+0.24623158
+0.24602337
+0.24581554
+0.24560810
+0.24540103
+0.24519435
+0.24498805
+0.24478213
+0.24457658
+0.24437141
+0.24416662
+0.24396219
+0.24375814
+0.24355446
+0.24335115
+0.24314821
+0.24294563
+0.24274342
+0.24254158
+0.24234009
+0.24213897
+0.24193821
+0.24173780
+0.24153775
+0.24133806
+0.24113872
+0.24093974
+0.24074110
+0.24054282
+0.24034488
+0.24014729
+0.23995004
+0.23975314
+0.23955658
+0.23936036
+0.23916448
+0.23896893
+0.23877372
+0.23857885
+0.23838430
+0.23819009
+0.23799620
+0.23780264
+0.23760940
+0.23741648
+0.23722389
+0.23703161
+0.23683965
+0.23664800
+0.23645667
+0.23626564
+0.23607492
+0.23588451
+0.23569441
+0.23550460
+0.23531510
+0.23512589
+0.23493698
+0.23474837
+0.23456005
+0.23437202
+0.23418428
+0.23399683
+0.23380967
+0.23362279
+0.23343621
+0.23324991
+0.23306390
+0.23287818
+0.23269274
+0.23250761
+0.23232276
+0.23213821
+0.23195397
+0.23177003
+0.23158639
+0.23140307
+0.23122008
+0.23103740
+0.23085506
+0.23067306
+0.23049140
+0.23031009
+0.23012913
+0.22994853
+0.22976829
+0.22958842
+0.22940892
+0.22922979
+0.22905103
+0.22887264
+0.22869462
+0.22851697
+0.22833968
+0.22816275
+0.22798618
+0.22780996
+0.22763410
+0.22745858
+0.22728340
+0.22710856
+0.22693406
+0.22675989
+0.22658605
+0.22641254
+0.22623935
+0.22606648
+0.22589394
+0.22572171
+0.22554979
+0.22537819
+0.22520691
+0.22503593
+0.22486527
+0.22469492
+0.22452487
+0.22435513
+0.22418569
+0.22401656
+0.22384774
+0.22367921
+0.22351099
+0.22334307
+0.22317545
+0.22300813
+0.22284110
+0.22267437
+0.22250794
+0.22234180
+0.22217596
+0.22201041
+0.22184515
+0.22168019
+0.22151551
+0.22135113
+0.22118703
+0.22102323
+0.22085971
+0.22069647
+0.22053352
+0.22037086
+0.22020848
+0.22004639
+0.21988457
+0.21972304
+0.21956179
+0.21940082
+0.21924013
+0.21907972
+0.21891958
+0.21875972
+0.21860014
+0.21844084
+0.21828180
+0.21812305
+0.21796456
+0.21780635
+0.21764841
+0.21749074
+0.21733334
+0.21717621
+0.21701935
+0.21686276
+0.21670643
+0.21655037
+0.21639458
+0.21623905
+0.21608378
+0.21592878
+0.21577404
+0.21561957
+0.21546535
+0.21531140
+0.21515770
+0.21500427
+0.21485109
+0.21469818
+0.21454552
+0.21439311
+0.21424096
+0.21408907
+0.21393743
+0.21378605
+0.21363492
+0.21348404
+0.21333341
+0.21318304
+0.21303291
+0.21288304
+0.21273341
+0.21258404
+0.21243491
+0.21228603
+0.21213739
+0.21198900
+0.21184086
+0.21169296
+0.21154530
+0.21139789
+0.21125072
+0.21110380
+0.21095711
+0.21081067
+0.21066446
+0.21051850
+0.21037277
+0.21022728
+0.21008203
+0.20993702
+0.20979225
+0.20964771
+0.20950340
+0.20935933
+0.20921549
+0.20907189
+0.20892852
+0.20878539
+0.20864248
+0.20849981
+0.20835736
+0.20821515
+0.20807316
+0.20793141
+0.20778988
+0.20764858
+0.20750751
+0.20736666
+0.20722604
+0.20708565
+0.20694548
+0.20680553
+0.20666581
+0.20652631
+0.20638703
+0.20624797
+0.20610914
+0.20597053
+0.20583213
+0.20569396
+0.20555601
+0.20541827
+0.20528075
+0.20514345
+0.20500637
+0.20486950
+0.20473285
+0.20459642
+0.20446020
+0.20432419
+0.20418840
+0.20405282
+0.20391745
+0.20378229
+0.20364735
+0.20351262
+0.20337810
+0.20324378
+0.20310968
+0.20297579
+0.20284210
+0.20270863
+0.20257536
+0.20244229
+0.20230944
+0.20217679
+0.20204434
+0.20191210
+0.20178007
+0.20164824
+0.20151661
+0.20138518
+0.20125396
+0.20112294
+0.20099212
+0.20086150
+0.20073108
+0.20060086
+0.20047085
+0.20034103
+0.20021140
+0.20008198
+0.19995276
+0.19982373
+0.19969490
+0.19956626
+0.19943782
+0.19930957
+0.19918152
+0.19905367
+0.19892601
+0.19879854
+0.19867126
+0.19854418
+0.19841728
+0.19829058
+0.19816408
+0.19803776
+0.19791163
+0.19778569
+0.19765994
+0.19753438
+0.19740900
+0.19728382
+0.19715882
+0.19703401
+0.19690939
+0.19678495
+0.19666070
+0.19653663
+0.19641275
+0.19628905
+0.19616553
+0.19604220
+0.19591905
+0.19579609
+0.19567331
+0.19555070
+0.19542828
+0.19530605
+0.19518399
+0.19506211
+0.19494041
+0.19481889
+0.19469755
+0.19457638
+0.19445540
+0.19433459
+0.19421396
+0.19409351
+0.19397323
+0.19385313
+0.19373320
+0.19361345
+0.19349387
+0.19337447
+0.19325524
+0.19313619
+0.19301731
+0.19289860
+0.19278006
+0.19266169
+0.19254350
+0.19242548
+0.19230763
+0.19218994
+0.19207243
+0.19195509
+0.19183792
+0.19172091
+0.19160407
+0.19148741
+0.19137090
+0.19125457
+0.19113840
+0.19102240
+0.19090657
+0.19079090
+0.19067540
+0.19056006
+0.19044488
+0.19032987
+0.19021502
+0.19010034
+0.18998582
+0.18987146
+0.18975727
+0.18964323
+0.18952936
+0.18941565
+0.18930210
+0.18918871
+0.18907548
+0.18896241
+0.18884950
+0.18873675
+0.18862416
+0.18851172
+0.18839945
+0.18828733
+0.18817537
+0.18806356
+0.18795191
+0.18784042
+0.18772908
+0.18761790
+0.18750688
+0.18739601
+0.18728529
+0.18717473
+0.18706432
+0.18695406
+0.18684396
+0.18673401
+0.18662421
+0.18651456
+0.18640507
+0.18629573
+0.18618653
+0.18607749
+0.18596860
+0.18585986
+0.18575127
+0.18564283
+0.18553453
+0.18542639
+0.18531839
+0.18521054
+0.18510284
+0.18499529
+0.18488788
+0.18478062
+0.18467351
+0.18456654
+0.18445972
+0.18435304
+0.18424651
+0.18414012
+0.18403388
+0.18392778
+0.18382182
+0.18371601
+0.18361034
+0.18350482
+0.18339943
+0.18329419
+0.18318909
+0.18308413
+0.18297932
+0.18287464
+0.18277010
+0.18266571
+0.18256145
+0.18245733
+0.18235336
+0.18224952
+0.18214582
+0.18204226
+0.18193884
+0.18183555
+0.18173240
+0.18162939
+0.18152652
+0.18142378
+0.18132118
+0.18121871
+0.18111638
+0.18101418
+0.18091212
+0.18081020
+0.18070841
+0.18060675
+0.18050523
+0.18040384
+0.18030258
+0.18020145
+0.18010046
+0.17999960
+0.17989887
+0.17979828
+0.17969781
+0.17959748
+0.17949727
+0.17939720
+0.17929725
+0.17919744
+0.17909775
+0.17899820
+0.17889877
+0.17879947
+0.17870030
+0.17860126
+0.17850235
+0.17840356
+0.17830490
+0.17820637
+0.17810796
+0.17800968
+0.17791152
+0.17781349
+0.17771558
+0.17761780
+0.17752015
+0.17742262
+0.17732521
+0.17722792
+0.17713076
+0.17703372
+0.17693681
+0.17684002
+0.17674334
+0.17664680
+0.17655037
+0.17645406
+0.17635787
+0.17626181
+0.17616586
+0.17607003
+0.17597433
+0.17587874
+0.17578327
+0.17568792
+0.17559269
+0.17549757
+0.17540258
+0.17530770
+0.17521293
+0.17511828
+0.17502375
+0.17492934
+0.17483504
+0.17474085
+0.17464678
+0.17455283
+0.17445899
+0.17436526
+0.17427164
+0.17417814
+0.17408475
+0.17399147
+0.17389831
+0.17380525
+0.17371231
+0.17361947
+0.17352675
+0.17343414
+0.17334163
+0.17324924
+0.17315695
+0.17306477
+0.17297270
+0.17288073
+0.17278887
+0.17269712
+0.17260548
+0.17251393
+0.17242250
+0.17233117
+0.17223994
+0.17214881
+0.17205779
+0.17196687
+0.17187605
+0.17178533
+0.17169471
+0.17160419
+0.17151377
+0.17142345
+0.17133323
+0.17124310
+0.17115307
+0.17106314
+0.17097330
+0.17088356
+0.17079391
+0.17070435
+0.17061488
+0.17052551
+0.17043622
+0.17034703
+0.17025792
+0.17016890
+0.17007997
+0.16999112
+0.16990236
+0.16981367
+0.16972508
+0.16963656
+0.16954812
+0.16945976
+0.16937148
+0.16928327
+0.16919513
+0.16910707
+0.16901908
+0.16893116
+0.16884331
+0.16875552
+0.16866780
+0.16858013
+0.16849253
+0.16840499
+0.16831750
+0.16823006
+0.16814268
+0.16805534
+0.16796806
+0.16788081
+0.16779361
+0.16770644
+0.16761931
+0.16753221
+0.16744514
+0.16735809
+0.16727107
+0.16718407
+0.16709709
+0.16701012
+0.16692316
+0.16683620
+0.16674926
+0.16666231
+0.16657536
+0.16648841
+0.16640145
+0.16631449
+0.16622752
+0.16614054
+0.16605355
+0.16596656
+0.16587956
+0.16579256
+0.16570557
+0.16561858
+0.16553162
+0.16544468
+0.16535778
+0.16527094
+0.16518416
+0.16509747
+0.16501088
+0.16492441
+0.16483808
+0.16475192
+0.16466595
+0.16458018
+0.16449464
+0.16440935
+0.16432433
+0.16423958
+0.16415512
+0.16407096
+0.16398711
+0.16390355
+0.16382029
+0.16373733
+0.16365466
+0.16357226
+0.16349012
+0.16340823
+0.16332657
+0.16324514
+0.16316391
+0.16308287
+0.16300202
+0.16292133
+0.16284080
+0.16276042
+0.16268018
+0.16260007
+0.16252009
+0.16244023
+0.16236049
+0.16228086
+0.16220134
+0.16212192
+0.16204261
+0.16196340
+0.16188428
+0.16180527
+0.16172635
+0.16164753
+0.16156880
+0.16149017
+0.16141163
+0.16133318
+0.16125482
+0.16117656
+0.16109839
+0.16102030
+0.16094231
+0.16086441
+0.16078660
+0.16070888
+0.16063125
+0.16055370
+0.16047625
+0.16039888
+0.16032161
+0.16024442
+0.16016732
+0.16009031
+0.16001339
+0.15993655
+0.15985980
+0.15978314
+0.15970657
+0.15963008
+0.15955368
+0.15947737
+0.15940115
+0.15932501
+0.15924895
+0.15917299
+0.15909711
+0.15902131
+0.15894561
+0.15886998
+0.15879445
+0.15871900
+0.15864363
+0.15856835
+0.15849316
+0.15841805
+0.15834302
+0.15826808
+0.15819323
+0.15811846
+0.15804377
+0.15796917
+0.15789465
+0.15782021
+0.15774586
+0.15767160
+0.15759742
+0.15752332
+0.15744930
+0.15737537
+0.15730152
+0.15722776
+0.15715407
+0.15708047
+0.15700696
+0.15693352
+0.15686017
+0.15678690
+0.15671372
+0.15664061
+0.15656759
+0.15649465
+0.15642179
+0.15634902
+0.15627632
+0.15620371
+0.15613118
+0.15605872
+0.15598636
+0.15591407
+0.15584186
+0.15576973
+0.15569769
+0.15562572
+0.15555384
+0.15548203
+0.15541031
+0.15533867
+0.15526710
+0.15519562
+0.15512422
+0.15505289
+0.15498165
+0.15491048
+0.15483940
+0.15476839
+0.15469746
+0.15462661
+0.15455584
+0.15448515
+0.15441454
+0.15434401
+0.15427355
+0.15420317
+0.15413287
+0.15406265
+0.15399251
+0.15392244
+0.15385245
+0.15378254
+0.15371271
+0.15364295
+0.15357327
+0.15350367
+0.15343415
+0.15336470
+0.15329532
+0.15322603
+0.15315681
+0.15308767
+0.15301860
+0.15294961
+0.15288069
+0.15281185
+0.15274309
+0.15267440
+0.15260578
+0.15253725
+0.15246878
+0.15240039
+0.15233208
+0.15226384
+0.15219567
+0.15212758
+0.15205957
+0.15199162
+0.15192376
+0.15185596
+0.15178824
+0.15172059
+0.15165302
+0.15158552
+0.15151809
+0.15145073
+0.15138345
+0.15131624
+0.15124911
+0.15118204
+0.15111505
+0.15104813
+0.15098128
+0.15091451
+0.15084780
+0.15078117
+0.15071461
+0.15064812
+0.15058170
+0.15051535
+0.15044908
+0.15038287
+0.15031674
+0.15025068
+0.15018468
+0.15011876
+0.15005291
+0.14998712
+0.14992141
+0.14985577
+0.14979020
+0.14972469
+0.14965926
+0.14959390
+0.14952860
+0.14946337
+0.14939822
+0.14933313
+0.14926811
+0.14920316
+0.14913828
+0.14907346
+0.14900872
+0.14894404
+0.14887943
+0.14881489
+0.14875041
+0.14868601
+0.14862167
+0.14855740
+0.14849319
+0.14842906
+0.14836499
+0.14830098
+0.14823705
+0.14817318
+0.14810937
+0.14804564
+0.14798197
+0.14791836
+0.14785483
+0.14779135
+0.14772795
+0.14766461
+0.14760133
+0.14753812
+0.14747498
+0.14741190
+0.14734889
+0.14728594
+0.14722306
+0.14716024
+0.14709749
+0.14703480
+0.14697218
+0.14690962
+0.14684712
+0.14678469
+0.14672233
+0.14666002
+0.14659778
+0.14653561
+0.14647350
+0.14641145
+0.14634947
+0.14628755
+0.14622569
+0.14616390
+0.14610216
+0.14604050
+0.14597889
+0.14591735
+0.14585587
+0.14579445
+0.14573310
+0.14567181
+0.14561058
+0.14554941
+0.14548830
+0.14542726
+0.14536628
+0.14530536
+0.14524450
+0.14518370
+0.14512296
+0.14506229
+0.14500168
+0.14494113
+0.14488064
+0.14482021
+0.14475984
+0.14469953
+0.14463928
+0.14457910
+0.14451897
+0.14445890
+0.14439890
+0.14433895
+0.14427907
+0.14421924
+0.14415948
+0.14409977
+0.14404013
+0.14398054
+0.14392101
+0.14386155
+0.14380214
+0.14374279
+0.14368350
+0.14362427
+0.14356510
+0.14350599
+0.14344693
+0.14338794
+0.14332900
+0.14327013
+0.14321131
+0.14315255
+0.14309384
+0.14303520
+0.14297661
+0.14291809
+0.14285962
+0.14280120
+0.14274285
+0.14268455
+0.14262631
+0.14256813
+0.14251001
+0.14245194
+0.14239393
+0.14233597
+0.14227808
+0.14222024
+0.14216246
+0.14210473
+0.14204706
+0.14198945
+0.14193190
+0.14187440
+0.14181695
+0.14175957
+0.14170224
+0.14164496
+0.14158774
+0.14153058
+0.14147347
+0.14141642
+0.14135943
+0.14130249
+0.14124560
+0.14118877
+0.14113200
+0.14107528
+0.14101862
+0.14096201
+0.14090546
+0.14084896
+0.14079252
+0.14073613
+0.14067979
+0.14062352
+0.14056729
+0.14051112
+0.14045500
+0.14039894
+0.14034293
+0.14028698
+0.14023108
+0.14017524
+0.14011944
+0.14006371
+0.14000802
+0.13995239
+0.13989681
+0.13984129
+0.13978582
+0.13973040
+0.13967504
+0.13961973
+0.13956447
+0.13950927
+0.13945412
+0.13939902
+0.13934397
+0.13928898
+0.13923404
+0.13917915
+0.13912431
+0.13906953
+0.13901480
+0.13896012
+0.13890549
+0.13885092
+0.13879639
+0.13874192
+0.13868750
+0.13863314
+0.13857882
+0.13852456
+0.13847035
+0.13841618
+0.13836207
+0.13830802
+0.13825401
+0.13820005
+0.13814615
+0.13809229
+0.13803849
+0.13798474
+0.13793104
+0.13787739
+0.13782379
+0.13777024
+0.13771674
+0.13766329
+0.13760989
+0.13755655
+0.13750325
+0.13745000
+0.13739680
+0.13734366
+0.13729056
+0.13723751
+0.13718451
+0.13713157
+0.13707867
+0.13702582
+0.13697302
+0.13692027
+0.13686757
+0.13681492
+0.13676231
+0.13670976
+0.13665726
+0.13660480
+0.13655240
+0.13650004
+0.13644773
+0.13639547
+0.13634326
+0.13629110
+0.13623898
+0.13618692
+0.13613490
+0.13608293
+0.13603101
+0.13597914
+0.13592731
+0.13587554
+0.13582381
+0.13577213
+0.13572049
+0.13566891
+0.13561737
+0.13556588
+0.13551444
+0.13546304
+0.13541170
+0.13536040
+0.13530914
+0.13525794
+0.13520678
+0.13515567
+0.13510460
+0.13505359
+0.13500262
+0.13495169
+0.13490081
+0.13484998
+0.13479920
+0.13474846
+0.13469777
+0.13464713
+0.13459653
+0.13454598
+0.13449547
+0.13444501
+0.13439460
+0.13434423
+0.13429391
+0.13424363
+0.13419340
+0.13414322
+0.13409308
+0.13404299
+0.13399294
+0.13394294
+0.13389298
+0.13384307
+0.13379320
+0.13374338
+0.13369361
+0.13364388
+0.13359419
+0.13354455
+0.13349496
+0.13344541
+0.13339590
+0.13334644
+0.13329702
+0.13324765
+0.13319832
+0.13314904
+0.13309980
+0.13305061
+0.13300145
+0.13295235
+0.13290329
+0.13285427
+0.13280530
+0.13275637
+0.13270748
+0.13265864
+0.13260984
+0.13256108
+0.13251237
+0.13246371
+0.13241508
+0.13236650
+0.13231796
+0.13226947
+0.13222102
+0.13217261
+0.13212425
+0.13207593
+0.13202765
+0.13197941
+0.13193122
+0.13188307
+0.13183496
+0.13178690
+0.13173888
+0.13169090
+0.13164296
+0.13159507
+0.13154722
+0.13149941
+0.13145164
+0.13140392
+0.13135624
+0.13130860
+0.13126100
+0.13121344
+0.13116593
+0.13111846
+0.13107102
+0.13102364
+0.13097629
+0.13092898
+0.13088172
+0.13083450
+0.13078732
+0.13074018
+0.13069308
+0.13064602
+0.13059901
+0.13055204
+0.13050510
+0.13045821
+0.13041136
+0.13036455
+0.13031778
+0.13027105
+0.13022437
+0.13017772
+0.13013111
+0.13008455
+0.13003803
+0.12999154
+0.12994510
+0.12989870
+0.12985233
+0.12980601
+0.12975973
+0.12971349
+0.12966729
+0.12962113
+0.12957500
+0.12952892
+0.12948288
+0.12943688
+0.12939092
+0.12934500
+0.12929911
+0.12925327
+0.12920747
+0.12916171
+0.12911598
+0.12907030
+0.12902465
+0.12897905
+0.12893348
+0.12888796
+0.12884247
+0.12879702
+0.12875161
+0.12870624
+0.12866091
+0.12861562
+0.12857037
+0.12852515
+0.12847998
+0.12843484
+0.12838974
+0.12834468
+0.12829966
+0.12825468
+0.12820974
+0.12816483
+0.12811996
+0.12807514
+0.12803035
+0.12798559
+0.12794088
+0.12789620
+0.12785157
+0.12780697
+0.12776241
+0.12771788
+0.12767340
+0.12762895
+0.12758454
+0.12754017
+0.12749583
+0.12745153
+0.12740728
+0.12736305
+0.12731887
+0.12727472
+0.12723061
+0.12718654
+0.12714251
+0.12709851
+0.12705455
+0.12701062
+0.12696674
+0.12692289
+0.12687907
+0.12683530
+0.12679156
+0.12674786
+0.12670419
+0.12666056
+0.12661697
+0.12657342
+0.12652990
+0.12648642
+0.12644297
+0.12639956
+0.12635619
+0.12631285
+0.12626955
+0.12622628
+0.12618305
+0.12613986
+0.12609671
+0.12605358
+0.12601050
+0.12596745
+0.12592444
+0.12588146
+0.12583852
+0.12579561
+0.12575274
+0.12570990
+0.12566710
+0.12562434
+0.12558161
+0.12553892
+0.12549626
+0.12545363
+0.12541104
+0.12536849
+0.12532597
+0.12528349
+0.12524104
+0.12519862
+0.12515624
+0.12511390
+0.12507159
+0.12502931
+0.12498707
+0.12494487
+0.12490269
+0.12486056
+0.12481845
+0.12477638
+0.12473435
+0.12469235
+0.12465038
+0.12460845
+0.12456655
+0.12452468
+0.12448285
+0.12444105
+0.12439929
+0.12435756
+0.12431586
+0.12427420
+0.12423257
+0.12419097
+0.12414941
+0.12410788
+0.12406639
+0.12402492
+0.12398349
+0.12394210
+0.12390073
+0.12385940
+0.12381811
+0.12377684
+0.12373561
+0.12369441
+0.12365324
+0.12361211
+0.12357101
+0.12352994
+0.12348891
+0.12344790
+0.12340693
+0.12336600
+0.12332509
+0.12328422
+0.12324338
+0.12320257
+0.12316179
+0.12312105
+0.12308034
+0.12303966
+0.12299901
+0.12295839
+0.12291781
+0.12287726
+0.12283674
+0.12279625
+0.12275579
+0.12271537
+0.12267497
+0.12263461
+0.12259428
+0.12255399
+0.12251372
+0.12247349
+0.12243328
+0.12239311
+0.12235297
+0.12231286
+0.12227279
+0.12223274
+0.12219273
+0.12215275
+0.12211280
+0.12207288
+0.12203299
+0.12199313
+0.12195331
+0.12191351
+0.12187375
+0.12183402
+0.12179432
+0.12175465
+0.12171502
+0.12167541
+0.12163583
+0.12159629
+0.12155678
+0.12151730
+0.12147785
+0.12143843
+0.12139905
+0.12135969
+0.12132037
+0.12128108
+0.12124182
+0.12120259
+0.12116339
+0.12112422
+0.12108509
+0.12104598
+0.12100691
+0.12096787
+0.12092886
+0.12088988
+0.12085094
+0.12081202
+0.12077314
+0.12073429
+0.12069547
+0.12065668
+0.12061792
+0.12057920
+0.12054050
+0.12050184
+0.12046321
+0.12042461
+0.12038604
+0.12034751
+0.12030901
+0.12027054
+0.12023210
+0.12019369
+0.12015531
+0.12011697
+0.12007865
+0.12004037
+0.12000212
+0.11996391
+0.11992572
+0.11988757
+0.11984945
+0.11981136
+0.11977330
+0.11973527
+0.11969728
+0.11965931
+0.11962138
+0.11958348
+0.11954561
+0.11950778
+0.11946997
+0.11943220
+0.11939446
+0.11935675
+0.11931907
+0.11928142
+0.11924381
+0.11920622
+0.11916867
+0.11913115
+0.11909366
+0.11905620
+0.11901877
+0.11898138
+0.11894401
+0.11890668
+0.11886937
+0.11883210
+0.11879486
+0.11875765
+0.11872047
+0.11868332
+0.11864620
+0.11860911
+0.11857206
+0.11853503
+0.11849803
+0.11846107
+0.11842413
+0.11838723
+0.11835035
+0.11831351
+0.11827669
+0.11823991
+0.11820315
+0.11816643
+0.11812973
+0.11809307
+0.11805643
+0.11801983
+0.11798325
+0.11794671
+0.11791019
+0.11787370
+0.11783725
+0.11780082
+0.11776442
+0.11772805
+0.11769171
+0.11765540
+0.11761911
+0.11758286
+0.11754664
+0.11751044
+0.11747427
+0.11743814
+0.11740203
+0.11736595
+0.11732989
+0.11729387
+0.11725788
+0.11722191
+0.11718597
+0.11715007
+0.11711418
+0.11707833
+0.11704251
+0.11700671
+0.11697095
+0.11693521
+0.11689950
+0.11686381
+0.11682816
+0.11679253
+0.11675693
+0.11672136
+0.11668582
+0.11665030
+0.11661482
+0.11657936
+0.11654392
+0.11650852
+0.11647314
+0.11643780
+0.11640247
+0.11636718
+0.11633191
+0.11629668
+0.11626146
+0.11622628
+0.11619112
+0.11615599
+0.11612089
+0.11608582
+0.11605077
+0.11601575
+0.11598076
+0.11594579
+0.11591085
+0.11587594
+0.11584105
+0.11580620
+0.11577137
+0.11573656
+0.11570178
+0.11566703
+0.11563231
+0.11559761
+0.11556294
+0.11552830
+0.11549368
+0.11545909
+0.11542453
+0.11538999
+0.11535548
+0.11532100
+0.11528654
+0.11525211
+0.11521771
+0.11518333
+0.11514898
+0.11511465
+0.11508035
+0.11504608
+0.11501183
+0.11497761
+0.11494342
+0.11490925
+0.11487511
+0.11484099
+0.11480690
+0.11477284
+0.11473880
+0.11470479
+0.11467080
+0.11463684
+0.11460291
+0.11456900
+0.11453511
+0.11450126
+0.11446743
+0.11443362
+0.11439984
+0.11436609
+0.11433236
+0.11429865
+0.11426498
+0.11423132
+0.11419770
+0.11416410
+0.11413052
+0.11409697
+0.11406345
+0.11402995
+0.11399647
+0.11396302
+0.11392960
+0.11389620
+0.11386283
+0.11382948
+0.11379616
+0.11376286
+0.11372959
+0.11369634
+0.11366312
+0.11362992
+0.11359674
+0.11356360
+0.11353047
+0.11349738
+0.11346430
+0.11343125
+0.11339823
+0.11336523
+0.11333226
+0.11329931
+0.11326638
+0.11323348
+0.11320061
+0.11316776
+0.11313493
+0.11310213
+0.11306935
+0.11303660
+0.11300387
+0.11297117
+0.11293849
+0.11290583
+0.11287320
+0.11284059
+0.11280801
+0.11277545
+0.11274292
+0.11271041
+0.11267793
+0.11264546
+0.11261303
+0.11258061
+0.11254823
+0.11251586
+0.11248352
+0.11245120
+0.11241891
+0.11238664
+0.11235440
+0.11232217
+0.11228998
+0.11225780
+0.11222565
+0.11219353
+0.11216143
+0.11212935
+0.11209729
+0.11206526
+0.11203325
+0.11200127
+0.11196931
+0.11193737
+0.11190546
+0.11187357
+0.11184170
+0.11180986
+0.11177804
+0.11174624
+0.11171447
+0.11168272
+0.11165099
+0.11161929
+0.11158761
+0.11155596
+0.11152432
+0.11149271
+0.11146113
+0.11142956
+0.11139802
+0.11136650
+0.11133501
+0.11130354
+0.11127209
+0.11124067
+0.11120926
+0.11117788
+0.11114653
+0.11111519
+0.11108388
+0.11105259
+0.11102133
+0.11099009
+0.11095887
+0.11092767
+0.11089650
+0.11086534
+0.11083421
+0.11080311
+0.11077202
+0.11074096
+0.11070992
+0.11067891
+0.11064792
+0.11061694
+0.11058600
+0.11055507
+0.11052417
+0.11049328
+0.11046242
+0.11043159
+0.11040077
+0.11036998
+0.11033921
+0.11030846
+0.11027774
+0.11024703
+0.11021635
+0.11018569
+0.11015506
+0.11012444
+0.11009385
+0.11006328
+0.11003273
+0.11000220
+0.10997170
+0.10994122
+0.10991075
+0.10988032
+0.10984990
+0.10981950
+0.10978913
+0.10975878
+0.10972845
+0.10969814
+0.10966785
+0.10963759
+0.10960734
+0.10957712
+0.10954692
+0.10951674
+0.10948659
+0.10945645
+0.10942634
+0.10939625
+0.10936618
+0.10933613
+0.10930610
+0.10927609
+0.10924611
+0.10921614
+0.10918620
+0.10915628
+0.10912638
+0.10909650
+0.10906665
+0.10903681
+0.10900700
+0.10897720
+0.10894743
+0.10891768
+0.10888795
+0.10885824
+0.10882855
+0.10879889
+0.10876924
+0.10873961
+0.10871001
+0.10868043
+0.10865087
+0.10862133
+0.10859181
+0.10856231
+0.10853283
+0.10850337
+0.10847393
+0.10844452
+0.10841512
+0.10838575
+0.10835639
+0.10832706
+0.10829775
+0.10826846
+0.10823919
+0.10820993
+0.10818070
+0.10815150
+0.10812231
+0.10809314
+0.10806399
+0.10803486
+0.10800576
+0.10797667
+0.10794760
+0.10791856
+0.10788953
+0.10786053
+0.10783154
+0.10780258
+0.10777363
+0.10774471
+0.10771581
+0.10768692
+0.10765806
+0.10762922
+0.10760039
+0.10757159
+0.10754281
+0.10751404
+0.10748530
+0.10745658
+0.10742788
+0.10739919
+0.10737053
+0.10734189
+0.10731327
+0.10728466
+0.10725608
+0.10722752
+0.10719897
+0.10717045
+0.10714195
+0.10711346
+0.10708500
+0.10705655
+0.10702813
+0.10699973
+0.10697134
+0.10694297
+0.10691463
+0.10688630
+0.10685800
+0.10682971
+0.10680144
+0.10677319
+0.10674496
+0.10671676
+0.10668857
+0.10666040
+0.10663224
+0.10660411
+0.10657600
+0.10654791
+0.10651984
+0.10649178
+0.10646375
+0.10643573
+0.10640774
+0.10637976
+0.10635180
+0.10632386
+0.10629594
+0.10626804
+0.10624016
+0.10621230
+0.10618446
+0.10615664
+0.10612883
+0.10610105
+0.10607328
+0.10604553
+0.10601780
+0.10599009
+0.10596240
+0.10593473
+0.10590708
+0.10587944
+0.10585183
+0.10582423
+0.10579666
+0.10576910
+0.10574156
+0.10571404
+0.10568654
+0.10565905
+0.10563159
+0.10560414
+0.10557671
+0.10554930
+0.10552191
+0.10549454
+0.10546719
+0.10543986
+0.10541254
+0.10538524
+0.10535796
+0.10533070
+0.10530346
+0.10527624
+0.10524903
+0.10522185
+0.10519468
+0.10516753
+0.10514040
+0.10511328
+0.10508619
+0.10505911
+0.10503206
+0.10500502
+0.10497799
+0.10495099
+0.10492401
+0.10489704
+0.10487009
+0.10484316
+0.10481625
+0.10478935
+0.10476248
+0.10473562
+0.10470878
+0.10468195
+0.10465515
+0.10462836
+0.10460160
+0.10457485
+0.10454811
+0.10452140
+0.10449470
+0.10446802
+0.10444136
+0.10441472
+0.10438810
+0.10436149
+0.10433490
+0.10430833
+0.10428177
+0.10425524
+0.10422872
+0.10420222
+0.10417573
+0.10414927
+0.10412282
+0.10409639
+0.10406998
+0.10404358
+0.10401721
+0.10399085
+0.10396450
+0.10393818
+0.10391187
+0.10388558
+0.10385931
+0.10383305
+0.10380682
+0.10378060
+0.10375439
+0.10372821
+0.10370204
+0.10367589
+0.10364976
+0.10362364
+0.10359754
+0.10357146
+0.10354540
+0.10351935
+0.10349332
+0.10346731
+0.10344131
+0.10341533
+0.10338937
+0.10336343
+0.10333750
+0.10331159
+0.10328570
+0.10325982
+0.10323396
+0.10320812
+0.10318230
+0.10315649
+0.10313070
+0.10310492
+0.10307917
+0.10305343
+0.10302770
+0.10300200
+0.10297631
+0.10295064
+0.10292498
+0.10289934
+0.10287372
+0.10284811
+0.10282252
+0.10279695
+0.10277140
+0.10274586
+0.10272034
+0.10269483
+0.10266934
+0.10264387
+0.10261842
+0.10259298
+0.10256755
+0.10254215
+0.10251676
+0.10249139
+0.10246603
+0.10244069
+0.10241537
+0.10239006
+0.10236477
+0.10233950
+0.10231424
+0.10228900
+0.10226377
+0.10223857
+0.10221337
+0.10218820
+0.10216304
+0.10213790
+0.10211277
+0.10208766
+0.10206256
+0.10203749
+0.10201242
+0.10198738
+0.10196235
+0.10193733
+0.10191234
+0.10188736
+0.10186239
+0.10183744
+0.10181251
+0.10178759
+0.10176269
+0.10173781
+0.10171294
+0.10168808
+0.10166325
+0.10163842
+0.10161362
+0.10158883
+0.10156406
+0.10153930
+0.10151456
+0.10148983
+0.10146512
+0.10144043
+0.10141575
+0.10139109
+0.10136644
+0.10134181
+0.10131719
+0.10129259
+0.10126801
+0.10124344
+0.10121889
+0.10119435
+0.10116983
+0.10114532
+0.10112083
+0.10109636
+0.10107190
+0.10104745
+0.10102303
+0.10099861
+0.10097422
+0.10094983
+0.10092547
+0.10090112
+0.10087678
+0.10085246
+0.10082816
+0.10080387
+0.10077959
+0.10075533
+0.10073109
+0.10070686
+0.10068265
+0.10065845
+0.10063427
+0.10061010
+0.10058595
+0.10056181
+0.10053769
+0.10051359
+0.10048949
+0.10046542
+0.10044136
+0.10041731
+0.10039328
+0.10036927
+0.10034526
+0.10032128
+0.10029731
+0.10027335
+0.10024941
+0.10022549
+0.10020158
+0.10017768
+0.10015380
+0.10012993
+0.10010608
+0.10008225
+0.10005842
+0.10003462
+0.10001083
+0.09998705
+0.09996329
+0.09993954
+0.09991581
+0.09989209
+0.09986839
+0.09984470
+0.09982102
+0.09979736
+0.09977372
+0.09975009
+0.09972647
+0.09970287
+0.09967929
+0.09965572
+0.09963216
+0.09960862
+0.09958509
+0.09956157
+0.09953808
+0.09951459
+0.09949112
+0.09946766
+0.09944422
+0.09942080
+0.09939738
+0.09937399
+0.09935060
+0.09932723
+0.09930388
+0.09928054
+0.09925721
+0.09923390
+0.09921060
+0.09918731
+0.09916404
+0.09914079
+0.09911755
+0.09909432
+0.09907111
+0.09904791
+0.09902472
+0.09900155
+0.09897840
+0.09895525
+0.09893212
+0.09890901
+0.09888591
+0.09886282
+0.09883975
+0.09881669
+0.09879365
+0.09877061
+0.09874760
+0.09872459
+0.09870160
+0.09867863
+0.09865567
+0.09863272
+0.09860979
+0.09858686
+0.09856396
+0.09854107
+0.09851819
+0.09849532
+0.09847247
+0.09844963
+0.09842681
+0.09840400
+0.09838120
+0.09835841
+0.09833564
+0.09831289
+0.09829014
+0.09826741
+0.09824470
+0.09822200
+0.09819931
+0.09817663
+0.09815397
+0.09813132
+0.09810868
+0.09808606
+0.09806345
+0.09804086
+0.09801828
+0.09799571
+0.09797315
+0.09795061
+0.09792808
+0.09790556
+0.09788306
+0.09786057
+0.09783810
+0.09781563
+0.09779318
+0.09777075
+0.09774832
+0.09772591
+0.09770351
+0.09768113
+0.09765876
+0.09763640
+0.09761405
+0.09759172
+0.09756940
+0.09754709
+0.09752480
+0.09750252
+0.09748025
+0.09745799
+0.09743575
+0.09741352
+0.09739130
+0.09736910
+0.09734691
+0.09732473
+0.09730256
+0.09728041
+0.09725827
+0.09723614
+0.09721402
+0.09719192
+0.09716983
+0.09714775
+0.09712568
+0.09710363
+0.09708159
+0.09705956
+0.09703754
+0.09701554
+0.09699355
+0.09697157
+0.09694960
+0.09692765
+0.09690571
+0.09688378
+0.09686186
+0.09683996
+0.09681806
+0.09679618
+0.09677431
+0.09675246
+0.09673061
+0.09670878
+0.09668696
+0.09666515
+0.09664335
+0.09662157
+0.09659980
+0.09657804
+0.09655629
+0.09653455
+0.09651283
+0.09649111
+0.09646941
+0.09644772
+0.09642605
+0.09640438
+0.09638272
+0.09636108
+0.09633945
+0.09631783
+0.09629622
+0.09627463
+0.09625304
+0.09623147
+0.09620991
+0.09618836
+0.09616682
+0.09614529
+0.09612377
+0.09610227
+0.09608077
+0.09605929
+0.09603782
+0.09601636
+0.09599491
+0.09597347
+0.09595205
+0.09593063
+0.09590923
+0.09588783
+0.09586645
+0.09584508
+0.09582372
+0.09580237
+0.09578103
+0.09575970
+0.09573838
+0.09571707
+0.09569578
+0.09567449
+0.09565321
+0.09563195
+0.09561069
+0.09558945
+0.09556821
+0.09554699
+0.09552578
+0.09550457
+0.09548338
+0.09546220
+0.09544102
+0.09541986
+0.09539871
+0.09537757
+0.09535643
+0.09533531
+0.09531419
+0.09529309
+0.09527200
+0.09525091
+0.09522983
+0.09520877
+0.09518771
+0.09516666
+0.09514562
+0.09512459
+0.09510357
+0.09508256
+0.09506156
+0.09504056
+0.09501958
+0.09499860
+0.09497763
+0.09495667
+0.09493572
+0.09491477
+0.09489384
+0.09487291
+0.09485199
+0.09483108
+0.09481017
+0.09478927
+0.09476838
+0.09474750
+0.09472662
+0.09470575
+0.09468489
+0.09466403
+0.09464318
+0.09462233
+0.09460149
+0.09458066
+0.09455983
+0.09453901
+0.09451819
+0.09449738
+0.09447657
+0.09445577
+0.09443497
+0.09441417
+0.09439338
+0.09437259
+0.09435180
+0.09433101
+0.09431023
+0.09428945
+0.09426867
+0.09424789
+0.09422711
+0.09420633
+0.09418554
+0.09416476
+0.09414398
+0.09412319
+0.09410240
+0.09408161
+0.09406081
+0.09404001
+0.09401920
+0.09399838
+0.09397756
+0.09395673
+0.09393588
+0.09391503
+0.09389416
+0.09387329
+0.09385239
+0.09383148
+0.09381056
+0.09378961
+0.09376864
+0.09374765
+0.09372663
+0.09370559
+0.09368451
+0.09366341
+0.09364227
+0.09362109
+0.09359986
+0.09357860
+0.09355728
+0.09353591
+0.09351448
+0.09349298
+0.09347142
+0.09344977
+0.09342805
+0.09340623
+0.09338431
+0.09336228
+0.09334013
+0.09331785
+0.09329541
+0.09327282
+0.09325004
+0.09322705
+0.09320384
+0.09318038
+0.09315663
+0.09313256
+0.09310813
+0.09308329
+0.09305797
+0.09303212
+0.09300564
+0.09297843
+0.09295038
+0.09292134
+0.09289112
+0.09285949
+0.09282616
+0.09279077
+0.09275282
+0.09271169
+0.09266653
+0.09261622
+0.09255920
+0.09249330
+0.09241548
+0.09232145
+0.09220522
+0.09205885
+0.09187309
+0.09164116
+0.09136833
+0.09108398
+0.09083424
+0.09064487
+0.09050579
+0.09039648
+0.09030327
+0.09021917
+0.09014062
+0.09006565
+0.08999310
+0.08992223
+0.08985255
+0.08978373
+0.08971551
+0.08964773
+0.08958026
+0.08951300
+0.08944589
+0.08937886
+0.08931187
+0.08924489
+0.08917788
+0.08911084
+0.08904373
+0.08897656
+0.08890930
+0.08884195
+0.08877450
+0.08870695
+0.08863929
+0.08857153
+0.08850365
+0.08843567
+0.08836757
+0.08829936
+0.08823103
+0.08816260
+0.08809406
+0.08802541
+0.08795666
+0.08788780
+0.08781884
+0.08774978
+0.08768063
+0.08761138
+0.08754204
+0.08747262
+0.08740311
+0.08733351
+0.08726384
+0.08719409
+0.08712427
+0.08705439
+0.08698443
+0.08691441
+0.08684434
+0.08677421
+0.08670402
+0.08663379
+0.08656351
+0.08649319
+0.08642283
+0.08635243
+0.08628200
+0.08621154
+0.08614106
+0.08607056
+0.08600003
+0.08592949
+0.08585894
+0.08578839
+0.08571782
+0.08564726
+0.08557669
+0.08550614
+0.08543559
+0.08536505
+0.08529452
+0.08522402
+0.08515354
+0.08508308
+0.08501265
+0.08494225
+0.08487189
+0.08480156
+0.08473128
+0.08466104
+0.08459085
+0.08452071
+0.08445062
+0.08438059
+0.08431062
+0.08424071
+0.08417087
+0.08410110
+0.08403140
+0.08396177
+0.08389223
+0.08382276
+0.08375338
+0.08368408
+0.08361487
+0.08354576
+0.08347674
+0.08340782
+0.08333899
+0.08327027
+0.08320166
+0.08313315
+0.08306475
+0.08299647
+0.08292829
+0.08286024
+0.08279230
+0.08272449
+0.08265680
+0.08258923
+0.08252179
+0.08245448
+0.08238731
+0.08232026
+0.08225335
+0.08218657
+0.08211994
+0.08205344
+0.08198708
+0.08192087
+0.08185479
+0.08178887
+0.08172309
+0.08165745
+0.08159197
+0.08152663
+0.08146145
+0.08139642
+0.08133153
+0.08126680
+0.08120223
+0.08113781
+0.08107354
+0.08100943
+0.08094548
+0.08088168
+0.08081804
+0.08075456
+0.08069124
+0.08062807
+0.08056506
+0.08050222
+0.08043953
+0.08037700
+0.08031463
+0.08025242
+0.08019037
+0.08012847
+0.08006674
+0.08000517
+0.07994376
+0.07988251
+0.07982142
+0.07976048
+0.07969971
+0.07963910
+0.07957865
+0.07951836
+0.07945823
+0.07939826
+0.07933845
+0.07927880
+0.07921931
+0.07915998
+0.07910081
+0.07904181
+0.07898296
+0.07892427
+0.07886575
+0.07880739
+0.07874919
+0.07869115
+0.07863327
+0.07857556
+0.07851801
+0.07846063
+0.07840340
+0.07834635
+0.07828945
+0.07823273
+0.07817616
+0.07811977
+0.07806354
+0.07800747
+0.07795158
+0.07789585
+0.07784029
+0.07778490
+0.07772968
+0.07767462
+0.07761974
+0.07756503
+0.07751048
+0.07745610
+0.07740190
+0.07734786
+0.07729399
+0.07724029
+0.07718676
+0.07713340
+0.07708021
+0.07702718
+0.07697433
+0.07692163
+0.07686911
+0.07681675
+0.07676455
+0.07671252
+0.07666065
+0.07660894
+0.07655739
+0.07650601
+0.07645478
+0.07640371
+0.07635279
+0.07630204
+0.07625143
+0.07620098
+0.07615068
+0.07610053
+0.07605054
+0.07600069
+0.07595099
+0.07590143
+0.07585202
+0.07580276
+0.07575363
+0.07570465
+0.07565581
+0.07560711
+0.07555855
+0.07551012
+0.07546183
+0.07541368
+0.07536566
+0.07531778
+0.07527002
+0.07522240
+0.07517491
+0.07512755
+0.07508032
+0.07503321
+0.07498623
+0.07493938
+0.07489265
+0.07484605
+0.07479957
+0.07475321
+0.07470698
+0.07466087
+0.07461487
+0.07456900
+0.07452324
+0.07447760
+0.07443208
+0.07438668
+0.07434139
+0.07429622
+0.07425116
+0.07420622
+0.07416138
+0.07411667
+0.07407206
+0.07402756
+0.07398318
+0.07393890
+0.07389474
+0.07385068
+0.07380673
+0.07376289
+0.07371916
+0.07367553
+0.07363201
+0.07358859
+0.07354528
+0.07350207
+0.07345897
+0.07341597
+0.07337307
+0.07333028
+0.07328758
+0.07324499
+0.07320250
+0.07316011
+0.07311781
+0.07307562
+0.07303353
+0.07299153
+0.07294963
+0.07290783
+0.07286612
+0.07282451
+0.07278300
+0.07274158
+0.07270026
+0.07265903
+0.07261790
+0.07257686
+0.07253591
+0.07249505
+0.07245429
+0.07241362
+0.07237304
+0.07233255
+0.07229215
+0.07225184
+0.07221162
+0.07217149
+0.07213145
+0.07209150
+0.07205163
+0.07201186
+0.07197217
+0.07193256
+0.07189305
+0.07185362
+0.07181427
+0.07177501
+0.07173584
+0.07169675
+0.07165774
+0.07161882
+0.07157998
+0.07154123
+0.07150256
+0.07146396
+0.07142546
+0.07138703
+0.07134868
+0.07131042
+0.07127224
+0.07123413
+0.07119611
+0.07115816
+0.07112030
+0.07108251
+0.07104481
+0.07100718
+0.07096963
+0.07093215
+0.07089475
+0.07085743
+0.07082019
+0.07078302
+0.07074593
+0.07070892
+0.07067198
+0.07063511
+0.07059832
+0.07056161
+0.07052496
+0.07048840
+0.07045190
+0.07041548
+0.07037913
+0.07034285
+0.07030665
+0.07027052
+0.07023446
+0.07019847
+0.07016255
+0.07012670
+0.07009093
+0.07005522
+0.07001958
+0.06998402
+0.06994852
+0.06991309
+0.06987773
+0.06984244
+0.06980722
+0.06977207
+0.06973698
+0.06970196
+0.06966701
+0.06963212
+0.06959731
+0.06956255
+0.06952787
+0.06949325
+0.06945869
+0.06942421
+0.06938978
+0.06935542
+0.06932113
+0.06928690
+0.06925274
+0.06921863
+0.06918460
+0.06915062
+0.06911671
+0.06908286
+0.06904908
+0.06901535
+0.06898169
+0.06894810
+0.06891456
+0.06888108
+0.06884767
+0.06881432
+0.06878102
+0.06874779
+0.06871462
+0.06868151
+0.06864846
+0.06861547
+0.06858253
+0.06854966
+0.06851685
+0.06848409
+0.06845140
+0.06841876
+0.06838618
+0.06835366
+0.06832119
+0.06828879
+0.06825644
+0.06822415
+0.06819191
+0.06815973
+0.06812761
+0.06809554
+0.06806354
+0.06803158
+0.06799968
+0.06796784
+0.06793605
+0.06790432
+0.06787264
+0.06784102
+0.06780945
+0.06777794
+0.06774648
+0.06771507
+0.06768372
+0.06765242
+0.06762118
+0.06758999
+0.06755885
+0.06752776
+0.06749673
+0.06746574
+0.06743482
+0.06740394
+0.06737311
+0.06734234
+0.06731162
+0.06728095
+0.06725033
+0.06721976
+0.06718924
+0.06715877
+0.06712836
+0.06709799
+0.06706767
+0.06703741
+0.06700719
+0.06697702
+0.06694690
+0.06691683
+0.06688681
+0.06685684
+0.06682692
+0.06679705
+0.06676722
+0.06673745
+0.06670772
+0.06667804
+0.06664840
+0.06661882
+0.06658928
+0.06655979
+0.06653034
+0.06650095
+0.06647160
+0.06644229
+0.06641304
+0.06638382
+0.06635466
+0.06632554
+0.06629647
+0.06626744
+0.06623846
+0.06620952
+0.06618063
+0.06615179
+0.06612299
+0.06609423
+0.06606552
+0.06603685
+0.06600823
+0.06597965
+0.06595112
+0.06592263
+0.06589418
+0.06586578
+0.06583742
+0.06580910
+0.06578083
+0.06575260
+0.06572442
+0.06569627
+0.06566817
+0.06564011
+0.06561210
+0.06558412
+0.06555619
+0.06552830
+0.06550045
+0.06547265
+0.06544488
+0.06541716
+0.06538948
+0.06536184
+0.06533424
+0.06530668
+0.06527916
+0.06525168
+0.06522425
+0.06519685
+0.06516949
+0.06514218
+0.06511490
+0.06508767
+0.06506047
+0.06503332
+0.06500620
+0.06497912
+0.06495208
+0.06492509
+0.06489813
+0.06487121
+0.06484432
+0.06481748
+0.06479068
+0.06476391
+0.06473718
+0.06471049
+0.06468384
+0.06465723
+0.06463065
+0.06460411
+0.06457761
+0.06455115
+0.06452473
+0.06449834
+0.06447199
+0.06444567
+0.06441940
+0.06439316
+0.06436696
+0.06434079
+0.06431466
+0.06428857
+0.06426251
+0.06423649
+0.06421050
+0.06418456
+0.06415864
+0.06413277
+0.06410692
+0.06408112
+0.06405535
+0.06402961
+0.06400391
+0.06397825
+0.06395262
+0.06392702
+0.06390146
+0.06387594
+0.06385045
+0.06382499
+0.06379957
+0.06377419
+0.06374883
+0.06372351
+0.06369823
+0.06367298
+0.06364776
+0.06362258
+0.06359743
+0.06357231
+0.06354723
+0.06352218
+0.06349717
+0.06347218
+0.06344723
+0.06342232
+0.06339743
+0.06337258
+0.06334776
+0.06332298
+0.06329822
+0.06327350
+0.06324881
+0.06322416
+0.06319953
+0.06317494
+0.06315038
+0.06312585
+0.06310136
+0.06307689
+0.06305246
+0.06302806
+0.06300369
+0.06297935
+0.06295504
+0.06293076
+0.06290652
+0.06288230
+0.06285812
+0.06283397
+0.06280985
+0.06278576
+0.06276169
+0.06273766
+0.06271366
+0.06268970
+0.06266576
+0.06264185
+0.06261797
+0.06259412
+0.06257030
+0.06254651
+0.06252275
+0.06249902
+0.06247532
+0.06245165
+0.06242801
+0.06240439
+0.06238081
+0.06235726
+0.06233373
+0.06231024
+0.06228677
+0.06226333
+0.06223992
+0.06221654
+0.06219319
+0.06216987
+0.06214657
+0.06212331
+0.06210007
+0.06207686
+0.06205368
+0.06203053
+0.06200740
+0.06198430
+0.06196123
+0.06193819
+0.06191518
+0.06189219
+0.06186923
+0.06184630
+0.06182340
+0.06180052
+0.06177767
+0.06175485
+0.06173206
+0.06170929
+0.06168655
+0.06166384
+0.06164115
+0.06161849
+0.06159586
+0.06157325
+0.06155067
+0.06152812
+0.06150559
+0.06148309
+0.06146062
+0.06143817
+0.06141575
+0.06139335
+0.06137098
+0.06134864
+0.06132632
+0.06130403
+0.06128176
+0.06125952
+0.06123731
+0.06121512
+0.06119296
+0.06117082
+0.06114871
+0.06112662
+0.06110456
+0.06108252
+0.06106051
+0.06103852
+0.06101656
+0.06099463
+0.06097272
+0.06095083
+0.06092897
+0.06090713
+0.06088532
+0.06086353
+0.06084177
+0.06082003
+0.06079831
+0.06077663
+0.06075496
+0.06073332
+0.06071170
+0.06069011
+0.06066854
+0.06064699
+0.06062547
+0.06060398
+0.06058250
+0.06056105
+0.06053963
+0.06051823
+0.06049685
+0.06047549
+0.06045416
+0.06043285
+0.06041157
+0.06039031
+0.06036907
+0.06034785
+0.06032666
+0.06030549
+0.06028435
+0.06026323
+0.06024213
+0.06022105
+0.06019999
+0.06017896
+0.06015795
+0.06013697
+0.06011601
+0.06009507
+0.06007415
+0.06005325
+0.06003238
+0.06001153
+0.05999070
+0.05996989
+0.05994911
+0.05992835
+0.05990760
+0.05988689
+0.05986619
+0.05984552
+0.05982486
+0.05980423
+0.05978363
+0.05976304
+0.05974247
+0.05972193
+0.05970141
+0.05968091
+0.05966043
+0.05963997
+0.05961953
+0.05959912
+0.05957872
+0.05955835
+0.05953800
+0.05951767
+0.05949736
+0.05947707
+0.05945681
+0.05943656
+0.05941633
+0.05939613
+0.05937595
+0.05935578
+0.05933564
+0.05931552
+0.05929542
+0.05927534
+0.05925528
+0.05923524
+0.05921522
+0.05919522
+0.05917524
+0.05915529
+0.05913535
+0.05911543
+0.05909553
+0.05907566
+0.05905580
+0.05903596
+0.05901614
+0.05899635
+0.05897657
+0.05895681
+0.05893708
+0.05891736
+0.05889766
+0.05887798
+0.05885832
+0.05883868
+0.05881906
+0.05879946
+0.05877988
+0.05876032
+0.05874078
+0.05872126
+0.05870175
+0.05868227
+0.05866280
+0.05864336
+0.05862393
+0.05860452
+0.05858513
+0.05856576
+0.05854641
+0.05852708
+0.05850777
+0.05848847
+0.05846920
+0.05844994
+0.05843071
+0.05841149
+0.05839229
+0.05837310
+0.05835394
+0.05833480
+0.05831567
+0.05829656
+0.05827747
+0.05825840
+0.05823935
+0.05822031
+0.05820130
+0.05818230
+0.05816332
+0.05814436
+0.05812541
+0.05810649
+0.05808758
+0.05806869
+0.05804982
+0.05803097
+0.05801213
+0.05799331
+0.05797451
+0.05795573
+0.05793696
+0.05791822
+0.05789949
+0.05788078
+0.05786208
+0.05784341
+0.05782475
+0.05780610
+0.05778748
+0.05776887
+0.05775028
+0.05773171
+0.05771316
+0.05769462
+0.05767610
+0.05765759
+0.05763911
+0.05762064
+0.05760219
+0.05758375
+0.05756533
+0.05754693
+0.05752855
+0.05751018
+0.05749183
+0.05747350
+0.05745518
+0.05743688
+0.05741860
+0.05740033
+0.05738208
+0.05736385
+0.05734563
+0.05732743
+0.05730925
+0.05729108
+0.05727293
+0.05725480
+0.05723668
+0.05721858
+0.05720050
+0.05718243
+0.05716437
+0.05714634
+0.05712832
+0.05711032
+0.05709233
+0.05707436
+0.05705640
+0.05703846
+0.05702054
+0.05700263
+0.05698474
+0.05696687
+0.05694901
+0.05693116
+0.05691334
+0.05689552
+0.05687773
+0.05685995
+0.05684218
+0.05682443
+0.05680670
+0.05678898
+0.05677128
+0.05675359
+0.05673592
+0.05671827
+0.05670063
+0.05668300
+0.05666540
+0.05664780
+0.05663022
+0.05661266
+0.05659511
+0.05657758
+0.05656006
+0.05654256
+0.05652507
+0.05650760
+0.05649015
+0.05647271
+0.05645528
+0.05643787
+0.05642047
+0.05640309
+0.05638572
+0.05636837
+0.05635104
+0.05633371
+0.05631641
+0.05629912
+0.05628184
+0.05626458
+0.05624733
+0.05623010
+0.05621288
+0.05619568
+0.05617849
+0.05616131
+0.05614415
+0.05612701
+0.05610988
+0.05609276
+0.05607566
+0.05605857
+0.05604150
+0.05602444
+0.05600740
+0.05599037
+0.05597335
+0.05595635
+0.05593936
+0.05592239
+0.05590543
+0.05588849
+0.05587156
+0.05585464
+0.05583774
+0.05582085
+0.05580398
+0.05578712
+0.05577027
+0.05575344
+0.05573662
+0.05571982
+0.05570303
+0.05568625
+0.05566949
+0.05565274
+0.05563601
+0.05561929
+0.05560258
+0.05558589
+0.05556921
+0.05555254
+0.05553589
+0.05551925
+0.05550263
+0.05548602
+0.05546942
+0.05545283
+0.05543626
+0.05541971
+0.05540316
+0.05538663
+0.05537011
+0.05535361
+0.05533712
+0.05532064
+0.05530418
+0.05528773
+0.05527129
+0.05525487
+0.05523846
+0.05522206
+0.05520568
+0.05518931
+0.05517295
+0.05515661
+0.05514027
+0.05512396
+0.05510765
+0.05509136
+0.05507508
+0.05505881
+0.05504256
+0.05502632
+0.05501009
+0.05499388
+0.05497767
+0.05496149
+0.05494531
+0.05492915
+0.05491300
+0.05489686
+0.05488073
+0.05486462
+0.05484852
+0.05483244
+0.05481636
+0.05480030
+0.05478425
+0.05476821
+0.05475219
+0.05473618
+0.05472018
+0.05470419
+0.05468822
+0.05467226
+0.05465631
+0.05464037
+0.05462445
+0.05460854
+0.05459264
+0.05457675
+0.05456088
+0.05454502
+0.05452917
+0.05451333
+0.05449750
+0.05448169
+0.05446589
+0.05445010
+0.05443432
+0.05441856
+0.05440281
+0.05438707
+0.05437134
+0.05435562
+0.05433992
+0.05432423
+0.05430855
+0.05429288
+0.05427722
+0.05426158
+0.05424595
+0.05423032
+0.05421472
+0.05419912
+0.05418353
+0.05416796
+0.05415240
+0.05413685
+0.05412131
+0.05410579
+0.05409027
+0.05407477
+0.05405928
+0.05404380
+0.05402833
+0.05401288
+0.05399744
+0.05398200
+0.05396658
+0.05395117
+0.05393577
+0.05392039
+0.05390501
+0.05388965
+0.05387430
+0.05385896
+0.05384363
+0.05382831
+0.05381301
+0.05379771
+0.05378243
+0.05376716
+0.05375190
+0.05373665
+0.05372141
+0.05370618
+0.05369097
+0.05367576
+0.05366057
+0.05364539
+0.05363022
+0.05361506
+0.05359991
+0.05358477
+0.05356965
+0.05355453
+0.05353943
+0.05352433
+0.05350925
+0.05349418
+0.05347912
+0.05346407
+0.05344904
+0.05343401
+0.05341899
+0.05340399
+0.05338899
+0.05337401
+0.05335904
+0.05334408
+0.05332913
+0.05331419
+0.05329926
+0.05328434
+0.05326943
+0.05325454
+0.05323965
+0.05322478
+0.05320991
diff --git a/Project2-Character-Recognition/build/xor_W1_DxH_2_x_4.txt b/Project2-Character-Recognition/build/xor_W1_DxH_2_x_4.txt
new file mode 100644
index 0000000..8cf7cf2
--- /dev/null
+++ b/Project2-Character-Recognition/build/xor_W1_DxH_2_x_4.txt
@@ -0,0 +1,8 @@
+-0.49231626
+-0.40751672
+2.82573045
+3.57505757
+0.34513172
+1.16218060
+-0.72394906
+3.04743704
diff --git a/Project2-Character-Recognition/build/xor_W2_HxC_4_x_2.txt b/Project2-Character-Recognition/build/xor_W2_HxC_4_x_2.txt
new file mode 100644
index 0000000..707b05d
--- /dev/null
+++ b/Project2-Character-Recognition/build/xor_W2_HxC_4_x_2.txt
@@ -0,0 +1,8 @@
+0.37121719
+-0.88363409
+1.95692802
+-0.25860953
+1.19070299
+-1.99379371
+-2.84738739
+1.87420210
diff --git a/Project2-Character-Recognition/build/xor_losses.txt b/Project2-Character-Recognition/build/xor_losses.txt
new file mode 100644
index 0000000..62c1c96
--- /dev/null
+++ b/Project2-Character-Recognition/build/xor_losses.txt
@@ -0,0 +1,1001 @@
+0.73675045
+0.71901634
+0.70849981
+0.70234181
+0.69876269
+0.69669082
+0.69549348
+0.69480141
+0.69440055
+0.69416731
+0.69403047
+0.69394905
+0.69389950
+0.69386828
+0.69384761
+0.69383302
+0.69382195
+0.69381291
+0.69380507
+0.69379793
+0.69379121
+0.69378476
+0.69377848
+0.69377231
+0.69376624
+0.69376023
+0.69375427
+0.69374837
+0.69374252
+0.69373671
+0.69373094
+0.69372522
+0.69371954
+0.69371389
+0.69370829
+0.69370273
+0.69369721
+0.69369172
+0.69368628
+0.69368087
+0.69367550
+0.69367016
+0.69366486
+0.69365960
+0.69365437
+0.69364918
+0.69364402
+0.69363889
+0.69363380
+0.69362874
+0.69362372
+0.69361872
+0.69361376
+0.69360884
+0.69360394
+0.69359907
+0.69359424
+0.69358943
+0.69358466
+0.69357991
+0.69357519
+0.69357051
+0.69356585
+0.69356122
+0.69355661
+0.69355204
+0.69354749
+0.69354297
+0.69353847
+0.69353401
+0.69352956
+0.69352515
+0.69352076
+0.69351639
+0.69351205
+0.69350773
+0.69350344
+0.69349917
+0.69349493
+0.69349071
+0.69348651
+0.69348234
+0.69347819
+0.69347406
+0.69346995
+0.69346587
+0.69346180
+0.69345776
+0.69345374
+0.69344974
+0.69344576
+0.69344181
+0.69343787
+0.69343395
+0.69343005
+0.69342618
+0.69342232
+0.69341848
+0.69341466
+0.69341085
+0.69340707
+0.69340331
+0.69339956
+0.69339583
+0.69339212
+0.69338843
+0.69338475
+0.69338109
+0.69337745
+0.69337383
+0.69337022
+0.69336663
+0.69336305
+0.69335949
+0.69335595
+0.69335242
+0.69334891
+0.69334541
+0.69334193
+0.69333846
+0.69333501
+0.69333157
+0.69332815
+0.69332474
+0.69332134
+0.69331796
+0.69331459
+0.69331124
+0.69330790
+0.69330458
+0.69330126
+0.69329796
+0.69329468
+0.69329140
+0.69328814
+0.69328489
+0.69328165
+0.69327843
+0.69327522
+0.69327202
+0.69326883
+0.69326565
+0.69326248
+0.69325933
+0.69325619
+0.69325305
+0.69324993
+0.69324682
+0.69324372
+0.69324063
+0.69323756
+0.69323449
+0.69323143
+0.69322838
+0.69322534
+0.69322232
+0.69321930
+0.69321629
+0.69321329
+0.69321030
+0.69320732
+0.69320434
+0.69320138
+0.69319843
+0.69319548
+0.69319255
+0.69318962
+0.69318670
+0.69318378
+0.69318088
+0.69317799
+0.69317510
+0.69317222
+0.69316935
+0.69316648
+0.69316362
+0.69316078
+0.69315793
+0.69315510
+0.69315227
+0.69314945
+0.69314663
+0.69314383
+0.69314103
+0.69313823
+0.69313544
+0.69313266
+0.69312989
+0.69312712
+0.69312435
+0.69312160
+0.69311885
+0.69311610
+0.69311336
+0.69311062
+0.69310790
+0.69310517
+0.69310245
+0.69309974
+0.69309703
+0.69309433
+0.69309163
+0.69308894
+0.69308625
+0.69308356
+0.69308088
+0.69307821
+0.69307553
+0.69307287
+0.69307020
+0.69306754
+0.69306489
+0.69306224
+0.69305959
+0.69305694
+0.69305430
+0.69305167
+0.69304903
+0.69304640
+0.69304377
+0.69304115
+0.69303853
+0.69303591
+0.69303329
+0.69303068
+0.69302807
+0.69302546
+0.69302285
+0.69302025
+0.69301765
+0.69301505
+0.69301245
+0.69300985
+0.69300726
+0.69300467
+0.69300208
+0.69299949
+0.69299690
+0.69299432
+0.69299173
+0.69298915
+0.69298657
+0.69298398
+0.69298140
+0.69297882
+0.69297625
+0.69297367
+0.69297109
+0.69296851
+0.69296593
+0.69296336
+0.69296078
+0.69295820
+0.69295563
+0.69295305
+0.69295047
+0.69294790
+0.69294532
+0.69294274
+0.69294016
+0.69293758
+0.69293500
+0.69293242
+0.69292984
+0.69292725
+0.69292467
+0.69292208
+0.69291949
+0.69291690
+0.69291431
+0.69291172
+0.69290912
+0.69290653
+0.69290393
+0.69290133
+0.69289873
+0.69289612
+0.69289351
+0.69289090
+0.69288829
+0.69288568
+0.69288306
+0.69288044
+0.69287781
+0.69287518
+0.69287255
+0.69286992
+0.69286728
+0.69286464
+0.69286199
+0.69285934
+0.69285669
+0.69285403
+0.69285137
+0.69284871
+0.69284604
+0.69284336
+0.69284068
+0.69283800
+0.69283531
+0.69283262
+0.69282992
+0.69282721
+0.69282450
+0.69282179
+0.69281907
+0.69281634
+0.69281361
+0.69281087
+0.69280813
+0.69280538
+0.69280262
+0.69279986
+0.69279709
+0.69279431
+0.69279153
+0.69278874
+0.69278594
+0.69278313
+0.69278032
+0.69277750
+0.69277467
+0.69277184
+0.69276899
+0.69276614
+0.69276328
+0.69276042
+0.69275754
+0.69275465
+0.69275176
+0.69274886
+0.69274594
+0.69274302
+0.69274009
+0.69273715
+0.69273420
+0.69273124
+0.69272827
+0.69272529
+0.69272230
+0.69271930
+0.69271629
+0.69271326
+0.69271023
+0.69270718
+0.69270413
+0.69270106
+0.69269798
+0.69269489
+0.69269179
+0.69268867
+0.69268554
+0.69268240
+0.69267925
+0.69267608
+0.69267290
+0.69266971
+0.69266650
+0.69266329
+0.69266005
+0.69265680
+0.69265354
+0.69265027
+0.69264697
+0.69264367
+0.69264035
+0.69263701
+0.69263366
+0.69263029
+0.69262691
+0.69262351
+0.69262009
+0.69261666
+0.69261321
+0.69260975
+0.69260626
+0.69260276
+0.69259924
+0.69259571
+0.69259215
+0.69258858
+0.69258499
+0.69258138
+0.69257775
+0.69257410
+0.69257043
+0.69256674
+0.69256303
+0.69255930
+0.69255555
+0.69255178
+0.69254799
+0.69254418
+0.69254034
+0.69253648
+0.69253260
+0.69252870
+0.69252478
+0.69252083
+0.69251686
+0.69251286
+0.69250884
+0.69250480
+0.69250073
+0.69249664
+0.69249252
+0.69248837
+0.69248420
+0.69248000
+0.69247578
+0.69247153
+0.69246725
+0.69246295
+0.69245861
+0.69245425
+0.69244986
+0.69244544
+0.69244099
+0.69243651
+0.69243200
+0.69242746
+0.69242289
+0.69241829
+0.69241366
+0.69240899
+0.69240429
+0.69239956
+0.69239479
+0.69239000
+0.69238516
+0.69238029
+0.69237539
+0.69237045
+0.69236548
+0.69236047
+0.69235542
+0.69235033
+0.69234521
+0.69234005
+0.69233485
+0.69232961
+0.69232433
+0.69231901
+0.69231365
+0.69230825
+0.69230280
+0.69229732
+0.69229179
+0.69228622
+0.69228060
+0.69227494
+0.69226923
+0.69226348
+0.69225768
+0.69225183
+0.69224594
+0.69224000
+0.69223401
+0.69222797
+0.69222188
+0.69221574
+0.69220954
+0.69220330
+0.69219700
+0.69219065
+0.69218425
+0.69217779
+0.69217127
+0.69216470
+0.69215807
+0.69215139
+0.69214464
+0.69213784
+0.69213098
+0.69212405
+0.69211707
+0.69211002
+0.69210291
+0.69209573
+0.69208849
+0.69208118
+0.69207381
+0.69206637
+0.69205886
+0.69205128
+0.69204363
+0.69203591
+0.69202812
+0.69202025
+0.69201231
+0.69200429
+0.69199620
+0.69198803
+0.69197979
+0.69197146
+0.69196305
+0.69195456
+0.69194599
+0.69193734
+0.69192860
+0.69191977
+0.69191086
+0.69190186
+0.69189277
+0.69188358
+0.69187431
+0.69186494
+0.69185548
+0.69184592
+0.69183626
+0.69182651
+0.69181665
+0.69180669
+0.69179663
+0.69178647
+0.69177620
+0.69176582
+0.69175533
+0.69174474
+0.69173403
+0.69172320
+0.69171226
+0.69170121
+0.69169004
+0.69167874
+0.69166732
+0.69165578
+0.69164412
+0.69163232
+0.69162040
+0.69160835
+0.69159616
+0.69158384
+0.69157138
+0.69155878
+0.69154604
+0.69153316
+0.69152013
+0.69150696
+0.69149364
+0.69148016
+0.69146653
+0.69145274
+0.69143880
+0.69142469
+0.69141043
+0.69139599
+0.69138139
+0.69136661
+0.69135167
+0.69133654
+0.69132124
+0.69130576
+0.69129009
+0.69127424
+0.69125819
+0.69124196
+0.69122552
+0.69120889
+0.69119206
+0.69117502
+0.69115778
+0.69114032
+0.69112265
+0.69110476
+0.69108665
+0.69106831
+0.69104975
+0.69103096
+0.69101193
+0.69099266
+0.69097315
+0.69095339
+0.69093338
+0.69091312
+0.69089260
+0.69087181
+0.69085076
+0.69082944
+0.69080784
+0.69078596
+0.69076380
+0.69074135
+0.69071861
+0.69069557
+0.69067223
+0.69064857
+0.69062461
+0.69060033
+0.69057572
+0.69055079
+0.69052552
+0.69049992
+0.69047397
+0.69044767
+0.69042101
+0.69039399
+0.69036660
+0.69033884
+0.69031070
+0.69028218
+0.69025326
+0.69022394
+0.69019422
+0.69016408
+0.69013353
+0.69010254
+0.69007113
+0.69003927
+0.69000697
+0.68997421
+0.68994099
+0.68990729
+0.68987312
+0.68983846
+0.68980331
+0.68976765
+0.68973148
+0.68969479
+0.68965757
+0.68961981
+0.68958150
+0.68954264
+0.68950321
+0.68946320
+0.68942261
+0.68938142
+0.68933963
+0.68929722
+0.68925418
+0.68921050
+0.68916618
+0.68912120
+0.68907554
+0.68902920
+0.68898217
+0.68893443
+0.68888598
+0.68883679
+0.68878686
+0.68873617
+0.68868472
+0.68863248
+0.68857944
+0.68852560
+0.68847093
+0.68841542
+0.68835907
+0.68830184
+0.68824373
+0.68818473
+0.68812481
+0.68806396
+0.68800217
+0.68793942
+0.68787569
+0.68781097
+0.68774524
+0.68767847
+0.68761066
+0.68754179
+0.68747183
+0.68740078
+0.68732860
+0.68725528
+0.68718080
+0.68710515
+0.68702829
+0.68695022
+0.68687090
+0.68679032
+0.68670846
+0.68662530
+0.68654081
+0.68645497
+0.68636775
+0.68627914
+0.68618912
+0.68609765
+0.68600471
+0.68591028
+0.68581433
+0.68571684
+0.68561779
+0.68551714
+0.68541487
+0.68531095
+0.68520536
+0.68509807
+0.68498905
+0.68487827
+0.68476571
+0.68465133
+0.68453511
+0.68441701
+0.68429701
+0.68417507
+0.68405117
+0.68392528
+0.68379735
+0.68366737
+0.68353529
+0.68340109
+0.68326473
+0.68312619
+0.68298542
+0.68284239
+0.68269707
+0.68254942
+0.68239941
+0.68224701
+0.68209217
+0.68193486
+0.68177506
+0.68161271
+0.68144779
+0.68128025
+0.68111007
+0.68093719
+0.68076159
+0.68058323
+0.68040207
+0.68021808
+0.68003120
+0.67984141
+0.67964867
+0.67945293
+0.67925417
+0.67905233
+0.67884739
+0.67863930
+0.67842803
+0.67821352
+0.67799576
+0.67777469
+0.67755028
+0.67732249
+0.67709127
+0.67685660
+0.67661844
+0.67637674
+0.67613146
+0.67588257
+0.67563004
+0.67537381
+0.67511387
+0.67485016
+0.67458265
+0.67431131
+0.67403610
+0.67375699
+0.67347393
+0.67318690
+0.67289586
+0.67260078
+0.67230162
+0.67199836
+0.67169095
+0.67137938
+0.67106360
+0.67074359
+0.67041932
+0.67009077
+0.66975789
+0.66942067
+0.66907909
+0.66873310
+0.66838270
+0.66802786
+0.66766855
+0.66730476
+0.66693645
+0.66656362
+0.66618625
+0.66580431
+0.66541780
+0.66502668
+0.66463096
+0.66423062
+0.66382564
+0.66341602
+0.66300174
+0.66258279
+0.66215918
+0.66173088
+0.66129790
+0.66086023
+0.66041788
+0.65997083
+0.65951908
+0.65906265
+0.65860152
+0.65813571
+0.65766522
+0.65719005
+0.65671021
+0.65622570
+0.65573655
+0.65524275
+0.65474432
+0.65424127
+0.65373361
+0.65322136
+0.65270454
+0.65218316
+0.65165724
+0.65112680
+0.65059186
+0.65005244
+0.64950855
+0.64896023
+0.64840750
+0.64785038
+0.64728890
+0.64672308
+0.64615295
+0.64557853
+0.64499986
+0.64441696
+0.64382986
+0.64323860
+0.64264320
+0.64204369
+0.64144010
+0.64083247
+0.64022083
+0.63960520
+0.63898562
+0.63836213
+0.63773475
+0.63710351
+0.63646846
+0.63582961
+0.63518702
+0.63454069
+0.63389067
+0.63323699
+0.63257969
+0.63191878
+0.63125430
+0.63058628
+0.62991475
+0.62923974
+0.62856127
+0.62787938
+0.62719408
+0.62650541
+0.62581339
+0.62511805
+0.62441939
+0.62371746
+0.62301226
+0.62230381
+0.62159214
+0.62087727
+0.62015919
+0.61943794
+0.61871352
+0.61798593
+0.61725521
+0.61652134
+0.61578433
+0.61504419
+0.61430093
+0.61355453
+0.61280500
+0.61205234
+0.61129654
+0.61053758
+0.60977547
+0.60901019
+0.60824173
+0.60747006
+0.60669517
+0.60591703
+0.60513563
+0.60435094
+0.60356292
+0.60277154
+0.60197678
+0.60117859
+0.60037693
+0.59957176
+0.59876303
+0.59795070
+0.59713472
+0.59631502
+0.59549156
+0.59466426
+0.59383308
+0.59299793
+0.59215876
+0.59131548
+0.59046803
+0.58961632
+0.58876026
+0.58789978
+0.58703479
+0.58616519
+0.58529088
+0.58441177
+0.58352776
+0.58263874
+0.58174460
+0.58084523
+0.57994052
+0.57903034
+0.57811459
+0.57719313
+0.57626583
+0.57533257
+0.57439322
+0.57344764
+0.57249569
+0.57153723
+0.57057213
+0.56960023
+0.56862139
+0.56763546
+0.56664229
+0.56564173
+0.56463363
+0.56361783
+0.56259418
+0.56156251
+0.56052268
+0.55947452
+0.55841789
+0.55735261
+0.55627854
+0.55519552
+0.55410339
+0.55300200
+0.55189120
+0.55077084
+0.54964078
+0.54850085
+0.54735093
+0.54619088
+0.54502056
+0.54383983
+0.54264857
+0.54144667
+0.54023399
+0.53901043
+0.53777587
+0.53653023
+0.53527340
+0.53400529
+0.53272582
+0.53143492
+0.53013251
+0.52881853
+0.52749293
+0.52615567
+0.52480670
+0.52344598
+0.52207351
+0.52068925
+0.51929321
+0.51788538
+0.51646577
+0.51503440
+0.51359128
+0.51213646
+0.51066997
+0.50919184
+0.50770215
+0.50620095
+0.50468830
+0.50316428
+0.50162898
+0.50008247
+0.49852485
+0.49695622
+0.49537669
+0.49378636
+0.49218535
+0.49057378
+0.48895177
+0.48731946
+0.48567697
+0.48402444
+0.48236202
+0.48068984
+0.47900807
+0.47731683
+0.47561630
+0.47390663
+0.47218797
+0.47046049
+0.46872436
+0.46697973
+0.46522679
+0.46346569
+0.46169662
+0.45991974
+0.45813525
+0.45634331
+0.45454410
+0.45273782
diff --git a/Project2-Character-Recognition/character_recognition/CMakeLists.txt b/Project2-Character-Recognition/character_recognition/CMakeLists.txt
index 7446175..9e834c1 100644
--- a/Project2-Character-Recognition/character_recognition/CMakeLists.txt
+++ b/Project2-Character-Recognition/character_recognition/CMakeLists.txt
@@ -7,5 +7,5 @@ set(SOURCE_FILES
cuda_add_library(character_recognition
${SOURCE_FILES}
- OPTIONS -arch=sm_20
+ OPTIONS -arch=sm_61
)
diff --git a/Project2-Character-Recognition/character_recognition/common.cu b/Project2-Character-Recognition/character_recognition/common.cu
index 2a754d4..b15a87a 100644
--- a/Project2-Character-Recognition/character_recognition/common.cu
+++ b/Project2-Character-Recognition/character_recognition/common.cu
@@ -5,11 +5,13 @@ void checkCUDAErrorFn(const char *msg, const char *file, int line) {
if (cudaSuccess == err) {
return;
}
-
- fprintf(stderr, "CUDA error");
- if (file) {
+ fprintf(stderr, "CUDA error");
+
+ if (file) {
fprintf(stderr, " (%s:%d)", file, line);
}
- fprintf(stderr, ": %s: %s\n", msg, cudaGetErrorString(err));
+
+ fprintf(stderr, ": %s: %s\n", msg, cudaGetErrorString(err));
exit(EXIT_FAILURE);
}
+
diff --git a/Project2-Character-Recognition/character_recognition/mlp.cu b/Project2-Character-Recognition/character_recognition/mlp.cu
index 5a3ed7f..486418c 100644
--- a/Project2-Character-Recognition/character_recognition/mlp.cu
+++ b/Project2-Character-Recognition/character_recognition/mlp.cu
@@ -3,25 +3,582 @@
#include "common.h"
#include "mlp.h"
+#include
+#include
+
+#define blockSize 128
+#define blockWidth 16
+
+
namespace CharacterRecognition {
- using Common::PerformanceTimer;
- PerformanceTimer& timer()
- {
- static PerformanceTimer timer;
- return timer;
- }
-
- // TODO: __global__
-
- /**
- * Example of use case (follow how you did it in stream compaction)
- */
- /*void scan(int n, int *odata, const int *idata) {
- timer().startGpuTimer();
- // TODO
- timer().endGpuTimer();
- }
- */
-
- // TODO: implement required elements for MLP sections 1 and 2 here
+ using Common::PerformanceTimer;
+ PerformanceTimer& timer()
+ {
+ static PerformanceTimer timer;
+ return timer;
+ }
+
+ //=====Initlialiations=======
+
+ //layers
+ double *dev_iLayer;
+ double *dev_hLayer;
+ double *dev_oLayer;
+
+ double *dev_losses;
+ double *dev_LossAvg;
+
+ // gtruth and preds
+ int *dev_gtruth;
+ int *dev_preds;
+ double * dev_preds_probab;
+
+ //weights
+ double *dev_w_kj;
+ double *dev_w_ji;
+
+ //Derivatives
+ double *dev_dL_dw_ji;
+ double *dev_dL_dw_kj;
+ double *dev_dL_dscores;
+ double *dev_dL_dscores_2;
+
+ double *dev_hLayer_T;
+ double *dev_iLayer_T;
+ double *dev_w_ji_T;
+
+
+ //=============================================
+ // Rnadom Number Generation using cuRand on GPU
+ //=============================================
+ curandState *devState;
+
+ __global__ void kernInitCurand(curandState *state, int N, unsigned long seed) {
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+ if (tid < N) {
+ curand_init(seed, tid, 0, &state[tid]);
+ }
+ }
+
+ __global__ void KernGenRand(curandState *state, int N, double *w) {
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+ if (tid < N) {
+ w[tid] = (2.0*curand_uniform(&state[tid]) - 1.0); // Between -1 and 1
+ }
+ }
+
+ //===================================================================
+ //=====KERNEL DEFNITIONS FOR Forward and Backward====================
+ //===================================================================
+
+
+ void printArray(int n, int *a, bool abridged = false) {
+ printf(" [ ");
+ for (int i = 0; i < n; i++) {
+ if (abridged && i + 2 == 15 && n > 16) {
+ i = n - 2;
+ printf("... ");
+ }
+ printf("%3d ", a[i]);
+ }
+ printf("]\n");
+ }
+ void printFloatArray(int n, double *a, bool abridged = false) {
+ printf(" [ ");
+ for (int i = 0; i < n; i++) {
+ if (abridged && i + 2 == 15 && n > 16) {
+ i = n - 2;
+ printf("... ");
+ }
+ printf("%0.2f ", a[i]);
+ }
+ printf("]\n");
+ }
+
+
+ // Kernel for Gradient update on Weights
+ __global__ void kernUpdateWeights(int N, double *dev_dw, double *dev_w, double LR) {
+
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+
+ if (tid < N) {
+ dev_w[tid] = dev_w[tid] - (LR * dev_dw[tid]);
+ }
+ }
+
+ // Kernel for derivative of sigmoid
+ __global__ void kernGradSigmoid(int N, int H, double *dev_hLayer) {
+
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+
+ if (tid < N*H) {
+ dev_hLayer[tid] = dev_hLayer[tid] * (1 - dev_hLayer[tid]);
+ }
+ }
+
+ // Matrix Transpose
+ __global__ void kernMatrixTranspose(int rows, int cols, double *matrix, double *matrix_T) {
+
+ int idy = blockIdx.y * blockDim.y + threadIdx.y;
+ int idx = blockIdx.x * blockDim.x + threadIdx.x;
+
+ if (idx < cols && idy < rows) {
+ int pos = idy * cols + idx;
+ int tpos = idx * rows + idy;
+
+ matrix_T[tpos] = matrix[pos];
+ }
+ }
+
+ // Divide by N
+ __global__ void kernDivNdscores(int N, int C, double *dev_dL_dscores) {
+
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+ if (tid < N*C) {
+ dev_dL_dscores[tid] /= N;
+ }
+ }
+
+ // Compute dscores gradient
+ __global__ void kernSetdscores(int N, int C, double *dev_dL_dscores, int *dev_gtruth) {
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+
+ if (tid < N) {
+ dev_dL_dscores[tid*C + dev_gtruth[tid]] -= 1;
+ }
+ }
+
+ // compute predictions
+ __global__ void kernPredsN(int N, int C, double* dev_oLayer, int* dev_gtruth, int* dev_preds, double * dev_preds_probab) {
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+
+ if (tid < N) {
+ dev_preds[tid] = dev_oLayer[tid*C + dev_gtruth[tid]] > 0.5 ? dev_gtruth[tid] : (dev_gtruth[tid] == 0 ? 1 : 0);
+ dev_preds_probab[tid] = dev_oLayer[tid*C + dev_gtruth[tid]];
+ }
+ }
+
+ // compute loss per example
+ __global__ void kernLossPerN(int N, int C, double* dev_oLayer, int* dev_gtruth, double* dev_losses) {
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+ if (tid < N) {
+ dev_losses[tid] = -log(dev_oLayer[tid*C + dev_gtruth[tid]]);
+ }
+ }
+
+ // kernel to compute exp softmax
+ __global__ void kernSoftmax(int N, int C, double* scores) {
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+
+ if (tid < N) {
+ double sums = 0.0;
+
+ for (int i = 0; i < C; i++) {
+ sums += exp(scores[tid*C + i]);
+ }
+
+ for (int i = 0; i < C; i++) {
+ scores[tid*C + i] = exp(scores[tid*C + i]) / sums;
+ }
+ }
+ }
+
+ // kern for sigmoid // f(x) = 1/(1 + e^-x).
+ __global__ void kernSigmoid(int N, double *idata) {
+
+ int tid = blockIdx.x * blockDim.x + threadIdx.x;
+
+ if (tid < N) {
+ idata[tid] = 1.0 / (1.0 + exp(-1*idata[tid]));
+ }
+ }
+
+ // kern for element wise product
+ __global__ void kernElementProduct(int N, double *matrixA, double* matrixB) {
+
+ int tid = blockIdx.x * blockDim.x + threadIdx.x;
+
+ if (tid < N) {
+ matrixA[tid] = matrixA[tid] * matrixB[tid];
+ }
+ }
+
+
+ // kernel to to matmul // A mxn // B nxk // C mxk
+ __global__ void kernMatrixMultiply(const double *dev_A, const double *dev_B, double *dev_C, int m, int n, int k) {
+
+ int row = blockIdx.y * blockDim.y + threadIdx.y;
+ int col = blockIdx.x * blockDim.x + threadIdx.x;
+
+ double sum = 0;
+ if (col < k && row < m)
+ {
+ for (int i = 0; i < n; i++)
+ sum += dev_A[row * n + i] * dev_B[i * k + col];
+ dev_C[row * k + col] = sum;
+ }
+ }
+
+ // Dumb reduction
+ __global__ void kernReduction(int N, double *dev_losses, double *dev_LossAvg) {
+
+ int tid = blockIdx.x * blockDim.x + threadIdx.x;
+ double sum = 0.0;
+ if (tid == 0) {
+ for (int i = 0; i < N; i++) {
+ sum += dev_losses[i];
+ }
+ dev_LossAvg[0] = sum / N;
+ }
+
+ }
+
+ // Ele wise addition A = A+B
+ __global__ void kernAddition(int N, double *dev_A, double *dev_B) {
+
+ int tid = blockIdx.x * blockDim.x + threadIdx.x;
+
+ if (tid < N) {
+ dev_A[tid] += dev_B[tid];
+ }
+
+ }
+
+ void trainMLP(int N, int D, int H, int C, double *idata, int *preds, int *gtruth, int epochs,
+ double *lossAvgPerEpoch, const double LR, double *w1, double *w2, unsigned long seed) {
+
+ timer().startGpuTimer();
+
+ // N = number of examples
+ // D = dim of each example
+ // H = Hidden state nodes
+ // C = number of classes
+
+ // NETWORK DEFITION_____________
+ // Compute f1 = W1*X1
+ // Compute X2 = Sig(f1)
+ // Compute Scroes S = W2*X2
+ // Compute Probab P = Softmax(S)
+ // Compute Loss L = CEntropy(P)
+
+ //================================================================
+ //======================INITIALIZATIONS===========================
+ //================================================================
+
+ // Allocate input layer
+ cudaMalloc((void**)&dev_iLayer, N*D * sizeof(double));
+ checkCUDAErrorFn("cudaMalloc dev_iLayer failed!");
+
+ cudaMemcpy(dev_iLayer, idata, N*D * sizeof(double), cudaMemcpyHostToDevice);
+ checkCUDAErrorFn("cudaMemcpyToSymbol from idata to dev_iLayer failed!");
+
+
+ // Allocate hidden layer
+ cudaMalloc((void**)&dev_hLayer, N*H* sizeof(double));
+ checkCUDAErrorFn("cudaMalloc dev_hLayer failed!");
+
+
+ // Allocate output layer
+ cudaMalloc((void**)&dev_oLayer, N*C* sizeof(double));
+ checkCUDAErrorFn("cudaMalloc dev_oLayer failed!");
+
+
+ // Allocate losses holder
+ cudaMalloc((void**)&dev_losses, N * sizeof(double));
+ checkCUDAErrorFn("cudaMalloc dev_losses failed!");
+
+ cudaMalloc((void**)&dev_LossAvg, 1*sizeof(double));
+ checkCUDAErrorFn("cudaMalloc dev_LossAvg failed!");
+
+
+ // Allocate gtruth and preds
+ cudaMalloc((void**)&dev_gtruth, N * sizeof(int));
+ checkCUDAErrorFn("cudaMalloc dev_gtruth failed!");
+
+ cudaMemcpy(dev_gtruth, gtruth, N * sizeof(int), cudaMemcpyHostToDevice);
+ checkCUDAErrorFn("cudaMemcpyToSymbol from gtruth to dev_gtruth failed!");
+
+ cudaMalloc((void**)&dev_preds, N * sizeof(int));
+ checkCUDAErrorFn("cudaMalloc dev_preds failed!");
+
+ cudaMalloc((void**)&dev_preds_probab, N * sizeof(double));
+ checkCUDAErrorFn("cudaMalloc dev_preds_probab failed!");
+
+ // Allocate Weights
+ cudaMalloc((void**)&dev_w_kj, D*H * sizeof(double)); //w1
+ checkCUDAErrorFn("cudaMalloc dev_w_kj failed!");
+
+ cudaMalloc((void**)&dev_w_ji, C*H * sizeof(double)); //w2
+ checkCUDAErrorFn("cudaMalloc dev_w_ji failed!");
+
+
+ // Allocate Derivatives
+ cudaMalloc((void**)&dev_dL_dw_kj, D*H * sizeof(double)); //dw1
+ checkCUDAErrorFn("cudaMalloc dev_w_kj failed!");
+
+ cudaMalloc((void**)&dev_dL_dw_ji, C*H * sizeof(double)); //dw2
+ checkCUDAErrorFn("cudaMalloc dev_w_ji failed!");
+
+ cudaMalloc((void**)&dev_dL_dscores, N*C * sizeof(double));
+ checkCUDAErrorFn("cudaMalloc dev_dL_dscores failed!");
+
+ cudaMalloc((void**)&dev_dL_dscores_2, N*C * sizeof(double));
+ checkCUDAErrorFn("cudaMalloc dev_dL_dscores_2 failed!");
+
+
+ // Allocate transposes
+ cudaMalloc((void**)&dev_hLayer_T, N*H * sizeof(double));
+ checkCUDAErrorFn("cudaMalloc dev_hLayer_T failed!");
+
+ cudaMalloc((void**)&dev_iLayer_T, N*D * sizeof(double));
+ checkCUDAErrorFn("cudaMalloc dev_hLayer_T failed!");
+
+ cudaMalloc((void**)&dev_w_ji_T, C*H * sizeof(double));
+ checkCUDAErrorFn("cudaMalloc dev_w_ji_T failed!");
+
+ //==============================
+ // Initialise Weights
+ //==============================
+ cudaMalloc((void**)&devState, H*D * sizeof(curandState));
+
+ kernInitCurand << <((D*H + blockSize - 1) / blockSize), blockSize >> > (devState, D*H, seed);
+ checkCUDAErrorFn("KernInitCurand failed!");
+ KernGenRand << <((D*H + blockSize - 1) / blockSize), blockSize >> > (devState, D*H, dev_w_kj);//w1
+ checkCUDAErrorFn("KernGenRand dev_w_kj failed!");
+
+ kernInitCurand << <((H*C + blockSize - 1) / blockSize), blockSize >> > (devState, H*C, seed);
+ checkCUDAErrorFn("KernInitCurand failed!");
+ KernGenRand << <((H*C + blockSize - 1) / blockSize), blockSize >> > (devState, H*C, dev_w_ji);//w2
+ checkCUDAErrorFn("KernGenRand dev_w_kj failed!");
+
+
+ //================================================================
+ //======================TRAINING LOOP=============================
+ //================================================================
+ double *tmp = new double[N*D];
+ double *tmp2 = new double[N*D];
+ double *lossesN = new double[N];
+ printf("--------------------------------------------\n");
+ printf("One Hidden Layer MLP | Configuration \n");
+ printf("--------------------------------------------\n");
+ printf("Number of Examples | N = %d \n",N);
+ printf("Dimensionality of each Example| D = %d \n",D);
+ printf("Number of Hidden Layer Nodes | H = %d \n",H);
+ printf("Total Number of Classes | C = %d \n",C);
+ printf("Activation = Sigmoid \n");
+ printf("Loss Function = Cross Entropy \n");
+ printf("--------------------------------------------\n");
+
+ //printf("\nInput DATA ");
+ //printf("\nInput DATA ");
+ //printFloatArray(N*D, idata, true);
+ dim3 dimBlock(blockWidth, blockWidth);
+ dim3 dimGrid;
+
+ for (int i = 0; i < epochs; i++) {
+
+ //================================================================
+ //========================= FORWARD ==============================
+
+ // STEP 1
+ // f1 = W1*X1 (Matrix Mul)
+ //=================================
+ // dev_hLayer = dev_iLayer*dev_w_kj
+ // NxH = NxD DxH
+ dimGrid.x = (H + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (N + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixMultiply << > > (dev_iLayer, dev_w_kj, dev_hLayer, N, D, H);
+
+ // STEP 2
+ // X2 = Sigmoid(f1)
+ // dev_hLayer = sigmoid(dev_hLayer)
+ // NxH = NxH
+ kernSigmoid << <((N*H + blockSize - 1) / blockSize), blockSize >> > (N*H, dev_hLayer);
+
+
+ // STEP 3
+ // Scores S = W2*X2 (Matrix Mul)
+ // dev_oLayer = dev_hLayer*dev_w_ji
+ // NxC = NxH HxC
+ dimGrid.x = (C + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (N + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixMultiply << > > (dev_hLayer, dev_w_ji, dev_oLayer, N, H, C);
+ checkCUDAErrorFn("kernMatrixMultiply failed!");
+
+
+ // STEP 4
+ // P = Softmax(S)
+ // dev_smaxDen = Sum_Over_classses(dev_olayer)
+ // dev_olayer = dev_olayer/Sum_Over_classses
+ // NxC = NxC 1
+ kernSoftmax << <((N + blockSize - 1) / blockSize), blockSize >> > (N, C, dev_oLayer);
+ checkCUDAErrorFn("kernSoftmax failed!");
+
+ // STEP 5
+ // Compute Losses | Cross Entropy Loss
+ kernLossPerN << <((N + blockSize - 1) / blockSize), blockSize >> > (N, C, dev_oLayer, dev_gtruth, dev_losses);
+ checkCUDAErrorFn("kernLossPerN failed!");
+
+ // Cpoy loss to CPU
+ //cudaMemcpy(lossesN, dev_losses, N * sizeof(double), cudaMemcpyDeviceToHost);
+ //checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_losses to lossesN failed!");
+ //printf("Post dev_losses [Loss = CEntropy(P)]\n");
+ //printFloatArray(N, lossesN, true);
+
+
+ // Compute Predictions
+ kernPredsN << <((N + blockSize - 1) / blockSize), blockSize >> > (N, C, dev_oLayer, dev_gtruth, dev_preds, dev_preds_probab);
+ cudaMemcpy(preds, dev_preds, N * sizeof(int), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyDeviceToHost from dev_preds to preds failed!");
+ cudaMemcpy(tmp2, dev_preds_probab, N * sizeof(double), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyDeviceToHost from dev_preds_probab to tmp failed!");
+
+
+ // STEP 5.2
+ // Compute Avg of Losses
+ kernReduction << <((N + blockSize - 1) / blockSize), blockSize >> > (N, dev_losses, dev_LossAvg);
+ // Copy back to cpu
+ cudaMemcpy(lossAvgPerEpoch + i, dev_LossAvg, sizeof(double), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_LossAvg to tmp failed!");
+
+ if (i % 1000 == 0) {
+ printf("Epoch : %3d | LossAvg %3f \n", i, lossAvgPerEpoch[i]);
+ printf("GroundTruth :");
+ printArray(N, gtruth, true);
+ printf("Predictions :");
+ printArray(N, preds, true);
+ printf("Confidence :");
+ printFloatArray(N, tmp2, true);
+ printf("\n");
+ }
+
+ //=================================================================
+ //========================= BACKPROP ==============================
+
+ //===============================
+ // STEP 1 : Gradient wrt w_kj W2
+ //===============================
+ // dW_ji = Probs_k - [1](gth == k) dev_dL_dscores;
+
+ cudaMemcpy(dev_dL_dscores, dev_oLayer, N*C * sizeof(double), cudaMemcpyDeviceToDevice);
+ checkCUDAErrorFn("cudaMemcpyFromSymbol from probabs to dev_dL_dscores failed!");
+
+ kernSetdscores << <((N + blockSize - 1) / blockSize), blockSize >> > (N, C, dev_dL_dscores, dev_gtruth);
+ checkCUDAErrorFn("kernSetdscores failed!");
+
+ kernDivNdscores << <((N*C + blockSize - 1) / blockSize), blockSize >> > (N, C, dev_dL_dscores);
+ checkCUDAErrorFn("kernDivNdscores failed!");
+
+ dimGrid.x = (H + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (N + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixTranspose << > > (N, H, dev_hLayer, dev_hLayer_T);
+
+ dimGrid.x = (C + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (H + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixMultiply << > > (dev_hLayer_T, dev_dL_dscores, dev_dL_dw_ji, H, N, C);
+ checkCUDAErrorFn("kernMatrixMultiply for dev_dL_dw_ji failed!");
+
+ //===============================
+ // STEP 2 : Gradient wrt w_kj W1
+ //===============================
+
+ // Transpose Wji (W2)
+ dimGrid.x = (C + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (H + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixTranspose << > > (H, C, dev_w_ji, dev_w_ji_T);
+
+ // Transpose Input Data
+ dimGrid.x = (D + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (N + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixTranspose << > > (N, D, dev_iLayer, dev_iLayer_T);
+
+ // Mul dev_dL_dscores * dev_w_kj_T == dev_dL_dscores_2
+ // NxC CxH NxH
+ dimGrid.x = (H + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (N + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixMultiply << > > (dev_dL_dscores, dev_w_ji_T, dev_dL_dscores_2, N, C, H);
+ checkCUDAErrorFn("kernMatrixMultiply for dev_dL_dscores_2 failed!");
+
+ // compute sig gradient on dev_hlayer N*H [IN PLACE]
+ kernGradSigmoid << <((N*H + blockSize - 1) / blockSize), blockSize >> > (N, H, dev_hLayer);
+ checkCUDAErrorFn("kernGradSigmoid failed!");
+
+ //Element wise mul dev_dL_dscores_2 [INPLACE] = dev_dL_dscores_2 . dev_hlayer[sig gradient]
+ kernElementProduct << <((N*H + blockSize - 1) / blockSize), blockSize >> > (N*H, dev_dL_dscores_2, dev_hLayer);
+ checkCUDAErrorFn("kernElementProduct failed!");
+
+ // matrix Mul final with Xi_T
+ dimGrid.x = (H + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (D + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixMultiply << > > (dev_iLayer_T, dev_dL_dscores_2, dev_dL_dw_kj, D, N, H);
+ checkCUDAErrorFn("kernMatrixMultiply for dev_dL_dw_kj failed!");
+
+
+ //=================================================================
+ // STEP 3 : Update Weights ========================================
+ //=================================================================
+
+ // Update weights kj W1
+ kernUpdateWeights << <((D*H + blockSize - 1) / blockSize), blockSize >> > (D*H, dev_dL_dw_kj, dev_w_kj, LR);
+ checkCUDAErrorFn("kernUpdateWeights dev_w_kj failed!");
+
+ // InitUpdate weights ji W2
+ kernUpdateWeights << <((H*C + blockSize - 1) / blockSize), blockSize >> > (H*C, dev_dL_dw_ji, dev_w_ji, LR);
+ checkCUDAErrorFn("kernUpdateWeights dev_w_ji failed!");
+
+ //printf("\n-----------------------------------------------------\n\n");
+ }
+
+
+ printf("Finished training.\n");
+ float count = 0.0;
+ for (int n = 0; n < N; n++) {
+ if (preds[n] == gtruth[n]) {
+ count += 1;
+ }
+ }
+ float acc = count / N;
+ printf("Accuracy: %0.2f Percent \n", acc*100.0);
+
+ // SAVE WEIGHTS
+ cudaMemcpy(w1, dev_w_kj, H*D*sizeof(double), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_w_kj to w1 failed!");
+
+ cudaMemcpy(w2, dev_w_ji, H*C*sizeof(double), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_w_ji to w2 failed!");
+
+ //printf("losses:\n");
+ //printFloatArray(epochs, lossAvgPerEpoch, true);
+
+ //====================
+ // CleanUp
+ //====================
+ cudaFree(dev_iLayer);
+ cudaFree(dev_hLayer);
+ cudaFree(dev_oLayer);
+
+ cudaFree(dev_losses);
+
+ cudaFree(dev_gtruth);
+ cudaFree(dev_preds);
+ cudaFree(dev_preds_probab);
+
+ cudaFree(dev_w_kj);
+ cudaFree(dev_w_ji);
+
+ cudaFree(dev_dL_dw_ji);
+ cudaFree(dev_dL_dw_kj);
+
+ cudaFree(dev_dL_dscores);
+ cudaFree(dev_dL_dscores_2);
+
+ cudaFree(dev_hLayer_T);
+ cudaFree(dev_iLayer_T);
+
+ delete(tmp);
+ delete(tmp2);
+ delete(lossesN);
+
+ timer().endGpuTimer();
+ }
}
diff --git a/Project2-Character-Recognition/character_recognition/mlp.cu_back b/Project2-Character-Recognition/character_recognition/mlp.cu_back
new file mode 100644
index 0000000..210e535
--- /dev/null
+++ b/Project2-Character-Recognition/character_recognition/mlp.cu_back
@@ -0,0 +1,679 @@
+#include
+#include
+#include "common.h"
+#include "mlp.h"
+
+#include
+#include
+
+#define blockSize 128
+#define blockWidth 16
+
+
+namespace CharacterRecognition {
+ using Common::PerformanceTimer;
+ PerformanceTimer& timer()
+ {
+ static PerformanceTimer timer;
+ return timer;
+ }
+
+ // Initlialiations
+
+ //layers
+ float *dev_iLayer;
+ float *dev_hLayer;
+ float *dev_oLayer;
+
+ //float *dev_b1;
+ //float *dev_b2;
+ //float *dev_db1;
+ //float *dev_db2;
+
+ float *dev_losses;
+ float *dev_LossAvg;
+
+ // gtruth and preds
+ int *dev_gtruth;
+ int *dev_preds;
+ float * dev_preds_probab;
+
+ //weights
+ float *dev_w1;
+ float *dev_w2;
+
+ //Derivatives
+ float *dev_dw2;
+ float *dev_dw1;
+ float *dev_dscores;
+ float *dev_dscores_2;
+
+ float *dev_hLayer_T;
+ float *dev_iLayer_T;
+ float *dev_w2_T;
+
+
+ //=============================================
+ // Rnadom Number Generation using cuRand on GPU
+ //=============================================
+ curandState *devState;
+
+ __global__ void kernInitCurand(curandState *state, int N, unsigned long seed) {
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+ if (tid < N) {
+ curand_init(seed, tid, 0, &state[tid]);
+ }
+ }
+
+ __global__ void KernGenRand(curandState *state, int N, float *w) {
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+ if (tid < N) {
+ w[tid] = ((2.0*curand_uniform(&state[tid])) - 1.0); // Between -1 and 1
+ }
+ }
+
+ //===================================================================
+ //=====KERNEL DEFNITIONS FOR Forward and Backward====================
+ //===================================================================
+
+
+ void printArray(int n, int *a, bool abridged = false) {
+ printf(" [ ");
+ for (int i = 0; i < n; i++) {
+ if (abridged && i + 2 == 15 && n > 16) {
+ i = n - 2;
+ printf("... ");
+ }
+ printf("%3d ", a[i]);
+ }
+ printf("]\n\n");
+ }
+ void printFloatArray(int n, float *a, bool abridged = false) {
+ printf(" [ ");
+ for (int i = 0; i < n; i++) {
+ if (abridged && i + 2 == 15 && n > 16) {
+ i = n - 2;
+ printf("... ");
+ }
+ printf("%3f ", a[i]);
+ }
+ printf("]\n\n");
+ }
+
+
+
+ // Kernel for Gradient update on Weights
+ __global__ void kernUpdateWeights(int N, float *dev_dw, float *dev_w, float LR) {
+
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+
+ if (tid < N) {
+ dev_w[tid] += -LR * dev_dw[tid];
+ }
+ }
+
+ // Kernel for derivative of sigmoid
+ __global__ void kernGradSigmoid(int N, int H, float *dev_hLayer) {
+
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+
+ if (tid < N*H) {
+ dev_hLayer[tid] = dev_hLayer[tid] * (1 - dev_hLayer[tid]);
+ }
+ }
+
+ // Matrix Transpose
+ __global__ void kernMatrixTranspose(int N, int C, float *matrix, float *matrix_T) {
+
+ int row = blockIdx.y * blockDim.y + threadIdx.y;
+ int col = blockIdx.x * blockDim.x + threadIdx.x;
+
+ if (col < C && row < N) {
+ matrix_T[C*row + col] = matrix[N*col + row];
+ }
+ }
+
+ // Divide by N
+ __global__ void kernDivNdscores(int N, int C, float *dev_dscores) {
+
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+ if (tid < N*C) {
+ dev_dscores[tid] /= N;
+ }
+ }
+
+ // Compute dscores gradient
+ __global__ void kernSetdscores(int N, int C, float *dev_dscores, int *dev_gtruth) {
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+
+ if (tid < N) {
+ dev_dscores[tid*C + dev_gtruth[tid]] -= 1;
+ }
+ }
+
+ // compute predictions
+ __global__ void kernPredsN(int N, int C, float* dev_oLayer, int* dev_gtruth, int* dev_preds, float * dev_preds_probab) {
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+
+ if (tid < N) {
+ dev_preds[tid] = dev_oLayer[tid*C + dev_gtruth[tid]] > 0.5 ? dev_gtruth[tid] : (dev_gtruth[tid]==0 ? 1:0) ;
+ dev_preds_probab[tid] = dev_oLayer[tid*C + dev_gtruth[tid]];
+ }
+ }
+
+ // compute loss per example
+ __global__ void kernLossPerN(int N, int C, float* dev_oLayer, int* dev_gtruth, float* dev_losses) {
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+
+ if (tid < N) {
+ dev_losses[tid] = (float)(-log(dev_oLayer[tid*C + dev_gtruth[tid]]));
+ }
+ }
+
+ // kernel to compute exp softmax
+ __global__ void kernSoftmax(int N, int C, float* scores) {
+ int tid = threadIdx.x + blockIdx.x * blockDim.x;
+
+ if (tid < N) {
+ float sums = 0.0;
+
+ for (int i = 0; i < C; i++) {
+ sums += exp(scores[tid*C + i]);
+ }
+
+ for (int i = 0; i < C; i++) {
+ scores[tid*C + i] = exp(scores[tid*C + i]) / sums;
+ }
+ }
+ }
+
+ // kern for sigmoid // f(x) = 1/(1 + e^-x).
+ __global__ void kernSigmoid(int N, float *idata) {
+
+ int tid = blockIdx.x * blockDim.x + threadIdx.x;
+
+ if (tid < N) {
+ idata[tid] = 1.0 / (1.0 + exp(-idata[tid]));
+ }
+ }
+
+ // kern for element wise product
+ __global__ void kernElementProduct(int N, float *matrixA, float* matrixB, float* matrixC) {
+
+ int tid = blockIdx.x * blockDim.x + threadIdx.x;
+
+ if (tid < N) {
+ matrixC[tid] = matrixA[tid] * matrixB[tid];
+ }
+ }
+
+
+ // kernel to to matmul // A mxn // B nxk // C mxk
+ __global__ void kernMatrixMultiply(const float *dev_A, const float *dev_B, float *dev_C, int m, int n, int k) {
+
+ int row = blockIdx.y * blockDim.y + threadIdx.y;
+ int col = blockIdx.x * blockDim.x + threadIdx.x;
+
+ float sum = 0;
+ if (col < k && row < m)
+ {
+ for (int i = 0; i < n; i++) {
+ sum += dev_A[row * n + i] * dev_B[i * k + col];
+ }
+ dev_C[row * k + col] = sum;
+ }
+ }
+
+ // Dumb reduction
+ __global__ void kernReduction(int N, float *dev_losses, float *dev_LossAvg) {
+
+ int tid = blockIdx.x * blockDim.x + threadIdx.x;
+ float sum = 0.0;
+ if (tid == 0) {
+ for (int i = 0; i < N; i++) {
+ sum += dev_losses[i];
+ }
+ dev_LossAvg[0] = sum/N;
+ }
+
+ }
+
+ // Ele wise addition A = A+B
+ __global__ void kernAddition(int N, float *dev_A, float *dev_B) {
+
+ int tid = blockIdx.x * blockDim.x + threadIdx.x;
+
+ if (tid < N) {
+ dev_A[tid] += dev_B[tid];
+ }
+
+ }
+
+ void trainMLP(int N, int D, int H, int C, float *idata, int *preds, int *gtruth, int epochs, float *lossAvgPerEpoch, const float LR, unsigned long seed) {
+
+ timer().startGpuTimer();
+
+ // N = number of examples
+ // D = dim of each example
+ // H = Hidden layer nodes
+ // C = number of classes
+
+ // NETWORK DEFITION_____________
+ // Compute f1 = W1*X1 + b1
+ // Compute X2 = Sig(f1)
+ // Compute Scroes S = W2*X2 + b2
+ // Compute Probab P = Softmax(S)
+ // Compute Loss L = CEntropy(P)
+
+ //================================================================
+ //======================INITIALIZATIONS===========================
+ //================================================================
+
+ printf("\nN = %d \n", N);
+ printf("D = %d \n", D);
+ printf("H = %d \n", H);
+ printf("C = %d \n", C);
+
+ // Allocate input layer
+ cudaMalloc((void**)&dev_iLayer, N*D * sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_iLayer failed!");
+ cudaMemcpy(dev_iLayer, idata, N*D * sizeof(float), cudaMemcpyHostToDevice);
+ checkCUDAErrorFn("cudaMemcpyToSymbol from idata to dev_iLayer failed!");
+
+ // Allocate hidden layer
+ cudaMalloc((void**)&dev_hLayer, N*H* sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_hLayer failed!");
+
+ // Allocate output layer
+ cudaMalloc((void**)&dev_oLayer, N*C* sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_oLayer failed!");
+
+
+ // Allocate losses holder
+ cudaMalloc((void**)&dev_losses, N * sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_losses failed!");
+ cudaMalloc((void**)&dev_LossAvg, 1* sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_LossAvg failed!");
+
+
+ // Allocate gtruth and preds
+ cudaMalloc((void**)&dev_gtruth, N*sizeof(int));
+ checkCUDAErrorFn("cudaMalloc dev_gtruth failed!");
+ cudaMemcpy(dev_gtruth, gtruth, N * sizeof(int), cudaMemcpyHostToDevice);
+ checkCUDAErrorFn("cudaMemcpyToSymbol from gtruth to dev_gtruth failed!");
+
+ cudaMalloc((void**)&dev_preds, N * sizeof(int));
+ checkCUDAErrorFn("cudaMalloc dev_preds failed!");
+
+ cudaMalloc((void**)&dev_preds_probab, N * sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_preds_probab failed!");
+
+ // Allocate Weights
+ cudaMalloc((void**)&dev_w1, D*H* sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_w1 failed!");
+
+ cudaMalloc((void**)&dev_w2, C*H* sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_w2 failed!");
+
+
+ // Allocate Derivatives
+ cudaMalloc((void**)&dev_dw1, D*H* sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_w1 failed!");
+
+ cudaMalloc((void**)&dev_dw2, H*C* sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_w2 failed!");
+
+ cudaMalloc((void**)&dev_dscores, N*C* sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_dscores failed!");
+
+ cudaMalloc((void**)&dev_dscores_2, N*C* sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_dscores_2 failed!");
+
+
+ // Allocate transposes
+ cudaMalloc((void**)&dev_hLayer_T, N*H * sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_hLayer_T failed!");
+
+ cudaMalloc((void**)&dev_iLayer_T, N*D * sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_hLayer_T failed!");
+
+ cudaMalloc((void**)&dev_w2_T, C*H*sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_w2_T failed!");
+
+ /*
+ //Allocate biases
+ cudaMalloc((void**)&dev_b1, N*H* sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_hLayer_T failed!");
+
+ cudaMalloc((void**)&dev_b2, N*C* sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_hLayer_T failed!");
+
+ cudaMalloc((void**)&dev_db1, N*H* sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_hLayer_T failed!");
+
+ cudaMalloc((void**)&dev_db2, N*C* sizeof(float));
+ checkCUDAErrorFn("cudaMalloc dev_hLayer_T failed!");*/
+
+ //==============================
+ // Initialise Weights and Biases
+ //==============================
+ cudaMalloc((void**)&devState, H*D* sizeof(curandState));
+
+ kernInitCurand <<<((D*H + blockSize - 1) / blockSize), blockSize >>> (devState, D*H, seed); //XOR = 99
+ checkCUDAErrorFn("KernInitCurand failed!");
+ KernGenRand <<<((D*H + blockSize - 1) / blockSize), blockSize >>> (devState, D*H, dev_w1);
+ checkCUDAErrorFn("KernGenRand dev_w1 failed!");
+
+ kernInitCurand <<<((H*C + blockSize - 1) / blockSize), blockSize >> > (devState, H*C, seed+1);//XOR = 999
+ checkCUDAErrorFn("KernInitCurand failed!");
+ KernGenRand <<<((H*C + blockSize - 1) / blockSize), blockSize >> > (devState, H*C, dev_w2);
+ checkCUDAErrorFn("KernGenRand dev_w1 failed!");
+
+ //kernInitCurand << <((N*C + blockSize - 1) / blockSize), blockSize >> > (devState, N*C, seed+2);//XOR = 9
+ //checkCUDAErrorFn("KernInitCurand failed!");
+ //KernGenRand << <((N*C + blockSize - 1) / blockSize), blockSize >> > (devState, N*C, dev_b2);
+ //checkCUDAErrorFn("KernGenRand dev_w1 failed!");
+
+ //kernInitCurand << <((N*H + blockSize - 1) / blockSize), blockSize >> > (devState, N*H, seed+3);//XOR = 9999
+ //checkCUDAErrorFn("KernInitCurand failed!");
+ //KernGenRand << <((N*H + blockSize - 1) / blockSize), blockSize >> > (devState, N*H, dev_b1);
+ //checkCUDAErrorFn("KernGenRand dev_w1 failed!");
+
+ /*
+ float *rand = new float[D*H];
+ cudaMemcpy(rand, dev_w1, D*H* sizeof(float), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_w1 to rand failed!");
+ printf("Post random inits dev_w1 - \n");
+ printFloatArray(D*H, rand, true);
+
+ float *rand2 = new float[H*C];
+ cudaMemcpy(rand2, dev_w2, H*C * sizeof(float), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_w2 to rand failed!");
+ printf("Post random inits dev_w2 - \n");
+ printFloatArray(H*C, rand2, true);*/
+
+
+ float *tmp = new float[N*D];
+ float *tmp2 = new float[N*D];
+ float *tmp3 = new float[N*D];
+ float *lossesN = new float[N];
+
+ printf("\nInput DATA\n");
+ printFloatArray(N*D, idata, true);
+ dim3 dimBlock(blockWidth, blockWidth);
+ dim3 dimGrid;
+
+ //================================================================
+ //======================TRAINING LOOP=============================
+ //================================================================
+
+ for (int ep = 0; ep < epochs; ep++) {
+
+ //================================================================
+ //========================= FORWARD ==============================
+
+ // STEP 1
+ // f1 = W1*X1 (Matrix Mul)
+ //=================================
+ // dev_hLayer = dev_iLayer * dev_w1
+ // NxH = NxD DxH
+
+
+ dimGrid.x = (H + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (N + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixMultiply << > > (dev_iLayer, dev_w1, dev_hLayer, N, D, H);
+ //kernAddition <<< ((N*H + blockSize - 1) / blockSize), blockSize >> > (N*H, dev_hLayer,dev_b1);
+ //checkCUDAErrorFn("kernAddition failed!");
+
+ // Copy back to cpu
+ cudaMemcpy(tmp, dev_hLayer, N*H*sizeof(float), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_hLayer to tmp failed!");
+ printf("Post matmul [f1 = dev_iLayer*dev_w1]\n");
+ printFloatArray(N*H, tmp, true);
+
+ // STEP 2
+ // X2 = Sigmoid(f1)
+ //================================
+ // dev_hLayer = sigmoid(dev_hLayer)
+ // NxH = NxH
+ kernSigmoid << <((N*H + blockSize - 1) / blockSize), blockSize >> > (N*H, dev_hLayer);
+
+
+ // Copy back to cpu
+ //cudaMemcpy(tmp, dev_hLayer, N*H*sizeof(float), cudaMemcpyDeviceToHost);
+ //checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_arrayA to odata failed!");
+ //printf("Post sigmoid [X2 = Sigmoid(f1) ]\n");
+ //printFloatArray(N*H, tmp, true);
+
+ // STEP 3
+ // Scores S = W2*X2 (Matrix Mul)
+ //================================
+ // dev_oLayer = dev_hLayer*dev_w2
+ // NxC = NxH HxC
+ dimGrid.x = (C + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (N + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixMultiply << > > (dev_hLayer, dev_w2, dev_oLayer, N, H, C);
+ checkCUDAErrorFn("kernMatrixMultiply failed!");
+ //kernAddition << < ((N*C + blockSize - 1) / blockSize), blockSize >> > (N*C, dev_oLayer, dev_b2);
+ //checkCUDAErrorFn("kernAddition failed!");
+
+ // Copy back to cpu
+ //cudaMemcpy(tmp3, dev_oLayer, N*C * sizeof(float), cudaMemcpyDeviceToHost);
+ //checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_arrayA to odata failed!");
+ //printf("Post SCORES =W2*x2\n");
+ //printFloatArray(N*C, tmp3, true);
+
+ // STEP 4
+ // P = Softmax(S)
+ //===============
+ // dev_smaxDen = Sum_Over_classses(dev_olayer)
+ // dev_olayer = dev_olayer/Sum_Over_classses
+ // NxC = NxC 1
+ kernSoftmax << <((N + blockSize - 1) / blockSize), blockSize >> > (N, C, dev_oLayer);
+ checkCUDAErrorFn("kernSoftmax failed!");
+
+ // Copy back to cpu
+ //cudaMemcpy(tmp, dev_oLayer, N*C * sizeof(float), cudaMemcpyDeviceToHost);
+ //checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_oLayer to tmp failed!");
+ //printf("Post Softmax [dev_olayer = exp(dev_olayer)/Sum_Over_classses]\n");
+ //printFloatArray(N*C, tmp, true);
+
+
+ // STEP 5
+ // Compute Losses | Cross Entropy Loss
+ //==================================
+ // Compute Loss L = CEntropy(P)
+ kernLossPerN <<<((N + blockSize - 1) / blockSize), blockSize >>>(N, C, dev_oLayer, dev_gtruth, dev_losses);
+ checkCUDAErrorFn("kernLossPerN failed!");
+
+ // Copy back to cpu
+ //cudaMemcpy(lossesN, dev_losses, N * sizeof(float), cudaMemcpyDeviceToHost);
+ //checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_losses to lossesN failed!");
+ //printf("Post dev_losses [Loss = CEntropy(P)]\n");
+ //printFloatArray(N, lossesN, true);
+
+
+ // Predictions
+ kernPredsN << <((N + blockSize - 1) / blockSize), blockSize >> > (N, C, dev_oLayer, dev_gtruth, dev_preds, dev_preds_probab);
+ cudaMemcpy(preds, dev_preds, N*sizeof(int), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyDeviceToHost from dev_preds to preds failed!");
+
+ cudaMemcpy(tmp2, dev_preds_probab, N*sizeof(float), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyDeviceToHost from dev_preds_probab to tmp2 failed!");
+
+ printf("Predictions\n");
+ printArray(N, preds, true);
+ printFloatArray(N, tmp2, true);
+
+
+ // STEP 5.2
+ // Compute Avg of Losses
+ //==================================
+ // Dumb Reduction
+
+ kernReduction << <((N + blockSize - 1) / blockSize), blockSize >> > (N, dev_losses, dev_LossAvg);
+ // Copy back to cpu
+ cudaMemcpy(lossAvgPerEpoch + ep, dev_LossAvg, sizeof(float), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_LossAvg to lossAvgPerEpoch failed!");
+
+ printf("Epoch: %d | LossAvg %3f \n", ep, lossAvgPerEpoch[ep]);
+
+
+ //=================================================================
+ //========================= BACKPROP ==============================
+
+ // STEP 1 : Gradient wrt w_ji
+ // dW_ji = Probs_k - [1](gth == k) dev_dscores;
+ cudaMemcpy(dev_dscores, dev_oLayer, N*C* sizeof(float), cudaMemcpyDeviceToDevice);
+ checkCUDAErrorFn("cudaMemcpyFromSymbol from probabs to dev_dscores failed!");
+
+ kernSetdscores << <((N + blockSize - 1) / blockSize), blockSize >> > (N, C, dev_dscores, dev_gtruth);
+ checkCUDAErrorFn("kernSetdscores failed!");
+
+ // Copy back to cpu
+ //cudaMemcpy(tmp, dev_dscores, N*C * sizeof(float), cudaMemcpyDeviceToHost);
+ //checkCUDAErrorFn("cudaMemcpyFromSymbol [kernSetdscores] from dev_dscores to tmp failed!");
+ //printf("Post setting loss at positions dev_dscores \n");
+ //printFloatArray(N*C, tmp, true);
+
+ kernDivNdscores << <((N*C + blockSize - 1) / blockSize), blockSize >> > (N, C, dev_dscores);
+ checkCUDAErrorFn("kernDivNdscores failed!");
+
+ //cudaMemcpy(tmp, dev_dscores, N*C * sizeof(float), cudaMemcpyDeviceToHost);
+ //checkCUDAErrorFn("cudaMemcpyFromSymbol [kernSetdscores] from dev_dscores to tmp failed!");
+ //printf("Post div by N -> setting loss at positions-> dev_dscores \n");
+ //printFloatArray(N*C, tmp, true);
+
+
+ dimGrid.x = (H + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (N + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixTranspose << > > (N, H, dev_hLayer, dev_hLayer_T);
+
+ dimGrid.x = (C + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (C + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixMultiply << > > (dev_hLayer_T, dev_dscores, dev_dw2, H, N, C);
+ checkCUDAErrorFn("kernMatrixMultiply for dev_dw2 failed!");
+
+
+ //===========================
+ // STEP 2 : Gradient wrt w_kj
+ //===========================
+
+ // Transpose Wji (W2)
+ dimGrid.x = (C + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (H + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixTranspose << > > (H, C, dev_w2, dev_w2_T);
+
+ // Transpose Input Data
+ dimGrid.x = (D + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (N + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixTranspose << > > (N, D, dev_iLayer, dev_iLayer_T);
+
+ // Mul dev_dscores * dev_w1_T == dev_dscores_2
+ // NxC CxH NxH
+ dimGrid.x = (H + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (N + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixMultiply << > > (dev_dscores, dev_w2_T, dev_dscores_2, N, C, H);
+ checkCUDAErrorFn("kernMatrixMultiply for dev_dscores_2 failed!");
+
+ // compute sig gradient on dev_hlayer N*H [IN PLACE]
+ kernGradSigmoid << <((N*H + blockSize - 1) / blockSize), blockSize >> > (N, H, dev_hLayer);
+ checkCUDAErrorFn("kernGradSigmoid failed!");
+
+ //Element wise mul dev_dscores_2 [INPLACE] = dev_dscores_2 . dev_hlayer[sig gradient]
+ kernElementProduct << <((N*H + blockSize - 1) / blockSize), blockSize >> > (N*H, dev_dscores_2, dev_hLayer, dev_dscores_2);
+ checkCUDAErrorFn("kernElementProduct failed!");
+
+ // matrix Mul final with Xi_T
+ dimGrid.x = (H + dimBlock.x - 1) / dimBlock.x;
+ dimGrid.y = (D + dimBlock.y - 1) / dimBlock.y;
+ kernMatrixMultiply << > > (dev_iLayer_T, dev_dscores_2, dev_dw1, D, N, H);
+ checkCUDAErrorFn("kernMatrixMultiply for dev_dw1 failed!");
+
+
+ //=================================================================
+ //========================= Update Weights=========================
+
+ // Update weights1
+ kernUpdateWeights << <((D*H + blockSize - 1) / blockSize), blockSize >> > (D*H, dev_dw1, dev_w1, LR);
+ checkCUDAErrorFn("kernUpdateWeights dev_w1 failed!");
+
+ // InitUpdate weights2
+ kernUpdateWeights << <((H*C + blockSize - 1) / blockSize), blockSize >> > (H*C, dev_dw2, dev_w2, LR);
+ checkCUDAErrorFn("kernUpdateWeights dev_w2 failed!");
+
+ // Update biases1
+ //kernUpdateWeights << <((N*H + blockSize - 1) / blockSize), blockSize >> > (N*H, dev_db1, dev_dscores_2, LR);
+ //checkCUDAErrorFn("kernUpdateWeights dev_db1 failed!");
+
+ // InitUpdate biases2
+ //kernUpdateWeights << <((N*C + blockSize - 1) / blockSize), blockSize >> > (N*C, dev_db2, dev_dscores, LR);
+ //checkCUDAErrorFn("kernUpdateWeights dev_db2 failed!");
+
+ // COntinue to next epoch
+ //cudaMemcpy(tmp2, dev_w1, D*H * sizeof(float), cudaMemcpyDeviceToHost);
+ //checkCUDAErrorFn("dev_w1 memcopy failed!");
+ //printf("w_kj \n");
+ //printFloatArray(D*H, tmp2, true);
+ //cudaMemcpy(tmp2, dev_dw1, D*H * sizeof(float), cudaMemcpyDeviceToHost);
+ //checkCUDAErrorFn("dev_dw1 memcopy failed!");
+ //printf("Dw_kj \n");
+ //printFloatArray(D*H, tmp2, true);
+
+ //cudaMemcpy(tmp2, dev_w2, H*C * sizeof(float), cudaMemcpyDeviceToHost);
+ //checkCUDAErrorFn("dev_w2 memcopy failed!");
+ //printf("w_ji \n");
+ //printFloatArray(H*C, tmp2, true);
+ //cudaMemcpy(tmp2, dev_dw2, H*C * sizeof(float), cudaMemcpyDeviceToHost);
+ //checkCUDAErrorFn("dev_dw2 memcopy failed!");
+ //printf("Dw_ji \n");
+ //printFloatArray(H*C, tmp2, true);
+
+
+ //printf("\n-----------------------------------------------------\n\n");
+ }
+
+
+ printf("Finished training.\n");
+ printf("losses:\n");
+ printFloatArray(epochs, lossAvgPerEpoch, true);
+
+ //====================
+ // CleanUp
+ //====================
+ cudaFree(dev_iLayer);
+ cudaFree(dev_hLayer);
+ cudaFree(dev_oLayer);
+
+ cudaFree(dev_losses);
+
+ cudaFree(dev_gtruth);
+ cudaFree(dev_preds);
+ cudaFree(dev_preds_probab);
+
+ cudaFree(dev_w1);
+ cudaFree(dev_w2);
+
+ /*
+ cudaFree(dev_b1);
+ cudaFree(dev_b2);
+ cudaFree(dev_db1);
+ cudaFree(dev_db2);
+ */
+
+ cudaFree(dev_dw2);
+ cudaFree(dev_dw1);
+
+ cudaFree(dev_dscores);
+ cudaFree(dev_dscores_2);
+
+ cudaFree(dev_hLayer_T);
+ cudaFree(dev_iLayer_T);
+
+ delete(tmp);
+ delete(tmp2);
+ delete(tmp3);
+
+ timer().endGpuTimer();
+ }
+}
diff --git a/Project2-Character-Recognition/character_recognition/mlp.h b/Project2-Character-Recognition/character_recognition/mlp.h
index 2096228..1facd5e 100644
--- a/Project2-Character-Recognition/character_recognition/mlp.h
+++ b/Project2-Character-Recognition/character_recognition/mlp.h
@@ -3,7 +3,15 @@
#include "common.h"
namespace CharacterRecognition {
- Common::PerformanceTimer& timer();
+ Common::PerformanceTimer& timer();
+ // TODO: implement required elements for MLP sections 1 and 2 here
- // TODO: implement required elements for MLP sections 1 and 2 here
+ // MLP section 1 and 2 Character Reader
+ //void initMLP(int N, int P, int iDim, int hDim, int oDim);
+ //void readData(int N, int P, int iDim, int hDim, int oDim);
+ //void testMLP(int N, int P, int iDim, int hDim, int oDim);
+
+ void trainMLP(int N, int D, int H, int C, double *idata, int *preds, int *gtruth, int epochs, double *losses,
+ const double LR, double *w1, double *w2, unsigned long seed );
}
+
diff --git a/Project2-Character-Recognition/img/CharRecLoss.PNG b/Project2-Character-Recognition/img/CharRecLoss.PNG
new file mode 100644
index 0000000..c668d54
Binary files /dev/null and b/Project2-Character-Recognition/img/CharRecLoss.PNG differ
diff --git a/Project2-Character-Recognition/img/CharRecStats.PNG b/Project2-Character-Recognition/img/CharRecStats.PNG
new file mode 100644
index 0000000..31f1691
Binary files /dev/null and b/Project2-Character-Recognition/img/CharRecStats.PNG differ
diff --git a/Project2-Character-Recognition/img/MLPmine.PNG b/Project2-Character-Recognition/img/MLPmine.PNG
new file mode 100644
index 0000000..e6119b8
Binary files /dev/null and b/Project2-Character-Recognition/img/MLPmine.PNG differ
diff --git a/Project2-Character-Recognition/img/XorLoss.PNG b/Project2-Character-Recognition/img/XorLoss.PNG
new file mode 100644
index 0000000..7cd1d1d
Binary files /dev/null and b/Project2-Character-Recognition/img/XorLoss.PNG differ
diff --git a/Project2-Character-Recognition/img/XorStats.PNG b/Project2-Character-Recognition/img/XorStats.PNG
new file mode 100644
index 0000000..2956065
Binary files /dev/null and b/Project2-Character-Recognition/img/XorStats.PNG differ
diff --git a/Project2-Character-Recognition/img/title.png b/Project2-Character-Recognition/img/title.png
new file mode 100644
index 0000000..f171bfc
Binary files /dev/null and b/Project2-Character-Recognition/img/title.png differ
diff --git a/Project2-Character-Recognition/img/xor-table.png b/Project2-Character-Recognition/img/xor-table.png
new file mode 100644
index 0000000..1794587
Binary files /dev/null and b/Project2-Character-Recognition/img/xor-table.png differ
diff --git a/Project2-Character-Recognition/src/main.cpp b/Project2-Character-Recognition/src/main.cpp
index 11dd534..0badaaa 100644
--- a/Project2-Character-Recognition/src/main.cpp
+++ b/Project2-Character-Recognition/src/main.cpp
@@ -1,8 +1,8 @@
/**
* @file main.cpp
* @brief Stream compaction test program
- * @authors Kai Ninomiya
- * @date 2015
+ * @authors Chhavi Sharma
+ * @date 2019
* @copyright University of Pennsylvania
*/
@@ -11,142 +11,226 @@
#include
#include "testing_helpers.hpp"
-const int SIZE = 1 << 8; // feel free to change the size of array
-const int NPOT = SIZE - 3; // Non-Power-Of-Two
-int *a = new int[SIZE];
-int *b = new int[SIZE];
-int *c = new int[SIZE];
+#include
+#include
+#include
+#include
+#include
+
+unsigned long seed = time(0);
+#define XOR 1
+#define CR 1
+
+int N ;
+int D ;
+int H ;
+int C ;
+double LR;
+int epochs;
int main(int argc, char* argv[]) {
- // Scan tests
-
- printf("\n");
- printf("****************\n");
- printf("** SCAN TESTS **\n");
- printf("****************\n");
-
- genArray(SIZE - 1, a, 50); // Leave a 0 at the end to test that edge case
- a[SIZE - 1] = 0;
- printArray(SIZE, a, true);
-
- // initialize b using StreamCompaction::CPU::scan you implement
- // We use b for further comparison. Make sure your StreamCompaction::CPU::scan is correct.
- // At first all cases passed because b && c are all zeroes.
- zeroArray(SIZE, b);
- printDesc("cpu scan, power-of-two");
- StreamCompaction::CPU::scan(SIZE, b, a);
- printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
- printArray(SIZE, b, true);
-
- zeroArray(SIZE, c);
- printDesc("cpu scan, non-power-of-two");
- StreamCompaction::CPU::scan(NPOT, c, a);
- printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
- printArray(NPOT, b, true);
- printCmpResult(NPOT, b, c);
-
- zeroArray(SIZE, c);
- printDesc("naive scan, power-of-two");
- StreamCompaction::Naive::scan(SIZE, c, a);
- printElapsedTime(StreamCompaction::Naive::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(SIZE, c, true);
- printCmpResult(SIZE, b, c);
-
- /* For bug-finding only: Array of 1s to help find bugs in stream compaction or scan
- onesArray(SIZE, c);
- printDesc("1s array for finding bugs");
- StreamCompaction::Naive::scan(SIZE, c, a);
- printArray(SIZE, c, true); */
-
- zeroArray(SIZE, c);
- printDesc("naive scan, non-power-of-two");
- StreamCompaction::Naive::scan(NPOT, c, a);
- printElapsedTime(StreamCompaction::Naive::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(SIZE, c, true);
- printCmpResult(NPOT, b, c);
-
- zeroArray(SIZE, c);
- printDesc("work-efficient scan, power-of-two");
- StreamCompaction::Efficient::scan(SIZE, c, a);
- printElapsedTime(StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(SIZE, c, true);
- printCmpResult(SIZE, b, c);
-
- zeroArray(SIZE, c);
- printDesc("work-efficient scan, non-power-of-two");
- StreamCompaction::Efficient::scan(NPOT, c, a);
- printElapsedTime(StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(NPOT, c, true);
- printCmpResult(NPOT, b, c);
-
- zeroArray(SIZE, c);
- printDesc("thrust scan, power-of-two");
- StreamCompaction::Thrust::scan(SIZE, c, a);
- printElapsedTime(StreamCompaction::Thrust::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(SIZE, c, true);
- printCmpResult(SIZE, b, c);
-
- zeroArray(SIZE, c);
- printDesc("thrust scan, non-power-of-two");
- StreamCompaction::Thrust::scan(NPOT, c, a);
- printElapsedTime(StreamCompaction::Thrust::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(NPOT, c, true);
- printCmpResult(NPOT, b, c);
-
- printf("\n");
- printf("*****************************\n");
- printf("** STREAM COMPACTION TESTS **\n");
- printf("*****************************\n");
-
- // Compaction tests
-
- genArray(SIZE - 1, a, 4); // Leave a 0 at the end to test that edge case
- a[SIZE - 1] = 0;
- printArray(SIZE, a, true);
-
- int count, expectedCount, expectedNPOT;
-
- // initialize b using StreamCompaction::CPU::compactWithoutScan you implement
- // We use b for further comparison. Make sure your StreamCompaction::CPU::compactWithoutScan is correct.
- zeroArray(SIZE, b);
- printDesc("cpu compact without scan, power-of-two");
- count = StreamCompaction::CPU::compactWithoutScan(SIZE, b, a);
- printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
- expectedCount = count;
- printArray(count, b, true);
- printCmpLenResult(count, expectedCount, b, b);
-
- zeroArray(SIZE, c);
- printDesc("cpu compact without scan, non-power-of-two");
- count = StreamCompaction::CPU::compactWithoutScan(NPOT, c, a);
- printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
- expectedNPOT = count;
- printArray(count, c, true);
- printCmpLenResult(count, expectedNPOT, b, c);
-
- zeroArray(SIZE, c);
- printDesc("cpu compact with scan");
- count = StreamCompaction::CPU::compactWithScan(SIZE, c, a);
- printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
- printArray(count, c, true);
- printCmpLenResult(count, expectedCount, b, c);
-
- zeroArray(SIZE, c);
- printDesc("work-efficient compact, power-of-two");
- count = StreamCompaction::Efficient::compact(SIZE, c, a);
- printElapsedTime(StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(count, c, true);
- printCmpLenResult(count, expectedCount, b, c);
-
- zeroArray(SIZE, c);
- printDesc("work-efficient compact, non-power-of-two");
- count = StreamCompaction::Efficient::compact(NPOT, c, a);
- printElapsedTime(StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(count, c, true);
- printCmpLenResult(count, expectedNPOT, b, c);
-
- system("pause"); // stop Win32 console from closing on exit
- delete[] a;
- delete[] b;
- delete[] c;
+
+ printf("****************\n");
+ printf("***MLP TESTS***\n");
+ printf("****************\n");
+
+ //==========================================================================================
+ //================================= XOR GATE NEURAL NET ====================================
+ //==========================================================================================
+ if (XOR == true) {
+ N = 4; // Number of examples
+ D = 2; //Feature length per example
+ H = 4; // Number of Hidden unit
+ C = 2; // NN number of classes
+ LR = 0.5;
+ epochs = 1001;
+
+ double *losses = new double[epochs];
+ double *idata = new double[N*D];
+ int * preds = new int[N];
+ int * gtruth = new int[N];
+
+ double *w1 = new double[D*H];
+ double *w2 = new double[H*C];
+
+ printf("Launch XOR Training\n");
+ // XOR input data set 2*4
+ idata[0] = 0.0;
+ idata[1] = 0.0;
+ idata[2] = 0.0;
+ idata[3] = 1.0;
+ idata[4] = 1.0;
+ idata[5] = 0.0;
+ idata[6] = 1.0;
+ idata[7] = 1.0;
+
+ // XOR ground truth data set 4
+ gtruth[0] = 0;
+ gtruth[1] = 1;
+ gtruth[2] = 1;
+ gtruth[3] = 0;
+
+ CharacterRecognition::trainMLP(N, D, H, C, idata, preds, gtruth, epochs, losses, LR, w1, w2, seed);
+ printf("\nCompleted XOR Training\n");
+ // STORE LOSSES
+ std::ofstream myfile("xor_losses.txt");
+ if (myfile.is_open())
+ {
+ for (int i = 0; i < epochs; i++) {
+ myfile << std::fixed << std::setprecision(8) << losses[i] << '\n';
+ }
+ myfile.close();
+ printf("Wrote loss to file\n");
+ }
+
+ // STORE WEIGHTS
+ std::ofstream weight1_file("xor_W1_DxH_"+std::to_string(D)+"_x_"+std::to_string(H)+".txt");
+ if (weight1_file.is_open())
+ {
+ for (int i = 0; i < D*H; i++) {
+ weight1_file << std::fixed << std::setprecision(8) << w1[i] << '\n';
+ }
+ weight1_file.close();
+ printf("Wrote w1 to file\n");
+ }
+ std::ofstream weight2_file("xor_W2_HxC_"+std::to_string(H)+"_x_"+std::to_string(C)+".txt");
+ if (weight2_file.is_open())
+ {
+ for (int i = 0; i < C*H; i++) {
+ weight2_file << std::fixed << std::setprecision(8) << w2[i] << '\n';
+ }
+ weight2_file.close();
+ printf("Wrote w2 to file\n");
+ }
+
+ delete(losses);
+ delete(idata);
+ delete(preds);
+ delete(gtruth);
+ delete(w1);
+ delete(w2);
+ }
+ //==========================================================================================
+ //================================= CHARACTER RECOGNITION ==================================
+ //==========================================================================================
+ if (CR == true) {
+ // Char Recognition
+ N = 52; // Number of examples
+ D = 10201; // Feature length per example
+ H = 10; // Number of Hidden unit
+ C = 52; // NN number of classes
+ LR = 0.5; // Learning Rate
+ epochs = 5001; // Epochs
+
+ double *CR_losses = new double[epochs];
+ double *CR_idata = new double[N*D];
+ int * CR_preds = new int[N];
+ int * CR_gtruth = new int[N];
+
+ double *w1 = new double[D*H];
+ double *w2 = new double[H*C];
+
+ printf("\n\nLaunch CharRec Training\n");
+ // Data loading
+ printf("Loading data...\n");
+ int data_sz = 0;
+ int x = 0;
+
+ std::string line;
+ int *id = new int[N*D];
+ for (int i = 1; i <= 52; i++) {
+ std::string fname;
+ if (i < 10) {
+ fname = "C:\\Users\\chhavis\\cis565\\Project2-Number-Algorithms\\Project2-Character-Recognition\\data-set\\0" + std::to_string(i) + "info.txt";
+ }
+ else {
+ fname = "C:\\Users\\chhavis\\cis565\\Project2-Number-Algorithms\\Project2-Character-Recognition\\data-set\\" + std::to_string(i) + "info.txt";
+ }
+ std::ifstream myfile(fname);
+ std::stringstream sstream;
+ std::stringstream sstream2;
+ std::stringstream sstream3;
+
+ //std::cout<> CR_gtruth[i - 1];
+ CR_gtruth[i - 1] -= 1;
+ //printf(" gtruth = %d |", CR_gtruth[i - 1]);
+
+ // Read line 2 // Data Size
+ getline(myfile, line);
+ sstream2 << line;
+ sstream2 >> data_sz;
+ //printf("data_sz = %d \n", data_sz);
+
+ // Read line 3 Pixel values
+ getline(myfile, line);
+ sstream3 << line;
+ for (int j = 0; j < data_sz; j++) {
+ sstream3 >> id[(i - 1) * 10201 + j];
+ }
+
+ myfile.close();
+ }
+ else {
+ printf("Unable to open file.\n");;
+ }
+ }
+
+ // Normalize Data
+ for (int i = 0; i < N*D; i++) {
+ CR_idata[i] = id[i] / 255.0;
+ //printf("\t %lf ", CR_idata[i]);
+ }
+ delete(id);
+
+ CharacterRecognition::trainMLP(N, D, H, C, CR_idata, CR_preds, CR_gtruth, epochs, CR_losses, LR, w1, w2, seed);
+ printf("\nCompleted CharRec Training\n");
+
+ // STORE LOSSES
+ std::ofstream myfile1("cr_losses.txt");
+ if (myfile1.is_open())
+ {
+ for (int i = 0; i < epochs; i++) {
+ myfile1 << std::fixed << std::setprecision(8) << CR_losses[i] << '\n';
+ }
+ myfile1.close();
+ printf("Wrote loss to file\n");
+ }
+
+ // STORE WEIGHTS
+ std::ofstream weight1file("cr_W1_DxH_"+std::to_string(D)+"_x_" + std::to_string(H)+".txt");
+ if (myfile1.is_open())
+ {
+ for (int i = 0; i < D*H; i++) {
+ weight1file << std::fixed << std::setprecision(8) << w1[i] << '\n';
+ }
+ weight1file.close();
+ printf("Wrote w1 to file\n");
+ }
+ std::ofstream weight2file("cr_W2_HxC_" + std::to_string(H) + "_x_" + std::to_string(C)+".txt");
+ if (weight2file.is_open())
+ {
+ for (int i = 0; i < C*H; i++) {
+ weight2file << std::fixed << std::setprecision(8) << w2[i] << '\n';
+ }
+ weight2file.close();
+ printf("Wrote w2 to file\n");
+ }
+
+ delete(CR_losses);
+ delete(CR_idata);
+ delete(CR_preds);
+ delete(CR_gtruth);
+ delete(w1);
+ delete(w2);
+ }
+
+ return 0;
}
diff --git a/Project2-Character-Recognition/src/main.cpp_back b/Project2-Character-Recognition/src/main.cpp_back
new file mode 100644
index 0000000..abcacb9
--- /dev/null
+++ b/Project2-Character-Recognition/src/main.cpp_back
@@ -0,0 +1,158 @@
+/**
+ * @file main.cpp
+ * @brief Stream compaction test program
+ * @authors Kai Ninomiya
+ * @date 2015
+ * @copyright University of Pennsylvania
+ */
+
+#include
+#include
+#include
+#include "testing_helpers.hpp"
+
+#include
+#include
+#include
+#include
+using namespace std;
+unsigned long seed = time(0);
+//====CONFIG Neural Network for XOR ================
+//==================================================
+
+
+// XOR
+const int N = 4; // Number of examples
+const int D = 3; //Feature length per example
+const int H = 4; // Number of Hidden unit
+const int C = 2; // NN number of classes
+const float LR = 0.1;
+const int epochs = 1000;
+
+/*
+//====CONFIG Neural Network for Char Recognition ===
+//==================================================
+const int N = 52; // Number of examples
+const int D = 10201; // Feature length per example
+const int H = 10; // Number of Hidden unit
+const int C = 52; // NN number of classes
+const float LR = 0.01;
+const int epochs = 5000;
+*/
+
+
+int main(int argc, char* argv[]) {
+
+ float *losses = new float[epochs];
+ float *idata = new float[N*D];
+ int * preds = new int[N];
+ int * gtruth = new int[N];
+
+ printf("\n");
+ printf("****************\n");
+ printf("***MLP TESTS***\n");
+ printf("****************\n");
+
+ printf("Launch XOR Training\n");
+ // XOR input dtat set 2 * 4
+ /*
+ idata[0] = 0;
+ idata[1] = 0;
+ idata[2] = 0;
+ idata[3] = 1;
+ idata[4] = 1;
+ idata[5] = 0;
+ idata[6] = 1;
+ idata[7] = 1;
+ */
+
+ // with bias
+ idata[0] = 0;
+ idata[1] = 0;
+ idata[2] = 1;
+ idata[3] = 0;
+ idata[4] = 1;
+ idata[5] = 1;
+ idata[6] = 1;
+ idata[7] = 0;
+ idata[8] = 1;
+ idata[9] = 1;
+ idata[10] = 1;
+ idata[11] = 1;
+
+
+ // XOR input dtat set 2 * 4
+ gtruth[0] = 0;
+ gtruth[1] = 1;
+ gtruth[2] = 1;
+ gtruth[3] = 0;
+
+ CharacterRecognition::trainMLP(N, D, H, C, idata, preds, gtruth, epochs, losses, LR, seed);
+ printf("\nCompleted XOR Training\n");
+
+ /*
+ // Data loading
+ printf("Trying to load data.\n");
+ int data_sz = 0;
+ int x = 0;
+
+ string line;
+ int *id = new int[N*D];
+ for (int i = 1; i <= 52; i++) {
+ std::string fname;
+ if (i < 10) {
+ fname="C:\\Users\\chhavis\\cis565\\Project2-Number-Algorithms\\Project2-Character-Recognition\\data-set\\0" + std::to_string(i) + "info.txt";
+ }
+ else {
+ fname = "C:\\Users\\chhavis\\cis565\\Project2-Number-Algorithms\\Project2-Character-Recognition\\data-set\\" + std::to_string(i) + "info.txt";
+ }
+ std::ifstream myfile(fname);
+ std::stringstream sstream;
+ std::stringstream sstream2;
+ std::stringstream sstream3;
+
+ //std::cout<> gtruth[i-1];
+ gtruth[i-1] -= 1;
+ printf(" gtruth = %d |", gtruth[i-1]);
+
+ // Read line 2 // Data Size
+ getline(myfile, line);
+ sstream2 << line;
+ sstream2 >> data_sz;
+ //printf("data_sz = %d \n", data_sz);
+
+ // Read line 3 Pixel values
+ getline(myfile, line);
+ sstream3 << line;
+ for (int j = 0; j < data_sz; j++){
+ sstream3 >> id[(i-1)*10201 + j];
+ }
+
+ myfile.close();
+ }
+ else {
+ printf("Unable to open file.\n");;
+ }
+ }
+
+ // Normalize Data
+ for (int i = 0; i < N*D; i++) {
+ idata[i] = id[i]/255.0;
+ //printf("\t %lf ", idata[i]);
+ }
+ delete(id);
+
+ CharacterRecognition::trainMLP(N, D, H, C, idata, preds, gtruth, epochs, losses, LR, seed);
+ printf("\nCompleted CharRec Training\n");
+ */
+
+ return 0;
+}
diff --git a/Project2-Stream-Compaction/README.md b/Project2-Stream-Compaction/README.md
index 0e38ddb..b5fe356 100644
--- a/Project2-Stream-Compaction/README.md
+++ b/Project2-Stream-Compaction/README.md
@@ -1,14 +1,149 @@
-CUDA Stream Compaction
-======================
+## Project 2 Part 1 - CUDA Stream Compaction
+**University of Pennsylvania
+CIS 565: GPU Programming and Architecture**
-**University of Pennsylvania, CIS 565: GPU Programming and Architecture, Project 2**
+* Author: Chhavi Sharma ([LinkedIn](https://www.linkedin.com/in/chhavi275/))
+* Tested on: Windows 10, Intel Core(R) Core(TM) i7-6700 CPU @ 3.40GHz 16GB,
+ NVIDIA Quadro P1000 4GB (MOORE100B-06)
-* (TODO) YOUR NAME HERE
- * (TODO) [LinkedIn](), [personal website](), [twitter](), etc.
-* Tested on: (TODO) Windows 22, i7-2222 @ 2.22GHz 22GB, GTX 222 222MB (Moore 2222 Lab)
+### Index
-### (TODO: Your README)
+- [Introduction](https://github.com/chhavisharma/Project2-Number-Algorithms/blob/master/Project2-Stream-Compaction/README.md#introduciton)
+- [Algorithms](https://github.com/chhavisharma/Project2-Number-Algorithms/blob/master/Project2-Stream-Compaction/README.md#algorithms)
+- [Questions and Performance Analysis](https://github.com/chhavisharma/Project2-Number-Algorithms/blob/master/Project2-Stream-Compaction/README.md#questions-and-performance-analysis)
-Include analysis, etc. (Remember, this is public, so don't put
-anything here that you don't want to share with the world.)
+### Introduciton
+
+In this project, we implement GPU based Stream Compaction in CUDA. To aid stream compaction, we also implement various versions of the *Scan* (*Prefix Sum*) algorithm, such as CPU, GPU Naive and GPU Work Efficient versions.
+algorithm
+
+Stream compaction, also known as stream filtering or selection, usually produces a smaller output array which contains only the wanted elements from the input array based on some criteria for further processing, while preserving order. For our implementation, We will attemp to remove '0's from an array of ints.
+
+
+### Algorithms
+
+#### 1: CPU Scan & Stream Compaction
+
+ We implement stream compaction in two ways:
+
+ - CPU based stream compaction:
+ - Loop over the input data array
+ - Copy non-zero elements to output array
+ - count copies to track size
+ ```
+ compactWithoutScan(N, Odata, Idata)
+ if n > 0
+ int size=0;
+ for i in Idata
+ if (idata[i] != 0)
+ Odata[counter] = Idata[i]
+ size+=1
+ return size
+ ```
+
+ - CPU based stream compaction with CPU based scan:
+ - Compute *Indicator Array* of the input data size that is 1 for non zero elements, an 0 otherwise.
+ - Compute *Scan* over indicator Array to get another array. This gives us write indices for the valid elements in the output array. It also gives us the total valid elelemts.
+ - *Scatter* data, read from the input array where Indiacator Array is 1, write to the outut array at index given by the scan array. That is:
+ ```
+ - map
+ goal: map our original data array (integer, Light Ray, etc) to a bool array
+ input [1 5 0 1 2 0 3]
+ output [1 1 0 1 1 0 1]
+ - scan
+ take the output of last step as input
+ input [1 1 0 1 1 0 1]
+ output [0 1 2 2 3 4 4]
+ - scatter
+ preserve non-zero elements and compact them into a new array
+ original array [1 5 0 1 2 0 3]
+ mapped array [1 1 0 1 1 0 1]
+ scanned array [0 1 2 2 3 4 4]
+ output [1 5 1 2 3]
+ ```
+
+-Scan : The goal is to produce a prefic sum of the input array.
+ ```
+ input [1 1 0 1 1 0 1]
+ output [0 1 2 2 3 4 4]
+ ```
+
+
+#### 2: Naive GPU Scan
+We can naively parallelize the scan algorithm on the GPU to reduce the loop to ```log2(n)``` iterations. At the first iteraction, n-1 threads add a pair of values and store it in the next array, but as iteractions progress, the number of additions come down to 'O(1)'. Thus this scan has a runtime of 'log2(n)' where as the CPU sequential scan has the runtime of 'O(n)'. The number of additions in this scenario increase to ```O(n*log2(n))```.
+
+
+
+
+#### 3: Work-Efficient GPU Scan
+
+We can further parallelize the scan algorithm to bring down the number of addition operations to ```O(n)``` and make it *Work Efficient*. This is done by implementing the scan algorithm using a Balanced Binary Tree and perfroming the UpSweep and DownSweep algorithm. During Upsweep, we start from the tree's leaf nodes and compute partial sums upto the root. These operations are in place.
+
+
+
+Finally in the downsweep, starting from the Root node, we perfom the following steps to get the preorder sum.
+
+
+
+#### 4: Work-Efficient Stream Compaction
+Work efficient stram compaction is nothing but the stream compaction algorithm explained above that uses the work-efficient scan.
+ ```
+ compactWithScan(n, odata, idata)
+ Compute indicator array (Parallely)
+ Compute scan (Work efficiently)
+ Scatter
+ ```
+#### 5: Using Thrust's Implementation
+We also experiemented with CUDA's `thrust::exclusive_scan(first, last, result)` function to compute scan and compare performance.
+
+
+### Questions and Performance Analysis
+
+ * **BlockSize Optimization for each Implementation**
+ We compare the rumtime of GPU Naive scan and and the work efficient naive scan with the number of threads per block to pick the most optimal configuration for furhter tests.
+
+ *Block Size v/s Runtime*
+ 
+
+ From the above plot, we find that BlockSize 128 was the most optimal for both Naive and Work Efficient Scan.
+
+ * **Compare all of these GPU Scan implementations (Naive, Work-Efficient, and Thrust) to the serial CPU version of Scan. Plot a graph of the comparison (with array size on the independent axis).**
+
+ The following plots show the runtime comparasion of all the above scan implementations.
+
+ SCAN with increasing data size: Lower Runtime -> Faster Algorithm
+
+ 
+ 
+
+
+ SCAN with increasing data size and nonPowersOf2: Lower Runtime -> Faster Algorithm
+
+ 
+ 
+
+ * **Write a brief explanation of the phenomena you see here.Can you find the performance bottlenecks? Is it memory I/O? Computation? Is it different for each implementation?**
+
+ **Scan Comparasion**
+ Varying the data from '2^10' to '2^28', we observe the following:-
+ - The CPU implementation of Scan is realtively faster than all the GPU implementations when the data size is small. This is becuase the compute time is not able to hide the other kernel overheads such as allocating threads and multiple kernel launches.
+ - As the data size grows, serial compute scan on the CPU grows in time. The naive GPU scan and Work efficint scan are faster.
+ - For really large data sizes, CPU scan runs faster than Naive GPU scan, which could be becuause the 'n* log2(n)' additional compute in the naive GPU scan overpowers the parallelization.
+ - Work efficient scan perfroms the best on large data sizes, as comapred to Naive nad CPU scan, becuase of compute 'log(n)' and time 'log(n)' optimization.
+ - Thrust scan perfroms far better than any other implementation for large data sizes. Thrust maybe optimizing the memory I/O and kernel launching overheads further as comapred to our implementation of Work-efficient scan where we launch a kernel every time in a for loop for upstream and downstream.
+
+
+ **Compaction Comparasion**
+
+ 
+
+ 
+
+ Varying the data from '2^10' to '2^28', we observe the following:-
+ - Internstingly, stream compction without scan on the cpu outperforms stream compaction with scan in terms of computation time. The drawback of stream compaction without scan is that it is not in place and uses double the memory of input size.
+
+
+ * **Paste the output of the test program **
+
+ 
diff --git a/Project2-Stream-Compaction/build/CMakeCache.txt b/Project2-Stream-Compaction/build/CMakeCache.txt
new file mode 100644
index 0000000..71cecda
--- /dev/null
+++ b/Project2-Stream-Compaction/build/CMakeCache.txt
@@ -0,0 +1,526 @@
+# This is the CMakeCache file.
+# For build in directory: c:/Users/chhavis/cis565/Project2-Number-Algorithms/Project2-Stream-Compaction/build
+# It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe
+# You can edit this file to change values found and used by cmake.
+# If you do not want to change any of the values, simply exit the editor.
+# If you do want to change a value, simply edit, save, and exit the editor.
+# The syntax for the file is as follows:
+# KEY:TYPE=VALUE
+# KEY is the name of a variable in the cache.
+# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
+# VALUE is the current value for the KEY.
+
+########################
+# EXTERNAL cache entries
+########################
+
+//Semicolon separated list of supported configuration types, only
+// supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything
+// else will be ignored.
+CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo
+
+//Flags used by the CXX compiler during all build types.
+CMAKE_CXX_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3 /GR /EHsc
+
+//Flags used by the CXX compiler during DEBUG builds.
+CMAKE_CXX_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1
+
+//Flags used by the CXX compiler during MINSIZEREL builds.
+CMAKE_CXX_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG
+
+//Flags used by the CXX compiler during RELEASE builds.
+CMAKE_CXX_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG
+
+//Flags used by the CXX compiler during RELWITHDEBINFO builds.
+CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG
+
+//Libraries linked by default with all C++ applications.
+CMAKE_CXX_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib
+
+//Flags used by the C compiler during all build types.
+CMAKE_C_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3
+
+//Flags used by the C compiler during DEBUG builds.
+CMAKE_C_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1
+
+//Flags used by the C compiler during MINSIZEREL builds.
+CMAKE_C_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG
+
+//Flags used by the C compiler during RELEASE builds.
+CMAKE_C_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG
+
+//Flags used by the C compiler during RELWITHDEBINFO builds.
+CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG
+
+//Libraries linked by default with all C applications.
+CMAKE_C_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib
+
+//Flags used by the linker during all build types.
+CMAKE_EXE_LINKER_FLAGS:STRING=/machine:x64
+
+//Flags used by the linker during DEBUG builds.
+CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
+
+//Flags used by the linker during MINSIZEREL builds.
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during RELEASE builds.
+CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during RELWITHDEBINFO builds.
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
+
+//Install path prefix, prepended onto install directories.
+CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/cis565_stream_compaction_test
+
+//Path to a program.
+CMAKE_LINKER:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/x86_amd64/link.exe
+
+//Flags used by the linker during the creation of modules during
+// all build types.
+CMAKE_MODULE_LINKER_FLAGS:STRING=/machine:x64
+
+//Flags used by the linker during the creation of modules during
+// DEBUG builds.
+CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
+
+//Flags used by the linker during the creation of modules during
+// MINSIZEREL builds.
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during the creation of modules during
+// RELEASE builds.
+CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during the creation of modules during
+// RELWITHDEBINFO builds.
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
+
+//Path to a program.
+CMAKE_MT:FILEPATH=CMAKE_MT-NOTFOUND
+
+//Value Computed by CMake
+CMAKE_PROJECT_DESCRIPTION:STATIC=
+
+//Value Computed by CMake
+CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
+
+//Value Computed by CMake
+CMAKE_PROJECT_NAME:STATIC=cis565_stream_compaction_test
+
+//RC compiler
+CMAKE_RC_COMPILER:FILEPATH=rc
+
+//Flags for Windows Resource Compiler during all build types.
+CMAKE_RC_FLAGS:STRING=-DWIN32
+
+//Flags for Windows Resource Compiler during DEBUG builds.
+CMAKE_RC_FLAGS_DEBUG:STRING=-D_DEBUG
+
+//Flags for Windows Resource Compiler during MINSIZEREL builds.
+CMAKE_RC_FLAGS_MINSIZEREL:STRING=
+
+//Flags for Windows Resource Compiler during RELEASE builds.
+CMAKE_RC_FLAGS_RELEASE:STRING=
+
+//Flags for Windows Resource Compiler during RELWITHDEBINFO builds.
+CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during all build types.
+CMAKE_SHARED_LINKER_FLAGS:STRING=/machine:x64
+
+//Flags used by the linker during the creation of shared libraries
+// during DEBUG builds.
+CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
+
+//Flags used by the linker during the creation of shared libraries
+// during MINSIZEREL builds.
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during the creation of shared libraries
+// during RELEASE builds.
+CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during the creation of shared libraries
+// during RELWITHDEBINFO builds.
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
+
+//If set, runtime paths are not added when installing shared libraries,
+// but are added when building.
+CMAKE_SKIP_INSTALL_RPATH:BOOL=OFF
+
+//If set, runtime paths are not added when using shared libraries.
+CMAKE_SKIP_RPATH:BOOL=OFF
+
+//Flags used by the linker during the creation of static libraries
+// during all build types.
+CMAKE_STATIC_LINKER_FLAGS:STRING=/machine:x64
+
+//Flags used by the linker during the creation of static libraries
+// during DEBUG builds.
+CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during MINSIZEREL builds.
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during RELEASE builds.
+CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during RELWITHDEBINFO builds.
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//If this value is on, makefiles will be generated without the
+// .SILENT directive, and all commands will be echoed to the console
+// during the make. This is useful for debugging only. With Visual
+// Studio IDE projects all commands are done without /nologo.
+CMAKE_VERBOSE_MAKEFILE:BOOL=OFF
+
+//Compile device code in 64 bit mode
+CUDA_64_BIT_DEVICE_CODE:BOOL=ON
+
+//Attach the build rule to the CUDA source file. Enable only when
+// the CUDA source file is added to at most one target.
+CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE:BOOL=ON
+
+//Generate and parse .cubin files in Device mode.
+CUDA_BUILD_CUBIN:BOOL=OFF
+
+//Build in Emulation mode
+CUDA_BUILD_EMULATION:BOOL=OFF
+
+//"cudart" library
+CUDA_CUDART_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64/cudart.lib
+
+//"cuda" library (older versions only).
+CUDA_CUDA_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64/cuda.lib
+
+//Directory to put all the output files. If blank it will default
+// to the CMAKE_CURRENT_BINARY_DIR
+CUDA_GENERATED_OUTPUT_DIR:PATH=
+
+//Generated file extension
+CUDA_HOST_COMPILATION_CPP:BOOL=ON
+
+//Host side compiler used by NVCC
+CUDA_HOST_COMPILER:FILEPATH=$(VCInstallDir)bin
+
+//Path to a program.
+CUDA_NVCC_EXECUTABLE:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/bin/nvcc.exe
+
+//Semi-colon delimit multiple arguments.
+CUDA_NVCC_FLAGS:STRING=
+
+//Semi-colon delimit multiple arguments.
+CUDA_NVCC_FLAGS_DEBUG:STRING=
+
+//Semi-colon delimit multiple arguments.
+CUDA_NVCC_FLAGS_MINSIZEREL:STRING=
+
+//Semi-colon delimit multiple arguments.
+CUDA_NVCC_FLAGS_RELEASE:STRING=
+
+//Semi-colon delimit multiple arguments.
+CUDA_NVCC_FLAGS_RELWITHDEBINFO:STRING=
+
+//Propage C/CXX_FLAGS and friends to the host compiler via -Xcompile
+CUDA_PROPAGATE_HOST_FLAGS:BOOL=ON
+
+//Path to a file.
+CUDA_SDK_ROOT_DIR:PATH=CUDA_SDK_ROOT_DIR-NOTFOUND
+
+//Compile CUDA objects with separable compilation enabled. Requires
+// CUDA 5.0+
+CUDA_SEPARABLE_COMPILATION:BOOL=OFF
+
+//Specify the name of the class of CPU architecture for which the
+// input files must be compiled.
+CUDA_TARGET_CPU_ARCH:STRING=
+
+//Path to a file.
+CUDA_TOOLKIT_INCLUDE:PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/include
+
+//Toolkit location.
+CUDA_TOOLKIT_ROOT_DIR:PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0
+
+//Toolkit target location.
+CUDA_TOOLKIT_TARGET_DIR:PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0
+
+//Use the static version of the CUDA runtime library if available
+CUDA_USE_STATIC_CUDA_RUNTIME:BOOL=ON
+
+//Print out the commands run while compiling the CUDA source file.
+// With the Makefile generator this defaults to VERBOSE variable
+// specified on the command line, but can be forced on with this
+// option.
+CUDA_VERBOSE_BUILD:BOOL=OFF
+
+//Version of CUDA as computed from nvcc.
+CUDA_VERSION:STRING=10.1
+
+//"cublas" library
+CUDA_cublas_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64/cublas.lib
+
+//static CUDA runtime library
+CUDA_cudart_static_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64/cudart_static.lib
+
+//"cufft" library
+CUDA_cufft_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64/cufft.lib
+
+//"cupti" library
+CUDA_cupti_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/extras/CUPTI/lib64/cupti.lib
+
+//"curand" library
+CUDA_curand_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64/curand.lib
+
+//"cusolver" library
+CUDA_cusolver_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64/cusolver.lib
+
+//"cusparse" library
+CUDA_cusparse_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64/cusparse.lib
+
+//"nppc" library
+CUDA_nppc_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64/nppc.lib
+
+//"nppi" library
+CUDA_nppi_LIBRARY:FILEPATH=CUDA_nppi_LIBRARY-NOTFOUND
+
+//"npps" library
+CUDA_npps_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64/npps.lib
+
+//"nvcuvenc" library
+CUDA_nvcuvenc_LIBRARY:FILEPATH=CUDA_nvcuvenc_LIBRARY-NOTFOUND
+
+//"nvcuvid" library
+CUDA_nvcuvid_LIBRARY:FILEPATH=CUDA_nvcuvid_LIBRARY-NOTFOUND
+
+//Value Computed by CMake
+cis565_stream_compaction_test_BINARY_DIR:STATIC=C:/Users/chhavis/cis565/Project2-Number-Algorithms/Project2-Stream-Compaction/build
+
+//Value Computed by CMake
+cis565_stream_compaction_test_SOURCE_DIR:STATIC=C:/Users/chhavis/cis565/Project2-Number-Algorithms/Project2-Stream-Compaction
+
+//Dependencies for the target
+stream_compaction_LIB_DEPENDS:STATIC=general;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64/cudart_static.lib;
+
+
+########################
+# INTERNAL cache entries
+########################
+
+//This is the directory where this CMakeCache.txt was created
+CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/chhavis/cis565/Project2-Number-Algorithms/Project2-Stream-Compaction/build
+//Major version of cmake used to create the current loaded cache
+CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
+//Minor version of cmake used to create the current loaded cache
+CMAKE_CACHE_MINOR_VERSION:INTERNAL=15
+//Patch version of cmake used to create the current loaded cache
+CMAKE_CACHE_PATCH_VERSION:INTERNAL=0
+//Path to CMake executable.
+CMAKE_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake.exe
+//Path to cpack program executable.
+CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cpack.exe
+//Path to ctest program executable.
+CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/CMake/bin/ctest.exe
+//ADVANCED property for variable: CMAKE_CXX_FLAGS
+CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
+CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
+CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
+CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
+CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES
+CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS
+CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
+CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
+CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
+CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
+CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES
+CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
+//Executable file format
+CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
+CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
+CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
+CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//Name of external makefile project generator.
+CMAKE_EXTRA_GENERATOR:INTERNAL=
+//Name of generator.
+CMAKE_GENERATOR:INTERNAL=Visual Studio 15 2017
+//Generator instance identifier.
+CMAKE_GENERATOR_INSTANCE:INTERNAL=C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise
+//Name of generator platform.
+CMAKE_GENERATOR_PLATFORM:INTERNAL=x64
+//Name of generator toolset.
+CMAKE_GENERATOR_TOOLSET:INTERNAL=v140
+//Have include pthread.h
+CMAKE_HAVE_PTHREAD_H:INTERNAL=
+//Source directory with the top level CMakeLists.txt file for this
+// project
+CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/chhavis/cis565/Project2-Number-Algorithms/Project2-Stream-Compaction
+//ADVANCED property for variable: CMAKE_LINKER
+CMAKE_LINKER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
+CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
+CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
+CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MT
+CMAKE_MT-ADVANCED:INTERNAL=1
+//number of local generators
+CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=2
+//Platform information initialized
+CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_COMPILER
+CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1
+CMAKE_RC_COMPILER_WORKS:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS
+CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG
+CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL
+CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE
+CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO
+CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//Path to CMake installation.
+CMAKE_ROOT:INTERNAL=C:/Program Files/CMake/share/cmake-3.15
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
+CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
+CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
+CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
+CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_RPATH
+CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
+CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
+CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
+CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
+CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_64_BIT_DEVICE_CODE
+CUDA_64_BIT_DEVICE_CODE-ADVANCED:INTERNAL=1
+//List of intermediate files that are part of the cuda dependency
+// scanning.
+CUDA_ADDITIONAL_CLEAN_FILES:INTERNAL=C:/Users/chhavis/cis565/Project2-Number-Algorithms/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_common.cu.obj.depend;C:/Users/chhavis/cis565/Project2-Number-Algorithms/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_cpu.cu.obj.depend;C:/Users/chhavis/cis565/Project2-Number-Algorithms/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_naive.cu.obj.depend;C:/Users/chhavis/cis565/Project2-Number-Algorithms/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_efficient.cu.obj.depend;C:/Users/chhavis/cis565/Project2-Number-Algorithms/Project2-Stream-Compaction/build/stream_compaction/CMakeFiles/stream_compaction.dir//stream_compaction_generated_thrust.cu.obj.depend
+//ADVANCED property for variable: CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE
+CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_BUILD_CUBIN
+CUDA_BUILD_CUBIN-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_BUILD_EMULATION
+CUDA_BUILD_EMULATION-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_CUDART_LIBRARY
+CUDA_CUDART_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_CUDA_LIBRARY
+CUDA_CUDA_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_GENERATED_OUTPUT_DIR
+CUDA_GENERATED_OUTPUT_DIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_HOST_COMPILATION_CPP
+CUDA_HOST_COMPILATION_CPP-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_EXECUTABLE
+CUDA_NVCC_EXECUTABLE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS
+CUDA_NVCC_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_DEBUG
+CUDA_NVCC_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_MINSIZEREL
+CUDA_NVCC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_RELEASE
+CUDA_NVCC_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_RELWITHDEBINFO
+CUDA_NVCC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_PROPAGATE_HOST_FLAGS
+CUDA_PROPAGATE_HOST_FLAGS-ADVANCED:INTERNAL=1
+//This is the value of the last time CUDA_SDK_ROOT_DIR was set
+// successfully.
+CUDA_SDK_ROOT_DIR_INTERNAL:INTERNAL=CUDA_SDK_ROOT_DIR-NOTFOUND
+//ADVANCED property for variable: CUDA_SEPARABLE_COMPILATION
+CUDA_SEPARABLE_COMPILATION-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_TARGET_CPU_ARCH
+CUDA_TARGET_CPU_ARCH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_TOOLKIT_INCLUDE
+CUDA_TOOLKIT_INCLUDE-ADVANCED:INTERNAL=1
+//This is the value of the last time CUDA_TOOLKIT_ROOT_DIR was
+// set successfully.
+CUDA_TOOLKIT_ROOT_DIR_INTERNAL:INTERNAL=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0
+//ADVANCED property for variable: CUDA_TOOLKIT_TARGET_DIR
+CUDA_TOOLKIT_TARGET_DIR-ADVANCED:INTERNAL=1
+//This is the value of the last time CUDA_TOOLKIT_TARGET_DIR was
+// set successfully.
+CUDA_TOOLKIT_TARGET_DIR_INTERNAL:INTERNAL=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0
+//ADVANCED property for variable: CUDA_VERBOSE_BUILD
+CUDA_VERBOSE_BUILD-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_VERSION
+CUDA_VERSION-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cublas_LIBRARY
+CUDA_cublas_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cudart_static_LIBRARY
+CUDA_cudart_static_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cufft_LIBRARY
+CUDA_cufft_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cupti_LIBRARY
+CUDA_cupti_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_curand_LIBRARY
+CUDA_curand_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cusolver_LIBRARY
+CUDA_cusolver_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cusparse_LIBRARY
+CUDA_cusparse_LIBRARY-ADVANCED:INTERNAL=1
+//Location of make2cmake.cmake
+CUDA_make2cmake:INTERNAL=C:/Users/chhavis/cis565/Project2-Number-Algorithms/Project2-Stream-Compaction/cmake/FindCUDA/make2cmake.cmake
+//ADVANCED property for variable: CUDA_nppc_LIBRARY
+CUDA_nppc_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppi_LIBRARY
+CUDA_nppi_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_npps_LIBRARY
+CUDA_npps_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nvcuvenc_LIBRARY
+CUDA_nvcuvenc_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nvcuvid_LIBRARY
+CUDA_nvcuvid_LIBRARY-ADVANCED:INTERNAL=1
+//Location of parse_cubin.cmake
+CUDA_parse_cubin:INTERNAL=C:/Users/chhavis/cis565/Project2-Number-Algorithms/Project2-Stream-Compaction/cmake/FindCUDA/parse_cubin.cmake
+//Location of run_nvcc.cmake
+CUDA_run_nvcc:INTERNAL=C:/Users/chhavis/cis565/Project2-Number-Algorithms/Project2-Stream-Compaction/cmake/FindCUDA/run_nvcc.cmake
+//Details about finding CUDA
+FIND_PACKAGE_MESSAGE_DETAILS_CUDA:INTERNAL=[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0][C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/bin/nvcc.exe][C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/include][C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64/cudart.lib][v10.1(10)]
+//Details about finding Threads
+FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
+
diff --git a/Project2-Stream-Compaction/build/CPUScan_NonpowOf2.txt b/Project2-Stream-Compaction/build/CPUScan_NonpowOf2.txt
new file mode 100644
index 0000000..82fe75b
--- /dev/null
+++ b/Project2-Stream-Compaction/build/CPUScan_NonpowOf2.txt
@@ -0,0 +1,18 @@
+10 | size 1024 | 0.0016 (std::chrono Measured)
+11 | size 2048 | 0.0032 (std::chrono Measured)
+12 | size 4096 | 0.0064 (std::chrono Measured)
+13 | size 8192 | 0.0128 (std::chrono Measured)
+14 | size 16384 | 0.0387 (std::chrono Measured)
+15 | size 32768 | 0.0635 (std::chrono Measured)
+16 | size 65536 | 0.1145 (std::chrono Measured)
+17 | size 131072 | 0.2176 (std::chrono Measured)
+18 | size 262144 | 1.2292 (std::chrono Measured)
+19 | size 524288 | 2.4083 (std::chrono Measured)
+20 | size 1048576 | 4.6837 (std::chrono Measured)
+21 | size 2097152 | 9.1342 (std::chrono Measured)
+22 | size 4194304 | 20.2751 (std::chrono Measured)
+23 | size 8388608 | 38.1808 (std::chrono Measured)
+24 | size 16777216 | 78.0703 (std::chrono Measured)
+25 | size 33554432 | 153.249 (std::chrono Measured)
+26 | size 67108864 | 308.449 (std::chrono Measured)
+27 | size 134217728 | 592.209 (std::chrono Measured)
diff --git a/Project2-Stream-Compaction/build/CPUScan_powOf2.txt b/Project2-Stream-Compaction/build/CPUScan_powOf2.txt
new file mode 100644
index 0000000..da4c361
--- /dev/null
+++ b/Project2-Stream-Compaction/build/CPUScan_powOf2.txt
@@ -0,0 +1,18 @@
+10 | size 1024 | 0.0017 (std::chrono Measured)
+11 | size 2048 | 0.0032 (std::chrono Measured)
+12 | size 4096 | 0.0064 (std::chrono Measured)
+13 | size 8192 | 0.0258 (std::chrono Measured)
+14 | size 16384 | 0.0388 (std::chrono Measured)
+15 | size 32768 | 0.0644 (std::chrono Measured)
+16 | size 65536 | 0.1286 (std::chrono Measured)
+17 | size 131072 | 0.2077 (std::chrono Measured)
+18 | size 262144 | 1.1748 (std::chrono Measured)
+19 | size 524288 | 2.7231 (std::chrono Measured)
+20 | size 1048576 | 4.5919 (std::chrono Measured)
+21 | size 2097152 | 10.2374 (std::chrono Measured)
+22 | size 4194304 | 19.6501 (std::chrono Measured)
+23 | size 8388608 | 38.513 (std::chrono Measured)
+24 | size 16777216 | 75.7569 (std::chrono Measured)
+25 | size 33554432 | 156.162 (std::chrono Measured)
+26 | size 67108864 | 309.375 (std::chrono Measured)
+27 | size 134217728 | 593.783 (std::chrono Measured)
diff --git a/Project2-Stream-Compaction/build/Naive_Scan.txt b/Project2-Stream-Compaction/build/Naive_Scan.txt
new file mode 100644
index 0000000..e9afcd2
--- /dev/null
+++ b/Project2-Stream-Compaction/build/Naive_Scan.txt
@@ -0,0 +1,18 @@
+10 | size 1024 StreamCompaction::Naive::scan Poweof2 1024 | 0.068608 (CUDA Measured)
+11 | size 2048 StreamCompaction::Naive::scan Poweof2 2048 | 0.08128 (CUDA Measured)
+12 | size 4096 StreamCompaction::Naive::scan Poweof2 4096 | 0.069632 (CUDA Measured)
+13 | size 8192 StreamCompaction::Naive::scan Poweof2 8192 | 0.084992 (CUDA Measured)
+14 | size 16384 StreamCompaction::Naive::scan Poweof2 16384 | 0.14784 (CUDA Measured)
+15 | size 32768 StreamCompaction::Naive::scan Poweof2 32768 | 0.14448 (CUDA Measured)
+16 | size 65536 StreamCompaction::Naive::scan Poweof2 65536 | 0.222144 (CUDA Measured)
+17 | size 131072 StreamCompaction::Naive::scan Poweof2 131072 | 0.36992 (CUDA Measured)
+18 | size 262144 StreamCompaction::Naive::scan Poweof2 262144 | 1.21779 (CUDA Measured)
+19 | size 524288 StreamCompaction::Naive::scan Poweof2 524288 | 2.50269 (CUDA Measured)
+20 | size 1048576 StreamCompaction::Naive::scan Poweof2 1048576 | 5.72416 (CUDA Measured)
+21 | size 2097152 StreamCompaction::Naive::scan Poweof2 2097152 | 11.3056 (CUDA Measured)
+22 | size 4194304 StreamCompaction::Naive::scan Poweof2 4194304 | 23.562 (CUDA Measured)
+23 | size 8388608 StreamCompaction::Naive::scan Poweof2 8388608 | 48.5099 (CUDA Measured)
+24 | size 16777216 StreamCompaction::Naive::scan Poweof2 16777216 | 100.284 (CUDA Measured)
+25 | size 33554432 StreamCompaction::Naive::scan Poweof2 33554432 | 209.413 (CUDA Measured)
+26 | size 67108864 StreamCompaction::Naive::scan Poweof2 67108864 | 438.411 (CUDA Measured)
+27 | size 134217728 StreamCompaction::Naive::scan Poweof2 134217728 | 915.141 (CUDA Measured)
diff --git a/Project2-Stream-Compaction/build/Naive_Scan_NP.txt b/Project2-Stream-Compaction/build/Naive_Scan_NP.txt
new file mode 100644
index 0000000..e7df92e
--- /dev/null
+++ b/Project2-Stream-Compaction/build/Naive_Scan_NP.txt
@@ -0,0 +1,18 @@
+10 | size 1024 StreamCompaction::Naive::scan NonPoweof2 1024 | 0.0688 (CUDA Measured)
+11 | size 2048 StreamCompaction::Naive::scan NonPoweof2 2048 | 0.064608 (CUDA Measured)
+12 | size 4096 StreamCompaction::Naive::scan NonPoweof2 4096 | 0.124928 (CUDA Measured)
+13 | size 8192 StreamCompaction::Naive::scan NonPoweof2 8192 | 0.084128 (CUDA Measured)
+14 | size 16384 StreamCompaction::Naive::scan NonPoweof2 16384 | 0.113664 (CUDA Measured)
+15 | size 32768 StreamCompaction::Naive::scan NonPoweof2 32768 | 0.140384 (CUDA Measured)
+16 | size 65536 StreamCompaction::Naive::scan NonPoweof2 65536 | 0.1904 (CUDA Measured)
+17 | size 131072 StreamCompaction::Naive::scan NonPoweof2 131072 | 0.365568 (CUDA Measured)
+18 | size 262144 StreamCompaction::Naive::scan NonPoweof2 262144 | 1.21453 (CUDA Measured)
+19 | size 524288 StreamCompaction::Naive::scan NonPoweof2 524288 | 2.56717 (CUDA Measured)
+20 | size 1048576 StreamCompaction::Naive::scan NonPoweof2 1048576 | 5.35597 (CUDA Measured)
+21 | size 2097152 StreamCompaction::Naive::scan NonPoweof2 2097152 | 11.4154 (CUDA Measured)
+22 | size 4194304 StreamCompaction::Naive::scan NonPoweof2 4194304 | 23.2688 (CUDA Measured)
+23 | size 8388608 StreamCompaction::Naive::scan NonPoweof2 8388608 | 48.5369 (CUDA Measured)
+24 | size 16777216 StreamCompaction::Naive::scan NonPoweof2 16777216 | 100.355 (CUDA Measured)
+25 | size 33554432 StreamCompaction::Naive::scan NonPoweof2 33554432 | 209.404 (CUDA Measured)
+26 | size 67108864 StreamCompaction::Naive::scan NonPoweof2 67108864 | 438.405 (CUDA Measured)
+27 | size 134217728 StreamCompaction::Naive::scan NonPoweof2 134217728 | 914.783 (CUDA Measured)
diff --git a/Project2-Stream-Compaction/build/SC_CPU.txt b/Project2-Stream-Compaction/build/SC_CPU.txt
new file mode 100644
index 0000000..1251822
--- /dev/null
+++ b/Project2-Stream-Compaction/build/SC_CPU.txt
@@ -0,0 +1,18 @@
+10 1024 0.0162 (std::chrono Measured)
+11 2048 0.0049 (std::chrono Measured)
+12 4096 0.0103 (std::chrono Measured)
+13 8192 0.0209 (std::chrono Measured)
+14 16384 0.0536 (std::chrono Measured)
+15 32768 0.0947 (std::chrono Measured)
+16 65536 0.1886 (std::chrono Measured)
+17 131072 0.4968 (std::chrono Measured)
+18 262144 0.8295 (std::chrono Measured)
+19 524288 1.6799 (std::chrono Measured)
+20 1048576 2.6251 (std::chrono Measured)
+21 2097152 5.3265 (std::chrono Measured)
+22 4194304 10.4373 (std::chrono Measured)
+23 8388608 24.9129 (std::chrono Measured)
+24 16777216 40.9874 (std::chrono Measured)
+25 33554432 87.3525 (std::chrono Measured)
+26 67108864 172.296 (std::chrono Measured)
+27 134217728 338.16 (std::chrono Measured)
diff --git a/Project2-Stream-Compaction/build/SC_CPU_NP.txt b/Project2-Stream-Compaction/build/SC_CPU_NP.txt
new file mode 100644
index 0000000..77299da
--- /dev/null
+++ b/Project2-Stream-Compaction/build/SC_CPU_NP.txt
@@ -0,0 +1,18 @@
+10 1024 0.0031 (std::chrono Measured)
+11 2048 0.0059 (std::chrono Measured)
+12 4096 0.0232 (std::chrono Measured)
+13 8192 0.0195 (std::chrono Measured)
+14 16384 0.0387 (std::chrono Measured)
+15 32768 0.0922 (std::chrono Measured)
+16 65536 0.187 (std::chrono Measured)
+17 131072 0.3448 (std::chrono Measured)
+18 262144 1.0529 (std::chrono Measured)
+19 524288 1.4681 (std::chrono Measured)
+20 1048576 2.9438 (std::chrono Measured)
+21 2097152 5.1308 (std::chrono Measured)
+22 4194304 10.8661 (std::chrono Measured)
+23 8388608 22.593 (std::chrono Measured)
+24 16777216 41.9663 (std::chrono Measured)
+25 33554432 85.5886 (std::chrono Measured)
+26 67108864 172.607 (std::chrono Measured)
+27 134217728 336.179 (std::chrono Measured)
diff --git a/Project2-Stream-Compaction/build/SC_CPU_withScan.txt b/Project2-Stream-Compaction/build/SC_CPU_withScan.txt
new file mode 100644
index 0000000..e5e7cba
--- /dev/null
+++ b/Project2-Stream-Compaction/build/SC_CPU_withScan.txt
@@ -0,0 +1,18 @@
+10 1024 0.1182 (std::chrono Measured)
+11 2048 0.0341 (std::chrono Measured)
+12 4096 0.0724 (std::chrono Measured)
+13 8192 0.1138 (std::chrono Measured)
+14 16384 0.1541 (std::chrono Measured)
+15 32768 0.3097 (std::chrono Measured)
+16 65536 0.6111 (std::chrono Measured)
+17 131072 1.18 (std::chrono Measured)
+18 262144 3.1165 (std::chrono Measured)
+19 524288 6.2277 (std::chrono Measured)
+20 1048576 14.0424 (std::chrono Measured)
+21 2097152 23.6869 (std::chrono Measured)
+22 4194304 47.6508 (std::chrono Measured)
+23 8388608 97.6463 (std::chrono Measured)
+24 16777216 191.942 (std::chrono Measured)
+25 33554432 384.582 (std::chrono Measured)
+26 67108864 776.258 (std::chrono Measured)
+27 134217728 1626.96 (std::chrono Measured)
diff --git a/Project2-Stream-Compaction/build/SC_WorkEff.txt b/Project2-Stream-Compaction/build/SC_WorkEff.txt
new file mode 100644
index 0000000..1532fc5
--- /dev/null
+++ b/Project2-Stream-Compaction/build/SC_WorkEff.txt
@@ -0,0 +1,18 @@
+10 1024 0.363712 (CUDA Measured)
+11 2048 0.352608 (CUDA Measured)
+12 4096 0.475072 (CUDA Measured)
+13 8192 0.47808 (CUDA Measured)
+14 16384 0.635904 (CUDA Measured)
+15 32768 0.780288 (CUDA Measured)
+16 65536 1.07146 (CUDA Measured)
+17 131072 1.6855 (CUDA Measured)
+18 262144 3.84102 (CUDA Measured)
+19 524288 8.06608 (CUDA Measured)
+20 1048576 13.3786 (CUDA Measured)
+21 2097152 25.1043 (CUDA Measured)
+22 4194304 49.4858 (CUDA Measured)
+23 8388608 100.107 (CUDA Measured)
+24 16777216 196.722 (CUDA Measured)
+25 33554432 370.219 (CUDA Measured)
+26 67108864 741.854 (CUDA Measured)
+27 134217728 1582.96 (CUDA Measured)
diff --git a/Project2-Stream-Compaction/build/SC_WorkEff_NP.txt b/Project2-Stream-Compaction/build/SC_WorkEff_NP.txt
new file mode 100644
index 0000000..ce3c793
--- /dev/null
+++ b/Project2-Stream-Compaction/build/SC_WorkEff_NP.txt
@@ -0,0 +1,18 @@
+10 1024 0.471392 (CUDA Measured)
+11 2048 0.48128 (CUDA Measured)
+12 4096 0.507904 (CUDA Measured)
+13 8192 0.521536 (CUDA Measured)
+14 16384 0.64048 (CUDA Measured)
+15 32768 0.753696 (CUDA Measured)
+16 65536 1.0329 (CUDA Measured)
+17 131072 2.02022 (CUDA Measured)
+18 262144 3.93488 (CUDA Measured)
+19 524288 7.89139 (CUDA Measured)
+20 1048576 13.726 (CUDA Measured)
+21 2097152 26.6542 (CUDA Measured)
+22 4194304 49.4346 (CUDA Measured)
+23 8388608 96.8483 (CUDA Measured)
+24 16777216 192.084 (CUDA Measured)
+25 33554432 377.944 (CUDA Measured)
+26 67108864 748.722 (CUDA Measured)
+27 134217728 1594.18 (CUDA Measured)
diff --git a/Project2-Stream-Compaction/build/ThrustScan_NonpowOf2.txt b/Project2-Stream-Compaction/build/ThrustScan_NonpowOf2.txt
new file mode 100644
index 0000000..bbeb645
--- /dev/null
+++ b/Project2-Stream-Compaction/build/ThrustScan_NonpowOf2.txt
@@ -0,0 +1,18 @@
+10 | size 1024 | 0.059968 (CUDA Measured)
+11 | size 2048 | 0.079328 (CUDA Measured)
+12 | size 4096 | 0.093792 (CUDA Measured)
+13 | size 8192 | 0.070368 (CUDA Measured)
+14 | size 16384 | 0.06944 (CUDA Measured)
+15 | size 32768 | 0.074528 (CUDA Measured)
+16 | size 65536 | 0.059296 (CUDA Measured)
+17 | size 131072 | 0.088416 (CUDA Measured)
+18 | size 262144 | 0.215808 (CUDA Measured)
+19 | size 524288 | 0.282624 (CUDA Measured)
+20 | size 1048576 | 0.499712 (CUDA Measured)
+21 | size 2097152 | 0.545792 (CUDA Measured)
+22 | size 4194304 | 0.939808 (CUDA Measured)
+23 | size 8388608 | 1.44179 (CUDA Measured)
+24 | size 16777216 | 2.50982 (CUDA Measured)
+25 | size 33554432 | 4.66563 (CUDA Measured)
+26 | size 67108864 | 8.83098 (CUDA Measured)
+27 | size 134217728 | 17.2687 (CUDA Measured)
diff --git a/Project2-Stream-Compaction/build/ThrustScan_powOf2.txt b/Project2-Stream-Compaction/build/ThrustScan_powOf2.txt
new file mode 100644
index 0000000..171e56e
--- /dev/null
+++ b/Project2-Stream-Compaction/build/ThrustScan_powOf2.txt
@@ -0,0 +1,18 @@
+10 | size 1024 | 0.057536 (CUDA Measured)
+11 | size 2048 | 0.098432 (CUDA Measured)
+12 | size 4096 | 0.054528 (CUDA Measured)
+13 | size 8192 | 0.102432 (CUDA Measured)
+14 | size 16384 | 0.070112 (CUDA Measured)
+15 | size 32768 | 0.090112 (CUDA Measured)
+16 | size 65536 | 0.089184 (CUDA Measured)
+17 | size 131072 | 0.08608 (CUDA Measured)
+18 | size 262144 | 0.256 (CUDA Measured)
+19 | size 524288 | 0.380928 (CUDA Measured)
+20 | size 1048576 | 0.49024 (CUDA Measured)
+21 | size 2097152 | 0.546112 (CUDA Measured)
+22 | size 4194304 | 0.878592 (CUDA Measured)
+23 | size 8388608 | 1.31277 (CUDA Measured)
+24 | size 16777216 | 2.76662 (CUDA Measured)
+25 | size 33554432 | 4.59968 (CUDA Measured)
+26 | size 67108864 | 8.79779 (CUDA Measured)
+27 | size 134217728 | 17.3084 (CUDA Measured)
diff --git a/Project2-Stream-Compaction/build/WorkEff_Scan.txt b/Project2-Stream-Compaction/build/WorkEff_Scan.txt
new file mode 100644
index 0000000..c5aa6b8
--- /dev/null
+++ b/Project2-Stream-Compaction/build/WorkEff_Scan.txt
@@ -0,0 +1,18 @@
+10 | size 1024 StreamCompaction::Efficient::scan Poweof2 1024 | 0.144384 (CUDA Measured)
+11 | size 2048 StreamCompaction::Efficient::scan Poweof2 2048 | 0.149504 (CUDA Measured)
+12 | size 4096 StreamCompaction::Efficient::scan Poweof2 4096 | 0.120096 (CUDA Measured)
+13 | size 8192 StreamCompaction::Efficient::scan Poweof2 8192 | 0.144224 (CUDA Measured)
+14 | size 16384 StreamCompaction::Efficient::scan Poweof2 16384 | 0.178176 (CUDA Measured)
+15 | size 32768 StreamCompaction::Efficient::scan Poweof2 32768 | 0.2072 (CUDA Measured)
+16 | size 65536 StreamCompaction::Efficient::scan Poweof2 65536 | 0.316352 (CUDA Measured)
+17 | size 131072 StreamCompaction::Efficient::scan Poweof2 131072 | 0.634336 (CUDA Measured)
+18 | size 262144 StreamCompaction::Efficient::scan Poweof2 262144 | 0.91856 (CUDA Measured)
+19 | size 524288 StreamCompaction::Efficient::scan Poweof2 524288 | 1.89235 (CUDA Measured)
+20 | size 1048576 StreamCompaction::Efficient::scan Poweof2 1048576 | 3.70922 (CUDA Measured)
+21 | size 2097152 StreamCompaction::Efficient::scan Poweof2 2097152 | 7.4793 (CUDA Measured)
+22 | size 4194304 StreamCompaction::Efficient::scan Poweof2 4194304 | 15.842 (CUDA Measured)
+23 | size 8388608 StreamCompaction::Efficient::scan Poweof2 8388608 | 28.4611 (CUDA Measured)
+24 | size 16777216 StreamCompaction::Efficient::scan Poweof2 16777216 | 56.9283 (CUDA Measured)
+25 | size 33554432 StreamCompaction::Efficient::scan Poweof2 33554432 | 115.696 (CUDA Measured)
+26 | size 67108864 StreamCompaction::Efficient::scan Poweof2 67108864 | 238.946 (CUDA Measured)
+27 | size 134217728 StreamCompaction::Efficient::scan Poweof2 134217728 | 493.241 (CUDA Measured)
diff --git a/Project2-Stream-Compaction/build/WorkEff_Scan_NP.txt b/Project2-Stream-Compaction/build/WorkEff_Scan_NP.txt
new file mode 100644
index 0000000..474e038
--- /dev/null
+++ b/Project2-Stream-Compaction/build/WorkEff_Scan_NP.txt
@@ -0,0 +1,18 @@
+10 | size 1024 StreamCompaction::Efficient::scan NonPoweof2 1024 | 0.161792 (CUDA Measured)
+11 | size 2048 StreamCompaction::Efficient::scan NonPoweof2 2048 | 0.132384 (CUDA Measured)
+12 | size 4096 StreamCompaction::Efficient::scan NonPoweof2 4096 | 0.132928 (CUDA Measured)
+13 | size 8192 StreamCompaction::Efficient::scan NonPoweof2 8192 | 0.181408 (CUDA Measured)
+14 | size 16384 StreamCompaction::Efficient::scan NonPoweof2 16384 | 0.219008 (CUDA Measured)
+15 | size 32768 StreamCompaction::Efficient::scan NonPoweof2 32768 | 0.222848 (CUDA Measured)
+16 | size 65536 StreamCompaction::Efficient::scan NonPoweof2 65536 | 0.296288 (CUDA Measured)
+17 | size 131072 StreamCompaction::Efficient::scan NonPoweof2 131072 | 0.504832 (CUDA Measured)
+18 | size 262144 StreamCompaction::Efficient::scan NonPoweof2 262144 | 0.892832 (CUDA Measured)
+19 | size 524288 StreamCompaction::Efficient::scan NonPoweof2 524288 | 2.23437 (CUDA Measured)
+20 | size 1048576 StreamCompaction::Efficient::scan NonPoweof2 1048576 | 3.67309 (CUDA Measured)
+21 | size 2097152 StreamCompaction::Efficient::scan NonPoweof2 2097152 | 7.51827 (CUDA Measured)
+22 | size 4194304 StreamCompaction::Efficient::scan NonPoweof2 4194304 | 14.0038 (CUDA Measured)
+23 | size 8388608 StreamCompaction::Efficient::scan NonPoweof2 8388608 | 28.6353 (CUDA Measured)
+24 | size 16777216 StreamCompaction::Efficient::scan NonPoweof2 16777216 | 56.4352 (CUDA Measured)
+25 | size 33554432 StreamCompaction::Efficient::scan NonPoweof2 33554432 | 115.666 (CUDA Measured)
+26 | size 67108864 StreamCompaction::Efficient::scan NonPoweof2 67108864 | 239.354 (CUDA Measured)
+27 | size 134217728 StreamCompaction::Efficient::scan NonPoweof2 134217728 | 493.4 (CUDA Measured)
diff --git a/Project2-Stream-Compaction/img/BlockSize_vs_Runtime.png b/Project2-Stream-Compaction/img/BlockSize_vs_Runtime.png
new file mode 100644
index 0000000..bbd12d9
Binary files /dev/null and b/Project2-Stream-Compaction/img/BlockSize_vs_Runtime.png differ
diff --git a/Project2-Stream-Compaction/img/BlockSz-128-DataSz-20.PNG b/Project2-Stream-Compaction/img/BlockSz-128-DataSz-20.PNG
new file mode 100644
index 0000000..c980577
Binary files /dev/null and b/Project2-Stream-Compaction/img/BlockSz-128-DataSz-20.PNG differ
diff --git a/Project2-Stream-Compaction/img/DownSweepScan.png b/Project2-Stream-Compaction/img/DownSweepScan.png
new file mode 100644
index 0000000..a8ecb33
Binary files /dev/null and b/Project2-Stream-Compaction/img/DownSweepScan.png differ
diff --git a/Project2-Stream-Compaction/img/NaiveScan.png b/Project2-Stream-Compaction/img/NaiveScan.png
new file mode 100644
index 0000000..55f53ca
Binary files /dev/null and b/Project2-Stream-Compaction/img/NaiveScan.png differ
diff --git a/Project2-Stream-Compaction/img/SC1.png b/Project2-Stream-Compaction/img/SC1.png
new file mode 100644
index 0000000..b73a929
Binary files /dev/null and b/Project2-Stream-Compaction/img/SC1.png differ
diff --git a/Project2-Stream-Compaction/img/SC2.png b/Project2-Stream-Compaction/img/SC2.png
new file mode 100644
index 0000000..cdb2eab
Binary files /dev/null and b/Project2-Stream-Compaction/img/SC2.png differ
diff --git a/Project2-Stream-Compaction/img/Scan1.png b/Project2-Stream-Compaction/img/Scan1.png
new file mode 100644
index 0000000..f0d07ad
Binary files /dev/null and b/Project2-Stream-Compaction/img/Scan1.png differ
diff --git a/Project2-Stream-Compaction/img/Scan1NP.png b/Project2-Stream-Compaction/img/Scan1NP.png
new file mode 100644
index 0000000..07d3ab6
Binary files /dev/null and b/Project2-Stream-Compaction/img/Scan1NP.png differ
diff --git a/Project2-Stream-Compaction/img/Scan2.png b/Project2-Stream-Compaction/img/Scan2.png
new file mode 100644
index 0000000..f010255
Binary files /dev/null and b/Project2-Stream-Compaction/img/Scan2.png differ
diff --git a/Project2-Stream-Compaction/img/Scan2NP.png b/Project2-Stream-Compaction/img/Scan2NP.png
new file mode 100644
index 0000000..e663e7d
Binary files /dev/null and b/Project2-Stream-Compaction/img/Scan2NP.png differ
diff --git a/Project2-Stream-Compaction/img/UpSweepScan.png b/Project2-Stream-Compaction/img/UpSweepScan.png
new file mode 100644
index 0000000..7ca9b14
Binary files /dev/null and b/Project2-Stream-Compaction/img/UpSweepScan.png differ
diff --git a/Project2-Stream-Compaction/src/main.cpp b/Project2-Stream-Compaction/src/main.cpp
index d016553..bc83133 100644
--- a/Project2-Stream-Compaction/src/main.cpp
+++ b/Project2-Stream-Compaction/src/main.cpp
@@ -13,139 +13,205 @@
#include
#include "testing_helpers.hpp"
-const int SIZE = 1 << 8; // feel free to change the size of array
-const int NPOT = SIZE - 3; // Non-Power-Of-Two
-int *a = new int[SIZE];
-int *b = new int[SIZE];
-int *c = new int[SIZE];
+#include
+#include
+using namespace std;
-int main(int argc, char* argv[]) {
- // Scan tests
+//const int SIZE = 1 << 20; // feel free to change the size of array
+//const int NPOT = SIZE - 3; // Non-Power-Of-Two
+//int *a = new int[SIZE];
+//int *b = new int[SIZE];
+//int *c = new int[SIZE];
- printf("\n");
- printf("****************\n");
- printf("** SCAN TESTS **\n");
- printf("****************\n");
-
- genArray(SIZE - 1, a, 50); // Leave a 0 at the end to test that edge case
- a[SIZE - 1] = 0;
- printArray(SIZE, a, true);
-
- // initialize b using StreamCompaction::CPU::scan you implement
- // We use b for further comparison. Make sure your StreamCompaction::CPU::scan is correct.
- // At first all cases passed because b && c are all zeroes.
- zeroArray(SIZE, b);
- printDesc("cpu scan, power-of-two");
- StreamCompaction::CPU::scan(SIZE, b, a);
- printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
- printArray(SIZE, b, true);
-
- zeroArray(SIZE, c);
- printDesc("cpu scan, non-power-of-two");
- StreamCompaction::CPU::scan(NPOT, c, a);
- printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
- printArray(NPOT, b, true);
- printCmpResult(NPOT, b, c);
-
- zeroArray(SIZE, c);
- printDesc("naive scan, power-of-two");
- StreamCompaction::Naive::scan(SIZE, c, a);
- printElapsedTime(StreamCompaction::Naive::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(SIZE, c, true);
- printCmpResult(SIZE, b, c);
-
- /* For bug-finding only: Array of 1s to help find bugs in stream compaction or scan
- onesArray(SIZE, c);
- printDesc("1s array for finding bugs");
- StreamCompaction::Naive::scan(SIZE, c, a);
- printArray(SIZE, c, true); */
-
- zeroArray(SIZE, c);
- printDesc("naive scan, non-power-of-two");
- StreamCompaction::Naive::scan(NPOT, c, a);
- printElapsedTime(StreamCompaction::Naive::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(SIZE, c, true);
- printCmpResult(NPOT, b, c);
-
- zeroArray(SIZE, c);
- printDesc("work-efficient scan, power-of-two");
- StreamCompaction::Efficient::scan(SIZE, c, a);
- printElapsedTime(StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(SIZE, c, true);
- printCmpResult(SIZE, b, c);
-
- zeroArray(SIZE, c);
- printDesc("work-efficient scan, non-power-of-two");
- StreamCompaction::Efficient::scan(NPOT, c, a);
- printElapsedTime(StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(NPOT, c, true);
- printCmpResult(NPOT, b, c);
-
- zeroArray(SIZE, c);
- printDesc("thrust scan, power-of-two");
- StreamCompaction::Thrust::scan(SIZE, c, a);
- printElapsedTime(StreamCompaction::Thrust::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(SIZE, c, true);
- printCmpResult(SIZE, b, c);
-
- zeroArray(SIZE, c);
- printDesc("thrust scan, non-power-of-two");
- StreamCompaction::Thrust::scan(NPOT, c, a);
- printElapsedTime(StreamCompaction::Thrust::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(NPOT, c, true);
- printCmpResult(NPOT, b, c);
+int SIZE ;
+int NPOT ;
+int *a ;
+int *b ;
+int *c ;
+
+
+int main(int argc, char* argv[]) {
+ // Scan tests
+
+ printf("\n");
+ printf("****************\n");
+ printf("** SCAN TESTS **\n");
+ printf("****************\n");
+
+ //ofstream outputFile1("Naive_Scan.txt");
+ //ofstream outputFile11("Naive_Scan_NP.txt");
+ //ofstream outputFile2("WorkEff_Scan.txt");
+ //ofstream outputFile22("WorkEff_Scan_NP.txt");
+
+
+ for (int sz = 20; sz < 21; sz++) {
+
+ //int SIZE = 1 << 20; // feel free to change the size of array
+ SIZE = 1 << sz;
+ NPOT = SIZE - 3; // Non-Power-Of-Two
+ a = new int[SIZE];
+ b = new int[SIZE];
+ c = new int[SIZE];
+
+ genArray(SIZE - 1, a, 50); // Leave a 0 at the end to test that edge case
+ a[SIZE - 1] = 0;
+ printArray(SIZE, a, true);
+
+ // CPU Scans ==================================================================================================
+
+ // initialize b using StreamCompaction::CPU::scan you implement
+ // We use b for further comparison. Make sure your StreamCompaction::CPU::scan is correct.
+ // At first all cases passed because b && c are all zeroes.
+
+ zeroArray(SIZE, b);
+ printDesc("cpu scan, power-of-two");
+ StreamCompaction::CPU::scan(SIZE, b, a);
+ printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
+ //outputFile1 << sz << " | size " << SIZE << " | " << StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation() << " " << "(std::chrono Measured)" << endl;
+ printArray(SIZE, b, true);
+
+ zeroArray(SIZE, c);
+ printDesc("cpu scan, non-power-of-two");
+ StreamCompaction::CPU::scan(NPOT, c, a);
+ printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
+ //outputFile2 << sz << " | size " << SIZE << " | " << StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation() << " " << "(std::chrono Measured)" << endl;
+ printArray(NPOT, b, true);
+ printCmpResult(NPOT, b, c);
+
+
+ // GPU naive Scan ===========================================================================================
+
+ zeroArray(SIZE, c);
+ printDesc("GPU naive scan, power-of-two");
+ StreamCompaction::Naive::scan(SIZE, c, a);
+ printElapsedTime(StreamCompaction::Naive::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
+ //outputFile1 << sz << " | size " << SIZE << " StreamCompaction::Naive::scan Poweof2 " << SIZE << " | " << StreamCompaction::Naive::timer().getGpuElapsedTimeForPreviousOperation() << " (CUDA Measured)" << endl;
+ //printArray(SIZE, c, true);
+ printCmpResult(SIZE, b, c);
+
+ // For bug-finding only: Array of 1s to help find bugs in stream compaction or scan
+ //onesArray(SIZE, c);
+ //printDesc("1s array for finding bugs");
+ //StreamCompaction::Naive::scan(SIZE, c, a);
+ //printArray(SIZE, c, true);
+
+ zeroArray(SIZE, c);
+ printDesc("GPU naive scan, non-power-of-two");
+ StreamCompaction::Naive::scan(NPOT, c, a);
+ printElapsedTime(StreamCompaction::Naive::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
+ //outputFile11 << sz << " | size " << SIZE << " StreamCompaction::Naive::scan NonPoweof2 " << SIZE << " | " << StreamCompaction::Naive::timer().getGpuElapsedTimeForPreviousOperation() << " (CUDA Measured)" << endl;
+ //printArray(SIZE, c, true);
+ printCmpResult(NPOT, b, c);
+
+ // GPU Work Eff Scan ===========================================================================================
+
+ zeroArray(SIZE, c);
+ printDesc("work-efficient scan, power-of-two");
+ StreamCompaction::Efficient::scan(SIZE, c, a);
+ printElapsedTime(StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
+ //outputFile2 << sz << " | size " << SIZE <<" StreamCompaction::Efficient::scan Poweof2 " << SIZE << " | " << StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation() << " (CUDA Measured)" << endl;
+ printCmpResult(SIZE, b, c);
+
+ zeroArray(SIZE, c);
+ printDesc("work-efficient scan, non-power-of-two");
+ StreamCompaction::Efficient::scan(NPOT, c, a);
+ printElapsedTime(StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
+ //outputFile22<< sz << " | size " << SIZE << " StreamCompaction::Efficient::scan NonPoweof2 " << SIZE << " | " << StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation() << " (CUDA Measured)" << endl;
+ //printArray(NPOT, c, true);
+ printCmpResult(NPOT, b, c);
+
+ // GPU Thrust Scan ===========================================================================================
+
+ zeroArray(SIZE, c);
+ printDesc("thrust scan, power-of-two");
+ StreamCompaction::Thrust::scan(SIZE, c, a);
+ printElapsedTime(StreamCompaction::Thrust::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
+ //outputFile1 << sz << " | size " << SIZE << " | " << StreamCompaction::Thrust::timer().getGpuElapsedTimeForPreviousOperation() << " " << "(CUDA Measured)" << endl;
+ //printArray(SIZE, c, true);
+ printCmpResult(SIZE, b, c);
+
+ zeroArray(SIZE, c);
+ printDesc("thrust scan, non-power-of-two");
+ StreamCompaction::Thrust::scan(NPOT, c, a);
+ printElapsedTime(StreamCompaction::Thrust::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
+ //outputFile2 << sz << " | size " << SIZE << " | " << StreamCompaction::Thrust::timer().getGpuElapsedTimeForPreviousOperation() << " " << "(CUDA Measured)" << endl;
+ //printArray(NPOT, c, true);
+ printCmpResult(NPOT, b, c);
+
+ }
printf("\n");
printf("*****************************\n");
printf("** STREAM COMPACTION TESTS **\n");
printf("*****************************\n");
- // Compaction tests
-
- genArray(SIZE - 1, a, 4); // Leave a 0 at the end to test that edge case
- a[SIZE - 1] = 0;
- printArray(SIZE, a, true);
-
- int count, expectedCount, expectedNPOT;
-
- // initialize b using StreamCompaction::CPU::compactWithoutScan you implement
- // We use b for further comparison. Make sure your StreamCompaction::CPU::compactWithoutScan is correct.
- zeroArray(SIZE, b);
- printDesc("cpu compact without scan, power-of-two");
- count = StreamCompaction::CPU::compactWithoutScan(SIZE, b, a);
- printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
- expectedCount = count;
- printArray(count, b, true);
- printCmpLenResult(count, expectedCount, b, b);
-
- zeroArray(SIZE, c);
- printDesc("cpu compact without scan, non-power-of-two");
- count = StreamCompaction::CPU::compactWithoutScan(NPOT, c, a);
- printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
- expectedNPOT = count;
- printArray(count, c, true);
- printCmpLenResult(count, expectedNPOT, b, c);
-
- zeroArray(SIZE, c);
- printDesc("cpu compact with scan");
- count = StreamCompaction::CPU::compactWithScan(SIZE, c, a);
- printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
- printArray(count, c, true);
- printCmpLenResult(count, expectedCount, b, c);
-
- zeroArray(SIZE, c);
- printDesc("work-efficient compact, power-of-two");
- count = StreamCompaction::Efficient::compact(SIZE, c, a);
- printElapsedTime(StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(count, c, true);
- printCmpLenResult(count, expectedCount, b, c);
-
- zeroArray(SIZE, c);
- printDesc("work-efficient compact, non-power-of-two");
- count = StreamCompaction::Efficient::compact(NPOT, c, a);
- printElapsedTime(StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
- //printArray(count, c, true);
- printCmpLenResult(count, expectedNPOT, b, c);
+ //ofstream outputFile1("SC_CPU.txt");
+ //ofstream outputFile11("SC_CPU_NP.txt");
+ //ofstream outputFile2("SC_CPU_withScan.txt");
+ //ofstream outputFile3("SC_WorkEff.txt");
+ //ofstream outputFile33("SC_WorkEff_NP.txt");
+
+ for (int sz = 20; sz < 21; sz++) {
+
+ //int SIZE = 1 << 20; // feel free to change the size of array
+ SIZE = 1 << sz;
+ NPOT = SIZE - 3; // Non-Power-Of-Two
+ a = new int[SIZE];
+ b = new int[SIZE];
+ c = new int[SIZE];
+
+ // Compaction tests
+
+ genArray(SIZE - 1, a, 4); // Leave a 0 at the end to test that edge case
+ a[SIZE - 1] = 0;
+ printArray(SIZE, a, true);
+
+ int count, expectedCount, expectedNPOT;
+
+ // initialize b using StreamCompaction::CPU::compactWithoutScan you implement
+ // We use b for further comparison. Make sure your StreamCompaction::CPU::compactWithoutScan is correct.
+ zeroArray(SIZE, b);
+ printDesc("cpu compact without scan, power-of-two");
+ count = StreamCompaction::CPU::compactWithoutScan(SIZE, b, a);
+ printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
+ //outputFile1 << sz << " " << SIZE << " " << StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation() << " " << "(std::chrono Measured)" << endl;
+ expectedCount = count;
+ printArray(count, b, true);
+ printCmpLenResult(count, expectedCount, b, b);
+
+ zeroArray(SIZE, c);
+ printDesc("cpu compact without scan, non-power-of-two");
+ count = StreamCompaction::CPU::compactWithoutScan(NPOT, c, a);
+ printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
+ //outputFile11 << sz << " " << SIZE << " " << StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation() << " " << "(std::chrono Measured)" << endl;
+ expectedNPOT = count;
+ printArray(count, c, true);
+ printCmpLenResult(count, expectedNPOT, b, c);
+
+ zeroArray(SIZE, c);
+ printDesc("cpu compact with scan");
+ count = StreamCompaction::CPU::compactWithScan(SIZE, c, a);
+ printElapsedTime(StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation(), "(std::chrono Measured)");
+ //outputFile2 << sz << " " << SIZE << " " << StreamCompaction::CPU::timer().getCpuElapsedTimeForPreviousOperation() << " " << "(std::chrono Measured)" << endl;
+ printArray(count, c, true);
+ printCmpLenResult(count, expectedCount, b, c);
+
+ zeroArray(SIZE, c);
+ printDesc("work-efficient compact, power-of-two");
+ count = StreamCompaction::Efficient::compact(SIZE, c, a);
+ printElapsedTime(StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
+ //outputFile3 << sz << " " << SIZE << " " << StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation() << " " << "(CUDA Measured)" << endl;
+ //printArray(count, c, true);
+ printCmpLenResult(count, expectedCount, b, c);
+
+ zeroArray(SIZE, c);
+ printDesc("work-efficient compact, non-power-of-two");
+ count = StreamCompaction::Efficient::compact(NPOT, c, a);
+ printElapsedTime(StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation(), "(CUDA Measured)");
+ //outputFile33 << sz << " " << SIZE << " " << StreamCompaction::Efficient::timer().getGpuElapsedTimeForPreviousOperation() << " " << "(CUDA Measured)" << endl;
+ //printArray(count, c, true);
+ printCmpLenResult(count, expectedNPOT, b, c);
+ }
system("pause"); // stop Win32 console from closing on exit
delete[] a;
diff --git a/Project2-Stream-Compaction/src/testing_helpers.hpp b/Project2-Stream-Compaction/src/testing_helpers.hpp
index b28a8d2..daa629f 100644
--- a/Project2-Stream-Compaction/src/testing_helpers.hpp
+++ b/Project2-Stream-Compaction/src/testing_helpers.hpp
@@ -73,4 +73,5 @@ template
void printElapsedTime(T time, std::string note = "")
{
std::cout << " elapsed time: " << time << "ms " << note << std::endl;
-}
\ No newline at end of file
+}
+
diff --git a/Project2-Stream-Compaction/stream_compaction/CMakeLists.txt b/Project2-Stream-Compaction/stream_compaction/CMakeLists.txt
index cdbef77..4bb0dc2 100644
--- a/Project2-Stream-Compaction/stream_compaction/CMakeLists.txt
+++ b/Project2-Stream-Compaction/stream_compaction/CMakeLists.txt
@@ -13,5 +13,5 @@ set(SOURCE_FILES
cuda_add_library(stream_compaction
${SOURCE_FILES}
- OPTIONS -arch=sm_20
+ OPTIONS -arch=sm_61
)
diff --git a/Project2-Stream-Compaction/stream_compaction/common.cu b/Project2-Stream-Compaction/stream_compaction/common.cu
index 2ed6d63..ded83d0 100644
--- a/Project2-Stream-Compaction/stream_compaction/common.cu
+++ b/Project2-Stream-Compaction/stream_compaction/common.cu
@@ -24,7 +24,16 @@ namespace StreamCompaction {
*/
__global__ void kernMapToBoolean(int n, int *bools, const int *idata) {
// TODO
- }
+ int tid = (blockIdx.x * blockDim.x) + threadIdx.x;
+ if (tid >= n) return;
+
+ if(idata[tid]!=0){
+ bools[tid] = 1;
+ }
+ else {
+ bools[tid] = 0;
+ }
+ }
/**
* Performs scatter on an array. That is, for each element in idata,
@@ -33,6 +42,12 @@ namespace StreamCompaction {
__global__ void kernScatter(int n, int *odata,
const int *idata, const int *bools, const int *indices) {
// TODO
+ int tid = (blockIdx.x * blockDim.x) + threadIdx.x;
+ if (tid >= n) return;
+
+ if (bools[tid] == 1) {
+ odata[indices[tid]] = idata[tid];
+ }
}
}
diff --git a/Project2-Stream-Compaction/stream_compaction/common.h b/Project2-Stream-Compaction/stream_compaction/common.h
index 996997e..2938bc0 100644
--- a/Project2-Stream-Compaction/stream_compaction/common.h
+++ b/Project2-Stream-Compaction/stream_compaction/common.h
@@ -12,6 +12,7 @@
#define FILENAME (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
#define checkCUDAError(msg) checkCUDAErrorFn(msg, FILENAME, __LINE__)
+#define blockSize 128
/**
* Check for CUDA errors; print and exit if there was a problem.
diff --git a/Project2-Stream-Compaction/stream_compaction/cpu.cu b/Project2-Stream-Compaction/stream_compaction/cpu.cu
index a2d3e6c..a5c30b1 100644
--- a/Project2-Stream-Compaction/stream_compaction/cpu.cu
+++ b/Project2-Stream-Compaction/stream_compaction/cpu.cu
@@ -18,9 +18,22 @@ namespace StreamCompaction {
* (Optional) For better understanding before starting moving to GPU, you can simulate your GPU scan in this function first.
*/
void scan(int n, int *odata, const int *idata) {
- timer().startCpuTimer();
+ bool tmp=true;
+ try {
+ timer().startCpuTimer();
+ }
+ catch (const std::runtime_error& e) {
+ tmp = false;
+ }
+
// TODO
- timer().endCpuTimer();
+ if (n > 0) {
+ odata[0] = 0;
+ for (int i = 0; i < n-1; i++) {
+ odata[i+1] = idata[i] + odata[i];
+ }
+ }
+ if(tmp ==true) timer().endCpuTimer();
}
/**
@@ -29,9 +42,19 @@ namespace StreamCompaction {
* @returns the number of elements remaining after compaction.
*/
int compactWithoutScan(int n, int *odata, const int *idata) {
- timer().startCpuTimer();
// TODO
- timer().endCpuTimer();
+ if (n > 0) {
+ timer().startCpuTimer();
+ int counter = 0;
+ for (int i = 0; i < n; i++) {
+ if (idata[i] != 0) {
+ odata[counter] = idata[i];
+ counter+=1;
+ }
+ }
+ timer().endCpuTimer();
+ return counter;
+ }
return -1;
}
@@ -41,9 +64,37 @@ namespace StreamCompaction {
* @returns the number of elements remaining after compaction.
*/
int compactWithScan(int n, int *odata, const int *idata) {
- timer().startCpuTimer();
// TODO
- timer().endCpuTimer();
+ if (n > 0) {
+ timer().startCpuTimer();
+
+ int * indicator = new int[n];
+ int * scanIndex = new int[n];
+ int tmp = 0;
+
+ // Compute indicator array
+ for (int i = 0; i < n; i++) {
+ if (idata[i] != 0) {
+ indicator[i] = 1;
+ }
+ else {
+ indicator[i] = 0;
+ }
+ }
+
+ // Compute scan
+ scan(n, scanIndex, indicator);
+
+ //Scatter
+ for (int i = 0; i < n; i++) {
+ if (indicator[i] == 1) {
+ odata[scanIndex[i]] = idata[i];
+ tmp = scanIndex[i];
+ }
+ }
+ timer().endCpuTimer();
+ return tmp+1;
+ }
return -1;
}
}
diff --git a/Project2-Stream-Compaction/stream_compaction/efficient.cu b/Project2-Stream-Compaction/stream_compaction/efficient.cu
index 2db346e..d6640d5 100644
--- a/Project2-Stream-Compaction/stream_compaction/efficient.cu
+++ b/Project2-Stream-Compaction/stream_compaction/efficient.cu
@@ -12,15 +12,134 @@ namespace StreamCompaction {
return timer;
}
+ int *dev_arrayA;
+ int *dev_arrayB;
+
+ int *dev_bools;
+ int *dev_boolScans;
+
+ int *dev_idata;
+ int *dev_odata;
+
+ int * dev_indices;
+
+ void printArray(int n, int *a, bool abridged = false) {
+ printf(" [ ");
+ for (int i = 0; i < n; i++) {
+ if (abridged && i + 2 == 15 && n > 16) {
+ i = n - 2;
+ printf("... ");
+ }
+ printf("%3d ", a[i]);
+ }
+ printf("]\n");
+ }
+
+
+ __global__ void kernEffScanUpSweep(int N, int pow2d, int pow2d1, int* arrA) {
+ int k = (blockIdx.x * blockDim.x) + threadIdx.x;
+ if (k >= N) return;
+
+ if ((k % pow2d1) == 0 && (k + pow2d1 - 1)= N) return;
+
+ int tmp = 0;
+
+ if ((k % pow2d1) == 0 && (k + pow2d1 - 1) < N && (k + pow2d - 1) < N) {
+ tmp = arrA[k + pow2d -1];
+ arrA[k + pow2d - 1] = arrA[k + pow2d1 - 1];
+ arrA[k + pow2d1 - 1] += tmp;
+ }
+ }
+
+ __global__ void kernInitZero(int N, int* array) {
+
+ int tid = (blockIdx.x * blockDim.x) + threadIdx.x;
+
+ if (tid < N) {
+ array[tid] = 0;
+ }
+ }
+
/**
* Performs prefix-sum (aka scan) on idata, storing the result into odata.
*/
void scan(int n, int *odata, const int *idata) {
- timer().startGpuTimer();
+
// TODO
- timer().endGpuTimer();
+ int n_new = n;
+
+ //check for non-2powerN
+ if (1 << ilog2ceil(n) != n)
+ n_new = (1 << ilog2ceil(n));
+
+ int fullBlocksPerGrid((n_new + blockSize - 1) / blockSize);
+
+ cudaMalloc((void**)&dev_arrayA, n_new * sizeof(int));
+ checkCUDAErrorFn("cudaMalloc dev_arrayA failed!");
+
+ //Initialize to Zero
+ kernInitZero <<>> (n_new, dev_arrayA);
+ checkCUDAErrorFn("kernInitZero failed!");
+
+ // Fill dev_arrayA with idata
+ cudaMemcpy(dev_arrayA, idata, n * sizeof(int), cudaMemcpyHostToDevice);
+ checkCUDAErrorFn("cudaMemcpyToSymbol from idata to dev_arrayA failed!");
+
+ bool tmp = true;
+ try {
+ timer().startGpuTimer();
+ //printf("IN WEScan timer started!\n");
+ }
+ catch (const std::runtime_error& e) {
+ tmp = false;
+ }
+
+ // Upstream
+ int pow2d1 = 0;
+ int pow2d = 0;
+ for (int d = 0; d <= ilog2ceil(n_new)-1; d++) {
+ pow2d = 1 << (d);
+ pow2d1 = 1 << (d+1);
+ kernEffScanUpSweep << > > (n_new, pow2d, pow2d1, dev_arrayA);
+ checkCUDAErrorFn("kernEffScanUpSweep failed!");
+ }
+
+ // Downstream
+ int *zero = new int[1];
+ zero[0] = 0;
+ cudaMemcpy(dev_arrayA + n_new-1, zero, 1*sizeof(int), cudaMemcpyHostToDevice);
+
+ for (int d = ilog2ceil(n_new)-1; d >= 0; d--) {
+ pow2d = 1 << (d);
+ pow2d1 = 1 << (d + 1);
+ kernEffScanDownSweep << > > (n_new, pow2d, pow2d1, dev_arrayA);
+ checkCUDAErrorFn("kernGenerateRandomPosArray failed!");
+ }
+
+ if (tmp == true) {
+ timer().endGpuTimer();
+ //printf("IN WEScan timer ended!\n");
+ }
+
+ // Copy back to cpu
+ cudaMemcpy(odata, dev_arrayA, n*sizeof(int), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_arrayA to odata failed!");
+
+ //printf("BBT Scan Final Computed : \n");
+ //printArray(n, odata, true);
+
+ cudaFree(dev_arrayA);
+ return;
}
+
/**
* Performs stream compaction on idata, storing the result into odata.
* All zeroes are discarded.
@@ -31,10 +150,68 @@ namespace StreamCompaction {
* @returns The number of elements remaining after compaction.
*/
int compact(int n, int *odata, const int *idata) {
- timer().startGpuTimer();
+
// TODO
- timer().endGpuTimer();
- return -1;
+ int * indices = new int[n];
+ int * bools = new int[n];
+ int fullBlocksPerGrid((n + blockSize - 1) / blockSize);
+
+ cudaMalloc((void**)&dev_bools, n * sizeof(int));
+ checkCUDAErrorFn("cudaMalloc dev_bools failed!");
+
+ cudaMalloc((void**)&dev_idata, n*sizeof(int));
+ checkCUDAErrorFn("cudaMalloc dev_arrayA failed!");
+
+ cudaMemcpy(dev_idata, idata, n*sizeof(int), cudaMemcpyHostToDevice);
+ checkCUDAErrorFn("cudaMemcpyToSymbol from idata to dev_arrayA failed!");
+
+ timer().startGpuTimer();
+
+ //Compute bools
+ Common::kernMapToBoolean<<>>(n, dev_bools, dev_idata);
+ checkCUDAErrorFn("kernMapToBoolean failed!");
+
+ cudaMemcpy(bools, dev_bools, n*sizeof(int), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyToSymbol from bools to dev_bools failed!");
+
+ //compute scans
+ scan(n, indices, bools);
+
+ cudaMalloc((void**)&dev_indices, n*sizeof(int));
+ checkCUDAErrorFn("cudaMalloc dev_indices failed!");
+
+ cudaMemcpy(dev_indices, indices, n*sizeof(int), cudaMemcpyHostToDevice);
+ checkCUDAErrorFn("cudaMemcpyToSymbol from indices to dev_indices failed!");
+
+ cudaMalloc((void**)&dev_odata, n*sizeof(int));
+ checkCUDAErrorFn("cudaMalloc dev_indices failed!");
+
+ cudaMemcpy(dev_odata, odata, n*sizeof(int), cudaMemcpyHostToDevice);
+ checkCUDAErrorFn("cudaMemcpyToSymbol from indices to dev_indices failed!");
+
+ //scatter
+ Common::kernScatter<<>>(n, dev_odata, dev_idata, dev_bools, dev_indices);
+ checkCUDAErrorFn("kernScatter failed!");
+
+ timer().endGpuTimer();
+
+ // Copy back to cpu
+ cudaMemcpy(odata, dev_odata, n*sizeof(int), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_odata to odata failed!");
+
+ //printf("GPU Compaction : \n");
+ //printArray(indices[n - 1], odata, true);
+
+ cudaFree(dev_bools);
+ cudaFree(dev_idata);
+ cudaFree(dev_indices);
+ cudaFree(dev_odata);
+ if (idata[n - 1] != 0) {
+ return indices[n - 1] + 1;
+ }
+ else {
+ return indices[n - 1];
+ }
}
}
}
diff --git a/Project2-Stream-Compaction/stream_compaction/naive.cu b/Project2-Stream-Compaction/stream_compaction/naive.cu
index 4308876..49b8259 100644
--- a/Project2-Stream-Compaction/stream_compaction/naive.cu
+++ b/Project2-Stream-Compaction/stream_compaction/naive.cu
@@ -3,6 +3,7 @@
#include "common.h"
#include "naive.h"
+
namespace StreamCompaction {
namespace Naive {
using StreamCompaction::Common::PerformanceTimer;
@@ -11,15 +12,95 @@ namespace StreamCompaction {
static PerformanceTimer timer;
return timer;
}
+
+ int *dev_arrayA;
+ int *dev_arrayB;
+
+ void printArray(int n, int *a, bool abridged = false) {
+ printf(" [ ");
+ for (int i = 0; i < n; i++) {
+ if (abridged && i + 2 == 15 && n > 16) {
+ i = n - 2;
+ printf("... ");
+ }
+ printf("%3d ", a[i]);
+ }
+ printf("]\n");
+ }
+
// TODO: __global__
+ __global__ void kernPrefixSumScanArray(int N, int pow2d1, int* arrA, int*arrB) {
+ int k = (blockIdx.x * blockDim.x) + threadIdx.x;
+ if (k >= N) return;
+
+ if (k >= pow2d1) {
+ arrB[k] = arrA[k - (pow2d1)] + arrA[k];
+ }
+ }
- /**
+ __global__ void kernExclusiveShiftArray(int N, int* arrA, int*arrB) {
+ int k = (blockIdx.x * blockDim.x) + threadIdx.x;
+
+ if (k >= N) return;
+
+ if (k == 0) {
+ arrA[0] = 0;
+ }
+ else {
+ arrA[k] = arrB[k-1];
+ }
+ }
+
+ /**
* Performs prefix-sum (aka scan) on idata, storing the result into odata.
*/
void scan(int n, int *odata, const int *idata) {
- timer().startGpuTimer();
- // TODO
- timer().endGpuTimer();
- }
+
+ int fullBlocksPerGrid((n + blockSize - 1) / blockSize);
+
+ cudaMalloc((void**)&dev_arrayA, n*sizeof(int));
+ checkCUDAErrorFn("cudaMalloc dev_arrayA failed!");
+
+ cudaMalloc((void**)&dev_arrayB, n*sizeof(int));
+ checkCUDAErrorFn("cudaMalloc dev_arrayB failed!");
+
+ // Fill dev_arrayA with idata
+ cudaMemcpy(dev_arrayA, idata, n*sizeof(int), cudaMemcpyHostToDevice);
+ checkCUDAErrorFn("cudaMemcpyToSymbol from idata to dev_arrayA failed!");
+
+ // Fill dev_arrayB with idata
+ cudaMemcpy(dev_arrayB, idata, n*sizeof(int), cudaMemcpyHostToDevice);
+ checkCUDAErrorFn("cudaMemcpyToSymbol from idata to dev_arrayB failed!");
+
+ timer().startGpuTimer();
+
+ // Call Scan Kernel
+ int pow2d1 = 0;
+
+ for (int d = 1; d <= ilog2ceil(n); d++) {
+ pow2d1 = 1 << (d - 1);
+ kernPrefixSumScanArray<<>>(n, pow2d1, dev_arrayA, dev_arrayB);
+ checkCUDAErrorFn("kernGenerateRandomPosArray failed!");
+
+ //Copy
+ cudaMemcpy(dev_arrayA, dev_arrayB, n*sizeof(int), cudaMemcpyDeviceToDevice);
+ }
+
+ kernExclusiveShiftArray <<>> (n, dev_arrayA, dev_arrayB);
+ checkCUDAErrorFn("kernExclusiveShiftArray failed!");
+
+ timer().endGpuTimer();
+
+ // Fill dev_arrayA with idata
+ cudaMemcpy(odata, dev_arrayA, n*sizeof(int), cudaMemcpyDeviceToHost);
+ checkCUDAErrorFn("cudaMemcpyFromSymbol from dev_arrayA to odata failed!");
+
+ //printf("Final Computed after shifting: \n");
+ //printArray(n, odata, true);
+ //printf("Computed: \n");
+
+ cudaFree(dev_arrayA);
+ cudaFree(dev_arrayB);
+ }
}
}
diff --git a/Project2-Stream-Compaction/stream_compaction/thrust.cu b/Project2-Stream-Compaction/stream_compaction/thrust.cu
index 1def45e..e5310b3 100644
--- a/Project2-Stream-Compaction/stream_compaction/thrust.cu
+++ b/Project2-Stream-Compaction/stream_compaction/thrust.cu
@@ -17,12 +17,28 @@ namespace StreamCompaction {
/**
* Performs prefix-sum (aka scan) on idata, storing the result into odata.
*/
+
void scan(int n, int *odata, const int *idata) {
- timer().startGpuTimer();
+
// TODO use `thrust::exclusive_scan`
// example: for device_vectors dv_in and dv_out:
// thrust::exclusive_scan(dv_in.begin(), dv_in.end(), dv_out.begin());
- timer().endGpuTimer();
+
+ thrust::host_vectorhost_idata(idata, idata+n);
+ thrust::host_vectorhost_odata(odata, odata+n);
+ checkCUDAErrorFn("thrust::host_vector host_odata or host_idata failed!");
+ printf("Created Thrust pointers \n");
+
+ thrust::device_vector device_idata = host_idata;
+ thrust::device_vector device_odata = host_odata;
+ checkCUDAErrorFn("thrust::device_vector device_idata or device_odata failed!");
+
+ timer().startGpuTimer();
+ thrust::exclusive_scan(device_idata.begin(), device_idata.end(), device_odata.begin());
+ timer().endGpuTimer();
+
+ // Copy back to cpu
+ thrust::copy(device_odata.begin(), device_odata.end(), odata);
}
}
}
diff --git a/README.md b/README.md
index 3a0b2fe..8ade9d8 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,14 @@
-CUDA Number Algorithms
-======================
+## Project 2 - CUDA Number Algorithms
+**University of Pennsylvania
+CIS 565: GPU Programming and Architecture**
-**University of Pennsylvania, CIS 565: GPU Programming and Architecture, Project 2**
+* Author: Chhavi Sharma ([LinkedIn](https://www.linkedin.com/in/chhavi275/))
+* Tested on: Windows 10, Intel Core(R) Core(TM) i7-6700 CPU @ 3.40GHz 16GB,
+ NVIDIA Quadro P1000 4GB (MOORE100B-06)
-* (TODO) YOUR NAME HERE
- * (TODO) [LinkedIn](), [personal website](), [twitter](), etc.
-* Tested on: (TODO) Windows 22, i7-2222 @ 2.22GHz 22GB, GTX 222 222MB (Moore 2222 Lab)
-
-### (TODO: Your README)
-
-Link to the readmes of the other two subprojects.
-
-Add anything else you think is relevant up to this point.
-(Remember, this is public, so don't put anything here that you don't want to share with the world.)
+### Index
+This project consists of two subcomponents:
+- [Stream-Compaction](Project2-Stream-Compaction/README.md)
+- [Character-Recognition](Project2-Character-Recognition/README.md)
+Please see the individual sub-folders for detials.
diff --git a/stats.xlsx b/stats.xlsx
new file mode 100644
index 0000000..f95dc91
Binary files /dev/null and b/stats.xlsx differ