bsplot 0.0.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. bsplot/__init__.py +23 -0
  2. bsplot/anat.py +55 -0
  3. bsplot/animate.py +194 -0
  4. bsplot/bioicons.py +777 -0
  5. bsplot/brain.py +188 -0
  6. bsplot/colors.py +1935 -0
  7. bsplot/data/HCP_avg-SC.txt +379 -0
  8. bsplot/data/MNI152.rh.pial +0 -0
  9. bsplot/data/STN_lh.nii.gz +0 -0
  10. bsplot/data/STN_rh.nii.gz +0 -0
  11. bsplot/data/__init__.py +22 -0
  12. bsplot/data/left_electrode.ply +257270 -0
  13. bsplot/data/parcellations/HCP-MMP1.L.label.gii +442 -0
  14. bsplot/data/parcellations/HCP-MMP1.R.label.gii +442 -0
  15. bsplot/data/parcellations/code/split_hcpmmp1.sh +4 -0
  16. bsplot/data/right_electrode.ply +257270 -0
  17. bsplot/data/surface.py +112 -0
  18. bsplot/data/tpl-MNI152NLin2009b_atlas-hcpmmp1_desc-ordered_dseg.nii.gz +0 -0
  19. bsplot/figure.py +177 -0
  20. bsplot/graph/__init__.py +31 -0
  21. bsplot/graph/edges.py +312 -0
  22. bsplot/graph/flowchart.py +762 -0
  23. bsplot/graph/layout.py +201 -0
  24. bsplot/graph/network.py +974 -0
  25. bsplot/graph/nodes.py +452 -0
  26. bsplot/panels.py +110 -0
  27. bsplot/scientific_color_maps/__init__.py +0 -0
  28. bsplot/scientific_color_maps/_sync_from_zenodo_download.sh +1 -0
  29. bsplot/scientific_color_maps/batlowK.txt +256 -0
  30. bsplot/scientific_color_maps/batlowW.txt +256 -0
  31. bsplot/scientific_color_maps/cyclic/bamO.txt +256 -0
  32. bsplot/scientific_color_maps/cyclic/brocO.txt +256 -0
  33. bsplot/scientific_color_maps/cyclic/corkO.txt +256 -0
  34. bsplot/scientific_color_maps/cyclic/romaO.txt +256 -0
  35. bsplot/scientific_color_maps/cyclic/vikO.txt +256 -0
  36. bsplot/scientific_color_maps/diverging/bam.txt +256 -0
  37. bsplot/scientific_color_maps/diverging/berlin.txt +256 -0
  38. bsplot/scientific_color_maps/diverging/broc.txt +256 -0
  39. bsplot/scientific_color_maps/diverging/cork.txt +256 -0
  40. bsplot/scientific_color_maps/diverging/lisbon.txt +256 -0
  41. bsplot/scientific_color_maps/diverging/managua.txt +256 -0
  42. bsplot/scientific_color_maps/diverging/roma.txt +256 -0
  43. bsplot/scientific_color_maps/diverging/tofino.txt +256 -0
  44. bsplot/scientific_color_maps/diverging/vanimo.txt +256 -0
  45. bsplot/scientific_color_maps/diverging/vik.txt +256 -0
  46. bsplot/scientific_color_maps/multisequential/bukavu.txt +256 -0
  47. bsplot/scientific_color_maps/multisequential/fes.txt +256 -0
  48. bsplot/scientific_color_maps/multisequential/oleron.txt +256 -0
  49. bsplot/scientific_color_maps/naviaW.txt +256 -0
  50. bsplot/scientific_color_maps/sequential/acton.txt +256 -0
  51. bsplot/scientific_color_maps/sequential/bamako.txt +256 -0
  52. bsplot/scientific_color_maps/sequential/batlow.txt +256 -0
  53. bsplot/scientific_color_maps/sequential/bilbao.txt +256 -0
  54. bsplot/scientific_color_maps/sequential/buda.txt +256 -0
  55. bsplot/scientific_color_maps/sequential/davos.txt +256 -0
  56. bsplot/scientific_color_maps/sequential/devon.txt +256 -0
  57. bsplot/scientific_color_maps/sequential/glasgow.txt +256 -0
  58. bsplot/scientific_color_maps/sequential/grayC.txt +256 -0
  59. bsplot/scientific_color_maps/sequential/hawaii.txt +256 -0
  60. bsplot/scientific_color_maps/sequential/imola.txt +256 -0
  61. bsplot/scientific_color_maps/sequential/lajolla.txt +256 -0
  62. bsplot/scientific_color_maps/sequential/lapaz.txt +256 -0
  63. bsplot/scientific_color_maps/sequential/lipari.txt +256 -0
  64. bsplot/scientific_color_maps/sequential/navia.txt +256 -0
  65. bsplot/scientific_color_maps/sequential/nuuk.txt +256 -0
  66. bsplot/scientific_color_maps/sequential/oslo.txt +256 -0
  67. bsplot/scientific_color_maps/sequential/tokyo.txt +256 -0
  68. bsplot/scientific_color_maps/sequential/turku.txt +256 -0
  69. bsplot/streamlines.py +314 -0
  70. bsplot/style.py +791 -0
  71. bsplot/styles/black.mplstyle +78 -0
  72. bsplot/styles/bss.mplstyle +50 -0
  73. bsplot/styles/bwcomp.mplstyle +30 -0
  74. bsplot/styles/nature.mplstyle +57 -0
  75. bsplot/styles/transparent.mplstyle +16 -0
  76. bsplot/styles/tvbo.mplstyle +57 -0
  77. bsplot/surface.py +2370 -0
  78. bsplot/templates.py +270 -0
  79. bsplot/text.py +199 -0
  80. bsplot/text2obj.py +59 -0
  81. bsplot/timeseries.py +10 -0
  82. bsplot/utils.py +13 -0
  83. bsplot/volume.py +958 -0
  84. bsplot-0.0.2.dist-info/METADATA +60 -0
  85. bsplot-0.0.2.dist-info/RECORD +89 -0
  86. bsplot-0.0.2.dist-info/WHEEL +5 -0
  87. bsplot-0.0.2.dist-info/entry_points.txt +2 -0
  88. bsplot-0.0.2.dist-info/licenses/LICENSE +193 -0
  89. bsplot-0.0.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,256 @@
