rpipe 0.0.1
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.
- data/.document +5 -0
- data/.gitignore +23 -0
- data/LICENSE +20 -0
- data/README +0 -0
- data/README.rdoc +33 -0
- data/Rakefile +78 -0
- data/VERSION +1 -0
- data/bin/create_driver.rb +79 -0
- data/bin/rpipe +131 -0
- data/bin/swallow_batch_run.rb +21 -0
- data/lib/core_additions.rb +5 -0
- data/lib/custom_methods/JohnsonMerit220Visit1Preproc.m +26 -0
- data/lib/custom_methods/JohnsonMerit220Visit1Preproc.rb +43 -0
- data/lib/custom_methods/JohnsonMerit220Visit1Preproc_job.m +80 -0
- data/lib/custom_methods/JohnsonMerit220Visit1Stats.m +74 -0
- data/lib/custom_methods/JohnsonMerit220Visit1Stats.rb +63 -0
- data/lib/custom_methods/JohnsonMerit220Visit1Stats_job.m +63 -0
- data/lib/custom_methods/JohnsonTbiLongitudinalSnodPreproc.m +26 -0
- data/lib/custom_methods/JohnsonTbiLongitudinalSnodPreproc.rb +41 -0
- data/lib/custom_methods/JohnsonTbiLongitudinalSnodPreproc_job.m +69 -0
- data/lib/custom_methods/JohnsonTbiLongitudinalSnodStats.m +76 -0
- data/lib/custom_methods/JohnsonTbiLongitudinalSnodStats.rb +67 -0
- data/lib/custom_methods/JohnsonTbiLongitudinalSnodStats_job.m +59 -0
- data/lib/custom_methods/ReconWithHello.rb +7 -0
- data/lib/default_logger.rb +13 -0
- data/lib/default_methods/default_preproc.rb +76 -0
- data/lib/default_methods/default_recon.rb +80 -0
- data/lib/default_methods/default_stats.rb +94 -0
- data/lib/default_methods/recon/physionoise_helper.rb +69 -0
- data/lib/default_methods/recon/raw_sequence.rb +109 -0
- data/lib/generators/job_generator.rb +36 -0
- data/lib/generators/preproc_job_generator.rb +31 -0
- data/lib/generators/recon_job_generator.rb +76 -0
- data/lib/generators/stats_job_generator.rb +70 -0
- data/lib/generators/workflow_generator.rb +128 -0
- data/lib/global_additions.rb +18 -0
- data/lib/logfile.rb +310 -0
- data/lib/matlab_helpers/CreateFunctionalVolumeStruct.m +6 -0
- data/lib/matlab_helpers/import_csv.m +32 -0
- data/lib/matlab_helpers/matlab_queue.rb +37 -0
- data/lib/matlab_helpers/prepare_onsets_xls.m +30 -0
- data/lib/rpipe.rb +254 -0
- data/rpipe.gemspec +177 -0
- data/spec/generators/preproc_job_generator_spec.rb +27 -0
- data/spec/generators/recon_job_generator_spec.rb +33 -0
- data/spec/generators/stats_job_generator_spec.rb +50 -0
- data/spec/generators/workflow_generator_spec.rb +97 -0
- data/spec/helper_spec.rb +40 -0
- data/spec/integration/johnson.merit220.visit1_spec.rb +47 -0
- data/spec/integration/johnson.tbi.longitudinal.snod_spec.rb +48 -0
- data/spec/logfile_spec.rb +96 -0
- data/spec/matlab_queue_spec.rb +40 -0
- data/spec/merit220_stats_spec.rb +81 -0
- data/spec/physio_spec.rb +98 -0
- data/test/drivers/merit220_workflow_sample.yml +15 -0
- data/test/drivers/mrt00000.yml +65 -0
- data/test/drivers/mrt00015.yml +62 -0
- data/test/drivers/mrt00015_hello.yml +41 -0
- data/test/drivers/mrt00015_withphys.yml +81 -0
- data/test/drivers/tbi000.yml +129 -0
- data/test/drivers/tbi000_separatevisits.yml +137 -0
- data/test/drivers/tmp.yml +58 -0
- data/test/fixtures/faces3_recognitionA.mat +0 -0
- data/test/fixtures/faces3_recognitionA.txt +86 -0
- data/test/fixtures/faces3_recognitionA_equal.csv +25 -0
- data/test/fixtures/faces3_recognitionA_unequal.csv +21 -0
- data/test/fixtures/faces3_recognitionB_incmisses.txt +86 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_CPd3R_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_CPd3_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_CPttl_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_CRTd3R_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_CRTd3_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_CRTttl_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_CRTd3R_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_CRTd3_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_CRTttl_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_RRT_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_RVT_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_card_spline_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_HalfTR_resp_spline_40.txt +334 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_RRT_40.txt +9106 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_RVT_40.txt +9106 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_CRTd3R_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_CRTd3_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_CRTttl_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_RRT_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_RVT_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_card_spline_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_TR_resp_spline_40.txt +167 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_card_spline_40.txt +13360 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_resp_spline_40.txt +9106 -0
- data/test/fixtures/physionoise_regressors/EPI__fMRI_Task1_resp_spline_downsampled_40.txt +9106 -0
- data/test/fixtures/ruport_summary.yml +123 -0
- data/test/fixtures/valid_scans.yaml +35 -0
- data/test/helper.rb +10 -0
- data/test/test_dynamic_method_inclusion.rb +10 -0
- data/test/test_includes.rb +11 -0
- data/test/test_integrative_johnson.merit220.visit1.rb +31 -0
- data/test/test_preproc.rb +11 -0
- data/test/test_recon.rb +11 -0
- data/test/test_rpipe.rb +19 -0
- data/vendor/output_catcher.rb +93 -0
- data/vendor/trollop.rb +781 -0
- metadata +260 -0
@@ -0,0 +1,334 @@
|
|
1
|
+
0.031301
|
2
|
+
0.028625
|
3
|
+
0.029183
|
4
|
+
0.028828
|
5
|
+
0.029435
|
6
|
+
0.032300
|
7
|
+
0.035956
|
8
|
+
0.039312
|
9
|
+
0.043229
|
10
|
+
0.045889
|
11
|
+
0.046012
|
12
|
+
0.045951
|
13
|
+
0.044516
|
14
|
+
0.042746
|
15
|
+
0.039001
|
16
|
+
0.031897
|
17
|
+
0.026165
|
18
|
+
0.026130
|
19
|
+
0.028396
|
20
|
+
0.027608
|
21
|
+
0.024320
|
22
|
+
0.022133
|
23
|
+
0.030481
|
24
|
+
0.041382
|
25
|
+
0.050571
|
26
|
+
0.058462
|
27
|
+
0.068387
|
28
|
+
0.083591
|
29
|
+
0.094109
|
30
|
+
0.089681
|
31
|
+
0.085620
|
32
|
+
0.086944
|
33
|
+
0.089314
|
34
|
+
0.081129
|
35
|
+
0.069371
|
36
|
+
0.061031
|
37
|
+
0.055399
|
38
|
+
0.049254
|
39
|
+
0.044138
|
40
|
+
0.038423
|
41
|
+
0.036104
|
42
|
+
0.033939
|
43
|
+
0.035464
|
44
|
+
0.042985
|
45
|
+
0.050003
|
46
|
+
0.054395
|
47
|
+
0.058455
|
48
|
+
0.057382
|
49
|
+
0.052976
|
50
|
+
0.049381
|
51
|
+
0.045499
|
52
|
+
0.042193
|
53
|
+
0.041505
|
54
|
+
0.041682
|
55
|
+
0.041563
|
56
|
+
0.041682
|
57
|
+
0.041294
|
58
|
+
0.039639
|
59
|
+
0.037865
|
60
|
+
0.037223
|
61
|
+
0.037425
|
62
|
+
0.036802
|
63
|
+
0.035156
|
64
|
+
0.033545
|
65
|
+
0.035940
|
66
|
+
0.039537
|
67
|
+
0.044746
|
68
|
+
0.053083
|
69
|
+
0.059639
|
70
|
+
0.062183
|
71
|
+
0.064037
|
72
|
+
0.064667
|
73
|
+
0.064330
|
74
|
+
0.069410
|
75
|
+
0.079584
|
76
|
+
0.084907
|
77
|
+
0.084429
|
78
|
+
0.087144
|
79
|
+
0.098225
|
80
|
+
0.105459
|
81
|
+
0.100692
|
82
|
+
0.096015
|
83
|
+
0.095505
|
84
|
+
0.095264
|
85
|
+
0.091177
|
86
|
+
0.085989
|
87
|
+
0.079954
|
88
|
+
0.072773
|
89
|
+
0.067466
|
90
|
+
0.062954
|
91
|
+
0.061157
|
92
|
+
0.067578
|
93
|
+
0.073481
|
94
|
+
0.074561
|
95
|
+
0.074244
|
96
|
+
0.073007
|
97
|
+
0.070284
|
98
|
+
0.071392
|
99
|
+
0.076286
|
100
|
+
0.080717
|
101
|
+
0.085980
|
102
|
+
0.089370
|
103
|
+
0.087365
|
104
|
+
0.084642
|
105
|
+
0.080381
|
106
|
+
0.075606
|
107
|
+
0.071304
|
108
|
+
0.066793
|
109
|
+
0.062844
|
110
|
+
0.058204
|
111
|
+
0.057959
|
112
|
+
0.073562
|
113
|
+
0.087929
|
114
|
+
0.087986
|
115
|
+
0.085275
|
116
|
+
0.088595
|
117
|
+
0.093935
|
118
|
+
0.091181
|
119
|
+
0.082860
|
120
|
+
0.079416
|
121
|
+
0.079552
|
122
|
+
0.078912
|
123
|
+
0.076462
|
124
|
+
0.074638
|
125
|
+
0.074291
|
126
|
+
0.074556
|
127
|
+
0.076127
|
128
|
+
0.078787
|
129
|
+
0.079448
|
130
|
+
0.079628
|
131
|
+
0.078490
|
132
|
+
0.076346
|
133
|
+
0.072999
|
134
|
+
0.066768
|
135
|
+
0.060351
|
136
|
+
0.054613
|
137
|
+
0.048574
|
138
|
+
0.045833
|
139
|
+
0.046030
|
140
|
+
0.046645
|
141
|
+
0.050561
|
142
|
+
0.054231
|
143
|
+
0.056892
|
144
|
+
0.058582
|
145
|
+
0.064130
|
146
|
+
0.073786
|
147
|
+
0.080212
|
148
|
+
0.082830
|
149
|
+
0.083419
|
150
|
+
0.076808
|
151
|
+
0.070305
|
152
|
+
0.065482
|
153
|
+
0.061511
|
154
|
+
0.058284
|
155
|
+
0.056801
|
156
|
+
0.052951
|
157
|
+
0.045732
|
158
|
+
0.038851
|
159
|
+
0.040104
|
160
|
+
0.044350
|
161
|
+
0.044575
|
162
|
+
0.040421
|
163
|
+
0.038443
|
164
|
+
0.043005
|
165
|
+
0.049044
|
166
|
+
0.059088
|
167
|
+
0.073637
|
168
|
+
0.077689
|
169
|
+
0.072544
|
170
|
+
0.068457
|
171
|
+
0.064086
|
172
|
+
0.059984
|
173
|
+
0.055999
|
174
|
+
0.052014
|
175
|
+
0.048345
|
176
|
+
0.044362
|
177
|
+
0.042541
|
178
|
+
0.046153
|
179
|
+
0.049860
|
180
|
+
0.052140
|
181
|
+
0.054253
|
182
|
+
0.052479
|
183
|
+
0.046187
|
184
|
+
0.042297
|
185
|
+
0.043624
|
186
|
+
0.045459
|
187
|
+
0.043607
|
188
|
+
0.039362
|
189
|
+
0.039095
|
190
|
+
0.044805
|
191
|
+
0.050368
|
192
|
+
0.056465
|
193
|
+
0.062723
|
194
|
+
0.067538
|
195
|
+
0.072362
|
196
|
+
0.070936
|
197
|
+
0.061764
|
198
|
+
0.054524
|
199
|
+
0.048469
|
200
|
+
0.043213
|
201
|
+
0.041318
|
202
|
+
0.041756
|
203
|
+
0.042631
|
204
|
+
0.047045
|
205
|
+
0.049654
|
206
|
+
0.048925
|
207
|
+
0.046409
|
208
|
+
0.047295
|
209
|
+
0.048872
|
210
|
+
0.052284
|
211
|
+
0.058299
|
212
|
+
0.064221
|
213
|
+
0.066598
|
214
|
+
0.068707
|
215
|
+
0.060040
|
216
|
+
0.045770
|
217
|
+
0.036180
|
218
|
+
0.032970
|
219
|
+
0.029530
|
220
|
+
0.028981
|
221
|
+
0.029002
|
222
|
+
0.027992
|
223
|
+
0.024397
|
224
|
+
0.022261
|
225
|
+
0.029250
|
226
|
+
0.041142
|
227
|
+
0.046781
|
228
|
+
0.049200
|
229
|
+
0.048453
|
230
|
+
0.039281
|
231
|
+
0.028449
|
232
|
+
0.027662
|
233
|
+
0.033403
|
234
|
+
0.038766
|
235
|
+
0.046599
|
236
|
+
0.053495
|
237
|
+
0.052022
|
238
|
+
0.047800
|
239
|
+
0.042836
|
240
|
+
0.035415
|
241
|
+
0.029923
|
242
|
+
0.030510
|
243
|
+
0.032559
|
244
|
+
0.032225
|
245
|
+
0.030449
|
246
|
+
0.029065
|
247
|
+
0.029035
|
248
|
+
0.028932
|
249
|
+
0.035380
|
250
|
+
0.047834
|
251
|
+
0.054917
|
252
|
+
0.055138
|
253
|
+
0.054506
|
254
|
+
0.049761
|
255
|
+
0.043839
|
256
|
+
0.040518
|
257
|
+
0.038841
|
258
|
+
0.037078
|
259
|
+
0.035316
|
260
|
+
0.033654
|
261
|
+
0.030864
|
262
|
+
0.027516
|
263
|
+
0.024946
|
264
|
+
0.025064
|
265
|
+
0.024840
|
266
|
+
0.027286
|
267
|
+
0.030505
|
268
|
+
0.034568
|
269
|
+
0.039776
|
270
|
+
0.045827
|
271
|
+
0.056769
|
272
|
+
0.070272
|
273
|
+
0.076028
|
274
|
+
0.078410
|
275
|
+
0.076822
|
276
|
+
0.069803
|
277
|
+
0.063209
|
278
|
+
0.055298
|
279
|
+
0.047690
|
280
|
+
0.043020
|
281
|
+
0.039538
|
282
|
+
0.037176
|
283
|
+
0.037454
|
284
|
+
0.036975
|
285
|
+
0.034264
|
286
|
+
0.030598
|
287
|
+
0.030258
|
288
|
+
0.034557
|
289
|
+
0.034982
|
290
|
+
0.022665
|
291
|
+
0.007098
|
292
|
+
0.000000
|
293
|
+
0.004757
|
294
|
+
0.008526
|
295
|
+
0.015628
|
296
|
+
0.023539
|
297
|
+
0.030609
|
298
|
+
0.035825
|
299
|
+
0.040592
|
300
|
+
0.038736
|
301
|
+
0.034769
|
302
|
+
0.033839
|
303
|
+
0.035514
|
304
|
+
0.038776
|
305
|
+
0.051812
|
306
|
+
0.065678
|
307
|
+
0.061425
|
308
|
+
0.048089
|
309
|
+
0.041039
|
310
|
+
0.039156
|
311
|
+
0.037099
|
312
|
+
0.031223
|
313
|
+
0.024646
|
314
|
+
0.019567
|
315
|
+
0.016841
|
316
|
+
0.013904
|
317
|
+
0.015771
|
318
|
+
0.019054
|
319
|
+
0.020599
|
320
|
+
0.018845
|
321
|
+
0.017568
|
322
|
+
0.015845
|
323
|
+
0.014599
|
324
|
+
0.012887
|
325
|
+
0.011721
|
326
|
+
0.009966
|
327
|
+
0.011265
|
328
|
+
0.014279
|
329
|
+
0.017507
|
330
|
+
0.022099
|
331
|
+
0.027009
|
332
|
+
0.031882
|
333
|
+
0.037567
|
334
|
+
0.039925
|
@@ -0,0 +1,334 @@
|
|
1
|
+
0.387541
|
2
|
+
0.466773
|
3
|
+
0.448018
|
4
|
+
0.418485
|
5
|
+
0.348200
|
6
|
+
0.296984
|
7
|
+
0.231474
|
8
|
+
0.177464
|
9
|
+
0.114078
|
10
|
+
0.057627
|
11
|
+
0.005374
|
12
|
+
0.018398
|
13
|
+
0.030155
|
14
|
+
0.048732
|
15
|
+
0.059982
|
16
|
+
0.078719
|
17
|
+
0.081711
|
18
|
+
0.086532
|
19
|
+
0.084784
|
20
|
+
0.090925
|
21
|
+
0.087036
|
22
|
+
0.117259
|
23
|
+
0.171491
|
24
|
+
0.231840
|
25
|
+
0.259638
|
26
|
+
0.226066
|
27
|
+
0.192077
|
28
|
+
0.158779
|
29
|
+
0.122637
|
30
|
+
0.100049
|
31
|
+
0.122900
|
32
|
+
0.152512
|
33
|
+
0.177192
|
34
|
+
0.223394
|
35
|
+
0.304282
|
36
|
+
0.379087
|
37
|
+
0.354388
|
38
|
+
0.289266
|
39
|
+
0.235631
|
40
|
+
0.172958
|
41
|
+
0.132019
|
42
|
+
0.115558
|
43
|
+
0.099384
|
44
|
+
0.082963
|
45
|
+
0.066734
|
46
|
+
0.050616
|
47
|
+
0.033966
|
48
|
+
0.042859
|
49
|
+
0.072381
|
50
|
+
0.095677
|
51
|
+
0.125026
|
52
|
+
0.138318
|
53
|
+
0.123797
|
54
|
+
0.107664
|
55
|
+
0.092384
|
56
|
+
0.076195
|
57
|
+
0.060872
|
58
|
+
0.045790
|
59
|
+
0.040485
|
60
|
+
0.035308
|
61
|
+
0.031210
|
62
|
+
0.025880
|
63
|
+
0.021805
|
64
|
+
0.016536
|
65
|
+
0.012682
|
66
|
+
0.029786
|
67
|
+
0.063432
|
68
|
+
0.090257
|
69
|
+
0.124330
|
70
|
+
0.138982
|
71
|
+
0.129634
|
72
|
+
0.117206
|
73
|
+
0.108882
|
74
|
+
0.093504
|
75
|
+
0.105120
|
76
|
+
0.264201
|
77
|
+
0.447930
|
78
|
+
0.430818
|
79
|
+
0.344071
|
80
|
+
0.271313
|
81
|
+
0.190110
|
82
|
+
0.124145
|
83
|
+
0.133063
|
84
|
+
0.157832
|
85
|
+
0.180472
|
86
|
+
0.193217
|
87
|
+
0.170691
|
88
|
+
0.149656
|
89
|
+
0.126243
|
90
|
+
0.104978
|
91
|
+
0.081776
|
92
|
+
0.069668
|
93
|
+
0.063316
|
94
|
+
0.056123
|
95
|
+
0.049470
|
96
|
+
0.042313
|
97
|
+
0.035651
|
98
|
+
0.029227
|
99
|
+
0.031853
|
100
|
+
0.035184
|
101
|
+
0.039459
|
102
|
+
0.042355
|
103
|
+
0.046979
|
104
|
+
0.049876
|
105
|
+
0.062251
|
106
|
+
0.073518
|
107
|
+
0.088789
|
108
|
+
0.097339
|
109
|
+
0.127598
|
110
|
+
0.242189
|
111
|
+
0.380397
|
112
|
+
0.391503
|
113
|
+
0.316196
|
114
|
+
0.258693
|
115
|
+
0.188302
|
116
|
+
0.139104
|
117
|
+
0.131758
|
118
|
+
0.132302
|
119
|
+
0.128799
|
120
|
+
0.128923
|
121
|
+
0.121024
|
122
|
+
0.109645
|
123
|
+
0.097188
|
124
|
+
0.085888
|
125
|
+
0.073504
|
126
|
+
0.062038
|
127
|
+
0.051979
|
128
|
+
0.045148
|
129
|
+
0.036992
|
130
|
+
0.029916
|
131
|
+
0.021948
|
132
|
+
0.014680
|
133
|
+
0.006922
|
134
|
+
0.000000
|
135
|
+
0.016314
|
136
|
+
0.046114
|
137
|
+
0.071494
|
138
|
+
0.100997
|
139
|
+
0.120741
|
140
|
+
0.112228
|
141
|
+
0.099243
|
142
|
+
0.088031
|
143
|
+
0.075339
|
144
|
+
0.063965
|
145
|
+
0.052447
|
146
|
+
0.050512
|
147
|
+
0.047561
|
148
|
+
0.046863
|
149
|
+
0.043295
|
150
|
+
0.043460
|
151
|
+
0.038888
|
152
|
+
0.078978
|
153
|
+
0.143354
|
154
|
+
0.208034
|
155
|
+
0.244443
|
156
|
+
0.221101
|
157
|
+
0.204383
|
158
|
+
0.181122
|
159
|
+
0.167863
|
160
|
+
0.164243
|
161
|
+
0.164262
|
162
|
+
0.161373
|
163
|
+
0.160673
|
164
|
+
0.152988
|
165
|
+
0.147668
|
166
|
+
0.139446
|
167
|
+
0.134261
|
168
|
+
0.125796
|
169
|
+
0.120455
|
170
|
+
0.111619
|
171
|
+
0.106626
|
172
|
+
0.097120
|
173
|
+
0.096837
|
174
|
+
0.104191
|
175
|
+
0.115259
|
176
|
+
0.122322
|
177
|
+
0.133579
|
178
|
+
0.125047
|
179
|
+
0.114578
|
180
|
+
0.099584
|
181
|
+
0.091194
|
182
|
+
0.072941
|
183
|
+
0.081899
|
184
|
+
0.192170
|
185
|
+
0.339028
|
186
|
+
0.373346
|
187
|
+
0.307443
|
188
|
+
0.251432
|
189
|
+
0.193158
|
190
|
+
0.128703
|
191
|
+
0.123870
|
192
|
+
0.311296
|
193
|
+
0.460354
|
194
|
+
0.413580
|
195
|
+
0.330368
|
196
|
+
0.257791
|
197
|
+
0.177266
|
198
|
+
0.111056
|
199
|
+
0.108772
|
200
|
+
0.124857
|
201
|
+
0.134119
|
202
|
+
0.148663
|
203
|
+
0.142347
|
204
|
+
0.128203
|
205
|
+
0.113605
|
206
|
+
0.100148
|
207
|
+
0.085145
|
208
|
+
0.073828
|
209
|
+
0.071936
|
210
|
+
0.071771
|
211
|
+
0.070844
|
212
|
+
0.070481
|
213
|
+
0.069743
|
214
|
+
0.068068
|
215
|
+
0.064226
|
216
|
+
0.060952
|
217
|
+
0.057274
|
218
|
+
0.053855
|
219
|
+
0.050344
|
220
|
+
0.046276
|
221
|
+
0.040856
|
222
|
+
0.035418
|
223
|
+
0.030103
|
224
|
+
0.024530
|
225
|
+
0.019377
|
226
|
+
0.013519
|
227
|
+
0.010176
|
228
|
+
0.029142
|
229
|
+
0.057015
|
230
|
+
0.080981
|
231
|
+
0.109348
|
232
|
+
0.125047
|
233
|
+
0.121321
|
234
|
+
0.114942
|
235
|
+
0.111967
|
236
|
+
0.102999
|
237
|
+
0.118122
|
238
|
+
0.180695
|
239
|
+
0.249158
|
240
|
+
0.288482
|
241
|
+
0.253052
|
242
|
+
0.218923
|
243
|
+
0.181922
|
244
|
+
0.147726
|
245
|
+
0.139065
|
246
|
+
0.147169
|
247
|
+
0.149358
|
248
|
+
0.156593
|
249
|
+
0.148336
|
250
|
+
0.130169
|
251
|
+
0.112183
|
252
|
+
0.094319
|
253
|
+
0.076493
|
254
|
+
0.057942
|
255
|
+
0.047247
|
256
|
+
0.052315
|
257
|
+
0.055461
|
258
|
+
0.060321
|
259
|
+
0.063744
|
260
|
+
0.068420
|
261
|
+
0.075373
|
262
|
+
0.085759
|
263
|
+
0.094557
|
264
|
+
0.104429
|
265
|
+
0.116572
|
266
|
+
0.174087
|
267
|
+
0.246578
|
268
|
+
0.304068
|
269
|
+
0.276145
|
270
|
+
0.230970
|
271
|
+
0.189609
|
272
|
+
0.145715
|
273
|
+
0.108017
|
274
|
+
0.108886
|
275
|
+
0.119184
|
276
|
+
0.126949
|
277
|
+
0.136384
|
278
|
+
0.142131
|
279
|
+
0.145018
|
280
|
+
0.149689
|
281
|
+
0.148360
|
282
|
+
0.207788
|
283
|
+
0.447206
|
284
|
+
0.547408
|
285
|
+
0.438627
|
286
|
+
0.345469
|
287
|
+
0.237059
|
288
|
+
0.179579
|
289
|
+
0.162774
|
290
|
+
0.142560
|
291
|
+
0.124467
|
292
|
+
0.103896
|
293
|
+
0.095235
|
294
|
+
0.110025
|
295
|
+
0.123040
|
296
|
+
0.138060
|
297
|
+
0.150234
|
298
|
+
0.156605
|
299
|
+
0.160230
|
300
|
+
0.165613
|
301
|
+
0.169452
|
302
|
+
0.177439
|
303
|
+
0.183653
|
304
|
+
0.192861
|
305
|
+
0.193968
|
306
|
+
0.179387
|
307
|
+
0.160601
|
308
|
+
0.146472
|
309
|
+
0.124483
|
310
|
+
0.142538
|
311
|
+
0.212150
|
312
|
+
0.282583
|
313
|
+
0.301483
|
314
|
+
0.253199
|
315
|
+
0.219265
|
316
|
+
0.173994
|
317
|
+
0.138819
|
318
|
+
0.093852
|
319
|
+
0.059193
|
320
|
+
0.012173
|
321
|
+
0.000357
|
322
|
+
0.026773
|
323
|
+
0.057192
|
324
|
+
0.082337
|
325
|
+
0.114205
|
326
|
+
0.112928
|
327
|
+
0.099683
|
328
|
+
0.082857
|
329
|
+
0.072123
|
330
|
+
0.053306
|
331
|
+
0.044549
|
332
|
+
0.027362
|
333
|
+
0.118562
|
334
|
+
0.220960
|