-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path05-spillover_matrix.Rmd
More file actions
2006 lines (1902 loc) · 126 KB
/
05-spillover_matrix.Rmd
File metadata and controls
2006 lines (1902 loc) · 126 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Spillover correction
**Original scripts:** *Vito Zanotelli*, **adapted/maintained by:** *Nils Eling*
This section highlights how to generate a spillover matrix from individually
acquired single metal spots on an agarose slide. Each spot needs to be imaged as
its own acquisition/ROI and individual TXT files containing the pixel
intensities per spot need to be available. For complete details on the spillover
correction approach, please refer to [the original
publication](https://www.cell.com/cell-systems/fulltext/S2405-4712(18)30063-2) [@Chevrier2017].
**Spillover slide preparation:**
* Prepare 2% agarose in double distilled H$_2$O in a beaker and melt it in a microwave until well dissolved.
* Dip a blank superfrost plus glass microscope slide into the agarose and submerge it until the label.
* Remove the slide and prop it up against a support to allow the excess agarose to run off onto paper towels.
* Allow the slide to dry completely (at least 30 minutes).
* Retrieve all the antibody conjugates used in the panel for which the spillover matrix is to be generated and place them on ice.
* Arrange them in a known order (e.g., mass of the conjugated metal).
* Pipette 0.3 µl spots of 0.4% trypan blue dye into an array on the slide. Prepare one spot per antibody, and make sure the spots are well separated.
* Pipette 0.3 µl of each antibody conjugate (usually at 0.5 mg/ml) onto a unique blue spot, taking care to avoid different antibodies bleeding into each other. Note the exact location of each conjugate on the slide.
* Let the spots dry completely, at least 1 hour.
**Spillover slide acquisition:**
* Create a JPEG or PNG image of the slide using a mobile phone camera or flat-bed scanner.
* In the CyTOF software, create a new file and import the slide image into it.
* Create a panorama across all the spots to visualize their locations.
* Within each spot, create a region of interest (ROI) with a width of 200 pixels and a height of 10 pixels.
* Name each ROI with the mass and name of the metal conjugate contained in the spot, e.g "Ir193" or "Ho165". This will be how each TXT file is named.
* Set the profiling type of each ROI to "Local".
* Apply the antibody panel to all the ROIs. This panel should contain all (or more) of the isotopes in the panel, with the correct metal specified. For example: if the metal used is Barium 138, make sure this, rather than Lanthanum 138, is selected.
* Save the file, make sure "Generate Text File" is selected, and start the acquisition.
This procedure will generate an MCD file similar to the one available on zenodo:
[10.5281/zenodo.5949115](https://doi.org/10.5281/zenodo.5949115)
The original code of the spillover correction manuscript is available on Github
[here](https://github.com/BodenmillerGroup/cyTOFcompensation); however, due to
changes in the
[CATALYST](https://bioconductor.org/packages/release/bioc/html/CATALYST.html)
package, users were not able to reproduce the analysis using the newest software
versions. The following workflow uses the newest package versions to generate a
spillover matrix and perform spillover correction.
In brief, the highlighted workflow comprises 9 steps:
1. Reading in the data
2. Quality control
3. (Optional) pixel binning
4. "Debarcoding" for pixel assignment
5. Pixel selection for spillover matrix estimation
6. Spillover matrix generation
7. Saving the results
8. Single-cell compensation
9. Image compensation
## Generate the spillover matrix
In the first step, we will generate a spillover matrix based on the single-metal
spots and save it for later use.
### Read in the data
Here, we will read in the individual TXT files into a `SingleCellExperiment`
object. This object can be used directly by the `CATALYST` package to estimate
the spillover.
For this to work, the TXT file names need to contain the spotted metal isotope
name. By default, the first occurrence of the isotope in the format `(mt)(mass)`
(e.g. `Sm152` for Samarium isotope with the atomic mass 152) will be used as
spot identifier. Alternatively, a named list of already read-in pixel intensities
can be provided. For more information, please refer to the man page `?readSCEfromTXT`.
For further downstream analysis, we will asinh-transform the data using a
cofactor of 5; a common transformation for CyTOF data [@Bendall2011].
As the pixel intensities are larger than the cell intensities, the cofactor
here is larger than the cofactor when transforming the mean cell intensities.
```{r read-txts, message=FALSE}
library(imcRtools)
# Create SingleCellExperiment from TXT files
sce <- readSCEfromTXT("data/compensation/")
assay(sce, "exprs") <- asinh(counts(sce)/5)
```
### Quality control
In the next step, we will observe the median pixel intensities per spot and
threshold on medians < 200 counts.
These types of visualization serve two purposes:
1. Small median pixel intensities (< 200 counts) might hinder the robust
estimation of the channel spillover. In that case, consecutive pixels can be
summed (see [Optional pixel binning](#pixel_binning)).
2. Each spotted metal (row) should show the highest median pixel intensity in its
corresponding channel (column). If this is not the case, either the naming of the
TXT files was incorrect or the incorrect metal was spotted.
```{r QC-heatmap, message = FALSE, fig.width=7, fig.height=7}
# Log10 median pixel counts per spot and channel
plotSpotHeatmap(sce)
# Thresholded on 200 pixel counts
plotSpotHeatmap(sce, log = FALSE, threshold = 200)
```
As we can see, nearly all median pixel intensities are > 200 counts for each spot.
We also observe acquired channels for which no spot was placed (e.g., Xe134, Ir191, Ir193).
### Optional pixel binning {#pixel_binning}
In cases where median pixel intensities are low (< 200 counts), consecutive
pixels can be summed to increase the robustness of the spillover estimation.
The `imcRtools` package provides the `binAcrossPixels` function,
which performs aggregation for each channel across `bin_size` consecutive pixels
per spotted metal.
```{r binning, message=FALSE, fig.width=7, fig.height=7}
# Define grouping
bin_size = 10
sce2 <- binAcrossPixels(sce, bin_size = bin_size)
# Log10 median pixel counts per spot and channel
plotSpotHeatmap(sce2)
# Thresholded on 200 pixel counts
plotSpotHeatmap(sce2, log = FALSE, threshold = 200)
```
Here, we can see an increase in the median pixel intensities and accumulation of
off-diagonal signal. Due to already high original pixel intensities, we will
refrain from aggregating across consecutive pixels for this demonstration.
### Filtering incorrectly assigned pixels
The following step uses functions provided by the `CATALYST` package to
"debarcode" the pixels. Based on the intensity distribution of all channels,
pixels are assigned to their corresponding barcode; here this is the already
known metal spot. This procedure serves the purpose to identify pixels that
cannot be robustly assigned to the spotted metal. Pixels of such kind can be
regarded as "noisy", "background" or "artefacts" that should be removed prior to
spillover estimation.
We will also need to specify which channels were spotted (argument `bc_key`).
This information is directly contained in the `colData(sce)` slot.
To facilitate visualization, we will order the `bc_key` by mass.
The general workflow for pixel debarcoding is as follows:
1. assign a preliminary metal mass to each pixel
2. for each pixel, estimate a cutoff parameter for the distance between
positive and negative pixel sets
3. apply the estimated cutoffs to identify truly positive pixels
```{r debarcoding, message=FALSE}
library(CATALYST)
bc_key <- as.numeric(unique(sce$sample_mass))
bc_key <- bc_key[order(bc_key)]
sce <- assignPrelim(sce, bc_key = bc_key)
sce <- estCutoffs(sce)
sce <- applyCutoffs(sce)
```
The obtained `SingleCellExperiment` now contains the additional `bc_id` entry.
For each pixel, this vector indicates the assigned mass (e.g. `161`) or
`0`, meaning unassigned.
This information can be visualized in form of a heatmap:
```{r assignment-heatmap, fig.width=7, fig.height=7}
library(pheatmap)
cur_table <- table(sce$bc_id, sce$sample_mass)
# Visualize the correctly and incorrectly assigned pixels
pheatmap(log10(cur_table + 1),
cluster_rows = FALSE,
cluster_cols = FALSE)
# Compute the fraction of unassigned pixels per spot
cur_table["0",] / colSums(cur_table)
```
We can see here, that all pixels were assigned to the right mass and that all
pixel sets are made up of > 800 pixels.
However, in cases where incorrect assignment occurred or where few pixels were
measured for some spots, the `imcRtools` package exports a simple helper
function to exclude pixels based on these criteria:
```{r pixel-filtering}
sce <- filterPixels(sce, minevents = 40, correct_pixels = TRUE)
```
In the `filterPixels` function, the `minevents` parameter specifies the threshold
under which correctly assigned pixel sets are excluded from spillover
estimation. The `correct_pixels` parameter indicates whether pixels that were
assigned to masses other than the spotted mass should be excluded from spillover
estimation. The default values often result in sufficient pixel filtering;
however, if very few pixels (~100) are measured per spot, the `minevents`
parameter value needs to be lowered.
### Compute spillover matrix
Based on the single-positive pixels, we use the `CATALYST::computeSpillmat()`
function to compute the spillover matrix and `CATALYST::plotSpillmat()` to
visualize it. The `plotSpillmat` function checks the spotted and acquired
metal isotopes against a pre-defined `CATALYST::isotope_list()`. In this data,
the `Ar80` channel was additionally acquired to check for deviations in signal
intensity. `Ar80` needs to be added to a custom `isotope_list` object for
visualization.
```{r compute-spillover, fig.width=7, fig.height=7}
sce <- computeSpillmat(sce)
isotope_list <- CATALYST::isotope_list
isotope_list$Ar <- 80
plotSpillmat(sce, isotope_list = isotope_list)
# Save spillover matrix in variable
sm <- metadata(sce)$spillover_matrix
```
**Of note: the visualization of the spillover matrix using CATALYST does currently
not visualize spillover between the larger channels.** In this case, the
spillover matrix is clipped at Yb171.
As we can see, the largest spillover appears in `In113 --> In115` and we also
observe the `+16` oxide impurities for e.g. `Nd148 --> Dy164`.
We can save the spillover matrix for external use.
```{r save-sm, message=FALSE}
write.csv(sm, "data/sm.csv")
```
## Single-cell data compensation
The `CATALYST` package can be used to perform spillover compensation on the
**single-cell mean intensities**. Here, the `SpatialExperiment` object generated
in Section \@ref(read-data) is read in. The `CATALYST` package requires an entry
to `rowData(spe)$channel_name` for the `compCytof` function to run. This entry
should contain the metal isotopes in the form (mt)(mass)Di (e.g., `Sm152Di` for
Samarium isotope with the atomic mass 152).
The `compCytof` function performs channel spillover compensation on the mean
pixel intensities per channel and cell. Here, we will not overwrite the assays
in the `SpatialExperiment` object to later highlight the effect of compensation.
As shown in Section \@ref(read-data), also the compensated counts are
asinh-transformed using a cofactor of 1.
```{r single-cell-compensation}
spe <- readRDS("data/spe.rds")
rowData(spe)$channel_name <- paste0(rowData(spe)$channel, "Di")
spe <- compCytof(spe, sm,
transform = TRUE, cofactor = 1,
isotope_list = isotope_list,
overwrite = FALSE)
```
To check the effect of channel spillover compensation, the expression of markers
that are affected by spillover (e.g., E-cadherin in channel Yb173 and CD303 in
channel Yb174) can be visualized in form of scatter plots before and after
compensation.
```{r visualize-single-cell-spillover, message=FALSE}
library(dittoSeq)
library(patchwork)
before <- dittoScatterPlot(spe, x.var = "Ecad", y.var = "CD303",
assay.x = "exprs", assay.y = "exprs") +
ggtitle("Before compensation")
after <- dittoScatterPlot(spe, x.var = "Ecad", y.var = "CD303",
assay.x = "compexprs", assay.y = "compexprs") +
ggtitle("After compensation")
before + after
```
We observe that the spillover Yb173 --> Yb174 was successfully corrected.
To facilitate further downstream analysis, the non-compensated assays can now be
replaced by their compensated counterparts:
```{r overwrite-assays}
assay(spe, "counts") <- assay(spe, "compcounts")
assay(spe, "exprs") <- assay(spe, "compexprs")
assay(spe, "compcounts") <- assay(spe, "compexprs") <- NULL
```
## Image compensation
The [cytomapper](https://github.com/BodenmillerGroup/cytomapper) package allows channel
spillover compensation directly on **multi-channel images**.
The `compImage` function takes a `CytoImageList` object and the estimated
spillover matrix as input. More info on how to work with `CytoImageList`
objects can be seen in Section \@ref(image-visualization).
At this point, we can read in the `CytoImageList` object containing multi-channel
images as generated in Section \@ref(read-data).
The `channelNames` need to be set according to their metal isotope in the form
(mt)(mass)Di and therefore match `colnames(sm)`.
```{r read-in-image, message=FALSE}
library(cytomapper)
images <- readRDS("data/images.rds")
channelNames(images) <- rowData(spe)$channel_name
```
The CATALYST package provides the `adaptSpillmat` function that corrects the
spillover matrix in a way that rows and columns match a predefined set of
metals. Please refer to `?compCytof` for more information how metals in the
spillover matrix are matched to acquired channels in the `SingleCellExperiment`
object.
The spillover matrix can now be adapted to exclude channels that were not kept
for downstream analysis.
```{r}
adapted_sm <- adaptSpillmat(sm, channelNames(images),
isotope_list = isotope_list)
```
The adapted spillover matrix now matches the `channelNames` of the
`CytoImageList` object and can be used to perform pixel-level spillover
compensation. Here, we parallelise the image compensation on all available minus 2 cores. When
working on Windows, you will need to use the `SnowParam` function instead of
`MultiCoreParam`.
```{r image-compensation, message = FALSE}
library(BiocParallel)
images_comp <- compImage(images, adapted_sm,
BPPARAM = MulticoreParam())
```
As a sanity check, we will visualize the image before and after compensation:
```{r image-visualization}
# Before compensation
plotPixels(images[5], colour_by = "Yb173Di",
image_title = list(text = "Yb173 (Ecad) - before", position = "topleft"),
legend = NULL, bcg = list(Yb173Di = c(0, 4, 1)))
plotPixels(images[5], colour_by = "Yb174Di",
image_title = list(text = "Yb174 (CD303) - before", position = "topleft"),
legend = NULL, bcg = list(Yb174Di = c(0, 4, 1)))
# After compensation
plotPixels(images_comp[5], colour_by = "Yb173Di",
image_title = list(text = "Yb173 (Ecad) - after", position = "topleft"),
legend = NULL, bcg = list(Yb173Di = c(0, 4, 1)))
plotPixels(images_comp[5], colour_by = "Yb174Di",
image_title = list(text = "Yb174 (CD303) - after", position = "topleft"),
legend = NULL, bcg = list(Yb174Di = c(0, 4, 1)))
```
For convenience, we will re-set the `channelNames` to their biological targtes:
```{r re-set-channels}
channelNames(images_comp) <- rownames(spe)
```
```{r, include=FALSE}
rm(images)
```
## Write out compensated images
In the final step, the compensated images are written out as 16-bit TIFF
files:
```{r write-images, message=FALSE, results='hide', error=TRUE}
library(tiff)
dir.create("data/comp_img")
lapply(names(images_comp), function(x){
writeImage(as.array(images_comp[[x]])/(2^16 - 1),
paste0("data/comp_img/", x, ".tiff"),
bits.per.sample = 16)
})
```
## Save objects
For further downstream analysis, the compensated `SpatialExperiment` and
`CytoImageList` objects are saved replacing the former objects:
```{r save-objects-spill, error=TRUE}
saveRDS(spe, "data/spe.rds")
saveRDS(images_comp, "data/images.rds")
```
```{r testing, include = FALSE}
library(testthat)
expect_equal(assayNames(spe), c("counts", "exprs"))
expect_equal(as.vector(counts(spe)[, 1:5]), c(0.575106422106415, 3.12546056341781, 0, 2.03477470080057, 0.124981637293892,
4.05394642526013, 2.03407155895996, 7.24215554765113, 1.0932749542015,
2.14923853310107, 10.7293431375289, 1.27514025145857, 6.52606181633078,
3.46455915152879, 0.847209433500473, 1.69084576947787, 2.85285833110381,
1.06100223993509, 3.93635664758419, 4.50457032420379, 4.24048433325923,
2.28153928389187, 3.53594279997212, 7.75006023879224, 1.56712491053119,
2.02848897940089, 0.88061556449426, 4.54846086364113, 11.1211535613305,
65.1236444925541, 5.13622944056114, 4.64871219577157, 6.84274090332239,
16.8591260008099, 139.855974735937, 2.20420624806308, 1.44860060661138,
0, 75.1953114668528, 142.235328356425, 0.416666666666647, 11.3597883482774,
0.651920023480555, 2.58805358409882, 0.498412651740732, 7.57204860917109,
1.17800997057393, 8.75006675928456, 1.76187446947939, 6.24727775117516,
11.7321311159045, 1.23112744116456, 11.4595183792866, 6.02148249707505,
1.37462818879883, 1.09913163841707, 1.49827531188507, 1.67776849835344,
2.17294068252018, 4.60638133280225, 4.78351446504898, 4.27064819622529,
2.74480618140905, 11.9576644455689, 2.03321792063284, 2.62025884977045,
1.59864823765644, 18.8596672046382, 4.50995406829917, 144.358529484433,
3.72116723333359, 4.45816692334628, 7.07007557018944, 30.6167835053301,
64.6082616341566, 0.719037974767079, 9.22149099525802, 0.520891737749721,
73.576642965277, 129.302666882674, 0.497549358536219, 2.37874742793283,
0, 2.29430737214929, 0.954340069362395, 13.1133917091627, 2.14480578312121,
4.90445182963192, 1.24572625487141, 8.15775848329467, 10.4145660680798,
1.07247184034205, 16.4943583937027, 4.97409832155597, 1.52338688060226,
0.911098298193017, 2.91043343182068, 1.58728689686045, 1.18552032666124,
3.50302988793065, 4.7467558961812, 1.84685703862674, 3.49590967824283,
6.72180429147077, 1.26211941470369, 1.1621873937194, 1.94629053537765,
17.8010040232964, 6.333672314951, 57.989573490226, 4.06623546359915,
5.39811023409794, 7.37949670964192, 21.8390462140383, 106.231635235582,
0.674928321743819, 4.14857273346801, 0.575560560053978, 71.2559066660264,
119.832059299245, 0.890154048800461, 7.71296111742655, 0.501317439202833,
15.6290833055973, 0.543961487556748, 138.350558325953, 2.27033926757904,
5.31429689853498, 1.4059103198355, 19.5075144690285, 15.4594645946615,
0.726400170906667, 86.6936506212141, 6.76163911360482, 4.30316030769258,
1.53262713193679, 16.6918445379505, 2.39619794635051, 2.53020240520715,
8.55460688650394, 7.00578577802601, 4.0629296895003, 4.21283728283173,
24.5015444320026, 1.50262589595442, 2.55508961502349, 9.27390355359496,
3.99562569286061, 16.9025516879736, 10.0523651197176, 4.69582878529041,
15.0100917583645, 23.9408730335394, 75.8952435757283, 94.4443218517994,
2.20895788367862, 6.57925846749339, 0.658265045477455, 59.181262900432,
99.8480299214522, 0.181818181818181, 1.45127152854746, 0.168344887080694,
0.608421959660271, 0.179363735216379, 5.87150119635366, 0.661623123689662,
8.71591777384505, 1.08049948081296, 0.520019263953429, 6.4976994502295,
0.545180653987267, 2.8164432186119, 5.73337821956446, 1.9111959163043,
0.613063990762242, 0.281463365611794, 0.522461153582682, 1.8556326229401,
2.89671016374663, 2.04796288879988, 2.18996071968542, 1.75072339353548,
2.40066248566611, 1.27977085187346, 1.79191670398777, 1.97108668105786,
1.37455029016178, 2.84954434286801, 0.832643667575474, 2.79187948320988,
1.28959897714697, 3.98418936239011, 5.28076639113396, 74.1324628235861,
0.9253804562018, 1.26404029907818, 0.132927853156696, 10.164272275838,
12.8066278804432))
expect_equal(as.vector(assay(spe, "exprs")[, 1:5]), c(0.547361972030769, 1.85739120590678, 0, 1.4590799040046, 0.124658525993827,
2.10771411298377, 1.45876972756069, 2.67779889847326, 0.945815593369642,
1.50845209315985, 3.06829414720948, 1.06320223889123, 2.5747698235456,
1.95593827263519, 0.769109726633635, 1.29616974314404, 1.77085979502395,
0.923857679644378, 2.07916006269261, 2.21033867166338, 2.15144639341539,
1.56289282844126, 1.97554812629072, 2.74498431392133, 1.23142981840737,
1.45630402004209, 0.794388991645488, 2.21980676135235, 3.10401144464935,
4.86949380839468, 2.33881104905663, 2.24111011760825, 2.62163253244378,
3.51891770392935, 5.63377310289589, 1.53139967523187, 1.1659095892332,
0, 5.01328027299006, 5.65064246551019, 0.405465108108147, 3.12515866853811,
0.612833438933858, 1.67944602661283, 0.479791607073098, 2.72194285715744,
1.00181897895256, 2.86545788904241, 1.33177412879387, 2.53163788289854,
3.15728987321107, 1.03574892380014, 3.13386618971081, 2.49530541585996,
1.12314596808388, 0.949762680353855, 1.19380615152883, 1.28949355746997,
1.51840585012769, 2.232168866198, 2.26907348679391, 2.15834656632067,
1.73450115306095, 3.17626348790025, 1.45839304663909, 1.69099106822525,
1.24826667759625, 3.63087493723713, 2.21150477646422, 5.66545917013447,
2.02476870658448, 2.20023241106199, 2.6539826433656, 4.11496211178483,
4.8615493581869, 0.66819333216633, 2.91761097234615, 0.499819464750524,
4.99152098236756, 5.55531804421915, 0.479018831081479, 1.60123286608999,
0, 1.56800637877874, 0.848715837498785, 3.26823181396784, 1.50658053490075,
2.29352555195463, 1.04492043967795, 2.79585225185085, 3.03864959131559,
0.931701947652182, 3.4970832253877, 2.30734591156441, 1.20766630168915,
0.817093506230501, 1.78973594426823, 1.24222608814223, 1.00667036562408,
1.96655251295532, 2.26152383910993, 1.37297271350709, 1.96459616636674,
2.60399152561986, 1.05514163160341, 0.991539192666868, 1.41935458538892,
3.57319006281633, 2.54520194960983, 4.75348474226405, 2.1106530723543,
2.387667157982, 2.69641210652631, 3.77737041793074, 5.35879128083352,
0.632006120108253, 2.13013076132081, 0.547755610339449, 4.95947413097012,
5.47925584663204, 0.801530560849474, 2.74022551398308, 0.48238986791444,
3.44330257094523, 0.520182669200208, 5.62295098318641, 1.55838747878086,
2.37228475869318, 1.14141255501909, 3.66460323861465, 3.43241300074073,
0.674160304416511, 5.15556108941629, 2.60983629562226, 2.16573236703522,
1.21272628454337, 3.50896351133545, 1.60797459633989, 1.65838999892952,
2.84301593519032, 2.64493866242313, 2.10986331107627, 2.14508099421734,
3.89229951489402, 1.19621892018722, 1.66749882239005, 2.9232457718972,
2.09365107560374, 3.52148568741842, 3.00342001332098, 2.25097116664323,
3.40297771454293, 3.86917023676443, 5.02254459530079, 5.24118568124364,
1.53336105194387, 2.58279527719055, 0.618140996920859, 4.77382353882958,
5.29682158506151, 0.18083104406935, 1.16742600509862, 0.167559710742631,
0.576033240430446, 0.178415668447857, 2.4704316194559, 0.620943752549097,
2.86157292946877, 0.937165560133545, 0.49904553569216, 2.57046480248775,
0.521253367401973, 1.75874499865655, 2.44697212382536, 1.40320082428437,
0.579994849530276, 0.27787359172362, 0.501210920774003, 1.37714348531497,
1.78526719983685, 1.46488165283259, 1.52549833795289, 1.32625661469155,
1.60969268465267, 1.06605656338623, 1.34650839614044, 1.43062976594636,
1.12310014135671, 1.76976298580441, 0.757956231425614, 1.7504941575978,
1.07209346765007, 2.09087075448086, 2.36606512303493, 4.99904619936365,
0.827613431193833, 1.05633397553219, 0.13253946512478, 3.01443714170894,
3.24463084707751))
expect_equal(as.array(images_comp$Patient1_001)[1:10,1:10,],
structure(c(0, 0, 0, 1.01836941657218e-14, 1.76359105110167,
0, 1, 0, 1, 0, 0, 0, 5.87724313660942e-15, 1.68342781066894,
0.999999999999991, 2, 0, 0, 0, 0, 3.87602276667002e-16, 3.06884312629699,
0, 0, 0, 0, 0.999999999999995, 7.91033905045424e-16, 0, 0, 0,
0, 0, 1.68342781066895, 9.43689570931383e-16, 0, 0, 0, 2.69882869720458,
0, 0, 1, 0, 0, 0, 1, 0, 2, 0, 0, 1, 1.2024484872818, 0, 0, 0,
1.45751466451571e-14, 3.45903861109775e-15, 0, 2.51014486973844e-15,
1.63150742915619e-15, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 2.49638032913208,
0, 1, 0, 0, 0.999999999999994, 0, 0, 0.999999999999998, 0, 4.17980813980103,
0, 2.25589060783386, 0, 1.00000000000003, 0, 6.18949336228525e-15,
5.01551924991794e-15, 0, 0, 1, 1.68342781066895, 3.27168847569226e-15,
1.00000000000001, 0, 0, 0.99999999999999, 0, 0, 21.6329703311034,
35.9079054423042, 21.2939852959344, 11.2590744332055, 2.49452284180398,
11.0606184005737, 15.4343643188477, 29.8051862774271, 23.5386071963338,
21.2102621850598, 1.47484206173012, 6.20999037303417, 5.10317705332791,
3.00000000000002, 0.992000324397243, 1.00000000000001, 3.74314810516246,
2.60933607362433, 2.4952047039044, 5.04781590546332, 1.38975499014332,
6.1512201511788, 8.6331272125244, 2.20082473754882, 0.992682186497657,
5.92568486014062, 0, 1, 2.35407485886391, 1.0210445042747, 1.13449389363855,
13.5759449005127, 6.88769769668582, 5.66034412384036, 1.99039211250834e-15,
3.09149583060116, 0.992000324397234, 1.50320437950717, 1, 2.34446740150452,
1.98400064879446, 14.6341939145998, 22.1778970956018, 7.00206184387207,
9.37512016296387, 0.992000324397245, 3.17223358154297, 5.05845365594837e-15,
2.89227762580572, 1.68962066560141e-15, 0, 27.1825447082519,
13.3472166061401, 7.57457065582275, 8.64710695369496, 6.80559963763048,
5.55697461078332, 2.21226315172301, 0, 1.19121852919265, 2.80719055421891,
43.384441041151, 18.9405937182388, 25.3875154053178, 10.0020618438721,
3.96800129758891, 0, 0.99200032439723, 1.71740430541084e-15,
8.88178419700125e-16, 1.60109972953796, 25.4949836730957, 31.6778288440622,
14.9698649722482, 10.2056710619988, 6.32275801855326, 3.00000000000001,
1.00000000000001, 1, 3.93088339656345e-15, 2.72555864364748e-15,
25.0404483246627, 16.4643306732178, 11.371256495651, 8.08783531188967,
2.97668283529211, 4.90464047412159, 0, 0, 1.98400064879447, 0,
11.9448795318603, 5.34378004074097, 7.7125131269522, 5.08783531188964,
4.67978728169512, 2.22941589355468, 0, 2.00000000000001, 5.8564264548977e-15,
0, 0, 0, 0, 0, 2.30035468177852, 0.971221457852793, 0, 0, 0,
0, 0, 0, 0.276787278662907, 0, 0.910199184421298, 0, 0, 0, 0,
0, 0, 2.63947154520221, 0.802364143622347, 0, 0, 0, 0.910199184421299,
0, 0, 0, 0.131969997313286, 0.381479129378059, 0.491696481223012,
0, 0, 0, 0, 0.910199184421297, 0.789464915247212, 0, 0, 0, 0.371209135687777,
1.71657418978916, 0, 1.35370007297299, 2.29360723495483, 0, 2.20736694335938,
0, 0.146199785604084, 1.24488955470119, 0.354683260779899, 0,
0, 0, 0, 0.999999999999997, 0, 0, 0, 0, 0, 0.101806688951662,
0, 1.69309011255336e-15, 0, 0, 1.57169760266145e-15, 0.85621993846465,
1.06163059462113, 0, 0, 0, 0, 0.730597553263897, 2.26743914604545,
1.11756600857138, 1, 0, 0, 1.82123595253574, 0, 0.273705792726096,
0, 0, 0, 0, 0, 1.4373414516449, 3.49194674261453, 1.72749113742762,
0, 0.543108239462213, 0, 2.0934038694495, 0.999999999999986,
1.63144854546307, 0.999999999999984, 5.88418203051333e-15, 4.00000000000001,
9.00049591064453, 12.1390991210938, 13.8473749160767, 5.50787925720215,
4.35401391983031, 8.43769498715119e-15, 5.10702591327572e-15,
0.999999999999996, 3.96947479248047, 22.5403881072998, 22.1866207122803,
10.6777515411377, 14.6319637298584, 4.75431156158447, 1.16937577724457,
1.47104550762833e-15, 0, 1.03389519168218e-15, 1, 0, 3.38478708267214,
2.50787925720215, 4.63097143173218, 0, 1.63757896132211e-15,
0, 9.1029614401883e-16, 0, 1.0998146837693e-15, 10.3242321014404,
3.677255153656, 6.32348918914795, 0.999999999999994, 0, 2.90792894363403,
0, 1.07705664634705, 1.0321604682062e-16, 0, 3.86189341545105,
2, 6.04628372192382, 1.41556012630462, 1.2616949081421, 3.64648199081421,
1, 2.93870186805725, 1.99840144432528e-15, 0, 2, 2.13860273361205,
2, 2.7232904434204, 6.29296398162842, 2.46184372901917, 0, 1.2924679517746,
0, 1.00180280737661e-16, 0, 1, 6.95446014404296, 6.80034732818603,
2.44633316993714, 2, 3, 1.60019838809967, 2, 0, 0, 6.89266633987427,
15.0322608947754, 6.40054559707641, 6.77007007598877, 1, 11.8468790054321,
3, 3.80009913444519, 0, 14.9394464492798, 15.67799949646, 12.6777505874633,
9.52363777160642, 7.43131828308105, 9.8163537979126, 22.1248283386231,
6.10807752609254, 13.5701694488525, 2.15411329269409, 39.9109039306641,
20.1248283386231, 15.570665359497, 9.37002086639404, 6.93870162963867,
1, 8.37001991271973, 22.109317779541, 21.217643737793, 0, 0,
0, 0, 4.9400748684518, 0.994128986745819, 1.18989487396511, 0.713408533571729,
0, 0, 0, 0, 5.95076506158749, 0.305910597626057, 2.47975753103384,
0.534086728112572, 0, 0, 0, 0, 0.968772935095449, 0, 0.167327081104592,
0, 0, 0, 0, 0, 0, 0, 0, 3.72118302191389, 0.452579410239765,
0.370610499550046, 0, 0, 1.32159224357832, 0, 0, 0, 0.972369753365681,
0, 0.625501620559069, 0, 0.224056904108889, 0.591551683758832,
0, 0, 0, 0, 0, 0.934661465014079, 0, 0.764049767619882, 0.0688047234582775,
5.57236169451795, 0, 0, 0, 0, 0, 0.182291246019779, 0, 1.06826629797128,
0, 0, 0.910530463077146, 0.881868711354036, 0, 0, 0, 0.238612803712305,
5.21058668616031, 1.9011435474774, 0.28842456322338, 1.62875694763535,
0, 0, 0.71600366034066, 0, 0, 2.02330178467086, 0.133720262002288,
0, 0.108837533499259, 0, 1.61777585608709, 0, 1.1844587059012,
0, 1.90881288787215, 2.40861130997302, 0.971374708553732, 4.49375796249132,
0.064383702829031, 1.47263013294457, 2.88005246806881, 1.4747045919004,
0.178390616028507, 0.770271769947544, 11.8336555607087, 19.5299017100874,
28.7770987850759, 72.9521599530497, 112.721108282323, 101.644854905545,
36.7210055372457, 23.476833766393, 10.2304829287801, 3.98021348208977,
3.6709808221819, 149.733523043111, 176.438921736178, 102.636050639282,
73.5600214634632, 46.6017722291492, 22.3081595142284, 11.306989778813,
3.9959029830979, 2.00323222448068, 2.1594714144623, 36.2004459443357,
92.6266262770497, 58.2487139275958, 45.1979477341524, 15.4800401098234,
10.7592083884104, 10.2631372555433, 5.39474290506308, 0, 4.07441818434081,
102.465580117957, 85.8804781115595, 96.4033670182434, 81.1680933832488,
55.3442333950515, 26.4210160913212, 11.9356392555518, 12.3870460605184,
0, 2.2239526738048, 71.7985527351031, 81.6806412950702, 82.388078731197,
75.7443203976173, 39.7055196647917, 13.8728503723912, 16.2481917066191,
1.79608605473186, 6.5473441955016, 1.995153844598, 35.6191462907649,
60.3429925404287, 82.2095079072421, 86.2098939368646, 62.6910859606014,
22.921593632744, 9.84177903015905, 3.38082720905604, 0.981474018403885,
4.05899216619502, 79.3859768073722, 61.3033812383582, 103.808436594232,
82.0610986858434, 30.0750204612894, 24.807551366481, 11.0160199610462,
19.3460041896345, 6.80493214923344, 2.29489577949083, 59.7355528291325,
93.077246409707, 88.9216932986781, 64.6070017140406, 49.8956163188232,
51.9155675015562, 36.5985577652249, 29.7957126945251, 2.64954035176464,
12.5498140127041, 142.29445730902, 112.784715084287, 137.35544664414,
90.5290733924823, 101.416608324059, 61.4511718574384, 69.9568326961668,
62.7530065894991, 43.7733580581769, 6.92624314176245, 223.60125002348,
178.076552654056, 109.698178615108, 116.886213344587, 54.3004500793292,
40.6670584961748, 51.6325425461905, 83.9893077085631, 37.5417705673707,
1.37086563474632, 0, 3.18351863482798, 1.71226124000496, 0.299506674079596,
0, 0, 3.27380818757194, 0.816298948417998, 2.30529104128234,
1.09933324249402, 8.21674203908649, 6.25418939759934, 5.90232299747393,
0, 1.76825795328005, 0.403698090733198, 2.11095739880271, 0,
0, 0, 1.35427811509729, 0, 0.696960674651686, 0, 0, 0, 0.686058434534861,
0.861564248043055, 0, 0, 4.24035351530444, 0, 2.95584641088592,
0.264987220006608, 0.71017312999187, 0.590560577773813, 0, 0,
0, 0, 0, 0.543082317352414, 0.193947158508634, 1.19810342550516,
0, 0, 0.536730924608599, 0, 0, 0, 5.10240619565951, 5.29520832721497,
2.31376182722905, 0, 0, 0, 0.732747685499162, 0, 0, 0, 3.39588527353227,
0.0588055901192831, 5.37179305336941, 0.535945849713535, 0.221699329685026,
0.32917290267769, 3.4211977233316, 0.650998037081475, 0, 0, 4.31739309833246,
1.97475206845552, 0, 0.292300447588026, 0.648152889032705, 4.89060869101944,
1.0214511554417, 0, 0.918867463581964, 0, 3.28931753203902, 1.51571833057365,
0, 5.80766550106661, 0.436654068729663, 0, 2.82262813142505,
0.576709439499843, 0, 0, 3.76804923643981, 7.43575934298634,
0.238283760283301, 0, 1.39235300109927, 0, 0, 0, 0, 20.8206525932583,
6.58186259171461, 3.04877570618022, 0.712306822913665, 1.73798840409308,
1.09173668033889, 0.838566597868331, 4.553412056952, 2.90659228660857,
2.23287146083945, 0.975394293278337, 2.44384367045334, 5.10483187890436,
2.99561207577433, 0, 3.36166780929846, 0, 0, 0, 0.98880358534348,
0, 10.01905413065, 7.88635888893228, 0.757125501903464, 0.82720693789032,
0, 0.956190617318246, 1.9466997240334, 0, 0, 1.22383773511307,
3.74118521927028, 0, 0, 0, 2.34156155208384, 0, 0, 0, 9.64563981220674,
0, 5.13754779441915, 10.566907338203, 2.88721386205535, 5.35853572706669,
1.84167461672252, 0, 3.9358856411625, 1.3421883295472, 1.06072185064044,
0, 2.82277019388539, 4.07943326798992, 2.79530329420166, 1.72432545794274,
1.77775997950135, 4.28115391264998, 0.95610980486938, 5.18380905491189,
3.97919003577249, 0, 4.72697269738953, 1.50443642985118, 4.14572314246093,
5.55826770640653, 0, 1.33078607544058, 0.932589953336177, 0,
0, 0, 4.58968220512854, 4.30587751580117, 3.69240628934414, 0.723321131932492,
1.376916666664, 0, 5.84992610456527, 1.28834142709068, 0, 1.40211948828081,
3.48581237331298, 3.00743799081102, 3.90936724045108, 0, 1.10590703971377,
1.7144177678333, 0.825122994975845, 3.91350684526862, 0, 1.05978738529521,
8.10541138926582, 4.57696419735175, 4.26395796255819, 0.604747484699441,
2.79514589393604, 0.432029109584588, 0.790345196448247, 0, 0,
0, 5.72520156182964, 2.11433846436893, 1.40505812431262, 0, 1.80707535135715,
2.88197596663982, 1.05486472205126, 0, 2.94837780114189, 0.931109802265821,
1.31730855002737, 2.41441758693291, 0.605259737248857, 0.735927692816479,
0, 0.873620265678083, 0, 0.989181366324564, 1.03337421282234,
1.6957208992854, 0.834633692192905, 0.2627153818349, 4.34313433793093,
0, 0, 0, 1.52776694340043, 0, 0, 0, 1.29505781339617, 1.56971830927057,
0.555901910228425, 0, 0, 1.11583001043331, 0, 0, 0, 0, 3.90266330872446,
1.15469209713752, 2.71063589477189, 0, 0.742594469615027, 0,
0, 0.882953289637362, 0, 0.990608076694186, 0, 1.54067488767273,
1.51218557945396, 1.53120233156352, 0.678095864661417, 0, 0.901940530440344,
0, 0, 0, 0.49875846971932, 0.638132215623317, 0.284421465635037,
0.430773772829807, 0.878124112445614, 1.81255811883429, 1.23935495713342,
0, 0, 0, 1.21015042910123, 1.4667118400015, 0, 0, 0, 0, 0, 0.879212578134009,
0, 0, 3.08754539644397, 4.33581847497276, 4.23510698055329, 3.13098741509461,
1.60544390058555, 5.04103524661431, 0.689730074993515, 0.706279840297326,
0.782903143128343, 0, 0, 0, 4.405143914813, 1.12450720938112,
0.840133627739043, 3.24145115394522, 3.40678513155224, 0, 0,
0, 0, 3.56721810119882, 8.83877713244252, 21.1527642849427, 19.4980153787179,
15.9649659711042, 5.76128276179861, 1.99724791800018, 1.97757470202845,
0, 14.3066338416113, 28.8998328531994, 16.1083439388234, 19.1092761244185,
14.1768984984248, 1.48845599688968, 0, 0, 0, 0, 13.104887343265,
64.9056914516374, 14.5366802729679, 4.46137698223648, 1.65166004964987,
2.37338798800842, 1.61689697099761, 0, 0, 0.999047510564758,
42.5900427910431, 15.9524792832342, 31.7005543589199, 10.3639739052832,
7.05599340520667, 9.67782366659116, 0, 2.4972154281252, 0, 3.43579555279173,
49.2140057538931, 27.8548911945265, 21.6095500589894, 25.8900342701069,
22.0513065750742, 6.62022215419197, 4.18256353714112, 4.08636095855633,
0, 0.996285409215464, 39.3231756441109, 28.4531765021343, 12.1720720654782,
16.0513650682579, 22.7399091343956, 6.61806133325629, 1.55432008760563,
3.71172971467294, 0, 4.33762400745458, 39.5718964080361, 28.3273479274069,
28.2332553695346, 18.0191685042479, 12.0857809490243, 13.2032310578977,
6.05666605057292, 6.43281649470415, 1.99584037628554, 0, 37.3559043964818,
31.8214735009037, 26.2327241922133, 31.2618098032084, 19.8342462991249,
17.2705579028513, 6.08802097982686, 3.14427353245256, 2.53003885826171,
1.1237634537666, 50.2414200239854, 49.3341020273702, 57.2071937249476,
82.2053022451725, 83.9243071861702, 56.3040978753667, 47.6041252645921,
43.1371012068966, 16.1719231707898, 0.999031118399131, 65.3160797108596,
73.5540364953218, 62.9781964178388, 49.9434276507694, 20.2255679469091,
16.2890464508035, 28.0371815893823, 63.8504790174541, 23.0817047673006,
15.8170874576168, 29.2761165953052, 14.1012466120153, 29.3816046984626,
22.3281913237617, 18.3140291045116, 22.8561147324, 12.0043344667879,
2.97138954313448, 2.82116127827512, 1.62377340839354, 17.631379775485,
21.6016400342391, 6.20897187448808, 5.71023453405888, 5.91124701171411,
6.91440403332761, 1.9936923479342, 0, 0.993108421301319, 0.990571235260077,
10.3641779773059, 11.2613745642583, 11.3133411953907, 2.93647067192285,
3.00728673898038, 0.925810935356894, 2.5605601165259, 0.996936443692931,
0.997728488213865, 0.968364255811479, 10.5569086278751, 4.86388444264934,
9.36632460321847, 5.58955899863683, 2.75563393561128, 2.32078389007747,
1.48689567346757, 1.07947508128747, 0, 1.15166751518813, 12.1308175696932,
8.35355980646295, 1.30662810704894, 10.2455993122558, 2.58138031380035,
3.91043383739726, 0, 4.87479192598339, 0.996120667961501, 0,
8.04210509693785, 0.0922090526354234, 4.92003437600319, 3.77354206439439,
2.71886376791327, 3.69152509048583, 3.9186350384801, 6.45485178716465,
3.80094172257323, 0, 1.94640726251663, 5.34879758339352, 9.78150878976768,
1.16696642004036, 0.616400699416219, 6.51372543680701, 0.813336189565843,
0.80138483642759, 1.96604043437611, 0.990359939080161, 0, 2.20515593045158,
7.06343464233008, 8.0650246198412, 1.52994510213271, 5.41003365237567,
5.71514269109604, 6.22109005621634, 0.92142473009486, 0.950370203328543,
8.29352444655214, 13.246767837159, 8.96412396876526, 10.2746466015538,
13.0158245228718, 5.25544134000631, 3.8204391474457, 3.89158169724823,
5.270302488281, 0.968747066407032, 39.7959424906321, 16.9997168166898,
12.8158233193607, 5.51326554057969, 10.3246978817939, 8.72901222181983,
8.56533719033887, 4.36179377009017, 3.03656352013994, 0.928411308369946,
6.41208249647691, 3.15352695448019, 1.31173299687888, 5.25818704433176,
0.745521607293084, 1.95151459461774, 1.4982003817538, 0, 5.40053965286139,
0, 2.96319527858895, 1.2825673874281, 0, 0, 0, 0, 0, 0, 0, 0,
2.4240452353507, 0, 0, 0.94340693818278, 0, 0, 0, 0, 0, 0, 2.50710419913852,
0.777666718772135, 0.678580770330974, 0.842349344723235, 0, 0,
0.988776894840826, 0, 0, 0, 0.538952608850801, 0, 0.798582362035237,
0.39738524945429, 0, 0, 0, 0, 0, 0, 1.350347634435, 0, 0.873497322392041,
0, 0, 0.925722539902502, 0.971590727189689, 0, 0.983150297541965,
0, 4.00340396405177, 0, 0.673470128387175, 0, 0.892060452547684,
0.907408023810664, 0, 1.42569854100323, 0.823558250750973, 0.995227873511386,
1.03817537552302, 3.07180774846142, 1.69442689745485, 0, 0, 0,
0, 0, 0, 0, 3.46689266069844, 0, 2.55285245618944, 1.33815460963325,
0, 0.563702718411749, 0, 0, 0, 0, 0.34484450784708, 1.34085836702528,
3.82299078011328, 0, 1.58033314061799, 0, 0, 0.483469637332479,
1.22955499926134, 1.87973738462652, 7.18959385546719, 8.86809061045337,
3.107098846201, 8.34452216784713, 17.47085224335, 4.04029303621287,
5.12139031351311, 0.976450467139427, 0, 0, 9.08458420236475,
8.23820797788207, 5.27293731448838, 7.70558535852565, 9.76800349368013,
5.8855536782282, 0.984972473101782, 0, 0, 1.40852193127102, 18.7933196984158,
16.8682815604228, 20.6136376731632, 5.58561923410924, 3.55484791010282,
0.993951149017718, 5.63629904125176, 0.993605582403568, 0.993789927957158,
0, 51.2047100955538, 48.9960332997108, 33.9703975139349, 32.8249825881784,
14.797666896005, 12.3568585140722, 0.752023712995021, 2.08615541727151,
0, 0.984442907415579, 32.8197585382177, 43.0241974915573, 23.2803392212506,
20.8799147811193, 14.0221258715831, 11.0854919646217, 9.57362166482107,
5.24007483971584, 0, 0.996093363918331, 18.9447539353475, 35.0578905613498,
29.7484532978363, 45.4783508747888, 15.3969962544051, 6.50031657616211,
0, 0.950458962819615, 0, 0, 31.9850002458842, 27.6188667782433,
48.723121949299, 25.5228150177656, 10.8314201952565, 4.90865243952593,
2.93722293536201, 0, 0, 0, 61.5731347684054, 45.5746130607067,
49.9376681133247, 34.2750347438422, 25.9762933194308, 16.7414503804228,
5.64814871258959, 0, 2.65623365430121, 5.95478179100937, 77.5261086135286,
28.4849832489748, 36.5284334774637, 18.4591401122959, 13.4778923834468,
4.9171472068603, 15.2381713629931, 12.7161693683169, 18.168711016902,
0, 31.6669125835369, 34.2708876731553, 12.1723988501782, 7.93950649217512,
9.04378961892778, 9.21981655461928, 11.0178928207072, 24.3982137751189,
2.89708282069189, 9.60565168056993, 8.65622585444949, 2.98154866903998,
3.41777655051322, 1.97319056136621, 0.94937223839797, 7.70208203857221,
1.34617652547275, 3.45872554184077, 0, 4.4508831986296, 5.46708882494732,
4.91013091606268, 4.21922872320583, 1.98386611428636, 5.16625258456538,
0.987883258623551, 1.9976523126893, 0.999873556204156, 0, 0,
12.5182132684178, 4.26280547021245, 5.74391352663491, 1.98195316835276,
2.6269268326561, 0, 2.62897806890156, 1.44925105375924, 0.997861706753207,
3.82959009095785, 2.35700936011199, 2.77169897650709, 5.10202314696777,
2.92700819742691, 0, 0, 3.48100354952622, 0.995602040944279,
3.81615035999827e-17, 0, 4.31638807554654, 3.30048582663178,
2.36477493964976, 1.2194348708156, 0, 0.977365966195705, 0.980450888150537,
4.12474257865495, 4.77606563803705, 0, 3.99346558838731, 1.92838026171232,
2.04366128234741, 1.19472055726191, 0.96138692753422, 0.996387846404434,
0.99984541806601, 1.99778604393487, 1.82983998160516, 0, 4.9192038146885,
7.92507625677077, 1.46985355828565, 0.947911926201679, 0.977791694572914,
2.56733368633665, 2.98750221825888, 4.95313936806017, 0.999824591532346,
0.999860578437574, 7.89583704573002, 4.21926507588364, 5.27405984411569,
0.930355986587347, 3.37633605324755, 0.959422878091389, 5.39561891897167,
0.99979420782063, 3.43956122273547, 0, 11.2897779582773, 5.55081251620991,
1.89935990450622, 5.48241800480934, 3.96533149375221, 2.47265415952356,
1.51454440712737, 4.52972428406733, 0, 0, 12.0225011724791, 7.91153025532304,
7.74127222674597, 5.40718453325574, 2.31909328020232, 0.967844388059724,
1.58662292436851, 2.95377056095829, 0, 1.32011358340892, 1.23898315508515,
4.64223717911343, 10.803663754388, 3.79777236669677, 2.90177625630225,
6.26233219742414, 2.15630091677322, 1.0269012183681, 2.652993309602,
0, 4.79223471757205, 3.56584123462602, 4.46102417902991, 0, 0,
0, 3.45383379137909, 0, 0, 0, 7.6940281404084, 2.16693413514323,
0.912362179624299, 0, 0, 0, 0, 0, 0, 0, 4.04266557774871, 2.89142920171261,
2.51496262475256, 1.7200965225835, 1.68325682775461, 0, 0.965732442398325,
0, 0, 0, 5.24350559925279, 0, 0.871401061436242, 0, 0, 0, 0,
0, 0.98237536600977, 0, 2.24585045686569, 0, 0, 0, 1.89046700450081,
0.955387570975228, 0, 0, 0, 0, 1.92879102561478, 0, 0.85080423779011,
0, 0, 3.14190536142735, 0.957326114259015, 0, 1.87494654529317,
0, 2.51070357997405, 0, 0, 3.82656952506661, 0, 1.97744993737216,
1.35170330459035, 2.10822587715001, 1.94175372195215, 0, 3.44028639125129,
0.736000964355409, 4.13448395152413, 2.56520703114232, 0, 0.67688875457109,
0, 0, 0.895273495394896, 2.11444857264905, 4.6913689580074, 2.61739843083101,
2.02129367682276, 1.94034548557071, 1.14399056570653, 0.914111255570579,
2.93002043793117, 0.658155262074711, 0, 1.03109777529725, 1.29326425441671,
0, 2.60117431368295, 1.4589249137808, 2.24477749564096, 1.91566874727331,
0, 0, 0, 0, 1.06219501204736, 2.5510807060407, 0, 0, 0, 0, 0,
0, 0, 0, 2.42767674970179, 0.945237214566666, 0, 0.976107085399507,
0.969920813527252, 0, 0, 0, 0, 0, 0, 0, 0.93785433616945, 0.961161147540572,
0, 1.71049738415906, 0, 0, 0, 0, 6.88034161147193, 0, 1.17465767888389,
0, 0, 0, 0, 0, 0, 0.999924944405542, 1.02767874847245, 0, 0,
0.986076896519975, 1.09467281900344, 0, 0, 0, 0, 0, 1.9996056906427,
0.957470962203237, 5.99048309631712, 0, 0, 0, 0.963964162563571,
0, 0, 0, 0.905614591737151, 1.94993903396177, 0, 0, 0, 0.9831267705121,
0, 0, 0.957717657370635, 0.999854683957083, 4.25432608501379,
0, 3.92625475060199, 2.08421272201628, 0.954005180455871, 0,
0, 1.40744037658218, 0, 0, 1.53049385580521, 2.08742786864719,
0, 0.932204272613856, 2.85214691068464, 1.98483874347024, 0,
0.961287463317641, 0, 1.98060310648977, 4.71580376952648, 2.45680217392638,
4.23297195640639, 1.66711483861856, 8.55927110011886, 0, 2.86175747962418,
0, 1.99859847695584, 0, 10.7902518650229, 5.19643266972784, 5.49022041375391,
3.87564070714987, 1.97021116872284, 2.569496014327, 3.0938907898396,
0, 1.52568220270555, 0, 3.56642421421062, 3.78317296836553, 1.24625184436421,
2.56910784425913, 1.39054014844563, 0, 1.13881208408365, 0, 0,
0, 9.29905752890718, 3.63237435901733, 0, 3.51829977646971, 3.53387411335125,
1.96353319280354, 3.02149973739282, 0.991690625183937, 0, 0,
6.15301568357459, 2.08395759245509, 2.90321862868917, 0, 0, 0,
0, 0, 1.03875859391059, 0, 1.84169053709974, 4.73464927546807,
3.29482551730069, 0.944335712537982, 0.507120916270719, 0.965749301458801,
0, 0, 0, 0.985332869216024, 3.790383181121, 1.90315101755466,
1.88124756614634, 4.80363467975665, 0.957311201571222, 0, 1.23919628456523,
0, 0.971781981798635, 0, 2.24551148926806, 4.45565726905827,
3.05226227772063, 4.87828075884357, 1.71435827787767, 2.47823794098275,
0, 3.81420654848258, 0, 0, 8.18359075023045, 3.8306499422253,
9.34550385300705, 7.47922380273676, 2.86490515329822, 8.30720244519111,
1.84250369206152, 1.53819735622243, 4.49805322022522, 0, 9.08548645995745,
9.48033745775673, 8.00233814829216, 4.92717440172683, 6.70758201374066,
3.14257697237739, 2.00773554254841, 5.93062856056231, 2.20908700882117,
2.37707842086298, 0.929097265699501, 2.27399907283748, 3.87463347029989,
2.98148887238646, 0.964537049063816, 0.546244710822329, 0.929891454534624,
0, 4.18303394061368, 0, 1.93109040667433, 0.96703083847716, 3.61958470410199,
0.989369761025982, 0, 0.92902872459704, 1.74414458556912, 0.999984315170976,
0, 1.29328432849758, 2.15231795162314, 0, 0, 0, 0, 1.20696993263499,
0, 0, 0, 0, 3.55494631584638, 1.22110410865143, 0, 0, 2.89766372381781,
0, 0, 0, 0, 0.999978032485793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3.75588953719639, 1.9652117432372, 0, 0, 1.90896550198933, 1.05673226937358,
0, 0, 0, 1.0806963934049, 1.90293599928232, 4.30123369433736,
3.44486079748022, 0, 1.53901328346065, 0, 0.995258983026488,
0, 0, 0, 0.971769684923127, 0, 3.43197182515592, 0.373833602675237,
0.985323639234126, 0, 0, 0, 1.90456390426759, 2.03931597894925,
1.20841118866124, 3.70992816438235, 0.96245342999819, 1.74961008372083,
1.55352276800139, 0.953196661970729, 3.03009393868467, 3.39782428391117,
0, 0, 6.02393376353993, 1.09666131187397, 2.38937959355831, 0,
0, 0.962010717241348, 1.99444124276567, 2.76550894052218, 0,
5.11814487789578, 4.83873314353696, 4.72195723779525, 1.154396463663,
10.2943490938617, 0.972294997078382, 2.75530214691473, 6.03013806540127,
3.45677517401991, 2.65640204328229, 0, 5.4699088709503, 1.34591989994092,
0.968027480801877, 0, 0, 6.70770899556017, 0, 0, 0, 1.40005778014759,
4.9685716699152, 0.964452984786725, 2.02817154286552, 3.79655870499958,
0, 0, 1.99939834563455, 0, 1.11769698014686, 0, 2.92639096424273,
0.960819654345003, 3.20326023047262, 2.98447113073958, 2.13486892971564,
0, 0, 0, 0, 0, 5.01391492552988, 3.89381198885916, 4.0407120562477,
0, 0, 0, 0, 0, 1.9869535468726, 0.999715915177586, 5.41238247180703,
2.34295927530292, 0.971687168536445, 2.8402490316314, 0, 2.44204751644768,
1.01737799984193, 0, 0, 0, 9.15994429595625, 2.95567612083482,
3.7946491804776, 4.1972740003978, 0, 0, 0, 3.27363007153705,
0, 0, 2.3650899333948, 3.4654534716139, 2.87316208732025, 2.90255161855036,
0.951283393576656, 0.964774392916014, 0.974787639975603, 0, 3.92230230979189,
0, 0.912985056400291, 3.19872449231427, 0, 1.08754522577537,
0, 2.58897933848872, 3.08756564150939, 0, 1.99256396650957, 0,
0.953961014651861, 5.36456555485762, 0, 0.963654884581226, 0.976052104686089,
2.88404913119628, 0, 1.97262935782497, 0, 13.112154695384, 15.7420452392062,
12.1139749436912, 8.51502077674635, 10.215560049328, 3.94212774397323,
6.21638830408711, 9.54554150125157, 2.65272407542105, 0, 0, 7.28242120460745,
2.62092925211906, 3.37937614003384, 4.48664633024967, 2.97395869257669,
0.90177461691305, 0, 0, 0, 0, 8.88056667768184, 5.67466072077061,
10.162571440047, 1.79061431445435, 3.49648224076267, 0, 0, 0.983500346904769,
0, 2.16673991048653, 10.8264240708011, 6.36210039345802, 3.85302279034079,
1.21682158835164, 3.86187414679975, 0, 0.6968253531738, 0, 3.31670805240398,
0, 2.57226229891071, 14.1151750398631, 8.28131476454812, 5.75721084625946,
4.49791269861466, 1.99870134751065, 3.37965980653243, 3.33007022263459,
1.23269822194761, 0, 9.96789006551518, 9.77042061342099, 6.09148023318591,
2.62741129752051, 2.42251547310543, 4.56362272727148, 1.01220534816484,
1.99943789419644, 0, 1.28270015222995, 3.88111769031741, 4.23324651330711,
2.72818062103148, 3.36910391583055, 3.88687761171111, 0.959378080510268,
0.984367102117628, 3.19673890153704, 1.30739763527238, 1.31568427900589,
0.961647393887926, 0, 8.84706868850713, 9.65991022590421, 9.33027688158077,
4.52796461920258, 4.99113584797472, 6.3100863090063, 0.930182319749625,
0.997738507945235, 16.4949719389613, 13.1173637465167, 4.16760218871829,
3.36259239621625, 3.12016934198718, 0.950808245379981, 8.03656059640706,
0, 0, 0.984586202630374, 1.18876313692371, 3.80221536706476,
1.17809069954397, 7.37884624981007, 2.04809686124246, 5.26070383815465,
4.10525262696822, 1.94417564835417, 0, 7.5467782450164, 6.66135564843135,
7.65330567683705, 8.82660119406034, 12.7620453377787, 6.5203397742796,
4.03717654573231, 4.87555460284932, 4.0799236317848, 2.82173777487444,
1.99864679819265, 12.3493057972168, 9.21592430729054, 9.4533728837409,
4.99122464321143, 5.2424259448338, 0.137555288870447, 3.25868003822806,
0, 0, 0, 5.82216684076162, 7.55730229371656, 1.44244779819369,
2.91260512815927, 7.25020872134978, 0, 1.11095823631732, 0, 0,
0, 7.56539736693699, 1.84712378243518, 1.21152922835192, 0.346486014723377,
3.83923578701349, 1.79184651611372, 1.89759007970377, 0.904002689890386,
0, 0, 3.69349440196439, 3.42677518904899, 6.17144968272382, 5.04785414368672,
1.87490702289048, 0, 0.843948954087595, 3.10713958170869, 0,
0.984514608172213, 10.1890570425796, 1.44509019411814, 6.23657133058806,
8.9097168137993, 0.488670963907921, 1.12998711975737, 2.91462546931082,
0, 0.721656083695695, 0, 9.53552176555011, 9.13383198944105,
8.19327871114069, 9.63116644551394, 1.95497726208689, 0, 0.902587791262123,
1.76826660603099, 0, 0, 7.74333803221342, 6.04027278229041, 4.43333070307042,
4.11600508389756, 6.12372769376276, 4.36855044471812, 1.66883248603149,
2.76274930599563, 0.964383472037774, 0, 13.6220474925181, 4.67390878492096,
7.01684700963481, 1.57859320333416, 6.18621342719189, 2.09441900011574,
1.36680475312131, 2.51365689323432, 3.45090731960153, 0, 8.98443322364179,
9.62072892969595, 9.77158854256769, 8.36425664511965, 10.260525607343,
1.40116902998478, 0.625131226095529, 2.76385178680168, 0, 2.82105334776624,
10.0928670526034, 1.02076302876308, 2.19163113441855, 6.76004516959769,
2.4418591663028, 1.20140682616419, 4.65661274997991, 0, 3.9516249587788,
0, 6.36902935425214, 4.92422280445982, 0.974238064101365, 0,
2.4750146503001, 0.968352109509518, 0, 0, 0, 0, 1.87084669995694,
3.87699919748805, 4.60530297888363, 2.41260516837438, 0.578852366783212,
3.02612668557832, 0, 1.98302807441197, 0, 2.52699703577198, 4.20132353808182,
2.18575636907279, 2.09026417842781, 3.97626927137869, 3.42219350816816,
0.988094728368959, 1.07924327925727, 0, 3.22757678786679, 0,
3.43126766875724, 0.851210544487606, 2.89214809022198, 2.71842730194829,
0, 0, 0, 1.50978219541475, 2.98389861747693, 0, 3.76193784385437,
0, 0, 0, 1.16413645843205, 0.952506846190063, 0, 0, 3.12452510083192,
0, 0.834802767618972, 3.37074694441816, 0, 1.3567014123249, 0,
3.91962024499435, 0.956035878848859, 4.69106225063999, 0.984410939885691,
0, 0, 0.916059026609338, 4.84000542559541, 0, 0.879388307105516,
5.93225667870926, 0.935156263908553, 2.06165373501296, 1.97296935777811,
0, 2.7925707226163, 1.82393218524556, 9.43118494964909, 3.41492221129637,
0, 0, 5.7041284083204, 0, 2.68688669006632, 0, 7.08333072454642,
5.0298957155205, 8.25492128580248, 0.965855061618335, 5.92219128992516,
1.94062444831046, 0, 3.18397518144321, 2.28238484719099, 4.80419586123132,
9.08308248200623, 12.5932217373465, 1.44309012247177, 2.92098827399943,
2.35627264064876, 4.48697594612611, 3.87547864009079, 5.0502503414917,
2.60932997518683, 0, 6.7539780276728, 5.31947497519283, 0, 1.6489523335622,
3.84144936676518, 0, 0, 1.29987396935994, 0, 0.998237864990874,
3.490565668328, 12.9983612730399, 0, 0, 3.86500095297136, 0,
0, 0, 0.159507090492868, 0, 9.32873090941809, 2.68903354807362,
1.02327995215196, 0, 1.89895748883235, 0, 0.864550320580367,
0, 0.924843894290621, 0, 11.2266296252627, 2.94128260043058,
0, 3.12432060564047, 1.74578951569473, 0, 0, 0, 0, 0, 10.0194666259687,
4.88658584266307, 5.19008718663892, 0, 2.21200973625404, 0, 2.22654957328142,
0, 0, 1.01064787837761, 15.6049550852696, 11.3198704825562, 4.61512970277058,
4.54359915016935, 0.698781181092853, 0.828939939166291, 2.46036742384658,
1.76640473651669, 1.13773333518371, 0, 11.3287207812387, 9.66406681026291,
7.97839043459637, 3.96565339604752, 4.10012718055008, 2.59434023765199,
1.76671102186168, 1.92055863436908, 0, 0, 6.95923136260711, 9.38617742677518,
6.51542870176691, 5.08833303304505, 0, 5.46677596703476, 0, 0,
0, 0, 6.8023460815751, 4.02803959353747, 2.41250164382844, 0,
2.12048368507537, 0.818033837717772, 0.811284326585444, 0, 0.75254158345358,
23.2289785766658, 21.0100448141169, 21.2248118978531, 24.1950726625076,
29.4512787398759, 22.5266274899942, 11.9949835948994, 13.0229707758029,
8.46814686219639, 15.4830893824874, 0.989801832029214, 32.6856594628373,
45.9900358334495, 20.5818101951894, 7.4619946430567, 13.6559167837799,
8.25196782534908, 6.36342059587942, 1.17587798371825, 0, 0, 11.9474523277693,
24.9697700606624, 9.67550435206904, 7.11378436835738, 1.85978655403155,
7.16140442326668, 3.31115530311662, 3.00960657586999, 2.9219441306962,
4.58154143356613, 13.2680765838075, 10.2192471367363, 6.87190748875279,
4.95712688765273, 1.95202587674276, 0.988352328547076, 5.62085996659517,
0, 1.52548807537542, 0, 16.9518685774395, 3.22284113772795, 10.6853871171277,
11.8180239441546, 11.0612377434916, 4.09753441859766, 0, 0, 1.3330570250013,
0, 21.0105841245838, 6.93097115172881, 6.83369941646182, 6.16394697395613,
3.92427719895935, 0.992586804341805, 0.881133590770816, 0, 1.15863606761497,
2.57794900272213, 20.205128470535, 14.8240498478195, 22.7445542624752,
14.4328474436363, 13.805667542437, 5.19995576642317, 0, 2.51037466381274,
3.67222819037276, 0, 25.8818222774883, 25.6243925484878, 25.1202066112919,
8.8364558989751, 10.6517754995285, 1.95183659030236, 8.37760928819357,
2.07848236962436, 0, 3.61297674170164, 24.3143961270682, 18.8422069062725,
15.4661641953917, 17.4939243623818, 14.8379437676341, 7.85301446143669,
4.56928545296468, 17.1142036578476, 6.9969931167736, 0.974516701605537,
41.0546051779138, 41.2396948100422, 30.9451525899379, 9.28680568901145,
11.2823224196075, 7.07138014241619, 8.35740168349519, 16.4705314584203,
10.1367989734677, 1.42632054584933, 0.789045953721911, 1.92820417322732,
2.93437112886675, 0, 0, 3.49043128923743, 4.65871498719733, 3.45341327000616,
0.158885742341816, 0, 6.56456537259497, 0.904175354072654, 0,
0.43482422901976, 3.4600185457799, 0.563496810536907, 0.654303603073351,
0, 0, 0, 0, 0, 1.82084680387626, 0, 0, 1.62126587005415, 0, 1.95199148233014,
0.832390075760339, 0, 0.158114620705607, 1.64514121473996, 0.796231510323514,
0.694508567907091, 0.855314216203357, 0, 0.897125897072109, 0,
1.72944620154472, 0, 0, 1.79048039317216, 2.45639842769965, 0,
0.369159043755667, 0, 0, 0.998407734756953, 1.2025457550827,
2.26135165518941, 0, 1.83108368963263, 0, 1.67359476873574, 1.77095110246616,
0, 2.26997995807978, 0, 0, 0, 0.753282090138475, 0, 1.87439410440902,
2.07137979669494, 0, 2.02315425480291, 1.22797105429285, 0.839735964555958,
0, 0, 0, 0, 0, 1.48874280980535, 0, 3.40433610747778, 0.533033649160837,
0.870955724562227, 0, 0, 3.31064622729148, 2.03366334956491,
0.0952993850034861, 5.51790578537878, 0, 1.59799625292199, 2.5681072490802,
0, 0.599601570572549, 0.913431865600578, 1.08486493170755, 2.76740470827554,
0, 4.72369248143339, 2.32782882773936, 1.6574316925009, 0, 1.12188495211598,
1.49739503307722, 7.10084009175291, 1.79606566193654, 0, 0.482403611516955,
1.06534397066927, 1.62412327110963, 4.31113577120195, 5.75729945799922,
0.870308202919181, 0, 0, 0.797778605139102, 2.34682286864638,
1.99369144517311, 0, 1.72642875679735, 0, 0.905305722427236,
0, 0.612232983613017, 0, 2.67349947102764, 1.97715947913304,
0.781822197763554, 2.03547445755438, 0, 0, 0, 0, 1.01915993685572,
0, 4.56931340948164, 2.2133080914496, 0, 3.57642799066638, 1.93408563145307,
0, 0, 2.5232264434448, 0, 0, 0.659894028438038, 1.00040242767402,
0, 4.34321706384974, 2.70448896614546, 0, 0, 0, 2.13683529606351,
0.954061917605477, 0.668461954409201, 2.64436855470797, 0.863575760375821,
0, 0, 1.03860401646941, 0, 0, 0.961985798281919, 0, 3.08682513962986,
3.46507748687802, 0, 1.0093053071988, 0, 0, 1.09460200639388,
0.941249054291113, 0, 0, 0.756572351926487, 0.644786259757739,
1.36743370740754, 0.801193331099489, 4.68690815900379, 0, 0.850361213334639,
0, 0, 0, 6.68622684835199, 9.82979237055641, 2.50924854221481,
1.97747162732127, 0.745176167697714, 0.821491369401391, 0.872517785038846,
0, 2.60339182458295, 3.38426631023116, 2.2856673711622, 0.996068757761497,
2.21366008239101, 0, 0.75349092857244, 0, 0.843978403877401,
1.00798815899338, 0, 1.92488216454101, 9.33460881510809, 1.99647518906631,
1.99663758367329, 2.55985933782258, 1.06896773817672, 0, 2.44417560302444,
0, 0.999169522192542, 0, 4.77002773982726, 4.26437928218937,
1.03552012149485, 0.997283851194522, 0, 0.99954323168083, 0,
0, 0, 2.30570157376949, 4.1096417095646, 15.9146418840034, 2.44212756024836,
3.06788515278813, 0, 0, 4.29684930321504, 0, 0, 0, 4.97991354372101,
0, 0, 0, 0.872661605262595, 0, 0, 0, 0, 0, 1.56144456436146,
0, 0, 0, 0, 0, 0, 0.999729605788351, 0, 0, 3.26889538202259,
1.19551448126251, 0, 0, 3.04414534369391, 0, 3.36186617559095,
2.95821037051476, 0, 0, 2.28999736446406, 0.983345573615624,