viral_seq 1.5.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c678fb3b1c37bd996ccf65f1b062a044e60eee32c01b0d75f7c9b7859c3136dd
4
- data.tar.gz: 7e42acba2e2ae0e3f17a2786cfa1b5b4a376e0b5723c73ed83d32e9d93509c34
3
+ metadata.gz: 6bc062e2f207fd9e33d97885125b656c4b24ae8056221020bb611c191104109b
4
+ data.tar.gz: a0086f02da866821c134a9433317b7016a429e37e775de65d434dbae1b7efd23
5
5
  SHA512:
6
- metadata.gz: 527894489a0f2d899c449b802a6986f9ebad74fb324339c29a523f6a39cc2ce9d8639f39b837e32881e977e05ea639b4a3681d0b5cbdf87650f5749cfdc72b64
7
- data.tar.gz: c6418b6b395fdc52e9ed53c4e26531f4baac0cf61356db83aa9089e3e37a348edc8f12d2ca1a6b9cc8d5609f1ff0bfd9ba3e98025c0e4d71d80702d662ecbaa6
6
+ metadata.gz: dc29bb6914196e4aa0fa6d7c2db25d4db1179f40a551dc0784534fe2225c857ef22663815d483412db1a715977574a01ab457a5d4913e38a7a9ac439b38795ab
7
+ data.tar.gz: f42559bc07b75b2d9a4023af0313cc40e037697970c0ac4a6c34fd04938b5ab879ece19fd95d05237075292c38a93e315018c7e0c03bd0ee9ab8cf1716b894ed
data/README.md CHANGED
@@ -55,7 +55,7 @@ Example commands:
55
55
  ---
56
56
  ### `tcs_log`
57
57
 
58
- Use `tcs_log` script to pool run logs and TCS fasta files after one batch of `tcs` jobs.
58
+ Use `tcs_log` script to pool run logs and TCS fasta files after one batch of `tcs` jobs. This command generates log.html to visualize the sequencing runs.
59
59
 
60
60
 
61
61
  Example file structure:
@@ -179,6 +179,11 @@ qc_seqhash.sdrm_hiv_pr(cut_off)
179
179
 
180
180
  ## Updates
181
181
 
182
+ ### Version 1.6.0-01042022
183
+
184
+ 1. Update the `ViralSeq::TcsCore::detection_limit` with pre-calculated values to save processing time.
185
+ 2. Update `tcs` pipeline to v2.5.0. HTML report will generated after running `tcs_log` script after `tcs` pipeline.
186
+
182
187
  ### Version 1.5.0-01042022
183
188
 
184
189
  1. Added a function to calcute detection limit/sensitivity for minority variants (R required). `ViralSeq::TcsCore::detection_limit`
data/bin/tcs CHANGED
@@ -32,9 +32,18 @@ require 'optparse'
32
32
 
33
33
  options = {}
34
34
 
35
- banner = '-'*50 + "\n" +
36
- '| The TCS Pipeline ' + "Version #{ViralSeq::TCS_VERSION}".red.bold + " by " + "Shuntai Zhou".blue.bold + ' |' + "\n" +
37
- '-'*50 + "\n"
35
+ # banner = '-'*50 + "\n" +
36
+ # '| The TCS Pipeline ' + "Version #{ViralSeq::TCS_VERSION}".red.bold + " by " + "Shuntai Zhou".blue.bold + ' |' + "\n" +
37
+ # '-'*50 + "\n"
38
+
39
+ banner = "\n" +
40
+ "████████ ██████ ███████ ██████ ██ ██████ ███████ ██ ██ ███ ██ ███████\n".light_red +
41
+ " ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ██ ██\n".light_yellow +
42
+ " ██ ██ ███████ ██████ ██ ██████ █████ ██ ██ ██ ██ ██ █████\n".light_green +
43
+ " ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██\n".light_cyan +
44
+ " ██ ██████ ███████ ██ ██ ██ ███████ ███████ ██ ██ ████ ███████\n".light_magenta
45
+
46
+ banner += "\nVersion #{ViralSeq::TCS_VERSION}".red.bold + " by " + "Shuntai Zhou".blue.bold + "\n\n"
38
47
 
39
48
  OptionParser.new do |opts|
40
49
  opts.banner = banner + "Usage: tcs -j"
data/bin/tcs_log CHANGED
@@ -16,6 +16,7 @@ require 'viral_seq'
16
16
  require 'pathname'
17
17
  require 'json'
18
18
  require 'fileutils'
19
+ require 'csv'
19
20
 
20
21
  indir = ARGV[0].chomp
21
22
  indir_basename = File.basename(indir)
@@ -26,6 +27,7 @@ Dir.mkdir(tcs_dir) unless File.directory?(tcs_dir)
26
27
 
27
28
  libs = []
28
29
  Dir.chdir(indir) {libs = Dir.glob("*")}
30
+ libs.sort_by! {|lib| lib.split("-")[1].to_i}
29
31
 
30
32
  outdir2 = File.join(tcs_dir, "combined_TCS_per_lib")
31
33
  outdir3 = File.join(tcs_dir, "TCS_per_region")
@@ -53,18 +55,26 @@ header = %w{
53
55
  Resampling_index
54
56
  Combined_TCS
55
57
  Combined_TCS_after_QC
58
+ Detection_Sensitivity
56
59
  WARNINGS
57
60
  }
58
61
 
62
+ pid_dist_data = {}
63
+
59
64
  log.puts header.join(',')
60
65
  libs.each do |lib|
61
66
  Dir.mkdir(File.join(outdir2, lib)) unless File.directory?(File.join(outdir2, lib))
62
67
  fasta_files = []
63
68
  json_files = []
69
+ pid_json_files = []
70
+ pid_dist_data[lib] = {}
71
+
64
72
  Dir.chdir(File.join(indir, lib)) do
65
73
  fasta_files = Dir.glob("**/*.fasta")
66
74
  json_files = Dir.glob("**/log.json")
75
+ pid_json_files = Dir.glob("**/primer_id.json")
67
76
  end
77
+
68
78
  fasta_files.each do |f|
69
79
  path_array = Pathname(f).each_filename.to_a
70
80
  region = path_array[0]
@@ -81,6 +91,14 @@ libs.each do |lib|
81
91
 
82
92
  json_files.each do |f|
83
93
  json_log = JSON.parse(File.read(File.join(indir, lib, f)), symbolize_names: true)
94
+ tcs_number = json_log[:total_tcs]
95
+ if json_log[:combined_tcs]
96
+ tcs_number = json_log[:combined_tcs]
97
+ if json_log[:combined_tcs_after_qc]
98
+ tcs_number = json_log[:combined_tcs_after_qc]
99
+ end
100
+ end
101
+
84
102
  log.print [lib,
85
103
  json_log[:primer_set_name],
86
104
  json_log[:total_raw_sequence],
@@ -95,8 +113,604 @@ libs.each do |lib|
95
113
  json_log[:resampling_param],
96
114
  json_log[:combined_tcs],
97
115
  json_log[:combined_tcs_after_qc],
116
+ ViralSeq::TcsCore::detection_limit(tcs_number.to_i),
98
117
  json_log[:warnings],
99
118
  ].join(',') + "\n"
100
119
  end
120
+
121
+ pid_json_files.each do |f|
122
+ pid_json = JSON.parse(File.read(File.join(indir, lib, f)), symbolize_names: true)
123
+ region = Pathname(f).each_filename.to_a[-2]
124
+ pid_dist = {}
125
+ pid_json[:primer_id_distribution].each {|k,v| pid_dist[k.to_s.to_i] = v}
126
+ pid_dist_data[lib][region] = pid_dist
127
+ end
101
128
  end
102
129
  log.close
