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.170905 0.099347 0.298948
2
+ 0.170827 0.106057 0.305284
3
+ 0.170659 0.112627 0.311587
4
+ 0.170408 0.119077 0.317893
5
+ 0.170085 0.125455 0.324156
6
+ 0.169698 0.131752 0.330400
7
+ 0.169247 0.137994 0.336602
8
+ 0.168720 0.144136 0.342789
9
+ 0.168144 0.150246 0.348925
10
+ 0.167566 0.156320 0.355052
11
+ 0.166956 0.162337 0.361123
12
+ 0.166285 0.168308 0.367194
13
+ 0.165590 0.174294 0.373245
14
+ 0.164915 0.180231 0.379280
15
+ 0.164251 0.186193 0.385294
16
+ 0.163543 0.192111 0.391316
17
+ 0.162822 0.198037 0.397307
18
+ 0.162117 0.203993 0.403310
19
+ 0.161416 0.209904 0.409298
20
+ 0.160684 0.215860 0.415286
21
+ 0.159981 0.221788 0.421271
22
+ 0.159343 0.227765 0.427277
23
+ 0.158738 0.233720 0.433262
24
+ 0.158144 0.239730 0.439263
25
+ 0.157587 0.245738 0.445272
26
+ 0.157123 0.251808 0.451290
27
+ 0.156760 0.257863 0.457305
28
+ 0.156497 0.263996 0.463327
29
+ 0.156356 0.270142 0.469376
30
+ 0.156368 0.276330 0.475410
31
+ 0.156563 0.282562 0.481437
32
+ 0.156963 0.288828 0.487478
33
+ 0.157628 0.295139 0.493495
34
+ 0.158619 0.301506 0.499504
35
+ 0.159860 0.307924 0.505496
36
+ 0.161559 0.314390 0.511467
37
+ 0.163584 0.320907 0.517406
38
+ 0.165987 0.327436 0.523289
39
+ 0.168887 0.334023 0.529123
40
+ 0.172171 0.340618 0.534884
41
+ 0.175907 0.347241 0.540580
42
+ 0.180112 0.353852 0.546202
43
+ 0.184742 0.360476 0.551726
44
+ 0.189752 0.367103 0.557162
45
+ 0.195152 0.373711 0.562497
46
+ 0.200872 0.380290 0.567723
47
+ 0.206965 0.386828 0.572857
48
+ 0.213268 0.393341 0.577872
49
+ 0.219862 0.399801 0.582798
50
+ 0.226638 0.406230 0.587620
51
+ 0.233557 0.412597 0.592360
52
+ 0.240642 0.418894 0.596992
53
+ 0.247865 0.425152 0.601536
54
+ 0.255144 0.431348 0.606002
55
+ 0.262473 0.437487 0.610402
56
+ 0.269870 0.443566 0.614725
57
+ 0.277286 0.449598 0.619004
58
+ 0.284716 0.455582 0.623215
59
+ 0.292187 0.461530 0.627380
60
+ 0.299670 0.467443 0.631516
61
+ 0.307159 0.473320 0.635619
62
+ 0.314672 0.479203 0.639710
63
+ 0.322231 0.485063 0.643781
64
+ 0.329818 0.490951 0.647858
65
+ 0.337436 0.496822 0.651946
66
+ 0.345107 0.502731 0.656043
67
+ 0.352839 0.508682 0.660153
68
+ 0.360616 0.514655 0.664292
69
+ 0.368491 0.520668 0.668463
70
+ 0.376423 0.526741 0.672663
71
+ 0.384411 0.532850 0.676894
72
+ 0.392486 0.539012 0.681152
73
+ 0.400650 0.545228 0.685462
74
+ 0.408861 0.551498 0.689802
75
+ 0.417167 0.557818 0.694171
76
+ 0.425535 0.564199 0.698587
77
+ 0.433973 0.570623 0.703045
78
+ 0.442510 0.577114 0.707530
79
+ 0.451101 0.583649 0.712058
80
+ 0.459769 0.590242 0.716627
81
+ 0.468510 0.596898 0.721222
82
+ 0.477327 0.603600 0.725868
83
+ 0.486214 0.610352 0.730542
84
+ 0.495180 0.617164 0.735256
85
+ 0.504218 0.624030 0.740010
86
+ 0.513317 0.630947 0.744792
87
+ 0.522489 0.637913 0.749613
88
+ 0.531740 0.644931 0.754483
89
+ 0.541054 0.652013 0.759372
90
+ 0.550446 0.659135 0.764309
91
+ 0.559906 0.666314 0.769275
92
+ 0.569425 0.673549 0.774280
93
+ 0.579027 0.680825 0.779322
94
+ 0.588682 0.688165 0.784403
95
+ 0.598415 0.695547 0.789510
96
+ 0.608221 0.702980 0.794653
97
+ 0.618078 0.710460 0.799834
98
+ 0.628008 0.717989 0.805039
99
+ 0.637995 0.725569 0.810279
100
+ 0.648043 0.733188 0.815558
101
+ 0.658161 0.740851 0.820860
102
+ 0.668334 0.748567 0.826195
103
+ 0.678558 0.756321 0.831561
104
+ 0.688846 0.764116 0.836946
105
+ 0.699174 0.771954 0.842359
106
+ 0.709566 0.779826 0.847785
107
+ 0.719995 0.787735 0.853234
108
+ 0.730468 0.795676 0.858694
109
+ 0.740972 0.803647 0.864164
110
+ 0.751518 0.811644 0.869621
111
+ 0.762068 0.819653 0.875070
112
+ 0.772634 0.827679 0.880487
113
+ 0.783192 0.835708 0.885862
114
+ 0.793728 0.843720 0.891161
115
+ 0.804201 0.851708 0.896366
116
+ 0.814583 0.859645 0.901431
117
+ 0.824833 0.867496 0.906319
118
+ 0.834892 0.875228 0.910970
119
+ 0.844681 0.882784 0.915318
120
+ 0.854108 0.890109 0.919297
121
+ 0.863080 0.897127 0.922822
122
+ 0.871458 0.903740 0.925797
123
+ 0.879116 0.909867 0.928133
124
+ 0.885928 0.915396 0.929749
125
+ 0.891753 0.920245 0.930562
126
+ 0.896481 0.924320 0.930504
127
+ 0.900018 0.927550 0.929528
128
+ 0.902303 0.929892 0.927616
129
+ 0.903310 0.931314 0.924770
130
+ 0.903042 0.931816 0.921015
131
+ 0.901536 0.931428 0.916406
132
+ 0.898870 0.930191 0.911009
133
+ 0.895133 0.928163 0.904907
134
+ 0.890428 0.925432 0.898189
135
+ 0.884882 0.922073 0.890955
136
+ 0.878606 0.918167 0.883287
137
+ 0.871720 0.913803 0.875265
138
+ 0.864320 0.909047 0.866951
139
+ 0.856495 0.903977 0.858410
140
+ 0.848330 0.898646 0.849686
141
+ 0.839892 0.893104 0.840807
142
+ 0.831224 0.887389 0.831807
143
+ 0.822373 0.881541 0.822700
144
+ 0.813369 0.875577 0.813506
145
+ 0.804253 0.869520 0.804246
146
+ 0.795031 0.863394 0.794915
147
+ 0.785730 0.857198 0.785531
148
+ 0.776356 0.850954 0.776094
149
+ 0.766920 0.844674 0.766611
150
+ 0.757439 0.838351 0.757090
151
+ 0.747917 0.832003 0.747536
152
+ 0.738349 0.825620 0.737939
153
+ 0.728754 0.819218 0.728321
154
+ 0.719134 0.812799 0.718676
155
+ 0.709491 0.806368 0.709017
156
+ 0.699822 0.799920 0.699324
157
+ 0.690145 0.793461 0.689631
158
+ 0.680450 0.786992 0.679912
159
+ 0.670762 0.780513 0.670203
160
+ 0.661054 0.774033 0.660472
161
+ 0.651357 0.767555 0.650751
162
+ 0.641652 0.761081 0.641025
163
+ 0.631963 0.754611 0.631315
164
+ 0.622276 0.748142 0.621601
165
+ 0.612607 0.741677 0.611911
166
+ 0.602959 0.735232 0.602234
167
+ 0.593330 0.728792 0.592585
168
+ 0.583717 0.722367 0.582940
169
+ 0.574135 0.715972 0.573339
170
+ 0.564587 0.709584 0.563764
171
+ 0.555069 0.703219 0.554214
172
+ 0.545593 0.696874 0.544702
173
+ 0.536147 0.690554 0.535226
174
+ 0.526752 0.684261 0.525798
175
+ 0.517392 0.678006 0.516401
176
+ 0.508080 0.671768 0.507059
177
+ 0.498810 0.665566 0.497771
178
+ 0.489584 0.659392 0.488514
179
+ 0.480424 0.653249 0.479313
180
+ 0.471317 0.647150 0.470167
181
+ 0.462250 0.641072 0.461064
182
+ 0.453248 0.635039 0.452031
183
+ 0.444308 0.629038 0.443040
184
+ 0.435418 0.623077 0.434099
185
+ 0.426576 0.617148 0.425237
186
+ 0.417806 0.611260 0.416418
187
+ 0.409092 0.605401 0.407658
188
+ 0.400449 0.599595 0.398957
189
+ 0.391852 0.593817 0.390320
190
+ 0.383329 0.588074 0.381747
191
+ 0.374858 0.582378 0.373228
192
+ 0.366464 0.576728 0.364772
193
+ 0.358121 0.571096 0.356387
194
+ 0.349845 0.565508 0.348048
195
+ 0.341631 0.559968 0.339778
196
+ 0.333482 0.554449 0.331541
197
+ 0.325368 0.548966 0.323384
198
+ 0.317337 0.543502 0.315266
199
+ 0.309359 0.538069 0.307191
200
+ 0.301388 0.532642 0.299171
201
+ 0.293481 0.527225 0.291169
202
+ 0.285596 0.521798 0.283193
203
+ 0.277757 0.516372 0.275233
204
+ 0.269921 0.510925 0.267260
205
+ 0.262077 0.505440 0.259340
206
+ 0.254257 0.499921 0.251388
207
+ 0.246414 0.494363 0.243405
208
+ 0.238587 0.488729 0.235472
209
+ 0.230779 0.483029 0.227503
210
+ 0.222990 0.477260 0.219549
211
+ 0.215188 0.471414 0.211618
212
+ 0.207463 0.465463 0.203707
213
+ 0.199751 0.459445 0.195829
214
+ 0.192158 0.453317 0.188052
215
+ 0.184655 0.447095 0.180292
216
+ 0.177277 0.440771 0.172675
217
+ 0.170038 0.434355 0.165162
218
+ 0.162987 0.427846 0.157833
219
+ 0.156151 0.421220 0.150653
220
+ 0.149542 0.414519 0.143671
221
+ 0.143189 0.407722 0.136881
222
+ 0.137147 0.400855 0.130373
223
+ 0.131420 0.393882 0.124008
224
+ 0.126038 0.386852 0.118004
225
+ 0.120944 0.379770 0.112235
226
+ 0.116309 0.372623 0.106756
227
+ 0.111973 0.365440 0.101482
228
+ 0.107948 0.358218 0.096498
229
+ 0.104303 0.350972 0.091908
230
+ 0.100992 0.343683 0.087495
231
+ 0.098010 0.336389 0.083276
232
+ 0.095260 0.329104 0.079326
233
+ 0.092688 0.321783 0.075628
234
+ 0.090430 0.314476 0.072139
235
+ 0.088312 0.307178 0.068912
236
+ 0.086311 0.299892 0.065708
237
+ 0.084528 0.292609 0.062804
238
+ 0.082751 0.285339 0.059986
239
+ 0.081097 0.278111 0.057227
240
+ 0.079445 0.270896 0.054671
241
+ 0.077857 0.263704 0.052231
242
+ 0.076319 0.256515 0.049974
243
+ 0.074814 0.249379 0.047724
244
+ 0.073376 0.242278 0.045555
245
+ 0.071888 0.235232 0.043204
246
+ 0.070497 0.228203 0.040881
247
+ 0.069269 0.221218 0.038290
248
+ 0.067950 0.214276 0.035663
249
+ 0.066717 0.207393 0.032729
250
+ 0.065546 0.200533 0.029942
251
+ 0.064438 0.193795 0.027099
252
+ 0.063398 0.187070 0.024191
253
+ 0.062387 0.180395 0.021213
254
+ 0.061326 0.173804 0.018160
255
+ 0.060486 0.167279 0.015026
256
+ 0.059680 0.160768 0.011816
@@ -0,0 +1,256 @@
1
+ 0.900189 0.899861 0.999910
2
+ 0.889566 0.892099 0.993603
3
+ 0.878953 0.884347 0.987302
4
+ 0.868359 0.876601 0.981004
5
+ 0.857763 0.868878 0.974712
6
+ 0.847185 0.861153 0.968432
7
+ 0.836622 0.853442 0.962151
8
+ 0.826067 0.845744 0.955885
9
+ 0.815527 0.838058 0.949616
10
+ 0.804995 0.830379 0.943360
11
+ 0.794480 0.822709 0.937108
12
+ 0.783978 0.815046 0.930860
13
+ 0.773479 0.807397 0.924615
14
+ 0.763000 0.799757 0.918383
15
+ 0.752533 0.792119 0.912155
16
+ 0.742084 0.784498 0.905935
17
+ 0.731644 0.776881 0.899718
18
+ 0.721215 0.769266 0.893503
19
+ 0.710809 0.761666 0.887299
20
+ 0.700409 0.754078 0.881101
21
+ 0.690025 0.746491 0.874907
22
+ 0.679651 0.738918 0.868725
23
+ 0.669302 0.731342 0.862543
24
+ 0.658955 0.723779 0.856362
25
+ 0.648633 0.716230 0.850191
26
+ 0.638322 0.708681 0.844023
27
+ 0.628028 0.701134 0.837867
28
+ 0.617742 0.693596 0.831712
29
+ 0.607485 0.686068 0.825554
30
+ 0.597232 0.678543 0.819405
31
+ 0.586992 0.671026 0.813262
32
+ 0.576782 0.663517 0.807126
33
+ 0.566578 0.656008 0.800984
34
+ 0.556385 0.648497 0.794848
35
+ 0.546228 0.640996 0.788715
36
+ 0.536069 0.633505 0.782576
37
+ 0.525939 0.626009 0.776442
38
+ 0.515812 0.618525 0.770300
39
+ 0.505713 0.611036 0.764156
40
+ 0.495640 0.603550 0.758010
41
+ 0.485578 0.596061 0.751854
42
+ 0.475549 0.588571 0.745683
43
+ 0.465515 0.581090 0.739511
44
+ 0.455525 0.573605 0.733311
45
+ 0.445541 0.566115 0.727095
46
+ 0.435599 0.558617 0.720857
47
+ 0.425663 0.551128 0.714594
48
+ 0.415758 0.543626 0.708306
49
+ 0.405889 0.536117 0.701972
50
+ 0.396038 0.528608 0.695609
51
+ 0.386210 0.521079 0.689196
52
+ 0.376445 0.513550 0.682723
53
+ 0.366697 0.505997 0.676200
54
+ 0.356996 0.498459 0.669613
55
+ 0.347337 0.490897 0.662954
56
+ 0.337716 0.483307 0.656217
57
+ 0.328160 0.475729 0.649396
58
+ 0.318668 0.468123 0.642483
59
+ 0.309255 0.460512 0.635472
60
+ 0.299890 0.452908 0.628370
61
+ 0.290617 0.445278 0.621151
62
+ 0.281447 0.437660 0.613817
63
+ 0.272370 0.430022 0.606378
64
+ 0.263441 0.422383 0.598818
65
+ 0.254615 0.414765 0.591136
66
+ 0.245901 0.407149 0.583330
67
+ 0.237395 0.399538 0.575409
68
+ 0.229005 0.391964 0.567363
69
+ 0.220823 0.384400 0.559193
70
+ 0.212785 0.376881 0.550915
71
+ 0.204986 0.369380 0.542527
72
+ 0.197398 0.361932 0.534022
73
+ 0.190025 0.354527 0.525432
74
+ 0.182883 0.347177 0.516745
75
+ 0.175986 0.339880 0.507979
76
+ 0.169405 0.332652 0.499123
77
+ 0.163018 0.325463 0.490212
78
+ 0.156892 0.318380 0.481236
79
+ 0.151033 0.311359 0.472224
80
+ 0.145489 0.304417 0.463150
81
+ 0.140119 0.297561 0.454069
82
+ 0.135086 0.290779 0.444957
83
+ 0.130301 0.284081 0.435829
84
+ 0.125720 0.277480 0.426689
85
+ 0.121349 0.270955 0.417558
86
+ 0.117272 0.264499 0.408424
87
+ 0.113454 0.258125 0.399300
88
+ 0.109812 0.251863 0.390206
89
+ 0.106347 0.245635 0.381146
90
+ 0.103060 0.239524 0.372084
91
+ 0.099941 0.233452 0.363071
92
+ 0.097002 0.227498 0.354090
93
+ 0.094303 0.221585 0.345152
94
+ 0.091713 0.215765 0.336241
95
+ 0.089220 0.209990 0.327381
96
+ 0.086919 0.204320 0.318574
97
+ 0.084717 0.198665 0.309818
98
+ 0.082644 0.193130 0.301083
99
+ 0.080696 0.187678 0.292428
100
+ 0.078849 0.182228 0.283823
101
+ 0.077157 0.176916 0.275288
102
+ 0.075616 0.171664 0.266794
103
+ 0.074219 0.166513 0.258378
104
+ 0.072907 0.161458 0.250025
105
+ 0.071722 0.156473 0.241783
106
+ 0.070637 0.151563 0.233580
107
+ 0.069756 0.146794 0.225510
108
+ 0.068993 0.142166 0.217520
109
+ 0.068301 0.137671 0.209631
110
+ 0.067772 0.133277 0.201857
111
+ 0.067395 0.129033 0.194266
112
+ 0.067165 0.124992 0.186755
113
+ 0.067086 0.121104 0.179430
114
+ 0.067160 0.117451 0.172274
115
+ 0.067390 0.114004 0.165299
116
+ 0.067779 0.110819 0.158597
117
+ 0.068337 0.107814 0.152047
118
+ 0.069084 0.105099 0.145817
119
+ 0.069909 0.102723 0.139760
120
+ 0.070958 0.100592 0.134094
121
+ 0.072150 0.098812 0.128661
122
+ 0.073639 0.097347 0.123558
123
+ 0.075176 0.096199 0.118865
124
+ 0.076956 0.095493 0.114423
125
+ 0.078977 0.095119 0.110470
126
+ 0.081272 0.095095 0.106845
127
+ 0.083730 0.095427 0.103582
128
+ 0.086376 0.096100 0.100686
129
+ 0.089318 0.097212 0.098263
130
+ 0.092445 0.098697 0.096142
131
+ 0.095823 0.100505 0.094539
132
+ 0.099434 0.102701 0.093176
133
+ 0.103310 0.105184 0.092312
134
+ 0.107364 0.108025 0.091807
135
+ 0.111654 0.111223 0.091623
136
+ 0.116151 0.114606 0.091779
137
+ 0.120792 0.118393 0.092234
138
+ 0.125719 0.122302 0.092972
139
+ 0.130787 0.126550 0.094115
140
+ 0.135958 0.131009 0.095480
141
+ 0.141394 0.135613 0.097052
142
+ 0.146892 0.140470 0.098938
143
+ 0.152548 0.145497 0.101011
144
+ 0.158368 0.150621 0.103339
145
+ 0.164272 0.155943 0.105803
146
+ 0.170257 0.161380 0.108413
147
+ 0.176329 0.166923 0.111276
148
+ 0.182523 0.172555 0.114186
149
+ 0.188816 0.178342 0.117282
150
+ 0.195154 0.184162 0.120489
151
+ 0.201548 0.190090 0.123805
152
+ 0.208045 0.196108 0.127227
153
+ 0.214579 0.202159 0.130786
154
+ 0.221190 0.208309 0.134376
155
+ 0.227833 0.214504 0.138047
156
+ 0.234536 0.220778 0.141766
157
+ 0.241266 0.227065 0.145586
158
+ 0.248069 0.233392 0.149424
159
+ 0.254900 0.239804 0.153297
160
+ 0.261757 0.246236 0.157255
161
+ 0.268677 0.252729 0.161289
162
+ 0.275633 0.259257 0.165278
163
+ 0.282617 0.265805 0.169406
164
+ 0.289627 0.272376 0.173485
165
+ 0.296686 0.279024 0.177659
166
+ 0.303762 0.285659 0.181789
167
+ 0.310901 0.292361 0.186028
168
+ 0.318044 0.299092 0.190235
169
+ 0.325218 0.305851 0.194519
170
+ 0.332455 0.312608 0.198762
171
+ 0.339697 0.319431 0.203077
172
+ 0.346968 0.326257 0.207414
173
+ 0.354262 0.333145 0.211774
174
+ 0.361596 0.340036 0.216151
175
+ 0.368956 0.346959 0.220548
176
+ 0.376347 0.353895 0.224926
177
+ 0.383756 0.360868 0.229378
178
+ 0.391202 0.367878 0.233842
179
+ 0.398665 0.374914 0.238334
180
+ 0.406169 0.381971 0.242847
181
+ 0.413690 0.389069 0.247406
182
+ 0.421235 0.396183 0.251983
183
+ 0.428823 0.403333 0.256575
184
+ 0.436435 0.410515 0.261217
185
+ 0.444075 0.417717 0.265900
186
+ 0.451740 0.424960 0.270622
187
+ 0.459434 0.432239 0.275376
188
+ 0.467160 0.439537 0.280167
189
+ 0.474917 0.446881 0.285022
190
+ 0.482693 0.454266 0.289945
191
+ 0.490514 0.461684 0.294921
192
+ 0.498362 0.469148 0.299976
193
+ 0.506224 0.476641 0.305103
194
+ 0.514144 0.484179 0.310313
195
+ 0.522069 0.491780 0.315599
196
+ 0.530047 0.499401 0.320981
197
+ 0.538052 0.507086 0.326450
198
+ 0.546081 0.514818 0.332058
199
+ 0.554135 0.522592 0.337758
200
+ 0.562228 0.530422 0.343588
201
+ 0.570328 0.538305 0.349550
202
+ 0.578467 0.546231 0.355650
203
+ 0.586629 0.554201 0.361878
204
+ 0.594808 0.562231 0.368255
205
+ 0.603006 0.570291 0.374784
206
+ 0.611219 0.578409 0.381472
207
+ 0.619443 0.586573 0.388311
208
+ 0.627665 0.594776 0.395318
209
+ 0.635895 0.603019 0.402474
210
+ 0.644118 0.611300 0.409814
211
+ 0.652344 0.619613 0.417306
212
+ 0.660554 0.627951 0.424956
213
+ 0.668758 0.636318 0.432767
214
+ 0.676941 0.644698 0.440723
215
+ 0.685097 0.653103 0.448854
216
+ 0.693233 0.661533 0.457111
217
+ 0.701335 0.669969 0.465515
218
+ 0.709415 0.678406 0.474067
219
+ 0.717459 0.686852 0.482744
220
+ 0.725466 0.695303 0.491555
221
+ 0.733433 0.703753 0.500462
222
+ 0.741362 0.712200 0.509495
223
+ 0.749258 0.720646 0.518636
224
+ 0.757122 0.729089 0.527860
225
+ 0.764948 0.737525 0.537193
226
+ 0.772731 0.745956 0.546601
227
+ 0.780486 0.754385 0.556076
228
+ 0.788209 0.762798 0.565640
229
+ 0.795900 0.771218 0.575274
230
+ 0.803565 0.779622 0.584971
231
+ 0.811206 0.788027 0.594717
232
+ 0.818817 0.796429 0.604527
233
+ 0.826418 0.804832 0.614373
234
+ 0.833999 0.813229 0.624283
235
+ 0.841560 0.821635 0.634230
236
+ 0.849111 0.830038 0.644206
237
+ 0.856649 0.838441 0.654232
238
+ 0.864185 0.846850 0.664291
239
+ 0.871711 0.855273 0.674383
240
+ 0.879228 0.863697 0.684503
241
+ 0.886752 0.872128 0.694657
242
+ 0.894271 0.880564 0.704844
243
+ 0.901787 0.889017 0.715054
244
+ 0.909306 0.897479 0.725296
245
+ 0.916831 0.905950 0.735553
246
+ 0.924353 0.914433 0.745841
247
+ 0.931882 0.922928 0.756154
248
+ 0.939418 0.931435 0.766489
249
+ 0.946956 0.939960 0.776853
250
+ 0.954500 0.948492 0.787233
251
+ 0.962044 0.957040 0.797634
252
+ 0.969600 0.965602 0.808063
253
+ 0.977160 0.974180 0.818508
254
+ 0.984728 0.982774 0.828985
255
+ 0.992296 0.991379 0.839477
256
+ 0.999870 0.999998 0.849990