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.049747 0.049747 0.049747
2
+ 0.060384 0.060385 0.060384
3
+ 0.069772 0.069773 0.069773
4
+ 0.078116 0.078117 0.078117
5
+ 0.085807 0.085810 0.085809
6
+ 0.092920 0.092923 0.092922
7
+ 0.099846 0.099848 0.099847
8
+ 0.106800 0.106801 0.106801
9
+ 0.113681 0.113682 0.113682
10
+ 0.120546 0.120547 0.120547
11
+ 0.127458 0.127458 0.127458
12
+ 0.134389 0.134389 0.134389
13
+ 0.141276 0.141276 0.141276
14
+ 0.148126 0.148126 0.148126
15
+ 0.154994 0.154994 0.154994
16
+ 0.161878 0.161878 0.161878
17
+ 0.168702 0.168702 0.168702
18
+ 0.175509 0.175509 0.175509
19
+ 0.182309 0.182309 0.182309
20
+ 0.189121 0.189121 0.189121
21
+ 0.195892 0.195892 0.195892
22
+ 0.202633 0.202633 0.202633
23
+ 0.209369 0.209369 0.209369
24
+ 0.216100 0.216100 0.216100
25
+ 0.222776 0.222776 0.222776
26
+ 0.229416 0.229416 0.229416
27
+ 0.236073 0.236073 0.236073
28
+ 0.242663 0.242663 0.242663
29
+ 0.249255 0.249255 0.249255
30
+ 0.255806 0.255806 0.255806
31
+ 0.262342 0.262342 0.262342
32
+ 0.268854 0.268854 0.268854
33
+ 0.275321 0.275321 0.275321
34
+ 0.281757 0.281757 0.281757
35
+ 0.288160 0.288160 0.288160
36
+ 0.294538 0.294538 0.294538
37
+ 0.300889 0.300889 0.300889
38
+ 0.307211 0.307211 0.307211
39
+ 0.313508 0.313508 0.313508
40
+ 0.319763 0.319763 0.319763
41
+ 0.325968 0.325968 0.325968
42
+ 0.332175 0.332175 0.332175
43
+ 0.338315 0.338315 0.338315
44
+ 0.344435 0.344435 0.344435
45
+ 0.350537 0.350537 0.350537
46
+ 0.356585 0.356585 0.356585
47
+ 0.362593 0.362593 0.362593
48
+ 0.368580 0.368580 0.368580
49
+ 0.374523 0.374523 0.374523
50
+ 0.380429 0.380429 0.380429
51
+ 0.386290 0.386290 0.386290
52
+ 0.392132 0.392132 0.392132
53
+ 0.397937 0.397937 0.397937
54
+ 0.403699 0.403699 0.403699
55
+ 0.409422 0.409422 0.409422
56
+ 0.415111 0.415111 0.415111
57
+ 0.420763 0.420763 0.420763
58
+ 0.426389 0.426389 0.426389
59
+ 0.431998 0.431998 0.431998
60
+ 0.437562 0.437562 0.437562
61
+ 0.443100 0.443100 0.443100
62
+ 0.448628 0.448628 0.448628
63
+ 0.454139 0.454139 0.454139
64
+ 0.459646 0.459646 0.459646
65
+ 0.465151 0.465151 0.465151
66
+ 0.470678 0.470678 0.470678
67
+ 0.476215 0.476215 0.476215
68
+ 0.481780 0.481780 0.481780
69
+ 0.487380 0.487380 0.487380
70
+ 0.493005 0.493005 0.493005
71
+ 0.498699 0.498699 0.498699
72
+ 0.504437 0.504437 0.504437
73
+ 0.510215 0.510215 0.510215
74
+ 0.516057 0.516057 0.516057
75
+ 0.521966 0.521966 0.521966
76
+ 0.527943 0.527943 0.527943
77
+ 0.533976 0.533976 0.533976
78
+ 0.540081 0.540081 0.540081
79
+ 0.546261 0.546261 0.546261
80
+ 0.552494 0.552494 0.552494
81
+ 0.558792 0.558792 0.558792
82
+ 0.565167 0.565167 0.565167
83
+ 0.571618 0.571618 0.571618
84
+ 0.578130 0.578130 0.578130
85
+ 0.584725 0.584725 0.584725
86
+ 0.591382 0.591382 0.591382
87
+ 0.598109 0.598109 0.598109
88
+ 0.604918 0.604918 0.604918
89
+ 0.611794 0.611794 0.611794
90
+ 0.618752 0.618752 0.618752
91
+ 0.625771 0.625771 0.625771
92
+ 0.632874 0.632874 0.632874
93
+ 0.640054 0.640054 0.640054
94
+ 0.647306 0.647306 0.647306
95
+ 0.654632 0.654632 0.654632
96
+ 0.662051 0.662051 0.662051
97
+ 0.669536 0.669536 0.669536
98
+ 0.677106 0.677106 0.677106
99
+ 0.684747 0.684747 0.684747
100
+ 0.692484 0.692484 0.692484
101
+ 0.700289 0.700289 0.700289
102
+ 0.708183 0.708183 0.708183
103
+ 0.716164 0.716164 0.716164
104
+ 0.724220 0.724220 0.724220
105
+ 0.732371 0.732371 0.732371
106
+ 0.740598 0.740598 0.740598
107
+ 0.748916 0.748916 0.748916
108
+ 0.757325 0.757325 0.757325
109
+ 0.765823 0.765823 0.765823
110
+ 0.774402 0.774402 0.774402
111
+ 0.783078 0.783078 0.783078
112
+ 0.791845 0.791845 0.791845
113
+ 0.800705 0.800705 0.800705
114
+ 0.809657 0.809657 0.809657
115
+ 0.818698 0.818698 0.818698
116
+ 0.827840 0.827840 0.827840
117
+ 0.837081 0.837081 0.837081
118
+ 0.846409 0.846409 0.846409
119
+ 0.855845 0.855845 0.855845
120
+ 0.865372 0.865372 0.865372
121
+ 0.875003 0.875003 0.875003
122
+ 0.884733 0.884733 0.884733
123
+ 0.894563 0.894563 0.894563
124
+ 0.904484 0.904484 0.904484
125
+ 0.914505 0.914505 0.914505
126
+ 0.924609 0.924609 0.924609
127
+ 0.934801 0.934801 0.934801
128
+ 0.945072 0.945072 0.945072
129
+ 0.008504 0.251455 0.150584
130
+ 0.020763 0.255549 0.147623
131
+ 0.033696 0.259727 0.144685
132
+ 0.047492 0.263977 0.141796
133
+ 0.060283 0.268282 0.138984
134
+ 0.072337 0.272675 0.136309
135
+ 0.084200 0.277146 0.133853
136
+ 0.095826 0.281652 0.131562
137
+ 0.107505 0.286180 0.129509
138
+ 0.119218 0.290743 0.127733
139
+ 0.131026 0.295279 0.126274
140
+ 0.142886 0.299785 0.125109
141
+ 0.154808 0.304209 0.124283
142
+ 0.166802 0.308560 0.123809
143
+ 0.178769 0.312776 0.123672
144
+ 0.190688 0.316886 0.123858
145
+ 0.202550 0.320854 0.124344
146
+ 0.214319 0.324652 0.125107
147
+ 0.225947 0.328324 0.126116
148
+ 0.237408 0.331837 0.127259
149
+ 0.248675 0.335221 0.128625
150
+ 0.259751 0.338433 0.130154
151
+ 0.270639 0.341543 0.131712
152
+ 0.281300 0.344520 0.133371
153
+ 0.291800 0.347411 0.135095
154
+ 0.302077 0.350188 0.136822
155
+ 0.312189 0.352880 0.138601
156
+ 0.322153 0.355506 0.140369
157
+ 0.331942 0.358053 0.142144
158
+ 0.341591 0.360533 0.143910
159
+ 0.351115 0.362988 0.145685
160
+ 0.360506 0.365396 0.147404
161
+ 0.369822 0.367762 0.149120
162
+ 0.379051 0.370105 0.150827
163
+ 0.388209 0.372423 0.152514
164
+ 0.397309 0.374731 0.154209
165
+ 0.406376 0.377020 0.155919
166
+ 0.415400 0.379290 0.157562
167
+ 0.424412 0.381563 0.159240
168
+ 0.433411 0.383829 0.160917
169
+ 0.442431 0.386086 0.162594
170
+ 0.451446 0.388367 0.164275
171
+ 0.460478 0.390646 0.165918
172
+ 0.469568 0.392932 0.167627
173
+ 0.478669 0.395244 0.169360
174
+ 0.487835 0.397568 0.171061
175
+ 0.497037 0.399915 0.172819
176
+ 0.506302 0.402299 0.174642
177
+ 0.515634 0.404731 0.176467
178
+ 0.525043 0.407220 0.178437
179
+ 0.534518 0.409777 0.180428
180
+ 0.544067 0.412418 0.182567
181
+ 0.553688 0.415152 0.184891
182
+ 0.563393 0.418024 0.187387
183
+ 0.573154 0.421052 0.190091
184
+ 0.582965 0.424279 0.193110
185
+ 0.592835 0.427733 0.196486
186
+ 0.602709 0.431441 0.200204
187
+ 0.612580 0.435443 0.204466
188
+ 0.622413 0.439773 0.209188
189
+ 0.632165 0.444477 0.214506
190
+ 0.641780 0.449558 0.220458
191
+ 0.651216 0.455053 0.227021
192
+ 0.660405 0.460949 0.234261
193
+ 0.669309 0.467271 0.242155
194
+ 0.677865 0.473972 0.250697
195
+ 0.686027 0.481048 0.259864
196
+ 0.693765 0.488473 0.269590
197
+ 0.701065 0.496177 0.279813
198
+ 0.707907 0.504161 0.290477
199
+ 0.714300 0.512334 0.301535
200
+ 0.720267 0.520687 0.312924
201
+ 0.725831 0.529182 0.324564
202
+ 0.731018 0.537769 0.336420
203
+ 0.735881 0.546431 0.348448
204
+ 0.740466 0.555137 0.360584
205
+ 0.744803 0.563896 0.372839
206
+ 0.748940 0.572671 0.385162
207
+ 0.752913 0.581454 0.397553
208
+ 0.756761 0.590253 0.409988
209
+ 0.760506 0.599065 0.422437
210
+ 0.764169 0.607875 0.434943
211
+ 0.767774 0.616678 0.447445
212
+ 0.771347 0.625474 0.459981
213
+ 0.774878 0.634273 0.472535
214
+ 0.778400 0.643049 0.485095
215
+ 0.781912 0.651821 0.497693
216
+ 0.785417 0.660563 0.510285
217
+ 0.788929 0.669296 0.522915
218
+ 0.792446 0.677998 0.535562
219
+ 0.795980 0.686665 0.548263
220
+ 0.799544 0.695301 0.560987
221
+ 0.803122 0.703895 0.573772
222
+ 0.806743 0.712439 0.586614
223
+ 0.810388 0.720932 0.599523
224
+ 0.814079 0.729364 0.612487
225
+ 0.817808 0.737713 0.625525
226
+ 0.821582 0.745977 0.638617
227
+ 0.825384 0.754139 0.651756
228
+ 0.829229 0.762170 0.664908
229
+ 0.833087 0.770067 0.678072
230
+ 0.836970 0.777809 0.691191
231
+ 0.840855 0.785370 0.704253
232
+ 0.844735 0.792737 0.717217
233
+ 0.848596 0.799902 0.730032
234
+ 0.852435 0.806848 0.742676
235
+ 0.856225 0.813565 0.755116
236
+ 0.859973 0.820063 0.767320
237
+ 0.863665 0.826342 0.779284
238
+ 0.867288 0.832403 0.790988
239
+ 0.870854 0.838258 0.802431
240
+ 0.874358 0.843922 0.813620
241
+ 0.877803 0.849423 0.824574
242
+ 0.881194 0.854772 0.835320
243
+ 0.884543 0.860002 0.845888
244
+ 0.887857 0.865135 0.856333
245
+ 0.891160 0.870212 0.866696
246
+ 0.894463 0.875265 0.877033
247
+ 0.897775 0.880312 0.887403
248
+ 0.901115 0.885392 0.897852
249
+ 0.904494 0.890521 0.908424
250
+ 0.907927 0.895726 0.919151
251
+ 0.911405 0.901015 0.930076
252
+ 0.914944 0.906406 0.941204
253
+ 0.918538 0.911896 0.952554
254
+ 0.922190 0.917495 0.964118
255
+ 0.925881 0.923186 0.975892
256
+ 0.929608 0.928963 0.987857
@@ -0,0 +1,256 @@
1
+ 0.101051 0.150029 0.350268
2
+ 0.107211 0.155787 0.356085
3
+ 0.113288 0.161590 0.361920
4
+ 0.119268 0.167394 0.367765
5
+ 0.125252 0.173224 0.373649
6
+ 0.131224 0.179109 0.379544
7
+ 0.137168 0.185025 0.385457
8
+ 0.143104 0.190934 0.391412
9
+ 0.149035 0.196917 0.397368
10
+ 0.154983 0.202879 0.403363
11
+ 0.160954 0.208894 0.409372
12
+ 0.166940 0.214922 0.415405
13
+ 0.172908 0.221015 0.421458
14
+ 0.178936 0.227090 0.427556
15
+ 0.184980 0.233182 0.433649
16
+ 0.191019 0.239337 0.439789
17
+ 0.197125 0.245483 0.445936
18
+ 0.203225 0.251694 0.452129
19
+ 0.209359 0.257880 0.458321
20
+ 0.215526 0.264132 0.464556
21
+ 0.221710 0.270392 0.470798
22
+ 0.227941 0.276664 0.477065
23
+ 0.234173 0.282966 0.483354
24
+ 0.240419 0.289287 0.489668
25
+ 0.246722 0.295618 0.496005
26
+ 0.253046 0.301978 0.502370
27
+ 0.259395 0.308379 0.508757
28
+ 0.265751 0.314779 0.515151
29
+ 0.272115 0.321218 0.521572
30
+ 0.278547 0.327665 0.528019
31
+ 0.284964 0.334149 0.534485
32
+ 0.291439 0.340636 0.540969
33
+ 0.297900 0.347155 0.547475
34
+ 0.304404 0.353672 0.554003
35
+ 0.310938 0.360224 0.560549
36
+ 0.317471 0.366805 0.567119
37
+ 0.324030 0.373391 0.573700
38
+ 0.330615 0.380003 0.580307
39
+ 0.337229 0.386625 0.586927
40
+ 0.343842 0.393278 0.593573
41
+ 0.350503 0.399944 0.600234
42
+ 0.357169 0.406637 0.606920
43
+ 0.363837 0.413344 0.613610
44
+ 0.370538 0.420064 0.620339
45
+ 0.377270 0.426807 0.627069
46
+ 0.384009 0.433558 0.633829
47
+ 0.390772 0.440340 0.640598
48
+ 0.397548 0.447135 0.647388
49
+ 0.404341 0.453950 0.654195
50
+ 0.411161 0.460775 0.661019
51
+ 0.417992 0.467630 0.667869
52
+ 0.424850 0.474498 0.674725
53
+ 0.431726 0.481373 0.681598
54
+ 0.438599 0.488279 0.688501
55
+ 0.445502 0.495192 0.695411
56
+ 0.452438 0.502125 0.702337
57
+ 0.459371 0.509076 0.709288
58
+ 0.466322 0.516030 0.716250
59
+ 0.473287 0.523024 0.723220
60
+ 0.480286 0.530020 0.730221
61
+ 0.487295 0.537040 0.737228
62
+ 0.494317 0.544063 0.744254
63
+ 0.501356 0.551111 0.751301
64
+ 0.508414 0.558166 0.758354
65
+ 0.515471 0.565243 0.765425
66
+ 0.522562 0.572346 0.772503
67
+ 0.529669 0.579457 0.779599
68
+ 0.536791 0.586575 0.786710
69
+ 0.543917 0.593716 0.793824
70
+ 0.551067 0.600867 0.800939
71
+ 0.558223 0.608041 0.808062
72
+ 0.565400 0.615214 0.815181
73
+ 0.572603 0.622409 0.822297
74
+ 0.579808 0.629615 0.829395
75
+ 0.587015 0.636838 0.836468
76
+ 0.594243 0.644054 0.843507
77
+ 0.601473 0.651290 0.850506
78
+ 0.608719 0.658519 0.857445
79
+ 0.615947 0.665751 0.864315
80
+ 0.623183 0.672978 0.871085
81
+ 0.630403 0.680180 0.877748
82
+ 0.637601 0.687375 0.884278
83
+ 0.644770 0.694530 0.890649
84
+ 0.651914 0.701653 0.896848
85
+ 0.658997 0.708735 0.902842
86
+ 0.666031 0.715748 0.908610
87
+ 0.672996 0.722680 0.914138
88
+ 0.679866 0.729543 0.919396
89
+ 0.686656 0.736302 0.924380
90
+ 0.693340 0.742971 0.929074
91
+ 0.699907 0.749512 0.933470
92
+ 0.706366 0.755950 0.937574
93
+ 0.712688 0.762259 0.941373
94
+ 0.718898 0.768446 0.944891
95
+ 0.724986 0.774514 0.948123
96
+ 0.730942 0.780465 0.951099
97
+ 0.736792 0.786306 0.953828
98
+ 0.742535 0.792032 0.956334
99
+ 0.748176 0.797664 0.958640
100
+ 0.753726 0.803211 0.960767
101
+ 0.759197 0.808685 0.962737
102
+ 0.764606 0.814084 0.964572
103
+ 0.769952 0.819431 0.966298
104
+ 0.775252 0.824734 0.967932
105
+ 0.780515 0.830002 0.969481
106
+ 0.785750 0.835235 0.970971
107
+ 0.790956 0.840451 0.972415
108
+ 0.796148 0.845644 0.973813
109
+ 0.801330 0.850830 0.975183
110
+ 0.806509 0.856015 0.976533
111
+ 0.811679 0.861191 0.977867
112
+ 0.816850 0.866371 0.979190
113
+ 0.822025 0.871554 0.980503
114
+ 0.827199 0.876733 0.981812
115
+ 0.832379 0.881927 0.983114
116
+ 0.837567 0.887121 0.984419
117
+ 0.842756 0.892326 0.985718
118
+ 0.847948 0.897534 0.987020
119
+ 0.853150 0.902750 0.988314
120
+ 0.858355 0.907974 0.989617
121
+ 0.863572 0.913201 0.990914
122
+ 0.868787 0.918435 0.992213
123
+ 0.873999 0.923682 0.993511
124
+ 0.879219 0.928927 0.994803
125
+ 0.884444 0.934184 0.996097
126
+ 0.889665 0.939450 0.997391
127
+ 0.894892 0.944721 0.998686
128
+ 0.900113 0.949993 0.999975
129
+ 0.100240 0.299006 0.000155
130
+ 0.112059 0.301986 0.000226
131
+ 0.123174 0.304970 0.000257
132
+ 0.133900 0.307897 0.000247
133
+ 0.144183 0.310824 0.000204
134
+ 0.154116 0.313690 0.000161
135
+ 0.163828 0.316526 0.000125
136
+ 0.173231 0.319321 0.000097
137
+ 0.182452 0.322081 0.000077
138
+ 0.191517 0.324797 0.000069
139
+ 0.200403 0.327489 0.000075
140
+ 0.209187 0.330157 0.000098
141
+ 0.217842 0.332794 0.000144
142
+ 0.226396 0.335398 0.000219
143
+ 0.234859 0.337967 0.000330
144
+ 0.243210 0.340551 0.000490
145
+ 0.251560 0.343129 0.000711
146
+ 0.259831 0.345692 0.001011
147
+ 0.268057 0.348297 0.001410
148
+ 0.276308 0.350930 0.001933
149
+ 0.284508 0.353583 0.002608
150
+ 0.292741 0.356317 0.003469
151
+ 0.300991 0.359099 0.004557
152
+ 0.309305 0.361990 0.005916
153
+ 0.317630 0.364963 0.007597
154
+ 0.326018 0.368063 0.009658
155
+ 0.334508 0.371283 0.012367
156
+ 0.343052 0.374663 0.015348
157
+ 0.351666 0.378181 0.018930
158
+ 0.360377 0.381864 0.023166
159
+ 0.369187 0.385710 0.028136
160
+ 0.378064 0.389735 0.033895
161
+ 0.387015 0.393928 0.040800
162
+ 0.396050 0.398292 0.047888
163
+ 0.405124 0.402804 0.055327
164
+ 0.414248 0.407471 0.063020
165
+ 0.423394 0.412283 0.070789
166
+ 0.432574 0.417212 0.078726
167
+ 0.441738 0.422234 0.086949
168
+ 0.450884 0.427379 0.095228
169
+ 0.460001 0.432585 0.103618
170
+ 0.469095 0.437854 0.112113
171
+ 0.478121 0.443165 0.120649
172
+ 0.487104 0.448515 0.129315
173
+ 0.496012 0.453885 0.138052
174
+ 0.504872 0.459278 0.146755
175
+ 0.513661 0.464677 0.155552
176
+ 0.522375 0.470077 0.164360
177
+ 0.531040 0.475480 0.173148
178
+ 0.539637 0.480870 0.181959
179
+ 0.548199 0.486280 0.190798
180
+ 0.556703 0.491704 0.199617
181
+ 0.565164 0.497122 0.208471
182
+ 0.573613 0.502563 0.217312
183
+ 0.582031 0.508043 0.226158
184
+ 0.590441 0.513543 0.234999
185
+ 0.598853 0.519090 0.243806
186
+ 0.607272 0.524679 0.252670
187
+ 0.615690 0.530332 0.261518
188
+ 0.624143 0.536045 0.270391
189
+ 0.632612 0.541829 0.279258
190
+ 0.641111 0.547695 0.288120
191
+ 0.649657 0.553632 0.297027
192
+ 0.658233 0.559662 0.305938
193
+ 0.666846 0.565761 0.314833
194
+ 0.675508 0.571955 0.323770
195
+ 0.684205 0.578221 0.332732
196
+ 0.692958 0.584577 0.341682
197
+ 0.701731 0.591002 0.350664
198
+ 0.710557 0.597505 0.359644
199
+ 0.719414 0.604078 0.368655
200
+ 0.728299 0.610707 0.377669
201
+ 0.737219 0.617396 0.386700
202
+ 0.746161 0.624147 0.395771
203
+ 0.755130 0.630945 0.404836
204
+ 0.764105 0.637785 0.413942
205
+ 0.773094 0.644669 0.423061
206
+ 0.782091 0.651605 0.432233
207
+ 0.791075 0.658568 0.441410
208
+ 0.800051 0.665577 0.450634
209
+ 0.808995 0.672625 0.459894
210
+ 0.817893 0.679697 0.469215
211
+ 0.826745 0.686819 0.478566
212
+ 0.835514 0.693969 0.487989
213
+ 0.844186 0.701164 0.497461
214
+ 0.852739 0.708393 0.506988
215
+ 0.861136 0.715654 0.516582
216
+ 0.869359 0.722932 0.526244
217
+ 0.877367 0.730249 0.535948
218
+ 0.885134 0.737573 0.545718
219
+ 0.892625 0.744911 0.555514
220
+ 0.899805 0.752247 0.565352
221
+ 0.906647 0.759568 0.575215
222
+ 0.913125 0.766871 0.585083
223
+ 0.919214 0.774134 0.594931
224
+ 0.924907 0.781355 0.604762
225
+ 0.930195 0.788513 0.614543
226
+ 0.935066 0.795601 0.624286
227
+ 0.939537 0.802617 0.633958
228
+ 0.943612 0.809557 0.643549
229
+ 0.947313 0.816413 0.653068
230
+ 0.950661 0.823182 0.662520
231
+ 0.953686 0.829879 0.671879
232
+ 0.956415 0.836497 0.681164
233
+ 0.958882 0.843049 0.690387
234
+ 0.961118 0.849544 0.699548
235
+ 0.963155 0.855984 0.708665
236
+ 0.965019 0.862387 0.717732
237
+ 0.966746 0.868754 0.726764
238
+ 0.968355 0.875091 0.735776
239
+ 0.969864 0.881418 0.744780
240
+ 0.971299 0.887731 0.753777
241
+ 0.972677 0.894046 0.762774
242
+ 0.974000 0.900360 0.771786
243
+ 0.975289 0.906683 0.780806
244
+ 0.976553 0.913014 0.789846
245
+ 0.977795 0.919355 0.798909
246
+ 0.979018 0.925717 0.807992
247
+ 0.980230 0.932088 0.817101
248
+ 0.981427 0.938483 0.826236
249
+ 0.982613 0.944895 0.835399
250
+ 0.983785 0.951319 0.844588
251
+ 0.984948 0.957763 0.853798
252
+ 0.986093 0.964218 0.863044
253
+ 0.987224 0.970694 0.872308
254
+ 0.988330 0.977184 0.881595
255
+ 0.989424 0.983687 0.890903
256
+ 0.990487 0.990203 0.900235