130
+
131
+ # Create HTML page with charts from log.csv above
132
+
133
+ class String
134
+ def var_safe
135
+ gsub '-',''
136
+ end
137
+ def shorten_html
138
+ gsub /\n/, ''
139
+ gsub /\t/, ''
140
+ end
141
+ end
142
+
143
+ colors = ["#332288", "#117733", "#44AA99", "#88CCEE", "#DDCC77", "#CC6677", "#AA4499", "#882255"]
144
+ bool_colors = { true => colors[3], false => colors[5] }
145
+
146
+ #hold vars for csv input
147
+ raw_sequence_data = ["['Library Name', 'Raw Sequences', { role: 'annotation' }]"]
148
+ lib_names = []
149
+ total_reads = 0
150
+ max_region_char_length = 5
151
+ lib_data = {}
152
+ batch_name = ""
153
+ region_colors = {"Other" => "#808080"}
154
+
155
+ CSV.foreach(log_file).each_with_index do |row, i|
156
+ next if i == 0 || row[0] == nil
157
+
158
+ lib_name = row[0]
159
+ region = row[1]
160
+ raw_sequences_per_barcode = row[2].to_i
161
+
162
+ if not region_colors.key?(region)
163
+ region_colors[region] = colors[region_colors.length % (colors.length - 1)]
164
+ end
165
+
166
+ if region.length > max_region_char_length + 2
167
+ max_region_char_length = region.length + 2
168
+ end
169
+
170
+ if batch_name == ""
171
+ batch_name = lib_name.split('-')[0]
172
+ end
173
+
174
+ if not lib_names.include? lib_name
175
+ lib_names.push(lib_name)
176
+ total_reads += raw_sequences_per_barcode
177
+ raw_sequence_data.push("['#{lib_name}', #{raw_sequences_per_barcode}, '#{raw_sequences_per_barcode}']")
178
+ lib_data[lib_name] = {}
179
+ end
180
+
181
+ lib_data[lib_name][region] = {
182
+ 'lib_name' => lib_name,
183
+ 'region' => region,
184
+ 'raw_sequences_per_barcode' => raw_sequences_per_barcode,
185
+ 'r1_raw' => row[3].to_i,
186
+ 'r2_raw' => row[4].to_i,
187
+ 'paired_raw' => row[5].to_i,
188
+ 'cutoff' => row[6].to_i,
189
+ 'consensus2' => row[9].to_i,
190
+ 'distinct_to_raw' => row[10].to_f,
191
+ 'resampling_index' => row[11].to_f,
192
+ 'combined_TCS' => row[12].to_i,
193
+ 'combined_TCS_after_QC' => row[13].to_i,
194
+ 'detection_sensitivity' => row[14].to_f,
195
+ 'warnings' => row[15].to_s || ""
196
+ }
197
+ end
198
+
199
+ #format output
200
+ total_reads = total_reads.to_s.reverse.gsub(/(\d{3})(?=\d)/, '\\1,').reverse
201
+ raw_sequence_data = "[" + raw_sequence_data.join(',') + "]"
202
+ lib_names = lib_names.sort_by { |s| [s.split("-")[0], s.split("-")[1].to_i] }
203
+
204
+ #calculate 'other'
205
+ lib_data.each do |lib, data|
206
+ sum = data.values.reduce(0) { |sum, obj| sum + obj['paired_raw'] }
207
+ raw_sequences_per_barcode = data[data.keys.first]['raw_sequences_per_barcode']
208
+ other = raw_sequences_per_barcode - sum
209
+ data['other'] = {
210
+ "region" => "Other",
211
+ "paired_raw" => other,
212
+ "raw_sequences_per_barcode" => raw_sequences_per_barcode
213
+ }
214
+ end
215
+
216
+ #process each library's html
217
+ library_links = "
218
+ <ul>
219
+ <li id='link_basic-statistics' class='pointer current_page' onclick='showPage(\"basic-statistics\")'>Basic Statistics</li>
220
+ <li>Libraries
221
+ <ul style='margin-left: 16px;'>" + lib_names.map { |lib_name| "
222
+ <li id='link_#{lib_name}' class='pointer' onclick='showPage(\""+lib_name+"\")'>"+lib_name+"</li>"
223
+ }.join + "
224
+ </ul>
225
+ </li>
226
+ </ul>
227
+ "
228
+
229
+ library_pages = lib_names.map { |lib_name|
230
+ "<div id='"+lib_name+"' class='page hidden'>
231
+ <div class='error-message'></div>
232
+ <div style='display: flex; gap: 16px; min-height: 45vh;'>
233
+ <div class='card' style='flex: 1; display: flex; flex-direction: column;'>
234
+ <h2>Distribution of Raw Sequencing Reads</h2>
235
+ <div class='pie_chart' style='flex: 1;'></div>
236
+ </div>
237
+ <div class='card' style='display: flex; align-items: center; justify-content: center; flex-direction: column; flex: 1;'>
238
+ " + lib_data[lib_name].map{ |lib, data| data['region'] == "Other" ? "" : "
239
+ <div class='#{data['region']}' style='display: flex; align-items: center;'>
240
+ <div style='width: #{max_region_char_length.to_s}ch;'>#{data['region']}</div>
241
+ <div class='treemap' style='flex: 1; height: #{90 / lib_data[lib_name].length}vh;'></div>
242
+ </div>
243
+ " }.join + "
244
+ </div>
245
+ </div>
246
+ <div class='card'>
247
+ <h2 style='margin: 32px;'>Number of TCS at Regions</h2>
248
+ <div class='tcs_bar_chart'></div>
249
+ <div class='tcs_warnings' style='text-align: center;color: red;font-weight: bold;margin-left: 24px;'><strong></strong></div>
250
+ </div>
251
+ <div class='card'>
252
+ <h2>Detection Sensitivity</h2>
253
+ <p><i>The lowest abundance of minority mutations that can be detected with 95% confidence</i></p>
254
+ <div class='detection_sensitivity_chart'></div>
255
+ </div>
256
+ <div class='card'>
257
+ <h2 style='text-align: center;'>Distinct to Raw</h2>
258
+ <p><i>Distinct to Raw greater than 0.1 suggests more raw sequences are required to fully recover TCS</i></p>
259
+ <div class='raw_bar_chart'></div>
260
+ </div>
261
+ <div class='card'>
262
+ <h2>Resampling Index</h2>
263
+ <p><i>Resampling index less than 0.9 suggests Primer ID resampling</i></p>
264
+ <div class='resampling_bar_chart'></div>
265
+ </div>
266
+ <div class='card'>
267
+ <h2>Primer ID bin size distribution</h2>
268
+ <p><i>Red vertical line shows the consensus cut-off value</i></p>
269
+ " + lib_data[lib_name].map{ |lib, data| data['region'] == "Other" ? "" : "
270
+ <div class='#{data['region']} scatter' style='height: #{90 / 3}vh;'></div>
271
+ " }.join + "
272
+ </div>
273
+ </div>"
274
+ }.join
275
+
276
+ #format lib_data into charts
277
+ paired_raw = {}
278
+ tree_charts = {}
279
+ tcs_bar_chart = {}
280
+ distinct_bar_chart = {}
281
+ resampling_bar_chart = {}
282
+ detection_sensitivity_chart = {}
283
+
284
+ lib_data.each do |lib, data|
285
+ paired_raw[lib] = {}
286
+
287
+ paired_raw[lib]['data'] = "
288
+ [
289
+ ['Region', 'Paired Raw'], " +
290
+ data.map { |lib, d| "
291
+ ['#{d['region']},#{d['paired_raw']}', #{d['paired_raw']}],
292
+ " }.join + "
293
+ ]
294
+ "
295
+
296
+ paired_raw[lib]['slices'] = "[#{
297
+ data.map{ |lib, d| "{color: '#{region_colors[d['region']]}'}" }.join(',')
298
+ }]"
299
+
300
+ paired_raw[lib]['residuel_text'] = data.map { |lib, d|
301
+ (d['paired_raw'].to_f / d['raw_sequences_per_barcode'].to_f) < (0.5/360) ?
302
+ "#{d['region']},#{d['paired_raw']}" :
303
+ nil
304
+ }.compact.join(" - ")
305
+
306
+ tree_charts[lib] = {}
307
+ data.each do |region, d|
308
+ if region != "other"
309
+ tree_charts[lib][region] = "
310
+ [
311
+ ['Location', 'Parent', 'r'],
312
+ ['Global', null,0],
313
+ ['R1_Raw', 'Global', #{d['r1_raw'].to_s}],
314
+ ['R2_Raw', 'Global', #{d['r2_raw'].to_s}],
315
+ ['Paired_Raw', 'Global', #{d['paired_raw'].to_s}],
316
+ ]
317
+ "
318
+ end
319
+ end
320
+
321
+ has_c = data.values.inject(0) {|sum, h| sum + (h['combined_TCS'] == nil ? 0 : h['combined_TCS']) } > 0
322
+ has_qc = data.values.inject(0) {|sum, h| sum + (h['combined_TCS_after_QC'] == nil ? 0 : h['combined_TCS_after_QC']) } > 0
323
+
324
+ tcs_bar_chart[lib] = {
325
+ 'data' => "
326
+ [
327
+ [
328
+ 'Region',
329
+ 'TCS',
330
+ #{has_c ? "'Combined TCS'," : ''}
331
+ #{has_qc ? "'TCS After QC'," : ''}
332
+ ],
333
+ " + data.map{ |region, d| d['region'] === "Other" ? "" : "
334
+ [
335
+ '#{d['region']}#{d['warnings'].length > 0 ? '*' : ''}',
336
+ #{d['consensus2']} ,
337
+ #{has_c ? "#{d['combined_TCS']}," : ''}
338
+ #{has_qc ? "#{d['combined_TCS_after_QC']}," : ''}
339
+ ],
340
+ " }.join + "
341
+ ]
342
+ ",
343
+ 'warnings' => data.map{ |region, d|
344
+ d['region'] != "Other" && d['warnings'].length > 0 ? "#{region} - #{d["warnings"]}<br/>" : ''
345
+ }.join
346
+ }
347
+
348
+ detection_sensitivity_chart[lib] = "[
349
+ ['Region', 'Detection Sensitivity'],
350
+ #{ data.map{ |region, d|
351
+ d['region'] == 'Other' ? "" : "['#{d['region']}', #{d['detection_sensitivity']}]"
352
+ }.join(',') }
353
+ ]"
354
+
355
+ distinct_bar_chart[lib] = "
356
+ [
357
+ ['Region','Distinct to Raw', {role: 'style'}],
358
+ "+ data.map{ |region, d| d['region'] == 'Other' ? "" : "
359
+ [
360
+ '#{d['region']}', #{d['distinct_to_raw']}, '#{bool_colors[d['distinct_to_raw'].to_f < 0.1]}'
361
+ ],"}.join + "
362
+ ]
363
+ "
364
+
365
+ resampling_bar_chart[lib] = "
366
+ [
367
+ ['Region','Resampling Index', {role: 'style'}],
368
+ "+ data.map{ |region, d| d['region'] == 'Other' ? "" : "
369
+ [
370
+ '#{d['region']}', #{d['resampling_index']}, '#{bool_colors[d['resampling_index'].to_f > 0.9]}'
371
+ ]," }.join + "
372
+ ]
373
+ "
374
+ end
375
+
376
+ scatter_charts = {}
377
+
378
+ pid_dist_data.each do |lib, data|
379
+ scatter_charts[lib] = {}
380
+ data.each do |region, d|
381
+ max_x = d.max_by{|index, distribution| distribution }[1]
382
+ max_x = "1#{ max_x.to_s.chars.map{ |c| "0"}.join }"
383
+ scatter_charts[lib][region] = "[
384
+ ['Index', 'Distribution', 'Cutoff'],
385
+ [#{lib_data[lib][region]['cutoff'].to_s}, null, 0],
386
+ [#{lib_data[lib][region]['cutoff'].to_s}, null, #{max_x}],
387
+ #{d.map{ |index, distribution| "[#{index}, #{distribution}, null]" }.join(',') },
388
+ ]"
389
+ end
390
+ end
391
+
392
+ #create JS that initializes charts
393
+ paired_raw_js = paired_raw.map { |lib, data| '
394
+ var element_pie_'+lib.var_safe+' = document.querySelector("#'+lib+' .pie_chart")
395
+ if(isVisible(element_pie_'+lib.var_safe+')){
396
+ var chart_pie_'+lib.var_safe+' = new google.visualization.PieChart(element_pie_'+lib.var_safe+');
397
+ chart_pie_'+lib.var_safe+'.draw(
398
+ google.visualization.arrayToDataTable('+data['data']+'),
399
+ {
400
+ title: "Paired Raw",
401
+ titleTextStyle: {
402
+ fontSize: 18
403
+ },
404
+ pieSliceText: "label",
405
+ slices: ' + data['slices'] + ',
406
+ legend: {
407
+ position: "left",
408
+ alignment: "center"
409
+ },
410
+ chartArea: {
411
+ width: "100%",
412
+ height: "100%"
413
+ },
414
+ ' + (data['residuel_text'].length > 0 ? "pieResidueSliceLabel: '#{data['residuel_text']}'" : "") + '
415
+ }
416
+ );
417
+ }
418
+ ' }.join
419
+
420
+ tree_charts_js = tree_charts.map { |lib, d|
421
+ d.map { |region, data| '
422
+ var element_chart_tree_'+lib.var_safe+'_'+region.var_safe+' = document.querySelector("#'+lib+' .'+region+' .treemap")
423
+ if(isVisible(element_chart_tree_'+lib.var_safe+'_'+region.var_safe+')){
424
+ var chart_tree_'+lib.var_safe+'_'+region.var_safe+' = new google.visualization.TreeMap(element_chart_tree_'+lib.var_safe+'_'+region.var_safe+');
425
+ chart_tree_'+lib.var_safe+'_'+region.var_safe+'.draw(
426
+ google.visualization.arrayToDataTable('+data+'),
427
+ {
428
+ headerHeight: 0,
429
+ minColor: "' + colors[1] + '",
430
+ maxColor: "' + colors[5] + '",
431
+ fontColor: "#fff",
432
+ }
433
+ );
434
+ google.visualization.events.addListener(chart_tree_'+lib.var_safe+'_'+region.var_safe+', "select", function () {
435
+ chart_tree_'+lib.var_safe+'_'+region.var_safe+'.setSelection([]);
436
+ });
437
+ }
438
+ '}
439
+ }.join
440
+
441
+ tcs_bar_chart_js = tcs_bar_chart.map { |lib, data| '
442
+ var element_tcs_bar_chart_'+lib.var_safe+' = document.querySelector("#'+lib+' .tcs_bar_chart")
443
+ if(isVisible(element_tcs_bar_chart_'+lib.var_safe+')){
444
+ var tcs_bar_chart_'+lib.var_safe+' = new google.charts.Bar(element_tcs_bar_chart_'+lib.var_safe+');
445
+ tcs_bar_chart_'+lib.var_safe+'.draw(
446
+ google.visualization.arrayToDataTable('+data["data"]+'),
447
+ google.charts.Bar.convertOptions({
448
+ colors: ["' + colors[0] + '", "' + colors[1] + '", "' + colors[2] + '"],
449
+ legend: { position: "bottom" },
450
+ height: Math.round(window.innerHeight * .5),
451
+ chartArea: {
452
+ width: "100%",
453
+ height: "100%"
454
+ }
455
+ })
456
+ );
457
+ document.querySelector("#'+lib+' .tcs_warnings").innerHTML = "'+data['warnings']+'";
458
+ }
459
+ ' }.join
460
+
461
+ detection_sensitivity_js = detection_sensitivity_chart.map { |lib, data| '
462
+ var element_detection_'+lib.var_safe+' = document.querySelector("#'+lib+' .detection_sensitivity_chart")
463
+ if(isVisible(element_detection_'+lib.var_safe+')){
464
+ var detection_'+lib.var_safe+' = new google.visualization.ColumnChart(element_detection_'+lib.var_safe+');
465
+ detection_'+lib.var_safe+'.draw(
466
+ google.visualization.arrayToDataTable('+data+'),
467
+ {
468
+ legend: {
469
+ position: "none"
470
+ },
471
+ height: Math.round(window.innerHeight * .5),
472
+ colors: ["' + colors[3] + '"],
473
+ vAxis: {
474
+ scaleType: "log",
475
+ viewWindow: {
476
+ min: 0.00001
477
+ },
478
+ ticks: [0.00001, 0.0001, 0.001, 0.01, 0.1, 1]
479
+ }
480
+ }
481
+ );
482
+ }
483
+ '}.join
484
+
485
+ distinct_bar_chart_js = distinct_bar_chart.map { |lib, data| '
486
+ var element_distinct_'+lib.var_safe+' = document.querySelector("#'+lib+' .raw_bar_chart")
487
+ if(isVisible(element_distinct_'+lib.var_safe+')){
488
+ var distinct_'+lib.var_safe+' = new google.visualization.ColumnChart(element_distinct_'+lib.var_safe+');
489
+ distinct_'+lib.var_safe+'.draw(
490
+ google.visualization.arrayToDataTable('+data+'),
491
+ {
492
+ legend: {
493
+ position: "none"
494
+ },
495
+ height: Math.round(window.innerHeight * .5),
496
+ }
497
+ );
498
+ }
499
+ ' }.join
500
+
501
+ resampling_bar_chart_js = resampling_bar_chart.map { |lib, data| '
502
+ var element_resampling_'+lib.var_safe+' = document.querySelector("#'+lib+' .resampling_bar_chart")
503
+ if(isVisible(element_resampling_'+lib.var_safe+')){
504
+ var resampling_'+lib.var_safe+' = new google.visualization.ColumnChart(element_resampling_'+lib.var_safe+');
505
+ resampling_'+lib.var_safe+'.draw(
506
+ google.visualization.arrayToDataTable('+data+'),
507
+ {
508
+ legend: {
509
+ position: "none"
510
+ },
511
+ height: Math.round(window.innerHeight * .5),
512
+ }
513
+ );
514
+ }
515
+ ' }.join
516
+
517
+ scatter_charts_js = scatter_charts.map { |lib, d|
518
+ d.map { |region, data| '
519
+ var element_chart_scatter_'+lib.var_safe+'_'+region.var_safe+' = document.querySelector("#'+lib+' .'+region+'.scatter")
520
+ if(isVisible(element_chart_scatter_'+lib.var_safe+'_'+region.var_safe+')){
521
+ var chart_scatter_'+lib.var_safe+'_'+region.var_safe+' = new google.visualization.ComboChart(element_chart_scatter_'+lib.var_safe+'_'+region.var_safe+');
522
+
523
+ var view_'+lib.var_safe+'_'+region.var_safe+' = new google.visualization.DataView(
524
+ google.visualization.arrayToDataTable(' + data + ')
525
+ );
526
+
527
+ chart_scatter_'+lib.var_safe+'_'+region.var_safe+'.draw(
528
+ view_'+lib.var_safe+'_'+region.var_safe+',
529
+ {
530
+ pointSize: 5,
531
+ title: "' + region + '",
532
+ hAxis: {title: "Raw sequencing reads per unique PID"},
533
+ vAxis: {
534
+ title: "# of PIDs ",
535
+ logScale: true
536
+ },
537
+ colors: ["' + bool_colors[true] + '"],
538
+ legend: "none",
539
+ seriesType: "scatter",
540
+ series: {
541
+ 1: {
542
+ type: "line",
543
+ color: "' + bool_colors[false] + '",
544
+ pointsVisible: false,
545
+ }
546
+ }
547
+ }
548
+ );
549
+ }
550
+ '}
551
+ }.join
552
+
553
+ html = '
554
+ <!DOCTYPE html>
555
+ <html lang="en">
556
+ <head>
557
+ <meta charset="UTF-8">
558
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
559
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
560
+ <title>TCS Log</title>
561
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
562
+ <script src="https://www.gstatic.com/charts/loader.js"></script>
563
+ <script>
564
+ google.charts.load("current", {packages: ["corechart", "treemap", "bar"]});
565
+ google.charts.setOnLoadCallback(drawChart);
566
+
567
+ var isInit = false
568
+
569
+ function isVisible(el) {
570
+ return (el.offsetParent !== null)
571
+ }
572
+
573
+ function drawChart() {
574
+
575
+ document.querySelectorAll(".error-message").forEach(element => element.innerHTML = "")
576
+
577
+ if(! isInit){
578
+ isInit = true;
579
+ window.onresize = drawChart;
580
+ }
581
+
582
+ try{
583
+ var element_home_chart = document.getElementById("raw-sequence-chart")
584
+ if(isVisible(element_home_chart)){
585
+ var home_chart = new google.visualization.ColumnChart(element_home_chart);
586
+ home_chart.draw(
587
+ google.visualization.arrayToDataTable('+raw_sequence_data+'),
588
+ {
589
+ annotations: {alwaysOutside: true},
590
+ colors: ["' + bool_colors[true] + '"]
591
+ }
592
+ );
593
+ }'+ paired_raw_js + tree_charts_js + tcs_bar_chart_js + distinct_bar_chart_js + resampling_bar_chart_js + detection_sensitivity_js + scatter_charts_js + '
594
+ }catch(e){
595
+ console.log(e);
596
+ document.querySelectorAll(".error-message").forEach(element =>
597
+ element.innerHTML = "There was an error displaying your data.<br>To help us improve, please forward this html file to<br>shuntaiz@email.unc.edu"
598
+ )
599
+ }
600
+ }
601
+
602
+ function showPage(pageID){
603
+ document.querySelectorAll(".page").forEach(element => element.classList.add("hidden"))
604
+ document.getElementById(pageID).classList.remove("hidden")
605
+
606
+ document.querySelectorAll(".current_page").forEach(element => element.classList.remove("current_page"));
607
+ document.getElementById("link_"+pageID).classList.add("current_page");
608
+
609
+ drawChart();
610
+ }
611
+ </script>
612
+ </head>
613
+ <body>
614
+ <div style="display: flex; flex-direction: column; height: 100vh; width: 100vw; position: fixed; overflow: hidden;">
615
+ <div style="display: flex; gap: 4px;">
616
+ <div id="nav" class="card" style="overflow: auto; min-height: 100vh; text-align: left; margin-top: 0;">
617
+ <a href="https://primer-id.org" target="_BLANK">
618
+ <h3 style="margin: 24px; font-weight: 600; color: #333 !important">TCS Log</h3>
619
+ </a>
620
+ '+library_links+'
621
+ </div>
622
+ <div id="pages" style="flex: 1; overflow: auto; height: 100vh;">
623
+ <div style="display: flex; flex-direction: column; align-items: center; height: 100vh;" id="basic-statistics" class="page">
624
+ <div class="error-message"></div>
625
+ <div class="card" style="margin-top: 16px; width: 100%;">
626
+ <table id="home-table">
627
+ <tr>
628
+ <td>Batch Name</td>
629
+ <td>'+batch_name+'</td>
630
+ </tr>
631
+ <tr>
632
+ <td>Processed Time</td>
633
+ <td>'+Time.now.strftime("%m/%d/%Y")+'</td>
634
+ </tr>
635
+ <tr>
636
+ <td>TCS Version</td>
637
+ <td>'+ViralSeq::TCS_VERSION+'</td>
638
+ </tr>
639
+ <tr>
640
+ <td>viral_seq Version</td>
641
+ <td>'+ViralSeq::VERSION+'</td>
642
+ </tr>
643
+ <tr>
644
+ <td>Number of Libraries</td>
645
+ <td>'+lib_names.length.to_s+'</td>
646
+ </tr>
647
+ <tr>
648
+ <td>Total Reads</td>
649
+ <td>'+total_reads+'</td>
650
+ </tr>
651
+ </table>
652
+ </div>
653
+ <div class="card" style="margin-top: 16px; width: 100%;">
654
+ <h2>Raw Sequences Distribution</h2>
655
+ <div id="raw-sequence-chart"></div>
656
+ </div>
657
+ </div>
658
+ '+library_pages+'
659
+ </div>
660
+ </div>
661
+ </div>
662
+ </body>
663
+ <style>
664
+ body {
665
+ font-size: 1.2rem;
666
+ color: #333;
667
+ }
668
+ #nav ul {
669
+ list-style-type: none;
670
+ }
671
+ .page {
672
+ margin: 16px;
673
+ }
674
+ .card {
675
+ padding: 16px;
676
+ text-align: center;
677
+ }
678
+ .hidden {
679
+ display: none !important;
680
+ visibility: hidden !important;
681
+ }
682
+ .pointer {
683
+ cursor: pointer;
684
+ }
685
+ #home-table {
686
+ margin: 0 auto;
687
+ width: 80%;
688
+ border-collapse: collapse;
689
+ }
690
+ #home-table, #home-table th, #home-table td {
691
+ border: 1px solid black;
692
+ }
693
+ #home-table td {
694
+ padding: 8px;
695
+ }
696
+ .current_page {
697
+ border-bottom: 1px solid blue;
698
+ }
699
+ .error-message {
700
+ background: red !important;
701
+ color: white;
702
+ border-radius: 15px;
703
+ font-weight: bold;
704
+ font-size: 1.8rem;
705
+ text-align: center;
706
+ padding: 1%;
707
+ margin: 16px auto;
708
+ }
709
+ .error-message:empty {
710
+ display: none;
711
+ }
712
+ </style>
713
+ </html>
714
+ '.shorten_html
715
+
716
+ File.open(File.join(tcs_dir,"log.html"), 'w') { |file| file.write(html) }
Binary file
@@ -4,7 +4,7 @@ module ViralSeq
4
4
  AMINO_ACID_LIST = ["A", "C", "D", "E", "F", "G", "H", "I", "K", "L", "M", "N", "P", "Q", "R", "S", "T", "V", "W", "Y", "*"]
5
5
 
6
6
  # R script to check if the required libraries are installed, if not, install the missing libraries
7
-
7
+
8
8
  R_SCRIPT_CHECK_PACKAGES = 'dir.create(path = Sys.getenv("R_LIBS_USER"), showWarnings = FALSE, recursive = TRUE);' +
9
9
  'packages <- c("ggplot2", "phangorn", "ape", "scales", "ggforce", "cowplot", "magrittr", "gridExtra");' +
10
10
  'install.packages(setdiff(packages, rownames(installed.packages())), lib = Sys.getenv("R_LIBS_USER"), repos = "https://cran.rstudio.com/")'
@@ -44,5 +44,7 @@ module ViralSeq
44
44
  }
45
45
  dev.off()'
46
46
 
47
+ DETECT_SEN = {0=>1.0, 1=>1.0, 2=>1.0, 3=>0.7076, 4=>0.6024, 5=>0.5218, 6=>0.4593, 7=>0.4096, 8=>0.3694, 9=>0.3363, 10=>0.3085, 11=>0.2849, 12=>0.2646, 13=>0.2471, 14=>0.2316, 15=>0.218, 16=>0.2059, 17=>0.1951, 18=>0.1853, 19=>0.1765, 20=>0.1684, 21=>0.1611, 22=>0.1544, 23=>0.1482, 24=>0.1425, 25=>0.1372, 26=>0.1323, 27=>0.1277, 28=>0.1234, 29=>0.1194, 30=>0.1157, 31=>0.1122, 32=>0.1089, 33=>0.1058, 34=>0.1028, 35=>0.1, 36=>0.0974, 37=>0.0949, 38=>0.0925, 39=>0.0903, 40=>0.0881, 41=>0.086, 42=>0.0841, 43=>0.0822, 44=>0.0804, 45=>0.0787, 46=>0.0771, 47=>0.0755, 48=>0.074, 49=>0.0725, 50=>0.0711, 51=>0.0698, 52=>0.0685, 53=>0.0672, 54=>0.066, 55=>0.0649, 56=>0.0638, 57=>0.0627, 58=>0.0616, 59=>0.0606, 60=>0.0596, 61=>0.0587, 62=>0.0578, 63=>0.0569, 64=>0.056, 65=>0.0552, 66=>0.0544, 67=>0.0536, 68=>0.0528, 69=>0.0521, 70=>0.0513, 71=>0.0506, 72=>0.0499, 73=>0.0493, 74=>0.0486, 75=>0.048, 76=>0.0474, 77=>0.0468, 78=>0.0462, 79=>0.0456, 80=>0.0451, 81=>0.0445, 82=>0.044, 83=>0.0435, 84=>0.043, 85=>0.0425, 86=>0.042, 87=>0.0415, 88=>0.0411, 89=>0.0406, 90=>0.0402, 91=>0.0397, 92=>0.0393, 93=>0.0389, 94=>0.0385, 95=>0.0381, 96=>0.0377, 97=>0.0373, 98=>0.0369, 99=>0.0366, 100=>0.0362, 101=>0.0359, 102=>0.0355, 103=>0.0352, 104=>0.0348, 105=>0.0345, 106=>0.0342, 107=>0.0339, 108=>0.0336, 109=>0.0333, 110=>0.033, 111=>0.0327, 112=>0.0324, 113=>0.0321, 114=>0.0318, 115=>0.0316, 116=>0.0313, 117=>0.031, 118=>0.0308, 119=>0.0305, 120=>0.0303, 121=>0.03, 122=>0.0298, 123=>0.0295, 124=>0.0293, 125=>0.0291, 126=>0.0289, 127=>0.0286, 128=>0.0284, 129=>0.0282, 130=>0.028, 131=>0.0278, 132=>0.0276, 133=>0.0274, 134=>0.0272, 135=>0.027, 136=>0.0268, 137=>0.0266, 138=>0.0264, 139=>0.0262, 140=>0.026, 141=>0.0258, 142=>0.0256, 143=>0.0255, 144=>0.0253, 145=>0.0251, 146=>0.0249, 147=>0.0248, 148=>0.0246, 149=>0.0245, 150=>0.0243, 151=>0.0241, 152=>0.024, 153=>0.0238, 154=>0.0237, 155=>0.0235, 156=>0.0234, 157=>0.0232, 158=>0.0231, 159=>0.0229, 160=>0.0228, 161=>0.0227, 162=>0.0225, 163=>0.0224, 164=>0.0222, 165=>0.0221, 166=>0.022, 167=>0.0218, 168=>0.0217, 169=>0.0216, 170=>0.0215, 171=>0.0213, 172=>0.0212, 173=>0.0211, 174=>0.021, 175=>0.0209, 176=>0.0207, 177=>0.0206, 178=>0.0205, 179=>0.0204, 180=>0.0203, 181=>0.0202, 182=>0.0201, 183=>0.02, 184=>0.0198, 185=>0.0197, 186=>0.0196, 187=>0.0195, 188=>0.0194, 189=>0.0193, 190=>0.0192, 191=>0.0191, 192=>0.019, 193=>0.0189, 194=>0.0188, 195=>0.0187, 196=>0.0186, 197=>0.0186, 198=>0.0185, 199=>0.0184, 200=>0.0183, 201=>0.0182, 202=>0.0181, 203=>0.018, 204=>0.0179, 205=>0.0178, 206=>0.0177, 207=>0.0177, 208=>0.0176, 209=>0.0175, 210=>0.0174, 211=>0.0173, 212=>0.0172, 213=>0.0172, 214=>0.0171, 215=>0.017, 216=>0.0169, 217=>0.0169, 218=>0.0168, 219=>0.0167, 220=>0.0166, 221=>0.0166, 222=>0.0165, 223=>0.0164, 224=>0.0163, 225=>0.0163, 226=>0.0162, 227=>0.0161, 228=>0.016, 229=>0.016, 230=>0.0159, 231=>0.0158, 232=>0.0158, 233=>0.0157, 234=>0.0156, 235=>0.0156, 236=>0.0155, 237=>0.0154, 238=>0.0154, 239=>0.0153, 240=>0.0153, 241=>0.0152, 242=>0.0151, 243=>0.0151, 244=>0.015, 245=>0.0149, 246=>0.0149, 247=>0.0148, 248=>0.0148, 249=>0.0147, 250=>0.0146, 251=>0.0146, 252=>0.0145, 253=>0.0145, 254=>0.0144, 255=>0.0144, 256=>0.0143, 257=>0.0143, 258=>0.0142, 259=>0.0141, 260=>0.0141, 261=>0.014, 262=>0.014, 263=>0.0139, 264=>0.0139, 265=>0.0138, 266=>0.0138, 267=>0.0137, 268=>0.0137, 269=>0.0136, 270=>0.0136, 271=>0.0135, 272=>0.0135, 273=>0.0134, 274=>0.0134, 275=>0.0133, 276=>0.0133, 277=>0.0132, 278=>0.0132, 279=>0.0131, 280=>0.0131, 281=>0.013, 282=>0.013, 283=>0.013, 284=>0.0129, 285=>0.0129, 286=>0.0128, 287=>0.0128, 288=>0.0127, 289=>0.0127, 290=>0.0126, 291=>0.0126, 292=>0.0126, 293=>0.0125, 294=>0.0125, 295=>0.0124, 296=>0.0124, 297=>0.0123, 298=>0.0123, 299=>0.0123, 300=>0.0122, 301=>0.0122, 302=>0.0121, 303=>0.0121, 304=>0.0121, 305=>0.012, 306=>0.012, 307=>0.0119, 308=>0.0119, 309=>0.0119, 310=>0.0118, 311=>0.0118, 312=>0.0118, 313=>0.0117, 314=>0.0117, 315=>0.0116, 316=>0.0116, 317=>0.0116, 318=>0.0115, 319=>0.0115, 320=>0.0115, 321=>0.0114, 322=>0.0114, 323=>0.0114, 324=>0.0113, 325=>0.0113, 326=>0.0113, 327=>0.0112, 328=>0.0112, 329=>0.0111, 330=>0.0111, 331=>0.0111, 332=>0.011, 333=>0.011, 334=>0.011, 335=>0.011, 336=>0.0109, 337=>0.0109, 338=>0.0109, 339=>0.0108, 340=>0.0108, 341=>0.0108, 342=>0.0107, 343=>0.0107, 344=>0.0107, 345=>0.0106, 346=>0.0106, 347=>0.0106, 348=>0.0105, 349=>0.0105, 350=>0.0105, 351=>0.0105, 352=>0.0104, 353=>0.0104, 354=>0.0104, 355=>0.0103, 356=>0.0103, 357=>0.0103, 358=>0.0103, 359=>0.0102, 360=>0.0102, 361=>0.0102, 362=>0.0101, 363=>0.0101, 364=>0.0101, 365=>0.0101, 366=>0.01, 367=>0.01, 368=>0.01, 369=>0.0099, 370=>0.0099, 371=>0.0099, 372=>0.0099, 373=>0.0098, 374=>0.0098, 375=>0.0098, 376=>0.0098, 377=>0.0097, 378=>0.0097, 379=>0.0097, 380=>0.0097, 381=>0.0096, 382=>0.0096, 383=>0.0096, 384=>0.0096, 385=>0.0095, 386=>0.0095, 387=>0.0095, 388=>0.0095, 389=>0.0094, 390=>0.0094, 391=>0.0094, 392=>0.0094, 393=>0.0093, 394=>0.0093, 395=>0.0093, 396=>0.0093, 397=>0.0092, 398=>0.0092, 399=>0.0092, 400=>0.0092, 401=>0.0092, 402=>0.0091, 403=>0.0091, 404=>0.0091, 405=>0.0091, 406=>0.009, 407=>0.009, 408=>0.009, 409=>0.009, 410=>0.009, 411=>0.0089, 412=>0.0089, 413=>0.0089, 414=>0.0089, 415=>0.0088, 416=>0.0088, 417=>0.0088, 418=>0.0088, 419=>0.0088, 420=>0.0087, 421=>0.0087, 422=>0.0087, 423=>0.0087, 424=>0.0087, 425=>0.0086, 426=>0.0086, 427=>0.0086, 428=>0.0086, 429=>0.0086, 430=>0.0085, 431=>0.0085, 432=>0.0085, 433=>0.0085, 434=>0.0085, 435=>0.0084, 436=>0.0084, 437=>0.0084, 438=>0.0084, 439=>0.0084, 440=>0.0083, 441=>0.0083, 442=>0.0083, 443=>0.0083, 444=>0.0083, 445=>0.0083, 446=>0.0082, 447=>0.0082, 448=>0.0082, 449=>0.0082, 450=>0.0082, 451=>0.0081, 452=>0.0081, 453=>0.0081, 454=>0.0081, 455=>0.0081, 456=>0.0081, 457=>0.008, 458=>0.008, 459=>0.008, 460=>0.008, 461=>0.008, 462=>0.008, 463=>0.0079, 464=>0.0079, 465=>0.0079, 466=>0.0079, 467=>0.0079, 468=>0.0079, 469=>0.0078, 470=>0.0078, 471=>0.0078, 472=>0.0078, 473=>0.0078, 474=>0.0078, 475=>0.0077, 476=>0.0077, 477=>0.0077, 478=>0.0077, 479=>0.0077, 480=>0.0077, 481=>0.0076, 482=>0.0076, 483=>0.0076, 484=>0.0076, 485=>0.0076, 486=>0.0076, 487=>0.0075, 488=>0.0075, 489=>0.0075, 490=>0.0075, 491=>0.0075, 492=>0.0075, 493=>0.0075, 494=>0.0074, 495=>0.0074, 496=>0.0074, 497=>0.0074, 498=>0.0074, 499=>0.0074, 500=>0.0074, 501=>0.0073, 502=>0.0073, 503=>0.0073, 504=>0.0073, 505=>0.0073, 506=>0.0073, 507=>0.0072, 508=>0.0072, 509=>0.0072, 510=>0.0072, 511=>0.0072, 512=>0.0072, 513=>0.0072, 514=>0.0072, 515=>0.0071, 516=>0.0071, 517=>0.0071, 518=>0.0071, 519=>0.0071, 520=>0.0071, 521=>0.0071, 522=>0.007, 523=>0.007, 524=>0.007, 525=>0.007, 526=>0.007, 527=>0.007, 528=>0.007, 529=>0.0069, 530=>0.0069, 531=>0.0069, 532=>0.0069, 533=>0.0069, 534=>0.0069, 535=>0.0069, 536=>0.0069, 537=>0.0068, 538=>0.0068, 539=>0.0068, 540=>0.0068, 541=>0.0068, 542=>0.0068, 543=>0.0068, 544=>0.0068, 545=>0.0067, 546=>0.0067, 547=>0.0067, 548=>0.0067, 549=>0.0067, 550=>0.0067, 551=>0.0067, 552=>0.0067, 553=>0.0066, 554=>0.0066, 555=>0.0066, 556=>0.0066, 557=>0.0066, 558=>0.0066, 559=>0.0066, 560=>0.0066, 561=>0.0066, 562=>0.0065, 563=>0.0065, 564=>0.0065, 565=>0.0065, 566=>0.0065, 567=>0.0065, 568=>0.0065, 569=>0.0065, 570=>0.0065, 571=>0.0064, 572=>0.0064, 573=>0.0064, 574=>0.0064, 575=>0.0064, 576=>0.0064, 577=>0.0064, 578=>0.0064, 579=>0.0064, 580=>0.0063, 581=>0.0063, 582=>0.0063, 583=>0.0063, 584=>0.0063, 585=>0.0063, 586=>0.0063, 587=>0.0063, 588=>0.0063, 589=>0.0062, 590=>0.0062, 591=>0.0062, 592=>0.0062, 593=>0.0062, 594=>0.0062, 595=>0.0062, 596=>0.0062, 597=>0.0062, 598=>0.0061, 599=>0.0061, 600=>0.0061, 601=>0.0061, 602=>0.0061, 603=>0.0061, 604=>0.0061, 605=>0.0061, 606=>0.0061, 607=>0.0061, 608=>0.006, 609=>0.006, 610=>0.006, 611=>0.006, 612=>0.006, 613=>0.006, 614=>0.006, 615=>0.006, 616=>0.006, 617=>0.006, 618=>0.006, 619=>0.0059, 620=>0.0059, 621=>0.0059, 622=>0.0059, 623=>0.0059, 624=>0.0059, 625=>0.0059, 626=>0.0059, 627=>0.0059, 628=>0.0059, 629=>0.0058, 630=>0.0058, 631=>0.0058, 632=>0.0058, 633=>0.0058, 634=>0.0058, 635=>0.0058, 636=>0.0058, 637=>0.0058, 638=>0.0058, 639=>0.0058, 640=>0.0057, 641=>0.0057, 642=>0.0057, 643=>0.0057, 644=>0.0057, 645=>0.0057, 646=>0.0057, 647=>0.0057, 648=>0.0057, 649=>0.0057, 650=>0.0057, 651=>0.0057, 652=>0.0056, 653=>0.0056, 654=>0.0056, 655=>0.0056, 656=>0.0056, 657=>0.0056, 658=>0.0056, 659=>0.0056, 660=>0.0056, 661=>0.0056, 662=>0.0056, 663=>0.0055, 664=>0.0055, 665=>0.0055, 666=>0.0055, 667=>0.0055, 668=>0.0055, 669=>0.0055, 670=>0.0055, 671=>0.0055, 672=>0.0055, 673=>0.0055, 674=>0.0055, 675=>0.0055, 676=>0.0054, 677=>0.0054, 678=>0.0054, 679=>0.0054, 680=>0.0054, 681=>0.0054, 682=>0.0054, 683=>0.0054, 684=>0.0054, 685=>0.0054, 686=>0.0054, 687=>0.0054, 688=>0.0053, 689=>0.0053, 690=>0.0053, 691=>0.0053, 692=>0.0053, 693=>0.0053, 694=>0.0053, 695=>0.0053, 696=>0.0053, 697=>0.0053, 698=>0.0053, 699=>0.0053, 700=>0.0053, 701=>0.0052, 702=>0.0052, 703=>0.0052, 704=>0.0052, 705=>0.0052, 706=>0.0052, 707=>0.0052, 708=>0.0052, 709=>0.0052, 710=>0.0052, 711=>0.0052, 712=>0.0052, 713=>0.0052, 714=>0.0052, 715=>0.0051, 716=>0.0051, 717=>0.0051, 718=>0.0051, 719=>0.0051, 720=>0.0051, 721=>0.0051, 722=>0.0051, 723=>0.0051, 724=>0.0051, 725=>0.0051, 726=>0.0051, 727=>0.0051, 728=>0.0051, 729=>0.005, 730=>0.005, 731=>0.005, 732=>0.005, 733=>0.005, 734=>0.005, 735=>0.005, 736=>0.005, 737=>0.005, 738=>0.005, 739=>0.005, 740=>0.005, 741=>0.005, 742=>0.005, 743=>0.005, 744=>0.0049, 745=>0.0049, 746=>0.0049, 747=>0.0049, 748=>0.0049, 749=>0.0049, 750=>0.0049, 751=>0.0049, 752=>0.0049, 753=>0.0049, 754=>0.0049, 755=>0.0049, 756=>0.0049, 757=>0.0049, 758=>0.0049, 759=>0.0048, 760=>0.0048, 761=>0.0048, 762=>0.0048, 763=>0.0048, 764=>0.0048, 765=>0.0048, 766=>0.0048, 767=>0.0048, 768=>0.0048, 769=>0.0048, 770=>0.0048, 771=>0.0048, 772=>0.0048, 773=>0.0048, 774=>0.0048, 775=>0.0047, 776=>0.0047, 777=>0.0047, 778=>0.0047, 779=>0.0047, 780=>0.0047, 781=>0.0047, 782=>0.0047, 783=>0.0047, 784=>0.0047, 785=>0.0047, 786=>0.0047, 787=>0.0047, 788=>0.0047, 789=>0.0047, 790=>0.0047, 791=>0.0047, 792=>0.0046, 793=>0.0046, 794=>0.0046, 795=>0.0046, 796=>0.0046, 797=>0.0046, 798=>0.0046, 799=>0.0046, 800=>0.0046, 801=>0.0046, 802=>0.0046, 803=>0.0046, 804=>0.0046, 805=>0.0046, 806=>0.0046, 807=>0.0046, 808=>0.0046, 809=>0.0045, 810=>0.0045, 811=>0.0045, 812=>0.0045, 813=>0.0045, 814=>0.0045, 815=>0.0045, 816=>0.0045, 817=>0.0045, 818=>0.0045, 819=>0.0045, 820=>0.0045, 821=>0.0045, 822=>0.0045, 823=>0.0045, 824=>0.0045, 825=>0.0045, 826=>0.0045, 827=>0.0045, 828=>0.0044, 829=>0.0044, 830=>0.0044, 831=>0.0044, 832=>0.0044, 833=>0.0044, 834=>0.0044, 835=>0.0044, 836=>0.0044, 837=>0.0044, 838=>0.0044, 839=>0.0044, 840=>0.0044, 841=>0.0044, 842=>0.0044, 843=>0.0044, 844=>0.0044, 845=>0.0044, 846=>0.0044, 847=>0.0043, 848=>0.0043, 849=>0.0043, 850=>0.0043, 851=>0.0043, 852=>0.0043, 853=>0.0043, 854=>0.0043, 855=>0.0043, 856=>0.0043, 857=>0.0043, 858=>0.0043, 859=>0.0043, 860=>0.0043, 861=>0.0043, 862=>0.0043, 863=>0.0043, 864=>0.0043, 865=>0.0043, 866=>0.0043, 867=>0.0042, 868=>0.0042, 869=>0.0042, 870=>0.0042, 871=>0.0042, 872=>0.0042, 873=>0.0042, 874=>0.0042, 875=>0.0042, 876=>0.0042, 877=>0.0042, 878=>0.0042, 879=>0.0042, 880=>0.0042, 881=>0.0042, 882=>0.0042, 883=>0.0042, 884=>0.0042, 885=>0.0042, 886=>0.0042, 887=>0.0042, 888=>0.0041, 889=>0.0041, 890=>0.0041, 891=>0.0041, 892=>0.0041, 893=>0.0041, 894=>0.0041, 895=>0.0041, 896=>0.0041, 897=>0.0041, 898=>0.0041, 899=>0.0041, 900=>0.0041, 901=>0.0041, 902=>0.0041, 903=>0.0041, 904=>0.0041, 905=>0.0041, 906=>0.0041, 907=>0.0041, 908=>0.0041, 909=>0.004, 910=>0.004, 911=>0.004, 912=>0.004, 913=>0.004, 914=>0.004, 915=>0.004, 916=>0.004, 917=>0.004, 918=>0.004, 919=>0.004, 920=>0.004, 921=>0.004, 922=>0.004, 923=>0.004, 924=>0.004, 925=>0.004, 926=>0.004, 927=>0.004, 928=>0.004, 929=>0.004, 930=>0.004, 931=>0.004, 932=>0.004, 933=>0.0039, 934=>0.0039, 935=>0.0039, 936=>0.0039, 937=>0.0039, 938=>0.0039, 939=>0.0039, 940=>0.0039, 941=>0.0039, 942=>0.0039, 943=>0.0039, 944=>0.0039, 945=>0.0039, 946=>0.0039, 947=>0.0039, 948=>0.0039, 949=>0.0039, 950=>0.0039, 951=>0.0039, 952=>0.0039, 953=>0.0039, 954=>0.0039, 955=>0.0039, 956=>0.0039, 957=>0.0038, 958=>0.0038, 959=>0.0038, 960=>0.0038, 961=>0.0038, 962=>0.0038, 963=>0.0038, 964=>0.0038, 965=>0.0038, 966=>0.0038, 967=>0.0038, 968=>0.0038, 969=>0.0038, 970=>0.0038, 971=>0.0038, 972=>0.0038, 973=>0.0038, 974=>0.0038, 975=>0.0038, 976=>0.0038, 977=>0.0038, 978=>0.0038, 979=>0.0038, 980=>0.0038, 981=>0.0038, 982=>0.0037, 983=>0.0037, 984=>0.0037, 985=>0.0037, 986=>0.0037, 987=>0.0037, 988=>0.0037, 989=>0.0037, 990=>0.0037, 991=>0.0037, 992=>0.0037, 993=>0.0037, 994=>0.0037, 995=>0.0037, 996=>0.0037, 997=>0.0037, 998=>0.0037, 999=>0.0037, 1000=>0.0037, 1001=>0.0037, 1002=>0.0037, 1003=>0.0037, 1004=>0.0037, 1005=>0.0037, 1006=>0.0037, 1007=>0.0037, 1008=>0.0037, 1009=>0.0036, 1010=>0.0036, 1011=>0.0036, 1012=>0.0036, 1013=>0.0036, 1014=>0.0036, 1015=>0.0036, 1016=>0.0036, 1017=>0.0036, 1018=>0.0036, 1019=>0.0036, 1020=>0.0036, 1021=>0.0036, 1022=>0.0036, 1023=>0.0036, 1024=>0.0036, 1025=>0.0036, 1026=>0.0036, 1027=>0.0036, 1028=>0.0036, 1029=>0.0036, 1030=>0.0036, 1031=>0.0036, 1032=>0.0036, 1033=>0.0036, 1034=>0.0036, 1035=>0.0036, 1036=>0.0036, 1037=>0.0036, 1038=>0.0035, 1039=>0.0035, 1040=>0.0035, 1041=>0.0035, 1042=>0.0035, 1043=>0.0035, 1044=>0.0035, 1045=>0.0035, 1046=>0.0035, 1047=>0.0035, 1048=>0.0035, 1049=>0.0035, 1050=>0.0035, 1051=>0.0035, 1052=>0.0035, 1053=>0.0035, 1054=>0.0035, 1055=>0.0035, 1056=>0.0035, 1057=>0.0035, 1058=>0.0035, 1059=>0.0035, 1060=>0.0035, 1061=>0.0035, 1062=>0.0035, 1063=>0.0035, 1064=>0.0035, 1065=>0.0035, 1066=>0.0035, 1067=>0.0035, 1068=>0.0034, 1069=>0.0034, 1070=>0.0034, 1071=>0.0034, 1072=>0.0034, 1073=>0.0034, 1074=>0.0034, 1075=>0.0034, 1076=>0.0034, 1077=>0.0034, 1078=>0.0034, 1079=>0.0034, 1080=>0.0034, 1081=>0.0034, 1082=>0.0034, 1083=>0.0034, 1084=>0.0034, 1085=>0.0034, 1086=>0.0034, 1087=>0.0034, 1088=>0.0034, 1089=>0.0034, 1090=>0.0034, 1091=>0.0034, 1092=>0.0034, 1093=>0.0034, 1094=>0.0034, 1095=>0.0034, 1096=>0.0034, 1097=>0.0034, 1098=>0.0034, 1099=>0.0034, 1100=>0.0033, 1101=>0.0033, 1102=>0.0033, 1103=>0.0033, 1104=>0.0033, 1105=>0.0033, 1106=>0.0033, 1107=>0.0033, 1108=>0.0033, 1109=>0.0033, 1110=>0.0033, 1111=>0.0033, 1112=>0.0033, 1113=>0.0033, 1114=>0.0033, 1115=>0.0033, 1116=>0.0033, 1117=>0.0033, 1118=>0.0033, 1119=>0.0033, 1120=>0.0033, 1121=>0.0033, 1122=>0.0033, 1123=>0.0033, 1124=>0.0033, 1125=>0.0033, 1126=>0.0033, 1127=>0.0033, 1128=>0.0033, 1129=>0.0033, 1130=>0.0033, 1131=>0.0033, 1132=>0.0033, 1133=>0.0033, 1134=>0.0032, 1135=>0.0032, 1136=>0.0032, 1137=>0.0032, 1138=>0.0032, 1139=>0.0032, 1140=>0.0032, 1141=>0.0032, 1142=>0.0032, 1143=>0.0032, 1144=>0.0032, 1145=>0.0032, 1146=>0.0032, 1147=>0.0032, 1148=>0.0032, 1149=>0.0032, 1150=>0.0032, 1151=>0.0032, 1152=>0.0032, 1153=>0.0032, 1154=>0.0032, 1155=>0.0032, 1156=>0.0032, 1157=>0.0032, 1158=>0.0032, 1159=>0.0032, 1160=>0.0032, 1161=>0.0032, 1162=>0.0032, 1163=>0.0032, 1164=>0.0032, 1165=>0.0032, 1166=>0.0032, 1167=>0.0032, 1168=>0.0032, 1169=>0.0032, 1170=>0.0031, 1171=>0.0031, 1172=>0.0031, 1173=>0.0031, 1174=>0.0031, 1175=>0.0031, 1176=>0.0031, 1177=>0.0031, 1178=>0.0031, 1179=>0.0031, 1180=>0.0031, 1181=>0.0031, 1182=>0.0031, 1183=>0.0031, 1184=>0.0031, 1185=>0.0031, 1186=>0.0031, 1187=>0.0031, 1188=>0.0031, 1189=>0.0031, 1190=>0.0031, 1191=>0.0031, 1192=>0.0031, 1193=>0.0031, 1194=>0.0031, 1195=>0.0031, 1196=>0.0031, 1197=>0.0031, 1198=>0.0031, 1199=>0.0031, 1200=>0.0031, 1201=>0.0031, 1202=>0.0031, 1203=>0.0031, 1204=>0.0031, 1205=>0.0031, 1206=>0.0031, 1207=>0.0031, 1208=>0.003, 1209=>0.003, 1210=>0.003, 1211=>0.003, 1212=>0.003, 1213=>0.003, 1214=>0.003, 1215=>0.003, 1216=>0.003, 1217=>0.003, 1218=>0.003, 1219=>0.003, 1220=>0.003, 1221=>0.003, 1222=>0.003, 1223=>0.003, 1224=>0.003, 1225=>0.003, 1226=>0.003, 1227=>0.003, 1228=>0.003, 1229=>0.003, 1230=>0.003, 1231=>0.003, 1232=>0.003, 1233=>0.003, 1234=>0.003, 1235=>0.003, 1236=>0.003, 1237=>0.003, 1238=>0.003, 1239=>0.003, 1240=>0.003, 1241=>0.003, 1242=>0.003, 1243=>0.003, 1244=>0.003, 1245=>0.003, 1246=>0.003, 1247=>0.003, 1248=>0.003, 1249=>0.0029, 1250=>0.0029, 1251=>0.0029, 1252=>0.0029, 1253=>0.0029, 1254=>0.0029, 1255=>0.0029, 1256=>0.0029, 1257=>0.0029, 1258=>0.0029, 1259=>0.0029, 1260=>0.0029, 1261=>0.0029, 1262=>0.0029, 1263=>0.0029, 1264=>0.0029, 1265=>0.0029, 1266=>0.0029, 1267=>0.0029, 1268=>0.0029, 1269=>0.0029, 1270=>0.0029, 1271=>0.0029, 1272=>0.0029, 1273=>0.0029, 1274=>0.0029, 1275=>0.0029, 1276=>0.0029, 1277=>0.0029, 1278=>0.0029, 1279=>0.0029, 1280=>0.0029, 1281=>0.0029, 1282=>0.0029, 1283=>0.0029, 1284=>0.0029, 1285=>0.0029, 1286=>0.0029, 1287=>0.0029, 1288=>0.0029, 1289=>0.0029, 1290=>0.0029, 1291=>0.0029, 1292=>0.0029, 1293=>0.0028, 1294=>0.0028, 1295=>0.0028, 1296=>0.0028, 1297=>0.0028, 1298=>0.0028, 1299=>0.0028, 1300=>0.0028, 1301=>0.0028, 1302=>0.0028, 1303=>0.0028, 1304=>0.0028, 1305=>0.0028, 1306=>0.0028, 1307=>0.0028, 1308=>0.0028, 1309=>0.0028, 1310=>0.0028, 1311=>0.0028, 1312=>0.0028, 1313=>0.0028, 1314=>0.0028, 1315=>0.0028, 1316=>0.0028, 1317=>0.0028, 1318=>0.0028, 1319=>0.0028, 1320=>0.0028, 1321=>0.0028, 1322=>0.0028, 1323=>0.0028, 1324=>0.0028, 1325=>0.0028, 1326=>0.0028, 1327=>0.0028, 1328=>0.0028, 1329=>0.0028, 1330=>0.0028, 1331=>0.0028, 1332=>0.0028, 1333=>0.0028, 1334=>0.0028, 1335=>0.0028, 1336=>0.0028, 1337=>0.0028, 1338=>0.0028, 1339=>0.0028, 1340=>0.0027, 1341=>0.0027, 1342=>0.0027, 1343=>0.0027, 1344=>0.0027, 1345=>0.0027, 1346=>0.0027, 1347=>0.0027, 1348=>0.0027, 1349=>0.0027, 1350=>0.0027, 1351=>0.0027, 1352=>0.0027, 1353=>0.0027, 1354=>0.0027, 1355=>0.0027, 1356=>0.0027, 1357=>0.0027, 1358=>0.0027, 1359=>0.0027, 1360=>0.0027, 1361=>0.0027, 1362=>0.0027, 1363=>0.0027, 1364=>0.0027, 1365=>0.0027, 1366=>0.0027, 1367=>0.0027, 1368=>0.0027, 1369=>0.0027, 1370=>0.0027, 1371=>0.0027, 1372=>0.0027, 1373=>0.0027, 1374=>0.0027, 1375=>0.0027, 1376=>0.0027, 1377=>0.0027, 1378=>0.0027, 1379=>0.0027, 1380=>0.0027, 1381=>0.0027, 1382=>0.0027, 1383=>0.0027, 1384=>0.0027, 1385=>0.0027, 1386=>0.0027, 1387=>0.0027, 1388=>0.0027, 1389=>0.0027, 1390=>0.0027, 1391=>0.0026, 1392=>0.0026, 1393=>0.0026, 1394=>0.0026, 1395=>0.0026, 1396=>0.0026, 1397=>0.0026, 1398=>0.0026, 1399=>0.0026, 1400=>0.0026, 1401=>0.0026, 1402=>0.0026, 1403=>0.0026, 1404=>0.0026, 1405=>0.0026, 1406=>0.0026, 1407=>0.0026, 1408=>0.0026, 1409=>0.0026, 1410=>0.0026, 1411=>0.0026, 1412=>0.0026, 1413=>0.0026, 1414=>0.0026, 1415=>0.0026, 1416=>0.0026, 1417=>0.0026, 1418=>0.0026, 1419=>0.0026, 1420=>0.0026, 1421=>0.0026, 1422=>0.0026, 1423=>0.0026, 1424=>0.0026, 1425=>0.0026, 1426=>0.0026, 1427=>0.0026, 1428=>0.0026, 1429=>0.0026, 1430=>0.0026, 1431=>0.0026, 1432=>0.0026, 1433=>0.0026, 1434=>0.0026, 1435=>0.0026, 1436=>0.0026, 1437=>0.0026, 1438=>0.0026, 1439=>0.0026, 1440=>0.0026, 1441=>0.0026, 1442=>0.0026, 1443=>0.0026, 1444=>0.0026, 1445=>0.0025, 1446=>0.0025, 1447=>0.0025, 1448=>0.0025, 1449=>0.0025, 1450=>0.0025, 1451=>0.0025, 1452=>0.0025, 1453=>0.0025, 1454=>0.0025, 1455=>0.0025, 1456=>0.0025, 1457=>0.0025, 1458=>0.0025, 1459=>0.0025, 1460=>0.0025, 1461=>0.0025, 1462=>0.0025, 1463=>0.0025, 1464=>0.0025, 1465=>0.0025, 1466=>0.0025, 1467=>0.0025, 1468=>0.0025, 1469=>0.0025, 1470=>0.0025, 1471=>0.0025, 1472=>0.0025, 1473=>0.0025, 1474=>0.0025, 1475=>0.0025, 1476=>0.0025, 1477=>0.0025, 1478=>0.0025, 1479=>0.0025, 1480=>0.0025, 1481=>0.0025, 1482=>0.0025, 1483=>0.0025, 1484=>0.0025, 1485=>0.0025, 1486=>0.0025, 1487=>0.0025, 1488=>0.0025, 1489=>0.0025, 1490=>0.0025, 1491=>0.0025, 1492=>0.0025, 1493=>0.0025, 1494=>0.0025, 1495=>0.0025, 1496=>0.0025, 1497=>0.0025, 1498=>0.0025, 1499=>0.0025, 1500=>0.0025, 1501=>0.0025, 1502=>0.0025, 1503=>0.0025, 1504=>0.0024, 1505=>0.0024, 1506=>0.0024, 1507=>0.0024, 1508=>0.0024, 1509=>0.0024, 1510=>0.0024, 1511=>0.0024, 1512=>0.0024, 1513=>0.0024, 1514=>0.0024, 1515=>0.0024, 1516=>0.0024, 1517=>0.0024, 1518=>0.0024, 1519=>0.0024, 1520=>0.0024, 1521=>0.0024, 1522=>0.0024, 1523=>0.0024, 1524=>0.0024, 1525=>0.0024, 1526=>0.0024, 1527=>0.0024, 1528=>0.0024, 1529=>0.0024, 1530=>0.0024, 1531=>0.0024, 1532=>0.0024, 1533=>0.0024, 1534=>0.0024, 1535=>0.0024, 1536=>0.0024, 1537=>0.0024, 1538=>0.0024, 1539=>0.0024, 1540=>0.0024, 1541=>0.0024, 1542=>0.0024, 1543=>0.0024, 1544=>0.0024, 1545=>0.0024, 1546=>0.0024, 1547=>0.0024, 1548=>0.0024, 1549=>0.0024, 1550=>0.0024, 1551=>0.0024, 1552=>0.0024, 1553=>0.0024, 1554=>0.0024, 1555=>0.0024, 1556=>0.0024, 1557=>0.0024, 1558=>0.0024, 1559=>0.0024, 1560=>0.0024, 1561=>0.0024, 1562=>0.0024, 1563=>0.0024, 1564=>0.0024, 1565=>0.0024, 1566=>0.0024, 1567=>0.0024, 1568=>0.0023, 1569=>0.0023, 1570=>0.0023, 1571=>0.0023, 1572=>0.0023, 1573=>0.0023, 1574=>0.0023, 1575=>0.0023, 1576=>0.0023, 1577=>0.0023, 1578=>0.0023, 1579=>0.0023, 1580=>0.0023, 1581=>0.0023, 1582=>0.0023, 1583=>0.0023, 1584=>0.0023, 1585=>0.0023, 1586=>0.0023, 1587=>0.0023, 1588=>0.0023, 1589=>0.0023, 1590=>0.0023, 1591=>0.0023, 1592=>0.0023, 1593=>0.0023, 1594=>0.0023, 1595=>0.0023, 1596=>0.0023, 1597=>0.0023, 1598=>0.0023, 1599=>0.0023, 1600=>0.0023, 1601=>0.0023, 1602=>0.0023, 1603=>0.0023, 1604=>0.0023, 1605=>0.0023, 1606=>0.0023, 1607=>0.0023, 1608=>0.0023, 1609=>0.0023, 1610=>0.0023, 1611=>0.0023, 1612=>0.0023, 1613=>0.0023, 1614=>0.0023, 1615=>0.0023, 1616=>0.0023, 1617=>0.0023, 1618=>0.0023, 1619=>0.0023, 1620=>0.0023, 1621=>0.0023, 1622=>0.0023, 1623=>0.0023, 1624=>0.0023, 1625=>0.0023, 1626=>0.0023, 1627=>0.0023, 1628=>0.0023, 1629=>0.0023, 1630=>0.0023, 1631=>0.0023, 1632=>0.0023, 1633=>0.0023, 1634=>0.0023, 1635=>0.0023, 1636=>0.0023, 1637=>0.0023, 1638=>0.0022, 1639=>0.0022, 1640=>0.0022, 1641=>0.0022, 1642=>0.0022, 1643=>0.0022, 1644=>0.0022, 1645=>0.0022, 1646=>0.0022, 1647=>0.0022, 1648=>0.0022, 1649=>0.0022, 1650=>0.0022, 1651=>0.0022, 1652=>0.0022, 1653=>0.0022, 1654=>0.0022, 1655=>0.0022, 1656=>0.0022, 1657=>0.0022, 1658=>0.0022, 1659=>0.0022, 1660=>0.0022, 1661=>0.0022, 1662=>0.0022, 1663=>0.0022, 1664=>0.0022, 1665=>0.0022, 1666=>0.0022, 1667=>0.0022, 1668=>0.0022, 1669=>0.0022, 1670=>0.0022, 1671=>0.0022, 1672=>0.0022, 1673=>0.0022, 1674=>0.0022, 1675=>0.0022, 1676=>0.0022, 1677=>0.0022, 1678=>0.0022, 1679=>0.0022, 1680=>0.0022, 1681=>0.0022, 1682=>0.0022, 1683=>0.0022, 1684=>0.0022, 1685=>0.0022, 1686=>0.0022, 1687=>0.0022, 1688=>0.0022, 1689=>0.0022, 1690=>0.0022, 1691=>0.0022, 1692=>0.0022, 1693=>0.0022, 1694=>0.0022, 1695=>0.0022, 1696=>0.0022, 1697=>0.0022, 1698=>0.0022, 1699=>0.0022, 1700=>0.0022, 1701=>0.0022, 1702=>0.0022, 1703=>0.0022, 1704=>0.0022, 1705=>0.0022, 1706=>0.0022, 1707=>0.0022, 1708=>0.0022, 1709=>0.0022, 1710=>0.0022, 1711=>0.0022, 1712=>0.0022, 1713=>0.0022, 1714=>0.0021, 1715=>0.0021, 1716=>0.0021, 1717=>0.0021, 1718=>0.0021, 1719=>0.0021, 1720=>0.0021, 1721=>0.0021, 1722=>0.0021, 1723=>0.0021, 1724=>0.0021, 1725=>0.0021, 1726=>0.0021, 1727=>0.0021, 1728=>0.0021, 1729=>0.0021, 1730=>0.0021, 1731=>0.0021, 1732=>0.0021, 1733=>0.0021, 1734=>0.0021, 1735=>0.0021, 1736=>0.0021, 1737=>0.0021, 1738=>0.0021, 1739=>0.0021, 1740=>0.0021, 1741=>0.0021, 1742=>0.0021, 1743=>0.0021, 1744=>0.0021, 1745=>0.0021, 1746=>0.0021, 1747=>0.0021, 1748=>0.0021, 1749=>0.0021, 1750=>0.0021, 1751=>0.0021, 1752=>0.0021, 1753=>0.0021, 1754=>0.0021, 1755=>0.0021, 1756=>0.0021, 1757=>0.0021, 1758=>0.0021, 1759=>0.0021, 1760=>0.0021, 1761=>0.0021, 1762=>0.0021, 1763=>0.0021, 1764=>0.0021, 1765=>0.0021, 1766=>0.0021, 1767=>0.0021, 1768=>0.0021, 1769=>0.0021, 1770=>0.0021, 1771=>0.0021, 1772=>0.0021, 1773=>0.0021, 1774=>0.0021, 1775=>0.0021, 1776=>0.0021, 1777=>0.0021, 1778=>0.0021, 1779=>0.0021, 1780=>0.0021, 1781=>0.0021, 1782=>0.0021, 1783=>0.0021, 1784=>0.0021, 1785=>0.0021, 1786=>0.0021, 1787=>0.0021, 1788=>0.0021, 1789=>0.0021, 1790=>0.0021, 1791=>0.0021, 1792=>0.0021, 1793=>0.0021, 1794=>0.0021, 1795=>0.0021, 1796=>0.0021, 1797=>0.0021, 1798=>0.002, 1799=>0.002, 1800=>0.002, 1801=>0.002, 1802=>0.002, 1803=>0.002, 1804=>0.002, 1805=>0.002, 1806=>0.002, 1807=>0.002, 1808=>0.002, 1809=>0.002, 1810=>0.002, 1811=>0.002, 1812=>0.002, 1813=>0.002, 1814=>0.002, 1815=>0.002, 1816=>0.002, 1817=>0.002, 1818=>0.002, 1819=>0.002, 1820=>0.002, 1821=>0.002, 1822=>0.002, 1823=>0.002, 1824=>0.002, 1825=>0.002, 1826=>0.002, 1827=>0.002, 1828=>0.002, 1829=>0.002, 1830=>0.002, 1831=>0.002, 1832=>0.002, 1833=>0.002, 1834=>0.002, 1835=>0.002, 1836=>0.002, 1837=>0.002, 1838=>0.002, 1839=>0.002, 1840=>0.002, 1841=>0.002, 1842=>0.002, 1843=>0.002, 1844=>0.002, 1845=>0.002, 1846=>0.002, 1847=>0.002, 1848=>0.002, 1849=>0.002, 1850=>0.002, 1851=>0.002, 1852=>0.002, 1853=>0.002, 1854=>0.002, 1855=>0.002, 1856=>0.002, 1857=>0.002, 1858=>0.002, 1859=>0.002, 1860=>0.002, 1861=>0.002, 1862=>0.002, 1863=>0.002, 1864=>0.002, 1865=>0.002, 1866=>0.002, 1867=>0.002, 1868=>0.002, 1869=>0.002, 1870=>0.002, 1871=>0.002, 1872=>0.002, 1873=>0.002, 1874=>0.002, 1875=>0.002, 1876=>0.002, 1877=>0.002, 1878=>0.002, 1879=>0.002, 1880=>0.002, 1881=>0.002, 1882=>0.002, 1883=>0.002, 1884=>0.002, 1885=>0.002, 1886=>0.002, 1887=>0.002, 1888=>0.002, 1889=>0.002, 1890=>0.0019, 1891=>0.0019, 1892=>0.0019, 1893=>0.0019, 1894=>0.0019, 1895=>0.0019, 1896=>0.0019, 1897=>0.0019, 1898=>0.0019, 1899=>0.0019, 1900=>0.0019, 1901=>0.0019, 1902=>0.0019, 1903=>0.0019, 1904=>0.0019, 1905=>0.0019, 1906=>0.0019, 1907=>0.0019, 1908=>0.0019, 1909=>0.0019, 1910=>0.0019, 1911=>0.0019, 1912=>0.0019, 1913=>0.0019, 1914=>0.0019, 1915=>0.0019, 1916=>0.0019, 1917=>0.0019, 1918=>0.0019, 1919=>0.0019, 1920=>0.0019, 1921=>0.0019, 1922=>0.0019, 1923=>0.0019, 1924=>0.0019, 1925=>0.0019, 1926=>0.0019, 1927=>0.0019, 1928=>0.0019, 1929=>0.0019, 1930=>0.0019, 1931=>0.0019, 1932=>0.0019, 1933=>0.0019, 1934=>0.0019, 1935=>0.0019, 1936=>0.0019, 1937=>0.0019, 1938=>0.0019, 1939=>0.0019, 1940=>0.0019, 1941=>0.0019, 1942=>0.0019, 1943=>0.0019, 1944=>0.0019, 1945=>0.0019, 1946=>0.0019, 1947=>0.0019, 1948=>0.0019, 1949=>0.0019, 1950=>0.0019, 1951=>0.0019, 1952=>0.0019, 1953=>0.0019, 1954=>0.0019, 1955=>0.0019, 1956=>0.0019, 1957=>0.0019, 1958=>0.0019, 1959=>0.0019, 1960=>0.0019, 1961=>0.0019, 1962=>0.0019, 1963=>0.0019, 1964=>0.0019, 1965=>0.0019, 1966=>0.0019, 1967=>0.0019, 1968=>0.0019, 1969=>0.0019, 1970=>0.0019, 1971=>0.0019, 1972=>0.0019, 1973=>0.0019, 1974=>0.0019, 1975=>0.0019, 1976=>0.0019, 1977=>0.0019, 1978=>0.0019, 1979=>0.0019, 1980=>0.0019, 1981=>0.0019, 1982=>0.0019, 1983=>0.0019, 1984=>0.0019, 1985=>0.0019, 1986=>0.0019, 1987=>0.0019, 1988=>0.0019, 1989=>0.0019, 1990=>0.0019, 1991=>0.0019, 1992=>0.0019, 1993=>0.0018, 1994=>0.0018, 1995=>0.0018, 1996=>0.0018, 1997=>0.0018, 1998=>0.0018, 1999=>0.0018, 2000=>0.0018, 2001=>0.0018, 2002=>0.0018, 2003=>0.0018, 2004=>0.0018, 2005=>0.0018, 2006=>0.0018, 2007=>0.0018, 2008=>0.0018, 2009=>0.0018, 2010=>0.0018, 2011=>0.0018, 2012=>0.0018, 2013=>0.0018, 2014=>0.0018, 2015=>0.0018, 2016=>0.0018, 2017=>0.0018, 2018=>0.0018, 2019=>0.0018, 2020=>0.0018, 2021=>0.0018, 2022=>0.0018, 2023=>0.0018, 2024=>0.0018, 2025=>0.0018, 2026=>0.0018, 2027=>0.0018, 2028=>0.0018, 2029=>0.0018, 2030=>0.0018, 2031=>0.0018, 2032=>0.0018, 2033=>0.0018, 2034=>0.0018, 2035=>0.0018, 2036=>0.0018, 2037=>0.0018, 2038=>0.0018, 2039=>0.0018, 2040=>0.0018, 2041=>0.0018, 2042=>0.0018, 2043=>0.0018, 2044=>0.0018, 2045=>0.0018, 2046=>0.0018, 2047=>0.0018, 2048=>0.0018, 2049=>0.0018, 2050=>0.0018, 2051=>0.0018, 2052=>0.0018, 2053=>0.0018, 2054=>0.0018, 2055=>0.0018, 2056=>0.0018, 2057=>0.0018, 2058=>0.0018, 2059=>0.0018, 2060=>0.0018, 2061=>0.0018, 2062=>0.0018, 2063=>0.0018, 2064=>0.0018, 2065=>0.0018, 2066=>0.0018, 2067=>0.0018, 2068=>0.0018, 2069=>0.0018, 2070=>0.0018, 2071=>0.0018, 2072=>0.0018, 2073=>0.0018, 2074=>0.0018, 2075=>0.0018, 2076=>0.0018, 2077=>0.0018, 2078=>0.0018, 2079=>0.0018, 2080=>0.0018, 2081=>0.0018, 2082=>0.0018, 2083=>0.0018, 2084=>0.0018, 2085=>0.0018, 2086=>0.0018, 2087=>0.0018, 2088=>0.0018, 2089=>0.0018, 2090=>0.0018, 2091=>0.0018, 2092=>0.0018, 2093=>0.0018, 2094=>0.0018, 2095=>0.0018, 2096=>0.0018, 2097=>0.0018, 2098=>0.0018, 2099=>0.0018, 2100=>0.0018, 2101=>0.0018, 2102=>0.0018, 2103=>0.0018, 2104=>0.0018, 2105=>0.0018, 2106=>0.0018, 2107=>0.0017, 2108=>0.0017, 2109=>0.0017, 2110=>0.0017, 2111=>0.0017, 2112=>0.0017, 2113=>0.0017, 2114=>0.0017, 2115=>0.0017, 2116=>0.0017, 2117=>0.0017, 2118=>0.0017, 2119=>0.0017, 2120=>0.0017, 2121=>0.0017, 2122=>0.0017, 2123=>0.0017, 2124=>0.0017, 2125=>0.0017, 2126=>0.0017, 2127=>0.0017, 2128=>0.0017, 2129=>0.0017, 2130=>0.0017, 2131=>0.0017, 2132=>0.0017, 2133=>0.0017, 2134=>0.0017, 2135=>0.0017, 2136=>0.0017, 2137=>0.0017, 2138=>0.0017, 2139=>0.0017, 2140=>0.0017, 2141=>0.0017, 2142=>0.0017, 2143=>0.0017, 2144=>0.0017, 2145=>0.0017, 2146=>0.0017, 2147=>0.0017, 2148=>0.0017, 2149=>0.0017, 2150=>0.0017, 2151=>0.0017, 2152=>0.0017, 2153=>0.0017, 2154=>0.0017, 2155=>0.0017, 2156=>0.0017, 2157=>0.0017, 2158=>0.0017, 2159=>0.0017, 2160=>0.0017, 2161=>0.0017, 2162=>0.0017, 2163=>0.0017, 2164=>0.0017, 2165=>0.0017, 2166=>0.0017, 2167=>0.0017, 2168=>0.0017, 2169=>0.0017, 2170=>0.0017, 2171=>0.0017, 2172=>0.0017, 2173=>0.0017, 2174=>0.0017, 2175=>0.0017, 2176=>0.0017, 2177=>0.0017, 2178=>0.0017, 2179=>0.0017, 2180=>0.0017, 2181=>0.0017, 2182=>0.0017, 2183=>0.0017, 2184=>0.0017, 2185=>0.0017, 2186=>0.0017, 2187=>0.0017, 2188=>0.0017, 2189=>0.0017, 2190=>0.0017, 2191=>0.0017, 2192=>0.0017, 2193=>0.0017, 2194=>0.0017, 2195=>0.0017, 2196=>0.0017, 2197=>0.0017, 2198=>0.0017, 2199=>0.0017, 2200=>0.0017, 2201=>0.0017, 2202=>0.0017, 2203=>0.0017, 2204=>0.0017, 2205=>0.0017, 2206=>0.0017, 2207=>0.0017, 2208=>0.0017, 2209=>0.0017, 2210=>0.0017, 2211=>0.0017, 2212=>0.0017, 2213=>0.0017, 2214=>0.0017, 2215=>0.0017, 2216=>0.0017, 2217=>0.0017, 2218=>0.0017, 2219=>0.0017, 2220=>0.0017, 2221=>0.0017, 2222=>0.0017, 2223=>0.0017, 2224=>0.0017, 2225=>0.0017, 2226=>0.0017, 2227=>0.0017, 2228=>0.0017, 2229=>0.0017, 2230=>0.0017, 2231=>0.0017, 2232=>0.0017, 2233=>0.0017, 2234=>0.0016, 2235=>0.0016, 2236=>0.0016, 2237=>0.0016, 2238=>0.0016, 2239=>0.0016, 2240=>0.0016, 2241=>0.0016, 2242=>0.0016, 2243=>0.0016, 2244=>0.0016, 2245=>0.0016, 2246=>0.0016, 2247=>0.0016, 2248=>0.0016, 2249=>0.0016, 2250=>0.0016, 2251=>0.0016, 2252=>0.0016, 2253=>0.0016, 2254=>0.0016, 2255=>0.0016, 2256=>0.0016, 2257=>0.0016, 2258=>0.0016, 2259=>0.0016, 2260=>0.0016, 2261=>0.0016, 2262=>0.0016, 2263=>0.0016, 2264=>0.0016, 2265=>0.0016, 2266=>0.0016, 2267=>0.0016, 2268=>0.0016, 2269=>0.0016, 2270=>0.0016, 2271=>0.0016, 2272=>0.0016, 2273=>0.0016, 2274=>0.0016, 2275=>0.0016, 2276=>0.0016, 2277=>0.0016, 2278=>0.0016, 2279=>0.0016, 2280=>0.0016, 2281=>0.0016, 2282=>0.0016, 2283=>0.0016, 2284=>0.0016, 2285=>0.0016, 2286=>0.0016, 2287=>0.0016, 2288=>0.0016, 2289=>0.0016, 2290=>0.0016, 2291=>0.0016, 2292=>0.0016, 2293=>0.0016, 2294=>0.0016, 2295=>0.0016, 2296=>0.0016, 2297=>0.0016, 2298=>0.0016, 2299=>0.0016, 2300=>0.0016, 2301=>0.0016, 2302=>0.0016, 2303=>0.0016, 2304=>0.0016, 2305=>0.0016, 2306=>0.0016, 2307=>0.0016, 2308=>0.0016, 2309=>0.0016, 2310=>0.0016, 2311=>0.0016, 2312=>0.0016, 2313=>0.0016, 2314=>0.0016, 2315=>0.0016, 2316=>0.0016, 2317=>0.0016, 2318=>0.0016, 2319=>0.0016, 2320=>0.0016, 2321=>0.0016, 2322=>0.0016, 2323=>0.0016, 2324=>0.0016, 2325=>0.0016, 2326=>0.0016, 2327=>0.0016, 2328=>0.0016, 2329=>0.0016, 2330=>0.0016, 2331=>0.0016, 2332=>0.0016, 2333=>0.0016, 2334=>0.0016, 2335=>0.0016, 2336=>0.0016, 2337=>0.0016, 2338=>0.0016, 2339=>0.0016, 2340=>0.0016, 2341=>0.0016, 2342=>0.0016, 2343=>0.0016, 2344=>0.0016, 2345=>0.0016, 2346=>0.0016, 2347=>0.0016, 2348=>0.0016, 2349=>0.0016, 2350=>0.0016, 2351=>0.0016, 2352=>0.0016, 2353=>0.0016, 2354=>0.0016, 2355=>0.0016, 2356=>0.0016, 2357=>0.0016, 2358=>0.0016, 2359=>0.0016, 2360=>0.0016, 2361=>0.0016, 2362=>0.0016, 2363=>0.0016, 2364=>0.0016, 2365=>0.0016, 2366=>0.0016, 2367=>0.0016, 2368=>0.0016, 2369=>0.0016, 2370=>0.0016, 2371=>0.0016, 2372=>0.0016, 2373=>0.0016, 2374=>0.0016, 2375=>0.0016, 2376=>0.0016, 2377=>0.0016, 2378=>0.0016, 2379=>0.0015, 2380=>0.0015, 2381=>0.0015, 2382=>0.0015, 2383=>0.0015, 2384=>0.0015, 2385=>0.0015, 2386=>0.0015, 2387=>0.0015, 2388=>0.0015, 2389=>0.0015, 2390=>0.0015, 2391=>0.0015, 2392=>0.0015, 2393=>0.0015, 2394=>0.0015, 2395=>0.0015, 2396=>0.0015, 2397=>0.0015, 2398=>0.0015, 2399=>0.0015, 2400=>0.0015, 2401=>0.0015, 2402=>0.0015, 2403=>0.0015, 2404=>0.0015, 2405=>0.0015, 2406=>0.0015, 2407=>0.0015, 2408=>0.0015, 2409=>0.0015, 2410=>0.0015, 2411=>0.0015, 2412=>0.0015, 2413=>0.0015, 2414=>0.0015, 2415=>0.0015, 2416=>0.0015, 2417=>0.0015, 2418=>0.0015, 2419=>0.0015, 2420=>0.0015, 2421=>0.0015, 2422=>0.0015, 2423=>0.0015, 2424=>0.0015, 2425=>0.0015, 2426=>0.0015, 2427=>0.0015, 2428=>0.0015, 2429=>0.0015, 2430=>0.0015, 2431=>0.0015, 2432=>0.0015, 2433=>0.0015, 2434=>0.0015, 2435=>0.0015, 2436=>0.0015, 2437=>0.0015, 2438=>0.0015, 2439=>0.0015, 2440=>0.0015, 2441=>0.0015, 2442=>0.0015, 2443=>0.0015, 2444=>0.0015, 2445=>0.0015, 2446=>0.0015, 2447=>0.0015, 2448=>0.0015, 2449=>0.0015, 2450=>0.0015, 2451=>0.0015, 2452=>0.0015, 2453=>0.0015, 2454=>0.0015, 2455=>0.0015, 2456=>0.0015, 2457=>0.0015, 2458=>0.0015, 2459=>0.0015, 2460=>0.0015, 2461=>0.0015, 2462=>0.0015, 2463=>0.0015, 2464=>0.0015, 2465=>0.0015, 2466=>0.0015, 2467=>0.0015, 2468=>0.0015, 2469=>0.0015, 2470=>0.0015, 2471=>0.0015, 2472=>0.0015, 2473=>0.0015, 2474=>0.0015, 2475=>0.0015, 2476=>0.0015, 2477=>0.0015, 2478=>0.0015, 2479=>0.0015, 2480=>0.0015, 2481=>0.0015, 2482=>0.0015, 2483=>0.0015, 2484=>0.0015, 2485=>0.0015, 2486=>0.0015, 2487=>0.0015, 2488=>0.0015, 2489=>0.0015, 2490=>0.0015, 2491=>0.0015, 2492=>0.0015, 2493=>0.0015, 2494=>0.0015, 2495=>0.0015, 2496=>0.0015, 2497=>0.0015, 2498=>0.0015, 2499=>0.0015, 2500=>0.0015, 2501=>0.0015, 2502=>0.0015, 2503=>0.0015, 2504=>0.0015, 2505=>0.0015, 2506=>0.0015, 2507=>0.0015, 2508=>0.0015, 2509=>0.0015, 2510=>0.0015, 2511=>0.0015, 2512=>0.0015, 2513=>0.0015, 2514=>0.0015, 2515=>0.0015, 2516=>0.0015, 2517=>0.0015, 2518=>0.0015, 2519=>0.0015, 2520=>0.0015, 2521=>0.0015, 2522=>0.0015, 2523=>0.0015, 2524=>0.0015, 2525=>0.0015, 2526=>0.0015, 2527=>0.0015, 2528=>0.0015, 2529=>0.0015, 2530=>0.0015, 2531=>0.0015, 2532=>0.0015, 2533=>0.0015, 2534=>0.0015, 2535=>0.0015, 2536=>0.0015, 2537=>0.0015, 2538=>0.0015, 2539=>0.0015, 2540=>0.0015, 2541=>0.0015, 2542=>0.0015, 2543=>0.0014, 2544=>0.0014, 2545=>0.0014, 2546=>0.0014, 2547=>0.0014, 2548=>0.0014, 2549=>0.0014, 2550=>0.0014, 2551=>0.0014, 2552=>0.0014, 2553=>0.0014, 2554=>0.0014, 2555=>0.0014, 2556=>0.0014, 2557=>0.0014, 2558=>0.0014, 2559=>0.0014, 2560=>0.0014, 2561=>0.0014, 2562=>0.0014, 2563=>0.0014, 2564=>0.0014, 2565=>0.0014, 2566=>0.0014, 2567=>0.0014, 2568=>0.0014, 2569=>0.0014, 2570=>0.0014, 2571=>0.0014, 2572=>0.0014, 2573=>0.0014, 2574=>0.0014, 2575=>0.0014, 2576=>0.0014, 2577=>0.0014, 2578=>0.0014, 2579=>0.0014, 2580=>0.0014, 2581=>0.0014, 2582=>0.0014, 2583=>0.0014, 2584=>0.0014, 2585=>0.0014, 2586=>0.0014, 2587=>0.0014, 2588=>0.0014, 2589=>0.0014, 2590=>0.0014, 2591=>0.0014, 2592=>0.0014, 2593=>0.0014, 2594=>0.0014, 2595=>0.0014, 2596=>0.0014, 2597=>0.0014, 2598=>0.0014, 2599=>0.0014, 2600=>0.0014, 2601=>0.0014, 2602=>0.0014, 2603=>0.0014, 2604=>0.0014, 2605=>0.0014, 2606=>0.0014, 2607=>0.0014, 2608=>0.0014, 2609=>0.0014, 2610=>0.0014, 2611=>0.0014, 2612=>0.0014, 2613=>0.0014, 2614=>0.0014, 2615=>0.0014, 2616=>0.0014, 2617=>0.0014, 2618=>0.0014, 2619=>0.0014, 2620=>0.0014, 2621=>0.0014, 2622=>0.0014, 2623=>0.0014, 2624=>0.0014, 2625=>0.0014, 2626=>0.0014, 2627=>0.0014, 2628=>0.0014, 2629=>0.0014, 2630=>0.0014, 2631=>0.0014, 2632=>0.0014, 2633=>0.0014, 2634=>0.0014, 2635=>0.0014, 2636=>0.0014, 2637=>0.0014, 2638=>0.0014, 2639=>0.0014, 2640=>0.0014, 2641=>0.0014, 2642=>0.0014, 2643=>0.0014, 2644=>0.0014, 2645=>0.0014, 2646=>0.0014, 2647=>0.0014, 2648=>0.0014, 2649=>0.0014, 2650=>0.0014, 2651=>0.0014, 2652=>0.0014, 2653=>0.0014, 2654=>0.0014, 2655=>0.0014, 2656=>0.0014, 2657=>0.0014, 2658=>0.0014, 2659=>0.0014, 2660=>0.0014, 2661=>0.0014, 2662=>0.0014, 2663=>0.0014, 2664=>0.0014, 2665=>0.0014, 2666=>0.0014, 2667=>0.0014, 2668=>0.0014, 2669=>0.0014, 2670=>0.0014, 2671=>0.0014, 2672=>0.0014, 2673=>0.0014, 2674=>0.0014, 2675=>0.0014, 2676=>0.0014, 2677=>0.0014, 2678=>0.0014, 2679=>0.0014, 2680=>0.0014, 2681=>0.0014, 2682=>0.0014, 2683=>0.0014, 2684=>0.0014, 2685=>0.0014, 2686=>0.0014, 2687=>0.0014, 2688=>0.0014, 2689=>0.0014, 2690=>0.0014, 2691=>0.0014, 2692=>0.0014, 2693=>0.0014, 2694=>0.0014, 2695=>0.0014, 2696=>0.0014, 2697=>0.0014, 2698=>0.0014, 2699=>0.0014, 2700=>0.0014, 2701=>0.0014, 2702=>0.0014, 2703=>0.0014, 2704=>0.0014, 2705=>0.0014, 2706=>0.0014, 2707=>0.0014, 2708=>0.0014, 2709=>0.0014, 2710=>0.0014, 2711=>0.0014, 2712=>0.0014, 2713=>0.0014, 2714=>0.0014, 2715=>0.0014, 2716=>0.0014, 2717=>0.0014, 2718=>0.0014, 2719=>0.0014, 2720=>0.0014, 2721=>0.0014, 2722=>0.0014, 2723=>0.0014, 2724=>0.0014, 2725=>0.0014, 2726=>0.0014, 2727=>0.0014, 2728=>0.0014, 2729=>0.0014, 2730=>0.0014, 2731=>0.0013, 2732=>0.0013, 2733=>0.0013, 2734=>0.0013, 2735=>0.0013, 2736=>0.0013, 2737=>0.0013, 2738=>0.0013, 2739=>0.0013, 2740=>0.0013, 2741=>0.0013, 2742=>0.0013, 2743=>0.0013, 2744=>0.0013, 2745=>0.0013, 2746=>0.0013, 2747=>0.0013, 2748=>0.0013, 2749=>0.0013, 2750=>0.0013, 2751=>0.0013, 2752=>0.0013, 2753=>0.0013, 2754=>0.0013, 2755=>0.0013, 2756=>0.0013, 2757=>0.0013, 2758=>0.0013, 2759=>0.0013, 2760=>0.0013, 2761=>0.0013, 2762=>0.0013, 2763=>0.0013, 2764=>0.0013, 2765=>0.0013, 2766=>0.0013, 2767=>0.0013, 2768=>0.0013, 2769=>0.0013, 2770=>0.0013, 2771=>0.0013, 2772=>0.0013, 2773=>0.0013, 2774=>0.0013, 2775=>0.0013, 2776=>0.0013, 2777=>0.0013, 2778=>0.0013, 2779=>0.0013, 2780=>0.0013, 2781=>0.0013, 2782=>0.0013, 2783=>0.0013, 2784=>0.0013, 2785=>0.0013, 2786=>0.0013, 2787=>0.0013, 2788=>0.0013, 2789=>0.0013, 2790=>0.0013, 2791=>0.0013, 2792=>0.0013, 2793=>0.0013, 2794=>0.0013, 2795=>0.0013, 2796=>0.0013, 2797=>0.0013, 2798=>0.0013, 2799=>0.0013, 2800=>0.0013, 2801=>0.0013, 2802=>0.0013, 2803=>0.0013, 2804=>0.0013, 2805=>0.0013, 2806=>0.0013, 2807=>0.0013, 2808=>0.0013, 2809=>0.0013, 2810=>0.0013, 2811=>0.0013, 2812=>0.0013, 2813=>0.0013, 2814=>0.0013, 2815=>0.0013, 2816=>0.0013, 2817=>0.0013, 2818=>0.0013, 2819=>0.0013, 2820=>0.0013, 2821=>0.0013, 2822=>0.0013, 2823=>0.0013, 2824=>0.0013, 2825=>0.0013, 2826=>0.0013, 2827=>0.0013, 2828=>0.0013, 2829=>0.0013, 2830=>0.0013, 2831=>0.0013, 2832=>0.0013, 2833=>0.0013, 2834=>0.0013, 2835=>0.0013, 2836=>0.0013, 2837=>0.0013, 2838=>0.0013, 2839=>0.0013, 2840=>0.0013, 2841=>0.0013, 2842=>0.0013, 2843=>0.0013, 2844=>0.0013, 2845=>0.0013, 2846=>0.0013, 2847=>0.0013, 2848=>0.0013, 2849=>0.0013, 2850=>0.0013, 2851=>0.0013, 2852=>0.0013, 2853=>0.0013, 2854=>0.0013, 2855=>0.0013, 2856=>0.0013, 2857=>0.0013, 2858=>0.0013, 2859=>0.0013, 2860=>0.0013, 2861=>0.0013, 2862=>0.0013, 2863=>0.0013, 2864=>0.0013, 2865=>0.0013, 2866=>0.0013, 2867=>0.0013, 2868=>0.0013, 2869=>0.0013, 2870=>0.0013, 2871=>0.0013, 2872=>0.0013, 2873=>0.0013, 2874=>0.0013, 2875=>0.0013, 2876=>0.0013, 2877=>0.0013, 2878=>0.0013, 2879=>0.0013, 2880=>0.0013, 2881=>0.0013, 2882=>0.0013, 2883=>0.0013, 2884=>0.0013, 2885=>0.0013, 2886=>0.0013, 2887=>0.0013, 2888=>0.0013, 2889=>0.0013, 2890=>0.0013, 2891=>0.0013, 2892=>0.0013, 2893=>0.0013, 2894=>0.0013, 2895=>0.0013, 2896=>0.0013, 2897=>0.0013, 2898=>0.0013, 2899=>0.0013, 2900=>0.0013, 2901=>0.0013, 2902=>0.0013, 2903=>0.0013, 2904=>0.0013, 2905=>0.0013, 2906=>0.0013, 2907=>0.0013, 2908=>0.0013, 2909=>0.0013, 2910=>0.0013, 2911=>0.0013, 2912=>0.0013, 2913=>0.0013, 2914=>0.0013, 2915=>0.0013, 2916=>0.0013, 2917=>0.0013, 2918=>0.0013, 2919=>0.0013, 2920=>0.0013, 2921=>0.0013, 2922=>0.0013, 2923=>0.0013, 2924=>0.0013, 2925=>0.0013, 2926=>0.0013, 2927=>0.0013, 2928=>0.0013, 2929=>0.0013, 2930=>0.0013, 2931=>0.0013, 2932=>0.0013, 2933=>0.0013, 2934=>0.0013, 2935=>0.0013, 2936=>0.0013, 2937=>0.0013, 2938=>0.0013, 2939=>0.0013, 2940=>0.0013, 2941=>0.0013, 2942=>0.0013, 2943=>0.0013, 2944=>0.0013, 2945=>0.0013, 2946=>0.0013, 2947=>0.0013, 2948=>0.0013, 2949=>0.0013, 2950=>0.0012, 2951=>0.0012, 2952=>0.0012, 2953=>0.0012, 2954=>0.0012, 2955=>0.0012, 2956=>0.0012, 2957=>0.0012, 2958=>0.0012, 2959=>0.0012, 2960=>0.0012, 2961=>0.0012, 2962=>0.0012, 2963=>0.0012, 2964=>0.0012, 2965=>0.0012, 2966=>0.0012, 2967=>0.0012, 2968=>0.0012, 2969=>0.0012, 2970=>0.0012, 2971=>0.0012, 2972=>0.0012, 2973=>0.0012, 2974=>0.0012, 2975=>0.0012, 2976=>0.0012, 2977=>0.0012, 2978=>0.0012, 2979=>0.0012, 2980=>0.0012, 2981=>0.0012, 2982=>0.0012, 2983=>0.0012, 2984=>0.0012, 2985=>0.0012, 2986=>0.0012, 2987=>0.0012, 2988=>0.0012, 2989=>0.0012, 2990=>0.0012, 2991=>0.0012, 2992=>0.0012, 2993=>0.0012, 2994=>0.0012, 2995=>0.0012, 2996=>0.0012, 2997=>0.0012, 2998=>0.0012, 2999=>0.0012, 3000=>0.0012, 3001=>0.0012, 3002=>0.0012, 3003=>0.0012, 3004=>0.0012, 3005=>0.0012, 3006=>0.0012, 3007=>0.0012, 3008=>0.0012, 3009=>0.0012, 3010=>0.0012, 3011=>0.0012, 3012=>0.0012, 3013=>0.0012, 3014=>0.0012, 3015=>0.0012, 3016=>0.0012, 3017=>0.0012, 3018=>0.0012, 3019=>0.0012, 3020=>0.0012, 3021=>0.0012, 3022=>0.0012, 3023=>0.0012, 3024=>0.0012, 3025=>0.0012, 3026=>0.0012, 3027=>0.0012, 3028=>0.0012, 3029=>0.0012, 3030=>0.0012, 3031=>0.0012, 3032=>0.0012, 3033=>0.0012, 3034=>0.0012, 3035=>0.0012, 3036=>0.0012, 3037=>0.0012, 3038=>0.0012, 3039=>0.0012, 3040=>0.0012, 3041=>0.0012, 3042=>0.0012, 3043=>0.0012, 3044=>0.0012, 3045=>0.0012, 3046=>0.0012, 3047=>0.0012, 3048=>0.0012, 3049=>0.0012, 3050=>0.0012, 3051=>0.0012, 3052=>0.0012, 3053=>0.0012, 3054=>0.0012, 3055=>0.0012, 3056=>0.0012, 3057=>0.0012, 3058=>0.0012, 3059=>0.0012, 3060=>0.0012, 3061=>0.0012, 3062=>0.0012, 3063=>0.0012, 3064=>0.0012, 3065=>0.0012, 3066=>0.0012, 3067=>0.0012, 3068=>0.0012, 3069=>0.0012, 3070=>0.0012, 3071=>0.0012, 3072=>0.0012, 3073=>0.0012, 3074=>0.0012, 3075=>0.0012, 3076=>0.0012, 3077=>0.0012, 3078=>0.0012, 3079=>0.0012, 3080=>0.0012, 3081=>0.0012, 3082=>0.0012, 3083=>0.0012, 3084=>0.0012, 3085=>0.0012, 3086=>0.0012, 3087=>0.0012, 3088=>0.0012, 3089=>0.0012, 3090=>0.0012, 3091=>0.0012, 3092=>0.0012, 3093=>0.0012, 3094=>0.0012, 3095=>0.0012, 3096=>0.0012, 3097=>0.0012, 3098=>0.0012, 3099=>0.0012, 3100=>0.0012, 3101=>0.0012, 3102=>0.0012, 3103=>0.0012, 3104=>0.0012, 3105=>0.0012, 3106=>0.0012, 3107=>0.0012, 3108=>0.0012, 3109=>0.0012, 3110=>0.0012, 3111=>0.0012, 3112=>0.0012, 3113=>0.0012, 3114=>0.0012, 3115=>0.0012, 3116=>0.0012, 3117=>0.0012, 3118=>0.0012, 3119=>0.0012, 3120=>0.0012, 3121=>0.0012, 3122=>0.0012, 3123=>0.0012, 3124=>0.0012, 3125=>0.0012, 3126=>0.0012, 3127=>0.0012, 3128=>0.0012, 3129=>0.0012, 3130=>0.0012, 3131=>0.0012, 3132=>0.0012, 3133=>0.0012, 3134=>0.0012, 3135=>0.0012, 3136=>0.0012, 3137=>0.0012, 3138=>0.0012, 3139=>0.0012, 3140=>0.0012, 3141=>0.0012, 3142=>0.0012, 3143=>0.0012, 3144=>0.0012, 3145=>0.0012, 3146=>0.0012, 3147=>0.0012, 3148=>0.0012, 3149=>0.0012, 3150=>0.0012, 3151=>0.0012, 3152=>0.0012, 3153=>0.0012, 3154=>0.0012, 3155=>0.0012, 3156=>0.0012, 3157=>0.0012, 3158=>0.0012, 3159=>0.0012, 3160=>0.0012, 3161=>0.0012, 3162=>0.0012, 3163=>0.0012, 3164=>0.0012, 3165=>0.0012, 3166=>0.0012, 3167=>0.0012, 3168=>0.0012, 3169=>0.0012, 3170=>0.0012, 3171=>0.0012, 3172=>0.0012, 3173=>0.0012, 3174=>0.0012, 3175=>0.0012, 3176=>0.0012, 3177=>0.0012, 3178=>0.0012, 3179=>0.0012, 3180=>0.0012, 3181=>0.0012, 3182=>0.0012, 3183=>0.0012, 3184=>0.0012, 3185=>0.0012, 3186=>0.0012, 3187=>0.0012, 3188=>0.0012, 3189=>0.0012, 3190=>0.0012, 3191=>0.0012, 3192=>0.0012, 3193=>0.0012, 3194=>0.0012, 3195=>0.0012, 3196=>0.0012, 3197=>0.0012, 3198=>0.0012, 3199=>0.0012, 3200=>0.0012, 3201=>0.0012, 3202=>0.0012, 3203=>0.0012, 3204=>0.0012, 3205=>0.0012, 3206=>0.0011, 3207=>0.0011, 3208=>0.0011, 3209=>0.0011, 3210=>0.0011, 3211=>0.0011, 3212=>0.0011, 3213=>0.0011, 3214=>0.0011, 3215=>0.0011, 3216=>0.0011, 3217=>0.0011, 3218=>0.0011, 3219=>0.0011, 3220=>0.0011, 3221=>0.0011, 3222=>0.0011, 3223=>0.0011, 3224=>0.0011, 3225=>0.0011, 3226=>0.0011, 3227=>0.0011, 3228=>0.0011, 3229=>0.0011, 3230=>0.0011, 3231=>0.0011, 3232=>0.0011, 3233=>0.0011, 3234=>0.0011, 3235=>0.0011, 3236=>0.0011, 3237=>0.0011, 3238=>0.0011, 3239=>0.0011, 3240=>0.0011, 3241=>0.0011, 3242=>0.0011, 3243=>0.0011, 3244=>0.0011, 3245=>0.0011, 3246=>0.0011, 3247=>0.0011, 3248=>0.0011, 3249=>0.0011, 3250=>0.0011, 3251=>0.0011, 3252=>0.0011, 3253=>0.0011, 3254=>0.0011, 3255=>0.0011, 3256=>0.0011, 3257=>0.0011, 3258=>0.0011, 3259=>0.0011, 3260=>0.0011, 3261=>0.0011, 3262=>0.0011, 3263=>0.0011, 3264=>0.0011, 3265=>0.0011, 3266=>0.0011, 3267=>0.0011, 3268=>0.0011, 3269=>0.0011, 3270=>0.0011, 3271=>0.0011, 3272=>0.0011, 3273=>0.0011, 3274=>0.0011, 3275=>0.0011, 3276=>0.0011, 3277=>0.0011, 3278=>0.0011, 3279=>0.0011, 3280=>0.0011, 3281=>0.0011, 3282=>0.0011, 3283=>0.0011, 3284=>0.0011, 3285=>0.0011, 3286=>0.0011, 3287=>0.0011, 3288=>0.0011, 3289=>0.0011, 3290=>0.0011, 3291=>0.0011, 3292=>0.0011, 3293=>0.0011, 3294=>0.0011, 3295=>0.0011, 3296=>0.0011, 3297=>0.0011, 3298=>0.0011, 3299=>0.0011, 3300=>0.0011, 3301=>0.0011, 3302=>0.0011, 3303=>0.0011, 3304=>0.0011, 3305=>0.0011, 3306=>0.0011, 3307=>0.0011, 3308=>0.0011, 3309=>0.0011, 3310=>0.0011, 3311=>0.0011, 3312=>0.0011, 3313=>0.0011, 3314=>0.0011, 3315=>0.0011, 3316=>0.0011, 3317=>0.0011, 3318=>0.0011, 3319=>0.0011, 3320=>0.0011, 3321=>0.0011, 3322=>0.0011, 3323=>0.0011, 3324=>0.0011, 3325=>0.0011, 3326=>0.0011, 3327=>0.0011, 3328=>0.0011, 3329=>0.0011, 3330=>0.0011, 3331=>0.0011, 3332=>0.0011, 3333=>0.0011, 3334=>0.0011, 3335=>0.0011, 3336=>0.0011, 3337=>0.0011, 3338=>0.0011, 3339=>0.0011, 3340=>0.0011, 3341=>0.0011, 3342=>0.0011, 3343=>0.0011, 3344=>0.0011, 3345=>0.0011, 3346=>0.0011, 3347=>0.0011, 3348=>0.0011, 3349=>0.0011, 3350=>0.0011, 3351=>0.0011, 3352=>0.0011, 3353=>0.0011, 3354=>0.0011, 3355=>0.0011, 3356=>0.0011, 3357=>0.0011, 3358=>0.0011, 3359=>0.0011, 3360=>0.0011, 3361=>0.0011, 3362=>0.0011, 3363=>0.0011, 3364=>0.0011, 3365=>0.0011, 3366=>0.0011, 3367=>0.0011, 3368=>0.0011, 3369=>0.0011, 3370=>0.0011, 3371=>0.0011, 3372=>0.0011, 3373=>0.0011, 3374=>0.0011, 3375=>0.0011, 3376=>0.0011, 3377=>0.0011, 3378=>0.0011, 3379=>0.0011, 3380=>0.0011, 3381=>0.0011, 3382=>0.0011, 3383=>0.0011, 3384=>0.0011, 3385=>0.0011, 3386=>0.0011, 3387=>0.0011, 3388=>0.0011, 3389=>0.0011, 3390=>0.0011, 3391=>0.0011, 3392=>0.0011, 3393=>0.0011, 3394=>0.0011, 3395=>0.0011, 3396=>0.0011, 3397=>0.0011, 3398=>0.0011, 3399=>0.0011, 3400=>0.0011, 3401=>0.0011, 3402=>0.0011, 3403=>0.0011, 3404=>0.0011, 3405=>0.0011, 3406=>0.0011, 3407=>0.0011, 3408=>0.0011, 3409=>0.0011, 3410=>0.0011, 3411=>0.0011, 3412=>0.0011, 3413=>0.0011, 3414=>0.0011, 3415=>0.0011, 3416=>0.0011, 3417=>0.0011, 3418=>0.0011, 3419=>0.0011, 3420=>0.0011, 3421=>0.0011, 3422=>0.0011, 3423=>0.0011, 3424=>0.0011, 3425=>0.0011, 3426=>0.0011, 3427=>0.0011, 3428=>0.0011, 3429=>0.0011, 3430=>0.0011, 3431=>0.0011, 3432=>0.0011, 3433=>0.0011, 3434=>0.0011, 3435=>0.0011, 3436=>0.0011, 3437=>0.0011, 3438=>0.0011, 3439=>0.0011, 3440=>0.0011, 3441=>0.0011, 3442=>0.0011, 3443=>0.0011, 3444=>0.0011, 3445=>0.0011, 3446=>0.0011, 3447=>0.0011, 3448=>0.0011, 3449=>0.0011, 3450=>0.0011, 3451=>0.0011, 3452=>0.0011, 3453=>0.0011, 3454=>0.0011, 3455=>0.0011, 3456=>0.0011, 3457=>0.0011, 3458=>0.0011, 3459=>0.0011, 3460=>0.0011, 3461=>0.0011, 3462=>0.0011, 3463=>0.0011, 3464=>0.0011, 3465=>0.0011, 3466=>0.0011, 3467=>0.0011, 3468=>0.0011, 3469=>0.0011, 3470=>0.0011, 3471=>0.0011, 3472=>0.0011, 3473=>0.0011, 3474=>0.0011, 3475=>0.0011, 3476=>0.0011, 3477=>0.0011, 3478=>0.0011, 3479=>0.0011, 3480=>0.0011, 3481=>0.0011, 3482=>0.0011, 3483=>0.0011, 3484=>0.0011, 3485=>0.0011, 3486=>0.0011, 3487=>0.0011, 3488=>0.0011, 3489=>0.0011, 3490=>0.0011, 3491=>0.0011, 3492=>0.0011, 3493=>0.0011, 3494=>0.0011, 3495=>0.0011, 3496=>0.0011, 3497=>0.0011, 3498=>0.0011, 3499=>0.0011, 3500=>0.0011, 3501=>0.0011, 3502=>0.0011, 3503=>0.0011, 3504=>0.0011, 3505=>0.0011, 3506=>0.0011, 3507=>0.0011, 3508=>0.0011, 3509=>0.0011, 3510=>0.0011, 3511=>0.0011, 3512=>0.001, 3513=>0.001, 3514=>0.001, 3515=>0.001, 3516=>0.001, 3517=>0.001, 3518=>0.001, 3519=>0.001, 3520=>0.001, 3521=>0.001, 3522=>0.001, 3523=>0.001, 3524=>0.001, 3525=>0.001, 3526=>0.001, 3527=>0.001, 3528=>0.001, 3529=>0.001, 3530=>0.001, 3531=>0.001, 3532=>0.001, 3533=>0.001, 3534=>0.001, 3535=>0.001, 3536=>0.001, 3537=>0.001, 3538=>0.001, 3539=>0.001, 3540=>0.001, 3541=>0.001, 3542=>0.001, 3543=>0.001, 3544=>0.001, 3545=>0.001, 3546=>0.001, 3547=>0.001, 3548=>0.001, 3549=>0.001, 3550=>0.001, 3551=>0.001, 3552=>0.001, 3553=>0.001, 3554=>0.001, 3555=>0.001, 3556=>0.001, 3557=>0.001, 3558=>0.001, 3559=>0.001, 3560=>0.001, 3561=>0.001, 3562=>0.001, 3563=>0.001, 3564=>0.001, 3565=>0.001, 3566=>0.001, 3567=>0.001, 3568=>0.001, 3569=>0.001, 3570=>0.001, 3571=>0.001, 3572=>0.001, 3573=>0.001, 3574=>0.001, 3575=>0.001, 3576=>0.001, 3577=>0.001, 3578=>0.001, 3579=>0.001, 3580=>0.001, 3581=>0.001, 3582=>0.001, 3583=>0.001, 3584=>0.001, 3585=>0.001, 3586=>0.001, 3587=>0.001, 3588=>0.001, 3589=>0.001, 3590=>0.001, 3591=>0.001, 3592=>0.001, 3593=>0.001, 3594=>0.001, 3595=>0.001, 3596=>0.001, 3597=>0.001, 3598=>0.001, 3599=>0.001, 3600=>0.001, 3601=>0.001, 3602=>0.001, 3603=>0.001, 3604=>0.001, 3605=>0.001, 3606=>0.001, 3607=>0.001, 3608=>0.001, 3609=>0.001, 3610=>0.001, 3611=>0.001, 3612=>0.001, 3613=>0.001, 3614=>0.001, 3615=>0.001, 3616=>0.001, 3617=>0.001, 3618=>0.001, 3619=>0.001, 3620=>0.001, 3621=>0.001, 3622=>0.001, 3623=>0.001, 3624=>0.001, 3625=>0.001, 3626=>0.001, 3627=>0.001, 3628=>0.001, 3629=>0.001, 3630=>0.001, 3631=>0.001, 3632=>0.001, 3633=>0.001, 3634=>0.001, 3635=>0.001, 3636=>0.001, 3637=>0.001, 3638=>0.001, 3639=>0.001, 3640=>0.001, 3641=>0.001, 3642=>0.001, 3643=>0.001, 3644=>0.001, 3645=>0.001, 3646=>0.001, 3647=>0.001, 3648=>0.001, 3649=>0.001, 3650=>0.001, 3651=>0.001, 3652=>0.001, 3653=>0.001, 3654=>0.001, 3655=>0.001, 3656=>0.001, 3657=>0.001, 3658=>0.001, 3659=>0.001, 3660=>0.001, 3661=>0.001, 3662=>0.001, 3663=>0.001, 3664=>0.001, 3665=>0.001, 3666=>0.001, 3667=>0.001, 3668=>0.001, 3669=>0.001, 3670=>0.001, 3671=>0.001, 3672=>0.001, 3673=>0.001, 3674=>0.001, 3675=>0.001, 3676=>0.001, 3677=>0.001, 3678=>0.001, 3679=>0.001, 3680=>0.001, 3681=>0.001, 3682=>0.001, 3683=>0.001, 3684=>0.001, 3685=>0.001, 3686=>0.001, 3687=>0.001, 3688=>0.001, 3689=>0.001, 3690=>0.001, 3691=>0.001, 3692=>0.001, 3693=>0.001, 3694=>0.001, 3695=>0.001, 3696=>0.001, 3697=>0.001, 3698=>0.001, 3699=>0.001, 3700=>0.001, 3701=>0.001, 3702=>0.001, 3703=>0.001, 3704=>0.001, 3705=>0.001, 3706=>0.001, 3707=>0.001, 3708=>0.001, 3709=>0.001, 3710=>0.001, 3711=>0.001, 3712=>0.001, 3713=>0.001, 3714=>0.001, 3715=>0.001, 3716=>0.001, 3717=>0.001, 3718=>0.001, 3719=>0.001, 3720=>0.001, 3721=>0.001, 3722=>0.001, 3723=>0.001, 3724=>0.001, 3725=>0.001, 3726=>0.001, 3727=>0.001, 3728=>0.001, 3729=>0.001, 3730=>0.001, 3731=>0.001, 3732=>0.001, 3733=>0.001, 3734=>0.001, 3735=>0.001, 3736=>0.001, 3737=>0.001, 3738=>0.001, 3739=>0.001, 3740=>0.001, 3741=>0.001, 3742=>0.001, 3743=>0.001, 3744=>0.001, 3745=>0.001, 3746=>0.001, 3747=>0.001, 3748=>0.001, 3749=>0.001, 3750=>0.001, 3751=>0.001, 3752=>0.001, 3753=>0.001, 3754=>0.001, 3755=>0.001, 3756=>0.001, 3757=>0.001, 3758=>0.001, 3759=>0.001, 3760=>0.001, 3761=>0.001, 3762=>0.001, 3763=>0.001, 3764=>0.001, 3765=>0.001, 3766=>0.001, 3767=>0.001, 3768=>0.001, 3769=>0.001, 3770=>0.001, 3771=>0.001, 3772=>0.001, 3773=>0.001, 3774=>0.001, 3775=>0.001, 3776=>0.001, 3777=>0.001, 3778=>0.001, 3779=>0.001, 3780=>0.001, 3781=>0.001, 3782=>0.001, 3783=>0.001, 3784=>0.001, 3785=>0.001, 3786=>0.001, 3787=>0.001, 3788=>0.001, 3789=>0.001, 3790=>0.001, 3791=>0.001, 3792=>0.001, 3793=>0.001, 3794=>0.001, 3795=>0.001, 3796=>0.001, 3797=>0.001, 3798=>0.001, 3799=>0.001, 3800=>0.001, 3801=>0.001, 3802=>0.001, 3803=>0.001, 3804=>0.001, 3805=>0.001, 3806=>0.001, 3807=>0.001, 3808=>0.001, 3809=>0.001, 3810=>0.001, 3811=>0.001, 3812=>0.001, 3813=>0.001, 3814=>0.001, 3815=>0.001, 3816=>0.001, 3817=>0.001, 3818=>0.001, 3819=>0.001, 3820=>0.001, 3821=>0.001, 3822=>0.001, 3823=>0.001, 3824=>0.001, 3825=>0.001, 3826=>0.001, 3827=>0.001, 3828=>0.001, 3829=>0.001, 3830=>0.001, 3831=>0.001, 3832=>0.001, 3833=>0.001, 3834=>0.001, 3835=>0.001, 3836=>0.001, 3837=>0.001, 3838=>0.001, 3839=>0.001, 3840=>0.001, 3841=>0.001, 3842=>0.001, 3843=>0.001, 3844=>0.001, 3845=>0.001, 3846=>0.001, 3847=>0.001, 3848=>0.001, 3849=>0.001, 3850=>0.001, 3851=>0.001, 3852=>0.001, 3853=>0.001, 3854=>0.001, 3855=>0.001, 3856=>0.001, 3857=>0.001, 3858=>0.001, 3859=>0.001, 3860=>0.001, 3861=>0.001, 3862=>0.001, 3863=>0.001, 3864=>0.001, 3865=>0.001, 3866=>0.001, 3867=>0.001, 3868=>0.001, 3869=>0.001, 3870=>0.001, 3871=>0.001, 3872=>0.001, 3873=>0.001, 3874=>0.001, 3875=>0.001, 3876=>0.001, 3877=>0.001, 3878=>0.001, 3879=>0.001, 3880=>0.001, 3881=>0.001, 3882=>0.0009, 3883=>0.0009, 3884=>0.0009, 3885=>0.0009, 3886=>0.0009, 3887=>0.0009, 3888=>0.0009, 3889=>0.0009, 3890=>0.0009, 3891=>0.0009, 3892=>0.0009, 3893=>0.0009, 3894=>0.0009, 3895=>0.0009, 3896=>0.0009, 3897=>0.0009, 3898=>0.0009, 3899=>0.0009, 3900=>0.0009, 3901=>0.0009, 3902=>0.0009, 3903=>0.0009, 3904=>0.0009, 3905=>0.0009, 3906=>0.0009, 3907=>0.0009, 3908=>0.0009, 3909=>0.0009, 3910=>0.0009, 3911=>0.0009, 3912=>0.0009, 3913=>0.0009, 3914=>0.0009, 3915=>0.0009, 3916=>0.0009, 3917=>0.0009, 3918=>0.0009, 3919=>0.0009, 3920=>0.0009, 3921=>0.0009, 3922=>0.0009, 3923=>0.0009, 3924=>0.0009, 3925=>0.0009, 3926=>0.0009, 3927=>0.0009, 3928=>0.0009, 3929=>0.0009, 3930=>0.0009, 3931=>0.0009, 3932=>0.0009, 3933=>0.0009, 3934=>0.0009, 3935=>0.0009, 3936=>0.0009, 3937=>0.0009, 3938=>0.0009, 3939=>0.0009, 3940=>0.0009, 3941=>0.0009, 3942=>0.0009, 3943=>0.0009, 3944=>0.0009, 3945=>0.0009, 3946=>0.0009, 3947=>0.0009, 3948=>0.0009, 3949=>0.0009, 3950=>0.0009, 3951=>0.0009, 3952=>0.0009, 3953=>0.0009, 3954=>0.0009, 3955=>0.0009, 3956=>0.0009, 3957=>0.0009, 3958=>0.0009, 3959=>0.0009, 3960=>0.0009, 3961=>0.0009, 3962=>0.0009, 3963=>0.0009, 3964=>0.0009, 3965=>0.0009, 3966=>0.0009, 3967=>0.0009, 3968=>0.0009, 3969=>0.0009, 3970=>0.0009, 3971=>0.0009, 3972=>0.0009, 3973=>0.0009, 3974=>0.0009, 3975=>0.0009, 3976=>0.0009, 3977=>0.0009, 3978=>0.0009, 3979=>0.0009, 3980=>0.0009, 3981=>0.0009, 3982=>0.0009, 3983=>0.0009, 3984=>0.0009, 3985=>0.0009, 3986=>0.0009, 3987=>0.0009, 3988=>0.0009, 3989=>0.0009, 3990=>0.0009, 3991=>0.0009, 3992=>0.0009, 3993=>0.0009, 3994=>0.0009, 3995=>0.0009, 3996=>0.0009, 3997=>0.0009, 3998=>0.0009, 3999=>0.0009, 4000=>0.0009, 4001=>0.0009, 4002=>0.0009, 4003=>0.0009, 4004=>0.0009, 4005=>0.0009, 4006=>0.0009, 4007=>0.0009, 4008=>0.0009, 4009=>0.0009, 4010=>0.0009, 4011=>0.0009, 4012=>0.0009, 4013=>0.0009, 4014=>0.0009, 4015=>0.0009, 4016=>0.0009, 4017=>0.0009, 4018=>0.0009, 4019=>0.0009, 4020=>0.0009, 4021=>0.0009, 4022=>0.0009, 4023=>0.0009, 4024=>0.0009, 4025=>0.0009, 4026=>0.0009, 4027=>0.0009, 4028=>0.0009, 4029=>0.0009, 4030=>0.0009, 4031=>0.0009, 4032=>0.0009, 4033=>0.0009, 4034=>0.0009, 4035=>0.0009, 4036=>0.0009, 4037=>0.0009, 4038=>0.0009, 4039=>0.0009, 4040=>0.0009, 4041=>0.0009, 4042=>0.0009, 4043=>0.0009, 4044=>0.0009, 4045=>0.0009, 4046=>0.0009, 4047=>0.0009, 4048=>0.0009, 4049=>0.0009, 4050=>0.0009, 4051=>0.0009, 4052=>0.0009, 4053=>0.0009, 4054=>0.0009, 4055=>0.0009, 4056=>0.0009, 4057=>0.0009, 4058=>0.0009, 4059=>0.0009, 4060=>0.0009, 4061=>0.0009, 4062=>0.0009, 4063=>0.0009, 4064=>0.0009, 4065=>0.0009, 4066=>0.0009, 4067=>0.0009, 4068=>0.0009, 4069=>0.0009, 4070=>0.0009, 4071=>0.0009, 4072=>0.0009, 4073=>0.0009, 4074=>0.0009, 4075=>0.0009, 4076=>0.0009, 4077=>0.0009, 4078=>0.0009, 4079=>0.0009, 4080=>0.0009, 4081=>0.0009, 4082=>0.0009, 4083=>0.0009, 4084=>0.0009, 4085=>0.0009, 4086=>0.0009, 4087=>0.0009, 4088=>0.0009, 4089=>0.0009, 4090=>0.0009, 4091=>0.0009, 4092=>0.0009, 4093=>0.0009, 4094=>0.0009, 4095=>0.0009, 4096=>0.0009, 4097=>0.0009, 4098=>0.0009, 4099=>0.0009, 4100=>0.0009, 4101=>0.0009, 4102=>0.0009, 4103=>0.0009, 4104=>0.0009, 4105=>0.0009, 4106=>0.0009, 4107=>0.0009, 4108=>0.0009, 4109=>0.0009, 4110=>0.0009, 4111=>0.0009, 4112=>0.0009, 4113=>0.0009, 4114=>0.0009, 4115=>0.0009, 4116=>0.0009, 4117=>0.0009, 4118=>0.0009, 4119=>0.0009, 4120=>0.0009, 4121=>0.0009, 4122=>0.0009, 4123=>0.0009, 4124=>0.0009, 4125=>0.0009, 4126=>0.0009, 4127=>0.0009, 4128=>0.0009, 4129=>0.0009, 4130=>0.0009, 4131=>0.0009, 4132=>0.0009, 4133=>0.0009, 4134=>0.0009, 4135=>0.0009, 4136=>0.0009, 4137=>0.0009, 4138=>0.0009, 4139=>0.0009, 4140=>0.0009, 4141=>0.0009, 4142=>0.0009, 4143=>0.0009, 4144=>0.0009, 4145=>0.0009, 4146=>0.0009, 4147=>0.0009, 4148=>0.0009, 4149=>0.0009, 4150=>0.0009, 4151=>0.0009, 4152=>0.0009, 4153=>0.0009, 4154=>0.0009, 4155=>0.0009, 4156=>0.0009, 4157=>0.0009, 4158=>0.0009, 4159=>0.0009, 4160=>0.0009, 4161=>0.0009, 4162=>0.0009, 4163=>0.0009, 4164=>0.0009, 4165=>0.0009, 4166=>0.0009, 4167=>0.0009, 4168=>0.0009, 4169=>0.0009, 4170=>0.0009, 4171=>0.0009, 4172=>0.0009, 4173=>0.0009, 4174=>0.0009, 4175=>0.0009, 4176=>0.0009, 4177=>0.0009, 4178=>0.0009, 4179=>0.0009, 4180=>0.0009, 4181=>0.0009, 4182=>0.0009, 4183=>0.0009, 4184=>0.0009, 4185=>0.0009, 4186=>0.0009, 4187=>0.0009, 4188=>0.0009, 4189=>0.0009, 4190=>0.0009, 4191=>0.0009, 4192=>0.0009, 4193=>0.0009, 4194=>0.0009, 4195=>0.0009, 4196=>0.0009, 4197=>0.0009, 4198=>0.0009, 4199=>0.0009, 4200=>0.0009, 4201=>0.0009, 4202=>0.0009, 4203=>0.0009, 4204=>0.0009, 4205=>0.0009, 4206=>0.0009, 4207=>0.0009, 4208=>0.0009, 4209=>0.0009, 4210=>0.0009, 4211=>0.0009, 4212=>0.0009, 4213=>0.0009, 4214=>0.0009, 4215=>0.0009, 4216=>0.0009, 4217=>0.0009, 4218=>0.0009, 4219=>0.0009, 4220=>0.0009, 4221=>0.0009, 4222=>0.0009, 4223=>0.0009, 4224=>0.0009, 4225=>0.0009, 4226=>0.0009, 4227=>0.0009, 4228=>0.0009, 4229=>0.0009, 4230=>0.0009, 4231=>0.0009, 4232=>0.0009, 4233=>0.0009, 4234=>0.0009, 4235=>0.0009, 4236=>0.0009, 4237=>0.0009, 4238=>0.0009, 4239=>0.0009, 4240=>0.0009, 4241=>0.0009, 4242=>0.0009, 4243=>0.0009, 4244=>0.0009, 4245=>0.0009, 4246=>0.0009, 4247=>0.0009, 4248=>0.0009, 4249=>0.0009, 4250=>0.0009, 4251=>0.0009, 4252=>0.0009, 4253=>0.0009, 4254=>0.0009, 4255=>0.0009, 4256=>0.0009, 4257=>0.0009, 4258=>0.0009, 4259=>0.0009, 4260=>0.0009, 4261=>0.0009, 4262=>0.0009, 4263=>0.0009, 4264=>0.0009, 4265=>0.0009, 4266=>0.0009, 4267=>0.0009, 4268=>0.0009, 4269=>0.0009, 4270=>0.0009, 4271=>0.0009, 4272=>0.0009, 4273=>0.0009, 4274=>0.0009, 4275=>0.0009, 4276=>0.0009, 4277=>0.0009, 4278=>0.0009, 4279=>0.0009, 4280=>0.0009, 4281=>0.0009, 4282=>0.0009, 4283=>0.0009, 4284=>0.0009, 4285=>0.0009, 4286=>0.0009, 4287=>0.0009, 4288=>0.0009, 4289=>0.0009, 4290=>0.0009, 4291=>0.0009, 4292=>0.0009, 4293=>0.0009, 4294=>0.0009, 4295=>0.0009, 4296=>0.0009, 4297=>0.0009, 4298=>0.0009, 4299=>0.0009, 4300=>0.0009, 4301=>0.0009, 4302=>0.0009, 4303=>0.0009, 4304=>0.0009, 4305=>0.0009, 4306=>0.0009, 4307=>0.0009, 4308=>0.0009, 4309=>0.0009, 4310=>0.0009, 4311=>0.0009, 4312=>0.0009, 4313=>0.0009, 4314=>0.0009, 4315=>0.0009, 4316=>0.0009, 4317=>0.0009, 4318=>0.0009, 4319=>0.0009, 4320=>0.0009, 4321=>0.0009, 4322=>0.0009, 4323=>0.0009, 4324=>0.0009, 4325=>0.0009, 4326=>0.0009, 4327=>0.0009, 4328=>0.0009, 4329=>0.0009, 4330=>0.0009, 4331=>0.0009, 4332=>0.0009, 4333=>0.0009, 4334=>0.0009, 4335=>0.0009, 4336=>0.0009, 4337=>0.0009, 4338=>0.0009, 4339=>0.0008, 4340=>0.0008, 4341=>0.0008, 4342=>0.0008, 4343=>0.0008, 4344=>0.0008, 4345=>0.0008, 4346=>0.0008, 4347=>0.0008, 4348=>0.0008, 4349=>0.0008, 4350=>0.0008, 4351=>0.0008, 4352=>0.0008, 4353=>0.0008, 4354=>0.0008, 4355=>0.0008, 4356=>0.0008, 4357=>0.0008, 4358=>0.0008, 4359=>0.0008, 4360=>0.0008, 4361=>0.0008, 4362=>0.0008, 4363=>0.0008, 4364=>0.0008, 4365=>0.0008, 4366=>0.0008, 4367=>0.0008, 4368=>0.0008, 4369=>0.0008, 4370=>0.0008, 4371=>0.0008, 4372=>0.0008, 4373=>0.0008, 4374=>0.0008, 4375=>0.0008, 4376=>0.0008, 4377=>0.0008, 4378=>0.0008, 4379=>0.0008, 4380=>0.0008, 4381=>0.0008, 4382=>0.0008, 4383=>0.0008, 4384=>0.0008, 4385=>0.0008, 4386=>0.0008, 4387=>0.0008, 4388=>0.0008, 4389=>0.0008, 4390=>0.0008, 4391=>0.0008, 4392=>0.0008, 4393=>0.0008, 4394=>0.0008, 4395=>0.0008, 4396=>0.0008, 4397=>0.0008, 4398=>0.0008, 4399=>0.0008, 4400=>0.0008, 4401=>0.0008, 4402=>0.0008, 4403=>0.0008, 4404=>0.0008, 4405=>0.0008, 4406=>0.0008, 4407=>0.0008, 4408=>0.0008, 4409=>0.0008, 4410=>0.0008, 4411=>0.0008, 4412=>0.0008, 4413=>0.0008, 4414=>0.0008, 4415=>0.0008, 4416=>0.0008, 4417=>0.0008, 4418=>0.0008, 4419=>0.0008, 4420=>0.0008, 4421=>0.0008, 4422=>0.0008, 4423=>0.0008, 4424=>0.0008, 4425=>0.0008, 4426=>0.0008, 4427=>0.0008, 4428=>0.0008, 4429=>0.0008, 4430=>0.0008, 4431=>0.0008, 4432=>0.0008, 4433=>0.0008, 4434=>0.0008, 4435=>0.0008, 4436=>0.0008, 4437=>0.0008, 4438=>0.0008, 4439=>0.0008, 4440=>0.0008, 4441=>0.0008, 4442=>0.0008, 4443=>0.0008, 4444=>0.0008, 4445=>0.0008, 4446=>0.0008, 4447=>0.0008, 4448=>0.0008, 4449=>0.0008, 4450=>0.0008, 4451=>0.0008, 4452=>0.0008, 4453=>0.0008, 4454=>0.0008, 4455=>0.0008, 4456=>0.0008, 4457=>0.0008, 4458=>0.0008, 4459=>0.0008, 4460=>0.0008, 4461=>0.0008, 4462=>0.0008, 4463=>0.0008, 4464=>0.0008, 4465=>0.0008, 4466=>0.0008, 4467=>0.0008, 4468=>0.0008, 4469=>0.0008, 4470=>0.0008, 4471=>0.0008, 4472=>0.0008, 4473=>0.0008, 4474=>0.0008, 4475=>0.0008, 4476=>0.0008, 4477=>0.0008, 4478=>0.0008, 4479=>0.0008, 4480=>0.0008, 4481=>0.0008, 4482=>0.0008, 4483=>0.0008, 4484=>0.0008, 4485=>0.0008, 4486=>0.0008, 4487=>0.0008, 4488=>0.0008, 4489=>0.0008, 4490=>0.0008, 4491=>0.0008, 4492=>0.0008, 4493=>0.0008, 4494=>0.0008, 4495=>0.0008, 4496=>0.0008, 4497=>0.0008, 4498=>0.0008, 4499=>0.0008, 4500=>0.0008, 4501=>0.0008, 4502=>0.0008, 4503=>0.0008, 4504=>0.0008, 4505=>0.0008, 4506=>0.0008, 4507=>0.0008, 4508=>0.0008, 4509=>0.0008, 4510=>0.0008, 4511=>0.0008, 4512=>0.0008, 4513=>0.0008, 4514=>0.0008, 4515=>0.0008, 4516=>0.0008, 4517=>0.0008, 4518=>0.0008, 4519=>0.0008, 4520=>0.0008, 4521=>0.0008, 4522=>0.0008, 4523=>0.0008, 4524=>0.0008, 4525=>0.0008, 4526=>0.0008, 4527=>0.0008, 4528=>0.0008, 4529=>0.0008, 4530=>0.0008, 4531=>0.0008, 4532=>0.0008, 4533=>0.0008, 4534=>0.0008, 4535=>0.0008, 4536=>0.0008, 4537=>0.0008, 4538=>0.0008, 4539=>0.0008, 4540=>0.0008, 4541=>0.0008, 4542=>0.0008, 4543=>0.0008, 4544=>0.0008, 4545=>0.0008, 4546=>0.0008, 4547=>0.0008, 4548=>0.0008, 4549=>0.0008, 4550=>0.0008, 4551=>0.0008, 4552=>0.0008, 4553=>0.0008, 4554=>0.0008, 4555=>0.0008, 4556=>0.0008, 4557=>0.0008, 4558=>0.0008, 4559=>0.0008, 4560=>0.0008, 4561=>0.0008, 4562=>0.0008, 4563=>0.0008, 4564=>0.0008, 4565=>0.0008, 4566=>0.0008, 4567=>0.0008, 4568=>0.0008, 4569=>0.0008, 4570=>0.0008, 4571=>0.0008, 4572=>0.0008, 4573=>0.0008, 4574=>0.0008, 4575=>0.0008, 4576=>0.0008, 4577=>0.0008, 4578=>0.0008, 4579=>0.0008, 4580=>0.0008, 4581=>0.0008, 4582=>0.0008, 4583=>0.0008, 4584=>0.0008, 4585=>0.0008, 4586=>0.0008, 4587=>0.0008, 4588=>0.0008, 4589=>0.0008, 4590=>0.0008, 4591=>0.0008, 4592=>0.0008, 4593=>0.0008, 4594=>0.0008, 4595=>0.0008, 4596=>0.0008, 4597=>0.0008, 4598=>0.0008, 4599=>0.0008, 4600=>0.0008, 4601=>0.0008, 4602=>0.0008, 4603=>0.0008, 4604=>0.0008, 4605=>0.0008, 4606=>0.0008, 4607=>0.0008, 4608=>0.0008, 4609=>0.0008, 4610=>0.0008, 4611=>0.0008, 4612=>0.0008, 4613=>0.0008, 4614=>0.0008, 4615=>0.0008, 4616=>0.0008, 4617=>0.0008, 4618=>0.0008, 4619=>0.0008, 4620=>0.0008, 4621=>0.0008, 4622=>0.0008, 4623=>0.0008, 4624=>0.0008, 4625=>0.0008, 4626=>0.0008, 4627=>0.0008, 4628=>0.0008, 4629=>0.0008, 4630=>0.0008, 4631=>0.0008, 4632=>0.0008, 4633=>0.0008, 4634=>0.0008, 4635=>0.0008, 4636=>0.0008, 4637=>0.0008, 4638=>0.0008, 4639=>0.0008, 4640=>0.0008, 4641=>0.0008, 4642=>0.0008, 4643=>0.0008, 4644=>0.0008, 4645=>0.0008, 4646=>0.0008, 4647=>0.0008, 4648=>0.0008, 4649=>0.0008, 4650=>0.0008, 4651=>0.0008, 4652=>0.0008, 4653=>0.0008, 4654=>0.0008, 4655=>0.0008, 4656=>0.0008, 4657=>0.0008, 4658=>0.0008, 4659=>0.0008, 4660=>0.0008, 4661=>0.0008, 4662=>0.0008, 4663=>0.0008, 4664=>0.0008, 4665=>0.0008, 4666=>0.0008, 4667=>0.0008, 4668=>0.0008, 4669=>0.0008, 4670=>0.0008, 4671=>0.0008, 4672=>0.0008, 4673=>0.0008, 4674=>0.0008, 4675=>0.0008, 4676=>0.0008, 4677=>0.0008, 4678=>0.0008, 4679=>0.0008, 4680=>0.0008, 4681=>0.0008, 4682=>0.0008, 4683=>0.0008, 4684=>0.0008, 4685=>0.0008, 4686=>0.0008, 4687=>0.0008, 4688=>0.0008, 4689=>0.0008, 4690=>0.0008, 4691=>0.0008, 4692=>0.0008, 4693=>0.0008, 4694=>0.0008, 4695=>0.0008, 4696=>0.0008, 4697=>0.0008, 4698=>0.0008, 4699=>0.0008, 4700=>0.0008, 4701=>0.0008, 4702=>0.0008, 4703=>0.0008, 4704=>0.0008, 4705=>0.0008, 4706=>0.0008, 4707=>0.0008, 4708=>0.0008, 4709=>0.0008, 4710=>0.0008, 4711=>0.0008, 4712=>0.0008, 4713=>0.0008, 4714=>0.0008, 4715=>0.0008, 4716=>0.0008, 4717=>0.0008, 4718=>0.0008, 4719=>0.0008, 4720=>0.0008, 4721=>0.0008, 4722=>0.0008, 4723=>0.0008, 4724=>0.0008, 4725=>0.0008, 4726=>0.0008, 4727=>0.0008, 4728=>0.0008, 4729=>0.0008, 4730=>0.0008, 4731=>0.0008, 4732=>0.0008, 4733=>0.0008, 4734=>0.0008, 4735=>0.0008, 4736=>0.0008, 4737=>0.0008, 4738=>0.0008, 4739=>0.0008, 4740=>0.0008, 4741=>0.0008, 4742=>0.0008, 4743=>0.0008, 4744=>0.0008, 4745=>0.0008, 4746=>0.0008, 4747=>0.0008, 4748=>0.0008, 4749=>0.0008, 4750=>0.0008, 4751=>0.0008, 4752=>0.0008, 4753=>0.0008, 4754=>0.0008, 4755=>0.0008, 4756=>0.0008, 4757=>0.0008, 4758=>0.0008, 4759=>0.0008, 4760=>0.0008, 4761=>0.0008, 4762=>0.0008, 4763=>0.0008, 4764=>0.0008, 4765=>0.0008, 4766=>0.0008, 4767=>0.0008, 4768=>0.0008, 4769=>0.0008, 4770=>0.0008, 4771=>0.0008, 4772=>0.0008, 4773=>0.0008, 4774=>0.0008, 4775=>0.0008, 4776=>0.0008, 4777=>0.0008, 4778=>0.0008, 4779=>0.0008, 4780=>0.0008, 4781=>0.0008, 4782=>0.0008, 4783=>0.0008, 4784=>0.0008, 4785=>0.0008, 4786=>0.0008, 4787=>0.0008, 4788=>0.0008, 4789=>0.0008, 4790=>0.0008, 4791=>0.0008, 4792=>0.0008, 4793=>0.0008, 4794=>0.0008, 4795=>0.0008, 4796=>0.0008, 4797=>0.0008, 4798=>0.0008, 4799=>0.0008, 4800=>0.0008, 4801=>0.0008, 4802=>0.0008, 4803=>0.0008, 4804=>0.0008, 4805=>0.0008, 4806=>0.0008, 4807=>0.0008, 4808=>0.0008, 4809=>0.0008, 4810=>0.0008, 4811=>0.0008, 4812=>0.0008, 4813=>0.0008, 4814=>0.0008, 4815=>0.0008, 4816=>0.0008, 4817=>0.0008, 4818=>0.0008, 4819=>0.0008, 4820=>0.0008, 4821=>0.0008, 4822=>0.0008, 4823=>0.0008, 4824=>0.0008, 4825=>0.0008, 4826=>0.0008, 4827=>0.0008, 4828=>0.0008, 4829=>0.0008, 4830=>0.0008, 4831=>0.0008, 4832=>0.0008, 4833=>0.0008, 4834=>0.0008, 4835=>0.0008, 4836=>0.0008, 4837=>0.0008, 4838=>0.0008, 4839=>0.0008, 4840=>0.0008, 4841=>0.0008, 4842=>0.0008, 4843=>0.0008, 4844=>0.0008, 4845=>0.0008, 4846=>0.0008, 4847=>0.0008, 4848=>0.0008, 4849=>0.0008, 4850=>0.0008, 4851=>0.0008, 4852=>0.0008, 4853=>0.0008, 4854=>0.0008, 4855=>0.0008, 4856=>0.0008, 4857=>0.0008, 4858=>0.0008, 4859=>0.0008, 4860=>0.0008, 4861=>0.0008, 4862=>0.0008, 4863=>0.0008, 4864=>0.0008, 4865=>0.0008, 4866=>0.0008, 4867=>0.0008, 4868=>0.0008, 4869=>0.0008, 4870=>0.0008, 4871=>0.0008, 4872=>0.0008, 4873=>0.0008, 4874=>0.0008, 4875=>0.0008, 4876=>0.0008, 4877=>0.0008, 4878=>0.0008, 4879=>0.0008, 4880=>0.0008, 4881=>0.0008, 4882=>0.0008, 4883=>0.0008, 4884=>0.0008, 4885=>0.0008, 4886=>0.0008, 4887=>0.0008, 4888=>0.0008, 4889=>0.0008, 4890=>0.0008, 4891=>0.0008, 4892=>0.0008, 4893=>0.0008, 4894=>0.0008, 4895=>0.0008, 4896=>0.0008, 4897=>0.0008, 4898=>0.0008, 4899=>0.0008, 4900=>0.0008, 4901=>0.0008, 4902=>0.0008, 4903=>0.0008, 4904=>0.0008, 4905=>0.0008, 4906=>0.0008, 4907=>0.0008, 4908=>0.0008, 4909=>0.0008, 4910=>0.0008, 4911=>0.0008, 4912=>0.0008, 4913=>0.0008, 4914=>0.0008, 4915=>0.0008, 4916=>0.0008, 4917=>0.0007, 4918=>0.0007, 4919=>0.0007, 4920=>0.0007, 4921=>0.0007, 4922=>0.0007, 4923=>0.0007, 4924=>0.0007, 4925=>0.0007, 4926=>0.0007, 4927=>0.0007, 4928=>0.0007, 4929=>0.0007, 4930=>0.0007, 4931=>0.0007, 4932=>0.0007, 4933=>0.0007, 4934=>0.0007, 4935=>0.0007, 4936=>0.0007, 4937=>0.0007, 4938=>0.0007, 4939=>0.0007, 4940=>0.0007, 4941=>0.0007, 4942=>0.0007, 4943=>0.0007, 4944=>0.0007, 4945=>0.0007, 4946=>0.0007, 4947=>0.0007, 4948=>0.0007, 4949=>0.0007, 4950=>0.0007, 4951=>0.0007, 4952=>0.0007, 4953=>0.0007, 4954=>0.0007, 4955=>0.0007, 4956=>0.0007, 4957=>0.0007, 4958=>0.0007, 4959=>0.0007, 4960=>0.0007, 4961=>0.0007, 4962=>0.0007, 4963=>0.0007, 4964=>0.0007, 4965=>0.0007, 4966=>0.0007, 4967=>0.0007, 4968=>0.0007, 4969=>0.0007, 4970=>0.0007, 4971=>0.0007, 4972=>0.0007, 4973=>0.0007, 4974=>0.0007, 4975=>0.0007, 4976=>0.0007, 4977=>0.0007, 4978=>0.0007, 4979=>0.0007, 4980=>0.0007, 4981=>0.0007, 4982=>0.0007, 4983=>0.0007, 4984=>0.0007, 4985=>0.0007, 4986=>0.0007, 4987=>0.0007, 4988=>0.0007, 4989=>0.0007, 4990=>0.0007, 4991=>0.0007, 4992=>0.0007, 4993=>0.0007, 4994=>0.0007, 4995=>0.0007, 4996=>0.0007, 4997=>0.0007, 4998=>0.0007, 4999=>0.0007, 5000=>0.0007, 5001=>0.0007, 5002=>0.0007, 5003=>0.0007, 5004=>0.0007, 5005=>0.0007, 5006=>0.0007, 5007=>0.0007, 5008=>0.0007, 5009=>0.0007, 5010=>0.0007, 5011=>0.0007, 5012=>0.0007, 5013=>0.0007, 5014=>0.0007, 5015=>0.0007, 5016=>0.0007, 5017=>0.0007, 5018=>0.0007, 5019=>0.0007, 5020=>0.0007, 5021=>0.0007, 5022=>0.0007, 5023=>0.0007, 5024=>0.0007, 5025=>0.0007, 5026=>0.0007, 5027=>0.0007, 5028=>0.0007, 5029=>0.0007, 5030=>0.0007, 5031=>0.0007, 5032=>0.0007, 5033=>0.0007, 5034=>0.0007, 5035=>0.0007, 5036=>0.0007, 5037=>0.0007, 5038=>0.0007, 5039=>0.0007, 5040=>0.0007, 5041=>0.0007, 5042=>0.0007, 5043=>0.0007, 5044=>0.0007, 5045=>0.0007, 5046=>0.0007, 5047=>0.0007, 5048=>0.0007, 5049=>0.0007, 5050=>0.0007, 5051=>0.0007, 5052=>0.0007, 5053=>0.0007, 5054=>0.0007, 5055=>0.0007, 5056=>0.0007, 5057=>0.0007, 5058=>0.0007, 5059=>0.0007, 5060=>0.0007, 5061=>0.0007, 5062=>0.0007, 5063=>0.0007, 5064=>0.0007, 5065=>0.0007, 5066=>0.0007, 5067=>0.0007, 5068=>0.0007, 5069=>0.0007, 5070=>0.0007, 5071=>0.0007, 5072=>0.0007, 5073=>0.0007, 5074=>0.0007, 5075=>0.0007, 5076=>0.0007, 5077=>0.0007, 5078=>0.0007, 5079=>0.0007, 5080=>0.0007, 5081=>0.0007, 5082=>0.0007, 5083=>0.0007, 5084=>0.0007, 5085=>0.0007, 5086=>0.0007, 5087=>0.0007, 5088=>0.0007, 5089=>0.0007, 5090=>0.0007, 5091=>0.0007, 5092=>0.0007, 5093=>0.0007, 5094=>0.0007, 5095=>0.0007, 5096=>0.0007, 5097=>0.0007, 5098=>0.0007, 5099=>0.0007, 5100=>0.0007, 5101=>0.0007, 5102=>0.0007, 5103=>0.0007, 5104=>0.0007, 5105=>0.0007, 5106=>0.0007, 5107=>0.0007, 5108=>0.0007, 5109=>0.0007, 5110=>0.0007, 5111=>0.0007, 5112=>0.0007, 5113=>0.0007, 5114=>0.0007, 5115=>0.0007, 5116=>0.0007, 5117=>0.0007, 5118=>0.0007, 5119=>0.0007, 5120=>0.0007, 5121=>0.0007, 5122=>0.0007, 5123=>0.0007, 5124=>0.0007, 5125=>0.0007, 5126=>0.0007, 5127=>0.0007, 5128=>0.0007, 5129=>0.0007, 5130=>0.0007, 5131=>0.0007, 5132=>0.0007, 5133=>0.0007, 5134=>0.0007, 5135=>0.0007, 5136=>0.0007, 5137=>0.0007, 5138=>0.0007, 5139=>0.0007, 5140=>0.0007, 5141=>0.0007, 5142=>0.0007, 5143=>0.0007, 5144=>0.0007, 5145=>0.0007, 5146=>0.0007, 5147=>0.0007, 5148=>0.0007, 5149=>0.0007, 5150=>0.0007, 5151=>0.0007, 5152=>0.0007, 5153=>0.0007, 5154=>0.0007, 5155=>0.0007, 5156=>0.0007, 5157=>0.0007, 5158=>0.0007, 5159=>0.0007, 5160=>0.0007, 5161=>0.0007, 5162=>0.0007, 5163=>0.0007, 5164=>0.0007, 5165=>0.0007, 5166=>0.0007, 5167=>0.0007, 5168=>0.0007, 5169=>0.0007, 5170=>0.0007, 5171=>0.0007, 5172=>0.0007, 5173=>0.0007, 5174=>0.0007, 5175=>0.0007, 5176=>0.0007, 5177=>0.0007, 5178=>0.0007, 5179=>0.0007, 5180=>0.0007, 5181=>0.0007, 5182=>0.0007, 5183=>0.0007, 5184=>0.0007, 5185=>0.0007, 5186=>0.0007, 5187=>0.0007, 5188=>0.0007, 5189=>0.0007, 5190=>0.0007, 5191=>0.0007, 5192=>0.0007, 5193=>0.0007, 5194=>0.0007, 5195=>0.0007, 5196=>0.0007, 5197=>0.0007, 5198=>0.0007, 5199=>0.0007, 5200=>0.0007, 5201=>0.0007, 5202=>0.0007, 5203=>0.0007, 5204=>0.0007, 5205=>0.0007, 5206=>0.0007, 5207=>0.0007, 5208=>0.0007, 5209=>0.0007, 5210=>0.0007, 5211=>0.0007, 5212=>0.0007, 5213=>0.0007, 5214=>0.0007, 5215=>0.0007, 5216=>0.0007, 5217=>0.0007, 5218=>0.0007, 5219=>0.0007, 5220=>0.0007, 5221=>0.0007, 5222=>0.0007, 5223=>0.0007, 5224=>0.0007, 5225=>0.0007, 5226=>0.0007, 5227=>0.0007, 5228=>0.0007, 5229=>0.0007, 5230=>0.0007, 5231=>0.0007, 5232=>0.0007, 5233=>0.0007, 5234=>0.0007, 5235=>0.0007, 5236=>0.0007, 5237=>0.0007, 5238=>0.0007, 5239=>0.0007, 5240=>0.0007, 5241=>0.0007, 5242=>0.0007, 5243=>0.0007, 5244=>0.0007, 5245=>0.0007, 5246=>0.0007, 5247=>0.0007, 5248=>0.0007, 5249=>0.0007, 5250=>0.0007, 5251=>0.0007, 5252=>0.0007, 5253=>0.0007, 5254=>0.0007, 5255=>0.0007, 5256=>0.0007, 5257=>0.0007, 5258=>0.0007, 5259=>0.0007, 5260=>0.0007, 5261=>0.0007, 5262=>0.0007, 5263=>0.0007, 5264=>0.0007, 5265=>0.0007, 5266=>0.0007, 5267=>0.0007, 5268=>0.0007, 5269=>0.0007, 5270=>0.0007, 5271=>0.0007, 5272=>0.0007, 5273=>0.0007, 5274=>0.0007, 5275=>0.0007, 5276=>0.0007, 5277=>0.0007, 5278=>0.0007, 5279=>0.0007, 5280=>0.0007, 5281=>0.0007, 5282=>0.0007, 5283=>0.0007, 5284=>0.0007, 5285=>0.0007, 5286=>0.0007, 5287=>0.0007, 5288=>0.0007, 5289=>0.0007, 5290=>0.0007, 5291=>0.0007, 5292=>0.0007, 5293=>0.0007, 5294=>0.0007, 5295=>0.0007, 5296=>0.0007, 5297=>0.0007, 5298=>0.0007, 5299=>0.0007, 5300=>0.0007, 5301=>0.0007, 5302=>0.0007, 5303=>0.0007, 5304=>0.0007, 5305=>0.0007, 5306=>0.0007, 5307=>0.0007, 5308=>0.0007, 5309=>0.0007, 5310=>0.0007, 5311=>0.0007, 5312=>0.0007, 5313=>0.0007, 5314=>0.0007, 5315=>0.0007, 5316=>0.0007, 5317=>0.0007, 5318=>0.0007, 5319=>0.0007, 5320=>0.0007, 5321=>0.0007, 5322=>0.0007, 5323=>0.0007, 5324=>0.0007, 5325=>0.0007, 5326=>0.0007, 5327=>0.0007, 5328=>0.0007, 5329=>0.0007, 5330=>0.0007, 5331=>0.0007, 5332=>0.0007, 5333=>0.0007, 5334=>0.0007, 5335=>0.0007, 5336=>0.0007, 5337=>0.0007, 5338=>0.0007, 5339=>0.0007, 5340=>0.0007, 5341=>0.0007, 5342=>0.0007, 5343=>0.0007, 5344=>0.0007, 5345=>0.0007, 5346=>0.0007, 5347=>0.0007, 5348=>0.0007, 5349=>0.0007, 5350=>0.0007, 5351=>0.0007, 5352=>0.0007, 5353=>0.0007, 5354=>0.0007, 5355=>0.0007, 5356=>0.0007, 5357=>0.0007, 5358=>0.0007, 5359=>0.0007, 5360=>0.0007, 5361=>0.0007, 5362=>0.0007, 5363=>0.0007, 5364=>0.0007, 5365=>0.0007, 5366=>0.0007, 5367=>0.0007, 5368=>0.0007, 5369=>0.0007, 5370=>0.0007, 5371=>0.0007, 5372=>0.0007, 5373=>0.0007, 5374=>0.0007, 5375=>0.0007, 5376=>0.0007, 5377=>0.0007, 5378=>0.0007, 5379=>0.0007, 5380=>0.0007, 5381=>0.0007, 5382=>0.0007, 5383=>0.0007, 5384=>0.0007, 5385=>0.0007, 5386=>0.0007, 5387=>0.0007, 5388=>0.0007, 5389=>0.0007, 5390=>0.0007, 5391=>0.0007, 5392=>0.0007, 5393=>0.0007, 5394=>0.0007, 5395=>0.0007, 5396=>0.0007, 5397=>0.0007, 5398=>0.0007, 5399=>0.0007, 5400=>0.0007, 5401=>0.0007, 5402=>0.0007, 5403=>0.0007, 5404=>0.0007, 5405=>0.0007, 5406=>0.0007, 5407=>0.0007, 5408=>0.0007, 5409=>0.0007, 5410=>0.0007, 5411=>0.0007, 5412=>0.0007, 5413=>0.0007, 5414=>0.0007, 5415=>0.0007, 5416=>0.0007, 5417=>0.0007, 5418=>0.0007, 5419=>0.0007, 5420=>0.0007, 5421=>0.0007, 5422=>0.0007, 5423=>0.0007, 5424=>0.0007, 5425=>0.0007, 5426=>0.0007, 5427=>0.0007, 5428=>0.0007, 5429=>0.0007, 5430=>0.0007, 5431=>0.0007, 5432=>0.0007, 5433=>0.0007, 5434=>0.0007, 5435=>0.0007, 5436=>0.0007, 5437=>0.0007, 5438=>0.0007, 5439=>0.0007, 5440=>0.0007, 5441=>0.0007, 5442=>0.0007, 5443=>0.0007, 5444=>0.0007, 5445=>0.0007, 5446=>0.0007, 5447=>0.0007, 5448=>0.0007, 5449=>0.0007, 5450=>0.0007, 5451=>0.0007, 5452=>0.0007, 5453=>0.0007, 5454=>0.0007, 5455=>0.0007, 5456=>0.0007, 5457=>0.0007, 5458=>0.0007, 5459=>0.0007, 5460=>0.0007, 5461=>0.0007, 5462=>0.0007, 5463=>0.0007, 5464=>0.0007, 5465=>0.0007, 5466=>0.0007, 5467=>0.0007, 5468=>0.0007, 5469=>0.0007, 5470=>0.0007, 5471=>0.0007, 5472=>0.0007, 5473=>0.0007, 5474=>0.0007, 5475=>0.0007, 5476=>0.0007, 5477=>0.0007, 5478=>0.0007, 5479=>0.0007, 5480=>0.0007, 5481=>0.0007, 5482=>0.0007, 5483=>0.0007, 5484=>0.0007, 5485=>0.0007, 5486=>0.0007, 5487=>0.0007, 5488=>0.0007, 5489=>0.0007, 5490=>0.0007, 5491=>0.0007, 5492=>0.0007, 5493=>0.0007, 5494=>0.0007, 5495=>0.0007, 5496=>0.0007, 5497=>0.0007, 5498=>0.0007, 5499=>0.0007, 5500=>0.0007, 5501=>0.0007, 5502=>0.0007, 5503=>0.0007, 5504=>0.0007, 5505=>0.0007, 5506=>0.0007, 5507=>0.0007, 5508=>0.0007, 5509=>0.0007, 5510=>0.0007, 5511=>0.0007, 5512=>0.0007, 5513=>0.0007, 5514=>0.0007, 5515=>0.0007, 5516=>0.0007, 5517=>0.0007, 5518=>0.0007, 5519=>0.0007, 5520=>0.0007, 5521=>0.0007, 5522=>0.0007, 5523=>0.0007, 5524=>0.0007, 5525=>0.0007, 5526=>0.0007, 5527=>0.0007, 5528=>0.0007, 5529=>0.0007, 5530=>0.0007, 5531=>0.0007, 5532=>0.0007, 5533=>0.0007, 5534=>0.0007, 5535=>0.0007, 5536=>0.0007, 5537=>0.0007, 5538=>0.0007, 5539=>0.0007, 5540=>0.0007, 5541=>0.0007, 5542=>0.0007, 5543=>0.0007, 5544=>0.0007, 5545=>0.0007, 5546=>0.0007, 5547=>0.0007, 5548=>0.0007, 5549=>0.0007, 5550=>0.0007, 5551=>0.0007, 5552=>0.0007, 5553=>0.0007, 5554=>0.0007, 5555=>0.0007, 5556=>0.0007, 5557=>0.0007, 5558=>0.0007, 5559=>0.0007, 5560=>0.0007, 5561=>0.0007, 5562=>0.0007, 5563=>0.0007, 5564=>0.0007, 5565=>0.0007, 5566=>0.0007, 5567=>0.0007, 5568=>0.0007, 5569=>0.0007, 5570=>0.0007, 5571=>0.0007, 5572=>0.0007, 5573=>0.0007, 5574=>0.0007, 5575=>0.0007, 5576=>0.0007, 5577=>0.0007, 5578=>0.0007, 5579=>0.0007, 5580=>0.0007, 5581=>0.0007, 5582=>0.0007, 5583=>0.0007, 5584=>0.0007, 5585=>0.0007, 5586=>0.0007, 5587=>0.0007, 5588=>0.0007, 5589=>0.0007, 5590=>0.0007, 5591=>0.0007, 5592=>0.0007, 5593=>0.0007, 5594=>0.0007, 5595=>0.0007, 5596=>0.0007, 5597=>0.0007, 5598=>0.0007, 5599=>0.0007, 5600=>0.0007, 5601=>0.0007, 5602=>0.0007, 5603=>0.0007, 5604=>0.0007, 5605=>0.0007, 5606=>0.0007, 5607=>0.0007, 5608=>0.0007, 5609=>0.0007, 5610=>0.0007, 5611=>0.0007, 5612=>0.0007, 5613=>0.0007, 5614=>0.0007, 5615=>0.0007, 5616=>0.0007, 5617=>0.0007, 5618=>0.0007, 5619=>0.0007, 5620=>0.0007, 5621=>0.0007, 5622=>0.0007, 5623=>0.0007, 5624=>0.0007, 5625=>0.0007, 5626=>0.0007, 5627=>0.0007, 5628=>0.0007, 5629=>0.0007, 5630=>0.0007, 5631=>0.0007, 5632=>0.0007, 5633=>0.0007, 5634=>0.0007, 5635=>0.0007, 5636=>0.0007, 5637=>0.0007, 5638=>0.0007, 5639=>0.0007, 5640=>0.0007, 5641=>0.0007, 5642=>0.0007, 5643=>0.0007, 5644=>0.0007, 5645=>0.0007, 5646=>0.0007, 5647=>0.0007, 5648=>0.0007, 5649=>0.0007, 5650=>0.0007, 5651=>0.0007, 5652=>0.0007, 5653=>0.0007, 5654=>0.0007, 5655=>0.0007, 5656=>0.0007, 5657=>0.0007, 5658=>0.0007, 5659=>0.0007, 5660=>0.0007, 5661=>0.0007, 5662=>0.0007, 5663=>0.0007, 5664=>0.0007, 5665=>0.0007, 5666=>0.0007, 5667=>0.0007, 5668=>0.0007, 5669=>0.0007, 5670=>0.0007, 5671=>0.0007, 5672=>0.0007, 5673=>0.0007, 5674=>0.0006, 5675=>0.0006, 5676=>0.0006, 5677=>0.0006, 5678=>0.0006, 5679=>0.0006, 5680=>0.0006, 5681=>0.0006, 5682=>0.0006, 5683=>0.0006, 5684=>0.0006, 5685=>0.0006, 5686=>0.0006, 5687=>0.0006, 5688=>0.0006, 5689=>0.0006, 5690=>0.0006, 5691=>0.0006, 5692=>0.0006, 5693=>0.0006, 5694=>0.0006, 5695=>0.0006, 5696=>0.0006, 5697=>0.0006, 5698=>0.0006, 5699=>0.0006, 5700=>0.0006, 5701=>0.0006, 5702=>0.0006, 5703=>0.0006, 5704=>0.0006, 5705=>0.0006, 5706=>0.0006, 5707=>0.0006, 5708=>0.0006, 5709=>0.0006, 5710=>0.0006, 5711=>0.0006, 5712=>0.0006, 5713=>0.0006, 5714=>0.0006, 5715=>0.0006, 5716=>0.0006, 5717=>0.0006, 5718=>0.0006, 5719=>0.0006, 5720=>0.0006, 5721=>0.0006, 5722=>0.0006, 5723=>0.0006, 5724=>0.0006, 5725=>0.0006, 5726=>0.0006, 5727=>0.0006, 5728=>0.0006, 5729=>0.0006, 5730=>0.0006, 5731=>0.0006, 5732=>0.0006, 5733=>0.0006, 5734=>0.0006, 5735=>0.0006, 5736=>0.0006, 5737=>0.0006, 5738=>0.0006, 5739=>0.0006, 5740=>0.0006, 5741=>0.0006, 5742=>0.0006, 5743=>0.0006, 5744=>0.0006, 5745=>0.0006, 5746=>0.0006, 5747=>0.0006, 5748=>0.0006, 5749=>0.0006, 5750=>0.0006, 5751=>0.0006, 5752=>0.0006, 5753=>0.0006, 5754=>0.0006, 5755=>0.0006, 5756=>0.0006, 5757=>0.0006, 5758=>0.0006, 5759=>0.0006, 5760=>0.0006, 5761=>0.0006, 5762=>0.0006, 5763=>0.0006, 5764=>0.0006, 5765=>0.0006, 5766=>0.0006, 5767=>0.0006, 5768=>0.0006, 5769=>0.0006, 5770=>0.0006, 5771=>0.0006, 5772=>0.0006, 5773=>0.0006, 5774=>0.0006, 5775=>0.0006, 5776=>0.0006, 5777=>0.0006, 5778=>0.0006, 5779=>0.0006, 5780=>0.0006, 5781=>0.0006, 5782=>0.0006, 5783=>0.0006, 5784=>0.0006, 5785=>0.0006, 5786=>0.0006, 5787=>0.0006, 5788=>0.0006, 5789=>0.0006, 5790=>0.0006, 5791=>0.0006, 5792=>0.0006, 5793=>0.0006, 5794=>0.0006, 5795=>0.0006, 5796=>0.0006, 5797=>0.0006, 5798=>0.0006, 5799=>0.0006, 5800=>0.0006, 5801=>0.0006, 5802=>0.0006, 5803=>0.0006, 5804=>0.0006, 5805=>0.0006, 5806=>0.0006, 5807=>0.0006, 5808=>0.0006, 5809=>0.0006, 5810=>0.0006, 5811=>0.0006, 5812=>0.0006, 5813=>0.0006, 5814=>0.0006, 5815=>0.0006, 5816=>0.0006, 5817=>0.0006, 5818=>0.0006, 5819=>0.0006, 5820=>0.0006, 5821=>0.0006, 5822=>0.0006, 5823=>0.0006, 5824=>0.0006, 5825=>0.0006, 5826=>0.0006, 5827=>0.0006, 5828=>0.0006, 5829=>0.0006, 5830=>0.0006, 5831=>0.0006, 5832=>0.0006, 5833=>0.0006, 5834=>0.0006, 5835=>0.0006, 5836=>0.0006, 5837=>0.0006, 5838=>0.0006, 5839=>0.0006, 5840=>0.0006, 5841=>0.0006, 5842=>0.0006, 5843=>0.0006, 5844=>0.0006, 5845=>0.0006, 5846=>0.0006, 5847=>0.0006, 5848=>0.0006, 5849=>0.0006, 5850=>0.0006, 5851=>0.0006, 5852=>0.0006, 5853=>0.0006, 5854=>0.0006, 5855=>0.0006, 5856=>0.0006, 5857=>0.0006, 5858=>0.0006, 5859=>0.0006, 5860=>0.0006, 5861=>0.0006, 5862=>0.0006, 5863=>0.0006, 5864=>0.0006, 5865=>0.0006, 5866=>0.0006, 5867=>0.0006, 5868=>0.0006, 5869=>0.0006, 5870=>0.0006, 5871=>0.0006, 5872=>0.0006, 5873=>0.0006, 5874=>0.0006, 5875=>0.0006, 5876=>0.0006, 5877=>0.0006, 5878=>0.0006, 5879=>0.0006, 5880=>0.0006, 5881=>0.0006, 5882=>0.0006, 5883=>0.0006, 5884=>0.0006, 5885=>0.0006, 5886=>0.0006, 5887=>0.0006, 5888=>0.0006, 5889=>0.0006, 5890=>0.0006, 5891=>0.0006, 5892=>0.0006, 5893=>0.0006, 5894=>0.0006, 5895=>0.0006, 5896=>0.0006, 5897=>0.0006, 5898=>0.0006, 5899=>0.0006, 5900=>0.0006, 5901=>0.0006, 5902=>0.0006, 5903=>0.0006, 5904=>0.0006, 5905=>0.0006, 5906=>0.0006, 5907=>0.0006, 5908=>0.0006, 5909=>0.0006, 5910=>0.0006, 5911=>0.0006, 5912=>0.0006, 5913=>0.0006, 5914=>0.0006, 5915=>0.0006, 5916=>0.0006, 5917=>0.0006, 5918=>0.0006, 5919=>0.0006, 5920=>0.0006, 5921=>0.0006, 5922=>0.0006, 5923=>0.0006, 5924=>0.0006, 5925=>0.0006, 5926=>0.0006, 5927=>0.0006, 5928=>0.0006, 5929=>0.0006, 5930=>0.0006, 5931=>0.0006, 5932=>0.0006, 5933=>0.0006, 5934=>0.0006, 5935=>0.0006, 5936=>0.0006, 5937=>0.0006, 5938=>0.0006, 5939=>0.0006, 5940=>0.0006, 5941=>0.0006, 5942=>0.0006, 5943=>0.0006, 5944=>0.0006, 5945=>0.0006, 5946=>0.0006, 5947=>0.0006, 5948=>0.0006, 5949=>0.0006, 5950=>0.0006, 5951=>0.0006, 5952=>0.0006, 5953=>0.0006, 5954=>0.0006, 5955=>0.0006, 5956=>0.0006, 5957=>0.0006, 5958=>0.0006, 5959=>0.0006, 5960=>0.0006, 5961=>0.0006, 5962=>0.0006, 5963=>0.0006, 5964=>0.0006, 5965=>0.0006, 5966=>0.0006, 5967=>0.0006, 5968=>0.0006, 5969=>0.0006, 5970=>0.0006, 5971=>0.0006, 5972=>0.0006, 5973=>0.0006, 5974=>0.0006, 5975=>0.0006, 5976=>0.0006, 5977=>0.0006, 5978=>0.0006, 5979=>0.0006, 5980=>0.0006, 5981=>0.0006, 5982=>0.0006, 5983=>0.0006, 5984=>0.0006, 5985=>0.0006, 5986=>0.0006, 5987=>0.0006, 5988=>0.0006, 5989=>0.0006, 5990=>0.0006, 5991=>0.0006, 5992=>0.0006, 5993=>0.0006, 5994=>0.0006, 5995=>0.0006, 5996=>0.0006, 5997=>0.0006, 5998=>0.0006, 5999=>0.0006, 6000=>0.0006, 6001=>0.0006, 6002=>0.0006, 6003=>0.0006, 6004=>0.0006, 6005=>0.0006, 6006=>0.0006, 6007=>0.0006, 6008=>0.0006, 6009=>0.0006, 6010=>0.0006, 6011=>0.0006, 6012=>0.0006, 6013=>0.0006, 6014=>0.0006, 6015=>0.0006, 6016=>0.0006, 6017=>0.0006, 6018=>0.0006, 6019=>0.0006, 6020=>0.0006, 6021=>0.0006, 6022=>0.0006, 6023=>0.0006, 6024=>0.0006, 6025=>0.0006, 6026=>0.0006, 6027=>0.0006, 6028=>0.0006, 6029=>0.0006, 6030=>0.0006, 6031=>0.0006, 6032=>0.0006, 6033=>0.0006, 6034=>0.0006, 6035=>0.0006, 6036=>0.0006, 6037=>0.0006, 6038=>0.0006, 6039=>0.0006, 6040=>0.0006, 6041=>0.0006, 6042=>0.0006, 6043=>0.0006, 6044=>0.0006, 6045=>0.0006, 6046=>0.0006, 6047=>0.0006, 6048=>0.0006, 6049=>0.0006, 6050=>0.0006, 6051=>0.0006, 6052=>0.0006, 6053=>0.0006, 6054=>0.0006, 6055=>0.0006, 6056=>0.0006, 6057=>0.0006, 6058=>0.0006, 6059=>0.0006, 6060=>0.0006, 6061=>0.0006, 6062=>0.0006, 6063=>0.0006, 6064=>0.0006, 6065=>0.0006, 6066=>0.0006, 6067=>0.0006, 6068=>0.0006, 6069=>0.0006, 6070=>0.0006, 6071=>0.0006, 6072=>0.0006, 6073=>0.0006, 6074=>0.0006, 6075=>0.0006, 6076=>0.0006, 6077=>0.0006, 6078=>0.0006, 6079=>0.0006, 6080=>0.0006, 6081=>0.0006, 6082=>0.0006, 6083=>0.0006, 6084=>0.0006, 6085=>0.0006, 6086=>0.0006, 6087=>0.0006, 6088=>0.0006, 6089=>0.0006, 6090=>0.0006, 6091=>0.0006, 6092=>0.0006, 6093=>0.0006, 6094=>0.0006, 6095=>0.0006, 6096=>0.0006, 6097=>0.0006, 6098=>0.0006, 6099=>0.0006, 6100=>0.0006, 6101=>0.0006, 6102=>0.0006, 6103=>0.0006, 6104=>0.0006, 6105=>0.0006, 6106=>0.0006, 6107=>0.0006, 6108=>0.0006, 6109=>0.0006, 6110=>0.0006, 6111=>0.0006, 6112=>0.0006, 6113=>0.0006, 6114=>0.0006, 6115=>0.0006, 6116=>0.0006, 6117=>0.0006, 6118=>0.0006, 6119=>0.0006, 6120=>0.0006, 6121=>0.0006, 6122=>0.0006, 6123=>0.0006, 6124=>0.0006, 6125=>0.0006, 6126=>0.0006, 6127=>0.0006, 6128=>0.0006, 6129=>0.0006, 6130=>0.0006, 6131=>0.0006, 6132=>0.0006, 6133=>0.0006, 6134=>0.0006, 6135=>0.0006, 6136=>0.0006, 6137=>0.0006, 6138=>0.0006, 6139=>0.0006, 6140=>0.0006, 6141=>0.0006, 6142=>0.0006, 6143=>0.0006, 6144=>0.0006, 6145=>0.0006, 6146=>0.0006, 6147=>0.0006, 6148=>0.0006, 6149=>0.0006, 6150=>0.0006, 6151=>0.0006, 6152=>0.0006, 6153=>0.0006, 6154=>0.0006, 6155=>0.0006, 6156=>0.0006, 6157=>0.0006, 6158=>0.0006, 6159=>0.0006, 6160=>0.0006, 6161=>0.0006, 6162=>0.0006, 6163=>0.0006, 6164=>0.0006, 6165=>0.0006, 6166=>0.0006, 6167=>0.0006, 6168=>0.0006, 6169=>0.0006, 6170=>0.0006, 6171=>0.0006, 6172=>0.0006, 6173=>0.0006, 6174=>0.0006, 6175=>0.0006, 6176=>0.0006, 6177=>0.0006, 6178=>0.0006, 6179=>0.0006, 6180=>0.0006, 6181=>0.0006, 6182=>0.0006, 6183=>0.0006, 6184=>0.0006, 6185=>0.0006, 6186=>0.0006, 6187=>0.0006, 6188=>0.0006, 6189=>0.0006, 6190=>0.0006, 6191=>0.0006, 6192=>0.0006, 6193=>0.0006, 6194=>0.0006, 6195=>0.0006, 6196=>0.0006, 6197=>0.0006, 6198=>0.0006, 6199=>0.0006, 6200=>0.0006, 6201=>0.0006, 6202=>0.0006, 6203=>0.0006, 6204=>0.0006, 6205=>0.0006, 6206=>0.0006, 6207=>0.0006, 6208=>0.0006, 6209=>0.0006, 6210=>0.0006, 6211=>0.0006, 6212=>0.0006, 6213=>0.0006, 6214=>0.0006, 6215=>0.0006, 6216=>0.0006, 6217=>0.0006, 6218=>0.0006, 6219=>0.0006, 6220=>0.0006, 6221=>0.0006, 6222=>0.0006, 6223=>0.0006, 6224=>0.0006, 6225=>0.0006, 6226=>0.0006, 6227=>0.0006, 6228=>0.0006, 6229=>0.0006, 6230=>0.0006, 6231=>0.0006, 6232=>0.0006, 6233=>0.0006, 6234=>0.0006, 6235=>0.0006, 6236=>0.0006, 6237=>0.0006, 6238=>0.0006, 6239=>0.0006, 6240=>0.0006, 6241=>0.0006, 6242=>0.0006, 6243=>0.0006, 6244=>0.0006, 6245=>0.0006, 6246=>0.0006, 6247=>0.0006, 6248=>0.0006, 6249=>0.0006, 6250=>0.0006, 6251=>0.0006, 6252=>0.0006, 6253=>0.0006, 6254=>0.0006, 6255=>0.0006, 6256=>0.0006, 6257=>0.0006, 6258=>0.0006, 6259=>0.0006, 6260=>0.0006, 6261=>0.0006, 6262=>0.0006, 6263=>0.0006, 6264=>0.0006, 6265=>0.0006, 6266=>0.0006, 6267=>0.0006, 6268=>0.0006, 6269=>0.0006, 6270=>0.0006, 6271=>0.0006, 6272=>0.0006, 6273=>0.0006, 6274=>0.0006, 6275=>0.0006, 6276=>0.0006, 6277=>0.0006, 6278=>0.0006, 6279=>0.0006, 6280=>0.0006, 6281=>0.0006, 6282=>0.0006, 6283=>0.0006, 6284=>0.0006, 6285=>0.0006, 6286=>0.0006, 6287=>0.0006, 6288=>0.0006, 6289=>0.0006, 6290=>0.0006, 6291=>0.0006, 6292=>0.0006, 6293=>0.0006, 6294=>0.0006, 6295=>0.0006, 6296=>0.0006, 6297=>0.0006, 6298=>0.0006, 6299=>0.0006, 6300=>0.0006, 6301=>0.0006, 6302=>0.0006, 6303=>0.0006, 6304=>0.0006, 6305=>0.0006, 6306=>0.0006, 6307=>0.0006, 6308=>0.0006, 6309=>0.0006, 6310=>0.0006, 6311=>0.0006, 6312=>0.0006, 6313=>0.0006, 6314=>0.0006, 6315=>0.0006, 6316=>0.0006, 6317=>0.0006, 6318=>0.0006, 6319=>0.0006, 6320=>0.0006, 6321=>0.0006, 6322=>0.0006, 6323=>0.0006, 6324=>0.0006, 6325=>0.0006, 6326=>0.0006, 6327=>0.0006, 6328=>0.0006, 6329=>0.0006, 6330=>0.0006, 6331=>0.0006, 6332=>0.0006, 6333=>0.0006, 6334=>0.0006, 6335=>0.0006, 6336=>0.0006, 6337=>0.0006, 6338=>0.0006, 6339=>0.0006, 6340=>0.0006, 6341=>0.0006, 6342=>0.0006, 6343=>0.0006, 6344=>0.0006, 6345=>0.0006, 6346=>0.0006, 6347=>0.0006, 6348=>0.0006, 6349=>0.0006, 6350=>0.0006, 6351=>0.0006, 6352=>0.0006, 6353=>0.0006, 6354=>0.0006, 6355=>0.0006, 6356=>0.0006, 6357=>0.0006, 6358=>0.0006, 6359=>0.0006, 6360=>0.0006, 6361=>0.0006, 6362=>0.0006, 6363=>0.0006, 6364=>0.0006, 6365=>0.0006, 6366=>0.0006, 6367=>0.0006, 6368=>0.0006, 6369=>0.0006, 6370=>0.0006, 6371=>0.0006, 6372=>0.0006, 6373=>0.0006, 6374=>0.0006, 6375=>0.0006, 6376=>0.0006, 6377=>0.0006, 6378=>0.0006, 6379=>0.0006, 6380=>0.0006, 6381=>0.0006, 6382=>0.0006, 6383=>0.0006, 6384=>0.0006, 6385=>0.0006, 6386=>0.0006, 6387=>0.0006, 6388=>0.0006, 6389=>0.0006, 6390=>0.0006, 6391=>0.0006, 6392=>0.0006, 6393=>0.0006, 6394=>0.0006, 6395=>0.0006, 6396=>0.0006, 6397=>0.0006, 6398=>0.0006, 6399=>0.0006, 6400=>0.0006, 6401=>0.0006, 6402=>0.0006, 6403=>0.0006, 6404=>0.0006, 6405=>0.0006, 6406=>0.0006, 6407=>0.0006, 6408=>0.0006, 6409=>0.0006, 6410=>0.0006, 6411=>0.0006, 6412=>0.0006, 6413=>0.0006, 6414=>0.0006, 6415=>0.0006, 6416=>0.0006, 6417=>0.0006, 6418=>0.0006, 6419=>0.0006, 6420=>0.0006, 6421=>0.0006, 6422=>0.0006, 6423=>0.0006, 6424=>0.0006, 6425=>0.0006, 6426=>0.0006, 6427=>0.0006, 6428=>0.0006, 6429=>0.0006, 6430=>0.0006, 6431=>0.0006, 6432=>0.0006, 6433=>0.0006, 6434=>0.0006, 6435=>0.0006, 6436=>0.0006, 6437=>0.0006, 6438=>0.0006, 6439=>0.0006, 6440=>0.0006, 6441=>0.0006, 6442=>0.0006, 6443=>0.0006, 6444=>0.0006, 6445=>0.0006, 6446=>0.0006, 6447=>0.0006, 6448=>0.0006, 6449=>0.0006, 6450=>0.0006, 6451=>0.0006, 6452=>0.0006, 6453=>0.0006, 6454=>0.0006, 6455=>0.0006, 6456=>0.0006, 6457=>0.0006, 6458=>0.0006, 6459=>0.0006, 6460=>0.0006, 6461=>0.0006, 6462=>0.0006, 6463=>0.0006, 6464=>0.0006, 6465=>0.0006, 6466=>0.0006, 6467=>0.0006, 6468=>0.0006, 6469=>0.0006, 6470=>0.0006, 6471=>0.0006, 6472=>0.0006, 6473=>0.0006, 6474=>0.0006, 6475=>0.0006, 6476=>0.0006, 6477=>0.0006, 6478=>0.0006, 6479=>0.0006, 6480=>0.0006, 6481=>0.0006, 6482=>0.0006, 6483=>0.0006, 6484=>0.0006, 6485=>0.0006, 6486=>0.0006, 6487=>0.0006, 6488=>0.0006, 6489=>0.0006, 6490=>0.0006, 6491=>0.0006, 6492=>0.0006, 6493=>0.0006, 6494=>0.0006, 6495=>0.0006, 6496=>0.0006, 6497=>0.0006, 6498=>0.0006, 6499=>0.0006, 6500=>0.0006, 6501=>0.0006, 6502=>0.0006, 6503=>0.0006, 6504=>0.0006, 6505=>0.0006, 6506=>0.0006, 6507=>0.0006, 6508=>0.0006, 6509=>0.0006, 6510=>0.0006, 6511=>0.0006, 6512=>0.0006, 6513=>0.0006, 6514=>0.0006, 6515=>0.0006, 6516=>0.0006, 6517=>0.0006, 6518=>0.0006, 6519=>0.0006, 6520=>0.0006, 6521=>0.0006, 6522=>0.0006, 6523=>0.0006, 6524=>0.0006, 6525=>0.0006, 6526=>0.0006, 6527=>0.0006, 6528=>0.0006, 6529=>0.0006, 6530=>0.0006, 6531=>0.0006, 6532=>0.0006, 6533=>0.0006, 6534=>0.0006, 6535=>0.0006, 6536=>0.0006, 6537=>0.0006, 6538=>0.0006, 6539=>0.0006, 6540=>0.0006, 6541=>0.0006, 6542=>0.0006, 6543=>0.0006, 6544=>0.0006, 6545=>0.0006, 6546=>0.0006, 6547=>0.0006, 6548=>0.0006, 6549=>0.0006, 6550=>0.0006, 6551=>0.0006, 6552=>0.0006, 6553=>0.0006, 6554=>0.0006, 6555=>0.0006, 6556=>0.0006, 6557=>0.0006, 6558=>0.0006, 6559=>0.0006, 6560=>0.0006, 6561=>0.0006, 6562=>0.0006, 6563=>0.0006, 6564=>0.0006, 6565=>0.0006, 6566=>0.0006, 6567=>0.0006, 6568=>0.0006, 6569=>0.0006, 6570=>0.0006, 6571=>0.0006, 6572=>0.0006, 6573=>0.0006, 6574=>0.0006, 6575=>0.0006, 6576=>0.0006, 6577=>0.0006, 6578=>0.0006, 6579=>0.0006, 6580=>0.0006, 6581=>0.0006, 6582=>0.0006, 6583=>0.0006, 6584=>0.0006, 6585=>0.0006, 6586=>0.0006, 6587=>0.0006, 6588=>0.0006, 6589=>0.0006, 6590=>0.0006, 6591=>0.0006, 6592=>0.0006, 6593=>0.0006, 6594=>0.0006, 6595=>0.0006, 6596=>0.0006, 6597=>0.0006, 6598=>0.0006, 6599=>0.0006, 6600=>0.0006, 6601=>0.0006, 6602=>0.0006, 6603=>0.0006, 6604=>0.0006, 6605=>0.0006, 6606=>0.0006, 6607=>0.0006, 6608=>0.0006, 6609=>0.0006, 6610=>0.0006, 6611=>0.0006, 6612=>0.0006, 6613=>0.0006, 6614=>0.0006, 6615=>0.0006, 6616=>0.0006, 6617=>0.0006, 6618=>0.0006, 6619=>0.0006, 6620=>0.0006, 6621=>0.0006, 6622=>0.0006, 6623=>0.0006, 6624=>0.0006, 6625=>0.0006, 6626=>0.0006, 6627=>0.0006, 6628=>0.0006, 6629=>0.0006, 6630=>0.0006, 6631=>0.0006, 6632=>0.0006, 6633=>0.0006, 6634=>0.0006, 6635=>0.0006, 6636=>0.0006, 6637=>0.0006, 6638=>0.0006, 6639=>0.0006, 6640=>0.0006, 6641=>0.0006, 6642=>0.0006, 6643=>0.0006, 6644=>0.0006, 6645=>0.0006, 6646=>0.0006, 6647=>0.0006, 6648=>0.0006, 6649=>0.0006, 6650=>0.0006, 6651=>0.0006, 6652=>0.0006, 6653=>0.0006, 6654=>0.0006, 6655=>0.0006, 6656=>0.0006, 6657=>0.0006, 6658=>0.0006, 6659=>0.0006, 6660=>0.0006, 6661=>0.0006, 6662=>0.0006, 6663=>0.0006, 6664=>0.0006, 6665=>0.0006, 6666=>0.0006, 6667=>0.0006, 6668=>0.0006, 6669=>0.0006, 6670=>0.0006, 6671=>0.0006, 6672=>0.0006, 6673=>0.0006, 6674=>0.0006, 6675=>0.0006, 6676=>0.0006, 6677=>0.0006, 6678=>0.0006, 6679=>0.0006, 6680=>0.0006, 6681=>0.0006, 6682=>0.0006, 6683=>0.0006, 6684=>0.0006, 6685=>0.0006, 6686=>0.0006, 6687=>0.0006, 6688=>0.0006, 6689=>0.0006, 6690=>0.0006, 6691=>0.0006, 6692=>0.0006, 6693=>0.0006, 6694=>0.0006, 6695=>0.0006, 6696=>0.0006, 6697=>0.0006, 6698=>0.0006, 6699=>0.0006, 6700=>0.0006, 6701=>0.0006, 6702=>0.0006, 6703=>0.0006, 6704=>0.0006, 6705=>0.0006, 6706=>0.0005, 6707=>0.0005, 6708=>0.0005, 6709=>0.0005, 6710=>0.0005, 6711=>0.0005, 6712=>0.0005, 6713=>0.0005, 6714=>0.0005, 6715=>0.0005, 6716=>0.0005, 6717=>0.0005, 6718=>0.0005, 6719=>0.0005, 6720=>0.0005, 6721=>0.0005, 6722=>0.0005, 6723=>0.0005, 6724=>0.0005, 6725=>0.0005, 6726=>0.0005, 6727=>0.0005, 6728=>0.0005, 6729=>0.0005, 6730=>0.0005, 6731=>0.0005, 6732=>0.0005, 6733=>0.0005, 6734=>0.0005, 6735=>0.0005, 6736=>0.0005, 6737=>0.0005, 6738=>0.0005, 6739=>0.0005, 6740=>0.0005, 6741=>0.0005, 6742=>0.0005, 6743=>0.0005, 6744=>0.0005, 6745=>0.0005, 6746=>0.0005, 6747=>0.0005, 6748=>0.0005, 6749=>0.0005, 6750=>0.0005, 6751=>0.0005, 6752=>0.0005, 6753=>0.0005, 6754=>0.0005, 6755=>0.0005, 6756=>0.0005, 6757=>0.0005, 6758=>0.0005, 6759=>0.0005, 6760=>0.0005, 6761=>0.0005, 6762=>0.0005, 6763=>0.0005, 6764=>0.0005, 6765=>0.0005, 6766=>0.0005, 6767=>0.0005, 6768=>0.0005, 6769=>0.0005, 6770=>0.0005, 6771=>0.0005, 6772=>0.0005, 6773=>0.0005, 6774=>0.0005, 6775=>0.0005, 6776=>0.0005, 6777=>0.0005, 6778=>0.0005, 6779=>0.0005, 6780=>0.0005, 6781=>0.0005, 6782=>0.0005, 6783=>0.0005, 6784=>0.0005, 6785=>0.0005, 6786=>0.0005, 6787=>0.0005, 6788=>0.0005, 6789=>0.0005, 6790=>0.0005, 6791=>0.0005, 6792=>0.0005, 6793=>0.0005, 6794=>0.0005, 6795=>0.0005, 6796=>0.0005, 6797=>0.0005, 6798=>0.0005, 6799=>0.0005, 6800=>0.0005, 6801=>0.0005, 6802=>0.0005, 6803=>0.0005, 6804=>0.0005, 6805=>0.0005, 6806=>0.0005, 6807=>0.0005, 6808=>0.0005, 6809=>0.0005, 6810=>0.0005, 6811=>0.0005, 6812=>0.0005, 6813=>0.0005, 6814=>0.0005, 6815=>0.0005, 6816=>0.0005, 6817=>0.0005, 6818=>0.0005, 6819=>0.0005, 6820=>0.0005, 6821=>0.0005, 6822=>0.0005, 6823=>0.0005, 6824=>0.0005, 6825=>0.0005, 6826=>0.0005, 6827=>0.0005, 6828=>0.0005, 6829=>0.0005, 6830=>0.0005, 6831=>0.0005, 6832=>0.0005, 6833=>0.0005, 6834=>0.0005, 6835=>0.0005, 6836=>0.0005, 6837=>0.0005, 6838=>0.0005, 6839=>0.0005, 6840=>0.0005, 6841=>0.0005, 6842=>0.0005, 6843=>0.0005, 6844=>0.0005, 6845=>0.0005, 6846=>0.0005, 6847=>0.0005, 6848=>0.0005, 6849=>0.0005, 6850=>0.0005, 6851=>0.0005, 6852=>0.0005, 6853=>0.0005, 6854=>0.0005, 6855=>0.0005, 6856=>0.0005, 6857=>0.0005, 6858=>0.0005, 6859=>0.0005, 6860=>0.0005, 6861=>0.0005, 6862=>0.0005, 6863=>0.0005, 6864=>0.0005, 6865=>0.0005, 6866=>0.0005, 6867=>0.0005, 6868=>0.0005, 6869=>0.0005, 6870=>0.0005, 6871=>0.0005, 6872=>0.0005, 6873=>0.0005, 6874=>0.0005, 6875=>0.0005, 6876=>0.0005, 6877=>0.0005, 6878=>0.0005, 6879=>0.0005, 6880=>0.0005, 6881=>0.0005, 6882=>0.0005, 6883=>0.0005, 6884=>0.0005, 6885=>0.0005, 6886=>0.0005, 6887=>0.0005, 6888=>0.0005, 6889=>0.0005, 6890=>0.0005, 6891=>0.0005, 6892=>0.0005, 6893=>0.0005, 6894=>0.0005, 6895=>0.0005, 6896=>0.0005, 6897=>0.0005, 6898=>0.0005, 6899=>0.0005, 6900=>0.0005, 6901=>0.0005, 6902=>0.0005, 6903=>0.0005, 6904=>0.0005, 6905=>0.0005, 6906=>0.0005, 6907=>0.0005, 6908=>0.0005, 6909=>0.0005, 6910=>0.0005, 6911=>0.0005, 6912=>0.0005, 6913=>0.0005, 6914=>0.0005, 6915=>0.0005, 6916=>0.0005, 6917=>0.0005, 6918=>0.0005, 6919=>0.0005, 6920=>0.0005, 6921=>0.0005, 6922=>0.0005, 6923=>0.0005, 6924=>0.0005, 6925=>0.0005, 6926=>0.0005, 6927=>0.0005, 6928=>0.0005, 6929=>0.0005, 6930=>0.0005, 6931=>0.0005, 6932=>0.0005, 6933=>0.0005, 6934=>0.0005, 6935=>0.0005, 6936=>0.0005, 6937=>0.0005, 6938=>0.0005, 6939=>0.0005, 6940=>0.0005, 6941=>0.0005, 6942=>0.0005, 6943=>0.0005, 6944=>0.0005, 6945=>0.0005, 6946=>0.0005, 6947=>0.0005, 6948=>0.0005, 6949=>0.0005, 6950=>0.0005, 6951=>0.0005, 6952=>0.0005, 6953=>0.0005, 6954=>0.0005, 6955=>0.0005, 6956=>0.0005, 6957=>0.0005, 6958=>0.0005, 6959=>0.0005, 6960=>0.0005, 6961=>0.0005, 6962=>0.0005, 6963=>0.0005, 6964=>0.0005, 6965=>0.0005, 6966=>0.0005, 6967=>0.0005, 6968=>0.0005, 6969=>0.0005, 6970=>0.0005, 6971=>0.0005, 6972=>0.0005, 6973=>0.0005, 6974=>0.0005, 6975=>0.0005, 6976=>0.0005, 6977=>0.0005, 6978=>0.0005, 6979=>0.0005, 6980=>0.0005, 6981=>0.0005, 6982=>0.0005, 6983=>0.0005, 6984=>0.0005, 6985=>0.0005, 6986=>0.0005, 6987=>0.0005, 6988=>0.0005, 6989=>0.0005, 6990=>0.0005, 6991=>0.0005, 6992=>0.0005, 6993=>0.0005, 6994=>0.0005, 6995=>0.0005, 6996=>0.0005, 6997=>0.0005, 6998=>0.0005, 6999=>0.0005, 7000=>0.0005, 7001=>0.0005, 7002=>0.0005, 7003=>0.0005, 7004=>0.0005, 7005=>0.0005, 7006=>0.0005, 7007=>0.0005, 7008=>0.0005, 7009=>0.0005, 7010=>0.0005, 7011=>0.0005, 7012=>0.0005, 7013=>0.0005, 7014=>0.0005, 7015=>0.0005, 7016=>0.0005, 7017=>0.0005, 7018=>0.0005, 7019=>0.0005, 7020=>0.0005, 7021=>0.0005, 7022=>0.0005, 7023=>0.0005, 7024=>0.0005, 7025=>0.0005, 7026=>0.0005, 7027=>0.0005, 7028=>0.0005, 7029=>0.0005, 7030=>0.0005, 7031=>0.0005, 7032=>0.0005, 7033=>0.0005, 7034=>0.0005, 7035=>0.0005, 7036=>0.0005, 7037=>0.0005, 7038=>0.0005, 7039=>0.0005, 7040=>0.0005, 7041=>0.0005, 7042=>0.0005, 7043=>0.0005, 7044=>0.0005, 7045=>0.0005, 7046=>0.0005, 7047=>0.0005, 7048=>0.0005, 7049=>0.0005, 7050=>0.0005, 7051=>0.0005, 7052=>0.0005, 7053=>0.0005, 7054=>0.0005, 7055=>0.0005, 7056=>0.0005, 7057=>0.0005, 7058=>0.0005, 7059=>0.0005, 7060=>0.0005, 7061=>0.0005, 7062=>0.0005, 7063=>0.0005, 7064=>0.0005, 7065=>0.0005, 7066=>0.0005, 7067=>0.0005, 7068=>0.0005, 7069=>0.0005, 7070=>0.0005, 7071=>0.0005, 7072=>0.0005, 7073=>0.0005, 7074=>0.0005, 7075=>0.0005, 7076=>0.0005, 7077=>0.0005, 7078=>0.0005, 7079=>0.0005, 7080=>0.0005, 7081=>0.0005, 7082=>0.0005, 7083=>0.0005, 7084=>0.0005, 7085=>0.0005, 7086=>0.0005, 7087=>0.0005, 7088=>0.0005, 7089=>0.0005, 7090=>0.0005, 7091=>0.0005, 7092=>0.0005, 7093=>0.0005, 7094=>0.0005, 7095=>0.0005, 7096=>0.0005, 7097=>0.0005, 7098=>0.0005, 7099=>0.0005, 7100=>0.0005, 7101=>0.0005, 7102=>0.0005, 7103=>0.0005, 7104=>0.0005, 7105=>0.0005, 7106=>0.0005, 7107=>0.0005, 7108=>0.0005, 7109=>0.0005, 7110=>0.0005, 7111=>0.0005, 7112=>0.0005, 7113=>0.0005, 7114=>0.0005, 7115=>0.0005, 7116=>0.0005, 7117=>0.0005, 7118=>0.0005, 7119=>0.0005, 7120=>0.0005, 7121=>0.0005, 7122=>0.0005, 7123=>0.0005, 7124=>0.0005, 7125=>0.0005, 7126=>0.0005, 7127=>0.0005, 7128=>0.0005, 7129=>0.0005, 7130=>0.0005, 7131=>0.0005, 7132=>0.0005, 7133=>0.0005, 7134=>0.0005, 7135=>0.0005, 7136=>0.0005, 7137=>0.0005, 7138=>0.0005, 7139=>0.0005, 7140=>0.0005, 7141=>0.0005, 7142=>0.0005, 7143=>0.0005, 7144=>0.0005, 7145=>0.0005, 7146=>0.0005, 7147=>0.0005, 7148=>0.0005, 7149=>0.0005, 7150=>0.0005, 7151=>0.0005, 7152=>0.0005, 7153=>0.0005, 7154=>0.0005, 7155=>0.0005, 7156=>0.0005, 7157=>0.0005, 7158=>0.0005, 7159=>0.0005, 7160=>0.0005, 7161=>0.0005, 7162=>0.0005, 7163=>0.0005, 7164=>0.0005, 7165=>0.0005, 7166=>0.0005, 7167=>0.0005, 7168=>0.0005, 7169=>0.0005, 7170=>0.0005, 7171=>0.0005, 7172=>0.0005, 7173=>0.0005, 7174=>0.0005, 7175=>0.0005, 7176=>0.0005, 7177=>0.0005, 7178=>0.0005, 7179=>0.0005, 7180=>0.0005, 7181=>0.0005, 7182=>0.0005, 7183=>0.0005, 7184=>0.0005, 7185=>0.0005, 7186=>0.0005, 7187=>0.0005, 7188=>0.0005, 7189=>0.0005, 7190=>0.0005, 7191=>0.0005, 7192=>0.0005, 7193=>0.0005, 7194=>0.0005, 7195=>0.0005, 7196=>0.0005, 7197=>0.0005, 7198=>0.0005, 7199=>0.0005, 7200=>0.0005, 7201=>0.0005, 7202=>0.0005, 7203=>0.0005, 7204=>0.0005, 7205=>0.0005, 7206=>0.0005, 7207=>0.0005, 7208=>0.0005, 7209=>0.0005, 7210=>0.0005, 7211=>0.0005, 7212=>0.0005, 7213=>0.0005, 7214=>0.0005, 7215=>0.0005, 7216=>0.0005, 7217=>0.0005, 7218=>0.0005, 7219=>0.0005, 7220=>0.0005, 7221=>0.0005, 7222=>0.0005, 7223=>0.0005, 7224=>0.0005, 7225=>0.0005, 7226=>0.0005, 7227=>0.0005, 7228=>0.0005, 7229=>0.0005, 7230=>0.0005, 7231=>0.0005, 7232=>0.0005, 7233=>0.0005, 7234=>0.0005, 7235=>0.0005, 7236=>0.0005, 7237=>0.0005, 7238=>0.0005, 7239=>0.0005, 7240=>0.0005, 7241=>0.0005, 7242=>0.0005, 7243=>0.0005, 7244=>0.0005, 7245=>0.0005, 7246=>0.0005, 7247=>0.0005, 7248=>0.0005, 7249=>0.0005, 7250=>0.0005, 7251=>0.0005, 7252=>0.0005, 7253=>0.0005, 7254=>0.0005, 7255=>0.0005, 7256=>0.0005, 7257=>0.0005, 7258=>0.0005, 7259=>0.0005, 7260=>0.0005, 7261=>0.0005, 7262=>0.0005, 7263=>0.0005, 7264=>0.0005, 7265=>0.0005, 7266=>0.0005, 7267=>0.0005, 7268=>0.0005, 7269=>0.0005, 7270=>0.0005, 7271=>0.0005, 7272=>0.0005, 7273=>0.0005, 7274=>0.0005, 7275=>0.0005, 7276=>0.0005, 7277=>0.0005, 7278=>0.0005, 7279=>0.0005, 7280=>0.0005, 7281=>0.0005, 7282=>0.0005, 7283=>0.0005, 7284=>0.0005, 7285=>0.0005, 7286=>0.0005, 7287=>0.0005, 7288=>0.0005, 7289=>0.0005, 7290=>0.0005, 7291=>0.0005, 7292=>0.0005, 7293=>0.0005, 7294=>0.0005, 7295=>0.0005, 7296=>0.0005, 7297=>0.0005, 7298=>0.0005, 7299=>0.0005, 7300=>0.0005, 7301=>0.0005, 7302=>0.0005, 7303=>0.0005, 7304=>0.0005, 7305=>0.0005, 7306=>0.0005, 7307=>0.0005, 7308=>0.0005, 7309=>0.0005, 7310=>0.0005, 7311=>0.0005, 7312=>0.0005, 7313=>0.0005, 7314=>0.0005, 7315=>0.0005, 7316=>0.0005, 7317=>0.0005, 7318=>0.0005, 7319=>0.0005, 7320=>0.0005, 7321=>0.0005, 7322=>0.0005, 7323=>0.0005, 7324=>0.0005, 7325=>0.0005, 7326=>0.0005, 7327=>0.0005, 7328=>0.0005, 7329=>0.0005, 7330=>0.0005, 7331=>0.0005, 7332=>0.0005, 7333=>0.0005, 7334=>0.0005, 7335=>0.0005, 7336=>0.0005, 7337=>0.0005, 7338=>0.0005, 7339=>0.0005, 7340=>0.0005, 7341=>0.0005, 7342=>0.0005, 7343=>0.0005, 7344=>0.0005, 7345=>0.0005, 7346=>0.0005, 7347=>0.0005, 7348=>0.0005, 7349=>0.0005, 7350=>0.0005, 7351=>0.0005, 7352=>0.0005, 7353=>0.0005, 7354=>0.0005, 7355=>0.0005, 7356=>0.0005, 7357=>0.0005, 7358=>0.0005, 7359=>0.0005, 7360=>0.0005, 7361=>0.0005, 7362=>0.0005, 7363=>0.0005, 7364=>0.0005, 7365=>0.0005, 7366=>0.0005, 7367=>0.0005, 7368=>0.0005, 7369=>0.0005, 7370=>0.0005, 7371=>0.0005, 7372=>0.0005, 7373=>0.0005, 7374=>0.0005, 7375=>0.0005, 7376=>0.0005, 7377=>0.0005, 7378=>0.0005, 7379=>0.0005, 7380=>0.0005, 7381=>0.0005, 7382=>0.0005, 7383=>0.0005, 7384=>0.0005, 7385=>0.0005, 7386=>0.0005, 7387=>0.0005, 7388=>0.0005, 7389=>0.0005, 7390=>0.0005, 7391=>0.0005, 7392=>0.0005, 7393=>0.0005, 7394=>0.0005, 7395=>0.0005, 7396=>0.0005, 7397=>0.0005, 7398=>0.0005, 7399=>0.0005, 7400=>0.0005, 7401=>0.0005, 7402=>0.0005, 7403=>0.0005, 7404=>0.0005, 7405=>0.0005, 7406=>0.0005, 7407=>0.0005, 7408=>0.0005, 7409=>0.0005, 7410=>0.0005, 7411=>0.0005, 7412=>0.0005, 7413=>0.0005, 7414=>0.0005, 7415=>0.0005, 7416=>0.0005, 7417=>0.0005, 7418=>0.0005, 7419=>0.0005, 7420=>0.0005, 7421=>0.0005, 7422=>0.0005, 7423=>0.0005, 7424=>0.0005, 7425=>0.0005, 7426=>0.0005, 7427=>0.0005, 7428=>0.0005, 7429=>0.0005, 7430=>0.0005, 7431=>0.0005, 7432=>0.0005, 7433=>0.0005, 7434=>0.0005, 7435=>0.0005, 7436=>0.0005, 7437=>0.0005, 7438=>0.0005, 7439=>0.0005, 7440=>0.0005, 7441=>0.0005, 7442=>0.0005, 7443=>0.0005, 7444=>0.0005, 7445=>0.0005, 7446=>0.0005, 7447=>0.0005, 7448=>0.0005, 7449=>0.0005, 7450=>0.0005, 7451=>0.0005, 7452=>0.0005, 7453=>0.0005, 7454=>0.0005, 7455=>0.0005, 7456=>0.0005, 7457=>0.0005, 7458=>0.0005, 7459=>0.0005, 7460=>0.0005, 7461=>0.0005, 7462=>0.0005, 7463=>0.0005, 7464=>0.0005, 7465=>0.0005, 7466=>0.0005, 7467=>0.0005, 7468=>0.0005, 7469=>0.0005, 7470=>0.0005, 7471=>0.0005, 7472=>0.0005, 7473=>0.0005, 7474=>0.0005, 7475=>0.0005, 7476=>0.0005, 7477=>0.0005, 7478=>0.0005, 7479=>0.0005, 7480=>0.0005, 7481=>0.0005, 7482=>0.0005, 7483=>0.0005, 7484=>0.0005, 7485=>0.0005, 7486=>0.0005, 7487=>0.0005, 7488=>0.0005, 7489=>0.0005, 7490=>0.0005, 7491=>0.0005, 7492=>0.0005, 7493=>0.0005, 7494=>0.0005, 7495=>0.0005, 7496=>0.0005, 7497=>0.0005, 7498=>0.0005, 7499=>0.0005, 7500=>0.0005, 7501=>0.0005, 7502=>0.0005, 7503=>0.0005, 7504=>0.0005, 7505=>0.0005, 7506=>0.0005, 7507=>0.0005, 7508=>0.0005, 7509=>0.0005, 7510=>0.0005, 7511=>0.0005, 7512=>0.0005, 7513=>0.0005, 7514=>0.0005, 7515=>0.0005, 7516=>0.0005, 7517=>0.0005, 7518=>0.0005, 7519=>0.0005, 7520=>0.0005, 7521=>0.0005, 7522=>0.0005, 7523=>0.0005, 7524=>0.0005, 7525=>0.0005, 7526=>0.0005, 7527=>0.0005, 7528=>0.0005, 7529=>0.0005, 7530=>0.0005, 7531=>0.0005, 7532=>0.0005, 7533=>0.0005, 7534=>0.0005, 7535=>0.0005, 7536=>0.0005, 7537=>0.0005, 7538=>0.0005, 7539=>0.0005, 7540=>0.0005, 7541=>0.0005, 7542=>0.0005, 7543=>0.0005, 7544=>0.0005, 7545=>0.0005, 7546=>0.0005, 7547=>0.0005, 7548=>0.0005, 7549=>0.0005, 7550=>0.0005, 7551=>0.0005, 7552=>0.0005, 7553=>0.0005, 7554=>0.0005, 7555=>0.0005, 7556=>0.0005, 7557=>0.0005, 7558=>0.0005, 7559=>0.0005, 7560=>0.0005, 7561=>0.0005, 7562=>0.0005, 7563=>0.0005, 7564=>0.0005, 7565=>0.0005, 7566=>0.0005, 7567=>0.0005, 7568=>0.0005, 7569=>0.0005, 7570=>0.0005, 7571=>0.0005, 7572=>0.0005, 7573=>0.0005, 7574=>0.0005, 7575=>0.0005, 7576=>0.0005, 7577=>0.0005, 7578=>0.0005, 7579=>0.0005, 7580=>0.0005, 7581=>0.0005, 7582=>0.0005, 7583=>0.0005, 7584=>0.0005, 7585=>0.0005, 7586=>0.0005, 7587=>0.0005, 7588=>0.0005, 7589=>0.0005, 7590=>0.0005, 7591=>0.0005, 7592=>0.0005, 7593=>0.0005, 7594=>0.0005, 7595=>0.0005, 7596=>0.0005, 7597=>0.0005, 7598=>0.0005, 7599=>0.0005, 7600=>0.0005, 7601=>0.0005, 7602=>0.0005, 7603=>0.0005, 7604=>0.0005, 7605=>0.0005, 7606=>0.0005, 7607=>0.0005, 7608=>0.0005, 7609=>0.0005, 7610=>0.0005, 7611=>0.0005, 7612=>0.0005, 7613=>0.0005, 7614=>0.0005, 7615=>0.0005, 7616=>0.0005, 7617=>0.0005, 7618=>0.0005, 7619=>0.0005, 7620=>0.0005, 7621=>0.0005, 7622=>0.0005, 7623=>0.0005, 7624=>0.0005, 7625=>0.0005, 7626=>0.0005, 7627=>0.0005, 7628=>0.0005, 7629=>0.0005, 7630=>0.0005, 7631=>0.0005, 7632=>0.0005, 7633=>0.0005, 7634=>0.0005, 7635=>0.0005, 7636=>0.0005, 7637=>0.0005, 7638=>0.0005, 7639=>0.0005, 7640=>0.0005, 7641=>0.0005, 7642=>0.0005, 7643=>0.0005, 7644=>0.0005, 7645=>0.0005, 7646=>0.0005, 7647=>0.0005, 7648=>0.0005, 7649=>0.0005, 7650=>0.0005, 7651=>0.0005, 7652=>0.0005, 7653=>0.0005, 7654=>0.0005, 7655=>0.0005, 7656=>0.0005, 7657=>0.0005, 7658=>0.0005, 7659=>0.0005, 7660=>0.0005, 7661=>0.0005, 7662=>0.0005, 7663=>0.0005, 7664=>0.0005, 7665=>0.0005, 7666=>0.0005, 7667=>0.0005, 7668=>0.0005, 7669=>0.0005, 7670=>0.0005, 7671=>0.0005, 7672=>0.0005, 7673=>0.0005, 7674=>0.0005, 7675=>0.0005, 7676=>0.0005, 7677=>0.0005, 7678=>0.0005, 7679=>0.0005, 7680=>0.0005, 7681=>0.0005, 7682=>0.0005, 7683=>0.0005, 7684=>0.0005, 7685=>0.0005, 7686=>0.0005, 7687=>0.0005, 7688=>0.0005, 7689=>0.0005, 7690=>0.0005, 7691=>0.0005, 7692=>0.0005, 7693=>0.0005, 7694=>0.0005, 7695=>0.0005, 7696=>0.0005, 7697=>0.0005, 7698=>0.0005, 7699=>0.0005, 7700=>0.0005, 7701=>0.0005, 7702=>0.0005, 7703=>0.0005, 7704=>0.0005, 7705=>0.0005, 7706=>0.0005, 7707=>0.0005, 7708=>0.0005, 7709=>0.0005, 7710=>0.0005, 7711=>0.0005, 7712=>0.0005, 7713=>0.0005, 7714=>0.0005, 7715=>0.0005, 7716=>0.0005, 7717=>0.0005, 7718=>0.0005, 7719=>0.0005, 7720=>0.0005, 7721=>0.0005, 7722=>0.0005, 7723=>0.0005, 7724=>0.0005, 7725=>0.0005, 7726=>0.0005, 7727=>0.0005, 7728=>0.0005, 7729=>0.0005, 7730=>0.0005, 7731=>0.0005, 7732=>0.0005, 7733=>0.0005, 7734=>0.0005, 7735=>0.0005, 7736=>0.0005, 7737=>0.0005, 7738=>0.0005, 7739=>0.0005, 7740=>0.0005, 7741=>0.0005, 7742=>0.0005, 7743=>0.0005, 7744=>0.0005, 7745=>0.0005, 7746=>0.0005, 7747=>0.0005, 7748=>0.0005, 7749=>0.0005, 7750=>0.0005, 7751=>0.0005, 7752=>0.0005, 7753=>0.0005, 7754=>0.0005, 7755=>0.0005, 7756=>0.0005, 7757=>0.0005, 7758=>0.0005, 7759=>0.0005, 7760=>0.0005, 7761=>0.0005, 7762=>0.0005, 7763=>0.0005, 7764=>0.0005, 7765=>0.0005, 7766=>0.0005, 7767=>0.0005, 7768=>0.0005, 7769=>0.0005, 7770=>0.0005, 7771=>0.0005, 7772=>0.0005, 7773=>0.0005, 7774=>0.0005, 7775=>0.0005, 7776=>0.0005, 7777=>0.0005, 7778=>0.0005, 7779=>0.0005, 7780=>0.0005, 7781=>0.0005, 7782=>0.0005, 7783=>0.0005, 7784=>0.0005, 7785=>0.0005, 7786=>0.0005, 7787=>0.0005, 7788=>0.0005, 7789=>0.0005, 7790=>0.0005, 7791=>0.0005, 7792=>0.0005, 7793=>0.0005, 7794=>0.0005, 7795=>0.0005, 7796=>0.0005, 7797=>0.0005, 7798=>0.0005, 7799=>0.0005, 7800=>0.0005, 7801=>0.0005, 7802=>0.0005, 7803=>0.0005, 7804=>0.0005, 7805=>0.0005, 7806=>0.0005, 7807=>0.0005, 7808=>0.0005, 7809=>0.0005, 7810=>0.0005, 7811=>0.0005, 7812=>0.0005, 7813=>0.0005, 7814=>0.0005, 7815=>0.0005, 7816=>0.0005, 7817=>0.0005, 7818=>0.0005, 7819=>0.0005, 7820=>0.0005, 7821=>0.0005, 7822=>0.0005, 7823=>0.0005, 7824=>0.0005, 7825=>0.0005, 7826=>0.0005, 7827=>0.0005, 7828=>0.0005, 7829=>0.0005, 7830=>0.0005, 7831=>0.0005, 7832=>0.0005, 7833=>0.0005, 7834=>0.0005, 7835=>0.0005, 7836=>0.0005, 7837=>0.0005, 7838=>0.0005, 7839=>0.0005, 7840=>0.0005, 7841=>0.0005, 7842=>0.0005, 7843=>0.0005, 7844=>0.0005, 7845=>0.0005, 7846=>0.0005, 7847=>0.0005, 7848=>0.0005, 7849=>0.0005, 7850=>0.0005, 7851=>0.0005, 7852=>0.0005, 7853=>0.0005, 7854=>0.0005, 7855=>0.0005, 7856=>0.0005, 7857=>0.0005, 7858=>0.0005, 7859=>0.0005, 7860=>0.0005, 7861=>0.0005, 7862=>0.0005, 7863=>0.0005, 7864=>0.0005, 7865=>0.0005, 7866=>0.0005, 7867=>0.0005, 7868=>0.0005, 7869=>0.0005, 7870=>0.0005, 7871=>0.0005, 7872=>0.0005, 7873=>0.0005, 7874=>0.0005, 7875=>0.0005, 7876=>0.0005, 7877=>0.0005, 7878=>0.0005, 7879=>0.0005, 7880=>0.0005, 7881=>0.0005, 7882=>0.0005, 7883=>0.0005, 7884=>0.0005, 7885=>0.0005, 7886=>0.0005, 7887=>0.0005, 7888=>0.0005, 7889=>0.0005, 7890=>0.0005, 7891=>0.0005, 7892=>0.0005, 7893=>0.0005, 7894=>0.0005, 7895=>0.0005, 7896=>0.0005, 7897=>0.0005, 7898=>0.0005, 7899=>0.0005, 7900=>0.0005, 7901=>0.0005, 7902=>0.0005, 7903=>0.0005, 7904=>0.0005, 7905=>0.0005, 7906=>0.0005, 7907=>0.0005, 7908=>0.0005, 7909=>0.0005, 7910=>0.0005, 7911=>0.0005, 7912=>0.0005, 7913=>0.0005, 7914=>0.0005, 7915=>0.0005, 7916=>0.0005, 7917=>0.0005, 7918=>0.0005, 7919=>0.0005, 7920=>0.0005, 7921=>0.0005, 7922=>0.0005, 7923=>0.0005, 7924=>0.0005, 7925=>0.0005, 7926=>0.0005, 7927=>0.0005, 7928=>0.0005, 7929=>0.0005, 7930=>0.0005, 7931=>0.0005, 7932=>0.0005, 7933=>0.0005, 7934=>0.0005, 7935=>0.0005, 7936=>0.0005, 7937=>0.0005, 7938=>0.0005, 7939=>0.0005, 7940=>0.0005, 7941=>0.0005, 7942=>0.0005, 7943=>0.0005, 7944=>0.0005, 7945=>0.0005, 7946=>0.0005, 7947=>0.0005, 7948=>0.0005, 7949=>0.0005, 7950=>0.0005, 7951=>0.0005, 7952=>0.0005, 7953=>0.0005, 7954=>0.0005, 7955=>0.0005, 7956=>0.0005, 7957=>0.0005, 7958=>0.0005, 7959=>0.0005, 7960=>0.0005, 7961=>0.0005, 7962=>0.0005, 7963=>0.0005, 7964=>0.0005, 7965=>0.0005, 7966=>0.0005, 7967=>0.0005, 7968=>0.0005, 7969=>0.0005, 7970=>0.0005, 7971=>0.0005, 7972=>0.0005, 7973=>0.0005, 7974=>0.0005, 7975=>0.0005, 7976=>0.0005, 7977=>0.0005, 7978=>0.0005, 7979=>0.0005, 7980=>0.0005, 7981=>0.0005, 7982=>0.0005, 7983=>0.0005, 7984=>0.0005, 7985=>0.0005, 7986=>0.0005, 7987=>0.0005, 7988=>0.0005, 7989=>0.0005, 7990=>0.0005, 7991=>0.0005, 7992=>0.0005, 7993=>0.0005, 7994=>0.0005, 7995=>0.0005, 7996=>0.0005, 7997=>0.0005, 7998=>0.0005, 7999=>0.0005, 8000=>0.0005, 8001=>0.0005, 8002=>0.0005, 8003=>0.0005, 8004=>0.0005, 8005=>0.0005, 8006=>0.0005, 8007=>0.0005, 8008=>0.0005, 8009=>0.0005, 8010=>0.0005, 8011=>0.0005, 8012=>0.0005, 8013=>0.0005, 8014=>0.0005, 8015=>0.0005, 8016=>0.0005, 8017=>0.0005, 8018=>0.0005, 8019=>0.0005, 8020=>0.0005, 8021=>0.0005, 8022=>0.0005, 8023=>0.0005, 8024=>0.0005, 8025=>0.0005, 8026=>0.0005, 8027=>0.0005, 8028=>0.0005, 8029=>0.0005, 8030=>0.0005, 8031=>0.0005, 8032=>0.0005, 8033=>0.0005, 8034=>0.0005, 8035=>0.0005, 8036=>0.0005, 8037=>0.0005, 8038=>0.0005, 8039=>0.0005, 8040=>0.0005, 8041=>0.0005, 8042=>0.0005, 8043=>0.0005, 8044=>0.0005, 8045=>0.0005, 8046=>0.0005, 8047=>0.0005, 8048=>0.0005, 8049=>0.0005, 8050=>0.0005, 8051=>0.0005, 8052=>0.0005, 8053=>0.0005, 8054=>0.0005, 8055=>0.0005, 8056=>0.0005, 8057=>0.0005, 8058=>0.0005, 8059=>0.0005, 8060=>0.0005, 8061=>0.0005, 8062=>0.0005, 8063=>0.0005, 8064=>0.0005, 8065=>0.0005, 8066=>0.0005, 8067=>0.0005, 8068=>0.0005, 8069=>0.0005, 8070=>0.0005, 8071=>0.0005, 8072=>0.0005, 8073=>0.0005, 8074=>0.0005, 8075=>0.0005, 8076=>0.0005, 8077=>0.0005, 8078=>0.0005, 8079=>0.0005, 8080=>0.0005, 8081=>0.0005, 8082=>0.0005, 8083=>0.0005, 8084=>0.0005, 8085=>0.0005, 8086=>0.0005, 8087=>0.0005, 8088=>0.0005, 8089=>0.0005, 8090=>0.0005, 8091=>0.0005, 8092=>0.0005, 8093=>0.0005, 8094=>0.0005, 8095=>0.0005, 8096=>0.0005, 8097=>0.0005, 8098=>0.0005, 8099=>0.0005, 8100=>0.0005, 8101=>0.0005, 8102=>0.0005, 8103=>0.0005, 8104=>0.0005, 8105=>0.0005, 8106=>0.0005, 8107=>0.0005, 8108=>0.0005, 8109=>0.0005, 8110=>0.0005, 8111=>0.0005, 8112=>0.0005, 8113=>0.0005, 8114=>0.0005, 8115=>0.0005, 8116=>0.0005, 8117=>0.0005, 8118=>0.0005, 8119=>0.0005, 8120=>0.0005, 8121=>0.0005, 8122=>0.0005, 8123=>0.0005, 8124=>0.0005, 8125=>0.0005, 8126=>0.0005, 8127=>0.0005, 8128=>0.0005, 8129=>0.0005, 8130=>0.0005, 8131=>0.0005, 8132=>0.0005, 8133=>0.0005, 8134=>0.0005, 8135=>0.0005, 8136=>0.0005, 8137=>0.0005, 8138=>0.0005, 8139=>0.0005, 8140=>0.0005, 8141=>0.0005, 8142=>0.0005, 8143=>0.0005, 8144=>0.0005, 8145=>0.0005, 8146=>0.0005, 8147=>0.0005, 8148=>0.0005, 8149=>0.0005, 8150=>0.0005, 8151=>0.0005, 8152=>0.0005, 8153=>0.0005, 8154=>0.0005, 8155=>0.0005, 8156=>0.0005, 8157=>0.0005, 8158=>0.0005, 8159=>0.0005, 8160=>0.0005, 8161=>0.0005, 8162=>0.0005, 8163=>0.0005, 8164=>0.0005, 8165=>0.0005, 8166=>0.0005, 8167=>0.0005, 8168=>0.0005, 8169=>0.0005, 8170=>0.0005, 8171=>0.0005, 8172=>0.0005, 8173=>0.0005, 8174=>0.0005, 8175=>0.0005, 8176=>0.0005, 8177=>0.0005, 8178=>0.0005, 8179=>0.0005, 8180=>0.0005, 8181=>0.0005, 8182=>0.0005, 8183=>0.0005, 8184=>0.0005, 8185=>0.0005, 8186=>0.0005, 8187=>0.0005, 8188=>0.0005, 8189=>0.0005, 8190=>0.0005, 8191=>0.0005, 8192=>0.0005, 8193=>0.0005, 8194=>0.0005, 8195=>0.0005, 8196=>0.0004, 8197=>0.0004, 8198=>0.0004, 8199=>0.0004, 8200=>0.0004, 8201=>0.0004, 8202=>0.0004, 8203=>0.0004, 8204=>0.0004, 8205=>0.0004, 8206=>0.0004, 8207=>0.0004, 8208=>0.0004, 8209=>0.0004, 8210=>0.0004, 8211=>0.0004, 8212=>0.0004, 8213=>0.0004, 8214=>0.0004, 8215=>0.0004, 8216=>0.0004, 8217=>0.0004, 8218=>0.0004, 8219=>0.0004, 8220=>0.0004, 8221=>0.0004, 8222=>0.0004, 8223=>0.0004, 8224=>0.0004, 8225=>0.0004, 8226=>0.0004, 8227=>0.0004, 8228=>0.0004, 8229=>0.0004, 8230=>0.0004, 8231=>0.0004, 8232=>0.0004, 8233=>0.0004, 8234=>0.0004, 8235=>0.0004, 8236=>0.0004, 8237=>0.0004, 8238=>0.0004, 8239=>0.0004, 8240=>0.0004, 8241=>0.0004, 8242=>0.0004, 8243=>0.0004, 8244=>0.0004, 8245=>0.0004, 8246=>0.0004, 8247=>0.0004, 8248=>0.0004, 8249=>0.0004, 8250=>0.0004, 8251=>0.0004, 8252=>0.0004, 8253=>0.0004, 8254=>0.0004, 8255=>0.0004, 8256=>0.0004, 8257=>0.0004, 8258=>0.0004, 8259=>0.0004, 8260=>0.0004, 8261=>0.0004, 8262=>0.0004, 8263=>0.0004, 8264=>0.0004, 8265=>0.0004, 8266=>0.0004, 8267=>0.0004, 8268=>0.0004, 8269=>0.0004, 8270=>0.0004, 8271=>0.0004, 8272=>0.0004, 8273=>0.0004, 8274=>0.0004, 8275=>0.0004, 8276=>0.0004, 8277=>0.0004, 8278=>0.0004, 8279=>0.0004, 8280=>0.0004, 8281=>0.0004, 8282=>0.0004, 8283=>0.0004, 8284=>0.0004, 8285=>0.0004, 8286=>0.0004, 8287=>0.0004, 8288=>0.0004, 8289=>0.0004, 8290=>0.0004, 8291=>0.0004, 8292=>0.0004, 8293=>0.0004, 8294=>0.0004, 8295=>0.0004, 8296=>0.0004, 8297=>0.0004, 8298=>0.0004, 8299=>0.0004, 8300=>0.0004, 8301=>0.0004, 8302=>0.0004, 8303=>0.0004, 8304=>0.0004, 8305=>0.0004, 8306=>0.0004, 8307=>0.0004, 8308=>0.0004, 8309=>0.0004, 8310=>0.0004, 8311=>0.0004, 8312=>0.0004, 8313=>0.0004, 8314=>0.0004, 8315=>0.0004, 8316=>0.0004, 8317=>0.0004, 8318=>0.0004, 8319=>0.0004, 8320=>0.0004, 8321=>0.0004, 8322=>0.0004, 8323=>0.0004, 8324=>0.0004, 8325=>0.0004, 8326=>0.0004, 8327=>0.0004, 8328=>0.0004, 8329=>0.0004, 8330=>0.0004, 8331=>0.0004, 8332=>0.0004, 8333=>0.0004, 8334=>0.0004, 8335=>0.0004, 8336=>0.0004, 8337=>0.0004, 8338=>0.0004, 8339=>0.0004, 8340=>0.0004, 8341=>0.0004, 8342=>0.0004, 8343=>0.0004, 8344=>0.0004, 8345=>0.0004, 8346=>0.0004, 8347=>0.0004, 8348=>0.0004, 8349=>0.0004, 8350=>0.0004, 8351=>0.0004, 8352=>0.0004, 8353=>0.0004, 8354=>0.0004, 8355=>0.0004, 8356=>0.0004, 8357=>0.0004, 8358=>0.0004, 8359=>0.0004, 8360=>0.0004, 8361=>0.0004, 8362=>0.0004, 8363=>0.0004, 8364=>0.0004, 8365=>0.0004, 8366=>0.0004, 8367=>0.0004, 8368=>0.0004, 8369=>0.0004, 8370=>0.0004, 8371=>0.0004, 8372=>0.0004, 8373=>0.0004, 8374=>0.0004, 8375=>0.0004, 8376=>0.0004, 8377=>0.0004, 8378=>0.0004, 8379=>0.0004, 8380=>0.0004, 8381=>0.0004, 8382=>0.0004, 8383=>0.0004, 8384=>0.0004, 8385=>0.0004, 8386=>0.0004, 8387=>0.0004, 8388=>0.0004, 8389=>0.0004, 8390=>0.0004, 8391=>0.0004, 8392=>0.0004, 8393=>0.0004, 8394=>0.0004, 8395=>0.0004, 8396=>0.0004, 8397=>0.0004, 8398=>0.0004, 8399=>0.0004, 8400=>0.0004, 8401=>0.0004, 8402=>0.0004, 8403=>0.0004, 8404=>0.0004, 8405=>0.0004, 8406=>0.0004, 8407=>0.0004, 8408=>0.0004, 8409=>0.0004, 8410=>0.0004, 8411=>0.0004, 8412=>0.0004, 8413=>0.0004, 8414=>0.0004, 8415=>0.0004, 8416=>0.0004, 8417=>0.0004, 8418=>0.0004, 8419=>0.0004, 8420=>0.0004, 8421=>0.0004, 8422=>0.0004, 8423=>0.0004, 8424=>0.0004, 8425=>0.0004, 8426=>0.0004, 8427=>0.0004, 8428=>0.0004, 8429=>0.0004, 8430=>0.0004, 8431=>0.0004, 8432=>0.0004, 8433=>0.0004, 8434=>0.0004, 8435=>0.0004, 8436=>0.0004, 8437=>0.0004, 8438=>0.0004, 8439=>0.0004, 8440=>0.0004, 8441=>0.0004, 8442=>0.0004, 8443=>0.0004, 8444=>0.0004, 8445=>0.0004, 8446=>0.0004, 8447=>0.0004, 8448=>0.0004, 8449=>0.0004, 8450=>0.0004, 8451=>0.0004, 8452=>0.0004, 8453=>0.0004, 8454=>0.0004, 8455=>0.0004, 8456=>0.0004, 8457=>0.0004, 8458=>0.0004, 8459=>0.0004, 8460=>0.0004, 8461=>0.0004, 8462=>0.0004, 8463=>0.0004, 8464=>0.0004, 8465=>0.0004, 8466=>0.0004, 8467=>0.0004, 8468=>0.0004, 8469=>0.0004, 8470=>0.0004, 8471=>0.0004, 8472=>0.0004, 8473=>0.0004, 8474=>0.0004, 8475=>0.0004, 8476=>0.0004, 8477=>0.0004, 8478=>0.0004, 8479=>0.0004, 8480=>0.0004, 8481=>0.0004, 8482=>0.0004, 8483=>0.0004, 8484=>0.0004, 8485=>0.0004, 8486=>0.0004, 8487=>0.0004, 8488=>0.0004, 8489=>0.0004, 8490=>0.0004, 8491=>0.0004, 8492=>0.0004, 8493=>0.0004, 8494=>0.0004, 8495=>0.0004, 8496=>0.0004, 8497=>0.0004, 8498=>0.0004, 8499=>0.0004, 8500=>0.0004, 8501=>0.0004, 8502=>0.0004, 8503=>0.0004, 8504=>0.0004, 8505=>0.0004, 8506=>0.0004, 8507=>0.0004, 8508=>0.0004, 8509=>0.0004, 8510=>0.0004, 8511=>0.0004, 8512=>0.0004, 8513=>0.0004, 8514=>0.0004, 8515=>0.0004, 8516=>0.0004, 8517=>0.0004, 8518=>0.0004, 8519=>0.0004, 8520=>0.0004, 8521=>0.0004, 8522=>0.0004, 8523=>0.0004, 8524=>0.0004, 8525=>0.0004, 8526=>0.0004, 8527=>0.0004, 8528=>0.0004, 8529=>0.0004, 8530=>0.0004, 8531=>0.0004, 8532=>0.0004, 8533=>0.0004, 8534=>0.0004, 8535=>0.0004, 8536=>0.0004, 8537=>0.0004, 8538=>0.0004, 8539=>0.0004, 8540=>0.0004, 8541=>0.0004, 8542=>0.0004, 8543=>0.0004, 8544=>0.0004, 8545=>0.0004, 8546=>0.0004, 8547=>0.0004, 8548=>0.0004, 8549=>0.0004, 8550=>0.0004, 8551=>0.0004, 8552=>0.0004, 8553=>0.0004, 8554=>0.0004, 8555=>0.0004, 8556=>0.0004, 8557=>0.0004, 8558=>0.0004, 8559=>0.0004, 8560=>0.0004, 8561=>0.0004, 8562=>0.0004, 8563=>0.0004, 8564=>0.0004, 8565=>0.0004, 8566=>0.0004, 8567=>0.0004, 8568=>0.0004, 8569=>0.0004, 8570=>0.0004, 8571=>0.0004, 8572=>0.0004, 8573=>0.0004, 8574=>0.0004, 8575=>0.0004, 8576=>0.0004, 8577=>0.0004, 8578=>0.0004, 8579=>0.0004, 8580=>0.0004, 8581=>0.0004, 8582=>0.0004, 8583=>0.0004, 8584=>0.0004, 8585=>0.0004, 8586=>0.0004, 8587=>0.0004, 8588=>0.0004, 8589=>0.0004, 8590=>0.0004, 8591=>0.0004, 8592=>0.0004, 8593=>0.0004, 8594=>0.0004, 8595=>0.0004, 8596=>0.0004, 8597=>0.0004, 8598=>0.0004, 8599=>0.0004, 8600=>0.0004, 8601=>0.0004, 8602=>0.0004, 8603=>0.0004, 8604=>0.0004, 8605=>0.0004, 8606=>0.0004, 8607=>0.0004, 8608=>0.0004, 8609=>0.0004, 8610=>0.0004, 8611=>0.0004, 8612=>0.0004, 8613=>0.0004, 8614=>0.0004, 8615=>0.0004, 8616=>0.0004, 8617=>0.0004, 8618=>0.0004, 8619=>0.0004, 8620=>0.0004, 8621=>0.0004, 8622=>0.0004, 8623=>0.0004, 8624=>0.0004, 8625=>0.0004, 8626=>0.0004, 8627=>0.0004, 8628=>0.0004, 8629=>0.0004, 8630=>0.0004, 8631=>0.0004, 8632=>0.0004, 8633=>0.0004, 8634=>0.0004, 8635=>0.0004, 8636=>0.0004, 8637=>0.0004, 8638=>0.0004, 8639=>0.0004, 8640=>0.0004, 8641=>0.0004, 8642=>0.0004, 8643=>0.0004, 8644=>0.0004, 8645=>0.0004, 8646=>0.0004, 8647=>0.0004, 8648=>0.0004, 8649=>0.0004, 8650=>0.0004, 8651=>0.0004, 8652=>0.0004, 8653=>0.0004, 8654=>0.0004, 8655=>0.0004, 8656=>0.0004, 8657=>0.0004, 8658=>0.0004, 8659=>0.0004, 8660=>0.0004, 8661=>0.0004, 8662=>0.0004, 8663=>0.0004, 8664=>0.0004, 8665=>0.0004, 8666=>0.0004, 8667=>0.0004, 8668=>0.0004, 8669=>0.0004, 8670=>0.0004, 8671=>0.0004, 8672=>0.0004, 8673=>0.0004, 8674=>0.0004, 8675=>0.0004, 8676=>0.0004, 8677=>0.0004, 8678=>0.0004, 8679=>0.0004, 8680=>0.0004, 8681=>0.0004, 8682=>0.0004, 8683=>0.0004, 8684=>0.0004, 8685=>0.0004, 8686=>0.0004, 8687=>0.0004, 8688=>0.0004, 8689=>0.0004, 8690=>0.0004, 8691=>0.0004, 8692=>0.0004, 8693=>0.0004, 8694=>0.0004, 8695=>0.0004, 8696=>0.0004, 8697=>0.0004, 8698=>0.0004, 8699=>0.0004, 8700=>0.0004, 8701=>0.0004, 8702=>0.0004, 8703=>0.0004, 8704=>0.0004, 8705=>0.0004, 8706=>0.0004, 8707=>0.0004, 8708=>0.0004, 8709=>0.0004, 8710=>0.0004, 8711=>0.0004, 8712=>0.0004, 8713=>0.0004, 8714=>0.0004, 8715=>0.0004, 8716=>0.0004, 8717=>0.0004, 8718=>0.0004, 8719=>0.0004, 8720=>0.0004, 8721=>0.0004, 8722=>0.0004, 8723=>0.0004, 8724=>0.0004, 8725=>0.0004, 8726=>0.0004, 8727=>0.0004, 8728=>0.0004, 8729=>0.0004, 8730=>0.0004, 8731=>0.0004, 8732=>0.0004, 8733=>0.0004, 8734=>0.0004, 8735=>0.0004, 8736=>0.0004, 8737=>0.0004, 8738=>0.0004, 8739=>0.0004, 8740=>0.0004, 8741=>0.0004, 8742=>0.0004, 8743=>0.0004, 8744=>0.0004, 8745=>0.0004, 8746=>0.0004, 8747=>0.0004, 8748=>0.0004, 8749=>0.0004, 8750=>0.0004, 8751=>0.0004, 8752=>0.0004, 8753=>0.0004, 8754=>0.0004, 8755=>0.0004, 8756=>0.0004, 8757=>0.0004, 8758=>0.0004, 8759=>0.0004, 8760=>0.0004, 8761=>0.0004, 8762=>0.0004, 8763=>0.0004, 8764=>0.0004, 8765=>0.0004, 8766=>0.0004, 8767=>0.0004, 8768=>0.0004, 8769=>0.0004, 8770=>0.0004, 8771=>0.0004, 8772=>0.0004, 8773=>0.0004, 8774=>0.0004, 8775=>0.0004, 8776=>0.0004, 8777=>0.0004, 8778=>0.0004, 8779=>0.0004, 8780=>0.0004, 8781=>0.0004, 8782=>0.0004, 8783=>0.0004, 8784=>0.0004, 8785=>0.0004, 8786=>0.0004, 8787=>0.0004, 8788=>0.0004, 8789=>0.0004, 8790=>0.0004, 8791=>0.0004, 8792=>0.0004, 8793=>0.0004, 8794=>0.0004, 8795=>0.0004, 8796=>0.0004, 8797=>0.0004, 8798=>0.0004, 8799=>0.0004, 8800=>0.0004, 8801=>0.0004, 8802=>0.0004, 8803=>0.0004, 8804=>0.0004, 8805=>0.0004, 8806=>0.0004, 8807=>0.0004, 8808=>0.0004, 8809=>0.0004, 8810=>0.0004, 8811=>0.0004, 8812=>0.0004, 8813=>0.0004, 8814=>0.0004, 8815=>0.0004, 8816=>0.0004, 8817=>0.0004, 8818=>0.0004, 8819=>0.0004, 8820=>0.0004, 8821=>0.0004, 8822=>0.0004, 8823=>0.0004, 8824=>0.0004, 8825=>0.0004, 8826=>0.0004, 8827=>0.0004, 8828=>0.0004, 8829=>0.0004, 8830=>0.0004, 8831=>0.0004, 8832=>0.0004, 8833=>0.0004, 8834=>0.0004, 8835=>0.0004, 8836=>0.0004, 8837=>0.0004, 8838=>0.0004, 8839=>0.0004, 8840=>0.0004, 8841=>0.0004, 8842=>0.0004, 8843=>0.0004, 8844=>0.0004, 8845=>0.0004, 8846=>0.0004, 8847=>0.0004, 8848=>0.0004, 8849=>0.0004, 8850=>0.0004, 8851=>0.0004, 8852=>0.0004, 8853=>0.0004, 8854=>0.0004, 8855=>0.0004, 8856=>0.0004, 8857=>0.0004, 8858=>0.0004, 8859=>0.0004, 8860=>0.0004, 8861=>0.0004, 8862=>0.0004, 8863=>0.0004, 8864=>0.0004, 8865=>0.0004, 8866=>0.0004, 8867=>0.0004, 8868=>0.0004, 8869=>0.0004, 8870=>0.0004, 8871=>0.0004, 8872=>0.0004, 8873=>0.0004, 8874=>0.0004, 8875=>0.0004, 8876=>0.0004, 8877=>0.0004, 8878=>0.0004, 8879=>0.0004, 8880=>0.0004, 8881=>0.0004, 8882=>0.0004, 8883=>0.0004, 8884=>0.0004, 8885=>0.0004, 8886=>0.0004, 8887=>0.0004, 8888=>0.0004, 8889=>0.0004, 8890=>0.0004, 8891=>0.0004, 8892=>0.0004, 8893=>0.0004, 8894=>0.0004, 8895=>0.0004, 8896=>0.0004, 8897=>0.0004, 8898=>0.0004, 8899=>0.0004, 8900=>0.0004, 8901=>0.0004, 8902=>0.0004, 8903=>0.0004, 8904=>0.0004, 8905=>0.0004, 8906=>0.0004, 8907=>0.0004, 8908=>0.0004, 8909=>0.0004, 8910=>0.0004, 8911=>0.0004, 8912=>0.0004, 8913=>0.0004, 8914=>0.0004, 8915=>0.0004, 8916=>0.0004, 8917=>0.0004, 8918=>0.0004, 8919=>0.0004, 8920=>0.0004, 8921=>0.0004, 8922=>0.0004, 8923=>0.0004, 8924=>0.0004, 8925=>0.0004, 8926=>0.0004, 8927=>0.0004, 8928=>0.0004, 8929=>0.0004, 8930=>0.0004, 8931=>0.0004, 8932=>0.0004, 8933=>0.0004, 8934=>0.0004, 8935=>0.0004, 8936=>0.0004, 8937=>0.0004, 8938=>0.0004, 8939=>0.0004, 8940=>0.0004, 8941=>0.0004, 8942=>0.0004, 8943=>0.0004, 8944=>0.0004, 8945=>0.0004, 8946=>0.0004, 8947=>0.0004, 8948=>0.0004, 8949=>0.0004, 8950=>0.0004, 8951=>0.0004, 8952=>0.0004, 8953=>0.0004, 8954=>0.0004, 8955=>0.0004, 8956=>0.0004, 8957=>0.0004, 8958=>0.0004, 8959=>0.0004, 8960=>0.0004, 8961=>0.0004, 8962=>0.0004, 8963=>0.0004, 8964=>0.0004, 8965=>0.0004, 8966=>0.0004, 8967=>0.0004, 8968=>0.0004, 8969=>0.0004, 8970=>0.0004, 8971=>0.0004, 8972=>0.0004, 8973=>0.0004, 8974=>0.0004, 8975=>0.0004, 8976=>0.0004, 8977=>0.0004, 8978=>0.0004, 8979=>0.0004, 8980=>0.0004, 8981=>0.0004, 8982=>0.0004, 8983=>0.0004, 8984=>0.0004, 8985=>0.0004, 8986=>0.0004, 8987=>0.0004, 8988=>0.0004, 8989=>0.0004, 8990=>0.0004, 8991=>0.0004, 8992=>0.0004, 8993=>0.0004, 8994=>0.0004, 8995=>0.0004, 8996=>0.0004, 8997=>0.0004, 8998=>0.0004, 8999=>0.0004, 9000=>0.0004, 9001=>0.0004, 9002=>0.0004, 9003=>0.0004, 9004=>0.0004, 9005=>0.0004, 9006=>0.0004, 9007=>0.0004, 9008=>0.0004, 9009=>0.0004, 9010=>0.0004, 9011=>0.0004, 9012=>0.0004, 9013=>0.0004, 9014=>0.0004, 9015=>0.0004, 9016=>0.0004, 9017=>0.0004, 9018=>0.0004, 9019=>0.0004, 9020=>0.0004, 9021=>0.0004, 9022=>0.0004, 9023=>0.0004, 9024=>0.0004, 9025=>0.0004, 9026=>0.0004, 9027=>0.0004, 9028=>0.0004, 9029=>0.0004, 9030=>0.0004, 9031=>0.0004, 9032=>0.0004, 9033=>0.0004, 9034=>0.0004, 9035=>0.0004, 9036=>0.0004, 9037=>0.0004, 9038=>0.0004, 9039=>0.0004, 9040=>0.0004, 9041=>0.0004, 9042=>0.0004, 9043=>0.0004, 9044=>0.0004, 9045=>0.0004, 9046=>0.0004, 9047=>0.0004, 9048=>0.0004, 9049=>0.0004, 9050=>0.0004, 9051=>0.0004, 9052=>0.0004, 9053=>0.0004, 9054=>0.0004, 9055=>0.0004, 9056=>0.0004, 9057=>0.0004, 9058=>0.0004, 9059=>0.0004, 9060=>0.0004, 9061=>0.0004, 9062=>0.0004, 9063=>0.0004, 9064=>0.0004, 9065=>0.0004, 9066=>0.0004, 9067=>0.0004, 9068=>0.0004, 9069=>0.0004, 9070=>0.0004, 9071=>0.0004, 9072=>0.0004, 9073=>0.0004, 9074=>0.0004, 9075=>0.0004, 9076=>0.0004, 9077=>0.0004, 9078=>0.0004, 9079=>0.0004, 9080=>0.0004, 9081=>0.0004, 9082=>0.0004, 9083=>0.0004, 9084=>0.0004, 9085=>0.0004, 9086=>0.0004, 9087=>0.0004, 9088=>0.0004, 9089=>0.0004, 9090=>0.0004, 9091=>0.0004, 9092=>0.0004, 9093=>0.0004, 9094=>0.0004, 9095=>0.0004, 9096=>0.0004, 9097=>0.0004, 9098=>0.0004, 9099=>0.0004, 9100=>0.0004, 9101=>0.0004, 9102=>0.0004, 9103=>0.0004, 9104=>0.0004, 9105=>0.0004, 9106=>0.0004, 9107=>0.0004, 9108=>0.0004, 9109=>0.0004, 9110=>0.0004, 9111=>0.0004, 9112=>0.0004, 9113=>0.0004, 9114=>0.0004, 9115=>0.0004, 9116=>0.0004, 9117=>0.0004, 9118=>0.0004, 9119=>0.0004, 9120=>0.0004, 9121=>0.0004, 9122=>0.0004, 9123=>0.0004, 9124=>0.0004, 9125=>0.0004, 9126=>0.0004, 9127=>0.0004, 9128=>0.0004, 9129=>0.0004, 9130=>0.0004, 9131=>0.0004, 9132=>0.0004, 9133=>0.0004, 9134=>0.0004, 9135=>0.0004, 9136=>0.0004, 9137=>0.0004, 9138=>0.0004, 9139=>0.0004, 9140=>0.0004, 9141=>0.0004, 9142=>0.0004, 9143=>0.0004, 9144=>0.0004, 9145=>0.0004, 9146=>0.0004, 9147=>0.0004, 9148=>0.0004, 9149=>0.0004, 9150=>0.0004, 9151=>0.0004, 9152=>0.0004, 9153=>0.0004, 9154=>0.0004, 9155=>0.0004, 9156=>0.0004, 9157=>0.0004, 9158=>0.0004, 9159=>0.0004, 9160=>0.0004, 9161=>0.0004, 9162=>0.0004, 9163=>0.0004, 9164=>0.0004, 9165=>0.0004, 9166=>0.0004, 9167=>0.0004, 9168=>0.0004, 9169=>0.0004, 9170=>0.0004, 9171=>0.0004, 9172=>0.0004, 9173=>0.0004, 9174=>0.0004, 9175=>0.0004, 9176=>0.0004, 9177=>0.0004, 9178=>0.0004, 9179=>0.0004, 9180=>0.0004, 9181=>0.0004, 9182=>0.0004, 9183=>0.0004, 9184=>0.0004, 9185=>0.0004, 9186=>0.0004, 9187=>0.0004, 9188=>0.0004, 9189=>0.0004, 9190=>0.0004, 9191=>0.0004, 9192=>0.0004, 9193=>0.0004, 9194=>0.0004, 9195=>0.0004, 9196=>0.0004, 9197=>0.0004, 9198=>0.0004, 9199=>0.0004, 9200=>0.0004, 9201=>0.0004, 9202=>0.0004, 9203=>0.0004, 9204=>0.0004, 9205=>0.0004, 9206=>0.0004, 9207=>0.0004, 9208=>0.0004, 9209=>0.0004, 9210=>0.0004, 9211=>0.0004, 9212=>0.0004, 9213=>0.0004, 9214=>0.0004, 9215=>0.0004, 9216=>0.0004, 9217=>0.0004, 9218=>0.0004, 9219=>0.0004, 9220=>0.0004, 9221=>0.0004, 9222=>0.0004, 9223=>0.0004, 9224=>0.0004, 9225=>0.0004, 9226=>0.0004, 9227=>0.0004, 9228=>0.0004, 9229=>0.0004, 9230=>0.0004, 9231=>0.0004, 9232=>0.0004, 9233=>0.0004, 9234=>0.0004, 9235=>0.0004, 9236=>0.0004, 9237=>0.0004, 9238=>0.0004, 9239=>0.0004, 9240=>0.0004, 9241=>0.0004, 9242=>0.0004, 9243=>0.0004, 9244=>0.0004, 9245=>0.0004, 9246=>0.0004, 9247=>0.0004, 9248=>0.0004, 9249=>0.0004, 9250=>0.0004, 9251=>0.0004, 9252=>0.0004, 9253=>0.0004, 9254=>0.0004, 9255=>0.0004, 9256=>0.0004, 9257=>0.0004, 9258=>0.0004, 9259=>0.0004, 9260=>0.0004, 9261=>0.0004, 9262=>0.0004, 9263=>0.0004, 9264=>0.0004, 9265=>0.0004, 9266=>0.0004, 9267=>0.0004, 9268=>0.0004, 9269=>0.0004, 9270=>0.0004, 9271=>0.0004, 9272=>0.0004, 9273=>0.0004, 9274=>0.0004, 9275=>0.0004, 9276=>0.0004, 9277=>0.0004, 9278=>0.0004, 9279=>0.0004, 9280=>0.0004, 9281=>0.0004, 9282=>0.0004, 9283=>0.0004, 9284=>0.0004, 9285=>0.0004, 9286=>0.0004, 9287=>0.0004, 9288=>0.0004, 9289=>0.0004, 9290=>0.0004, 9291=>0.0004, 9292=>0.0004, 9293=>0.0004, 9294=>0.0004, 9295=>0.0004, 9296=>0.0004, 9297=>0.0004, 9298=>0.0004, 9299=>0.0004, 9300=>0.0004, 9301=>0.0004, 9302=>0.0004, 9303=>0.0004, 9304=>0.0004, 9305=>0.0004, 9306=>0.0004, 9307=>0.0004, 9308=>0.0004, 9309=>0.0004, 9310=>0.0004, 9311=>0.0004, 9312=>0.0004, 9313=>0.0004, 9314=>0.0004, 9315=>0.0004, 9316=>0.0004, 9317=>0.0004, 9318=>0.0004, 9319=>0.0004, 9320=>0.0004, 9321=>0.0004, 9322=>0.0004, 9323=>0.0004, 9324=>0.0004, 9325=>0.0004, 9326=>0.0004, 9327=>0.0004, 9328=>0.0004, 9329=>0.0004, 9330=>0.0004, 9331=>0.0004, 9332=>0.0004, 9333=>0.0004, 9334=>0.0004, 9335=>0.0004, 9336=>0.0004, 9337=>0.0004, 9338=>0.0004, 9339=>0.0004, 9340=>0.0004, 9341=>0.0004, 9342=>0.0004, 9343=>0.0004, 9344=>0.0004, 9345=>0.0004, 9346=>0.0004, 9347=>0.0004, 9348=>0.0004, 9349=>0.0004, 9350=>0.0004, 9351=>0.0004, 9352=>0.0004, 9353=>0.0004, 9354=>0.0004, 9355=>0.0004, 9356=>0.0004, 9357=>0.0004, 9358=>0.0004, 9359=>0.0004, 9360=>0.0004, 9361=>0.0004, 9362=>0.0004, 9363=>0.0004, 9364=>0.0004, 9365=>0.0004, 9366=>0.0004, 9367=>0.0004, 9368=>0.0004, 9369=>0.0004, 9370=>0.0004, 9371=>0.0004, 9372=>0.0004, 9373=>0.0004, 9374=>0.0004, 9375=>0.0004, 9376=>0.0004, 9377=>0.0004, 9378=>0.0004, 9379=>0.0004, 9380=>0.0004, 9381=>0.0004, 9382=>0.0004, 9383=>0.0004, 9384=>0.0004, 9385=>0.0004, 9386=>0.0004, 9387=>0.0004, 9388=>0.0004, 9389=>0.0004, 9390=>0.0004, 9391=>0.0004, 9392=>0.0004, 9393=>0.0004, 9394=>0.0004, 9395=>0.0004, 9396=>0.0004, 9397=>0.0004, 9398=>0.0004, 9399=>0.0004, 9400=>0.0004, 9401=>0.0004, 9402=>0.0004, 9403=>0.0004, 9404=>0.0004, 9405=>0.0004, 9406=>0.0004, 9407=>0.0004, 9408=>0.0004, 9409=>0.0004, 9410=>0.0004, 9411=>0.0004, 9412=>0.0004, 9413=>0.0004, 9414=>0.0004, 9415=>0.0004, 9416=>0.0004, 9417=>0.0004, 9418=>0.0004, 9419=>0.0004, 9420=>0.0004, 9421=>0.0004, 9422=>0.0004, 9423=>0.0004, 9424=>0.0004, 9425=>0.0004, 9426=>0.0004, 9427=>0.0004, 9428=>0.0004, 9429=>0.0004, 9430=>0.0004, 9431=>0.0004, 9432=>0.0004, 9433=>0.0004, 9434=>0.0004, 9435=>0.0004, 9436=>0.0004, 9437=>0.0004, 9438=>0.0004, 9439=>0.0004, 9440=>0.0004, 9441=>0.0004, 9442=>0.0004, 9443=>0.0004, 9444=>0.0004, 9445=>0.0004, 9446=>0.0004, 9447=>0.0004, 9448=>0.0004, 9449=>0.0004, 9450=>0.0004, 9451=>0.0004, 9452=>0.0004, 9453=>0.0004, 9454=>0.0004, 9455=>0.0004, 9456=>0.0004, 9457=>0.0004, 9458=>0.0004, 9459=>0.0004, 9460=>0.0004, 9461=>0.0004, 9462=>0.0004, 9463=>0.0004, 9464=>0.0004, 9465=>0.0004, 9466=>0.0004, 9467=>0.0004, 9468=>0.0004, 9469=>0.0004, 9470=>0.0004, 9471=>0.0004, 9472=>0.0004, 9473=>0.0004, 9474=>0.0004, 9475=>0.0004, 9476=>0.0004, 9477=>0.0004, 9478=>0.0004, 9479=>0.0004, 9480=>0.0004, 9481=>0.0004, 9482=>0.0004, 9483=>0.0004, 9484=>0.0004, 9485=>0.0004, 9486=>0.0004, 9487=>0.0004, 9488=>0.0004, 9489=>0.0004, 9490=>0.0004, 9491=>0.0004, 9492=>0.0004, 9493=>0.0004, 9494=>0.0004, 9495=>0.0004, 9496=>0.0004, 9497=>0.0004, 9498=>0.0004, 9499=>0.0004, 9500=>0.0004, 9501=>0.0004, 9502=>0.0004, 9503=>0.0004, 9504=>0.0004, 9505=>0.0004, 9506=>0.0004, 9507=>0.0004, 9508=>0.0004, 9509=>0.0004, 9510=>0.0004, 9511=>0.0004, 9512=>0.0004, 9513=>0.0004, 9514=>0.0004, 9515=>0.0004, 9516=>0.0004, 9517=>0.0004, 9518=>0.0004, 9519=>0.0004, 9520=>0.0004, 9521=>0.0004, 9522=>0.0004, 9523=>0.0004, 9524=>0.0004, 9525=>0.0004, 9526=>0.0004, 9527=>0.0004, 9528=>0.0004, 9529=>0.0004, 9530=>0.0004, 9531=>0.0004, 9532=>0.0004, 9533=>0.0004, 9534=>0.0004, 9535=>0.0004, 9536=>0.0004, 9537=>0.0004, 9538=>0.0004, 9539=>0.0004, 9540=>0.0004, 9541=>0.0004, 9542=>0.0004, 9543=>0.0004, 9544=>0.0004, 9545=>0.0004, 9546=>0.0004, 9547=>0.0004, 9548=>0.0004, 9549=>0.0004, 9550=>0.0004, 9551=>0.0004, 9552=>0.0004, 9553=>0.0004, 9554=>0.0004, 9555=>0.0004, 9556=>0.0004, 9557=>0.0004, 9558=>0.0004, 9559=>0.0004, 9560=>0.0004, 9561=>0.0004, 9562=>0.0004, 9563=>0.0004, 9564=>0.0004, 9565=>0.0004, 9566=>0.0004, 9567=>0.0004, 9568=>0.0004, 9569=>0.0004, 9570=>0.0004, 9571=>0.0004, 9572=>0.0004, 9573=>0.0004, 9574=>0.0004, 9575=>0.0004, 9576=>0.0004, 9577=>0.0004, 9578=>0.0004, 9579=>0.0004, 9580=>0.0004, 9581=>0.0004, 9582=>0.0004, 9583=>0.0004, 9584=>0.0004, 9585=>0.0004, 9586=>0.0004, 9587=>0.0004, 9588=>0.0004, 9589=>0.0004, 9590=>0.0004, 9591=>0.0004, 9592=>0.0004, 9593=>0.0004, 9594=>0.0004, 9595=>0.0004, 9596=>0.0004, 9597=>0.0004, 9598=>0.0004, 9599=>0.0004, 9600=>0.0004, 9601=>0.0004, 9602=>0.0004, 9603=>0.0004, 9604=>0.0004, 9605=>0.0004, 9606=>0.0004, 9607=>0.0004, 9608=>0.0004, 9609=>0.0004, 9610=>0.0004, 9611=>0.0004, 9612=>0.0004, 9613=>0.0004, 9614=>0.0004, 9615=>0.0004, 9616=>0.0004, 9617=>0.0004, 9618=>0.0004, 9619=>0.0004, 9620=>0.0004, 9621=>0.0004, 9622=>0.0004, 9623=>0.0004, 9624=>0.0004, 9625=>0.0004, 9626=>0.0004, 9627=>0.0004, 9628=>0.0004, 9629=>0.0004, 9630=>0.0004, 9631=>0.0004, 9632=>0.0004, 9633=>0.0004, 9634=>0.0004, 9635=>0.0004, 9636=>0.0004, 9637=>0.0004, 9638=>0.0004, 9639=>0.0004, 9640=>0.0004, 9641=>0.0004, 9642=>0.0004, 9643=>0.0004, 9644=>0.0004, 9645=>0.0004, 9646=>0.0004, 9647=>0.0004, 9648=>0.0004, 9649=>0.0004, 9650=>0.0004, 9651=>0.0004, 9652=>0.0004, 9653=>0.0004, 9654=>0.0004, 9655=>0.0004, 9656=>0.0004, 9657=>0.0004, 9658=>0.0004, 9659=>0.0004, 9660=>0.0004, 9661=>0.0004, 9662=>0.0004, 9663=>0.0004, 9664=>0.0004, 9665=>0.0004, 9666=>0.0004, 9667=>0.0004, 9668=>0.0004, 9669=>0.0004, 9670=>0.0004, 9671=>0.0004, 9672=>0.0004, 9673=>0.0004, 9674=>0.0004, 9675=>0.0004, 9676=>0.0004, 9677=>0.0004, 9678=>0.0004, 9679=>0.0004, 9680=>0.0004, 9681=>0.0004, 9682=>0.0004, 9683=>0.0004, 9684=>0.0004, 9685=>0.0004, 9686=>0.0004, 9687=>0.0004, 9688=>0.0004, 9689=>0.0004, 9690=>0.0004, 9691=>0.0004, 9692=>0.0004, 9693=>0.0004, 9694=>0.0004, 9695=>0.0004, 9696=>0.0004, 9697=>0.0004, 9698=>0.0004, 9699=>0.0004, 9700=>0.0004, 9701=>0.0004, 9702=>0.0004, 9703=>0.0004, 9704=>0.0004, 9705=>0.0004, 9706=>0.0004, 9707=>0.0004, 9708=>0.0004, 9709=>0.0004, 9710=>0.0004, 9711=>0.0004, 9712=>0.0004, 9713=>0.0004, 9714=>0.0004, 9715=>0.0004, 9716=>0.0004, 9717=>0.0004, 9718=>0.0004, 9719=>0.0004, 9720=>0.0004, 9721=>0.0004, 9722=>0.0004, 9723=>0.0004, 9724=>0.0004, 9725=>0.0004, 9726=>0.0004, 9727=>0.0004, 9728=>0.0004, 9729=>0.0004, 9730=>0.0004, 9731=>0.0004, 9732=>0.0004, 9733=>0.0004, 9734=>0.0004, 9735=>0.0004, 9736=>0.0004, 9737=>0.0004, 9738=>0.0004, 9739=>0.0004, 9740=>0.0004, 9741=>0.0004, 9742=>0.0004, 9743=>0.0004, 9744=>0.0004, 9745=>0.0004, 9746=>0.0004, 9747=>0.0004, 9748=>0.0004, 9749=>0.0004, 9750=>0.0004, 9751=>0.0004, 9752=>0.0004, 9753=>0.0004, 9754=>0.0004, 9755=>0.0004, 9756=>0.0004, 9757=>0.0004, 9758=>0.0004, 9759=>0.0004, 9760=>0.0004, 9761=>0.0004, 9762=>0.0004, 9763=>0.0004, 9764=>0.0004, 9765=>0.0004, 9766=>0.0004, 9767=>0.0004, 9768=>0.0004, 9769=>0.0004, 9770=>0.0004, 9771=>0.0004, 9772=>0.0004, 9773=>0.0004, 9774=>0.0004, 9775=>0.0004, 9776=>0.0004, 9777=>0.0004, 9778=>0.0004, 9779=>0.0004, 9780=>0.0004, 9781=>0.0004, 9782=>0.0004, 9783=>0.0004, 9784=>0.0004, 9785=>0.0004, 9786=>0.0004, 9787=>0.0004, 9788=>0.0004, 9789=>0.0004, 9790=>0.0004, 9791=>0.0004, 9792=>0.0004, 9793=>0.0004, 9794=>0.0004, 9795=>0.0004, 9796=>0.0004, 9797=>0.0004, 9798=>0.0004, 9799=>0.0004, 9800=>0.0004, 9801=>0.0004, 9802=>0.0004, 9803=>0.0004, 9804=>0.0004, 9805=>0.0004, 9806=>0.0004, 9807=>0.0004, 9808=>0.0004, 9809=>0.0004, 9810=>0.0004, 9811=>0.0004, 9812=>0.0004, 9813=>0.0004, 9814=>0.0004, 9815=>0.0004, 9816=>0.0004, 9817=>0.0004, 9818=>0.0004, 9819=>0.0004, 9820=>0.0004, 9821=>0.0004, 9822=>0.0004, 9823=>0.0004, 9824=>0.0004, 9825=>0.0004, 9826=>0.0004, 9827=>0.0004, 9828=>0.0004, 9829=>0.0004, 9830=>0.0004, 9831=>0.0004, 9832=>0.0004, 9833=>0.0004, 9834=>0.0004, 9835=>0.0004, 9836=>0.0004, 9837=>0.0004, 9838=>0.0004, 9839=>0.0004, 9840=>0.0004, 9841=>0.0004, 9842=>0.0004, 9843=>0.0004, 9844=>0.0004, 9845=>0.0004, 9846=>0.0004, 9847=>0.0004, 9848=>0.0004, 9849=>0.0004, 9850=>0.0004, 9851=>0.0004, 9852=>0.0004, 9853=>0.0004, 9854=>0.0004, 9855=>0.0004, 9856=>0.0004, 9857=>0.0004, 9858=>0.0004, 9859=>0.0004, 9860=>0.0004, 9861=>0.0004, 9862=>0.0004, 9863=>0.0004, 9864=>0.0004, 9865=>0.0004, 9866=>0.0004, 9867=>0.0004, 9868=>0.0004, 9869=>0.0004, 9870=>0.0004, 9871=>0.0004, 9872=>0.0004, 9873=>0.0004, 9874=>0.0004, 9875=>0.0004, 9876=>0.0004, 9877=>0.0004, 9878=>0.0004, 9879=>0.0004, 9880=>0.0004, 9881=>0.0004, 9882=>0.0004, 9883=>0.0004, 9884=>0.0004, 9885=>0.0004, 9886=>0.0004, 9887=>0.0004, 9888=>0.0004, 9889=>0.0004, 9890=>0.0004, 9891=>0.0004, 9892=>0.0004, 9893=>0.0004, 9894=>0.0004, 9895=>0.0004, 9896=>0.0004, 9897=>0.0004, 9898=>0.0004, 9899=>0.0004, 9900=>0.0004, 9901=>0.0004, 9902=>0.0004, 9903=>0.0004, 9904=>0.0004, 9905=>0.0004, 9906=>0.0004, 9907=>0.0004, 9908=>0.0004, 9909=>0.0004, 9910=>0.0004, 9911=>0.0004, 9912=>0.0004, 9913=>0.0004, 9914=>0.0004, 9915=>0.0004, 9916=>0.0004, 9917=>0.0004, 9918=>0.0004, 9919=>0.0004, 9920=>0.0004, 9921=>0.0004, 9922=>0.0004, 9923=>0.0004, 9924=>0.0004, 9925=>0.0004, 9926=>0.0004, 9927=>0.0004, 9928=>0.0004, 9929=>0.0004, 9930=>0.0004, 9931=>0.0004, 9932=>0.0004, 9933=>0.0004, 9934=>0.0004, 9935=>0.0004, 9936=>0.0004, 9937=>0.0004, 9938=>0.0004, 9939=>0.0004, 9940=>0.0004, 9941=>0.0004, 9942=>0.0004, 9943=>0.0004, 9944=>0.0004, 9945=>0.0004, 9946=>0.0004, 9947=>0.0004, 9948=>0.0004, 9949=>0.0004, 9950=>0.0004, 9951=>0.0004, 9952=>0.0004, 9953=>0.0004, 9954=>0.0004, 9955=>0.0004, 9956=>0.0004, 9957=>0.0004, 9958=>0.0004, 9959=>0.0004, 9960=>0.0004, 9961=>0.0004, 9962=>0.0004, 9963=>0.0004, 9964=>0.0004, 9965=>0.0004, 9966=>0.0004, 9967=>0.0004, 9968=>0.0004, 9969=>0.0004, 9970=>0.0004, 9971=>0.0004, 9972=>0.0004, 9973=>0.0004, 9974=>0.0004, 9975=>0.0004, 9976=>0.0004, 9977=>0.0004, 9978=>0.0004, 9979=>0.0004, 9980=>0.0004, 9981=>0.0004, 9982=>0.0004, 9983=>0.0004, 9984=>0.0004, 9985=>0.0004, 9986=>0.0004, 9987=>0.0004, 9988=>0.0004, 9989=>0.0004, 9990=>0.0004, 9991=>0.0004, 9992=>0.0004, 9993=>0.0004, 9994=>0.0004, 9995=>0.0004, 9996=>0.0004, 9997=>0.0004, 9998=>0.0004, 9999=>0.0004, 10000=>0.0004}
48
+
47
49
 
48
50
  end
@@ -6,6 +6,10 @@ module ViralSeq
6
6
  class << self
7
7
 
8
8
  # methods to calculate TCS consensus cut-off based on the maximum numbers of PIDs and platform error rate.
9
+ # @see https://www.ncbi.nlm.nih.gov/pubmed/26041299 reference at Zhou et al. JVI 2016.
10
+ # @param m [Integer] PID abundance
11
+ # @param error_rate [Float] estimated platform error rate.
12
+ # @return [Integer] an abundance cut-off (Integer) for offspring Primer IDs.
9
13
 
10
14
  def calculate_cut_off(m, error_rate = 0.02)
11
15
  n = 0
@@ -289,8 +293,12 @@ module ViralSeq
289
293
  # => 0.0362
290
294
 
291
295
  def detection_limit(tcs_number)
292
- dl = `Rscript -e "library(dplyr); ifelse(#{tcs_number} > 2, (binom.test(0,#{tcs_number})['conf.int'] %>% unlist %>% unname)[2] %>% round(4) %>% cat, 0)" 2>/dev/null`
293
- dl.to_f
296
+ if ViralSeq::DETECT_SEN[tcs_number]
297
+ return ViralSeq::DETECT_SEN[tcs_number]
298
+ else
299
+ dl = `Rscript -e "library(dplyr); ifelse(#{tcs_number} > 2, (binom.test(0,#{tcs_number})['conf.int'] %>% unlist %>% unname)[2] %>% round(4) %>% cat, 0)" 2>/dev/null`
300
+ dl.to_f
301
+ end
294
302
  end
295
303
 
296
304
  private
@@ -2,6 +2,6 @@
2
2
  # version info and histroy
3
3
 
4
4
  module ViralSeq
5
- VERSION = "1.5.0"
6
- TCS_VERSION = "2.4.0"
5
+ VERSION = "1.6.0"
6
+ TCS_VERSION = "2.5.0"
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: viral_seq
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shuntai Zhou
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-01-06 00:00:00.000000000 Z
12
+ date: 2022-01-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -172,6 +172,7 @@ files:
172
172
  - docs/dr.json
173
173
  - docs/sample_miseq_data/hivdr_control/r1.fastq.gz
174
174
  - docs/sample_miseq_data/hivdr_control/r2.fastq.gz
175
+ - docs/variants_structure.pdf
175
176
  - lib/viral_seq.rb
176
177
  - lib/viral_seq/constant.rb
177
178
  - lib/viral_seq/enumerable.rb