1
+ 0.309794 0.100897 0.238434
2
+ 0.306925 0.103057 0.243183
3
+ 0.304063 0.105260 0.248048
4
+ 0.301206 0.107642 0.252960
5
+ 0.298357 0.110165 0.257956
6
+ 0.295506 0.112761 0.263074
7
+ 0.292652 0.115446 0.268250
8
+ 0.289797 0.118320 0.273541
9
+ 0.286923 0.121220 0.278905
10
+ 0.284059 0.124315 0.284344
11
+ 0.281176 0.127533 0.289890
12
+ 0.278304 0.130893 0.295518
13
+ 0.275415 0.134349 0.301232
14
+ 0.272489 0.137934 0.307044
15
+ 0.269596 0.141626 0.312930
16
+ 0.266660 0.145480 0.318905
17
+ 0.263743 0.149425 0.324947
18
+ 0.260788 0.153482 0.331074
19
+ 0.257831 0.157709 0.337294
20
+ 0.254906 0.162085 0.343565
21
+ 0.251945 0.166549 0.349914
22
+ 0.248989 0.171142 0.356325
23
+ 0.246024 0.175856 0.362786
24
+ 0.243082 0.180726 0.369314
25
+ 0.240155 0.185755 0.375891
26
+ 0.237283 0.190836 0.382507
27
+ 0.234393 0.196092 0.389178
28
+ 0.231551 0.201426 0.395877
29
+ 0.228748 0.206944 0.402594
30
+ 0.226000 0.212530 0.409350
31
+ 0.223307 0.218250 0.416117
32
+ 0.220710 0.224062 0.422892
33
+ 0.218170 0.229998 0.429688
34
+ 0.215755 0.236076 0.436479
35
+ 0.213434 0.242217 0.443264
36
+ 0.211280 0.248489 0.450038
37
+ 0.209250 0.254841 0.456796
38
+ 0.207408 0.261271 0.463537
39
+ 0.205743 0.267789 0.470264
40
+ 0.204294 0.274426 0.476952
41
+ 0.203032 0.281125 0.483609
42
+ 0.202026 0.287915 0.490243
43
+ 0.201285 0.294778 0.496828
44
+ 0.200827 0.301710 0.503377
45
+ 0.200667 0.308736 0.509893
46
+ 0.200819 0.315806 0.516356
47
+ 0.201300 0.322937 0.522785
48
+ 0.202125 0.330125 0.529167
49
+ 0.203310 0.337371 0.535486
50
+ 0.204842 0.344665 0.541769
51
+ 0.206756 0.352010 0.548014
52
+ 0.209001 0.359413 0.554202
53
+ 0.211661 0.366859 0.560346
54
+ 0.214658 0.374347 0.566442
55
+ 0.218059 0.381861 0.572495
56
+ 0.221805 0.389424 0.578493
57
+ 0.225949 0.397012 0.584457
58
+ 0.230400 0.404640 0.590370
59
+ 0.235255 0.412311 0.596247
60
+ 0.240385 0.419990 0.602077
61
+ 0.245885 0.427706 0.607873
62
+ 0.251719 0.435440 0.613610
63
+ 0.257815 0.443189 0.619328
64
+ 0.264244 0.450959 0.624987
65
+ 0.270945 0.458746 0.630616
66
+ 0.277910 0.466546 0.636198
67
+ 0.285126 0.474358 0.641734
68
+ 0.292615 0.482177 0.647238
69
+ 0.300336 0.489993 0.652688
70
+ 0.308292 0.497831 0.658107
71
+ 0.316471 0.505635 0.663476
72
+ 0.324836 0.513466 0.668792
73
+ 0.333432 0.521272 0.674059
74
+ 0.342199 0.529079 0.679273
75
+ 0.351152 0.536863 0.684435
76
+ 0.360265 0.544620 0.689548
77
+ 0.369559 0.552363 0.694583
78
+ 0.379006 0.560075 0.699563
79
+ 0.388606 0.567750 0.704473
80
+ 0.398342 0.575392 0.709312
81
+ 0.408208 0.582985 0.714062
82
+ 0.418198 0.590534 0.718732
83
+ 0.428317 0.598029 0.723311
84
+ 0.438535 0.605463 0.727795
85
+ 0.448867 0.612831 0.732180
86
+ 0.459282 0.620136 0.736442
87
+ 0.469788 0.627344 0.740595
88
+ 0.480360 0.634477 0.744621
89
+ 0.491019 0.641500 0.748513
90
+ 0.501719 0.648431 0.752260
91
+ 0.512468 0.655248 0.755858
92
+ 0.523271 0.661954 0.759290
93
+ 0.534088 0.668520 0.762556
94
+ 0.544939 0.674947 0.765648
95
+ 0.555783 0.681227 0.768536
96
+ 0.566644 0.687359 0.771238
97
+ 0.577472 0.693321 0.773717
98
+ 0.588276 0.699099 0.775984
99
+ 0.599049 0.704698 0.778019
100
+ 0.609756 0.710098 0.779809
101
+ 0.620406 0.715290 0.781353
102
+ 0.630964 0.720260 0.782631
103
+ 0.641418 0.725008 0.783644
104
+ 0.651775 0.729510 0.784377
105
+ 0.661998 0.733766 0.784818
106
+ 0.672071 0.737761 0.784964
107
+ 0.681985 0.741491 0.784809
108
+ 0.691734 0.744947 0.784344
109
+ 0.701286 0.748120 0.783559
110
+ 0.710638 0.751000 0.782456
111
+ 0.719766 0.753571 0.781030
112
+ 0.728656 0.755845 0.779275
113
+ 0.737301 0.757806 0.777198
114
+ 0.745682 0.759447 0.774779
115
+ 0.753790 0.760779 0.772041
116
+ 0.761608 0.761780 0.768968
117
+ 0.769130 0.762462 0.765581
118
+ 0.776350 0.762822 0.761860
119
+ 0.783247 0.762858 0.757832
120
+ 0.789824 0.762572 0.753487
121
+ 0.796069 0.761968 0.748841
122
+ 0.801982 0.761052 0.743901
123
+ 0.807559 0.759818 0.738672
124
+ 0.812790 0.758288 0.733164
125
+ 0.817683 0.756451 0.727385
126
+ 0.822240 0.754328 0.721348
127
+ 0.826449 0.751915 0.715071
128
+ 0.830323 0.749220 0.708558
129
+ 0.833864 0.746267 0.701809
130
+ 0.837071 0.743057 0.694857
131
+ 0.839957 0.739595 0.687707
132
+ 0.842522 0.735881 0.680359
133
+ 0.844775 0.731953 0.672849
134
+ 0.846720 0.727795 0.665158
135
+ 0.848375 0.723429 0.657325
136
+ 0.849744 0.718866 0.649343
137
+ 0.850824 0.714109 0.641219
138
+ 0.851641 0.709178 0.632988
139
+ 0.852200 0.704064 0.624639
140
+ 0.852502 0.698789 0.616188
141
+ 0.852559 0.693366 0.607648
142
+ 0.852383 0.687792 0.599014
143
+ 0.851977 0.682076 0.590303
144
+ 0.851351 0.676238 0.581530
145
+ 0.850524 0.670276 0.572701
146
+ 0.849497 0.664186 0.563812
147
+ 0.848269 0.657993 0.554867
148
+ 0.846857 0.651691 0.545892
149
+ 0.845268 0.645281 0.536877
150
+ 0.843502 0.638786 0.527819
151
+ 0.841573 0.632196 0.518753
152
+ 0.839480 0.625516 0.509650
153
+ 0.837227 0.618761 0.500535
154
+ 0.834819 0.611908 0.491420
155
+ 0.832264 0.604986 0.482276
156
+ 0.829563 0.597982 0.473123
157
+ 0.826715 0.590908 0.463993
158
+ 0.823724 0.583759 0.454850
159
+ 0.820595 0.576547 0.445697
160
+ 0.817330 0.569242 0.436575
161
+ 0.813925 0.561889 0.427458
162
+ 0.810383 0.554451 0.418335
163
+ 0.806711 0.546945 0.409251
164
+ 0.802891 0.539366 0.400181
165
+ 0.798942 0.531725 0.391138
166
+ 0.794848 0.524009 0.382105
167
+ 0.790616 0.516215 0.373117
168
+ 0.786248 0.508373 0.364162
169
+ 0.781732 0.500434 0.355262
170
+ 0.777075 0.492435 0.346370
171
+ 0.772265 0.484364 0.337552
172
+ 0.767312 0.476232 0.328785
173
+ 0.762213 0.468018 0.320076
174
+ 0.756966 0.459745 0.311414
175
+ 0.751572 0.451404 0.302832
176
+ 0.746017 0.442996 0.294339
177
+ 0.740318 0.434521 0.285926
178
+ 0.734468 0.425986 0.277633
179
+ 0.728462 0.417410 0.269433
180
+ 0.722309 0.408765 0.261326
181
+ 0.716022 0.400078 0.253360
182
+ 0.709580 0.391359 0.245505
183
+ 0.703000 0.382589 0.237836
184
+ 0.696284 0.373805 0.230275
185
+ 0.689441 0.364988 0.222933
186
+ 0.682464 0.356175 0.215740
187
+ 0.675380 0.347352 0.208729
188
+ 0.668190 0.338519 0.201919
189
+ 0.660887 0.329730 0.195347
190
+ 0.653502 0.320948 0.188998
191
+ 0.646037 0.312188 0.182858
192
+ 0.638504 0.303505 0.177002
193
+ 0.630916 0.294878 0.171380
194
+ 0.623278 0.286318 0.166023
195
+ 0.615601 0.277866 0.160968
196
+ 0.607919 0.269501 0.156191
197
+ 0.600216 0.261224 0.151649
198
+ 0.592533 0.253084 0.147456
199
+ 0.584857 0.245050 0.143533
200
+ 0.577215 0.237213 0.139876
201
+ 0.569614 0.229458 0.136560
202
+ 0.562087 0.221900 0.133557
203
+ 0.554609 0.214514 0.130839
204
+ 0.547213 0.207309 0.128377
205
+ 0.539904 0.200249 0.126229
206
+ 0.532704 0.193439 0.124314
207
+ 0.525599 0.186791 0.122693
208
+ 0.518615 0.180343 0.121355
209
+ 0.511737 0.174127 0.120283
210
+ 0.504996 0.168093 0.119460
211
+ 0.498392 0.162314 0.118887
212
+ 0.491910 0.156718 0.118530
213
+ 0.485559 0.151323 0.118380
214
+ 0.479365 0.146179 0.118441
215
+ 0.473293 0.141262 0.118696
216
+ 0.467386 0.136499 0.119128
217
+ 0.461606 0.132029 0.119743
218
+ 0.455965 0.127739 0.120540
219
+ 0.450470 0.123640 0.121503
220
+ 0.445110 0.119801 0.122633
221
+ 0.439885 0.116199 0.123927
222
+ 0.434795 0.112774 0.125384
223
+ 0.429829 0.109563 0.126918
224
+ 0.424996 0.106543 0.128630
225
+ 0.420275 0.103706 0.130495
226
+ 0.415679 0.101056 0.132411
227
+ 0.411199 0.098655 0.134487
228
+ 0.406829 0.096378 0.136617
229
+ 0.402559 0.094420 0.138903
230
+ 0.398404 0.092523 0.141318
231
+ 0.394334 0.090892 0.143788
232
+ 0.390360 0.089396 0.146355
233
+ 0.386473 0.088090 0.149037
234
+ 0.382681 0.086971 0.151798
235
+ 0.378962 0.085915 0.154663
236
+ 0.375315 0.085142 0.157608
237
+ 0.371742 0.084549 0.160643
238
+ 0.368248 0.084070 0.163801
239
+ 0.364802 0.083717 0.166997
240
+ 0.361425 0.083521 0.170268
241
+ 0.358104 0.083485 0.173628
242
+ 0.354840 0.083605 0.177086
243
+ 0.351599 0.083878 0.180596
244
+ 0.348426 0.084281 0.184216
245
+ 0.345287 0.084781 0.187935
246
+ 0.342192 0.085387 0.191667
247
+ 0.339133 0.086179 0.195515
248
+ 0.336087 0.087176 0.199429
249
+ 0.333099 0.088190 0.203460
250
+ 0.330117 0.089356 0.207546
251
+ 0.327150 0.090652 0.211724
252
+ 0.324219 0.092078 0.215975
253
+ 0.321308 0.093564 0.220306
254
+ 0.318411 0.095269 0.224679
255
+ 0.315531 0.096976 0.229197
256
+ 0.312640 0.098899 0.233767
@@ -0,0 +1,256 @@
1
+ 0.396221 0.008120 0.296046
2
+ 0.405071 0.018136 0.304731
3
+ 0.413908 0.028663 0.313417
4
+ 0.422702 0.040100 0.322082
5
+ 0.431480 0.051043 0.330719
6
+ 0.440186 0.061170 0.339349
7
+ 0.448852 0.070776 0.347916
8
+ 0.457446 0.079825 0.356448
9
+ 0.465986 0.088578 0.364920
10
+ 0.474476 0.096961 0.373353
11
+ 0.482885 0.105159 0.381732
12
+ 0.491248 0.113219 0.390047
13
+ 0.499512 0.120980 0.398320
14
+ 0.507735 0.128684 0.406522
15
+ 0.515865 0.136227 0.414658
16
+ 0.523942 0.143720 0.422726
17
+ 0.531939 0.151068 0.430745
18
+ 0.539852 0.158372 0.438676
19
+ 0.547699 0.165535 0.446549
20
+ 0.555458 0.172692 0.454351
21
+ 0.563154 0.179773 0.462068
22
+ 0.570749 0.186802 0.469724
23
+ 0.578269 0.193793 0.477285
24
+ 0.585715 0.200686 0.484772
25
+ 0.593064 0.207599 0.492191
26
+ 0.600322 0.214443 0.499515
27
+ 0.607503 0.221263 0.506769
28
+ 0.614575 0.228042 0.513944
29
+ 0.621566 0.234793 0.521019
30
+ 0.628471 0.241495 0.528013
31
+ 0.635265 0.248193 0.534924
32
+ 0.641970 0.254854 0.541739
33
+ 0.648573 0.261477 0.548485
34
+ 0.655073 0.268085 0.555119
35
+ 0.661482 0.274690 0.561680
36
+ 0.667785 0.281274 0.568142
37
+ 0.673982 0.287850 0.574519
38
+ 0.680079 0.294422 0.580821
39
+ 0.686090 0.300996 0.587036
40
+ 0.692006 0.307579 0.593184
41
+ 0.697824 0.314190 0.599256
42
+ 0.703570 0.320832 0.605260
43
+ 0.709238 0.327489 0.611221
44
+ 0.714827 0.334225 0.617127
45
+ 0.720359 0.341004 0.622996
46
+ 0.725835 0.347863 0.628833
47
+ 0.731247 0.354808 0.634644
48
+ 0.736614 0.361830 0.640431
49
+ 0.741931 0.368954 0.646198
50
+ 0.747201 0.376180 0.651956
51
+ 0.752415 0.383507 0.657697
52
+ 0.757585 0.390940 0.663420
53
+ 0.762697 0.398474 0.669124
54
+ 0.767757 0.406121 0.674811
55
+ 0.772762 0.413861 0.680476
56
+ 0.777711 0.421699 0.686131
57
+ 0.782590 0.429651 0.691758
58
+ 0.787410 0.437698 0.697355
59
+ 0.792161 0.445812 0.702933
60
+ 0.796843 0.454037 0.708479
61
+ 0.801459 0.462331 0.713988
62
+ 0.806005 0.470716 0.719473
63
+ 0.810475 0.479167 0.724922
64
+ 0.814878 0.487694 0.730333
65
+ 0.819205 0.496265 0.735705
66
+ 0.823465 0.504919 0.741043
67
+ 0.827650 0.513622 0.746349
68
+ 0.831770 0.522364 0.751618
69
+ 0.835811 0.531163 0.756839
70
+ 0.839791 0.539993 0.762024
71
+ 0.843693 0.548872 0.767172
72
+ 0.847537 0.557765 0.772284
73
+ 0.851315 0.566693 0.777361
74
+ 0.855038 0.575640 0.782391
75
+ 0.858692 0.584597 0.787386
76
+ 0.862297 0.593569 0.792343
77
+ 0.865836 0.602547 0.797261
78
+ 0.869326 0.611531 0.802145
79
+ 0.872763 0.620515 0.806996
80
+ 0.876148 0.629479 0.811803
81
+ 0.879485 0.638442 0.816577
82
+ 0.882775 0.647388 0.821310
83
+ 0.886025 0.656316 0.826006
84
+ 0.889223 0.665206 0.830667
85
+ 0.892381 0.674072 0.835284
86
+ 0.895493 0.682901 0.839864
87
+ 0.898559 0.691686 0.844395
88
+ 0.901586 0.700422 0.848884
89
+ 0.904569 0.709106 0.853321
90
+ 0.907510 0.717722 0.857714
91
+ 0.910403 0.726269 0.862057
92
+ 0.913249 0.734744 0.866335
93
+ 0.916044 0.743137 0.870554
94
+ 0.918796 0.751441 0.874715
95
+ 0.921500 0.759641 0.878806
96
+ 0.924149 0.767750 0.882826
97
+ 0.926743 0.775755 0.886778
98
+ 0.929283 0.783650 0.890643
99
+ 0.931766 0.791422 0.894433
100
+ 0.934188 0.799080 0.898128
101
+ 0.936556 0.806609 0.901737
102
+ 0.938849 0.814002 0.905253
103
+ 0.941077 0.821269 0.908662
104
+ 0.943239 0.828393 0.911968
105
+ 0.945326 0.835374 0.915162
106
+ 0.947335 0.842209 0.918244
107
+ 0.949262 0.848885 0.921199
108
+ 0.951110 0.855405 0.924030
109
+ 0.952868 0.861758 0.926721
110
+ 0.954533 0.867942 0.929273
111
+ 0.956105 0.873944 0.931677
112
+ 0.957573 0.879765 0.933924
113
+ 0.958939 0.885401 0.936016
114
+ 0.960196 0.890837 0.937931
115
+ 0.961338 0.896075 0.939674
116
+ 0.962365 0.901100 0.941231
117
+ 0.963273 0.905916 0.942607
118
+ 0.964053 0.910508 0.943781
119
+ 0.964708 0.914872 0.944761
120
+ 0.965233 0.919005 0.945533
121
+ 0.965625 0.922910 0.946096
122
+ 0.965883 0.926568 0.946450
123
+ 0.966004 0.929988 0.946591
124
+ 0.965987 0.933158 0.946515
125
+ 0.965833 0.936091 0.946222
126
+ 0.965541 0.938770 0.945714
127
+ 0.965110 0.941205 0.944990
128
+ 0.964541 0.943403 0.944041
129
+ 0.963832 0.945364 0.942874
130
+ 0.962982 0.947096 0.941475
131
+ 0.961977 0.948607 0.939848
132
+ 0.960826 0.949910 0.937971
133
+ 0.959505 0.951014 0.935838
134
+ 0.958017 0.951915 0.933427
135
+ 0.956346 0.952631 0.930741
136
+ 0.954487 0.953159 0.927747
137
+ 0.952432 0.953495 0.924451
138
+ 0.950180 0.953643 0.920838
139
+ 0.947725 0.953600 0.916912
140
+ 0.945064 0.953366 0.912654
141
+ 0.942194 0.952937 0.908076
142
+ 0.939113 0.952313 0.903169
143
+ 0.935826 0.951501 0.897934
144
+ 0.932323 0.950494 0.892381
145
+ 0.928614 0.949292 0.886503
146
+ 0.924695 0.947902 0.880298
147
+ 0.920564 0.946317 0.873781
148
+ 0.916225 0.944549 0.866944
149
+ 0.911675 0.942591 0.859800
150
+ 0.906913 0.940444 0.852344
151
+ 0.901935 0.938111 0.844574
152
+ 0.896749 0.935596 0.836502
153
+ 0.891343 0.932894 0.828128
154
+ 0.885727 0.930017 0.819456
155
+ 0.879889 0.926953 0.810494
156
+ 0.873838 0.923715 0.801243
157
+ 0.867568 0.920288 0.791707
158
+ 0.861075 0.916687 0.781896
159
+ 0.854364 0.912903 0.771808
160
+ 0.847429 0.908938 0.761455
161
+ 0.840281 0.904797 0.750858
162
+ 0.832904 0.900475 0.740012
163
+ 0.825314 0.895977 0.728931
164
+ 0.817511 0.891301 0.717646
165
+ 0.809502 0.886455 0.706155
166
+ 0.801283 0.881434 0.694478
167
+ 0.792872 0.876243 0.682651
168
+ 0.784272 0.870890 0.670686
169
+ 0.775481 0.865376 0.658589
170
+ 0.766526 0.859709 0.646405
171
+ 0.757409 0.853884 0.634150
172
+ 0.748144 0.847918 0.621829
173
+ 0.738738 0.841816 0.609500
174
+ 0.729203 0.835576 0.597164
175
+ 0.719562 0.829215 0.584846
176
+ 0.709818 0.822730 0.572576
177
+ 0.699987 0.816140 0.560369
178
+ 0.690091 0.809446 0.548257
179
+ 0.680134 0.802656 0.536247
180
+ 0.670152 0.795787 0.524370
181
+ 0.660127 0.788849 0.512641
182
+ 0.650098 0.781842 0.501084
183
+ 0.640071 0.774774 0.489693
184
+ 0.630054 0.767666 0.478509
185
+ 0.620072 0.760525 0.467529
186
+ 0.610116 0.753348 0.456756
187
+ 0.600220 0.746157 0.446208
188
+ 0.590378 0.738957 0.435899
189
+ 0.580611 0.731744 0.425808
190
+ 0.570913 0.724539 0.415960
191
+ 0.561303 0.717347 0.406352
192
+ 0.551785 0.710162 0.396963
193
+ 0.542354 0.703003 0.387823
194
+ 0.533021 0.695871 0.378914
195
+ 0.523790 0.688770 0.370223
196
+ 0.514665 0.681694 0.361769
197
+ 0.505631 0.674670 0.353512
198
+ 0.496719 0.667690 0.345472
199
+ 0.487925 0.660742 0.337637
200
+ 0.479221 0.653854 0.330000
201
+ 0.470630 0.647015 0.322546
202
+ 0.462142 0.640226 0.315260
203
+ 0.453764 0.633490 0.308149
204
+ 0.445490 0.626806 0.301204
205
+ 0.437336 0.620190 0.294420
206
+ 0.429267 0.613614 0.287785
207
+ 0.421300 0.607118 0.281292
208
+ 0.413451 0.600663 0.274939
209
+ 0.405696 0.594277 0.268721
210
+ 0.398033 0.587944 0.262603
211
+ 0.390461 0.581678 0.256604
212
+ 0.382998 0.575476 0.250720
213
+ 0.375613 0.569319 0.244926
214
+ 0.368332 0.563236 0.239258
215
+ 0.361120 0.557201 0.233647
216
+ 0.354001 0.551210 0.228166
217
+ 0.346969 0.545275 0.222728
218
+ 0.339994 0.539377 0.217359
219
+ 0.333085 0.533519 0.212065
220
+ 0.326204 0.527697 0.206814
221
+ 0.319400 0.521887 0.201563
222
+ 0.312601 0.516093 0.196416
223
+ 0.305861 0.510308 0.191225
224
+ 0.299097 0.504520 0.186094
225
+ 0.292330 0.498703 0.180910
226
+ 0.285551 0.492853 0.175743
227
+ 0.278784 0.486993 0.170584
228
+ 0.271947 0.481080 0.165356
229
+ 0.265112 0.475148 0.160123
230
+ 0.258231 0.469156 0.154884
231
+ 0.251336 0.463102 0.149612
232
+ 0.244348 0.457022 0.144259
233
+ 0.237381 0.450891 0.138859
234
+ 0.230295 0.444712 0.133443
235
+ 0.223223 0.438468 0.127969
236
+ 0.216083 0.432194 0.122390
237
+ 0.208861 0.425844 0.116835
238
+ 0.201589 0.419466 0.111210
239
+ 0.194315 0.413033 0.105465
240
+ 0.186913 0.406543 0.099681
241
+ 0.179463 0.400004 0.093826
242
+ 0.171937 0.393422 0.087904
243
+ 0.164360 0.386787 0.081888
244
+ 0.156663 0.380117 0.075659
245
+ 0.148841 0.373390 0.069479
246
+ 0.140972 0.366627 0.063040
247
+ 0.132915 0.359804 0.056434
248
+ 0.124705 0.352944 0.049637
249
+ 0.116381 0.346024 0.042550
250
+ 0.107779 0.339092 0.035407
251
+ 0.098981 0.332097 0.028358
252
+ 0.089900 0.325051 0.021963
253
+ 0.080424 0.317996 0.016000
254
+ 0.070529 0.310912 0.010244
255
+ 0.060124 0.303780 0.005140
256
+ 0.049098 0.296663 0.000000