Codebase list ruby-unicode-plot / d6baf2dc-b11b-4118-b3c5-2797deca1891/upstream
Import upstream version 0.0.5 Debian Janitor 2 years ago
174 changed file(s) with 15085 addition(s) and 429 deletion(s). Raw diff Collapse all Expand all
0 name: CI
1
2 on:
3 push:
4 branches:
5 - master
6 pull_request:
7 types:
8 - opened
9 - synchronize
10 - reopened
11
12 jobs:
13 test:
14 name: ${{ matrix.os }} ${{ matrix.ruby }}
15 runs-on: ${{ matrix.os }}
16
17 strategy:
18 fail-fast: false
19 matrix:
20 os:
21 - ubuntu-20.04
22 - ubuntu-18.04
23 - ubuntu-16.04
24 - macos-latest
25 - windows-latest
26 ruby:
27 - 3.0
28 - 2.7
29 - 2.6
30 - 2.5
31 - 2.4
32 - debug
33 include:
34 - { os: windows-latest , ruby: mingw }
35 - { os: windows-latest , ruby: mswin }
36 exclude:
37 - { os: windows-latest , ruby: 3.0 }
38 - { os: windows-latest , ruby: debug }
39
40 steps:
41 - uses: actions/checkout@v2
42 with:
43 fetch-depth: 1
44
45 - name: Setup Ruby
46 uses: ruby/setup-ruby@v1
47 with:
48 ruby-version: ${{ matrix.ruby }}
49
50 - run: bundle install --jobs 4 --retry 3
51
52 - run: bundle exec rake
53
54 - run: bundle exec rake build
55
56 - run: gem install pkg/*.gem
0 Gemfile.lock
1 pkg/
2 tmp/
3 *~
4
5 # to prevent yard documentation from accidentally being checked in
6 .yardoc/
7 doc/
0 --output-dir doc/reference
1 --markup markdown
2 --no-private
3 lib/**/*.rb
4 -
5 doc/text/*
0 # 0.0.5
1
2 - Add stairs support
3 [GitHub#38][GitHub#17]
4 [Patch by @nanobowers]
5
6 - Add block canvas support
7 [GitHub#39][GitHub#19]
8 [Patch by @nanobowers]
9
10 - Add stemplot support
11 [GitHub#40][GitHub#30]
12 [Patch by @nanobowers]
13
14 - Add an example of animation
15 [GitHub#33]
16 [Patch by @mrkn and @kojix2]
17
18 - Fix interpolation bug of lineplot
19 [GitHub#37][GitHub#32]
20 [Patch by @nanobowers]
21 [Reported by @Nakilon]
22
23 - Support `color:` option in `render` method
24 [GitHub#45]
25
26 - Add `canvas_types` method
27 [GitHub#44][GitHub#42]
28 [Reported by @kojix2]
29
30 - Use appropriate message for invalid border types,
31 and add `border_types` method
32 [GitHub#43][GitHub#41]
33 [Reported by @kojix2]
34
35 # 0.0.4
36
37 - Fix error by requiring `stringio` [#22]
38 - Use enumerable-statistics >= 2.0.1 to avoid a bug of histogram [#28]
39
40 # 0.0.3
41
42 - Add histogram support
43 - Add barplot! method
44 - Add scatterplot support
45 - Add densityplot support
46
47 # 0.0.2
48
49 - Add boxplot support
50
51 # 0.0.1
52
53 - Add barplot support
54 - Add lineplot support
00 source "https://rubygems.org/"
11
22 gemspec
3
4 # Temporary use this for module_function decorator support
5 gem "yard", github: "mrkn/yard", branch: "module_function_decorator"
00 # UnicodePlot - Plot your data by Unicode characters
11
22 UnicodePlot provides the feature to make charts with Unicode characters.
3
4 ## Documentation
5
6 https://red-data-tools.github.io/unicode_plot.rb/
37
48 ## Install
59
1721 y_cos = x.map {|xi| Math.cos(xi) }
1822 plot = UnicodePlot.lineplot(x, y_sin, name: "sin(x)", width: 40, height: 10)
1923 UnicodePlot.lineplot!(plot, x, y_cos, name: "cos(x)")
20 plot.render($stdout)
21 puts
24 plot.render
2225 ```
2326
2427 You can get the results below by running the above script:
3033 ### barplot
3134
3235 ```ruby
33 plot = UnicodePlot.barplot(data: {'foo': 20, 'bar': 50}, title: "Bar")
34 plot.render($stdout)
36 UnicodePlot.barplot(data: {'foo': 20, 'bar': 50}, title: "Bar").render
3537 ```
3638
3739 <img src="img/barplot.png" width="50%" />
3941 ### boxplot
4042
4143 ```ruby
42 plot = UnicodePlot.boxplot(data: {foo: [1, 3, 5], bar: [3, 5, 7]}, title: "Box")
43 plot.render($stdout)
44 UnicodePlot.boxplot(data: {foo: [1, 3, 5], bar: [3, 5, 7]}, title: "Box").render
4445 ```
4546
4647 <img src="img/boxplot.png" width="50%" />
5051 ```ruby
5152 x = Array.new(500) { 20*rand - 10 } + Array.new(500) { 6*rand - 3 }
5253 y = Array.new(1000) { 30*rand - 10 }
53 plot = UnicodePlot.densityplot(x, y, title: "Density")
54 plot.render($stdout)
54 UnicodePlot.densityplot(x, y, title: "Density").render
5555 ```
5656
5757 <img src="img/densityplot.png" width="50%" />
6060
6161 ```ruby
6262 x = Array.new(100) { rand(10) } + Array.new(100) { rand(30) + 10 }
63 plot = UnicodePlot.histogram(x, title: "Histogram")
64 plot.render($stdout)
63 UnicodePlot.histogram(x, title: "Histogram").render
6564 ```
6665
6766 <img src="img/histogram.png" width="50%" />
7574 ```ruby
7675 x = Array.new(50) { rand(20) - 10 }
7776 y = x.map {|xx| xx*rand(30) - 10 }
78 plot = UnicodePlot.scatterplot(x, y, title: "Scatter")
79 plot.render($stdout)
77 UnicodePlot.scatterplot(x, y, title: "Scatter").render
8078 ```
8179
8280 <img src="img/scatterplot.png" width="50%" />
00 require "bundler/gem_helper"
1 require "yard"
12
23 base_dir = File.expand_path("..", __FILE__)
34 helper = Bundler::GemHelper.new(base_dir)
45 helper.install
5 spec = helper.gemspec
66
77 desc "Run test"
88 task :test do
1010 end
1111
1212 task default: :test
13
14 YARD::Rake::YardocTask.new do |task|
15 end
0 require "unicode_plot"
1 require "stringio"
2
3 N = 1000
4 M = 50
5
6 out = StringIO.new
7 def out.tty?; true; end
8
9 shift = 0
10 continue = true
11 Signal.trap(:INT) { continue = false }
12
13 while continue
14 out.truncate(0)
15
16 xs = 0...N
17 ys = xs.map {|x| Math.sin(2*Math::PI*(x + shift) / N) }
18 UnicodePlot.lineplot(xs, ys, width: 60, height: 15).render(out)
19
20 lines = out.string.lines
21 lines.each do |line|
22 $stdout.print "\r#{line}"
23 end
24 $stdout.print "\e[0J"
25 $stdout.flush
26
27 sleep 0.2
28
29 if continue
30 n = lines.count
31 $stdout.print "\e[#{n}F"
32 shift = (shift + M) % N
33 end
34 end
35
36 $stdout.print "\e[0J"
0 #!/bin/env ruby
1 $LOAD_PATH << "#{__dir__}/../lib"
2 require "unicode_plot"
3
4 # example of line plots using different canvases
5 UnicodePlot.lineplot([1, 2, 7], [9, -6, 8], title: "Default Lineplot").render
6 UnicodePlot.lineplot([1, 2, 7], [9, -6, 8], title: "Ascii Lineplot", canvas: :ascii).render
7 UnicodePlot.lineplot([1, 2, 7], [9, -6, 8], title: "Dot Lineplot", canvas: :dot).render
8 UnicodePlot.lineplot([1, 2, 7], [9, -6, 8], title: "Block Lineplot", canvas: :block).render
0 #!/bin/env ruby
1
2 $LOAD_PATH << "#{__dir__}/../lib"
3 require "unicode_plot"
4
5 # single plot at a time
6 UnicodePlot.stairs([1, 2, 4, 7, 8], [1, 3, 4, 2, 7], style: :post).render
7
8 # pre: style
9 UnicodePlot.stairs([1, 2, 4, 7, 8], [1, 3, 4, 2, 7], style: :pre).render
10
11 # Another single plot with title
12 UnicodePlot.stairs([2, 3, 5, 6, 9], [2, 5, 3, 4, 2], title: "My Staircase Plot").render
13
14 # Two plots at a time.
15 # Using an explicit limit because data for the 2nd plot is outside the bounds from the 1st plot
16 plot = UnicodePlot.stairs([1, 2, 4, 7, 8], [1, 3, 4, 2, 7], title: "Two Staircases", xlim: [1,10] )
17 UnicodePlot.stairs!(plot, [0, 3, 5, 6, 9], [2, 5, 3, 4, 0])
18 plot.render
19
20
0 #!/bin/env ruby
1 # coding: utf-8
2 $LOAD_PATH << "#{__dir__}/../lib"
3 require "unicode_plot"
4
5 fifty_floats = 50.times.map { rand(-1000..1000)/350.0 }
6 eighty_ints = 80.times.map { rand(1..100) }
7 another_eighty_ints = 80.times.map { rand(1..100) }
8 three_hundred_ints = 300.times.map { rand(-100..100) }
9
10 UnicodePlot.stemplot(eighty_ints)
11
12 UnicodePlot.stemplot(three_hundred_ints)
13
14 UnicodePlot.stemplot(fifty_floats, scale: 1)
15
16 UnicodePlot.stemplot(fifty_floats, scale: 1, divider: "😄")
17
18 UnicodePlot.stemplot(eighty_ints, another_eighty_ints)
19
20 # Examples with strings
21
22 words_1 = %w[apple junk ant age bee bar baz dog egg a]
23 words_2 = %w[ape flan can cat juice elf gnome child fruit]
24
25 UnicodePlot.stemplot(words_1)
26
27 UnicodePlot.stemplot(words_1, words_2)
28
29
30 UnicodePlot.stemplot(words_1, scale: 100, trim: true)
31
32 UnicodePlot.stemplot(words_1, scale: 100, trim: true, string_padchar: '?')
33
34 floats = (-8..8).to_a.map { |a| a / 2.0 }
35 UnicodePlot.stemplot(floats, scale: 1)
0 #!/bin/env ruby
1
2 $LOAD_PATH << "#{__dir__}/../lib"
3 require "unicode_plot"
4
5 ys = [261, 272, 277, 283, 289, 294, 298, 305, 309, 314, 319, 320, 322, 323, 324]
6
7 xs = ys.size.times.to_a
8
9 UnicodePlot.lineplot(xs, ys, height: 26, ylim: [0, 700]).render
10
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
+0
-120
lib/unicode_plot/ascii_canvas.rb less more
0 module UnicodePlot
1 class AsciiCanvas < LookupCanvas
2 ASCII_SIGNS = [
3 [ 0b100_000_000, 0b000_100_000, 0b000_000_100 ].freeze,
4 [ 0b010_000_000, 0b000_010_000, 0b000_000_010 ].freeze,
5 [ 0b001_000_000, 0b000_001_000, 0b000_000_001 ].freeze
6 ].freeze
7
8 ASCII_LOOKUP = {
9 0b101_000_000 => '"',
10 0b111_111_111 => '@',
11 #0b011_110_011 => '$',
12 0b010_000_000 => '\'',
13 0b010_100_010 => '(',
14 0b010_001_010 => ')',
15 0b000_010_000 => '*',
16 0b010_111_010 => '+',
17 0b000_010_010 => ',',
18 0b000_100_100 => ',',
19 0b000_001_001 => ',',
20 0b000_111_000 => '-',
21 0b000_000_010 => '.',
22 0b000_000_100 => '.',
23 0b000_000_001 => '.',
24 0b001_010_100 => '/',
25 0b010_100_000 => '/',
26 0b001_010_110 => '/',
27 0b011_010_010 => '/',
28 0b001_010_010 => '/',
29 0b110_010_111 => '1',
30 #0b111_010_100 => '7',
31 0b010_000_010 => ':',
32 0b111_000_111 => '=',
33 #0b010_111_101 => 'A',
34 #0b011_100_011 => 'C',
35 #0b110_101_110 => 'D',
36 #0b111_110_100 => 'F',
37 #0b011_101_011 => 'G',
38 #0b101_111_101 => 'H',
39 0b111_010_111 => 'I',
40 #0b011_001_111 => 'J',
41 #0b101_110_101 => 'K',
42 0b100_100_111 => 'L',
43 #0b111_111_101 => 'M',
44 #0b101_101_101 => 'N',
45 #0b111_101_111 => 'O',
46 #0b111_111_100 => 'P',
47 0b111_010_010 => 'T',
48 #0b101_101_111 => 'U',
49 0b101_101_010 => 'V',
50 #0b101_111_111 => 'W',
51 0b101_010_101 => 'X',
52 0b101_010_010 => 'Y',
53 0b110_100_110 => '[',
54 0b010_001_000 => '\\',
55 0b100_010_001 => '\\',
56 0b110_010_010 => '\\',
57 0b100_010_011 => '\\',
58 0b100_010_010 => '\\',
59 0b011_001_011 => ']',
60 0b010_101_000 => '^',
61 0b000_000_111 => '_',
62 0b100_000_000 => '`',
63 #0b000_111_111 => 'a',
64 #0b100_111_111 => 'b',
65 #0b001_111_111 => 'd',
66 #0b001_111_010 => 'f',
67 #0b100_111_101 => 'h',
68 #0b100_101_101 => 'k',
69 0b110_010_011 => 'l',
70 #0b000_111_101 => 'n',
71 0b000_111_100 => 'r',
72 #0b000_101_111 => 'u',
73 0b000_101_010 => 'v',
74 0b011_110_011 => '{',
75 0b010_010_010 => '|',
76 0b100_100_100 => '|',
77 0b001_001_001 => '|',
78 0b110_011_110 => '}',
79 }.freeze
80
81 ascii_lookup_key_order = [
82 0x0002, 0x00d2, 0x0113, 0x00a0, 0x0088,
83 0x002a, 0x0100, 0x0197, 0x0012, 0x0193,
84 0x0092, 0x0082, 0x008a, 0x0054, 0x0004,
85 0x01d2, 0x01ff, 0x0124, 0x00a8, 0x0056,
86 0x0001, 0x01c7, 0x0052, 0x0080, 0x0009,
87 0x00cb, 0x0007, 0x003c, 0x0111, 0x0140,
88 0x0024, 0x0127, 0x0192, 0x0010, 0x019e,
89 0x01a6, 0x01d7, 0x0155, 0x00a2, 0x00ba,
90 0x0112, 0x0049, 0x00f3, 0x0152, 0x0038,
91 0x016a
92 ]
93
94 ASCII_DECODE = [' ']
95
96 1.upto(0b111_111_111) do |i|
97 min_key = ascii_lookup_key_order.min_by {|k| (i ^ k).digits(2).sum }
98 ASCII_DECODE[i] = ASCII_LOOKUP[min_key]
99 end
100
101 ASCII_DECODE.freeze
102
103 PIXEL_PER_CHAR = 3
104
105 def initialize(width, height, **kw)
106 super(width, height,
107 PIXEL_PER_CHAR, PIXEL_PER_CHAR,
108 **kw)
109 end
110
111 def lookup_encode(x, y)
112 ASCII_SIGNS[x][y]
113 end
114
115 def lookup_decode(code)
116 ASCII_DECODE[code]
117 end
118 end
119 end
6868 end
6969 end
7070
71 # @overload barplot(text, heights, xscale: nil, title: nil, xlabel: nil, ylabel: nil, labels: true, border: :barplot, margin: Plot::DEFAULT_MARGIN, padding: Plot::DEFAULT_PADDING, color: Barplot::DEFAULT_COLOR, width: Plot::DEFAULT_WIDTH, symbol: Barplot::DEFAULT_SYMBOL)
72 #
73 # Draws a horizontal barplot.
74 #
75 # @param text [Array<String>] The lables / captions of the bars.
76 # @param heights [Array<Numeric>] The values / heights of the bars.
77 # @param xscale [nil,:log,:ln,:log10,:lg,:log2,:lb,callable]
78 # A function name symbol or callable object to transform the bar
79 # length before plotting. This effectively scales the x-axis
80 # without influencing the captions of the individual bars.
81 # e.g. use `xscale: :log10` for logscale.
82 # @param title
83 # @param xlabel
84 # @param ylabel
85 # @param labels
86 # @param border
87 # @param margin
88 # @param padding
89 # @param color
90 # @param width
91 # @param symbol [String] Specifies the character that should be used
92 # to render the bars.
93 #
94 # @return [Barplot] A plot object.
95 #
96 # @example Example usage of barplot on IRB:
97 #
98 # >> UnicodePlot.barplot(["Paris", "New York", "Moskau", "Madrid"],
99 # [2.244, 8.406, 11.92, 3.165],
100 # xlabel: "population [in mil]").render
101 # ┌ ┐
102 # Paris ┤■■■■■■ 2.244
103 # New York ┤■■■■■■■■■■■■■■■■■■■■■■■ 8.406
104 # Moskau ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 11.92
105 # Madrid ┤■■■■■■■■■ 3.165
106 # └ ┘
107 # population [in mil]
108 # => nil
109 #
110 # @see Plot
111 # @see histogram
112 # @see Barplot
113 #
114 # @overload barplot(data, **kwargs)
115 #
116 # The different variation of barplot described above.
117 #
118 # @param data [Hash] A hash in which the keys will be used as `text` and
119 # the values will be utilized as `heights`.
120 # @param kwargs Optional keyword arguments same as ones described above.
121 # @return [Barplot] A plot object.
71122 module_function def barplot(*args,
72123 width: Plot::DEFAULT_WIDTH,
73124 color: Barplot::DEFAULT_COLOR,
107158 plot
108159 end
109160
161 # @overload barplot!(plot, text, heights)
162 #
163 # Draw additional bars on the given existing plot.
164 #
165 # @param plot [Barplot] the existing plot.
166 # @return [Barplot] A plot object.
167 #
168 # @see barplot
169 #
170 # @overload barplot!(plot, data)
171 #
172 # The different variation of `barplot!` that takes the plotting data in a hash.
173 #
174 # @param plot [Barplot] the existing plot.
175 # @return [Barplot] A plot object.
110176 module_function def barplot!(plot,
111177 *args,
112 data: nil,
113 **kw)
178 data: nil)
114179 case args.length
115180 when 0
116181 data = Hash(data)
+0
-64
lib/unicode_plot/braille_canvas.rb less more
0 module UnicodePlot
1 class BrailleCanvas < Canvas
2 X_PIXEL_PER_CHAR = 2
3 Y_PIXEL_PER_CHAR = 4
4
5 BRAILLE_SIGNS = [
6 [
7 0x2801,
8 0x2802,
9 0x2804,
10 0x2840,
11 ].freeze,
12 [
13 0x2808,
14 0x2810,
15 0x2820,
16 0x2880
17 ].freeze
18 ].freeze
19
20 def initialize(width, height, **kw)
21 super(width, height,
22 width * X_PIXEL_PER_CHAR,
23 height * Y_PIXEL_PER_CHAR,
24 "\u{2800}",
25 x_pixel_per_char: X_PIXEL_PER_CHAR,
26 y_pixel_per_char: Y_PIXEL_PER_CHAR,
27 **kw)
28 end
29
30 def pixel!(pixel_x, pixel_y, color)
31 unless 0 <= pixel_x && pixel_x <= pixel_width &&
32 0 <= pixel_y && pixel_y <= pixel_height
33 return color
34 end
35 pixel_x -= 1 unless pixel_x < pixel_width
36 pixel_y -= 1 unless pixel_y < pixel_height
37 tx = pixel_x.fdiv(pixel_width) * width
38 char_x = tx.floor + 1
39 char_x_off = pixel_x % X_PIXEL_PER_CHAR + 1
40 char_x += 1 if char_x < tx.round + 1 && char_x_off == 1
41
42 char_y = (pixel_y.fdiv(pixel_height) * height).floor + 1
43 char_y_off = pixel_y % Y_PIXEL_PER_CHAR + 1
44
45 index = index_at(char_x - 1, char_y - 1)
46 if index
47 @grid[index] = (@grid[index].ord | BRAILLE_SIGNS[char_x_off - 1][char_y_off - 1]).chr(Encoding::UTF_8)
48 @colors[index] |= COLOR_ENCODE[color]
49 end
50 color
51 end
52
53 def print_row(out, row_index)
54 unless 0 <= row_index && row_index < height
55 raise ArgumentError, "row_index out of bounds"
56 end
57 y = row_index
58 (0 ... width).each do |x|
59 print_color(out, color_at(x, y), char_at(x, y))
60 end
61 end
62 end
63 end
0 require_relative 'lookup_canvas'
1
2 module UnicodePlot
3 class AsciiCanvas < LookupCanvas
4 Canvas::CANVAS_CLASS_MAP[:ascii] = self
5
6 ASCII_SIGNS = [
7 [ 0b100_000_000, 0b000_100_000, 0b000_000_100 ].freeze,
8 [ 0b010_000_000, 0b000_010_000, 0b000_000_010 ].freeze,
9 [ 0b001_000_000, 0b000_001_000, 0b000_000_001 ].freeze
10 ].freeze
11
12 ASCII_LOOKUP = {
13 0b101_000_000 => '"',
14 0b111_111_111 => '@',
15 #0b011_110_011 => '$',
16 0b010_000_000 => '\'',
17 0b010_100_010 => '(',
18 0b010_001_010 => ')',
19 0b000_010_000 => '*',
20 0b010_111_010 => '+',
21 0b000_010_010 => ',',
22 0b000_100_100 => ',',
23 0b000_001_001 => ',',
24 0b000_111_000 => '-',
25 0b000_000_010 => '.',
26 0b000_000_100 => '.',
27 0b000_000_001 => '.',
28 0b001_010_100 => '/',
29 0b010_100_000 => '/',
30 0b001_010_110 => '/',
31 0b011_010_010 => '/',
32 0b001_010_010 => '/',
33 0b110_010_111 => '1',
34 #0b111_010_100 => '7',
35 0b010_000_010 => ':',
36 0b111_000_111 => '=',
37 #0b010_111_101 => 'A',
38 #0b011_100_011 => 'C',
39 #0b110_101_110 => 'D',
40 #0b111_110_100 => 'F',
41 #0b011_101_011 => 'G',
42 #0b101_111_101 => 'H',
43 0b111_010_111 => 'I',
44 #0b011_001_111 => 'J',
45 #0b101_110_101 => 'K',
46 0b100_100_111 => 'L',
47 #0b111_111_101 => 'M',
48 #0b101_101_101 => 'N',
49 #0b111_101_111 => 'O',
50 #0b111_111_100 => 'P',
51 0b111_010_010 => 'T',
52 #0b101_101_111 => 'U',
53 0b101_101_010 => 'V',
54 #0b101_111_111 => 'W',
55 0b101_010_101 => 'X',
56 0b101_010_010 => 'Y',
57 0b110_100_110 => '[',
58 0b010_001_000 => '\\',
59 0b100_010_001 => '\\',
60 0b110_010_010 => '\\',
61 0b100_010_011 => '\\',
62 0b100_010_010 => '\\',
63 0b011_001_011 => ']',
64 0b010_101_000 => '^',
65 0b000_000_111 => '_',
66 0b100_000_000 => '`',
67 #0b000_111_111 => 'a',
68 #0b100_111_111 => 'b',
69 #0b001_111_111 => 'd',
70 #0b001_111_010 => 'f',
71 #0b100_111_101 => 'h',
72 #0b100_101_101 => 'k',
73 0b110_010_011 => 'l',
74 #0b000_111_101 => 'n',
75 0b000_111_100 => 'r',
76 #0b000_101_111 => 'u',
77 0b000_101_010 => 'v',
78 0b011_110_011 => '{',
79 0b010_010_010 => '|',
80 0b100_100_100 => '|',
81 0b001_001_001 => '|',
82 0b110_011_110 => '}',
83 }.freeze
84
85 ascii_lookup_key_order = [
86 0x0002, 0x00d2, 0x0113, 0x00a0, 0x0088,
87 0x002a, 0x0100, 0x0197, 0x0012, 0x0193,
88 0x0092, 0x0082, 0x008a, 0x0054, 0x0004,
89 0x01d2, 0x01ff, 0x0124, 0x00a8, 0x0056,
90 0x0001, 0x01c7, 0x0052, 0x0080, 0x0009,
91 0x00cb, 0x0007, 0x003c, 0x0111, 0x0140,
92 0x0024, 0x0127, 0x0192, 0x0010, 0x019e,
93 0x01a6, 0x01d7, 0x0155, 0x00a2, 0x00ba,
94 0x0112, 0x0049, 0x00f3, 0x0152, 0x0038,
95 0x016a
96 ]
97
98 ASCII_DECODE = [' ']
99
100 1.upto(0b111_111_111) do |i|
101 min_key = ascii_lookup_key_order.min_by {|k| (i ^ k).digits(2).sum }
102 ASCII_DECODE[i] = ASCII_LOOKUP[min_key]
103 end
104
105 ASCII_DECODE.freeze
106
107 PIXEL_PER_CHAR = 3
108
109 def initialize(width, height, **kw)
110 super(width, height,
111 PIXEL_PER_CHAR, PIXEL_PER_CHAR,
112 **kw)
113 end
114
115 def lookup_encode(x, y)
116 ASCII_SIGNS[x][y]
117 end
118
119 def lookup_decode(code)
120 ASCII_DECODE[code]
121 end
122 end
123 end
0 module UnicodePlot
1 # The `BlockCanvas` is also Unicode-based.
2 # It has half the resolution of the `BrailleCanvas`.
3 # In contrast to BrailleCanvas, the pixels don't
4 # have visible spacing between them.
5 # This canvas effectively turns every character
6 # into 4 pixels that can individually be manipulated
7 # using binary operations.
8 class BlockCanvas < LookupCanvas
9 Canvas::CANVAS_CLASS_MAP[:block] = self
10
11 X_PIXEL_PER_CHAR = 2
12 Y_PIXEL_PER_CHAR = 2
13
14 def initialize(width, height, fill_char=0, **kw)
15 super(width, height,
16 X_PIXEL_PER_CHAR,
17 Y_PIXEL_PER_CHAR,
18 fill_char,
19 **kw)
20 end
21
22 BLOCK_SIGNS = [
23 [0b1000, 0b0010].freeze,
24 [0b0100, 0b0001].freeze
25 ].freeze
26
27 BLOCK_DECODE = [
28 -' ', -'▗', -'▖', -'▄',
29 -'▝', -'▐', -'▞', -'▟',
30 -'▘', -'▚', -'▌', -'▙',
31 -'▀', -'▜', -'▛', -'█'
32 ].freeze
33
34 def lookup_encode(x,y) ; BLOCK_SIGNS[x][y] ; end
35 def lookup_decode(x) ; BLOCK_DECODE[x] ; end
36 end
37 end
0 module UnicodePlot
1 class BrailleCanvas < Canvas
2 Canvas::CANVAS_CLASS_MAP[:braille] = self
3
4 X_PIXEL_PER_CHAR = 2
5 Y_PIXEL_PER_CHAR = 4
6
7 BRAILLE_SIGNS = [
8 [
9 0x2801,
10 0x2802,
11 0x2804,
12 0x2840,
13 ].freeze,
14 [
15 0x2808,
16 0x2810,
17 0x2820,
18 0x2880
19 ].freeze
20 ].freeze
21
22 def initialize(width, height, **kw)
23 super(width, height,
24 width * X_PIXEL_PER_CHAR,
25 height * Y_PIXEL_PER_CHAR,
26 "\u{2800}",
27 x_pixel_per_char: X_PIXEL_PER_CHAR,
28 y_pixel_per_char: Y_PIXEL_PER_CHAR,
29 **kw)
30 end
31
32 def pixel!(pixel_x, pixel_y, color)
33 unless 0 <= pixel_x && pixel_x <= pixel_width &&
34 0 <= pixel_y && pixel_y <= pixel_height
35 return color
36 end
37 pixel_x -= 1 unless pixel_x < pixel_width
38 pixel_y -= 1 unless pixel_y < pixel_height
39 tx = pixel_x.fdiv(pixel_width) * width
40 char_x = tx.floor + 1
41 char_x_off = pixel_x % X_PIXEL_PER_CHAR + 1
42 char_x += 1 if char_x < tx.round + 1 && char_x_off == 1
43
44 char_y_off = pixel_y % Y_PIXEL_PER_CHAR + 1
45 char_y = ((pixel_y - (char_y_off - 1)) / Y_PIXEL_PER_CHAR) + 1
46
47 index = index_at(char_x - 1, char_y - 1)
48 if index
49 @grid[index] = (@grid[index].ord | BRAILLE_SIGNS[char_x_off - 1][char_y_off - 1]).chr(Encoding::UTF_8)
50 @colors[index] |= COLOR_ENCODE[color]
51 end
52 color
53 end
54
55 def print_row(out, row_index)
56 unless 0 <= row_index && row_index < height
57 raise ArgumentError, "row_index out of bounds"
58 end
59 y = row_index
60 (0 ... width).each do |x|
61 print_color(out, color_at(x, y), char_at(x, y))
62 end
63 end
64 end
65 end
0 module UnicodePlot
1 class DensityCanvas < Canvas
2 Canvas::CANVAS_CLASS_MAP[:density] = self
3
4 DENSITY_SIGNS = [" ", "░", "▒", "▓", "█"].freeze
5
6 MIN_WIDTH = 5
7 MIN_HEIGHT = 5
8
9 X_PIXEL_PER_CHAR = 1
10 Y_PIXEL_PER_CHAR = 2
11
12 def initialize(width, height, **kw)
13 width = [width, MIN_WIDTH].max
14 height = [height, MIN_HEIGHT].max
15 @max_density = 1
16 super(width, height,
17 width * X_PIXEL_PER_CHAR,
18 height * Y_PIXEL_PER_CHAR,
19 0,
20 x_pixel_per_char: X_PIXEL_PER_CHAR,
21 y_pixel_per_char: Y_PIXEL_PER_CHAR,
22 **kw)
23 end
24
25 def pixel!(pixel_x, pixel_y, color)
26 unless 0 <= pixel_x && pixel_x <= pixel_width &&
27 0 <= pixel_y && pixel_y <= pixel_height
28 return color
29 end
30
31 pixel_x -= 1 unless pixel_x < pixel_width
32 pixel_y -= 1 unless pixel_y < pixel_height
33
34 char_x = (pixel_x.fdiv(pixel_width) * width).floor
35 char_y = (pixel_y.fdiv(pixel_height) * height).floor
36
37 index = index_at(char_x, char_y)
38 @grid[index] += 1
39 @max_density = [@max_density, @grid[index]].max
40 @colors[index] |= COLOR_ENCODE[color]
41 color
42 end
43
44 def print_row(out, row_index)
45 unless 0 <= row_index && row_index < height
46 raise ArgumentError, "row_index out of bounds"
47 end
48 y = row_index
49 den_sign_count = DENSITY_SIGNS.length
50 val_scale = (den_sign_count - 1).fdiv(@max_density)
51 (0 ... width).each do |x|
52 den_index = (char_at(x, y) * val_scale).round
53 print_color(out, color_at(x, y), DENSITY_SIGNS[den_index])
54 end
55 end
56 end
57 end
0 module UnicodePlot
1 class DotCanvas < LookupCanvas
2 Canvas::CANVAS_CLASS_MAP[:dot] = self
3
4 DOT_SIGNS = [
5 [
6 0b10,
7 0b01
8 ].freeze
9 ].freeze
10
11 DOT_DECODE = [
12 -' ', # 0b00
13 -'.', # 0b01
14 -"'", # 0b10
15 -':', # 0b11
16 ].freeze
17
18 X_PIXEL_PER_CHAR = 1
19 Y_PIXEL_PER_CHAR = 2
20
21 def initialize(width, height, **kw)
22 super(width, height,
23 X_PIXEL_PER_CHAR, Y_PIXEL_PER_CHAR,
24 **kw)
25 end
26
27 def lookup_encode(x, y)
28 DOT_SIGNS[x][y]
29 end
30
31 def lookup_decode(code)
32 DOT_DECODE[code]
33 end
34 end
35 end
0 module UnicodePlot
1 class LookupCanvas < Canvas
2 def initialize(width, height, x_pixel_per_char, y_pixel_per_char, fill_char=0, **kw)
3 super(width, height,
4 width * x_pixel_per_char,
5 height * y_pixel_per_char,
6 fill_char,
7 x_pixel_per_char: x_pixel_per_char,
8 y_pixel_per_char: y_pixel_per_char,
9 **kw)
10 end
11
12 def pixel!(pixel_x, pixel_y, color)
13 unless 0 <= pixel_x && pixel_x <= pixel_width &&
14 0 <= pixel_y && pixel_y <= pixel_height
15 return color
16 end
17 pixel_x -= 1 unless pixel_x < pixel_width
18 pixel_y -= 1 unless pixel_y < pixel_height
19
20 tx = pixel_x.fdiv(pixel_width) * width
21 char_x = tx.floor + 1
22 char_x_off = pixel_x % x_pixel_per_char + 1
23 char_x += 1 if char_x < tx.round + 1 && char_x_off == 1
24
25 char_y_off = pixel_y % y_pixel_per_char + 1
26 char_y = ((pixel_y - (char_y_off - 1)) / y_pixel_per_char) + 1
27
28 index = index_at(char_x - 1, char_y - 1)
29 if index
30 @grid[index] |= lookup_encode(char_x_off - 1, char_y_off - 1)
31 @colors[index] |= COLOR_ENCODE[color]
32 end
33 end
34
35 def print_row(out, row_index)
36 unless 0 <= row_index && row_index < height
37 raise ArgumentError, "row_index out of bounds"
38 end
39 y = row_index
40 (0 ... width).each do |x|
41 print_color(out, color_at(x, y), lookup_decode(char_at(x, y)))
42 end
43 end
44 end
45 end
11 class Canvas
22 include BorderPrinter
33
4 CANVAS_CLASS_MAP = {}
5
46 def self.create(canvas_type, width, height, **kw)
5 case canvas_type
6 when :ascii
7 AsciiCanvas.new(width, height, **kw)
8 when :braille
9 BrailleCanvas.new(width, height, **kw)
10 when :density
11 DensityCanvas.new(width, height, **kw)
12 when :dot
13 DotCanvas.new(width, height, **kw)
7 canvas_class = CANVAS_CLASS_MAP[canvas_type]
8 case canvas_class
9 when Class
10 canvas_class.new(width, height, **kw)
1411 else
1512 raise ArgumentError, "unknown canvas type: #{canvas_type}"
1613 end
165162 raise ArgumentError, "#{name} has to be positive"
166163 end
167164 end
165
166 def self.canvas_types
167 Canvas::CANVAS_CLASS_MAP.keys
168 end
168169 end
170
171 require_relative 'canvas/ascii_canvas'
172 require_relative 'canvas/block_canvas'
173 require_relative 'canvas/braille_canvas'
174 require_relative 'canvas/density_canvas'
175 require_relative 'canvas/dot_canvas'
176
177 UnicodePlot::Canvas::CANVAS_CLASS_MAP.freeze
+0
-56
lib/unicode_plot/density_canvas.rb less more
0 module UnicodePlot
1 class DensityCanvas < Canvas
2 DENSITY_SIGNS = [" ", "░", "▒", "▓", "█"].freeze
3
4 MIN_WIDTH = 5
5 MIN_HEIGHT = 5
6
7 X_PIXEL_PER_CHAR = 1
8 Y_PIXEL_PER_CHAR = 2
9
10 def initialize(width, height, **kw)
11 width = [width, MIN_WIDTH].max
12 height = [height, MIN_HEIGHT].max
13 @max_density = 1
14 super(width, height,
15 width * X_PIXEL_PER_CHAR,
16 height * Y_PIXEL_PER_CHAR,
17 0,
18 x_pixel_per_char: X_PIXEL_PER_CHAR,
19 y_pixel_per_char: Y_PIXEL_PER_CHAR,
20 **kw)
21 end
22
23 def pixel!(pixel_x, pixel_y, color)
24 unless 0 <= pixel_x && pixel_x <= pixel_width &&
25 0 <= pixel_y && pixel_y <= pixel_height
26 return color
27 end
28
29 pixel_x -= 1 unless pixel_x < pixel_width
30 pixel_y -= 1 unless pixel_y < pixel_height
31
32 char_x = (pixel_x.fdiv(pixel_width) * width).floor
33 char_y = (pixel_y.fdiv(pixel_height) * height).floor
34
35 index = index_at(char_x, char_y)
36 @grid[index] += 1
37 @max_density = [@max_density, @grid[index]].max
38 @colors[index] |= COLOR_ENCODE[color]
39 color
40 end
41
42 def print_row(out, row_index)
43 unless 0 <= row_index && row_index < height
44 raise ArgumentError, "row_index out of bounds"
45 end
46 y = row_index
47 den_sign_count = DENSITY_SIGNS.length
48 val_scale = (den_sign_count - 1).fdiv(@max_density)
49 (0 ... width).each do |x|
50 den_index = (char_at(x, y) * val_scale).round
51 print_color(out, color_at(x, y), DENSITY_SIGNS[den_index])
52 end
53 end
54 end
55 end
+0
-34
lib/unicode_plot/dot_canvas.rb less more
0 module UnicodePlot
1 class DotCanvas < LookupCanvas
2 DOT_SIGNS = [
3 [
4 0b10,
5 0b01
6 ].freeze
7 ].freeze
8
9 DOT_DECODE = [
10 -' ', # 0b00
11 -'.', # 0b01
12 -"'", # 0b10
13 -':', # 0b11
14 ].freeze
15
16 X_PIXEL_PER_CHAR = 1
17 Y_PIXEL_PER_CHAR = 2
18
19 def initialize(width, height, **kw)
20 super(width, height,
21 X_PIXEL_PER_CHAR, Y_PIXEL_PER_CHAR,
22 **kw)
23 end
24
25 def lookup_encode(x, y)
26 DOT_SIGNS[x][y]
27 end
28
29 def lookup_decode(code)
30 DOT_DECODE[code]
31 end
32 end
33 end
0 require "forwardable"
1
2 module UnicodePlot
3 class IOContext
4 extend Forwardable
5
6 def initialize(io, color: :auto)
7 @io = io
8 @color = check_color(color)
9 end
10
11 def_delegators :@io, :print, :puts
12
13 def color?
14 case @color
15 when :auto
16 @io.respond_to?(:tty?) ? @io.tty? : false
17 else
18 @color
19 end
20 end
21
22 private def check_color(color)
23 case color
24 when true, false, :auto
25 color
26 else
27 raise ArgumentError, "color must be either true, false, :auto"
28 end
29 end
30 end
31 end
+0
-51
lib/unicode_plot/layout.rb less more
0 module UnicodePlot
1 class GridLayout
2 DEFAULT_WIDTH = 80
3
4 def initialize(n_rows, n_columns, width: Layout::DEFAULT_WIDTH)
5 @n_rows = n_rows
6 @n_columns = n_columns
7 @width = width
8 end
9
10 def [](i, j)
11 @plots[i * n_cols + j]
12 end
13
14 def []=(i, j, plot)
15 @plots[i * n_cols + j] = plot
16 end
17
18 def <<(plot)
19 @plots << plot
20 end
21
22 def render(out)
23 buffers = []
24 (0 ... n_rows).each do |i|
25 (0 ... n_columns).each do |j|
26 StringIO.open do |sio|
27 def sio.tty?; true; end
28 render_cell(sio, i, j)
29 sio.close
30 buffers << sio.string
31 end
32 end
33 end
34 end
35
36 def render_cell(out, i, j)
37 plot = self[i, j]
38 return unless plot
39 plot.width = cell_width
40 end
41 end
42
43 module_function def grid_layout(n_rows, n_cols, *plots, **kw)
44 grid = GridLayout.new(n_rows, n_cols, **kw)
45 plots.each do |plot|
46 grid << plot
47 end
48 grid
49 end
50 end
33 class Lineplot < GridPlot
44 end
55
6 # @overload lineplot([x], y, name: "", canvas: :braille, title: "", xlabel: "", ylabel: "", labels: true, border: :solid, margin: Plot::DEFAULT_MARGIN, padding: Plot::DEFAULT_PADDING, color: :auto, width: Plot::DEFAULT_WIDTH, height: GridPlot::DEFAULT_HEIGHT, xlim: [0, 0], ylim: [0, 0], canvas: :braille, grid: true)
7 #
8 # Draws a path through the given points on a new canvas.
9 #
10 # The first (optional) array `x` should contain the horizontal positions for all the points along the path.
11 # The second array `y` should then contain the corresponding vertical positions respectively.
12 # This means that the two vectors must be of the same length and ordering.
13 #
14 # @param x [Array<Numeric>] Optional. The horizontal position for each point. If omitted, the axes of `y` will be used as `x`.
15 # @param y [Array<Numeric>] The vertical position for each point.
16 # @param name [String] Annotation of the current drawing to be displayed on the right.
17 # @param title
18 # @param xlabel
19 # @param ylabel
20 # @param labels
21 # @param border
22 # @param margin
23 # @param padding
24 # @param color
25 # @param width
26 # @param height
27 # @param xlim
28 # @param ylim
29 # @param canvas [Symbol] The type of canvas that should be used for drawing.
30 # @param grid [true,false] If `true`, draws grid-lines at the origin.
31 # @return [Lineplot] A plot object.
632 module_function def lineplot(*args,
733 canvas: :braille,
834 color: :auto,
4066 end
4167 end
4268
69 # @overload lineplot!(plot, [x], y, name: "", color: :auto)
70 #
71 # Draws a path through the given points on the given canvas.
72 #
73 # @param plot [Lineplot] The plot object.
74 # @param x [Array<Numeric>] Optional. The horizontal position for each point. If omitted, the axes of `y` will be used as `x`.
75 # @param y [Array<Numeric>] The vertical position for each point.
76 # @param name [String] Annotation of the current drawing to be displayed on the right.
77 # @param color
78 # @return [Lineplot] The plot object same as the `plot` parameter.
4379 module_function def lineplot!(plot,
4480 *args,
4581 color: :auto,
+0
-46
lib/unicode_plot/lookup_canvas.rb less more
0 module UnicodePlot
1 class LookupCanvas < Canvas
2 def initialize(width, height, x_pixel_per_char, y_pixel_per_char, fill_char=0, **kw)
3 super(width, height,
4 width * x_pixel_per_char,
5 height * y_pixel_per_char,
6 fill_char,
7 x_pixel_per_char: x_pixel_per_char,
8 y_pixel_per_char: y_pixel_per_char,
9 **kw)
10 end
11
12 def pixel!(pixel_x, pixel_y, color)
13 unless 0 <= pixel_x && pixel_x <= pixel_width &&
14 0 <= pixel_y && pixel_y <= pixel_height
15 return color
16 end
17 pixel_x -= 1 unless pixel_x < pixel_width
18 pixel_y -= 1 unless pixel_y < pixel_height
19
20 tx = pixel_x.fdiv(pixel_width) * width
21 char_x = tx.floor + 1
22 char_x_off = pixel_x % x_pixel_per_char + 1
23 char_x += 1 if char_x < tx.round + 1 && char_x_off == 1
24
25 char_y = (pixel_y.fdiv(pixel_height) * height).floor + 1
26 char_y_off = pixel_y % y_pixel_per_char + 1
27
28 index = index_at(char_x - 1, char_y - 1)
29 if index
30 @grid[index] |= lookup_encode(char_x_off - 1, char_y_off - 1)
31 @colors[index] |= COLOR_ENCODE[color]
32 end
33 end
34
35 def print_row(out, row_index)
36 unless 0 <= row_index && row_index < height
37 raise ArgumentError, "row_index out of bounds"
38 end
39 y = row_index
40 (0 ... width).each do |x|
41 print_color(out, color_at(x, y), lookup_decode(char_at(x, y)))
42 end
43 end
44 end
45 end
1616 @title = title
1717 @xlabel = xlabel
1818 @ylabel = ylabel
19 @border = border
19 @border = check_border(border)
2020 @margin = check_margin(margin)
2121 @padding = padding
2222 @labels_left = {}
102102 end
103103 end
104104
105 def render(out=$stdout, newline: true)
106 Renderer.render(out, self, newline)
105 def render(out=$stdout, newline: true, color: :auto)
106 Renderer.render(IOContext.new(out, color: color), self, newline)
107107 end
108108
109109 COLOR_CYCLE = [
141141 raise ArgumentError, "row_index out of bounds"
142142 end
143143 end
144
145 private def check_border(border)
146 return border if BORDER_MAP.key?(border)
147 raise ArgumentError, "unknown border type: #{border}"
148 end
144149 end
145150 end
3939 barplot: BorderMaps::BORDER_BARPLOT,
4040 }.freeze
4141
42 def self.border_types
43 BORDER_MAP.keys
44 end
45
4246 module BorderPrinter
4347 include StyledPrinter
4448
127131 left_len = nocolor_string(left_str).length
128132 right_len = nocolor_string(right_str).length
129133
130 unless color?(out)
134 unless out.color?
131135 left_str = nocolor_string(left_str)
132136 right_str = nocolor_string(right_str)
133137 end
0 # coding: utf-8
1 module UnicodePlot
2 # @overload stairs(x, y, style: :post, name: "", title: "", xlabel: "", ylabel: "", labels: true, border: :solid, margin: 3, padding: 1, color: :auto, width: 40, height: 15, xlim: [0, 0], ylim: [0, 0], canvas: :braille, grid: true)
3 #
4 # Draws a staircase plot on a new canvas.
5 #
6 # The first vector `x` should contain the horizontal
7 # positions for all the points. The second vector `y` should then
8 # contain the corresponding vertical positions respectively. This
9 # means that the two vectors must be of the same length and
10 # ordering.
11 #
12 # @param x [Array<Numeric>] The horizontal position for each point.
13 # @param y [Array<Numeric>] The vertical position for each point.
14 # @param style [Symbol] Specifies where the transition of the stair takes place. Can be either `:pre` or `:post`.
15 # @param name [String] Annotation of the current drawing to be displayed on the right.
16 # @param height [Integer] Number of character rows that should be used for plotting.
17 # @param xlim [Array<Numeric>] Plotting range for the x axis. `[0, 0]` stands for automatic.
18 # @param ylim [Array<Numeric>] Plotting range for the y axis. `[0, 0]` stands for automatic.
19 # @param canvas [Symbol] The type of canvas that should be used for drawing.
20 # @param grid [Boolean] If `true`, draws grid-lines at the origin.
21 #
22 # @return [Plot] A plot object.
23 #
24 # @example Example usage of stairs on IRB:
25 #
26 # >> UnicodePlot.stairs([1, 2, 4, 7, 8], [1, 3, 4, 2, 7], style: :post, title: "My Staircase Plot").render
27 # My Staircase Plot
28 # ┌────────────────────────────────────────┐
29 # 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
30 # │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
31 # │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
32 # │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
33 # │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
34 # │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
35 # │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
36 # │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡄⠀⠀⠀⠀⢸│
37 # │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
38 # │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
39 # │⠀⠀⠀⠀⠀⢸⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
40 # │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
41 # │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠼│
42 # │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
43 # 1 │⣀⣀⣀⣀⣀⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
44 # └────────────────────────────────────────┘
45 # 1 8
46 # => nil
47 #
48 # @see Plot
49 # @see scatterplot
50 # @see lineplot
51 module_function def stairs(xvec, yvec, style: :post, **kw)
52 x_vex, y_vex = compute_stair_lines(xvec, yvec, style: style)
53 lineplot(x_vex, y_vex, **kw)
54 end
55
56 # Similar to stairs, but takes an existing plot object as a first argument.
57 module_function def stairs!(plot, xvec, yvec, style: :post, **kw)
58 x_vex, y_vex = compute_stair_lines(xvec, yvec, style: style)
59 lineplot!(plot, x_vex, y_vex, **kw)
60 end
61
62 module_function def compute_stair_lines(x, y, style: :post)
63 x_vex = Array.new(x.length * 2 - 1, 0)
64 y_vex = Array.new(x.length * 2 - 1, 0)
65 x_vex[0] = x[0]
66 y_vex[0] = y[0]
67 o = 0
68 if style == :post
69 (1 ... x.length).each do |i|
70 x_vex[i + o] = x[i]
71 x_vex[i + o + 1] = x[i]
72 y_vex[i + o] = y[i-1]
73 y_vex[i + o + 1] = y[i]
74 o += 1
75 end
76 elsif style == :pre
77 (1 ... x.length).each do |i|
78 x_vex[i + o] = x[i-1]
79 x_vex[i + o + 1] = x[i]
80 y_vex[i + o] = y[i]
81 y_vex[i + o + 1] = y[i]
82 o += 1
83 end
84 end
85 return [x_vex, y_vex]
86 end
87 end
0 # coding: utf-8
1
2 module UnicodePlot
3
4 # ## Description
5 #
6 # Draw a stem-leaf plot of the given vector +vec+.
7 #
8 # ```
9 # stemplot(vec, **kwargs)
10 # ```
11 #
12 # Draw a back-to-back stem-leaf plot of the given vectors +vec1+ and +vec2+.
13 #
14 # ```
15 # stemplot(vec1, vec2, **kwargs)
16 # ```
17 #
18 # The vectors can be any object that converts to an Array, e.g. an Array, Range, etc.
19 # If all elements of the vector are Numeric, the stem-leaf plot is classified as a
20 # {NumericStemplot}, otherwise it is classified as a {StringStemplot}. Back-to-back
21 # stem-leaf plots must be the same type, i.e. String and Numeric stem-leaf plots cannot
22 # be mixed in a back-to-back plot.
23 #
24 # ## Usage
25 #
26 # stemplot(vec, [vec2], scale:, divider:, padchar:, trim: )
27 #
28 # ## Arguments
29 #
30 # - +vec+: Vector for which the stem leaf plot should be computed.
31 # - +vec2+: Optional secondary vector, will be used to create a back-to-back stem-leaf plot.
32 # - +scale+: Set scale of plot. Default = 10. Scale is changed via orders of magnitude. Common values are 0.1, 1, and 10. For String stems, the default value of 10 is a one character stem, 100 is a two character stem.
33 # - +divider+: Character for break between stem and leaf. Default = "|"
34 # - +padchar+: Character(s) to separate stems, leaves and dividers. Default = " "
35 # - +trim+: Trims the stem labels when there are no leaves. This can be useful if your data is sparse. Default = +false+
36 # - +string_padchar+: Character used to replace missing position for input strings shorter than the stem-size. Default = "_"
37 #
38 # ## Result
39 # A plot of object type is sent to <tt>$stdout</tt>
40 #
41 # @example Examples using Numbers
42 # # Generate some numbers
43 # fifty_floats = 50.times.map { rand(-1000..1000)/350.0 }
44 # eighty_ints = 80.times.map { rand(1..100) }
45 # another_eighty_ints = 80.times.map { rand(1..100) }
46 # three_hundred_ints = 300.times.map { rand(-100..100) }
47 #
48 # # Single sided stem-plot
49 # UnicodePlot.stemplot(eighty_ints)
50 #
51 # # Single sided stem-plot with positive and negative values
52 # UnicodePlot.stemplot(three_hundred_ints)
53 #
54 # # Single sided stem-plot using floating point values, scaled
55 # UnicodePlot.stemplot(fifty_floats, scale: 1)
56 #
57 # # Single sided stem-plot using floating point values, scaled with new divider
58 # UnicodePlot.stemplot(fifty_floats, scale: 1, divider: "😄")
59 #
60 # # Back to back stem-plot
61 # UnicodePlot.stemplot(eighty_ints, another_eighty_ints)
62 #
63 # @example Examples using Strings
64 # # Generate some strings
65 # words_1 = %w[apple junk ant age bee bar baz dog egg a]
66 # words_2 = %w[ape flan can cat juice elf gnome child fruit]
67 #
68 # # Single sided stem-plot
69 # UnicodePlot.stemplot(words_1)
70 #
71 # # Back to back stem-plot
72 # UnicodePlot.stemplot(words_1, words_2)
73 #
74 # # Scaled stem plot using scale=100 (two letters for the stem) and trimmed stems
75 # UnicodePlot.stemplot(words_1, scale: 100, trim: true)
76 #
77 # # Above, but changing the string_padchar
78 # UnicodePlot.stemplot(words_1, scale: 100, trim: true, string_padchar: '?')
79
80 class Stemplot
81
82 # Use {factory} method -- should not be directly called.
83 def initialize(*_args, **_kw)
84 @stemleafs = {}
85 end
86
87 # Factory method to create a Stemplot, creates either a NumericStemplot
88 # or StringStemplot depending on input.
89 #
90 # @param vector [Array] An array of elements to stem-leaf plot
91 # @return [NumericStemplot] If all elements are Numeric
92 # @return [StringStemplot] If any elements are not Numeric
93 def self.factory(vector, **kw)
94 vec = Array(vector)
95 if vec.all? { |item| item.is_a?(Numeric) }
96 NumericStemplot.new(vec, **kw)
97 else
98 StringStemplot.new(vec, **kw)
99 end
100 end
101
102 # Insert a stem and leaf
103 def insert(stem, leaf)
104 @stemleafs[stem] ||= []
105 @stemleafs[stem] << leaf
106 end
107
108 # Returns an unsorted list of stems
109 # @return [Array] Unsorted list of stems
110 def raw_stems
111 @stemleafs.keys
112 end
113
114 # Returns a list of leaves for a given stem
115 # @param stem [Object] The stem
116 # @return [Array] Unsorted list of leaves
117 def leaves(stem)
118 @stemleafs[stem] || []
119 end
120
121 # Determines largest length of any stem
122 # @return [Integer] Length value
123 def max_stem_length
124 @stemleafs.values.map(&:length).max
125 end
126
127 # Returns a sorted list of stems
128 # @param all [Boolean] Return all stems if true, otherwise only return stems if a leaf exists for a stem
129 # @return [Array] Sorted list of stems
130 def stems(all: true)
131 self.class.sorted_stem_list(raw_stems, all: all)
132 end
133
134 end
135
136 class NumericStemplot < Stemplot
137 def initialize(vector, scale: 10, **kw)
138 super
139 Array(vector).each do |value|
140 fvalue = value.to_f.fdiv(scale/10.0)
141 stemnum = (fvalue/10).to_i
142 leafnum = (fvalue - (stemnum*10)).to_i
143 stemsign = value.negative? ? "-" : ''
144 stem = stemsign + stemnum.abs.to_s
145 leaf = leafnum.abs.to_s
146 self.insert(stem, leaf)
147 end
148 end
149
150 # Print key to STDOUT
151 # @param scale [Integer] Scale, should be a power of 10
152 # @param divider [String] Divider character between stem and leaf
153 def print_key(scale, divider)
154 # First print the key
155 puts "Key: 1#{divider}0 = #{scale}"
156 # Description of where the decimal is
157 trunclog = Math.log10(scale).truncate
158 ndigits = trunclog.abs
159 right_or_left = (trunclog < 0) ? "left" : "right"
160 puts "The decimal is #{ndigits} digit(s) to the #{right_or_left} of #{divider}"
161 end
162
163 # Used when we have stems from a back-to-back stemplot and a combined list of stems is given
164 # @param stems [Array] Concatenated list of stems from two plots
165 # @param all [Boolean] Return all stems if true, otherwise only return stems if a leaf exists for a stem
166 # @return [Array] Sorted list of stems
167 def self.sorted_stem_list(stems, all: true)
168 negkeys, poskeys = stems.partition { |str| str[0] == '-'}
169 if all
170 negmin, negmax = negkeys.map(&:to_i).map(&:abs).minmax
171 posmin, posmax = poskeys.map(&:to_i).minmax
172 negrange = negmin ? (negmin..negmax).to_a.reverse.map { |s| "-"+s.to_s } : []
173 posrange = posmin ? (posmin..posmax).to_a.map(&:to_s) : []
174 return negrange + posrange
175 else
176 negkeys.sort! { |a,b| a.to_i <=> b.to_i }
177 poskeys.sort! { |a,b| a.to_i <=> b.to_i }
178 return negkeys + poskeys
179 end
180 end
181 end
182
183 class StringStemplot < Stemplot
184
185 def initialize(vector, scale: 10, string_padchar: '_', **_kw)
186 super
187 stem_places = Math.log10(scale).floor
188 raise ArgumentError, "Cannot take fewer than 1 place from stem. Scale parameter should be greater than or equal to 10." if stem_places < 1
189 vector.each do |value|
190 # Strings may be shorter than the number of places we desire,
191 # so we will pad them with a string-pad-character.
192 padded_value = value.ljust(stem_places+1, string_padchar)
193 stem = padded_value[0...stem_places]
194 leaf = padded_value[stem_places]
195 self.insert(stem, leaf)
196 end
197 end
198
199 # Function prototype to provide same interface as {NumericStemplot}.
200 # This function does not do anything.
201 # @return [false]
202 def print_key(_scale, _divider)
203 # intentionally empty
204 return false
205 end
206
207 # Used when we have stems from a back-to-back stemplot and a combined list of stems is given
208 # @param stems [Array] Concatenated list of stems from two plots
209 # @param all [Boolean] Return all stems if true, otherwise only return stems if a leaf exists for a stem
210 # @return [Array] Sorted list of stems
211 def self.sorted_stem_list(stems, all: true)
212 if all
213 rmin, rmax = stems.minmax
214 return (rmin .. rmax).to_a
215 else
216 stems.sort
217 end
218 end
219
220 end
221
222 # Print a Single-Vector stemplot to STDOUT.
223 #
224 # - Stem data is printed on the left.
225 # - Leaf data is printed on the right.
226 # - Key is printed at the bottom.
227 # @param plt [Stemplot] Stemplot object
228 # @param scale [Integer] Scale, should be a power of 10
229 # @param divider [String] Divider character between stem and leaf
230 # @param padchar [String] Padding character
231 # @param trim [Boolean] Trim missing stems from the plot
232 def stemplot1!(plt,
233 scale: 10,
234 divider: "|",
235 padchar: " ",
236 trim: false,
237 **_kw
238 )
239
240 stem_labels = plt.stems(all: !trim)
241 label_len = stem_labels.map(&:length).max
242 column_len = label_len + 1
243
244 stem_labels.each do |stem|
245 leaves = plt.leaves(stem).sort
246 stemlbl = stem.rjust(label_len, padchar).ljust(column_len, padchar)
247 puts stemlbl + divider + padchar + leaves.join
248 end
249 plt.print_key(scale, divider)
250 end
251
252 # Print a Back-to-Back Stemplot to STDOUT
253 #
254 # - +plt1+ Leaf data is printed on the left.
255 # - Common stem data is printed in the center.
256 # - +plt2+ Leaf data is printed on the right.
257 # - Key is printed at the bottom.
258 # @param plt1 [Stemplot] Stemplot object for the left side
259 # @param plt2 [Stemplot] Stemplot object for the right side
260 # @param scale [Integer] Scale, should be a power of 10
261 # @param divider [String] Divider character between stem and leaf
262 # @param padchar [String] Padding character
263 # @param trim [Boolean] Trim missing stems from the plot
264 def stemplot2!(plt1, plt2,
265 scale: 10,
266 divider: "|",
267 padchar: " ",
268 trim: false,
269 **_kw
270 )
271 stem_labels = plt1.class.sorted_stem_list( (plt1.raw_stems + plt2.raw_stems).uniq, all: !trim )
272 label_len = stem_labels.map(&:length).max
273 column_len = label_len + 1
274
275 leftleaf_len = plt1.max_stem_length
276
277 stem_labels.each do |stem|
278 left_leaves = plt1.leaves(stem).sort.join('')
279 right_leaves = plt2.leaves(stem).sort.join('')
280 left_leaves_just = left_leaves.reverse.rjust(leftleaf_len, padchar)
281 stem = stem.rjust(column_len, padchar).ljust(column_len+1, padchar)
282 puts left_leaves_just + padchar + divider + stem + divider + padchar + right_leaves
283 end
284
285 plt1.print_key(scale, divider)
286
287 end
288
289 # Generates one or more {Stemplot} objects from the input data
290 # and prints a Single or Double stemplot using {stemplot1!} or {stemplot2!}
291 # @see Stemplot
292 # @example Single sided stemplot
293 # >> UnicodePlot.stemplot(eighty_ints)
294 # 0 | 257
295 # 1 | 00335679
296 # 2 | 034455899
297 # 3 | 145588
298 # 4 | 0022223
299 # 5 | 0223399
300 # 6 | 012345568889
301 # 7 | 01133334466777888
302 # 8 | 013689
303 # 9 | 22667
304 # Key: 1|0 = 10
305 # The decimal is 1 digit(s) to the right of |
306 #
307 # @example Back-to-back stemplot
308 # >> UnicodePlot.stemplot(eighty_ints, another_eighty_ints)
309 # 752 | 0 | 1244457899
310 # 97653300 | 1 | 4799
311 # 998554430 | 2 | 015668
312 # 885541 | 3 | 0144557888899
313 # 3222200 | 4 | 00268
314 # 9933220 | 5 | 0234778
315 # 988865543210 | 6 | 122222357889
316 # 88877766443333110 | 7 | 134556689
317 # 986310 | 8 | 24589
318 # 76622 | 9 | 022234468
319 # Key: 1|0 = 10
320 # The decimal is 1 digit(s) to the right of |
321 #
322 def stemplot(*args, scale: 10, **kw)
323 case args.length
324 when 1
325 # Stemplot object
326 plt = Stemplot.factory(args[0], scale: scale, **kw)
327 # Dispatch to plot routine
328 stemplot1!(plt, scale: scale, **kw)
329 when 2
330 # Stemplot object
331 plt1 = Stemplot.factory(args[0], scale: scale)
332 plt2 = Stemplot.factory(args[1], scale: scale)
333 raise ArgumentError, "Plot types must be the same for back-to-back stemplot " +
334 "#{plt1.class} != #{plt2.class}" unless plt1.class == plt2.class
335 # Dispatch to plot routine
336 stemplot2!(plt1, plt2, scale: scale, **kw)
337 else
338 raise ArgumentError, "Expecting one or two arguments"
339 end
340 end
341
342 module_function :stemplot, :stemplot1!, :stemplot2!
343 end
5757 COLOR_DECODE = COLOR_ENCODE.map {|k, v| [v, k] }.to_h.freeze
5858
5959 def print_styled(out, *args, bold: false, color: :normal)
60 return out.print(*args) unless color?(out)
60 return out.print(*args) unless out.color?
6161
6262 str = StringIO.open {|sio| sio.print(*args); sio.close; sio.string }
6363 color = :nothing if bold && color == :bold
8282 color = COLOR_DECODE[color]
8383 print_styled(out, *args, color: color)
8484 end
85
86 def color?(out)
87 out&.tty? || false
88 end
8985 end
9086 end
00 module UnicodePlot
1 VERSION = "0.0.4"
1 VERSION = "0.0.5"
22
33 module Version
44 numbers, TAG = VERSION.split("-", 2)
11
22 require 'unicode_plot/version'
33
4 require 'unicode_plot/io_context'
45 require 'unicode_plot/utils'
56 require 'unicode_plot/styled_printer'
67 require 'unicode_plot/value_transformer'
78 require 'unicode_plot/renderer'
89
910 require 'unicode_plot/canvas'
10 require 'unicode_plot/braille_canvas'
11 require 'unicode_plot/density_canvas'
12 require 'unicode_plot/lookup_canvas'
13 require 'unicode_plot/ascii_canvas'
14 require 'unicode_plot/dot_canvas'
1511
1612 require 'unicode_plot/plot'
1713 require 'unicode_plot/grid_plot'
2218 require 'unicode_plot/lineplot'
2319 require 'unicode_plot/histogram'
2420 require 'unicode_plot/scatterplot'
21 require 'unicode_plot/stairs'
22 require 'unicode_plot/stemplot'
0  ┌ ┐
1 bar ┤■■■■■■■■■■■■■■■■■■■■■■ 23  
2 foo ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 37  
3  └ ┘
0  ┌ ┐
1 bar ┤■■■■■■■■■ 23  
2 foo ┤■■■■■■■■■■■■■■■ 37  
3 zoom ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 90  
4  └ ┘
0  ┌ ┐
1 bar ┤■■■■■■■■■■■■■■■■■■■■■ 23.0  
2 2.1 ┤■■■■■■■■■ 10  
3 foo ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 37.0  
4  └ ┘
0  ┌ ┐
1 a ┤ 1  
2 b ┤ 1  
3 c ┤ 1  
4 d ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 1000000  
5  └ ┘
0  ┌ ┐
1 5 ┤ 0  
2 4 ┤ 0  
3 3 ┤ 0  
4 2 ┤ 0  
5 1 ┤ 0  
6  └ ┘
0  Logscale Plot
1  ┌ ┐
2 a ┤ 0  
3 b ┤ 1  
4 c ┤■■■■■■■■■■■ 10  
5 d ┤■■■■■■■■■■■■■■■■■■■■■■■ 100  
6 e ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 1000  
7  └ ┘
8  [log10]
0  Logscale Plot
1  ┌ ┐
2 a ┤ 0  
3 b ┤ 1  
4 c ┤■■■■■■■■■■■ 10  
5 d ┤■■■■■■■■■■■■■■■■■■■■■■■ 100  
6 e ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 1000  
7  └ ┘
8  custom label
0 ┌ ┐
1 bar ┤■■■■■■■■■■■■■■■■■■■■■■ 23
2 foo ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 37
3 └ ┘
0  Relative sizes of cities
1  ┌ ┐
2 Paris ┤■■■■■■ 2.244  
3 New York ┤■■■■■■■■■■■■■■■■■■■■■■■ 8.406  
4 Moskau ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 11.92  
5 Madrid ┤■■■■■■■■■ 3.165  
6  └ ┘
7  population [in mil]
0  Relative sizes of cities
1  ┌ ┐
2  ┤■■■■■■ 2.244  
3  ┤■■■■■■■■■■■■■■■■■■■■■■■ 8.406  
4  ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 11.92  
5  ┤■■■■■■■■■ 3.165  
6  └ ┘
0  Relative sizes of cities
1  ┌────────────────────────────────────────────────────────────┐
2 Paris │========== 2.244 │
3 New York │===================================== 8.406 │
4 Moskau │===================================================== 11.92 │
5 Madrid │============== 3.165 │
6  └────────────────────────────────────────────────────────────┘
7  population [in mil]
0  ┌ ┐
1 2 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■ 11  
2 3 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 12  
3 4 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 13  
4 5 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 14  
5 6 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 15  
6  └ ┘
0  ┌ ┐
1 2 ┤■■■■■■■■■■■■■■■■■■■ 11  
2 3 ┤■■■■■■■■■■■■■■■■■■■■■ 12  
3 4 ┤■■■■■■■■■■■■■■■■■■■■■■ 13  
4 5 ┤■■■■■■■■■■■■■■■■■■■■■■■■ 14  
5 6 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■ 15  
6 9 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 20  
7 10 ┤■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 21  
8  └ ┘
0  ┌ ┐
1  ╷ ┌─────────┬─────────┐ ╷ 
2  ├────────┤ │ ├─────────┤ 
3  ╵ └─────────┴─────────┘ ╵ 
4  └ ┘
5  1 3 5
0  ┌ ┐
1  ╷ ┌─────────┬─────────┐ ╷ 
2 series1 ├────────┤ │ ├─────────┤ 
3  ╵ └─────────┴─────────┘ ╵ 
4  └ ┘
5  1 3 5
0  Test
1  ┌──────────────────────────────────────────────────┐
2  │ ╷ ┌────┬─────┐ ╷ │
3 series1 │ ├─────┤ │ ├────┤ │
4  │ ╵ └────┴─────┘ ╵ │
5  └──────────────────────────────────────────────────┘
6  -1 3.5 8
7  foo
0 Test
1 ┌──────────────────────────────────────────────────┐
2 │ ╷ ┌────┬─────┐ ╷ │
3 series1 │ ├─────┤ │ ├────┤ │
4 │ ╵ └────┴─────┘ ╵ │
5 └──────────────────────────────────────────────────┘
6 -1 3.5 8
7 foo
0  Multi-series
1  ┌ ┐
2  ╷ ┌────┬────┐ ╷  
3 one ├───┤ │ ├────┤  
4  ╵ └────┴────┘ ╵  
5   ╷ ┌───────┬────────┐ ╷ 
6 two  ├────────┤ │ ├────────┤ 
7   ╵ └───────┴────────┘ ╵ 
8  └ ┘
9  1 5 9
10  foo
0  Multi-series
1  ┌ ┐
2   ╷ ┌──┬───┐ ╷  
3 one  ├──┤ │ ├──┤  
4   ╵ └──┴───┘ ╵  
5   ╷ ┌─────┬─────┐ ╷  
6 two  ├─────┤ │ ├────┤  
7   ╵ └─────┴─────┘ ╵  
8  ╷ ┌──┬───┐ ╷ 
9 one more ├────────┤ │ ├──────────────────────┤ 
10  ╵ └──┴───┘ ╵ 
11  └ ┘
12  -1 5 11
13  foo
0  Multi-series
1  ┌ ┐
2   ╷ ┌──┬─┐ ╷  
3 one  ├──┤ │ ├──┤  
4   ╵ └──┴─┘ ╵  
5   ╷ ┌───┬────┐ ╷  
6 two  ├────┤ │ ├────┤  
7   ╵ └───┴────┘ ╵  
8  ╷ ┌──┬─┐ ╷  
9 one more ├──────┤ │ ├──────────────────┤  
10  ╵ └──┴─┘ ╵  
11   ╷┌───┐ ╷ 
12 last one  ├┤ ├──────────────────────────┤ 
13   ╵└───┘ ╵ 
14  └ ┘
15  -1 6.5 14
16  foo
0  ┌ ┐
1   ╷ ┌───────┬───────┐ ╷ 
2   ├───────┤ │ ├───────┤ 
3   ╵ └───────┴───────┘ ╵ 
4  └ ┘
5  0 2.5 5
0  ┌ ┐
1   ╷ ┌──────┬──────┐ ╷  
2   ├─────┤ │ ├─────┤  
3   ╵ └──────┴──────┘ ╵  
4  └ ┘
5  0 3 6
0  ┌ ┐
1   ╷ ┌───┬───┐ ╷  
2   ├───┤ │ ├───┤  
3   ╵ └───┴───┘ ╵  
4  └ ┘
5  0 5 10
0  ┌ ┐
1   ╷ ┌─┬─┐ ╷  
2   ├─┤ │ ├─┤  
3   ╵ └─┴─┘ ╵  
4  └ ┘
5  0 10 20
0  ┌ ┐
1  ╷┌┬┐╷  
2  ├┤│├┤  
3  ╵└┴┘╵  
4  └ ┘
5  0 20 40
0 |.  '         *   .  "   .  *      `.v-"
1 | \.               .        \   ..-"`  
2 |   \.   " | `      v    `  ..-"`   '  
3 |   ""\="=""""\---------vvr=________"' 
4 |\ "    \{          ..-"`   .   *\  `  
5 |   /    /\.   \..-T` \       /   .**  
6 |      .    lv-/`   '      \     .     .
7 | ` .   ..-"` \.    .        \.        
8 |  ...-"`      `\.   *.         .\    "
9 L,-""  .          \..  `*.        . .  
0 |. ' * . " . * `.v-"
1 | \. . \ ..-"`
2 | \. " | ` v ` ..-"` '
3 | ""\="=""""\---------vvr=________"'
4 |\ " \{ ..-"` . *\ `
5 | / /\. \..-T` \ / .**
6 | . lv-/` ' \ . .
7 | ` . ..-"` \. . \.
8 | ...-"` `\. *. .\ "
9 L,-"" . \.. `*. . .
0 |   \.   " | `      v    `  ..-"`   '  
0 ┌────────────────────────────────────────┐
1 │|.  '         *   .  "   .  *      `.v-"│
2 │| \.               .        \   ..-"`   │
3 │|   \.   " | `      v    `  ..-"`   '   │
4 │|   ""\="=""""\---------vvr=________"'  │
5 │|\ "    \{          ..-"`   .   *\  `   │
6 │|   /    /\.   \..-T` \       /   .**   │
7 │|      .    lv-/`   '      \     .     .│
8 │| ` .   ..-"` \.    .        \.         │
9 │|  ...-"`      `\.   *.         .\    " │
10 │L,-""  .          \..  `*.        . .   │
11 └────────────────────────────────────────┘
0 ┌────────────────────────────────────────┐
1 │|. ' * . " . * `.v-"│
2 │| \. . \ ..-"` │
3 │| \. " | ` v ` ..-"` ' │
4 │| ""\="=""""\---------vvr=________"' │
5 │|\ " \{ ..-"` . *\ ` │
6 │| / /\. \..-T` \ / .** │
7 │| . lv-/` ' \ . .│
8 │| ` . ..-"` \. . \. │
9 │| ...-"` `\. *. .\ " │
10 │L,-"" . \.. `*. . . │
11 └────────────────────────────────────────┘
0 ▛▄  ▘         ▘   ▖  ▝   ▗  ▝      ▘▗▙▞▀
1 ▌ ▀▄               ▖        ▗   ▗▄▞▀▘  
2 ▌▘  ▀▄   ▝ ▐ ▌      ▄    ▘  ▗▄▞▀▘   ▘  
3 ▌   ▀▀▀█▀▛▀▀▀▀▀▀▀▀▀▀▄▄▄▄▄▄▟█▙▄▄▄▙▄▄▄▝▘ 
4 ▌▗ ▝    ▀▙          ▗▄▞▀▘   ▖   ▖▝  ▘  
5 ▌   ▖    ▖▀▄   ▝▗▄▞▛▘ ▗       ▖   ▖▘▝  
6 ▌      ▗    ▜▄▞▀▘   ▘      ▝     ▗     ▗
7 ▌ ▘ ▖   ▗▄▞▀▘ ▀▄    ▖        ▗▗        
8 ▌  ▄▗▄▞▀▘      ▘▀▄   ▝▗         ▗▝    ▝
9 ▙▙▞▀▀  ▖          ▀▄▖  ▀▘▗        ▖ ▖  
0 ▛▄ ▘ ▘ ▖ ▝ ▗ ▝ ▘▗▙▞▀
1 ▌ ▀▄ ▖ ▗ ▗▄▞▀▘
2 ▌▘ ▀▄ ▝ ▐ ▌ ▄ ▘ ▗▄▞▀▘ ▘
3 ▌ ▀▀▀█▀▛▀▀▀▀▀▀▀▀▀▀▄▄▄▄▄▄▟█▙▄▄▄▙▄▄▄▝▘
4 ▌▗ ▝ ▀▙ ▗▄▞▀▘ ▖ ▖▝ ▘
5 ▌ ▖ ▖▀▄ ▝▗▄▞▛▘ ▗ ▖ ▖▘▝
6 ▌ ▗ ▜▄▞▀▘ ▘ ▝ ▗ ▗
7 ▌ ▘ ▖ ▗▄▞▀▘ ▀▄ ▖ ▗▗
8 ▌ ▄▗▄▞▀▘ ▘▀▄ ▝▗ ▗▝ ▝
9 ▙▙▞▀▀ ▖ ▀▄▖ ▀▘▗ ▖ ▖
0 ▌▘  ▀▄   ▝ ▐ ▌      ▄    ▘  ▗▄▞▀▘   ▘  
0 ┌────────────────────────────────────────┐
1 │▛▄  ▘         ▘   ▖  ▝   ▗  ▝      ▘▗▙▞▀│
2 │▌ ▀▄               ▖        ▗   ▗▄▞▀▘   │
3 │▌▘  ▀▄   ▝ ▐ ▌      ▄    ▘  ▗▄▞▀▘   ▘   │
4 │▌   ▀▀▀█▀▛▀▀▀▀▀▀▀▀▀▀▄▄▄▄▄▄▟█▙▄▄▄▙▄▄▄▝▘  │
5 │▌▗ ▝    ▀▙          ▗▄▞▀▘   ▖   ▖▝  ▘   │
6 │▌   ▖    ▖▀▄   ▝▗▄▞▛▘ ▗       ▖   ▖▘▝   │
7 │▌      ▗    ▜▄▞▀▘   ▘      ▝     ▗     ▗│
8 │▌ ▘ ▖   ▗▄▞▀▘ ▀▄    ▖        ▗▗         │
9 │▌  ▄▗▄▞▀▘      ▘▀▄   ▝▗         ▗▝    ▝ │
10 │▙▙▞▀▀  ▖          ▀▄▖  ▀▘▗        ▖ ▖   │
11 └────────────────────────────────────────┘
0 ┌────────────────────────────────────────┐
1 │▛▄ ▘ ▘ ▖ ▝ ▗ ▝ ▘▗▙▞▀│
2 │▌ ▀▄ ▖ ▗ ▗▄▞▀▘ │
3 │▌▘ ▀▄ ▝ ▐ ▌ ▄ ▘ ▗▄▞▀▘ ▘ │
4 │▌ ▀▀▀█▀▛▀▀▀▀▀▀▀▀▀▀▄▄▄▄▄▄▟█▙▄▄▄▙▄▄▄▝▘ │
5 │▌▗ ▝ ▀▙ ▗▄▞▀▘ ▖ ▖▝ ▘ │
6 │▌ ▖ ▖▀▄ ▝▗▄▞▛▘ ▗ ▖ ▖▘▝ │
7 │▌ ▗ ▜▄▞▀▘ ▘ ▝ ▗ ▗│
8 │▌ ▘ ▖ ▗▄▞▀▘ ▀▄ ▖ ▗▗ │
9 │▌ ▄▗▄▞▀▘ ▘▀▄ ▝▗ ▗▝ ▝ │
10 │▙▙▞▀▀ ▖ ▀▄▖ ▀▘▗ ▖ ▖ │
11 └────────────────────────────────────────┘
0 ⡗⢄⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠄⠀⠀⠐⠀⠀⠀⢀⠀⠀⠐⠀⠀⠀⠀⠀⠀⠁⢀⡢⠔⠊
1 ⡇⠁⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀
2 ⡇⠀⠀⠀⠑⢄⠀⠀⠀⠈⠀⠨⠀⡂⠀⠀⠀⠀⠀⠀⠤⠀⠀⠀⠀⠁⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠂⠀⠀⠀
3 ⡇⠀⠀⠀⠉⠉⠙⢍⠉⡉⠉⠉⠒⠒⠒⠒⠒⠒⠒⠒⠤⠤⠤⠤⢤⡤⠴⠮⣁⣀⣀⣀⣂⣀⣀⣀⠈⠁⠀⠀
4 ⡇⠠⠀⠐⠀⠀⠀⠀⠑⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠄⠀⠀⠀⠄⠐⠀⠀⠁⠀⠀⠀
5 ⡇⠀⠀⠀⠄⠀⠀⠀⠀⠄⠑⢄⠀⠀⠀⠐⢀⡠⠔⡊⠃⠀⠠⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⡀⠂⠐⠀⠀⠀
6 ⡇⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⢑⣤⠔⠊⠁⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠠
7 ⡇⠀⠁⠀⡀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠑⢄⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀
8 ⡇⠀⠀⡠⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠁⠑⢄⠀⠀⠀⠐⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠐⠀⠀⠀⠀⠈⠀
9 ⣇⡢⠔⠊⠉⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⡀⠀⠀⠑⠂⢀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⡀⠀⠀⠀
0 ⡗⢄⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠄⠀⠀⠐⠀⠀⠀⢀⠀⠀⠐⠀⠀⠀⠀⠀⠀⠁⢀⡢⠔⠊
1 ⡇⠁⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀
2 ⡇⠀⠀⠀⠑⢄⠀⠀⠀⠈⠀⠨⠀⡂⠀⠀⠀⠀⠀⠀⠤⠀⠀⠀⠀⠁⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠂⠀⠀⠀
3 ⡇⠀⠀⠀⠉⠉⠙⢍⠉⡉⠉⠉⠒⠒⠒⠒⠒⠒⠒⠒⠤⠤⠤⠤⢤⡤⠴⠮⣁⣀⣀⣀⣂⣀⣀⣀⠈⠁⠀⠀
4 ⡇⠠⠀⠐⠀⠀⠀⠀⠑⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠄⠀⠀⠀⠄⠐⠀⠀⠁⠀⠀⠀
5 ⡇⠀⠀⠀⠄⠀⠀⠀⠀⠄⠑⢄⠀⠀⠀⠐⢀⡠⠔⡊⠃⠀⠠⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⡀⠂⠐⠀⠀⠀
6 ⡇⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⢑⣤⠔⠊⠁⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠠
7 ⡇⠀⠁⠀⡀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠑⢄⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀
8 ⡇⠀⠀⡠⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠁⠑⢄⠀⠀⠀⠐⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠐⠀⠀⠀⠀⠈⠀
9 ⣇⡢⠔⠊⠉⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⡀⠀⠀⠑⠂⢀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⡀⠀⠀⠀
0 ⡇⠀⠀⠀⠑⢄⠀⠀⠀⠈⠀⠨⠀⡂⠀⠀⠀⠀⠀⠀⠤⠀⠀⠀⠀⠁⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠂⠀⠀⠀
0 ┌────────────────────────────────────────┐
1 │⡗⢄⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠄⠀⠀⠐⠀⠀⠀⢀⠀⠀⠐⠀⠀⠀⠀⠀⠀⠁⢀⡢⠔⠊│
2 │⡇⠁⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│
3 │⡇⠀⠀⠀⠑⢄⠀⠀⠀⠈⠀⠨⠀⡂⠀⠀⠀⠀⠀⠀⠤⠀⠀⠀⠀⠁⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠂⠀⠀⠀│
4 │⡇⠀⠀⠀⠉⠉⠙⢍⠉⡉⠉⠉⠒⠒⠒⠒⠒⠒⠒⠒⠤⠤⠤⠤⢤⡤⠴⠮⣁⣀⣀⣀⣂⣀⣀⣀⠈⠁⠀⠀│
5 │⡇⠠⠀⠐⠀⠀⠀⠀⠑⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠄⠀⠀⠀⠄⠐⠀⠀⠁⠀⠀⠀│
6 │⡇⠀⠀⠀⠄⠀⠀⠀⠀⠄⠑⢄⠀⠀⠀⠐⢀⡠⠔⡊⠃⠀⠠⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⡀⠂⠐⠀⠀⠀│
7 │⡇⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⢑⣤⠔⠊⠁⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠠│
8 │⡇⠀⠁⠀⡀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠑⢄⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9 │⡇⠀⠀⡠⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠁⠑⢄⠀⠀⠀⠐⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠐⠀⠀⠀⠀⠈⠀│
10 │⣇⡢⠔⠊⠉⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⡀⠀⠀⠑⠂⢀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⡀⠀⠀⠀│
11 └────────────────────────────────────────┘
0 ┌────────────────────────────────────────┐
1 │⡗⢄⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠄⠀⠀⠐⠀⠀⠀⢀⠀⠀⠐⠀⠀⠀⠀⠀⠀⠁⢀⡢⠔⠊│
2 │⡇⠁⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀│
3 │⡇⠀⠀⠀⠑⢄⠀⠀⠀⠈⠀⠨⠀⡂⠀⠀⠀⠀⠀⠀⠤⠀⠀⠀⠀⠁⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠂⠀⠀⠀│
4 │⡇⠀⠀⠀⠉⠉⠙⢍⠉⡉⠉⠉⠒⠒⠒⠒⠒⠒⠒⠒⠤⠤⠤⠤⢤⡤⠴⠮⣁⣀⣀⣀⣂⣀⣀⣀⠈⠁⠀⠀│
5 │⡇⠠⠀⠐⠀⠀⠀⠀⠑⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠀⠀⠄⠀⠀⠀⠄⠐⠀⠀⠁⠀⠀⠀│
6 │⡇⠀⠀⠀⠄⠀⠀⠀⠀⠄⠑⢄⠀⠀⠀⠐⢀⡠⠔⡊⠃⠀⠠⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⡀⠂⠐⠀⠀⠀│
7 │⡇⠀⠀⠀⠀⠀⠀⠠⠀⠀⠀⠀⢑⣤⠔⠊⠁⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠐⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠠│
8 │⡇⠀⠁⠀⡀⠀⠀⠀⢀⡠⠔⠊⠁⠀⠑⢄⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9 │⡇⠀⠀⡠⢀⡠⠔⠊⠁⠀⠀⠀⠀⠀⠀⠁⠑⢄⠀⠀⠀⠐⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠐⠀⠀⠀⠀⠈⠀│
10 │⣇⡢⠔⠊⠉⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⡀⠀⠀⠑⠂⢀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⡀⠀⠀⠀│
11 └────────────────────────────────────────┘
0 ▒░  ░         ░   ░  ░   ░  ░      ░ ▒▒▓
1 ▒ ░░               ░        ░    ▒▒▒▒  
2 ▒ ░ ░░   ░ ▒ ▒      ▒    ░   ▒▒▒▒   ░  
3 ▒   ░░▒▒░▒░░░░░░░░░░░░░░░▒▒▒▒░░░▒░░░░░ 
4 ▒░ ░    ░▒           ▒▒▒▒   ░   ░░  ░  
5 ▒   ▒    ░░░   ░ ▒▒▒▒ ░       ░   ░░░  
6 ▒      ░    ░▒▒▒▒   ░      ░     ░     ░
7 ▒ ░ ░    ▒▒▒▒ ░░    ░        ░░        
8 ▒  ▒ ▒▒▒▒      ░░░   ░░         ░░    ░
9 █▒▒▒▒  ░          ░░░  ▒░░        ░ ░  
0 ▒░ ░ ░ ░ ░ ░ ░ ░ ▒▒▓
1 ▒ ░░ ░ ░ ▒▒▒▒
2 ▒ ░ ░░ ░ ▒ ▒ ▒ ░ ▒▒▒▒ ░
3 ▒ ░░▒▒░▒░░░░░░░░░░░░░░░▒▒▒▒░░░▒░░░░░
4 ▒░ ░ ░▒ ▒▒▒▒ ░ ░░ ░
5 ▒ ▒ ░░░ ░ ▒▒▒▒ ░ ░ ░░░
6 ▒ ░ ░▒▒▒▒ ░ ░ ░ ░
7 ▒ ░ ░ ▒▒▒▒ ░░ ░ ░░
8 ▒ ▒ ▒▒▒▒ ░░░ ░░ ░░ ░
9 █▒▒▒▒ ░ ░░░ ▒░░ ░ ░
0 ▒ ░ ░░   ░ ▒ ▒      ▒    ░   ▒▒▒▒   ░  
0 ┌────────────────────────────────────────┐
1 │▒░  ░         ░   ░  ░   ░  ░      ░ ▒▒▓│
2 │▒ ░░               ░        ░    ▒▒▒▒   │
3 │▒ ░ ░░   ░ ▒ ▒      ▒    ░   ▒▒▒▒   ░   │
4 │▒   ░░▒▒░▒░░░░░░░░░░░░░░░▒▒▒▒░░░▒░░░░░  │
5 │▒░ ░    ░▒           ▒▒▒▒   ░   ░░  ░   │
6 │▒   ▒    ░░░   ░ ▒▒▒▒ ░       ░   ░░░   │
7 │▒      ░    ░▒▒▒▒   ░      ░     ░     ░│
8 │▒ ░ ░    ▒▒▒▒ ░░    ░        ░░         │
9 │▒  ▒ ▒▒▒▒      ░░░   ░░         ░░    ░ │
10 │█▒▒▒▒  ░          ░░░  ▒░░        ░ ░   │
11 └────────────────────────────────────────┘
0 ┌────────────────────────────────────────┐
1 │▒░ ░ ░ ░ ░ ░ ░ ░ ▒▒▓│
2 │▒ ░░ ░ ░ ▒▒▒▒ │
3 │▒ ░ ░░ ░ ▒ ▒ ▒ ░ ▒▒▒▒ ░ │
4 │▒ ░░▒▒░▒░░░░░░░░░░░░░░░▒▒▒▒░░░▒░░░░░ │
5 │▒░ ░ ░▒ ▒▒▒▒ ░ ░░ ░ │
6 │▒ ▒ ░░░ ░ ▒▒▒▒ ░ ░ ░░░ │
7 │▒ ░ ░▒▒▒▒ ░ ░ ░ ░│
8 │▒ ░ ░ ▒▒▒▒ ░░ ░ ░░ │
9 │▒ ▒ ▒▒▒▒ ░░░ ░░ ░░ ░ │
10 │█▒▒▒▒ ░ ░░░ ▒░░ ░ ░ │
11 └────────────────────────────────────────┘
0 :.  '         '   .  '   .  '      ' :.'
1 : '.               .        .    ..''  
2 : ' '.   ' : :      .    '   ..''   '  
3 :   ''':':''''''''''.......::...:...'' 
4 :. '    ':           ..''   .   .'  '  
5 :   .    .'.   ' ..:' .       .   .''  
6 :      .    '..''   '      '     .     .
7 : ' .    ..'' '.    .        ..        
8 :  . ..''      ''.   '.         .'    '
9 ::.''  .          '..  ''.        . .  
0 :. ' ' . ' . ' ' :.'
1 : '. . . ..''
2 : ' '. ' : : . ' ..'' '
3 : ''':':''''''''''.......::...:...''
4 :. ' ': ..'' . .' '
5 : . .'. ' ..:' . . .''
6 : . '..'' ' ' . .
7 : ' . ..'' '. . ..
8 : . ..'' ''. '. .' '
9 ::.'' . '.. ''. . .
0 : ' '.   ' : :      .    '   ..''   '  
0 ┌────────────────────────────────────────┐
1 │:.  '         '   .  '   .  '      ' :.'│
2 │: '.               .        .    ..''   │
3 │: ' '.   ' : :      .    '   ..''   '   │
4 │:   ''':':''''''''''.......::...:...''  │
5 │:. '    ':           ..''   .   .'  '   │
6 │:   .    .'.   ' ..:' .       .   .''   │
7 │:      .    '..''   '      '     .     .│
8 │: ' .    ..'' '.    .        ..         │
9 │:  . ..''      ''.   '.         .'    ' │
10 │::.''  .          '..  ''.        . .   │
11 └────────────────────────────────────────┘
0 ┌────────────────────────────────────────┐
1 │:. ' ' . ' . ' ' :.'│
2 │: '. . . ..'' │
3 │: ' '. ' : : . ' ..'' ' │
4 │: ''':':''''''''''.......::...:...'' │
5 │:. ' ': ..'' . .' ' │
6 │: . .'. ' ..:' . . .'' │
7 │: . '..'' ' ' . .│
8 │: ' . ..'' '. . .. │
9 │: . ..'' ''. '. .' ' │
10 │::.'' . '.. ''. . . │
11 └────────────────────────────────────────┘
0 ┌────────────────────────────────────────┐
1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
2 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
3 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
4 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11 └────────────────────────────────────────┘
0 ┌────────────────────────────────────────┐
1 │                                        │
2 │                                        │
3 │                                        │
4 │                                        │
5 │                                        │
6 │                                        │
7 │                                        │
8 │                                        │
9 │                                        │
10 │                                        │
11 └────────────────────────────────────────┘
0  ┌ ┐
1 [-4.5, -4.0) ┤ 1  
2 [-4.0, -3.5) ┤ 2  
3 [-3.5, -3.0) ┤ 8  
4 [-3.0, -2.5) ┤▇ 65  
5 [-2.5, -2.0) ┤▇▇▇ 169  
6 [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇ 456  
7 [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 911  
8 [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1514  
9 [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1956  
10 [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1825  
11 [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1500  
12 [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 930  
13 [ 1.5,  2.0) ┤▇▇▇▇▇▇▇▇ 436  
14 [ 2.0,  2.5) ┤▇▇▇ 162  
15 [ 2.5,  3.0) ┤▇ 50  
16 [ 3.0,  3.5) ┤ 10  
17 [ 3.5,  4.0) ┤ 5  
18  └ ┘
19  Frequency
0  ┌ ┐
1 [-0.045, -0.04 ) ┤ 1  
2 [-0.04 , -0.035) ┤ 2  
3 [-0.035, -0.03 ) ┤ 8  
4 [-0.03 , -0.025) ┤▇ 65  
5 [-0.025, -0.02 ) ┤▇▇▇ 169  
6 [-0.02 , -0.015) ┤▇▇▇▇▇▇▇▇ 456  
7 [-0.015, -0.01 ) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 911  
8 [-0.01 , -0.005) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1514  
9 [-0.005, -0.0 ) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1956  
10 [ 0.0 ,  0.005) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1825  
11 [ 0.005,  0.01 ) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1500  
12 [ 0.01 ,  0.015) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 930  
13 [ 0.015,  0.02 ) ┤▇▇▇▇▇▇▇▇ 436  
14 [ 0.02 ,  0.025) ┤▇▇▇ 162  
15 [ 0.025,  0.03 ) ┤▇ 50  
16 [ 0.03 ,  0.035) ┤ 10  
17 [ 0.035,  0.04 ) ┤ 5  
18  └ ┘
19  Frequency
0  ┌ ┐
1 [-450.0, -400.0) ┤ 1  
2 [-400.0, -350.0) ┤ 2  
3 [-350.0, -300.0) ┤ 8  
4 [-300.0, -250.0) ┤▇ 65  
5 [-250.0, -200.0) ┤▇▇▇ 169  
6 [-200.0, -150.0) ┤▇▇▇▇▇▇▇▇ 456  
7 [-150.0, -100.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 911  
8 [-100.0,  -50.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1514  
9 [ -50.0,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1956  
10 [ 0.0,  50.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1825  
11 [ 50.0,  100.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1500  
12 [ 100.0,  150.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 930  
13 [ 150.0,  200.0) ┤▇▇▇▇▇▇▇▇ 436  
14 [ 200.0,  250.0) ┤▇▇▇ 162  
15 [ 250.0,  300.0) ┤▇ 50  
16 [ 300.0,  350.0) ┤ 10  
17 [ 350.0,  400.0) ┤ 5  
18  └ ┘
19  Frequency
0 ┌ ┐
1 [-4.5, -4.0) ┤ 1
2 [-4.0, -3.5) ┤ 2
3 [-3.5, -3.0) ┤ 8
4 [-3.0, -2.5) ┤▇ 65
5 [-2.5, -2.0) ┤▇▇▇ 169
6 [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇ 456
7 [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 911
8 [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1514
9 [-0.5, 0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1956
10 [ 0.0, 0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1825
11 [ 0.5, 1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1500
12 [ 1.0, 1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 930
13 [ 1.5, 2.0) ┤▇▇▇▇▇▇▇▇ 436
14 [ 2.0, 2.5) ┤▇▇▇ 162
15 [ 2.5, 3.0) ┤▇ 50
16 [ 3.0, 3.5) ┤ 10
17 [ 3.5, 4.0) ┤ 5
18 └ ┘
19 Frequency
0  ┌ ┐
1 (-6.0, -4.0] ┤ 1  
2 (-4.0, -2.0] ┤▇▇ 244  
3 (-2.0,  0.0] ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 4837  
4 ( 0.0,  2.0] ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 4691  
5 ( 2.0,  4.0] ┤▇▇ 227  
6  └ ┘
7  Frequency
0  ┌ ┐
1 [-4.5, -4.0) ┤ 1  
2 [-4.0, -3.5) ┤▇▇▇ 2  
3 [-3.5, -3.0) ┤▇▇▇▇▇▇▇▇▇ 8  
4 [-3.0, -2.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 65  
5 [-2.5, -2.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 169  
6 [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 456  
7 [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 911  
8 [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1514  
9 [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1956  
10 [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1825  
11 [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1500  
12 [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 930  
13 [ 1.5,  2.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 436  
14 [ 2.0,  2.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 162  
15 [ 2.5,  3.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 50  
16 [ 3.0,  3.5) ┤▇▇▇▇▇▇▇▇▇▇ 10  
17 [ 3.5,  4.0) ┤▇▇▇▇▇▇▇ 5  
18  └ ┘
19  Frequency [log10]
0  ┌ ┐
1 [-4.5, -4.0) ┤ 1  
2 [-4.0, -3.5) ┤▇▇▇ 2  
3 [-3.5, -3.0) ┤▇▇▇▇▇▇▇▇▇ 8  
4 [-3.0, -2.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 65  
5 [-2.5, -2.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 169  
6 [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 456  
7 [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 911  
8 [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1514  
9 [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1956  
10 [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1825  
11 [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1500  
12 [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 930  
13 [ 1.5,  2.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 436  
14 [ 2.0,  2.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 162  
15 [ 2.5,  3.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 50  
16 [ 3.0,  3.5) ┤▇▇▇▇▇▇▇▇▇▇ 10  
17 [ 3.5,  4.0) ┤▇▇▇▇▇▇▇ 5  
18  └ ┘
19  custom label
0  My Histogram
1  ┌ ┐
2 [-4.5, -4.0) ┤ 1  
3 [-4.0, -3.5) ┤ 2  
4 [-3.5, -3.0) ┤ 8  
5 [-3.0, -2.5) ┤▇ 65  
6 [-2.5, -2.0) ┤▇▇▇ 169  
7 [-2.0, -1.5) ┤▇▇▇▇▇▇▇▇ 456  
8 [-1.5, -1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 911  
9 [-1.0, -0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1514  
10 [-0.5,  0.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1956  
11 [ 0.0,  0.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1825  
12 [ 0.5,  1.0) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1500  
13 [ 1.0,  1.5) ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 930  
14 [ 1.5,  2.0) ┤▇▇▇▇▇▇▇▇ 436  
15 [ 2.0,  2.5) ┤▇▇▇ 162  
16 [ 2.5,  3.0) ┤▇ 50  
17 [ 3.0,  3.5) ┤ 10  
18 [ 3.5,  4.0) ┤ 5  
19  └ ┘
20  Absolute Frequency
0  My Histogram
1  ┌ ┐
2  ┤ 1  
3  ┤ 2  
4  ┤ 8  
5  ┤▇ 65  
6  ┤▇▇▇ 169  
7  ┤▇▇▇▇▇▇▇▇ 456  
8  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 911  
9  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1514  
10  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1956  
11  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1825  
12  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 1500  
13  ┤▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 930  
14  ┤▇▇▇▇▇▇▇▇ 436  
15  ┤▇▇▇ 162  
16  ┤▇ 50  
17  ┤ 10  
18  ┤ 5  
19  └ ┘
0  My Histogram
1  ┌──────────────────────────────────────────────────┐
2 [-4.5, -4.0) │ 1 │
3 [-4.0, -3.5) │ 2 │
4 [-3.5, -3.0) │ 8 │
5 [-3.0, -2.5) │= 65 │
6 [-2.5, -2.0) │==== 169 │
7 [-2.0, -1.5) │========== 456 │
8 [-1.5, -1.0) │==================== 911 │
9 [-1.0, -0.5) │================================== 1514 │
10 [-0.5,  0.0) │============================================ 1956 │
11 [ 0.0,  0.5) │========================================= 1825 │
12 [ 0.5,  1.0) │================================== 1500 │
13 [ 1.0,  1.5) │===================== 930 │
14 [ 1.5,  2.0) │========== 436 │
15 [ 2.0,  2.5) │==== 162 │
16 [ 2.5,  3.0) │= 50 │
17 [ 3.0,  3.5) │ 10 │
18 [ 3.5,  4.0) │ 5 │
19  └──────────────────────────────────────────────────┘
20  Absolute Frequency
0  ┌────────────────────────────────────────┐
1 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ points1
2  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⢸│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡗⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⢸│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│
5  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│
13  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│
14  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│
15 -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│
16  └────────────────────────────────────────┘
17  -1  3
0  Scatter
1  ┌──────────┐
2 2 │'':.     :│
3  │'':'':':':│
4  │  :  .'. :│
5  │  :.'  '.:│
6 -5 │..:      :│
7  └──────────┘
8  -1  3
0  ┌────────────────────────────────────────┐
1 1 │⠀⠀⠀⡠⠒⠉⠉⠉⠑⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠉⠉⠉⠒⠢⡀⠀⠀│ sin
2  │⠀⡔⠉⠀⠀⠀⠀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠎⠁⠀⠀⠀⠀⠀⠀⠀⠑⠤⡀│
3  │⠮⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠬⠦⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡤⠮⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠼│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⡀⠀⠀⠀⠀⠀⠀⠀⡔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5 -1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠦⣀⣀⣀⡠⠤⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  └────────────────────────────────────────┘
7  1999-12-31  2000-01-30
8  date
0  ┌────────────────────────────────────────┐
1 1 │⠉⠑⠒⣤⠒⠉⠉⠉⠑⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠒⠉⠉⠉⠑⢢⡔⠊⠉⠉⠉⠒⠢⡀⠀⠀│ sin
2  │⠀⡔⠉⠀⠣⢄⠀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⡔⠉⠀⠀⠀⠀⢀⠎⠁⠈⠢⡄⠀⠀⠀⠀⠑⠤⡀│ cos
3  │⠮⠤⠤⠤⠤⠤⠵⡤⠤⠤⠤⠤⠬⠦⡤⠤⠤⠤⠤⢤⠮⠤⠤⠤⠤⠤⡤⠮⠤⠤⠤⠤⠬⠦⡤⠤⠤⠤⠤⠼│
4  │⠀⠀⠀⠀⠀⠀⠀⠘⢆⡀⠀⠀⠀⠀⠘⢄⡀⡠⠒⠁⠀⠀⠀⠀⡔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⡀⠀⠀⠀│
5 -1 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⢄⣀⣀⣀⠤⠜⠧⣀⣀⣀⡠⠤⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠦⣀⣀│
6  └────────────────────────────────────────┘
7  1999-12-31  2000-01-30
8  date
0  ┌────────────────────────────────────────┐
1 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│
2  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⢸│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡗⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⢸│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│
5  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│
13  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│
14  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│
15 -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│
16  └────────────────────────────────────────┘
17  -1  3
0  ┌────────────────────────────────────────┐
1 700 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⡠⠤⠤⠔⠒⠒⠉⠉⠉⠉⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16  │⠀⢀⣀⣀⠤⠤⠒⠒⠊⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
17  │⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
18  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
19  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
20  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
21  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
22  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
23  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
24  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
25  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
26 0 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
27  └────────────────────────────────────────┘
28  0  20
0  ┌────────────────────────────────────────┐
1 2.5 │⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀│
2  │⠀⠀⠀⠀⠈⠑⠢⢄⣀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⡇⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠤⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⡇⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠉⠒⠤⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⡇⠀⠀⠀│
5  │⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠬⠵⠦⡤⠤⠤⠤⠤⠤⢤⠴⠭⠤⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⠜⢎⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢀⠤⠊⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⣀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡧⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⡇⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠁⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⡇⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⡠⠊⠁⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⡇⠀⠀⠀│
14  │⠀⠀⠀⠀⢀⠔⠉⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢄⡇⠀⠀⠀│
15 -5.5 │⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀│
16  └────────────────────────────────────────┘
17  -1.5  3.5
0 Scatter
1 ┌────────────────────────────────────────┐
2 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ points1
3 │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⢀⣀⣀⠤⠤⠔⠒⠊⠉⠁⠀⠀⠀⠀⠀⢀⣀⣀⠤⡤⠔⠓⠊⢹│ points2
4 │⠀⠀⠀⠀⠀⠀⠀⢀⣀⡨⡷⠶⠶⣒⠊⠉⠁⠀⠀⠀⠀⠀⢀⣀⡠⠤⠤⠒⠒⠊⠉⠁⢀⠔⠊⠀⠀⠀⠀⢸│ points3
5 │⠀⠀⠀⠀⠀⠉⠉⠁⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠉⠉⠁⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│
6 │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│
7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
8 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
9 y │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
11 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
12 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│
13 │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│
14 │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│
15 │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│
16 -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│
17 └────────────────────────────────────────┘
18 -1 3
19 x
0  ┌────────────────────────────────────────┐
1 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│
2  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⢸│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⢸│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠑⠢⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢆⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│
13  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│
14  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│
15 -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│
16  └────────────────────────────────────────┘
17  -1  3
0  Scatter
1  ┌────────────────────────────────────────┐
2 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ points1
3  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⢸│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡗⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⢸│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│
6  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
9 y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│
14  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│
15  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│
16 -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│
17  └────────────────────────────────────────┘
18  -1  3
19  x
0  Scatter
1  ┌────────────────────────────────────────┐
2 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ points1
3  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⠤⡤⠔⠓⠊⢹│ points2
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡗⠒⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⡠⠤⠤⠒⠒⠊⠉⠁⢀⠔⠊⠀⠀⠀⠀⢸│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠉⠉⠁⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│
6  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
9 y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│
14  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│
15  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│
16 -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│
17  └────────────────────────────────────────┘
18  -1  3
19  x
0  Scatter
1  ┌────────────────────────────────────────┐
2 2 │⠉⠑⠢⠤⣀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢺│ points1
3  │⠀⠀⠀⠀⠀⠉⠒⠤⢄⡀⡇⠀⠀⠀⠀⠀⢀⣀⣀⠤⠤⠔⠒⠊⠉⠁⠀⠀⠀⠀⠀⢀⣀⣀⠤⡤⠔⠓⠊⢹│ points2
4  │⠀⠀⠀⠀⠀⠀⠀⢀⣀⡨⡷⠶⠶⣒⠊⠉⠁⠀⠀⠀⠀⠀⢀⣀⡠⠤⠤⠒⠒⠊⠉⠁⢀⠔⠊⠀⠀⠀⠀⢸│ points3
5  │⠀⠀⠀⠀⠀⠉⠉⠁⠀⠀⡇⠀⠀⠀⠉⠑⠢⢄⣀⠀⠉⠉⠁⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⢸│
6  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠛⢖⠒⠒⠒⠒⠒⠒⡲⠖⠓⠒⠒⠒⠒⠒⠒⠒⠒⠒⢺│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠛⢅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
9 y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⢸│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢢⠀⠀⠀⠀⠀⢸│
14  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⢸│
15  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⢸│
16 -5 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢼│
17  └────────────────────────────────────────┘
18  -1  3
19  x
0  ┌────────────────────────────────────────┐
1 10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 6 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16  └────────────────────────────────────────┘
17  1  5
0  ┌────────────────────────────────────────┐
1 10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⢀⡠⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⡠⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 6 │⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16  └────────────────────────────────────────┘
17  11  15
0  ┌────────────────────────────────────────┐
1 -14.998 │⠉⠒⠤⣀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⡇⠀⠀⠀⠀⠀⠀⠀│
2  │⠀⠀⠀⠀⠉⠒⠤⡀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠈⡗⠢⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠈⠑⠢⣀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠤⠊⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠉⢆⠀⠀⠀⠀⢀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⢀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⠜⢇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⡠⠒⠁⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⢀⠔⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⢀⠔⠁⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⢀⠔⠁⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⡇⠀⠀⠀⠀⠀⠀⠀│
15 -15.005 │⣀⠔⠁⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⡇⠀⠀⠀⠀⠀⠀⠀│
16  └────────────────────────────────────────┘
17  -1000  4000
0  ┌────────────────────────────────────────┐
1 2000 │⠉⠑⠒⠤⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠤⢺│
2  │⠀⠀⠀⠀⠀⠈⠉⠒⠤⢄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠤⠊⠁⠀⢸│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠒⠢⠤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠊⠀⠀⠀⠀⠀⢸│
4  │⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣉⣑⣒⣤⣀⣀⣀⣀⣀⣀⣀⣀⣀⣔⣊⣀⣀⣀⣀⣀⣀⣀⣀⣸│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⣀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣈⠶⡊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠊⠀⠀⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠈⠢⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⢸│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⢸│
11  │⠀⠀⠀⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⢸│
12  │⠀⠀⠀⠀⡠⠔⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⠤⡀⠀⢸│
13  │⢀⡠⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠢⣸│
14  │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│
15 -6000 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16  └────────────────────────────────────────┘
17  14.999  15.003
0  ┌────────────────────────────────────────┐
1 4000000 │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊│
2  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀│
3  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀│
5  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⣀⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⡠⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⡇⠀⢀⠔⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 0 │⠀⠀⠀⠀⢀⣇⠔⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16  └────────────────────────────────────────┘
17  -100000  700000
0  ┌─────┐
1 4000000 │⢸⠀⠀⠀⡜│
2  │⢸⠀⠀⡜⠀│
3  │⢸⠀⡰⠁⠀│
4  │⢸⢰⠁⠀⠀│
5 0 │⢸⠃⠀⠀⠀│
6  └─────┘
7  -100000700000
0  ┌────────────────────────────────────────┐
1 2 │⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⢇⠀⠀⠀⠀⢀⣀⠤⠒⠉│
2  │⠀⠀⠈⠒⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠘⣄⠤⠔⠊⠁⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⡜⠒⠉⢱⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠒⠉⠁⢰⠁⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀│
5  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒⣒⠶⠖⠚⠓⠒⠒⠒⠒⢒⠗⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⢀⡠⠔⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠒⠙⡅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⣀⠤⠔⠊⠁⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀│
9  │⠔⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢱⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀│
15 -5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣│
16  └────────────────────────────────────────┘
17  1  5
0  ┌────────────────────────────────────────┐
1 2 │⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⢇⠀⠀⠀⠀⢀⣀⠤⠒⠉│ foo
2  │⠀⠀⠈⠒⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠘⣄⠤⠔⠊⠁⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⡜⠒⠉⢱⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠒⠉⠁⢰⠁⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀│
5  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒⣒⠶⠖⠚⠓⠒⠒⠒⠒⢒⠗⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⢀⡠⠔⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠒⠙⡅⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⣀⠤⠔⠊⠁⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠸⣀⣀⣀⠤⠴│
9  │⠔⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⣀⣀⡠⠤⠤⠒⠒⠉⠉⢣⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⣀⣀⠤⠤⠔⠒⢲⠉⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⠤⠤⠒⠒⠊⠹⡉⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀│
12  │⡠⠤⠤⠒⠒⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⢱⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀│
15 -5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣│
16  └────────────────────────────────────────┘
17  1  5
0  Hellohow areyou?
1  ┌──────────┐
2 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼│
8  │⠀⠀⠀⠀⠀⠀⠀⢀⠜⢸│
9  │⠀⠀⠀⠀⡤⠤⢤⠮⢤⢸│
10  │⠀⠀⠀⠀⡇⢠⠊⠀⢸⢸│
11  │⠀⠀⠀⠀⣧⠃⠀⠀⢸⢸│
12  │⠀⡏⠉⡹⠁⠀⠀⠀⢸⢸│
13  │⠀⡇⡰⠁⠀⠀⠀⠀⢸⢸│
14  │⠀⡟⠀⠀⠀⠀⠀⠀⠸⠼│
15  │⡜⡇⠀⠀⠀⠀⠀⠀⠀⠀│
16 1 │⣀⡇⠀⠀⠀⠀⠀⠀⠀⠀│
17  └──────────┘
18  Hellohow areyou?
0  ┌────────────────────────────────────────┐
1 7000 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
15 0 │⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣸│
16  └────────────────────────────────────────┘
17  1  8
0  Foo
1  ┌────────────────────────────────────────┐
2 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⢸│ 1
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⢸│ 2
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⢸│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⡀⠀⠀⠀⠀⢸⢸│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸⢸│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸⢸│
8  │⠀⠀⠀⠀⢰⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸⢸│
9  │⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡧⡄⠀⠀⠀⢸⢸│
10  │⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⣇⣀⣀⣀⣸⢸│
11  │⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
12  │⠀⠀⠀⠀⢸⢸⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
13  │⠒⠒⠒⠒⠚⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
14  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠼│
15  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16 1 │⣀⣀⣀⣀⣀⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
17  └────────────────────────────────────────┘
18  1  8
19  x
0  Foo
1  ┌────────────────────────────────────────┐
2 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡏⠉⠉⠉⢹⢹│ 1
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢸⢸│ 2
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢸⢸│ 3
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⡀⡇⠀⠀⠀⢸⢸│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⢸⢸│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⢸⢸│
8  │⠀⠀⠀⠀⢰⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⢸⢸│
9  │⠀⠀⠀⠀⢸⢠⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡧⡇⠀⠀⠀⢸⢸│
10  │⠀⠀⠀⠀⢸⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⣇⣀⣀⣀⣸⢸│
11  │⠀⠀⠀⠀⢸⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
12  │⡏⠉⠉⠉⢹⢹⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
13  │⡗⠒⠒⠒⠚⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
14  │⡇⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠧⠤⠤⠤⠤⠼│
15  │⡇⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16 1 │⣇⣀⣀⣀⣀⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
17  └────────────────────────────────────────┘
18  1  8
19  x
0 Foo
1 ┌────────────────────────────────────────┐
2 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡏⠉⠉⠉⢹⢹│ 1
3 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢸⢸│ 2
4 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⢸⢸│ 3
5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⡀⡇⠀⠀⠀⢸⢸│
6 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⢸⢸│
7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⢸⢸│
8 │⠀⠀⠀⠀⢰⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⡇⠀⠀⠀⢸⢸│
9 │⠀⠀⠀⠀⢸⢠⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡧⡇⠀⠀⠀⢸⢸│
10 │⠀⠀⠀⠀⢸⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣇⣇⣀⣀⣀⣸⢸│
11 │⠀⠀⠀⠀⢸⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
12 │⡏⠉⠉⠉⢹⢹⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
13 │⡗⠒⠒⠒⠚⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
14 │⡇⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠧⠤⠤⠤⠤⠼│
15 │⡇⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16 1 │⣇⣀⣀⣀⣀⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
17 └────────────────────────────────────────┘
18 1 8
19 x
0  ┌────────────────────────────────────────┐
1 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡄⠀⠀⠀⠀⢸│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
11  │⠀⠀⠀⠀⠀⢸⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
12  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⢸│
13  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠼│
14  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 1 │⣀⣀⣀⣀⣀⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16  └────────────────────────────────────────┘
17  1  8
0  ┌────────────────────────────────────────┐
1 7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡏⠉⠉⠉⠉⠉│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⢠⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│
11  │⡏⠉⠉⠉⠉⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│
12  │⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀│
13  │⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠧⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠇⠀⠀⠀⠀⠀│
14  │⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 1 │⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16  └────────────────────────────────────────┘
17  1  8
0  ┌────────────────────────────────────────┐
1 2 │⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⢇⠀⠀⠀⠀⠀⠀⠀⠀⠀│
2  │⠀⠀⠈⠒⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⢱⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀│
5  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⢒⠗⠒⠒⠒⠒⠚⡖⠒⠒⠒⠒⠒⠒│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠱⡀⠀⠀⠀⠀⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢱⠀⠀⠀⠀⠀⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡆⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⢀⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⡀│
15 -5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⡜⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣│
16  └────────────────────────────────────────┘
17  1  5
0 -0.32958197469857736
1 0.8128121129837046
2 1.882083723025754
3 0.963959953730384
4 1.8461074556435184
5 0.2700047175492735
6 -0.06804974230768497
7 -0.8189866759490652
8 -0.9673505123501639
9 0.2938508669734399
10 0.19815530196196957
11 -0.000871823096202101
12 -0.49156359282476364
13 0.5347333539390782
14 -1.7525072345713935
15 -0.7260903289044955
16 0.7378700824461942
17 1.9767215038950663
18 -1.0305954847791625
19 0.3899554846717337
20 -0.7356121921815371
21 -0.7288575845703916
22 0.9671711271532987
23 -1.0907077340929099
24 0.9266611111138336
25 -0.6385551673162309
26 -0.9318540316208712
27 2.161874182920445
28 -0.07589591610624044
29 3.1160655000950923
30 2.7879236675148187
31 2.26355826725101
32 -0.5557203715190229
33 -0.617472474841585
34 -0.2842254139692148
35 0.9920490764649508
36 0.8931609245556241
37 -0.5468865394270588
38 -0.8206289326766747
39 -0.04416965527494406
40 0.9377187977595242
41 -1.7652385598290785
42 1.0465202481757576
43 0.6891695741281211
44 0.8760198942716435
45 0.06642148300004219
46 1.3425092404733574
47 0.2531183153700703
48 -0.9530210972831613
49 1.4424122140606719
50 0.3941817986980491
51 0.27687624688929324
52 0.9239734256193073
53 2.7498516500667667
54 -0.8590655061299015
55 1.8135218926509644
56 0.6151839221773048
57 -0.9297629357480012
58 -1.627090409366283
59 0.1173678036589521
60 -0.5763733351690885
61 -0.5147405019501218
62 -1.3020933099964442
63 0.7433593579707246
64 0.9902805793826872
65 -0.942541022603409
66 -0.27612807399190464
67 0.9082831682187507
68 1.3162762854502965
69 1.6273089810181478
70 -0.24437388473081967
71 -0.6964106841150811
72 -0.1773154134264461
73 -0.5177795418512539
74 1.2012073884649712
75 -0.3902043258710514
76 -0.2833476563183354
77 -0.7744130228333072
78 -1.5768200860378236
79 -0.21462514005677036
80 0.9754348623968342
81 -1.3443838441840263
82 -0.14843795951748168
83 -0.9664857712824052
84 0.7206200324699356
85 -1.576998885053687
86 -0.45927646606449946
87 -1.3226593841543084
88 -1.8330620115962393
89 1.0274002794715253
90 1.90550463063769
91 0.003746680353577447
92 -1.3193505011162825
93 1.7698738567702745
94 -0.11428565710164702
95 -0.8450355502139248
96 0.36050254006982907
97 1.3628550911650017
98 0.12221678666676251
99 1.9898882659065158
100 -0.8701288618842657
101 0.8149134730579659
102 -0.06378270164472492
103 -0.09306293876197429
104 0.8737029200953192
105 1.1564546581470971
106 -1.4064750778111033
107 1.8333879884306588
108 -0.08505594527643315
109 -0.0675195973438915
110 0.5970591753384297
111 1.1361785558660076
112 -1.7456728710917557
113 -0.36162898887641237
114 1.124862333076972
115 -0.30859487957195597
116 0.5281209632509506
117 0.14832099032070342
118 0.5018206598282577
119 -0.21987953963074552
120 0.6914666064276535
121 -1.870142986227056
122 -1.0157831611387402
123 -0.979497853944363
124 0.6557722044335158
125 -0.031284966437444134
126 -0.9193083606206252
127 -1.9595569127168393
128 -1.0020962406512604
129 0.9450459213927636
130 -0.6690047577222856
131 -0.15689273112246271
132 0.16787467977733123
133 0.46801303768172114
134 0.29095164676274027
135 -0.19216638385857437
136 0.980302074969812
137 0.21144574690428813
138 0.36893277043265243
139 0.5965560426395776
140 0.6032712273015585
141 0.020771524682010028
142 1.339096622045867
143 0.08519303813578774
144 -2.3871444015264864
145 1.7190156078823826
146 -1.3471539281724172
147 -0.004643746446662698
148 -0.3926468664522464
149 -1.5662734365171116
150 -1.3069981899957455
151 1.6869961949059242
152 -0.20317049377091384
153 1.3828877833033668
154 1.4989784254213452
155 0.761979495583769
156 0.7048679544522799
157 1.0077611116448384
158 -0.5889190583913357
159 2.4661202481840205
160 0.5986179651222487
161 0.009414181922620168
162 -1.5058307322996942
163 -0.2946266634717495
164 0.27465860115270474
165 -0.8548140070060688
166 1.2518845546568946
167 0.8015559987005222
168 0.8189490669028812
169 -1.8216353081082695
170 -0.42349739081780147
171 -1.088527956191091
172 -0.5126950138657371
173 0.07042391987050482
174 -0.3661220257864967
175 1.002133016813666
176 -2.2144515837611225
177 -0.9335460401266351
178 0.1415562338178595
179 0.7616093056224419
180 -0.8922708051046021
181 -0.5894851115265487
182 0.9682252471215467
183 -0.6848931202924592
184 -1.2134334334862809
185 -1.4267378004565343
186 0.5442108760521868
187 -1.4091598756617965
188 -0.9033145481659495
189 -2.4318526713844193
190 0.4922591340417251
191 -0.9695855682907829
192 0.21693035455635526
193 -1.7923922660742768
194 0.9622603834738889
195 -0.5931346059220476
196 -0.16785119764667936
197 0.3615546946846785
198 0.6329930507699564
199 -1.3519792530770611
200 1.0279226355086586
201 -1.5053211162971238
202 0.2629168915232593
203 -0.470881623197536
204 0.42300044934101333
205 0.12004693780213267
206 -0.1570855319782282
207 1.067060122083555
208 -0.14560852177111047
209 0.10315685675878943
210 0.5542421373875248
211 -0.6294028826550176
212 0.41483418281326057
213 0.4856085309733672
214 -0.29460112231210167
215 -0.823999093651093
216 1.370066472686124
217 0.4363228243414403
218 -0.22079624682442422
219 0.03873612161476014
220 -1.5586174114749702
221 -1.7314063818347358
222 0.28964854760750647
223 1.60266255754474
224 -1.102284635734507
225 0.47116335878578575
226 0.6741969250992617
227 -0.07885458484557162
228 0.5214212524842011
229 -1.0398382625818263
230 1.296813549519156
231 -1.1883445598228752
232 0.09327994144535777
233 -1.6573051161789454
234 1.9660339057828213
235 1.4337817107610076
236 0.3669600106996607
237 -0.6171489263296163
238 1.4253082417960696
239 -0.5621003267772297
240 -0.9681697530870442
241 0.3838554920617521
242 0.8813503310819182
243 0.6604427774014484
244 -1.4278444569649356
245 -1.5255029970616951
246 -0.7942839958863257
247 0.4473839389177399
248 0.320263924655464
249 -0.011287576088784968
250 -0.6052130411882358
251 0.6489686374798758
252 -2.8539188616174838
253 -0.6366142372429002
254 -0.3157275260591758
255 0.1866943102479212
256 0.3752426148503715
257 -0.9719102139972665
258 -0.28253134296862625
259 -0.23891383022937496
260 -0.6184094783170482
261 -0.8730354094311935
262 2.488796887426788
263 -1.5244806282364887
264 0.03941613877509612
265 0.3511617632106059
266 -0.3029694581931178
267 -0.9274048401401789
268 0.3560113358022669
269 2.9103036895169194
270 -1.8802835069359252
271 1.1349017966347152
272 -0.9025865472858764
273 -0.7702308318810408
274 -0.40626465740720513
275 0.50811657284057
276 -0.14002838109494736
277 0.08860179054073454
278 1.1229272992954595
279 0.3268306858114956
280 -1.3844480784637263
281 -0.8656480812744923
282 0.32871946860287615
283 0.5595312942074099
284 -0.8041858765403734
285 -1.125178268006114
286 1.068511642374501
287 1.0470535669888392
288 -0.6105609809788747
289 -1.3787013270154007
290 -1.284304051352855
291 1.451146842625856
292 -2.7216972502537153
293 0.011822617772265337
294 -1.759275361685576
295 1.3646786033958112
296 -0.3088473041034588
297 -1.7330819651720524
298 -0.24603032451141785
299 0.26670265142911787
300 1.1720038462403877
301 -0.03385245118180287
302 0.30374737401574853
303 -0.37769195464462096
304 -0.758172791456292
305 -0.6886532962259578
306 0.5636070897701914
307 0.49031056282222035
308 -0.9715924713762203
309 0.4346902070816044
310 -0.9195840565269737
311 1.4240895324624787
312 1.1880523102082008
313 2.452056068777715
314 -0.6103574152980635
315 -1.5740287010602385
316 -0.05516379502794191
317 0.18459696918948687
318 -0.14690968129315712
319 1.4659140128858297
320 -0.3938281251385717
321 1.5834342612651224
322 -0.8167820926897286
323 -1.637165329278822
324 0.007960020932381094
325 2.070133997043403
326 -1.045042014987435
327 0.7720109071570125
328 -2.0299532101922413
329 1.4735381051118903
330 -0.9283138362367536
331 1.4963274266322342
332 0.4944305495652648
333 -0.624612262687315
334 -1.0248827274148378
335 -0.9125617191877293
336 -0.1252419926383769
337 1.2805911277845816
338 0.6107679542665814
339 -0.7991015764425181
340 0.3416974094659201
341 -1.2257866402866728
342 -0.947524994489344
343 -0.22696566068928842
344 -1.2142983779019347
345 -0.10456575437416629
346 0.9169680700826417
347 -2.2463255321272295
348 -0.03842791528829802
349 0.11673698606458334
350 -1.5399627770200903
351 -0.2261923690825431
352 1.4320736029186896
353 -0.7621083634061341
354 1.6712845573485886
355 -1.5773460878218386
356 -1.593457662562918
357 0.6237077018243609
358 -1.3016349886955692
359 0.4433576909799073
360 -2.6858620631421135
361 0.2057869634529583
362 -0.8545015924653859
363 0.11472414404812326
364 -0.49971102409923474
365 0.0380805921612285
366 -0.5864240433039548
367 0.15586169206325623
368 0.304462430954555
369 0.040419052058405104
370 -0.9095684415609917
371 -0.0793577362532359
372 0.17347375139526192
373 0.07631060546683095
374 2.208244456765864
375 0.6516665274625392
376 -0.2780403765720671
377 0.13716079029997003
378 -1.3958281258063021
379 0.3477888793206827
380 -0.4286325923455476
381 -0.8248991527047314
382 0.37291252866548474
383 0.6154053409886596
384 1.1893632044972329
385 -0.7683468471092588
386 -1.6318990460914862
387 1.248310321162491
388 -1.0650787705153677
389 -0.555204373924665
390 1.0463521163527314
391 -1.200272972495076
392 0.24704616275121377
393 1.1850329151542596
394 2.1658399908488573
395 1.3472242127316467
396 -0.033783260905189745
397 0.5561217912581424
398 0.04253321897428419
399 0.21682981259151793
400 -0.15205366543304008
401 -0.6325311174091508
402 -0.36718760063072653
403 0.05749570241718472
404 2.789997046062812
405 1.0380753805674623
406 -1.591308398464277
407 0.7628700930631438
408 -0.588068247386886
409 -2.820855729676129
410 -2.6692357008842387
411 -1.6674530733543418
412 -0.09706193918390814
413 1.397239356164116
414 -1.6369938325203173
415 -0.6940374254489567
416 1.1570692366148296
417 -0.9816647089692897
418 -1.5154831594782376
419 0.054470916431870894
420 -0.5029936674905577
421 -0.32762383849493787
422 -0.7201897334957713
423 -1.0993489879140594
424 -0.21681040124109566
425 -0.7939914333421663
426 -0.3294415807236402
427 1.5884301259382438
428 0.6716885534506725
429 -0.33702279337728086
430 -0.0382599081123082
431 1.9344857634035098
432 1.9345481654363619
433 -0.1310040862405379
434 0.16787189639629363
435 -1.001370494646698
436 0.27810352382967113
437 0.5439282686969186
438 0.3868621993700854
439 0.7863017218402539
440 0.6173354989886817
441 0.4380935781832969
442 -0.5138462719036724
443 -0.5706571415247318
444 -0.12147298564785085
445 0.11941556813140271
446 1.058588071766513
447 1.2404084282235994
448 1.130251137302626
449 0.980333705876761
450 -0.2861803342704093
451 -0.07994867372060242
452 0.46017035142429846
453 0.09114524000177615
454 1.5278459443492534
455 0.6491308408136665
456 0.49402081691648947
457 0.6491596149382135
458 0.16925172890040788
459 0.5629473263020446
460 0.464272962024219
461 0.1556346338715981
462 -1.4024561956435806
463 0.8682810717255821
464 -1.0851596245815407
465 0.21889269709672443
466 -0.2825657350972203
467 -0.7479464548579478
468 -1.1120690654359475
469 -0.835540003086761
470 -0.14600685205848007
471 -1.0908131694767977
472 1.6745006850127684
473 -0.6666822484641846
474 -2.145883938217028
475 -1.7690987409707173
476 0.502782635324094
477 -0.899688661029183
478 0.6622772301528382
479 1.2961176595225468
480 1.1100600829400045
481 0.015229725616471429
482 1.1844672815635635
483 -0.5309223073295825
484 0.9245862476168457
485 -1.3736380252519929
486 0.7260385893474861
487 -0.7497959436454157
488 2.3041791647923295
489 -0.5472379594434451
490 0.7838677493626376
491 -0.5068949201536501
492 -0.5455615507263241
493 0.021519631324367315
494 0.8067039134845586
495 -0.6156781787056655
496 0.4126791539234907
497 0.7163526644883453
498 0.0725188586853284
499 -0.3248959099462798
500 1.3359813792422395
501 0.4603047328022688
502 0.521919514703434
503 0.03469993657950483
504 -0.7974138249057162
505 1.358579798181889
506 0.9628854710815195
507 -0.9527479508883183
508 0.5369140206391212
509 1.6626678928345784
510 0.06676220851337958
511 1.438869796101619
512 -0.1760864365813048
513 1.7700446478318783
514 -0.37837193910486505
515 1.621209021406893
516 -2.2131500212170896
517 -0.20986840983599103
518 -0.09007511355053967
519 0.30608243905186583
520 -0.9955893720981372
521 -0.4109070040158595
522 0.19876407449882427
523 -0.7399294000920826
524 0.6313974406322999
525 -0.28503286099984587
526 -0.2550464026218081
527 0.32205147728341504
528 1.005275611395626
529 -1.3772291677456097
530 -0.0076232913717998166
531 -0.6651907164043983
532 1.337968960037573
533 -0.3192453527813096
534 -0.4893632462940543
535 -0.12897630236427135
536 -0.5511636523297575
537 -0.8108939832923645
538 -1.0936230669693086
539 1.076245181591592
540 1.6755917523034711
541 -0.3775714258912794
542 -0.2338963965814388
543 -0.2413801418372196
544 -0.01851307294001971
545 -1.651168914411338
546 0.4129950211659015
547 0.6207883803620332
548 0.5582867959615498
549 0.035597320339898965
550 0.7309375932341191
551 0.14335676053556184
552 0.4497006580179528
553 0.9303833230099834
554 -0.5351174806875642
555 0.39443193689972683
556 1.3880680430230077
557 0.5525813986970917
558 -1.3860294915597247
559 0.42279736307966653
560 -0.7274912194476237
561 -0.5017738037584105
562 -0.04301327609089018
563 -0.021853896658508648
564 -1.7077204811678934
565 1.548207037706149
566 -0.3068308691384729
567 0.11762103210095448
568 1.0185711730277172
569 0.715964771363517
570 -1.1144495770024607
571 0.8948999274274944
572 0.011399678614671997
573 -0.1332725015729161
574 0.23591775303228874
575 0.5203910679339668
576 -0.8335753513353105
577 -1.4572627805585534
578 0.1190608178566256
579 -0.5112365208601987
580 0.3021404235525879
581 -0.035231024189298736
582 -0.057721140242626305
583 0.23787992786444753
584 0.7882195214793865
585 -1.4345557396748616
586 -1.0062125572788676
587 1.371386991899302
588 -1.3774364270188146
589 1.7593514807135073
590 -1.4533599346863884
591 0.2994766331893205
592 2.0552448571127346
593 0.7037008447235763
594 -0.22418612851637387
595 0.8928912015403667
596 -1.8785539646457292
597 0.17218940714708533
598 0.09833520124565646
599 0.5155272173350726
600 -0.26162261820937016
601 0.7617509573906943
602 -2.5245570340945194
603 -1.7407484492088279
604 0.8902926924538034
605 -0.9192006636137308
606 0.013255738441205983
607 1.739118500005486
608 0.7863466224562626
609 -0.9217300911601196
610 -1.257222214670498
611 0.007021864808244587
612 -0.22886176845943954
613 1.290070628973781
614 -0.4728652746311679
615 -1.200612169365028
616 1.8863092759766813
617 1.8982337392688018
618 0.03377851492115784
619 0.04130626755113937
620 1.0205449401163833
621 0.1921391603406368
622 -0.6687663599963798
623 0.8777805318507446
624 1.7693823151922938
625 1.0783003625035672
626 1.2240510212717055
627 -1.3278964811534686
628 1.0173889243633099
629 -0.0182822350581672
630 0.7595627976008456
631 -0.32545205082232775
632 -0.5154132413244559
633 -0.9522396684492687
634 0.8904136312278014
635 -1.5038018477919168
636 1.535765564339124
637 -0.9345834994828343
638 -1.6938149848212303
639 1.589129331923448
640 -0.0992009791424803
641 -0.8382785822967203
642 1.0542386845813214
643 0.8509808969651633
644 0.6781065671238856
645 -0.49738683120025645
646 0.25962996395811117
647 1.3905482922326429
648 0.6814834706715238
649 -1.204799035130833
650 -1.075974906314338
651 -0.052776701747546485
652 0.3544527276276295
653 -1.1325176325561475
654 1.954357913968124
655 -1.7768680483903985
656 -0.7511820624162191
657 -1.0038486728087956
658 0.44629512738326726
659 1.1655165958913334
660 1.1069943346858557
661 0.6438362948511489
662 1.0453927805724585
663 0.8665290932483742
664 2.3512700398568147
665 -1.2052487097961424
666 1.4892819062183098
667 1.0662502700002334
668 -0.950177642462849
669 2.1508738857029694
670 -0.13801376812261185
671 0.3109629503543516
672 0.7491545013649822
673 0.17941706598244156
674 0.18987480697885148
675 0.1699923902654096
676 -0.3091031712892954
677 -0.5539150684516407
678 -0.7824364784973844
679 -0.3955765112052595
680 -1.4950095029402395
681 1.1873445502416402
682 0.6614541435828412
683 1.1422353023284688
684 0.061031088438197226
685 0.14028971536643547
686 0.12897369472555617
687 1.0012322745305378
688 -1.4946465747879194
689 -0.9054533743979054
690 -0.2528499100211752
691 0.20199537528271222
692 -0.7971359715607801
693 0.8336223462549058
694 1.217922505040179
695 0.8619969894269881
696 -1.2826367221673203
697 0.011659054189482997
698 -0.662997997361743
699 -0.3281401988774899
700 0.016431903419055642
701 0.5282812047609764
702 -0.3183832575038601
703 1.624212008577875
704 1.1481496014999522
705 -0.9000750873673087
706 -1.0996858484887313
707 0.26565620151510533
708 0.3107701367025766
709 0.5698413788880468
710 -0.26100570811075263
711 -0.8323282045424952
712 -0.4470385587209874
713 2.568461413977132
714 -0.7762847918700219
715 1.6968745428637744
716 1.437835323729707
717 0.2588157741313224
718 0.2342622518009991
719 0.26558595835969423
720 0.587054008233613
721 -1.3376051243097338
722 -2.080503702162021
723 -0.44467491703834483
724 0.4720392443153715
725 0.8217394348854585
726 -0.5881219826828615
727 0.4377546852720092
728 0.3192780209485345
729 0.5209037591392349
730 -0.3111334290139374
731 2.0960772700996326
732 -0.07904974441614655
733 -1.7275557030932807
734 2.400005074139819
735 -2.191034439585347
736 1.2519909921427046
737 -0.9635818305487779
738 -0.11156800388947889
739 0.44516827660845293
740 -1.6174569800887277
741 -0.474639642786223
742 0.5696886318948239
743 0.891566682767979
744 -0.5055409593229744
745 -0.30089081752467045
746 0.7541188419625616
747 0.8401514033669678
748 0.677546727610416
749 0.4499002663591542
750 0.8427116166915536
751 1.1604497080620069
752 0.21970897216686944
753 -0.5360439027711745
754 0.3960094110149803
755 1.0445775772074923
756 -0.32178436472724803
757 -0.7304266715508754
758 -0.9128072625813427
759 0.45992573193971154
760 1.2985097895785187
761 -0.5684687830868882
762 -0.616270211324102
763 -0.7886376838403263
764 -0.1773050627076827
765 -1.0070770452463826
766 -1.2012148380550347
767 -0.7487531918013008
768 -0.4664519207282203
769 -0.6600947179071484
770 -0.9773629370610039
771 -0.14074012279358702
772 -1.7618431696049872
773 0.4936732953468293
774 -0.15848671942576775
775 0.9559822687733891
776 -0.8384298951994736
777 0.8971636949972518
778 -0.25795739850129384
779 0.6543869385051545
780 0.2600443332118357
781 0.3866216710397944
782 0.3117385255747246
783 0.11822501370815071
784 -0.32974208379755904
785 -0.6410070551627444
786 0.6885771627695548
787 0.006391377392919234
788 -0.7356514962327598
789 -0.4124509093379167
790 -1.5273399837610926
791 -2.3824807933768706
792 -0.38608320202644403
793 -1.1515643681116106
794 -0.19054329959851807
795 -0.05942456351658159
796 -0.9129429910500604
797 2.0066831882172464
798 -0.8581834174940751
799 -0.6665630268066598
800 1.4984098028545694
801 -0.7183063803920108
802 0.9570649301640723
803 -1.25312924635214
804 -0.2652781841637899
805 0.23101744009637598
806 -2.4083815897082124
807 -1.118458119374559
808 -1.5841742187034806
809 1.478609044446996
810 0.6028748505552456
811 0.506141764699625
812 -1.0131804919185796
813 -0.6687864800619533
814 -0.8296665844065447
815 -0.2944657058826134
816 2.0730554766965548
817 -0.7480641890504218
818 0.35844763661895784
819 -1.4362658100738968
820 -0.04754551238179313
821 1.5876835764430435
822 -1.558506311496397
823 -1.9336710984436492
824 0.12204774010935888
825 0.08650340048181684
826 -0.1926113571709459
827 0.14770028807844615
828 -0.32187830119328986
829 0.9082847337423534
830 1.9051099341284046
831 -0.27883506946046144
832 1.2006623723630283
833 0.2516355814190494
834 1.0744853691740375
835 -0.5404597804964556
836 -0.7886336237446122
837 -0.5964754634164875
838 -0.13554192557108222
839 -2.876723610574472
840 0.022147974210929098
841 -0.6140443831454568
842 -0.418050130137283
843 0.6129311026590231
844 0.7271978263281931
845 -0.3675484717571325
846 1.309293249436624
847 0.7851696246019381
848 1.6373354892270857
849 0.579435804509257
850 -0.6307978582866517
851 0.30176653550369364
852 -0.6354933262554842
853 0.25605602086203993
854 -0.4385790650088691
855 0.3471199439072785
856 -1.2315474096770143
857 -1.6803859736434903
858 0.08127191927095657
859 -1.153681752248215
860 0.14911559919778075
861 -1.267209691923122
862 -0.42283939262921016
863 -1.4669507919137619
864 0.9542242483017718
865 0.6492793230826917
866 -0.07000266356122489
867 -0.11607289267359179
868 -0.0014933111305823492
869 0.742972256647947
870 -1.9618428037659688
871 -0.7105189079822408
872 -0.6033986171334276
873 1.0994074160025131
874 -0.8832642336582034
875 -0.6818280401826592
876 -0.12126492480964426
877 0.36375083438639927
878 0.1462543547653334
879 -0.05054889881372554
880 1.95898591355215
881 1.0047142661609252
882 1.0791750958833992
883 0.2368993565722079
884 -0.9150990426743979
885 -2.6132681786866554
886 -1.0147159774693904
887 1.3012981876731742
888 -0.607176134048015
889 -0.09432905609312957
890 -0.2767821389098231
891 -1.3137990854373496
892 1.0677775534639873
893 -0.9283005051514576
894 -0.5888533719953291
895 -1.5182568988838965
896 1.0337746485849084
897 0.8161815530338938
898 1.074964057046784
899 -0.354389020924579
900 1.0687668952058778
901 0.8819823942631538
902 -0.4682666398967946
903 0.3551775366627682
904 -0.8322016132262285
905 0.6904476099985078
906 -0.870375678021327
907 -0.3720333979885702
908 1.6324785402480357
909 -0.6432961778773372
910 -0.46206468059508554
911 -1.782508762159461
912 0.4124063890986668
913 -1.2034359057996202
914 0.9583351287690494
915 -0.6675427887744637
916 -0.7103347470882126
917 -0.7682099262293159
918 -1.00879108684103
919 -0.26992910400166176
920 -1.2066431712813601
921 -0.9333431644594227
922 1.9248700031825001
923 1.8032929916521092
924 -1.5117335518077946
925 -1.2695512373433429
926 0.9346055671604709
927 -0.10233907588679617
928 -0.8255581330807257
929 0.9421366033784128
930 -1.7388554175430393
931 -0.6229109172330338
932 0.1916235906259595
933 0.09297649393892672
934 -0.46188045725262744
935 0.7682740206378594
936 0.06329295327789293
937 0.3831982997073332
938 -1.4490175597746133
939 -1.2292482914465541
940 -0.3833971442610111
941 0.3465678008306466
942 1.676551392815693
943 0.6296870293155702
944 0.5095928691531655
945 0.22844046499852166
946 2.171904520066982
947 -2.068737162510952
948 -0.8330209145909028
949 -1.9392315590022775
950 0.21242307810362032
951 -0.2265976292221229
952 -1.1133611903373908
953 -0.3152808485772879
954 0.11862820786011513
955 1.5496781275044023
956 -0.957148080893249
957 -0.6520080326440197
958 0.0950614357728738
959 0.24173819707636374
960 1.6968660345277353
961 -1.431169736431009
962 -0.6463571957383343
963 -0.501410958146058
964 -0.15349315054991783
965 0.757053072963936
966 -0.36790982608028006
967 1.6175703159540122
968 -1.1898417690342442
969 0.8034708148029678
970 1.2538351362389357
971 0.36787770330368086
972 -0.34261348379802326
973 -1.1269300371328026
974 0.3210425235414602
975 -1.3123844990136708
976 -1.1146620252603268
977 -0.012521610466233296
978 0.13899986360799035
979 -0.5964283294736359
980 -0.9651923984112808
981 0.2925661814223834
982 0.49857721470338917
983 0.2452855546609573
984 2.3472446264697866
985 0.17330207410897475
986 0.3295203970812141
987 0.6781117616180499
988 -2.0525452075417645
989 -0.1613180881768925
990 -0.9130886550526005
991 -1.8996773845368204
992 0.6453411784878834
993 -2.128600590224177
994 -0.17898829599709642
995 0.7965216895300027
996 0.6033458912830386
997 -0.3016618522488306
998 -0.9409087429913946
999 0.4522329618388907
1000 -0.7483601643697748
1001 -0.4090366470415442
1002 0.19003883214275505
1003 1.0660148307140502
1004 1.9250357967841774
1005 -0.19708520588999032
1006 -0.5850845229243966
1007 -0.7579959463913529
1008 1.299022065608021
1009 -0.11714709070752963
1010 -0.404556376574676
1011 0.7885843669682414
1012 -0.2331571567349096
1013 -0.9714086456472363
1014 0.9031502368265821
1015 -1.6046766671430344
1016 -1.259685591035128
1017 -0.07834426134911554
1018 -1.9077564268300329
1019 -0.5105225463216141
1020 0.06389758882078135
1021 -1.341900962433327
1022 -0.7258375931738211
1023 -0.5905045887789446
1024 -0.8814023075732647
1025 0.47744495527405284
1026 -0.054860223704185807
1027 -1.8600326739200628
1028 -0.542119782711556
1029 -0.35575078786948716
1030 0.9661830695996716
1031 -0.19806007282162533
1032 -0.12353355530163318
1033 1.4930004745990555
1034 1.2050319512534313
1035 1.075534742348922
1036 -2.35469326454914
1037 -0.7199722526795469
1038 0.7359156289500969
1039 0.6692931269325723
1040 1.6540332651312326
1041 1.721988608330747
1042 0.6817484661901935
1043 -0.013665061314960054
1044 0.4224332353561548
1045 1.4149157521619011
1046 0.48774079960267724
1047 1.1318194813429265
1048 0.8075195420917873
1049 1.0641064017470807
1050 -0.12080177391277398
1051 0.2568113027582725
1052 -0.47876546502453304
1053 0.08729226798474829
1054 -1.743382453540233
1055 0.5897351642196942
1056 0.11747692626184184
1057 -1.001162126837045
1058 -0.04484775016024897
1059 0.47804890796892746
1060 0.5914881943400374
1061 -1.4286115814776417
1062 0.0964683434217256
1063 -0.44797126002081955
1064 -1.8768058211593992
1065 0.7920452864090322
1066 -1.2486984440019258
1067 -0.10157898783793921
1068 0.9672287877936157
1069 0.2829511646307377
1070 0.9017674311285576
1071 1.8819127869932932
1072 -1.333168051841144
1073 0.14538051911849895
1074 -0.7020684424002177
1075 1.6079407988748229
1076 0.641965769582499
1077 -0.1878181355468425
1078 -1.7865905359583834
1079 -0.10723856627829535
1080 -1.1369338818426875
1081 0.885191706224567
1082 -0.21073894581368696
1083 0.7580491315097986
1084 -1.114445416801123
1085 0.6045925147406884
1086 0.10375988589791796
1087 0.4510985963235906
1088 0.07160797512042517
1089 0.26558221008067634
1090 -0.06550924500083885
1091 1.7713514502287147
1092 0.33689029141563703
1093 -1.5019185658758674
1094 -0.42373439872601437
1095 0.9830104064183316
1096 -0.007484267227843857
1097 -1.757326945012115
1098 -0.29392184647840097
1099 0.5512785907686436
1100 -0.8326783843234883
1101 -2.1211750159277964
1102 -1.6690066364803784
1103 -1.838240059052518
1104 -1.1065205540047647
1105 0.4437341279508079
1106 0.723681299083997
1107 -0.5092466756740617
1108 -0.4342765314895934
1109 0.0839730996050108
1110 -0.46513647990734536
1111 0.11766557485242521
1112 0.35191827440193346
1113 0.32474770708127143
1114 0.34233307654078987
1115 1.5017526863572634
1116 1.000437642693801
1117 1.3659684887895596
1118 1.562344947297372
1119 -1.515806236853533
1120 -0.32801437659879523
1121 1.1846143081969709
1122 2.6789843899443055
1123 0.9397629320781282
1124 1.7159839978265536
1125 -0.37032994228428323
1126 -0.7094233877859414
1127 -1.7597289908157028
1128 1.380114291229386
1129 0.41504093063173997
1130 1.6307251775342015
1131 -1.2545413543159611
1132 -0.057916656037331385
1133 1.7515791035002264
1134 0.44884211710164423
1135 -0.1353921920239148
1136 -0.7120964650513903
1137 -2.412986446169171
1138 0.1411363441924442
1139 1.1588306010148914
1140 0.8299424555694722
1141 -0.3048053528243344
1142 0.04303313787128824
1143 -1.0300167093967565
1144 -0.7577883705872038
1145 0.4642345593020752
1146 -0.8973993114999381
1147 -0.14547288224653468
1148 -0.14868130774319627
1149 -1.3648392519584718
1150 -0.717262409868843
1151 1.066470668039768
1152 0.5447297784286192
1153 0.7644643395260584
1154 -0.08871356250262905
1155 -1.051786035953728
1156 1.312743807108908
1157 1.011905786546236
1158 1.0041696653048475
1159 0.28917125084856393
1160 1.367381598788248
1161 -0.24561269479916784
1162 0.43455122474931995
1163 -0.13208759564634753
1164 0.8186164662908275
1165 1.8930418282611334
1166 -0.4257428862040142
1167 -0.05792170867587638
1168 0.374819138641673
1169 -3.155085597446688
1170 -1.2521728333440458
1171 -0.6433448885380431
1172 -1.6676145980697576
1173 -0.1142868967429222
1174 0.07446267258642433
1175 0.884908283050698
1176 -1.2934489100817643
1177 1.8323537530557925
1178 0.9936763873679682
1179 -1.1370691890745726
1180 0.8685503749097654
1181 -1.5789637823537492
1182 -0.20465054205757577
1183 0.38482175178528566
1184 1.9211198943915717
1185 -0.7765971013485515
1186 0.5273472138324616
1187 1.0924868992548777
1188 -0.18628128499168253
1189 -2.3157648505092943
1190 -0.3222904501225909
1191 0.9488623913933052
1192 0.9148150236576278
1193 -1.5686299254280984
1194 1.3379817995325338
1195 -0.05718042352125295
1196 0.21079910746549985
1197 -0.18538140347222332
1198 1.2719316586443266
1199 -0.5794476782059288
1200 -0.30047880115681785
1201 -0.6140508793131122
1202 0.8594826607648696
1203 0.9842343520961918
1204 -0.6723751075365499
1205 -2.0877405481431266
1206 0.4803155819179027
1207 -0.40662424583933193
1208 -2.0035499552543743
1209 0.0524767572207426
1210 0.8647446027010077
1211 -0.04985707032177265
1212 0.40699658737332517
1213 0.084675464418368
1214 -0.1295184703598614
1215 0.9301541187360467
1216 0.695812760509091
1217 1.0248975359579395
1218 1.2120246772429655
1219 -0.2162595884382169
1220 -1.7135570193418077
1221 -0.19346640632896178
1222 -0.5526895325298924
1223 -1.1633771210879356
1224 2.625751971783503
1225 1.7676395450557072
1226 0.696649479647975
1227 -0.4412648613298973
1228 -1.430940628795412
1229 0.08076109754685563
1230 0.11469459202846714
1231 -1.1705315447641143
1232 0.8088250945259099
1233 -0.8029851756825153
1234 -0.6529349804140077
1235 1.699333288302342
1236 -0.11943912508800261
1237 -1.5623979437033126
1238 0.6277793625972643
1239 -0.3798877622050307
1240 0.09278187966201425
1241 0.4639143572027612
1242 -1.6139458450993325
1243 -0.9202360734187921
1244 -1.7798623355521108
1245 -0.60965897989371
1246 -1.413264178257963
1247 -0.36556879038851764
1248 -0.49969110320054294
1249 0.9603665529486807
1250 0.10024588961831851
1251 -0.5802899170912484
1252 -0.567460228966216
1253 -0.15728532276107035
1254 -0.4793232727806253
1255 0.5788204335565871
1256 -0.6083477186936898
1257 -0.03696649612440514
1258 0.9231832824887881
1259 -0.4917886953152328
1260 0.3018479423171496
1261 -1.0711885100848064
1262 -1.3885706134334366
1263 -1.1861772639582886
1264 -0.6702551467022597
1265 0.4950480646782051
1266 -0.10284122685768185
1267 -0.7584993482915793
1268 0.3712489700573576
1269 -1.490636558706765
1270 -0.3996568422966286
1271 1.4574710952193128
1272 -0.1581015934038243
1273 0.3372713582478835
1274 0.014477388583110096
1275 -0.11287339337845709
1276 0.08006540911021583
1277 0.4829650693207885
1278 1.0121190411948917
1279 -0.6025442444161692
1280 0.15075935242622424
1281 0.8294610552202701
1282 0.7869556987653972
1283 -0.5041656445686103
1284 -0.12056192378103708
1285 -1.1330787708558165
1286 0.45586197822129754
1287 -0.10262048631760216
1288 -0.06605731232817513
1289 -0.2800029509894017
1290 -0.4453685187609572
1291 -1.2670312193615678
1292 0.35675992924377314
1293 -1.0940241661115677
1294 -0.1839990196677756
1295 -0.20946473745409158
1296 -1.2759480764311475
1297 -0.13211116714127633
1298 -1.4853067822465094
1299 0.599609116144186
1300 -0.6594973118951553
1301 1.630376244476257
1302 -0.4010119363127715
1303 -0.6168997194483258
1304 -0.12783861882046102
1305 -0.4480041629929455
1306 -2.2082729004391517
1307 -0.46272481798312604
1308 0.5049950597363825
1309 -0.12799689676294862
1310 -0.570344136431873
1311 -0.3445407853444188
1312 0.5254925942844273
1313 0.13709101252887665
1314 -1.042019640978427
1315 0.29148197967728534
1316 1.5132665414912232
1317 -0.679018111802317
1318 -0.4083665559787234
1319 -0.6054338085364424
1320 0.6907832251779001
1321 -0.10765447797209982
1322 -0.027021006791679337
1323 0.6919340866069301
1324 -0.41119120007474974
1325 -1.766422851930612
1326 -0.9201377467371994
1327 0.9044389322975322
1328 0.9684095190423264
1329 0.3052011087076488
1330 -0.8044429414514739
1331 -1.646723278232529
1332 -0.28055465769286947
1333 2.006960322043979
1334 1.3145011369153476
1335 -0.027845247055017206
1336 1.0953263805877933
1337 -0.22553890305789903
1338 0.12427653395906467
1339 1.42201483508518
1340 0.5064903813930868
1341 0.20380886739259615
1342 -0.6050354517669275
1343 -1.6318314608562463
1344 0.4199861683348598
1345 0.19712713906166446
1346 1.3445012121181406
1347 0.3627021377811413
1348 1.9099937185871332
1349 -0.8881279932122322
1350 -1.299782343442908
1351 0.3289419431524063
1352 -0.685013704569975
1353 -0.13550350001771255
1354 -0.3067398858261538
1355 0.5060876110922032
1356 -0.7399721891079766
1357 -0.6280071634129452
1358 -0.2603507292608495
1359 -2.2715043855760846
1360 0.31721606828385307
1361 -0.1597782362986555
1362 0.9286101012373367
1363 -0.40953925398081076
1364 -1.1548941603056044
1365 1.4709476616329913
1366 -1.0460849031926336
1367 0.7523105640425803
1368 -0.9513977002842123
1369 -0.04401891829458821
1370 0.15691798600129706
1371 0.45753532146638487
1372 0.7821594962768761
1373 -2.1507637286903853
1374 1.8500532461882144
1375 0.5276282151762534
1376 1.149229894601833
1377 -0.17549292704607652
1378 2.304553675290181
1379 -0.5117970152216906
1380 2.787819734912947
1381 -0.713669028352241
1382 -1.4106796146710707
1383 0.6968542476374148
1384 -0.11906070942448731
1385 -0.31450767442458744
1386 0.08619162917085824
1387 -0.3872434550803131
1388 -0.18648221478732863
1389 0.9872557439324624
1390 0.4471290169565924
1391 0.09495054932956554
1392 -2.15385024805104
1393 1.9467458894063838
1394 -1.4561031270421763
1395 1.2966095846351733
1396 0.5221674711065785
1397 -0.17457785038553056
1398 -0.31806575966269063
1399 1.3627065439680313
1400 -0.49704007589898624
1401 1.2465151760615847
1402 1.044370660512965
1403 0.02354158280552501
1404 0.05763266091466652
1405 -1.6004453798728993
1406 -0.4922803732253537
1407 -0.3312597423109524
1408 0.6836899225965855
1409 1.745483536876746
1410 -0.5981988251188728
1411 1.7965230135132417
1412 0.7215337265224874
1413 1.1478270057873654
1414 0.23124726392608438
1415 -0.45494742216213935
1416 0.7570428109083875
1417 0.5485876094894768
1418 -0.36837913380393694
1419 1.0296438829319516
1420 -0.0687965255836636
1421 1.1902258575646008
1422 0.2961344494386816
1423 0.47316386629997087
1424 0.4412362898144813
1425 0.4248444855204064
1426 -0.08906599634921755
1427 0.16229036662710764
1428 0.28398502313633456
1429 0.7818897604240911
1430 0.7953188797051667
1431 0.9573975460287613
1432 0.6498014414640281
1433 0.8263015204225647
1434 -1.4706315496794204
1435 -0.15313388627953284
1436 0.6454552754602644
1437 0.882861718121782
1438 -0.455694073964648
1439 -1.2168531615661868
1440 -0.8072565032559879
1441 1.8189612824267896
1442 1.2425430927919572
1443 -1.6620437288475594
1444 0.0038862163329482532
1445 -0.47157356854098204
1446 -0.29137017289564643
1447 0.6603306736193153
1448 0.926498529393775
1449 -2.858335825137968
1450 0.649948640091117
1451 2.993180701412846
1452 -1.0910092233003752
1453 -0.0902523659501523
1454 0.5991731165452275
1455 0.20091279436391316
1456 0.06092124963509707
1457 -1.1826116368014297
1458 -0.4051768874432033
1459 0.6420379071090496
1460 -0.002558927033267477
1461 0.6684858172825826
1462 0.7859598475028157
1463 0.23404133994068163
1464 0.507218135055854
1465 0.6245381216461277
1466 -0.3089980949477434
1467 -0.30110168013395827
1468 -1.4928475842900157
1469 1.6710559697271659
1470 0.6041669805025718
1471 -0.15689272270949006
1472 0.6035518080557389
1473 1.2937989311108469
1474 0.06806019769325683
1475 1.372899674993254
1476 0.9105664023435308
1477 0.12674070395532913
1478 0.6940398100351898
1479 1.7323923404687551
1480 -0.2251550307894643
1481 1.079450773512773
1482 -0.5263374505102358
1483 -0.44711277041060643
1484 0.15973999506681982
1485 2.0871364860743475
1486 -2.7289902354349826
1487 1.0556055340511878
1488 0.14083956376201795
1489 0.9576392248920215
1490 0.4035397780402004
1491 1.7248318472423705
1492 -0.6727931469588811
1493 1.3445867074275497
1494 0.5106210966139146
1495 0.37197753323553323
1496 -1.5864560387241597
1497 -0.36244339913051554
1498 0.050593931601081304
1499 -0.5747293831776705
1500 -0.35428314667711625
1501 0.5704246971297584
1502 0.976237404632053
1503 0.416501202636605
1504 -0.6812130332728126
1505 0.6914064503017348
1506 -2.5271853719007207
1507 0.1022803404328067
1508 0.9175267609484233
1509 -1.6436661077509984
1510 -0.979388867804399
1511 -0.09606976685655697
1512 -0.9280380502772919
1513 -0.27851341979426725
1514 1.072161553914477
1515 -0.2723290737966002
1516 1.7135301979043922
1517 0.4332476398052986
1518 -2.397312705292067
1519 -0.5176639892894085
1520 0.026885881224157707
1521 0.33143130726323394
1522 1.5968860997636916
1523 0.3097811993054917
1524 0.1800063440577808
1525 -0.6817975850462993
1526 -1.9286973642424228
1527 0.1399279343845218
1528 0.20752318979482087
1529 1.1452211470042328
1530 0.8914632356617125
1531 3.520238619984895
1532 -0.8758535297092456
1533 0.7584947193181664
1534 0.8151781844786019
1535 0.5794245833297443
1536 -2.190869416925596
1537 -0.4950499084634013
1538 0.6108640761577807
1539 1.0779441009843782
1540 0.502764291302133
1541 1.5848896505052998
1542 -0.8674534031023236
1543 -0.3243916487458496
1544 -0.6379531975847382
1545 -1.9064959673260131
1546 -1.4724072778581139
1547 2.756974209356501
1548 2.093905115782284
1549 -0.12657090282731467
1550 0.5096242639080013
1551 1.9373840000843925
1552 0.007098817032679181
1553 0.7875031794253587
1554 -0.1726367746571716
1555 0.7049235761640585
1556 0.1526220006326266
1557 0.872458090159555
1558 0.23263443987943105
1559 -0.6415755359037408
1560 1.3148283562600238
1561 -0.12313666960236692
1562 -0.5332490082828505
1563 -0.2832210404849663
1564 1.0261867360749732
1565 0.8010849002462387
1566 -0.4851456726160356
1567 1.7663109381130075
1568 -0.08626407136813025
1569 -0.05458670346695095
1570 -1.7548241219724916
1571 -0.43158421061348823
1572 0.1055785411324819
1573 -0.05403887644944113
1574 0.06447956561091862
1575 -0.05373741783086421
1576 -1.5122239504976602
1577 -0.23377203005157152
1578 -0.419672701959839
1579 1.4450456467056914
1580 0.518685391605083
1581 0.9524459663494549
1582 -0.4891341822221255
1583 0.2606837779717817
1584 -0.46560914487279736
1585 0.2391537387805954
1586 0.5280918003676258
1587 -1.4136586914887368
1588 0.7836798469421747
1589 0.3299748964173304
1590 0.6422537939374053
1591 -0.19546189120140142
1592 1.1421890101293384
1593 -0.24211561290205932
1594 -0.3870579109164699
1595 0.4314075984169654
1596 0.9490310964782057
1597 0.3624897984902037
1598 -0.08723161560108608
1599 0.7984606412972916
1600 0.7537548152564797
1601 0.7245212189806695
1602 -0.33968250015866097
1603 -0.6709526781660319
1604 -0.07712369314730755
1605 1.0856122365833407
1606 -1.0049698505963562
1607 -0.27556419761598694
1608 0.07432870438964041
1609 0.8083076530331703
1610 2.5027309618506974
1611 0.7714064534767998
1612 -0.8714477028859198
1613 -0.7336666467830038
1614 0.8302895693177333
1615 -0.15814594913895003
1616 0.15021651547950188
1617 -1.4884710497768863
1618 -0.2098072967731942
1619 1.6030755914611239
1620 0.8468028889335182
1621 0.1439474805564019
1622 0.9062087778929814
1623 -0.6415170384122211
1624 0.2813218079703694
1625 -0.21363790882929684
1626 0.7504327587224638
1627 1.4853405830158477
1628 -1.5730275245243852
1629 0.8773419042301972
1630 -0.46855167468262054
1631 -0.24406847615533117
1632 -2.0981026147856836
1633 -0.42446449869551117
1634 0.36745990551330804
1635 -0.676547121992536
1636 0.8141992392032767
1637 0.20291958288250866
1638 -1.3082366998149182
1639 -1.4085338667945624
1640 -1.4928527774752518
1641 -0.9577058191403793
1642 0.5504357542855457
1643 -0.4649854890181935
1644 -1.576446063800135
1645 -2.106988404833029
1646 0.4824521698465817
1647 -0.7640700117470625
1648 -0.05173983352246016
1649 -0.7955602170082379
1650 2.139692443564115
1651 0.8944332939471086
1652 0.8687687230699743
1653 0.8119818978879118
1654 0.05088165417845441
1655 0.11131258712993859
1656 -2.33420986510564
1657 -0.13025974695075343
1658 -0.35984579727087174
1659 1.2713032850301818
1660 -1.3477347724517774
1661 0.6297929098648167
1662 -0.8346374599593969
1663 -1.6805847260096691
1664 0.6029588491698361
1665 -0.8180874230501578
1666 1.0111309110318665
1667 -1.0970965819721556
1668 -1.2937505445745527
1669 0.3875961616741055
1670 0.6368283840528249
1671 1.420475702395006
1672 0.9348638460997942
1673 -2.537573527309586
1674 -0.4636454617742705
1675 -0.7043972713574113
1676 -0.6069083551309984
1677 0.9677607542885165
1678 0.5371138475128159
1679 0.4316313979381986
1680 0.6576102371413568
1681 -0.5245968513982741
1682 0.798100094911391
1683 0.5833013683113075
1684 0.7379325141531087
1685 0.6445560274701264
1686 -0.9949766788501028
1687 -0.32686333885256147
1688 0.400811557101286
1689 -0.7201416018434624
1690 -1.6102437446087414
1691 1.0820159361827764
1692 -1.062581460478199
1693 0.4606034889179738
1694 0.4386394570794345
1695 -0.28870877352337265
1696 -0.19064625459987902
1697 -1.9170318873801544
1698 -0.9123216259229917
1699 -0.2895442017045661
1700 0.15198239978997216
1701 -2.5277678557911964
1702 0.3436839513502134
1703 0.8107497973362918
1704 0.2808871247345828
1705 0.013575711004083018
1706 0.16095115180057099
1707 -0.26809011801792587
1708 -1.299221609923447
1709 0.26533776337160964
1710 -0.2728778644190033
1711 -0.27036394397602703
1712 1.509368965797395
1713 -1.6298422860546073
1714 0.9821264026724027
1715 -0.7317415914042009
1716 -1.3018385483219532
1717 -0.9081903400195942
1718 0.7032520333739577
1719 -0.8471990688159068
1720 0.5311861082419157
1721 1.0018078224786398
1722 1.421861290949893
1723 1.0098735723992822
1724 1.3904112675874543
1725 0.5223444118812878
1726 0.43115478329186524
1727 1.3379703466311446
1728 1.3499049551733906
1729 0.5964411885659513
1730 -0.9644571125298884
1731 0.33964512148470394
1732 1.0394996881516738
1733 -0.7094864432466457
1734 -0.8789244922409112
1735 -0.002525384598246313
1736 -1.228677204023953
1737 1.2982191661323284
1738 -0.3576056689668824
1739 1.1475198119122645
1740 0.6434368190488069
1741 -0.377518433597128
1742 0.3138010924176281
1743 -1.7702083175031351
1744 -0.5707514963839213
1745 1.4672444214917384
1746 -0.9477840754474909
1747 -4.099107731416191
1748 0.6130262909248922
1749 0.3009521833272256
1750 -0.027791968793315674
1751 -0.20836431532366956
1752 0.6974464457227151
1753 0.3698388972401497
1754 2.1062612019074596
1755 -1.0189367933173954
1756 1.058499823410809
1757 -1.0875311221417883
1758 1.7429837377728554
1759 -0.9181423171513344
1760 -0.8492718617776716
1761 -0.8894027076044193
1762 0.9585089061885623
1763 -0.6469842027340696
1764 0.5866257702573531
1765 -0.19999419713618652
1766 -0.2940841449003193
1767 1.3617139787141193
1768 1.6636161710419952
1769 0.1941229728850556
1770 -0.029690126541926706
1771 -0.04979960313781463
1772 -0.5224304988021901
1773 -0.491104447991736
1774 0.6204746240820702
1775 -0.038828904832631364
1776 1.0535654922351185
1777 -1.7566574157655954
1778 0.18669407151292222
1779 -1.782328947802151
1780 -1.1887282600297864
1781 0.21603235945416832
1782 0.27163664960912515
1783 1.3944895209287425
1784 -1.2260284752458526
1785 -1.0685638775589972
1786 -0.7831887466584886
1787 0.842687019965757
1788 0.13903859563564297
1789 -0.7678596340586729
1790 -0.08948910147492205
1791 0.15162677279192618
1792 0.7595245084707115
1793 -0.3308575703818711
1794 1.5588268464549788
1795 -0.6803802415395255
1796 0.8492752035654694
1797 -0.9941163251707352
1798 0.9459667429758588
1799 -0.6138542548094648
1800 -1.52848925866385
1801 0.8531904209958218
1802 -0.8279287371478133
1803 0.5904597159317695
1804 -0.6780577219766604
1805 -1.6289235538264861
1806 -0.43400419981973287
1807 -0.7110031842389852
1808 -1.5509432943602892
1809 0.15947023333535218
1810 -1.0309316770441321
1811 0.315586427562808
1812 1.4325240893459965
1813 0.5491386292311111
1814 -0.9499151066007413
1815 0.7675783742909972
1816 -0.4302026610344941
1817 -0.13125085030661338
1818 -0.29925545546663934
1819 1.0157394840081941
1820 0.5369309605063705
1821 -0.542643700333463
1822 -0.20623901537890227
1823 0.2123689946818981
1824 -0.40508718802316723
1825 -0.2544485690912807
1826 2.834028686657216
1827 -0.9905743074153244
1828 1.1485762944755662
1829 -2.768316170397436
1830 -0.5815987471763457
1831 0.1348510671319696
1832 0.008444676149211268
1833 0.3887764348085069
1834 -1.1113392526755108
1835 -0.11215180251871483
1836 -0.5488000792449745
1837 0.61926336787226
1838 -0.6770693035961486
1839 -1.3220724490920666
1840 0.6229686925503247
1841 0.49708011358060344
1842 -0.9065018134492917
1843 -1.8318308877760165
1844 -0.3748552196334094
1845 0.08811804954526967
1846 -0.5999320133521936
1847 0.08247623837456115
1848 -1.5462344819063458
1849 -1.7163980278134114
1850 -0.19937777727652334
1851 -0.9614979577637852
1852 0.6096047828853209
1853 -0.9185765247185584
1854 -1.8852103564991773
1855 -1.5965075535269815
1856 -1.2230534385433007
1857 -0.028306330057749306
1858 -0.5387855964220644
1859 0.4142804284093349
1860 0.7371801209840098
1861 0.40690825329873753
1862 -0.7841219983648967
1863 1.6271881774612484
1864 -1.7450472078867172
1865 -2.7363061409984124
1866 -0.2627767575868674
1867 0.7910616884907852
1868 0.8711834866869899
1869 0.5675944067581375
1870 0.7306262601852183
1871 1.3997116980044033
1872 -0.3959242064031311
1873 -1.4846058518703293
1874 0.707336623828261
1875 0.1734479588114371
1876 -0.3817961640806319
1877 0.8713209465878438
1878 -0.9755454204308861
1879 -0.4662298771647805
1880 -0.5005050040456895
1881 1.125065789823952
1882 0.4139253688293049
1883 0.5606425174952923
1884 0.14329945770820715
1885 -0.5071647478246762
1886 1.0092016159185289
1887 -1.5319721982562364
1888 -0.34665070698066597
1889 0.7443329569867071
1890 -0.5964265073983112
1891 -0.8604858373689294
1892 -2.13941246471586
1893 1.0308146328467471
1894 -0.08375036411150867
1895 0.3221894758214485
1896 0.33860292714193435
1897 -0.5435241370937778
1898 0.9249498180808491
1899 1.8599976603288133
1900 0.022307487508737588
1901 2.053323361861346
1902 -0.8124698588869161
1903 0.7603262607714405
1904 -0.9776581766717104
1905 1.3498571935640007
1906 -0.14938852884536663
1907 -0.21721763688485515
1908 0.9636843669421435
1909 -0.6326598017185565
1910 0.9053684977946933
1911 0.4613955132237126
1912 0.3245932409705751
1913 0.2584962085519335
1914 0.2319720388679001
1915 -0.12304906996106191
1916 1.5768604667970745
1917 0.38060628751883946
1918 -0.3675114612653456
1919 1.8065172213244531
1920 1.2563989060303518
1921 -0.5875873023226098
1922 -0.33532093361974125
1923 -0.06953492938878272
1924 0.2839063500402722
1925 -0.4470587591403942
1926 1.9131080129370317
1927 -0.5112987585296537
1928 2.239718254273991
1929 -0.11673374663084439
1930 0.4106494379957044
1931 0.005811949622561948
1932 -0.5841548820550875
1933 0.1719989424882543
1934 1.3821734461909028
1935 2.750606852728632
1936 0.006694746209536686
1937 -0.6918474166872276
1938 -0.4361481579823856
1939 0.2771151906088952
1940 -0.7719043629685459
1941 0.612298415165222
1942 1.1326683119104297
1943 1.3989782176349086
1944 -0.31739239221523413
1945 -1.0230810916446746
1946 -0.34923114970030417
1947 1.0551317629610364
1948 0.0069658444747575255
1949 1.2471660505146684
1950 0.6951328285562473
1951 0.27712644052719104
1952 0.28219822240937853
1953 -0.14789123952909702
1954 -1.748526043300433
1955 0.8375623126176022
1956 0.6290095173831755
1957 -1.4418124148833864
1958 -0.28652033270590954
1959 -0.28965865030098426
1960 -0.4302435807985153
1961 1.0097672784382958
1962 -1.9358113815115834
1963 -0.3651329270304666
1964 -1.0558502218237245
1965 0.1791819170342221
1966 -0.20898609034592605
1967 0.7733477828848729
1968 1.0150452503102245
1969 -0.7797928000518902
1970 -2.3461344387810175
1971 0.48704417495795754
1972 0.39767706844680817
1973 -0.12814051638260962
1974 1.023719672725106
1975 0.8598879385318039
1976 0.2870771817388223
1977 0.1262476910576164
1978 0.7671312308518317
1979 0.900694633515449
1980 0.9788074242234966
1981 -0.7862911466183543
1982 -0.24476258162858217
1983 2.342844241484416
1984 -0.6239637572998735
1985 0.07453541245154731
1986 0.5248826316377518
1987 -1.1740133835805777
1988 -0.9901788001420069
1989 0.021236519433499444
1990 0.22821944354419763
1991 0.9221021597308678
1992 -0.3328592231337256
1993 0.8166591359105269
1994 0.4319417858159338
1995 -0.6064674390167233
1996 0.6111060602699305
1997 -0.5905910578432693
1998 -0.3094534400286941
1999 -0.07385142892301222
2000 0.3250115675050614
2001 -1.7364989797918353
2002 1.1151936250451462
2003 2.2010872491774105
2004 0.6145494003580876
2005 0.1866471084409715
2006 0.6081225699942809
2007 -0.688538012772124
2008 -1.297653443006581
2009 -2.1004913099229987
2010 0.30502990629575116
2011 0.4226621132614954
2012 -0.41490131481753906
2013 -0.5757593616531475
2014 -2.5630515481704874
2015 -0.5824766902755185
2016 -1.5494045381726944
2017 -1.0902250245646903
2018 1.1868795905702716
2019 -1.186215701077429
2020 0.6982138303250089
2021 1.3579103141258224
2022 -0.4037728848256515
2023 -0.9974471755477066
2024 -1.189634762619298
2025 -0.2745451729777635
2026 0.2986285914260318
2027 1.0911092145911203
2028 -0.15784735600884195
2029 0.2302218868638704
2030 1.6009496177739369
2031 0.011352230005478813
2032 -0.26203627843401506
2033 0.8529504853124141
2034 -1.6677625236540194
2035 -0.5400348525141581
2036 -0.023465102334663816
2037 -0.24645848256823918
2038 1.8432425715152914
2039 -0.48721016373443177
2040 0.9956476965237185
2041 -0.29527865819741245
2042 0.7153142311534915
2043 -1.3826457225963058
2044 -1.751237133610529
2045 -2.32470945164382
2046 -2.1296288315593404
2047 -0.12433454883602238
2048 -0.8774863200090921
2049 3.2643396685605577
2050 -1.0431220217132497
2051 -0.4406023119493139
2052 -0.7369788545522621
2053 -0.5715448578857988
2054 -2.9423457883562767
2055 -0.04709822081718339
2056 -0.6305559599256847
2057 -0.5311968319463536
2058 -0.5931550740915451
2059 -1.184063354513301
2060 1.3057434965428887
2061 1.8411545198972477
2062 -1.8372584174285942
2063 -0.846999888184968
2064 0.4617879361728763
2065 0.04350600388213546
2066 -1.4803332749339413
2067 1.0048249543906207
2068 1.2217268099214689
2069 0.16311099153181496
2070 -1.1097680950702071
2071 0.15497923589209525
2072 -0.690493813173595
2073 -0.39323483614964466
2074 -0.07552791387089985
2075 1.551760789362441
2076 -1.0251693549712106
2077 -0.5466853393876647
2078 -0.7378948938028641
2079 -0.48996989673023145
2080 -1.5256370569642261
2081 -0.30782048111489496
2082 -0.0076847994890376975
2083 -0.9415123880396861
2084 0.08854724305047691
2085 0.6117989357600337
2086 1.247211499931036
2087 0.20230097568528158
2088 1.7430481080376548
2089 0.932915900126817
2090 -1.390242523581828
2091 -0.7454218084831686
2092 -0.2112705100598781
2093 -1.227295751757191
2094 -0.5769205625435608
2095 -1.4904743983891184
2096 1.1639183839604879
2097 -1.8175882748524423
2098 -0.4659710496221712
2099 -2.560083662819635
2100 0.2355662669328724
2101 1.0471545139231668
2102 -0.26305305413573943
2103 -0.3961153556545046
2104 1.0113105348742129
2105 0.7850301573630082
2106 0.8648619676243748
2107 0.005516899323499384
2108 0.4384391996254956
2109 -0.12791070040903138
2110 -0.0781719014983647
2111 0.8274085900806799
2112 -0.47409915369665934
2113 -2.186086172844763
2114 0.1707315080465345
2115 -0.25866300084347327
2116 1.1475323385889844
2117 0.9370734202208914
2118 -1.1760153114414742
2119 -0.5424740945905199
2120 1.1917108788998056
2121 -1.8825881249379777
2122 0.5833318218533521
2123 1.0538735450498689
2124 0.8372813478432454
2125 0.03478506792185244
2126 -0.95755121180636
2127 1.1772853761025879
2128 -0.6997386659829562
2129 -1.6137213533200876
2130 -1.5162100701478858
2131 -1.9994935367675106
2132 0.7160593776100656
2133 -1.3048865158830094
2134 -0.04290553848994221
2135 0.5761306252618728
2136 -0.17296938672014442
2137 -0.5238957270088532
2138 0.19985687433773267
2139 -0.6955254296988808
2140 -0.35749263896129496
2141 0.19572432614623034
2142 0.8944013075162871
2143 0.9762590361479833
2144 -0.08519632873277451
2145 0.3772196312529292
2146 -0.621273846892257
2147 0.03791107038743071
2148 -0.0489014246297117
2149 -0.6012426269416017
2150 0.3128875950355778
2151 -0.6954751753069495
2152 0.2879391190214208
2153 -1.0069230402190965
2154 -1.1280486932659892
2155 -0.32390464396767416
2156 -0.43263629775146395
2157 -0.008320483401047593
2158 -0.15987309367470529
2159 -0.14240405882501503
2160 0.7307601150968035
2161 0.6000857377221058
2162 0.4416023823455846
2163 0.18685638429828746
2164 0.010509190663790548
2165 0.8789025057090432
2166 1.1484865062304517
2167 1.3807018548358956
2168 1.2021412657058228
2169 -0.32378253403364915
2170 -0.9388877763357882
2171 0.03981139260281286
2172 0.5279297163635251
2173 -1.4186000744978766
2174 -0.8023343160191311
2175 -0.5715315776319821
2176 -0.9213206501773687
2177 -0.1206177456474444
2178 0.030815250889440468
2179 2.05928881735313
2180 0.591469499144919
2181 -1.6890097200470542
2182 -0.62014694163235
2183 -0.6875665349400125
2184 -1.1891954050346158
2185 0.8986589215519796
2186 -0.386310646541552
2187 -0.2595953474867278
2188 -1.063006620716611
2189 0.3426839095568038
2190 1.8208403733331477
2191 1.0050044098655362
2192 -0.6065313546114287
2193 0.23993529925784693
2194 0.7330380953287605
2195 -1.3694676038309685
2196 1.5136570256164386
2197 0.04658574758059239
2198 -1.1045158013468481
2199 -0.8847947111941022
2200 0.9951757671292067
2201 -0.9791810681090265
2202 0.4807678609955926
2203 -0.009777186097778785
2204 -1.3275769807225788
2205 0.0156731305298725
2206 -1.3539360478207176
2207 -0.1894344234398504
2208 0.8531489702960017
2209 1.052024608640497
2210 -0.47932102873214544
2211 0.1262231021897587
2212 -0.6442160547408474
2213 -0.11942693969278782
2214 0.6205533566229166
2215 0.05450468400414698
2216 -0.6399461518099531
2217 -1.3435628438876093
2218 0.4842467338021104
2219 0.1417813494470462
2220 -1.7932592568593473
2221 -0.0385396689452191
2222 1.6141360565253318
2223 0.3323790022332719
2224 1.7317920987634585
2225 0.03069677625478677
2226 0.6277006523497818
2227 0.9850786299925012
2228 0.9536427943391749
2229 2.252478853694749
2230 -0.4429819929982994
2231 -0.07733957151612741
2232 0.5231888658438486
2233 0.14754288001876878
2234 -1.168089654207925
2235 0.5891412401189541
2236 -0.5651242979512441
2237 -0.5873453125256956
2238 1.5645010733377929
2239 -0.18912314092413882
2240 -0.30765412438385753
2241 -0.6865899974492924
2242 0.30563657090447555
2243 1.6661310755916534
2244 0.7429946761534075
2245 0.36683206022322884
2246 0.7472445379187629
2247 -0.4925164089417487
2248 -0.16676284725592921
2249 0.6950151866476888
2250 0.7742795298499348
2251 -0.2394272293609472
2252 -0.7268067924044764
2253 2.1147397457970016
2254 0.39317054185290556
2255 2.201837714369591
2256 -0.3213990246766231
2257 1.1790184824828545
2258 -0.08952459589221029
2259 -2.6564015006580037
2260 -1.508623730399318
2261 -0.8295716518015376
2262 1.1231951162386524
2263 -1.011073456107831
2264 -0.5793405252880361
2265 0.1392503008943603
2266 0.07942865098382888
2267 0.25763873105240565
2268 1.1768652836067093
2269 1.9862162403026544
2270 -0.43905393673983
2271 -0.129490552652327
2272 -0.31157378437715655
2273 1.2975325350556617
2274 -0.4854729272110368
2275 0.0728071288054429
2276 1.4926546008827166
2277 1.1598661450643537
2278 0.0854209073753735
2279 -1.832294976966261
2280 -0.885288320759693
2281 0.2209176521057224
2282 -0.17929986320582206
2283 1.1688528096394726
2284 -1.287710587955461
2285 -0.5890788528770802
2286 -0.6320959129889253
2287 0.019366247680834475
2288 1.2200845944536765
2289 0.11389656603412045
2290 -2.151865437724996
2291 0.7520105400575342
2292 -1.3414745021366663
2293 -0.34904125466202296
2294 -0.3025626278678197
2295 1.3668031662912639
2296 0.31055533801044577
2297 -0.3956690591547866
2298 0.08418338692111876
2299 1.613015727933424
2300 -1.773161609341287
2301 -0.8937547702254642
2302 0.564013733094453
2303 2.6916618244844375
2304 0.27181987998933305
2305 1.055009600470033
2306 0.8543394561013808
2307 0.32032032457408977
2308 0.32937509375885937
2309 -1.5984231343976245
2310 0.21218346760651038
2311 -0.2011277902336648
2312 1.3798143601153408
2313 0.03084313777658607
2314 0.06314724120799764
2315 -0.9427479521581389
2316 0.9746819126122014
2317 -0.11259877384332106
2318 0.8535398250243994
2319 -1.0198888353153523
2320 -0.7390826769182124
2321 0.596255105924154
2322 -0.6029796452846217
2323 -0.23397388395517102
2324 0.8432818755100745
2325 -1.5009156234887218
2326 0.2440437137784156
2327 0.48871297240870065
2328 -0.1267363423339085
2329 0.7587475138519327
2330 -0.28928115301678226
2331 -1.2283291126497475
2332 0.33171084300484144
2333 1.0033467497004451
2334 -0.27745907419097515
2335 -0.030003799424861963
2336 -0.6249880929357396
2337 0.3222667268414492
2338 -1.090755396385885
2339 -0.2911711169154945
2340 0.2467695365620745
2341 1.409887281382106
2342 -0.45445489934505756
2343 1.1257892308049509
2344 -0.44896753149632157
2345 1.153588854365117
2346 -0.12545031108239038
2347 -1.5327603572287918
2348 0.33379978935308
2349 1.6318283967967386
2350 0.881299679500788
2351 -0.5312098717114703
2352 1.579177930245618
2353 -0.3404181711171655
2354 0.8495506956083899
2355 -0.7112430512202149
2356 0.9175706555993803
2357 -0.5646785554113977
2358 -0.734433395078886
2359 0.21521894867669053
2360 -0.07139656786832
2361 -1.2746451913568653
2362 2.4743763200364945
2363 -0.7109822415225687
2364 0.9681105548074084
2365 2.3118671377104945
2366 -1.2858155181256676
2367 1.6386701623936972
2368 -0.22365293126846764
2369 -0.005587706454992662
2370 -0.6950472194420547
2371 -0.35310779240602896
2372 1.6979982827904352
2373 1.8723884981349015
2374 -0.1974192234164714
2375 -0.28440399420502616
2376 -0.21913788026341816
2377 1.2473938113964975
2378 -0.5182067270449562
2379 1.0165456188966087
2380 -0.11600990777339315
2381 -0.19808841862783802
2382 -0.027380131052911594
2383 -1.5112441508725447
2384 -0.2105595775228254
2385 -1.1439249241914937
2386 -0.8920585697071006
2387 0.37681796680586227
2388 1.6202349894262122
2389 -1.5989595605830673
2390 -0.3772633145068053
2391 -0.5676975461724594
2392 -0.3186037621670186
2393 -1.0335345604765502
2394 -2.6452254201732277
2395 1.492076666309538
2396 -0.7526397132866368
2397 -1.2464964675108583
2398 -1.4150180464726325
2399 -0.08712890849077093
2400 -0.6994019620317402
2401 -0.19280493613795563
2402 -1.2137047387191668
2403 -0.04022707889367601
2404 1.3281237420316132
2405 0.41188485841292666
2406 -0.6690783599473045
2407 -1.3676604622892092
2408 0.06607825899876654
2409 -0.21431999865946863
2410 0.24394062131566036
2411 -0.08477391136609681
2412 -0.20761028269842316
2413 -0.13452717553872515
2414 1.1113490875738687
2415 -0.2325038659951717
2416 -0.6602490722934109
2417 -0.6218837602683119
2418 0.6651903690610299
2419 -0.31599985675932907
2420 1.3649292721096378
2421 -1.1327044709153509
2422 0.041685888339221225
2423 -0.852105927563079
2424 0.9763026149807031
2425 0.6636491167353243
2426 0.6195425952774356
2427 -0.2754132846012686
2428 -0.050994217576851346
2429 -1.1718961192891486
2430 0.6638793014525248
2431 -1.7501723017182893
2432 1.1157039308166006
2433 0.15929993290499764
2434 0.9311712934388743
2435 -0.7084422269677432
2436 0.7234262869542031
2437 -0.3090302174326077
2438 -0.7837881951379172
2439 1.007476716885108
2440 -1.290704261851889
2441 0.09480445644328293
2442 0.7468931609435625
2443 -1.1636130520962953
2444 -0.3803126030927384
2445 -0.307205745507132
2446 0.21383671858251171
2447 -0.004433762788235021
2448 -0.3437632732299827
2449 0.37052016552163103
2450 -1.1367363387061953
2451 -0.6574505607440498
2452 -0.9772464651053976
2453 -0.1392499971297514
2454 0.6612349740189105
2455 -0.7699718770216168
2456 -0.5832945860267242
2457 0.4971575065554937
2458 -1.6711096496553723
2459 -0.9817898964063413
2460 0.32394756941177005
2461 0.36038307620481547
2462 -0.43865941184320595
2463 -0.4986751530006073
2464 -0.1316999642791004
2465 0.6426544199459854
2466 0.25773364264814347
2467 1.2335715114064425
2468 0.3127150136333417
2469 1.0233645160206233
2470 -0.34120048208982473
2471 -0.729625775142665
2472 0.05856020491693606
2473 -1.7854095221620685
2474 0.018998144851713448
2475 -0.5443467926214637
2476 -0.5428006264719877
2477 0.4195759746763071
2478 -0.04337733093648319
2479 -1.2626249070169793
2480 1.00307547063602
2481 1.0631933379414045
2482 1.811294927717573
2483 1.6022788357705224
2484 -0.3792009597137074
2485 0.8285050555806968
2486 -0.7180372062793534
2487 -0.5632740768174246
2488 -0.4837179247916653
2489 1.19036702645067
2490 -0.3124599455054538
2491 0.9505732252324437
2492 -0.46139018309091295
2493 -0.28854438413364586
2494 -1.1052845608788573
2495 -0.5432913123817641
2496 -0.25377982365532237
2497 0.7083183926740514
2498 -2.4519785553517983
2499 -0.03082942678440883
2500 -1.2727378767866255
2501 1.3547442722669347
2502 -1.1746348002765084
2503 -1.050571375711892
2504 1.4038509309526646
2505 -2.288716668694644
2506 -0.6585347949676342
2507 -0.33288154341210063
2508 0.22558129374242597
2509 1.610864439368553
2510 -1.1968803577806928
2511 1.394097017543155
2512 -0.7986208141539464
2513 -0.8303416193678653
2514 0.23085648268681677
2515 0.7629450421756542
2516 -1.0409787886678612
2517 1.0253330891023509
2518 -0.41682736021992023
2519 0.8818642698072099
2520 1.329368867387125
2521 1.3936481071192444
2522 -0.11681242874164303
2523 0.11961887402416586
2524 1.2912569574928545
2525 -1.2992674066952965
2526 -1.2292555433324612
2527 1.4508391380743149
2528 -0.48026255610983604
2529 -0.5093582645049116
2530 0.6143934080126735
2531 -0.28395375517336086
2532 -1.2707547503779233
2533 -0.886748114814283
2534 -0.5394334554858979
2535 -0.5880514940896019
2536 1.13188079046344
2537 0.7908578655995748
2538 1.6941863978438434
2539 -1.0285971862958754
2540 1.913254410035739
2541 1.108709378357226
2542 -0.3519644644186033
2543 0.43007852570009547
2544 -0.04894566600202997
2545 0.25914418427139857
2546 -1.2755067527000248
2547 -0.6055977077427935
2548 0.07113918587148443
2549 -0.20027076251589873
2550 -0.7388027633229264
2551 -1.9060776675101196
2552 -1.1763506620307245
2553 0.5710715716617146
2554 -0.8547661380549784
2555 1.8692617954662791
2556 0.9756505885269765
2557 -1.0326604338683305
2558 1.4743798533871193
2559 0.17486548078785796
2560 0.0959499308272933
2561 -1.5030331981021505
2562 -0.17601018308398994
2563 -0.8569283691288597
2564 -2.0796528086096364
2565 -0.27666596578172026
2566 0.9555432789950531
2567 1.5864577575236225
2568 -0.8230484269999556
2569 0.3783085051934907
2570 0.6323358801704069
2571 0.8843547416372265
2572 -0.20749430976170596
2573 0.23593162978025742
2574 -0.05630709476983454
2575 -0.6852243717369476
2576 0.09074534440699769
2577 -0.6575787966040101
2578 -0.023618397956367592
2579 -0.491129453182644
2580 -1.0654511323809703
2581 -1.0130240445510184
2582 2.4163865908395294
2583 2.4261563028212247
2584 0.9466616360120086
2585 0.4161803606163989
2586 -0.1912601237984028
2587 -1.046952975374872
2588 2.2094434025539202
2589 -0.38857051697478323
2590 -0.9473598949665603
2591 0.06756579388180617
2592 0.1981734155734202
2593 -0.9631625342206421
2594 -0.12211889104177868
2595 -0.32152830381354436
2596 1.8391868365025514
2597 -0.16365013155222244
2598 -0.7518787363882157
2599 0.44938367855334005
2600 1.6936936638316957
2601 0.6272358148539767
2602 -0.5101281116932674
2603 0.1576790951352159
2604 -1.1056741508299335
2605 -0.4229624918230518
2606 -0.9641659616425843
2607 -0.4375131117987758
2608 -0.6220433572641594
2609 -0.8239377672111566
2610 -0.02916398272242906
2611 0.381710018871693
2612 0.3700947173165927
2613 -2.2270563163538464
2614 -1.18568130272417
2615 -2.8688066417212963
2616 0.9153863867126143
2617 0.9599394513005882
2618 -0.3826789027875898
2619 -0.35542600361236903
2620 2.1824963867453793
2621 0.5746025369389379
2622 0.03057875749209667
2623 1.182863738004586
2624 -0.9037496613331343
2625 1.5887235248174052
2626 0.5099505422929719
2627 0.12955376418256784
2628 -0.7605159601777067
2629 -1.436338923760759
2630 -0.33378190371298455
2631 2.196746982058824
2632 -0.25256802756235613
2633 0.8829062097650591
2634 -0.3995377349670225
2635 0.7361565647718264
2636 -1.1205865929218115
2637 0.11842053063950395
2638 2.2492694012615018
2639 1.5321947801647833
2640 1.5634873032719603
2641 -0.6589109217421292
2642 -0.09582867679643749
2643 -2.693491175829262
2644 -0.43324674632080495
2645 -1.815344375828329
2646 -0.6552597523537741
2647 0.7316294362690521
2648 -1.0142006001676596
2649 0.9378979627269651
2650 -0.057476137400175736
2651 -1.1705737099882203
2652 -0.09188952444054067
2653 -0.05153784819418804
2654 0.36698121511941845
2655 -0.6231288826440308
2656 0.22716889398037798
2657 0.4226049286001335
2658 0.5296231065292978
2659 0.6675223658720373
2660 0.41820684755293325
2661 0.43340401556703817
2662 -0.5715647192388328
2663 2.277497893681337
2664 0.20637744494798815
2665 -1.2560504944839688
2666 -0.31960771331834076
2667 -0.13205988629687593
2668 -1.3219799525858493
2669 -1.4348795623843074
2670 1.1499093501308002
2671 0.2508010273107028
2672 1.6504692403197716
2673 -0.2750913686721349
2674 -0.4778700277589507
2675 -1.4583912692691685
2676 -0.8692074491896089
2677 0.502555381642325
2678 0.19895970899519552
2679 0.46468495219807054
2680 -0.4291536945739347
2681 1.0398660865645755
2682 0.7431194486653422
2683 -0.6635702211858198
2684 0.9471660418668292
2685 -0.15982130192158264
2686 1.0645422498792372
2687 -0.3730464420769482
2688 0.8022088011836415
2689 -0.7334987270653859
2690 0.5090670873686972
2691 1.4505519179886452
2692 2.1384890876525358
2693 -0.13220978819010976
2694 0.5960125118127878
2695 0.9753559904772278
2696 -0.6103962325081357
2697 -2.6188587991576453
2698 -0.06901227714781948
2699 -0.9179682632543205
2700 -0.812338856022149
2701 -0.8982951642896524
2702 -1.1764452003967103
2703 -1.6343660180248154
2704 0.6378247050537628
2705 -0.28339482841247055
2706 -0.08896804866585374
2707 -0.5523799712817562
2708 1.216848505575167
2709 -0.452311270475859
2710 -0.46362839367547387
2711 -0.40165626206634025
2712 -1.129640475767996
2713 -0.3030558383754731
2714 -0.37884912436859436
2715 1.324095524770941
2716 -0.7938025230579611
2717 1.7449476177894097
2718 -0.23591415827624157
2719 -2.54505155389354
2720 -0.8454578568264425
2721 0.007693439045772002
2722 2.016807109494384
2723 -0.921079869624194
2724 -2.275736248777762
2725 0.7290883736528415
2726 -0.6322802693927544
2727 -1.3920770909035756
2728 -0.6047138432539516
2729 -0.2888783991637206
2730 -0.6915326130425247
2731 0.5763202816301962
2732 -0.49113211046328487
2733 0.5040653691786823
2734 -1.9093366145581105
2735 1.0603684801363862
2736 -0.2747701385105234
2737 -0.20436361777816864
2738 1.486937113903978
2739 -1.196023953233604
2740 0.36254619331065224
2741 0.05372180254710923
2742 0.944615574260071
2743 -0.41944790023682366
2744 -0.011473947421733525
2745 -0.0572865583570161
2746 -1.900842196301426
2747 0.865850252705851
2748 -2.331552288778451
2749 1.1058885868983264
2750 1.3223722059205902
2751 0.38249608429223986
2752 0.12202923730118617
2753 0.5177373100175244
2754 1.7204676244937447
2755 -0.31683467785449876
2756 -0.9100497663431052
2757 -0.7666892845558273
2758 -3.044928080918337
2759 -0.13663232847682685
2760 -1.349041369340566
2761 -0.09599896124986669
2762 -0.7085743698341435
2763 0.2776804106833053
2764 0.39041279019722247
2765 -0.16370921100603686
2766 1.4137926717075475
2767 1.0372583862892903
2768 -0.1474977953068777
2769 0.1758661215082409
2770 0.5326687321069111
2771 -0.9936540282711015
2772 0.775828531569656
2773 1.1035905862837827
2774 0.29853101213405414
2775 -0.5206548006986289
2776 -0.6273794258213973
2777 -1.0556796497356011
2778 -1.189620215494905
2779 -1.0281427666035723
2780 -0.8752068241921284
2781 -0.1468835261739412
2782 0.12274423200547913
2783 2.0179078914364004
2784 -1.2799041226599954
2785 -0.8866221080622152
2786 -1.5124436214683386
2787 -1.3714000330267688
2788 -0.5738264438462074
2789 -1.6612554521229927
2790 -1.1290924648408769
2791 1.035435588118601
2792 0.08351988037996531
2793 0.20121386679961534
2794 -0.016235705143321955
2795 0.5307115681817934
2796 -0.2439637746367208
2797 0.2608248832078739
2798 0.660811216731503
2799 0.9118965688887547
2800 -1.0765009052159353
2801 -1.5450302397958486
2802 1.2719238881481238
2803 1.1990035251145328
2804 2.155442719500286
2805 1.4151422778025353
2806 2.3677470563514276
2807 -0.6594192268580792
2808 -1.11260284284767
2809 0.6955973355433089
2810 -0.7242832813711668
2811 -0.3396486451876532
2812 -0.7679284095182134
2813 1.1817451074164835
2814 -2.0958374506406403
2815 0.7122019529807901
2816 -0.3868632898484214
2817 -1.759564379509889
2818 0.02116173148317823
2819 -0.5605020290645436
2820 1.1953333330934317
2821 -1.7965015294465327
2822 0.7796179293323641
2823 -0.4119658073117867
2824 0.17611647823313242
2825 1.7681046685576622
2826 -0.4682680512414155
2827 1.125090655122285
2828 0.9089710835371575
2829 0.11372568513834687
2830 0.2625036336980033
2831 -0.06994293455420535
2832 2.0725016436464756
2833 2.1694598435790047
2834 1.2431196365382546
2835 2.654995333365721
2836 -0.19852461163132856
2837 -0.5753883015521903
2838 -0.4573137238804818
2839 0.4094925896376006
2840 0.06639966009583978
2841 0.8622957079285006
2842 0.23452132788627505
2843 1.1784324753927153
2844 0.05435588581512109
2845 -0.6286618650863409
2846 -2.5626990796216003
2847 -0.40937157771512583
2848 0.05403733216313565
2849 -0.09381113207014002
2850 -1.0220371996388555
2851 0.6694711746937356
2852 -1.3783498628097932
2853 -0.0465270382339321
2854 0.5856977424026723
2855 0.903896390345066
2856 0.6241487321343417
2857 -0.8769091934837481
2858 0.45325968556201696
2859 -2.3655991040025337
2860 0.1513008138210347
2861 -0.5094265038438429
2862 -0.4827245105618083
2863 -1.0054789895674867
2864 -1.463387381750453
2865 -0.8774400282668333
2866 -0.10540187861202292
2867 -0.8268871562957039
2868 -0.30020021964534116
2869 -0.11620922193475641
2870 -0.49228000414969103
2871 0.837802920280023
2872 0.0251141192549935
2873 1.8330279367978988
2874 -0.4830557388237272
2875 0.500325601757728
2876 -0.6517941590248804
2877 0.3119016348816945
2878 -0.16865730902340334
2879 0.22139990135554583
2880 -1.3354264766081427
2881 1.1846871856810919
2882 -0.3985341462065079
2883 -1.8686670790245379
2884 -0.20441502789771215
2885 1.2789283942435798
2886 -0.180404586409714
2887 -0.4853544890660012
2888 -1.8345259045210138
2889 -0.6425569306512604
2890 0.6191725631396638
2891 0.9549300099314162
2892 -0.5200753765524597
2893 -0.8518580101228734
2894 0.7895098619022926
2895 -0.7373953855731766
2896 -0.7805286031232708
2897 0.5117157427141202
2898 -1.1756983258163263
2899 0.02962519248812563
2900 -0.12041929575318362
2901 -0.9572010823710774
2902 1.5652219390054913
2903 0.3249753377726372
2904 -0.8118812307276447
2905 0.16135805993375385
2906 -0.25911096560323243
2907 -0.3403224923216754
2908 0.038220087243847206
2909 -0.8498998784817899
2910 -0.5942302461562733
2911 0.8083983132810949
2912 -0.4964715441287411
2913 -1.9061974073623524
2914 1.263524453789221
2915 -1.7957591838069031
2916 0.21953829447467274
2917 0.05160467811318087
2918 -0.2577795029226441
2919 1.0009287402453744
2920 0.058306416724374796
2921 -2.3223213963257128
2922 -1.0096894241170065
2923 -1.0320425269066695
2924 -0.5705385491326752
2925 0.20489421483820888
2926 0.5680720339286585
2927 -0.5729289898534864
2928 -0.09729341416069337
2929 -2.388414178325412
2930 0.6562226300775104
2931 -2.299936582263669
2932 1.9693553280350673
2933 1.564956188574594
2934 -0.8738725360771903
2935 -0.2857581268680153
2936 -1.912935379197331
2937 1.064422993174428
2938 0.6139126585499147
2939 2.373392587184089
2940 0.9981693460655727
2941 0.32162851036559637
2942 -0.7624070264102274
2943 0.1419813562147234
2944 -0.08958024791569903
2945 1.7973885825901859
2946 0.34778656338102
2947 1.2412865817813332
2948 0.17913220255828985
2949 -0.7444195629141945
2950 1.1186285920648569
2951 0.030244191808665017
2952 0.6070039264164183
2953 -0.21711050343631869
2954 0.26384588402729325
2955 0.2875602041011349
2956 -0.9471745853450387
2957 -1.0594606049756432
2958 -2.0046151794373452
2959 -0.03530661982321804
2960 1.3727822152892557
2961 -0.4330792844860747
2962 0.4641970112906262
2963 0.15906536768440377
2964 -0.7675048251465456
2965 -0.2944601269731166
2966 -0.6491481385185601
2967 0.608561771712707
2968 -0.18335073333695784
2969 0.3566131429270858
2970 -1.1704532756033303
2971 0.8676821647079129
2972 0.06378689661786009
2973 0.7381095144765777
2974 1.1827486458260557
2975 -0.6391457684482449
2976 0.04754726250713986
2977 -0.10531211194222591
2978 0.7638799978875739
2979 -0.3582617610177069
2980 -0.7351485956818947
2981 0.21939741990643297
2982 0.36105086174114237
2983 0.5959703740265403
2984 1.1880367847481048
2985 -0.4840468850147896
2986 -0.07224023365804107
2987 -0.0029822717341760076
2988 -0.10376710596146708
2989 0.16992115706473823
2990 -1.4384234773245677
2991 -0.2664645896247358
2992 -0.6210552554794685
2993 -1.3815356534401264
2994 -1.4189944724875647
2995 -0.6005764089314253
2996 -0.21682985995735526
2997 2.126155349410396
2998 1.8181810758567944
2999 -1.5434810718816534
3000 0.8785844249758589
3001 1.1938486022190369
3002 0.3053727957366163
3003 0.6177429858273105
3004 0.42566648922659533
3005 -1.351740551125603
3006 0.6321379772765958
3007 0.07172299792053169
3008 0.09202221465996477
3009 1.4046527061871987
3010 -0.8809309312824363
3011 0.7861984125124415
3012 0.18891066166979087
3013 -0.8860057587969441
3014 0.8382476899779648
3015 -1.201204588176917
3016 1.551381203503408
3017 0.9278622251942307
3018 -1.5478812739250962
3019 -0.44770472600426575
3020 -0.536588398193256
3021 2.087794751055258
3022 0.9373460422859332
3023 1.3192501215691672
3024 1.2560725734953042
3025 0.7336671629480306
3026 1.4318902202922463
3027 -0.8478611782382152
3028 0.005404822347534533
3029 -0.044775260905302844
3030 -0.23479977528262413
3031 0.701797902921702
3032 0.516037310307348
3033 -0.82860480984072
3034 -0.3681869880846471
3035 0.4097351685313767
3036 -0.68101915586333
3037 -0.5557158294646569
3038 2.091022574523937
3039 -0.6621009333039067
3040 1.8894653220657462
3041 -1.2087959968346202
3042 -0.7107261580367067
3043 0.6912459390808511
3044 0.043295640717428384
3045 -0.2516673389034502
3046 -0.7119998915648437
3047 0.985989679509444
3048 0.14742524106007443
3049 0.5991209541185929
3050 -0.6202653205220576
3051 0.9491828121613848
3052 0.4628398862353808
3053 -0.3489532430304715
3054 -0.09794310051071986
3055 1.8032619296210461
3056 -0.7437346474807001
3057 -0.7068736234776231
3058 -0.08648200584380879
3059 0.12123989489744362
3060 0.49303025209783735
3061 0.08436408542305907
3062 -0.8555346979901922
3063 -0.9401146197399772
3064 -0.8828614685682079
3065 0.3943581579665719
3066 -0.04828333860572817
3067 0.5956165810593106
3068 0.2491192341174648
3069 0.7856590091774421
3070 0.27132350333844835
3071 -1.3169434492238845
3072 -1.0806979930326126
3073 1.7674994873184167
3074 1.9735198734149153
3075 -0.33528297406107027
3076 -1.6391491296461698
3077 0.12081919884708556
3078 2.307698166181112
3079 0.6062561867183542
3080 -0.03771393351704111
3081 1.3654445188415598
3082 -0.2658972392930751
3083 -0.7410765869213294
3084 0.299263570642524
3085 -0.27225572881109006
3086 -0.4188900686640545
3087 -0.6306396169228454
3088 -0.7070265884030451
3089 -1.1336015137919802
3090 1.6281755350364935
3091 0.20343851496856716
3092 1.3074061908689962
3093 -1.4536754839792205
3094 1.652107790257876
3095 -0.11317454517443087
3096 -2.5201905452413964
3097 -0.1339721680538333
3098 -0.2887822607588773
3099 1.0529063606577522
3100 -0.6155392883652981
3101 -1.3319303405896017
3102 -0.7482060854653438
3103 -0.03136270361558023
3104 -0.008050340269619774
3105 0.5436624562777521
3106 -0.8054530889588472
3107 0.31099428962244546
3108 -1.317475335073294
3109 2.214683627411369
3110 1.1406086616507116
3111 0.07419307728927793
3112 -0.9373550397423673
3113 0.7811786807740966
3114 0.01715232043404262
3115 1.0304292195518603
3116 -0.7400794988225126
3117 0.8775379949563369
3118 -0.3197384468751004
3119 -0.8502335019827383
3120 1.0648595349237344
3121 0.06866923519699528
3122 -0.48105499643124355
3123 0.14293623761469423
3124 0.01540253420215362
3125 -0.6751713777021208
3126 -1.151239627902069
3127 -0.793445403358243
3128 -0.3300322174388667
3129 -0.37803699618149494
3130 -0.29301401439385094
3131 -0.807856554183611
3132 0.38369912982644566
3133 1.1493435877771025
3134 -0.23578824396504758
3135 2.3033239554175102
3136 2.245472313792965
3137 -0.30819532376323744
3138 1.2045574916897157
3139 -0.4841477988869694
3140 -0.33470498687259775
3141 -0.019086627438061908
3142 -0.6500202635174063
3143 -0.5393419932527003
3144 0.6586257931307629
3145 -0.99399656927043
3146 0.9687863182167296
3147 -0.4147788120309125
3148 0.23291291488292662
3149 -0.8014145574225273
3150 -0.7391890990401467
3151 0.8251795781341407
3152 1.1091466939708092
3153 -0.3027416876835624
3154 1.1325618540888966
3155 0.6459982399119081
3156 2.384269343211027
3157 -0.09713504145263299
3158 2.655998983654181
3159 0.397174566770276
3160 -0.6897080447895072
3161 1.0986548307467867
3162 -0.7423603289742245
3163 -0.1548023584821741
3164 -0.8919816263873932
3165 -1.2659067118448837
3166 -0.058268066232764086
3167 0.34347097951202665
3168 -0.38243222421878853
3169 0.5296125061451109
3170 -1.7158474741352163
3171 -0.9709324610326807
3172 -1.4814359155639294
3173 -0.2138464088116013
3174 -0.09534157385600583
3175 -0.05179974883363281
3176 0.18774577735286013
3177 -1.5267255451948933
3178 -2.4190433985066337
3179 1.1477210496013426
3180 -0.8117509353122849
3181 -0.841916319261206
3182 -0.6795209720091457
3183 1.5200976758585767
3184 -0.27742777901068055
3185 -0.007467608062969834
3186 0.49556093543149765
3187 -1.2728485391315407
3188 1.9175792869911128
3189 1.1429357526676533
3190 1.7145119805771223
3191 1.3146457677748344
3192 0.6084559313035656
3193 0.3305423164058851
3194 0.15375806653110285
3195 -0.1975167918347085
3196 -2.4249872959244816
3197 0.8046627062650522
3198 1.0629967813724694
3199 -1.335341067905859
3200 1.1641540755728137
3201 0.7070375969745293
3202 0.19925966106840115
3203 2.1276553445665938
3204 1.3666840643966653
3205 -0.3653555578720506
3206 -0.48063841502958643
3207 1.8783115980135368
3208 -0.20393796666547587
3209 -1.7881531793943326
3210 -0.1297143522941422
3211 -0.2926569578776931
3212 1.1562584407816658
3213 -1.1004918028140003
3214 -0.37487034435837807
3215 0.7235062069422056
3216 0.37212615680469313
3217 1.6742784159091624
3218 1.1994584797265606
3219 -0.1312779883746474
3220 -0.06859249782198397
3221 -0.9993120609117895
3222 0.0019740479661143756
3223 -0.2327410000672259
3224 -0.5471103848640124
3225 -1.3974998647944938
3226 -0.5986597901660876
3227 0.6789334235070399
3228 -1.1840814981927017
3229 0.775151219961979
3230 0.004009708344558767
3231 -2.0923419624970796
3232 -0.2800026736676226
3233 -0.2919189634771034
3234 0.9883980986582656
3235 0.009186485241266546
3236 0.333846436768859
3237 -0.7069131305736878
3238 -2.7745562774986983
3239 -1.760172159128604
3240 -0.7525559049580306
3241 -0.3782638082941735
3242 0.746750564129612
3243 0.17947363080111192
3244 -1.0428888071295586
3245 -0.46288711442774494
3246 0.40492252088470787
3247 0.1327052536679484
3248 -1.019056030178942
3249 -0.19931592909176907
3250 0.09987230390836065
3251 0.05077686612747275
3252 -1.6111129403882416
3253 -1.1366205091240167
3254 -0.7820802664960805
3255 -1.036930906238539
3256 1.2100993880664848
3257 -2.535309158304729
3258 -0.14307023250663986
3259 1.2585175095005945
3260 0.04122576979427062
3261 0.01939201164973828
3262 -0.1061794081729532
3263 0.049551554818082995
3264 -1.1222275982525602
3265 -0.20858159538487467
3266 0.021518616007662344
3267 1.0260907566276485
3268 -0.48811360448416813
3269 -0.21955428663831478
3270 -2.1120999811502883
3271 0.020042817468248042
3272 0.06265330356853085
3273 1.5636639696374426
3274 0.03135830291949495
3275 -1.717407165559471
3276 -1.0903119938220516
3277 -0.18940381930088557
3278 0.7345751785982045
3279 0.5545492877650405
3280 -1.442412888091488
3281 0.540367564210851
3282 0.02655816467609097
3283 0.11439014294320717
3284 -1.3691395825755133
3285 0.845084015546125
3286 -0.691191868777309
3287 -1.2581770642648358
3288 1.460279758817549
3289 0.5850492176627912
3290 -0.2485508053488039
3291 0.2825640748371889
3292 -0.20841055699410174
3293 -1.2632132384037944
3294 0.22902965861437574
3295 -1.3774400696059885
3296 -1.1664964461624452
3297 0.9436892065588687
3298 1.2254298065859326
3299 0.38821972202276334
3300 -0.4337196618998896
3301 -0.42627281172000786
3302 1.5820034575116653
3303 -1.024633569843997
3304 0.6958358817206574
3305 0.24130060094996708
3306 -0.1814744889298019
3307 0.5454833917874893
3308 0.46936897257838645
3309 -1.2688913458824762
3310 -0.2627118350980033
3311 0.8420730700788808
3312 0.16816945380169837
3313 -2.2798623235432203
3314 0.6402665844893559
3315 -0.8846611332805316
3316 -1.4675487561404914
3317 -0.027947964015784182
3318 -0.5901763345085441
3319 -0.571330804925102
3320 0.5228306108002879
3321 -0.9927174850952905
3322 0.9646135860076068
3323 -0.32822349961282143
3324 0.23468114617923438
3325 -0.1720357121194219
3326 -1.3795098242773651
3327 0.3764462905081658
3328 1.9972718587424056
3329 1.556041874317466
3330 0.9200358605760568
3331 -0.6745907313587769
3332 -1.394750960577672
3333 -1.2478606366264555
3334 0.07910443162906251
3335 0.8218236903010812
3336 1.8253146962656162
3337 -0.6585257389921619
3338 -0.3394370746008006
3339 1.2060992048285193
3340 1.432150846756682
3341 -2.7896514110375583
3342 -1.4210025772858073
3343 -0.07928996936032522
3344 1.2330750687852565
3345 -0.35422614195875274
3346 0.6025729835840276
3347 0.04067861174242849
3348 1.3351240422014525
3349 1.1402092931121888
3350 -0.886031203419091
3351 -1.7136121738762682
3352 -0.4184443675854124
3353 -0.3090451901390564
3354 0.15666135268025067
3355 -0.39817132068500316
3356 -1.4331674901303566
3357 0.28806969731642024
3358 0.49948426774057436
3359 0.14188842274291272
3360 -0.6946810287845809
3361 0.08375873826764163
3362 -0.7511245951620114
3363 -1.7279330969951363
3364 -1.0741408184854724
3365 1.3283737237252105
3366 -0.06410374928391674
3367 -0.14326999494902398
3368 1.085098722124957
3369 0.033009345492979444
3370 -0.3276208027476281
3371 -1.3587669569059793
3372 -0.7573428508469043
3373 0.505076045126044
3374 -1.2640575126397604
3375 0.32695128835410947
3376 -0.8386808734288219
3377 0.5618602704881784
3378 -1.5603940686696183
3379 -0.07163558018420459
3380 -1.2782965435889155
3381 1.3352641730401211
3382 1.8049996557577366
3383 -0.6206566719172607
3384 1.083930702376392
3385 -2.181811767355324
3386 0.18420043692719987
3387 -1.4140457975407856
3388 -1.2982769380747485
3389 0.9607017940784062
3390 -1.2501067799809114
3391 0.40405956018340067
3392 -1.1850570525504294
3393 -0.15250495418968094
3394 -0.06373255103220166
3395 -1.025688728124341
3396 0.6782620562324109
3397 0.9569888218932269
3398 0.4879257762436095
3399 0.9639525162418304
3400 2.427050531077266
3401 0.9023412116758034
3402 -1.3493686517953134
3403 -2.2691909546990323
3404 -0.13722118018082896
3405 -0.13978522658916678
3406 0.612519762222851
3407 -0.2769158784451625
3408 -0.17297932262997898
3409 0.2182143503277944
3410 -1.7395317211637196
3411 1.9298412957204756
3412 0.318258590110714
3413 0.25124902198321664
3414 1.2984916051449515
3415 -2.814647019038708
3416 -0.6334934518022269
3417 -0.2604784035123207
3418 -0.7224025791772019
3419 0.7281121948325828
3420 -0.39875042047119436
3421 1.0089617210647406
3422 1.2581197030904065
3423 0.14388199168314622
3424 -0.04674104191766264
3425 -1.9825403791891
3426 0.6172187234222721
3427 -1.171045319936283
3428 0.06136285297476547
3429 -0.5165086631640555
3430 -0.8742219813761289
3431 -0.19136924393741708
3432 0.32727444560162733
3433 0.17349174323780794
3434 0.9287197100389789
3435 -0.08746723220703632
3436 -0.5125899967705551
3437 -0.6003225722348048
3438 -1.4357475660936783
3439 0.9825652414821684
3440 1.4967966887519581
3441 -0.37037641612690037
3442 0.7132341280657221
3443 1.0393142353016043
3444 0.5013594876517555
3445 -0.7846410060124374
3446 1.7024881884701735
3447 0.3314712588569351
3448 -1.4904013492975534
3449 0.6434738092589467
3450 -1.10697456220008
3451 0.5175698931254972
3452 -1.3159317437618177
3453 -0.2963921253682635
3454 0.5311834708883307
3455 0.8213953642754093
3456 -1.1224450233877956
3457 1.7170769918289683
3458 0.1953396753994186
3459 0.8107919761308794
3460 -0.4804347018257654
3461 1.543432046125138
3462 0.6685288840285973
3463 -0.010702301498997983
3464 -1.1605875218044932
3465 -0.8606247501655305
3466 -0.40485878027041095
3467 1.4127754267864308
3468 -0.5220439255194216
3469 -0.8007740018790719
3470 -1.0119216881494948
3471 -0.1973642273557883
3472 -0.33870110669387
3473 0.40086570736168103
3474 -1.2794105899410158
3475 0.587781711551822
3476 0.9691610700853303
3477 -1.3449248734876798
3478 -1.8197939156254872
3479 -0.9347201351671611
3480 0.5558458815877265
3481 0.34012129292553306
3482 1.25558674705742
3483 -0.0014497752961544531
3484 0.8244642068245615
3485 -0.6046139802358577
3486 1.5067535860260428
3487 0.46091070469778594
3488 0.9637700322689825
3489 -0.9311209129505763
3490 -0.9829266724414228
3491 -0.9460211733130145
3492 -1.1897051631870208
3493 0.6073851681554716
3494 -1.5129746771824986
3495 1.296720997692597
3496 -0.953648524186918
3497 1.0775201811481783
3498 -0.6870721615775427
3499 -2.0874730870563787
3500 -0.070947693944417
3501 2.195670135837677
3502 1.760834378385156
3503 0.666470164757036
3504 -0.4802411549169391
3505 -0.4236153670193944
3506 -1.4734224476901574
3507 -0.4338204413637043
3508 -1.6002014427905233
3509 1.795964658818835
3510 0.2630920579045299
3511 -1.435534765531603
3512 2.3159895770055843
3513 -1.900548832898129
3514 0.5236826033524136
3515 0.012709977087080868
3516 -0.13479589221534047
3517 0.6913237185006472
3518 -0.291169325524525
3519 -1.6428789606839451
3520 1.2375659021410026
3521 0.31247740912829
3522 0.7840434111370662
3523 -0.7251369609103092
3524 -0.8610166357406248
3525 -1.760388530589231
3526 -0.5825351943564941
3527 -1.233329326408392
3528 -0.0337474056924485
3529 0.15046275970101852
3530 0.4598080185566651
3531 0.4240473800349137
3532 1.2074199247722135
3533 -0.19576773628842545
3534 1.0819894906942555
3535 1.2173270474101447
3536 -1.3151481335445538
3537 0.6257190810718165
3538 0.8932945564631447
3539 -0.19937208511438975
3540 0.31918979085732946
3541 -0.24795033497523575
3542 0.5921483186814994
3543 0.027378859795627115
3544 0.813838662841711
3545 0.6265977025682736
3546 0.3214900656972518
3547 -1.4405634511271732
3548 0.5111472388598024
3549 0.5125100307670356
3550 1.503044234969317
3551 0.4052517922612156
3552 1.4884435429400453
3553 -0.07725950463615415
3554 -0.8680007112565872
3555 0.7366464434485144
3556 0.10368693401167892
3557 -0.7339445468015139
3558 -1.856857910996448
3559 -0.2895987571850502
3560 0.05867480955083606
3561 -0.7256765314426645
3562 0.5949649700712443
3563 1.1714877794580056
3564 -0.0025765131001317483
3565 0.2597186430701993
3566 2.881140457982361
3567 1.0787241813805568
3568 -0.56995539508714
3569 1.3211097834646564
3570 -0.1717247837990502
3571 -1.4024978388733862
3572 -0.18857238419104763
3573 1.2465853040494554
3574 1.0344118266636888
3575 -2.0497127300280873
3576 -1.6368037754891538
3577 0.8874740971394923
3578 0.4630747731852859
3579 -0.32950875504106497
3580 0.20773712574688932
3581 0.7987488610343655
3582 0.581483764677233
3583 0.10137597820757417
3584 -1.0951847945484618
3585 0.6351052847197544
3586 0.10687520569774672
3587 0.5787622425697061
3588 0.33140143756432816
3589 0.9324777486796247
3590 -1.1114437524792469
3591 0.4770758784901513
3592 1.8471709743974536
3593 -0.7201960967696436
3594 -0.5610433438297574
3595 1.0258912211911495
3596 0.5916810892351377
3597 -1.302628430194429
3598 -0.2379962299302911
3599 -0.50772207326746
3600 -1.4897014604718013
3601 -0.9106400310828341
3602 -1.7568572204915869
3603 -1.5207633681547061
3604 -1.7843423209965665
3605 -0.18530414932533
3606 0.0872581230679819
3607 -0.3466689385540662
3608 0.1250453926571983
3609 -1.457486522725414
3610 -0.6910760663872457
3611 -0.6244151609920504
3612 0.8036793678686076
3613 -0.6486319021574026
3614 0.7048458268309713
3615 1.1539371604520692
3616 -1.7874066045491177
3617 -0.6574039676957606
3618 0.5217038213826084
3619 1.2451836401723788
3620 0.5656594052614539
3621 -1.0388887517598648
3622 1.4933717732260028
3623 -0.5232189970835309
3624 -1.1646363738921313
3625 -0.5402875769748152
3626 -0.4561943523501876
3627 -0.3527423197340744
3628 -1.003795252255224
3629 0.5206339198452196
3630 0.4294931527755049
3631 1.4547188078213515
3632 -0.5366170416034706
3633 -0.6654465282713542
3634 1.5737154041037729
3635 0.4096561470831001
3636 -1.4682219840210404
3637 0.02668199725156336
3638 1.3836391795326
3639 -0.329947581275645
3640 -0.526087887949622
3641 2.4877491416374697
3642 0.5484405337368511
3643 -0.029172281105472046
3644 0.2089693133593403
3645 0.05438615406737375
3646 -1.625904676195174
3647 1.8734458175701032
3648 -1.2424746005120941
3649 0.7095079705490298
3650 -1.538610333533289
3651 1.3995504188256749
3652 0.546342541455411
3653 1.3860788116396163
3654 0.9276982534237169
3655 0.7677272161187005
3656 -0.4103420893859777
3657 1.225988787422707
3658 0.676889637233247
3659 1.8488393149522897
3660 -0.42154631861489006
3661 0.9161706276953331
3662 -0.03322160203009848
3663 1.8367528389351229
3664 1.2715937894524478
3665 1.2477729334700276
3666 -1.009947217160572
3667 -0.4703900682058719
3668 -0.4571401627117666
3669 0.8810401629261941
3670 -0.37437172307159117
3671 -0.9490760539937301
3672 0.4340198384422644
3673 0.08356435358533927
3674 -0.6130166534263572
3675 0.9322567701916595
3676 -0.7677650291988166
3677 0.26408647357675075
3678 0.2050807402499547
3679 -0.1298048877584135
3680 0.09470493779019748
3681 -0.6981557211640372
3682 0.5049228168119501
3683 0.38435354380810116
3684 0.9337312824628565
3685 0.1478094052820799
3686 -0.022682525695743902
3687 0.9973692411522134
3688 -1.3341339027258612
3689 0.20385758646264554
3690 -1.8657218111931555
3691 1.0489611739323832
3692 0.0786257458915982
3693 0.06396030776540894
3694 0.5448831696762562
3695 -1.5876763636202895
3696 -0.5515308494067055
3697 0.23117678673588812
3698 -0.522125890987023
3699 0.6278042833915686
3700 1.58933107276825
3701 -0.6131913511337328
3702 -1.1524244049070054
3703 1.9379658732827576
3704 0.59073062036575
3705 -1.0163828373688768
3706 0.4822364988822324
3707 0.15676391321006325
3708 -0.26892878450401436
3709 -1.124138939751114
3710 0.9389793600219026
3711 -0.5625377047203691
3712 0.9127035697055546
3713 0.5205643822188726
3714 -1.0239049629045018
3715 0.4375081587639791
3716 -0.3630087785223475
3717 -0.5565145760706568
3718 -0.46659443921557936
3719 0.02802365686410956
3720 -0.8969478154635242
3721 -0.45046985900940595
3722 0.1912697448523298
3723 0.7407588601766902
3724 0.19014553220870478
3725 -0.32995990329225067
3726 0.728327050248998
3727 0.6420507326755338
3728 1.0811359221230665
3729 -0.19728335146241166
3730 -1.6823237800303628
3731 -0.522757411162554
3732 -1.3776030498567347
3733 -0.06435389388852081
3734 -0.46892929309132186
3735 -0.1710846359955958
3736 1.057522033856794
3737 0.2847937855574267
3738 1.3419282598377742
3739 0.5734595449872314
3740 0.05322182897114786
3741 0.05528527396080183
3742 0.5953459291905332
3743 -1.8522396965791474
3744 -2.4513857023103927
3745 -0.794410465557233
3746 0.5631553776894118
3747 0.511228087433203
3748 -1.808641657101182
3749 -2.1180123992201425
3750 1.3915235997240494
3751 -1.4898404991200522
3752 0.06912751003065284
3753 -0.8219397725680825
3754 -0.7145795535462309
3755 -1.9456060773117103
3756 0.45476896127497995
3757 0.49874574285091244
3758 -0.20791893542377574
3759 1.1071915675435249
3760 1.8848025132248174
3761 -0.5288516085455373
3762 -1.2011364500458817
3763 -1.9559159482221917
3764 -0.6101417945110134
3765 1.0176292534708442
3766 0.645077657438761
3767 1.3212309741809753
3768 -0.8422327951727872
3769 0.030573207134761145
3770 0.042867832737324495
3771 0.8792191017394941
3772 -0.3505361080525034
3773 0.5284892076771086
3774 0.9138084920106183
3775 -2.1293402796413607
3776 -1.5233119120416312
3777 0.7056980179270714
3778 0.13714332367288365
3779 -2.6520630675810106
3780 0.7534534692815748
3781 1.3322049416038115
3782 1.3487714207866808
3783 -0.07671268315499034
3784 0.3180772362415552
3785 0.23652469729204825
3786 1.9241829732017244
3787 -0.5570320428189545
3788 -0.10428411164008189
3789 1.7529645386644936
3790 -2.1812574452077795
3791 -0.6721617046051452
3792 -0.1775750728109043
3793 -0.11145160226152519
3794 1.4301170801260683
3795 -0.2243298957709573
3796 -0.9645659823123759
3797 0.6500153307764012
3798 -0.5771341957310637
3799 0.22699331788167595
3800 0.10468482223074266
3801 1.3098693061539082
3802 1.1592484645076608
3803 0.04034561863815285
3804 0.044938618956315735
3805 1.2013198645176901
3806 -0.6899243650526319
3807 1.1950761667332042
3808 0.793836093639229
3809 -0.12406222054417293
3810 -1.6519401891210261
3811 -1.6508717102067305
3812 0.24170717358051022
3813 1.3156992125296216
3814 -0.40124564816190617
3815 0.392409801703964
3816 -2.7756989391199065
3817 -1.5709911083172514
3818 -1.2415857229217255
3819 -1.855433095803629
3820 1.5589690820194104
3821 -1.124701874845882
3822 0.8194417379563939
3823 -0.4411026342804716
3824 -0.2913455855396315
3825 0.14041367591415857
3826 -0.581852827795871
3827 1.3123522693389482
3828 0.5772910719884893
3829 -1.7398187307204978
3830 1.6292225874107746
3831 -0.16458503336817312
3832 0.19917368621660053
3833 0.2910926136915744
3834 1.395183484331253
3835 -1.1031618411570623
3836 -1.512877946394856
3837 0.09006067667654463
3838 0.2977076880285085
3839 0.27762817210990015
3840 0.5873648539349864
3841 0.5027794545316208
3842 -0.19083943817239105
3843 0.12131449790375337
3844 0.012661941761504095
3845 -0.31823974509446123
3846 0.15470872616151501
3847 -1.5905587432326678
3848 -1.4258279146661308
3849 -1.5340001676592387
3850 -1.9560816241685803
3851 1.0969016224519321
3852 2.351811746441826
3853 -0.5305353645444634
3854 -0.6450331103872496
3855 -0.48508025107206587
3856 -0.24923408628238847
3857 0.26180943182597527
3858 1.4821564984705096
3859 -0.7169426131551309
3860 -0.7429408794931492
3861 0.9226984075038901
3862 1.4374529475802251
3863 2.0046866636928584
3864 0.8279867050574945
3865 1.7352762673211433
3866 -1.294788553492607
3867 -0.7965137505008514
3868 0.27810095213026065
3869 0.4660664118271959
3870 0.7253413636898065
3871 1.265386761386249
3872 0.2505085411429711
3873 0.07018466916719336
3874 -0.7724369810075383
3875 0.007188954231059629
3876 -0.6744662569764887
3877 1.0544479340002146
3878 0.30501680319744795
3879 -0.3451164620965795
3880 0.5211094384818059
3881 -0.3065590740340663
3882 0.9321467102722593
3883 -1.155605747471194
3884 1.2531985609368272
3885 -0.7373168147947706
3886 -0.1807963888121493
3887 0.30708051911365236
3888 -0.052376840697344586
3889 0.425480295786428
3890 -0.17570856448376745
3891 -0.4393512359903319
3892 0.047606815837476606
3893 -0.977466397617922
3894 0.16017407833023545
3895 -0.20005983612515257
3896 -1.3865174934374742
3897 -0.770676113754398
3898 0.7811334968687983
3899 -0.3168876807995181
3900 0.7870986254692093
3901 -1.1046286837449373
3902 0.8002652409644297
3903 0.5538652008634338
3904 1.2939073568048973
3905 -0.6922888442023533
3906 -1.2333261724205946
3907 -0.0658739051213449
3908 0.734000947361507
3909 0.8815539468774246
3910 -0.07450317119002098
3911 0.5470226630898597
3912 0.43731717514825724
3913 -1.8116519609089012
3914 0.1449907678446624
3915 0.13102489720664637
3916 -1.4259741416169458
3917 1.5735648713392523
3918 -0.3443323853577938
3919 -1.3757444699614145
3920 0.6373792094073966
3921 -0.015985354401546945
3922 -0.4983290548194848
3923 -0.026552049485954167
3924 -1.0896080391562106
3925 0.9681464879012392
3926 -0.19746308068463853
3927 -1.978759303846614
3928 0.17465494066329665
3929 -2.2705372018997267
3930 -0.1955160372543641
3931 -1.6560625188828357
3932 1.1197668945986636
3933 -0.02034580030220598
3934 -0.7590089417729151
3935 0.8071611157066327
3936 -0.6164957051251065
3937 -0.9662981086884636
3938 -1.282398734667705
3939 -0.2438233761155536
3940 0.3983720071250469
3941 1.2889343263818385
3942 -1.1240710401243352
3943 -1.1320070453810251
3944 2.604141916029393
3945 -0.6764122337102165
3946 -1.1576422570696197
3947 0.21495185669509453
3948 0.09912048433807438
3949 0.10090194626622415
3950 0.8798791952256804
3951 -0.17521774679369653
3952 -0.5711236744362782
3953 0.6228564243338994
3954 0.5311784304411815
3955 -0.10187005700119203
3956 0.9212018883368587
3957 0.4644549798487997
3958 -0.4880026601747822
3959 0.7229833980244139
3960 0.9600512126678054
3961 -1.506026222605138
3962 0.7049172106700344
3963 0.6651716009512418
3964 -1.6107952362087932
3965 0.8953471477590267
3966 0.04570442134575067
3967 -0.6821472771560066
3968 -0.635238831879585
3969 0.10052927944043348
3970 -1.5379001146355913
3971 1.4366218866401899
3972 -1.007885904513576
3973 0.23613131683379265
3974 0.6664692411990611
3975 -1.1390481576210207
3976 -0.743934019630708
3977 -0.6028702714016752
3978 -0.674819784087675
3979 0.8993352001123331
3980 0.6705769958510457
3981 1.5320010024100035
3982 -0.28071698629491154
3983 0.5466284811214274
3984 -1.0308803742290722
3985 1.0464383926324983
3986 3.0216424170050606
3987 -0.7558659128379626
3988 0.07513809083679494
3989 -0.8143429300109439
3990 -1.574575991957401
3991 0.804439242847564
3992 -1.4037518003704612
3993 0.6419315511283995
3994 0.5385224467752697
3995 0.3747730279961464
3996 -0.33527062487911014
3997 2.642005768113923
3998 -0.42869102761813754
3999 1.019153782277015
4000 -0.7700907312913794
4001 -0.028205895361855877
4002 1.1045178553417974
4003 -0.44757593707967325
4004 -1.4601014983486271
4005 0.041643183160693
4006 0.18276608796602836
4007 -0.309552643441078
4008 -1.0064573784251303
4009 1.7977659378443511
4010 -0.19915755078713349
4011 -1.502616835223893
4012 -1.0463009020800702
4013 -1.8477864509091086
4014 -0.34951091731743417
4015 -1.597372814412405
4016 0.22756583582863513
4017 0.629503428579218
4018 -1.1021774063287553
4019 -0.1626155681173366
4020 0.30104644904904587
4021 -0.3938551262981232
4022 -0.6617628357143382
4023 1.0235297692937009
4024 0.17788013736066344
4025 0.510437119996969
4026 -1.3367122202365302
4027 -0.010431851962334487
4028 -1.9860665954619472
4029 -1.0995942080713041
4030 1.2701573596307039
4031 0.035948067102071
4032 -0.07981622322734443
4033 -1.0012595946130765
4034 1.5074340116401435
4035 0.6369498162559655
4036 0.2988778216225027
4037 0.023727817412551037
4038 0.7655475994179579
4039 -0.6778654949062307
4040 0.05384934997889814
4041 -0.05501283416784191
4042 -0.3378142271939842
4043 1.68517610547413
4044 2.2293241771521397
4045 1.2027578799377052
4046 0.9297838908145486
4047 0.1372121532684871
4048 1.4113966721191216
4049 -0.5791673067226968
4050 -0.3577673865424761
4051 -0.6396199939499742
4052 0.2292544630306995
4053 -2.353879853536269
4054 -2.201553258785175
4055 -0.4984392412273965
4056 0.6696790482969599
4057 -0.9388190831372912
4058 -0.19133782734458762
4059 1.1725014017737625
4060 1.9283972929735718
4061 0.1882116163478166
4062 -0.6234996301771295
4063 -0.6915242299802927
4064 -0.2080807576293513
4065 -1.090810709687039
4066 0.0989164278128253
4067 -0.1559898927223114
4068 2.1052185511847843
4069 1.4627223364609605
4070 -1.5481173150211014
4071 0.7550961715509031
4072 -0.15606189714116342
4073 0.06652764307590274
4074 1.2460820361547396
4075 0.31706501377588475
4076 0.6189322826725338
4077 0.5849251520424851
4078 0.015811486188753665
4079 -0.1648596784398934
4080 -0.8697474792121045
4081 -0.1144755695020663
4082 -2.3482998462367495
4083 0.2613969994743885
4084 -0.2234553969276773
4085 -0.15340410490873366
4086 0.7730280682278674
4087 0.25119767717303193
4088 -1.7396660771307624
4089 0.669120137229258
4090 1.2910487290750798
4091 0.0003447680093071507
4092 0.4108111427078423
4093 -2.139252656726531
4094 -0.2517397716045069
4095 0.40148466873372074
4096 -0.38491118751884634
4097 1.5961408236687387
4098 -0.2909246619784903
4099 0.30997446816051233
4100 0.7369543836300391
4101 -0.31793096577249585
4102 -0.7633921988719966
4103 0.7645283425790851
4104 -0.47358436452762187
4105 -0.9309502704205457
4106 -1.3382952919133646
4107 0.7771268807854963
4108 -0.6137642740424255
4109 0.7939092325315199
4110 1.027551593894824
4111 -1.6620033583460974
4112 -0.6489863127238302
4113 -1.1849414110663683
4114 -0.6964789802458795
4115 -0.16964575001240015
4116 -0.32325776291745273
4117 1.5364883849029305
4118 -0.12364766764467967
4119 -0.5434828189033506
4120 -1.2938391762213324
4121 -1.030340209277469
4122 -1.3357807071611039
4123 0.15877692121817288
4124 -0.12426276642219572
4125 0.5208302186828978
4126 0.5228907110942813
4127 -1.533206832712129
4128 0.4311594211250331
4129 -0.6408458880314467
4130 -0.04893796332388742
4131 0.18269690002715347
4132 -1.0348119208581927
4133 0.48142897888774544
4134 -0.6410141507141268
4135 -0.7047703688886694
4136 0.18091711992047974
4137 -1.1350021050918266
4138 0.3750846315622034
4139 0.3856526374598582
4140 1.015489251619844
4141 1.5455755533859352
4142 -0.06512776358239261
4143 0.6869644692516548
4144 0.26692810101616915
4145 -1.7366692317778272
4146 -1.202612074655254
4147 1.045396374258627
4148 2.083667438107358
4149 -0.39471191358898716
4150 -0.34725765137739045
4151 -1.3181248885267463
4152 -0.3263253751637529
4153 1.545698219702385
4154 -0.5650161718722839
4155 -0.4802995163594337
4156 0.21554637974167648
4157 -0.9509854130786177
4158 -1.6284219096777444
4159 1.2395432880674686
4160 -1.3323785642027237
4161 0.7609793081471953
4162 -1.2318809085903548
4163 -0.7707608280384581
4164 0.9186987451770873
4165 -0.14131099896232338
4166 -0.816649281163807
4167 0.564815904142198
4168 1.5604411094457982
4169 0.08337902706643247
4170 -1.6746947997981043
4171 0.9171704134430004
4172 1.158947406918193
4173 -0.2747146869580868
4174 0.4062827336200283
4175 0.029797738742464545
4176 0.7321450687864377
4177 -0.17455294499781157
4178 -0.3542353177520916
4179 1.6811228595417183
4180 0.42551599206959617
4181 -1.2522400884829021
4182 -0.8298186338947764
4183 0.5947498557270252
4184 0.39648641146883923
4185 -0.5111126482838817
4186 1.1405343727681667
4187 -0.06244476785533545
4188 0.40695111381588506
4189 0.21687504488476078
4190 -0.952824931413324
4191 1.7512471122233917
4192 -0.07039247160302423
4193 -1.8729285283745523
4194 -0.6110050454608675
4195 1.1949061680100794
4196 0.1850189954512406
4197 0.6496266472735989
4198 -1.0075239579736424
4199 0.7241368930377922
4200 -0.7440918571813155
4201 1.4945359276160155
4202 -0.08758570910656013
4203 -0.385732669836716
4204 0.571541510689419
4205 -0.9104097204983066
4206 0.5479835341491675
4207 -0.774294315903661
4208 0.07074155446303
4209 0.652092647221489
4210 0.09947636319799796
4211 1.287025442098847
4212 -0.09711895427369917
4213 0.12206806382198775
4214 0.007653999476922058
4215 0.7742417257944326
4216 -0.6677078008635075
4217 0.04910479081207398
4218 -0.2654631869035983
4219 0.28459804173164815
4220 0.26760857732680027
4221 -0.35588540183865913
4222 1.7852609437812157
4223 0.9015749320471023
4224 -0.38690174420376905
4225 -1.4209173994992987
4226 1.6431061022320403
4227 -0.601021820420258
4228 -0.3340442861707907
4229 1.3030014097282159
4230 2.012845418375057
4231 -0.2706704964220137
4232 0.3827734568336281
4233 0.08463952445564758
4234 0.18709279501589543
4235 1.2069812004960707
4236 0.8292406226551048
4237 -0.30270364852926424
4238 0.9359654318133787
4239 -0.6632492566785353
4240 -0.2742431678586674
4241 1.2460949934586518
4242 0.14305417106784452
4243 -0.4962980620234409
4244 0.77049047101217
4245 -0.6655255259274556
4246 0.13565639092425152
4247 0.7948112050579095
4248 0.9139603042329333
4249 0.009327354165272148
4250 -0.043337796662154496
4251 -1.422389109420895
4252 1.044088841105824
4253 -0.5280984754559914
4254 -1.1763606607962553
4255 0.7564768052470082
4256 -1.3936502712963752
4257 0.2787541727130139
4258 -1.880397259787794
4259 0.8809366707634322
4260 0.8257624475219487
4261 1.2222645408869952
4262 -0.8790770874205558
4263 -1.433055639685224
4264 -0.1910973352551063
4265 -0.2046314245017654
4266 0.5667255448665356
4267 0.34709958519989453
4268 0.08596986192496735
4269 -0.4929929280810407
4270 -1.8012623476512184
4271 0.13242446431751065
4272 0.12648301803334105
4273 0.6863327441790421
4274 0.5083857836277826
4275 -0.03443467321161607
4276 -0.1578818449522672
4277 -0.8489472808510677
4278 -0.7171209622281727
4279 0.5693855826728692
4280 -0.40314934088855203
4281 0.013866219748188116
4282 0.2711759544764409
4283 -0.5856601116366204
4284 -0.1844221049307043
4285 -0.5379011426147887
4286 -0.1417412674110042
4287 -0.5053300939984765
4288 0.065703136683397
4289 0.9667170329036371
4290 -0.056346310632559446
4291 -2.5835749111568758
4292 0.9981297313768168
4293 -1.3662468250870583
4294 -0.23892310405704384
4295 -1.0335304510786374
4296 0.8758087681409604
4297 -0.3797624419162271
4298 -0.2885202248548758
4299 0.5575275407101207
4300 0.44693131943009645
4301 -0.3384503181181652
4302 0.5917220713038988
4303 -1.9242587725820015
4304 -0.7453247055565434
4305 1.386286740396816
4306 0.016152021391741392
4307 -1.3991343098908582
4308 1.5657773707366864
4309 1.2789746823764592
4310 -0.5333579187359456
4311 1.184274806961843
4312 1.027525390175722
4313 -0.5503806043088608
4314 0.9903010985578129
4315 -0.3324483166143728
4316 -0.39115571204580407
4317 1.326074245601694
4318 0.2248406512710537
4319 0.4632298649524107
4320 -1.7460053137807998
4321 -0.3293343698704611
4322 1.243419784244962
4323 -0.008275759654759185
4324 -2.081137497899501
4325 -0.7572874260240572
4326 -0.10201162097239916
4327 0.23658554755696629
4328 0.2367464392219497
4329 -0.34637348384604955
4330 -0.013586182781682669
4331 0.16597104487302872
4332 -0.04914420584019637
4333 0.09828603823315034
4334 1.8854507798714197
4335 0.10777917327512224
4336 -0.6738404997048837
4337 -0.7680407766588823
4338 -1.309655523349515
4339 -1.2829986285123134
4340 0.5181524963791172
4341 0.08067966347604635
4342 0.30851361526874355
4343 -0.17469757482608553
4344 -1.0607384824165724
4345 -0.2938861509099088
4346 -1.7240002342625733
4347 1.1811808238556356
4348 -0.7088014861653911
4349 0.4470194201506047
4350 1.094315282559071
4351 -1.2246097591670146
4352 -1.4838889291786297
4353 1.180791465448753
4354 -0.684798180995933
4355 0.94079313289729
4356 -1.1483550333549066
4357 0.7751708272384383
4358 0.07132549724409327
4359 -0.1590265690942234
4360 0.14913922240929028
4361 -0.24619649888403208
4362 -0.27502510427944454
4363 -0.008793053415794238
4364 0.7399089067800789
4365 -0.28657661509950666
4366 -0.13984443188579632
4367 0.08791623323908067
4368 0.2681852802911909
4369 -0.9827782202364358
4370 -0.3359017702888381
4371 -0.208718933886847
4372 -0.3455715743209142
4373 0.11994873229542556
4374 -1.5489361364765941
4375 0.10958501772147075
4376 -2.0670301278582888
4377 0.3494580712911097
4378 0.4885383090528309
4379 -0.16566687987739312
4380 -1.0233557977389482
4381 0.578888558959327
4382 -0.8015574212890736
4383 2.2112278901050546
4384 0.2510090183678587
4385 -2.1280049155528253
4386 -0.010874002723935969
4387 -0.6223649735533436
4388 1.90789471793292
4389 -1.5933980265900352
4390 0.8333587463167897
4391 0.4141118135921097
4392 0.04714753213226683
4393 -0.13728567350506418
4394 1.2822788742773112
4395 0.6808594053122075
4396 -0.9275678261457075
4397 -0.5729600819905
4398 1.4422724219140568
4399 1.7453486226516026
4400 -2.2992401401389335
4401 -0.252876595361386
4402 -2.0527455159906083
4403 -0.91021137367988
4404 -0.4900250460297751
4405 0.10004296915101794
4406 -0.8881873260246201
4407 -0.0706814963359083
4408 1.2280142297303442
4409 0.9950123475072179
4410 -1.2388921564623825
4411 0.8372550763271961
4412 0.20024820785688516
4413 0.7107714981934395
4414 1.0990543893215658
4415 0.7082923857439706
4416 -0.2710532694429774
4417 -1.1746173424249988
4418 -1.0966594345927347
4419 -0.6441853577446456
4420 -0.008307185132163686
4421 0.34554826263174293
4422 0.6467089421430207
4423 3.010891891777311
4424 0.2921821514493229
4425 -0.03502875703150027
4426 0.27377788104870165
4427 -1.4259523536990717
4428 -0.35056339720945834
4429 -0.20690435078591105
4430 -0.25982044360783224
4431 -1.4414815519648454
4432 -0.9302307211870591
4433 -0.8865310864303251
4434 0.32056044763792896
4435 0.3771703128992299
4436 0.3353582139067703
4437 -0.22100641817643715
4438 1.317088627097278
4439 -0.14291446769626323
4440 -0.2911598427365065
4441 0.052118439755374224
4442 -0.3272190617186634
4443 0.1280455311849131
4444 1.10815284302243
4445 -1.8074762881656108
4446 -0.10057296790210377
4447 -3.4415542978813547
4448 -0.8201119088964105
4449 -1.9194430712321644
4450 0.20949946470621506
4451 -0.3907235273437125
4452 -0.5117783572370261
4453 0.051594551931257275
4454 -1.3583866324908818
4455 1.2197885700511697
4456 0.08636932875078222
4457 -1.1535917617035607
4458 0.498640858349076
4459 0.8612444620709948
4460 -1.3087081893448849
4461 0.21944447752186302
4462 -2.138725968143911
4463 0.4124364234468568
4464 -0.44007736938526715
4465 -0.4389288613640376
4466 -0.8255124058826518
4467 -0.8189244176333665
4468 -0.862636738627609
4469 -0.4414239976731418
4470 -1.6070570610398462
4471 0.33793040291531856
4472 -1.144021325042781
4473 0.8035586501017156
4474 -0.18938452939695583
4475 0.27784221865621594
4476 -1.9337328401743084
4477 1.1405002578762407
4478 -0.06145013583137703
4479 2.307951480864874
4480 0.9215153234762412
4481 -1.7796913778730095
4482 -0.6722357407305201
4483 -0.7767884859126503
4484 -1.0592411674596414
4485 0.040487610014972156
4486 -0.13544494462702295
4487 0.41115430429036587
4488 0.427785203144673
4489 -0.3237686595036989
4490 -1.5474078945286716
4491 0.33630339129749687
4492 -0.8784098743045324
4493 0.5145957560751951
4494 1.1090702144730993
4495 -0.34979347581675324
4496 -0.4350275850972345
4497 -0.11766273229218846
4498 1.5969845322297511
4499 -0.6762675827444444
4500 -0.934615203488782
4501 0.013189846619497627
4502 0.35130468642669854
4503 -2.0888593010156713
4504 0.9669343125704173
4505 1.123237903107459
4506 -0.5641803091936398
4507 0.17944828052300607
4508 0.47989206864886325
4509 1.8167308064334649
4510 -1.2123649145042212
4511 -0.09727051002141271
4512 0.44933588540502334
4513 -0.004052915440751743
4514 0.6211033883358219
4515 -0.339586752226554
4516 0.22852043699133368
4517 -0.12366545208460412
4518 -1.4941976439834777
4519 1.1144153912808241
4520 -0.8117515329207833
4521 -0.006600656322849777
4522 -0.911449582276415
4523 -0.1970542516833357
4524 -1.5773296199084463
4525 0.6473312231917367
4526 -1.1612811107443375
4527 -0.4269439022565518
4528 -0.19790568036008374
4529 -0.8745733509640718
4530 -0.05356460477056014
4531 -0.42368988512183425
4532 -0.1125250083390585
4533 0.976708322535813
4534 -0.896001261884184
4535 -0.38117790167614
4536 0.8383877728460322
4537 0.9342249064356652
4538 -0.08356276621202124
4539 0.07079440698740205
4540 1.3343692852146958
4541 1.3627557555707643
4542 -0.7192126967348311
4543 -1.3519127592733777
4544 -1.2429608292465237
4545 -0.1875985748986248
4546 -1.1617354089135938
4547 -0.1697555134483924
4548 -0.1243622968998916
4549 0.12517791926700395
4550 -1.9591525701731223
4551 -1.08246974839102
4552 1.038820816372179
4553 -0.6061303638984916
4554 -0.47349963863934746
4555 1.5394930777432776
4556 -0.10413525022499498
4557 0.7623792903226239
4558 -0.25818240631093686
4559 -2.2640068099962254
4560 0.921865261091533
4561 -0.9049952418678532
4562 -0.24756178146780944
4563 -0.2576445173119199
4564 0.5688554152438234
4565 -1.9098600220600488
4566 -0.8060022848762642
4567 1.072785485316539
4568 -0.026055677701311473
4569 1.4216528126872625
4570 0.6218001196292738
4571 -0.14982471247534537
4572 -0.5582969775345794
4573 1.1558827342757692
4574 2.1045570751869063
4575 -1.114393689562794
4576 -0.9858950484868236
4577 0.8774601776740754
4578 2.1317420757567276
4579 -1.9593229538821915
4580 0.3279394842739123
4581 0.11407153800971796
4582 0.39809921541027293
4583 -0.3436276206844289
4584 -0.3277389986209569
4585 -0.32314871485130237
4586 -1.2598525755062289
4587 0.6328221094042765
4588 -1.396197744727086
4589 1.9983498084598557
4590 0.16781044250152802
4591 0.05494395339550617
4592 0.03594542124931304
4593 1.198315819177688
4594 1.8472059871824271
4595 0.9563597077686631
4596 1.735024527937998
4597 -0.6777124987437906
4598 -1.680417412843813
4599 1.3305117460339393
4600 0.28333442049005586
4601 1.0500967012978444
4602 0.1398406854256083
4603 -0.9968280265456639
4604 -1.2965996551657015
4605 -0.17779733887007673
4606 1.896573455782084
4607 1.3442729976823895
4608 1.0913231301340724
4609 2.0203850841527236
4610 -0.3659565263170161
4611 -0.0063779292099260245
4612 -0.12535893515907354
4613 -0.3821276711045155
4614 1.0097217252557729
4615 -2.0642570719752626
4616 0.41122973233862586
4617 -0.17021536901715423
4618 1.007342101355253
4619 -1.2012302063863554
4620 0.5169433657498648
4621 0.0347563250940406
4622 1.445412336846617
4623 1.1140887675500377
4624 -1.1426426337063376
4625 0.004615960302621853
4626 0.5885618145775677
4627 -1.2012176033981599
4628 -1.8307868343795377
4629 0.04631732816495078
4630 -0.2292938909419133
4631 -0.6464889408443857
4632 -0.1638485509950092
4633 -0.2552915237661425
4634 -1.9278394568679982
4635 0.691826350883393
4636 0.48172194728116885
4637 0.6697705097626635
4638 0.5484672953600038
4639 0.9357314492450692
4640 -1.4842195739411967
4641 0.21519876020096523
4642 2.6754858069835454
4643 0.16451813635838633
4644 -0.7900084214488332
4645 0.6645352840631533
4646 -0.6316536806127673
4647 -0.1212228481536597
4648 1.6466921694202434
4649 0.5801003543835453
4650 0.4014515016251594
4651 0.6327510327300404
4652 -0.037917885352793564
4653 0.4239893267299969
4654 -0.058189083443553946
4655 -1.0993369128929247
4656 -0.7460988458178807
4657 -1.2434888683778058
4658 -0.25272789896786463
4659 -1.631218484595444
4660 -1.1811884013051515
4661 0.5454328690338577
4662 0.1387045459791588
4663 -0.13860248317523222
4664 -0.7530022144586118
4665 -0.5533387010991799
4666 0.11049572305570758
4667 -0.02022515561803073
4668 1.3195261243673109
4669 1.0325429239742898
4670 0.07956041697639747
4671 1.1442074808068596
4672 1.1356045828779555
4673 1.290804816153926
4674 -0.5945959912677873
4675 0.3967566879785804
4676 -1.381664220363633
4677 0.6083000482106259
4678 1.4459942310108327
4679 0.4036122279308628
4680 -0.15293184366031815
4681 0.2806864433015451
4682 1.0844403543546872
4683 0.6795872306620775
4684 -0.2440004844931496
4685 1.0500210443834768
4686 -0.4141491057455126
4687 -0.035151782005314144
4688 -0.3757741212997775
4689 1.2274054676591872
4690 0.6565494498931547
4691 1.5644151016921612
4692 0.22136841637725815
4693 0.48125633090903597
4694 0.2355229866514881
4695 0.761957854694334
4696 1.1656522932049898
4697 0.3017942173312101
4698 -0.3002286322334522
4699 0.1358687861531012
4700 2.827525088265572
4701 0.8518947932656686
4702 0.8593562156364222
4703 0.7964791290880504
4704 -0.7333607435420759
4705 0.04677723710926133
4706 -1.0743650211662865
4707 -0.2638940578302981
4708 0.09777636208022095
4709 0.028342454345023277
4710 1.305743536868336
4711 -1.3054943147642777
4712 -1.192961093835477
4713 0.9082780980638593
4714 0.07558319076822811
4715 -0.3244253579460616
4716 0.3663291016073873
4717 -0.5213460890554882
4718 0.5115704600894838
4719 1.366803985869522
4720 -0.3656584530096092
4721 -1.1315753422985881
4722 -0.9333108441429581
4723 1.9952896758687428
4724 2.25320989842466
4725 -0.3562352654566381
4726 -0.5275429553499136
4727 0.9825522672997292
4728 -0.0032950491663891494
4729 -2.181208482551855
4730 -0.0375046925969854
4731 -0.3687179128456637
4732 -0.10505570951453162
4733 0.3383058194948924
4734 0.46797104178396143
4735 0.8755030129132962
4736 0.09324309500214131
4737 0.7946900031828841
4738 -0.0627351739777834
4739 2.005708741283283
4740 -0.10896575115920325
4741 0.2151369884022833
4742 -2.082698325673437
4743 -1.697665943411538
4744 0.0738271845183902
4745 -0.3874289437886409
4746 -0.8582513400455136
4747 0.23315092695351256
4748 -0.5643460062248356
4749 0.2828065725239217
4750 -0.16183687282785733
4751 0.3567878849278273
4752 -0.32201101406796095
4753 -0.3656245494599821
4754 0.9857587486877623
4755 -0.7091189911414182
4756 -0.1451447174403375
4757 0.5848732698953623
4758 0.9633837350277986
4759 -0.14066535136162556
4760 1.5711150257054016
4761 -0.7444908024519588
4762 1.551834620851568
4763 -0.4618384269915077
4764 0.6405299620331172
4765 -1.7242300774519137
4766 -0.7315070690646353
4767 0.8519811206691469
4768 0.7459641758743644
4769 -3.1097723152729206
4770 -0.39774203945965103
4771 0.29814301651155595
4772 1.2782796063924955
4773 0.9024805965912568
4774 -0.9515129268770556
4775 0.6049268501821583
4776 -0.5923459972253741
4777 -0.22984854947160982
4778 1.8593799676075788
4779 0.23916485757642314
4780 -2.1323022556114597
4781 -0.8183344127650178
4782 -1.3246482055374924
4783 -0.8772087720738355
4784 1.4954007337634125
4785 -0.5100765626080467
4786 -0.8695062725822761
4787 -0.9993209465396008
4788 -1.1037539498271531
4789 2.2202941539262184
4790 -1.2425837114772154
4791 -0.016617847874507322
4792 -0.2217152645361393
4793 0.1417459041952802
4794 1.5717281082068422
4795 1.256623429457858
4796 -0.7413409940871909
4797 -0.14342918115212686
4798 -1.3800018640199967
4799 0.0825981905375412
4800 1.5748775008726459
4801 0.10726920782199678
4802 -0.6876007126807028
4803 -0.0661944634454627
4804 -1.5004068201999292
4805 -0.9489736906197169
4806 0.3154581427668352
4807 1.1519827999977026
4808 0.8854140536245411
4809 -0.3273069316993156
4810 -0.41088896646181067
4811 1.3628866078668898
4812 -0.18315904569683478
4813 1.587204327128942
4814 0.6305186586598175
4815 0.8920369219944853
4816 0.7305817907465232
4817 1.7293757313680311
4818 2.346195267361597
4819 -0.8635504176806483
4820 1.2360313306904906
4821 0.01625454692879126
4822 -0.15508841242943475
4823 -1.584975901407577
4824 -0.6808109111552966
4825 -1.931177690032966
4826 -0.8966136712838366
4827 -0.61174389935351
4828 -1.0313143184455171
4829 -0.8562376472575614
4830 0.14711534373933033
4831 -0.9866979664826053
4832 0.3327763878306401
4833 -0.534029870297982
4834 0.5463498651503818
4835 -0.4423251233961326
4836 -1.8057189308475958
4837 -1.42905352795367
4838 2.1004725712350525
4839 0.12574336863385308
4840 1.4640177695093215
4841 0.143961881283978
4842 0.3252052910071897
4843 -0.40666279187014265
4844 0.5182825342382257
4845 -0.6496430811881054
4846 0.9644752001301958
4847 0.8192475048312813
4848 0.74630192689509
4849 0.8340337457250151
4850 0.634910929722004
4851 -0.029832919862210018
4852 1.3790695005498512
4853 1.2115180859497015
4854 -0.1983124492158286
4855 1.7464114586544452
4856 1.653495337168298
4857 -1.266894326498232
4858 0.2691848591671484
4859 -0.8092321797858131
4860 -0.35789965146856795
4861 -0.2763626614989367
4862 0.7812459925400954
4863 0.3065979558260265
4864 -0.15394079244020473
4865 0.7333008628265559
4866 -1.1557165382476287
4867 0.517539343364062
4868 -1.7036920595328675
4869 0.141641757074266
4870 0.3649529486709109
4871 0.23068829650235087
4872 -1.7713815095837298
4873 -0.11742072624233177
4874 0.20764472941452278
4875 1.2794829615725334
4876 1.0317766235194872
4877 0.4632372588192488
4878 -0.8909941622786418
4879 -0.4381142608724338
4880 -2.8502054353855257
4881 -0.3392509451608975
4882 0.0972089135284768
4883 0.3057832351657568
4884 0.8919887985051012
4885 -0.9563323633726607
4886 2.6955204129659247
4887 0.32995470013513195
4888 0.17169523054727828
4889 -0.021081854375438636
4890 0.7534859384476589
4891 -0.7124339795612938
4892 -0.055677658493190244
4893 0.25280823804902575
4894 1.3758729882789766
4895 0.42290080669850283
4896 -0.6667730881021867
4897 1.990612813677669
4898 2.456364586703174
4899 -1.3998386095271695
4900 1.4782621975806873
4901 0.6127788181724009
4902 -0.4090154656240048
4903 -0.27982639001691867
4904 -0.0099088417838738
4905 -0.7358264698308885
4906 1.119676949389626
4907 -1.4684793172920512
4908 -1.0576018142157775
4909 0.5171657989753364
4910 -0.009202043995137226
4911 -0.8848625045825372
4912 1.4904687068705713
4913 -0.1697661694329375
4914 -0.9320839497164698
4915 -1.2644194326983649
4916 -0.6576429685661461
4917 0.20623662861693737
4918 -0.43495569791006744
4919 -1.932066838974221
4920 -0.44505252172554466
4921 -0.3583232759736009
4922 -1.9254672246899855
4923 -0.8724359676147347
4924 1.589760249554125
4925 0.36405882936924505
4926 -0.12852453245000436
4927 0.4169474317234193
4928 0.2414853943652896
4929 -0.20073880062567762
4930 -0.8877191587468489
4931 0.17919294909592276
4932 1.1887749476342562
4933 0.651759410281035
4934 -1.6641658523742826
4935 -0.7467992967533651
4936 -0.7723982685534709
4937 -0.34927041373788464
4938 -1.2458125867665202
4939 -0.9768364026828801
4940 0.5883793107186307
4941 -0.012477670009218924
4942 0.9464758567123625
4943 -0.9988802440571303
4944 0.4936882611921993
4945 -0.806603225287537
4946 0.3883402426538945
4947 -0.6866976453602073
4948 -0.8181547856005589
4949 -0.5338553429429287
4950 -1.3854122700564608
4951 -0.21051281596345173
4952 -0.5307320339687237
4953 -2.2798836269682523
4954 -1.1520443039046282
4955 0.5881173756210868
4956 2.0041313211407927
4957 1.2564102243602258
4958 2.1832427247636126
4959 -0.053370440752820186
4960 -1.719852810695205
4961 -0.6099869189874894
4962 -1.2035170056409816
4963 1.6893010365732157
4964 -0.2288261901142873
4965 1.3198300481848249
4966 0.635864034185416
4967 -0.5046171942524178
4968 0.7549413168844515
4969 -0.8764755589900212
4970 -0.4963034987712419
4971 1.2965904907644519
4972 -0.15119617941462768
4973 -0.46323833399079806
4974 -0.49836005822162815
4975 -0.694859279708552
4976 -0.4743052385835143
4977 -0.45654745201110736
4978 -0.48009121392759185
4979 1.1549514396547416
4980 1.08474296976688
4981 0.19147458495226605
4982 -0.32090095835308136
4983 1.7674658750317311
4984 -1.5946016390165159
4985 -0.5760514444854296
4986 -0.932069875023682
4987 0.1511166056229354
4988 -0.41148478655126736
4989 0.42550618082234226
4990 -0.4616212799166992
4991 -0.36077543467546824
4992 -0.2901198537172946
4993 -0.300670181341268
4994 0.6109911141609956
4995 -1.0711691976684914
4996 0.5891771574977166
4997 0.3130040288536108
4998 -2.5513555614463166
4999 -1.106557084452566
5000 -0.6900095459064572
5001 0.4107570512660262
5002 0.1244172439037572
5003 0.9770885040092293
5004 -0.23969063696119533
5005 0.06424672009693062
5006 -1.7620087224405716
5007 -0.8607799406973065
5008 -1.820345347433715
5009 1.661581945206168
5010 -0.055008346056563795
5011 -0.36749407551853064
5012 0.02577492148663036
5013 1.0791631438622178
5014 -0.9901467311588696
5015 -1.3225381731706771
5016 1.562096684918173
5017 2.3562814773640532
5018 -0.37569078618221513
5019 0.44368922755126017
5020 -0.7276955241185129
5021 0.7082340053186399
5022 0.3324836152505837
5023 -0.2702126100816498
5024 -0.31724157251189994
5025 1.5204524977050988
5026 -0.529616624966135
5027 0.42948887695341154
5028 -0.9627431386152161
5029 0.5056631158602738
5030 0.41974545290552717
5031 0.5614658710373748
5032 0.6525475411694415
5033 1.1128292149261865
5034 -0.7771901270337565
5035 0.23181901143151573
5036 -1.2623171014610597
5037 -0.5840919395073234
5038 -0.5738073032875789
5039 -1.5276523230288972
5040 -0.8549237644693024
5041 0.24396681464274403
5042 0.7707964473728983
5043 -0.28886824221022955
5044 0.333734480969121
5045 -0.664563299643994
5046 -0.0778835153128317
5047 -1.3125601570588765
5048 -0.06671243697443277
5049 0.5574223884953711
5050 -0.4378039257797523
5051 -0.8278589914862937
5052 -0.18502920251434737
5053 0.8664209379769165
5054 -0.4653173558423566
5055 1.2351198672746724
5056 -1.6771863999005858
5057 0.7153371980971883
5058 0.6280670793057901
5059 0.6278869192644522
5060 -1.9118661033080386
5061 -0.5578349856148482
5062 0.03989257456969964
5063 -1.061334968788941
5064 -1.072285440465355
5065 1.2003751303009609
5066 0.8712195429897696
5067 -0.24273241762850659
5068 -1.6930781978906544
5069 -2.4324108141610794
5070 1.129053390952387
5071 2.475327389761387
5072 -0.29463525211573055
5073 0.3963807086366613
5074 -0.21670534742264613
5075 -0.39485732392368056
5076 -1.7217344233502554
5077 0.38110678582851953
5078 0.26361482190775604
5079 1.1946261787277526
5080 0.11568952593918556
5081 -0.16318878240227383
5082 -0.7021776784544677
5083 -0.466567021937305
5084 -0.48207597483119646
5085 -1.122082417895709
5086 1.1665892716569788
5087 -1.4609617269290058
5088 -1.3032403535661998
5089 -1.4585502817030123
5090 0.7010986512485512
5091 0.30541401943254315
5092 0.8546329253094768
5093 0.6746431837051056
5094 -1.531318372819688
5095 0.9266417519741567
5096 1.0033431150880425
5097 -0.19773159290012776
5098 -1.4983423393404063
5099 -0.724217766766526
5100 2.1178968516393324
5101 -1.5606893290453259
5102 0.6684122170707948
5103 -0.9303377158924372
5104 -0.4184451038060462
5105 1.6565976529994524
5106 -0.16404728219848497
5107 -1.2026773573987826
5108 -1.3900894390606882
5109 1.1134060303473532
5110 -0.038030585127992504
5111 3.5741551185096174
5112 1.20640684381867
5113 1.358374455340519
5114 -1.5929351526624418
5115 0.33396358119776853
5116 -0.01446675733834003
5117 0.8104563849384605
5118 -0.6455896647236709
5119 0.725363475223454
5120 1.5604624311328696
5121 1.0274443304214373
5122 0.24989583702912707
5123 -0.5410675453695454
5124 -2.212875965307361
5125 -0.49645567406481517
5126 -0.43042467202185014
5127 -0.8537440800974431
5128 -0.5913794680599281
5129 -0.11513977139293738
5130 0.6004340059653632
5131 -0.9841345011864893
5132 0.9814449824870186
5133 -0.7928160857564169
5134 -0.7794993816987638
5135 -0.6564079560155496
5136 -1.833167023456407
5137 -0.29854404777222215
5138 -0.2953862256120616
5139 -0.47036798791964485
5140 0.16054455336251694
5141 -0.6525690786674057
5142 -0.3341109549412459
5143 1.0535680838113257
5144 -0.3506551114875009
5145 0.6635511761093161
5146 1.9031541350707668
5147 -1.80868640442989
5148 -0.42269431711910205
5149 0.47514022846283854
5150 -0.7704413816486696
5151 0.4246779495309443
5152 -0.80381759064959
5153 1.5384735251369388
5154 0.7319443910253504
5155 1.5653969283039064
5156 -0.12957764881629483
5157 -0.6535476577440512
5158 -1.0282620159610605
5159 0.794023750161463
5160 0.32903277655909713
5161 -0.6935275481330802
5162 0.5658343993464183
5163 1.526386773107786
5164 0.21981317484757495
5165 -1.856033173327429
5166 -0.4093717218224075
5167 0.40621490520170006
5168 0.41345438117644645
5169 0.804987014452586
5170 1.2704105208347896
5171 0.08497020611229168
5172 -1.4480935702048126
5173 0.34101297156520216
5174 0.31820089610063357
5175 -0.5926927785827375
5176 -1.237411886926667
5177 1.4733195030858919
5178 1.5518348053703752
5179 -1.0750033983855591
5180 0.13336577572107575
5181 -1.5064491607635502
5182 1.292053557281415
5183 -0.7627986136688368
5184 0.011090464831910266
5185 -0.08226015884628889
5186 0.2840267601839582
5187 -0.985272405760371
5188 -1.3804431016289676
5189 -1.9238069584052666
5190 1.1418042799901604
5191 1.0132991483210256
5192 0.950721981496851
5193 -0.8346918245839225
5194 0.3772288299127995
5195 0.8774021190724494
5196 -1.599531405654726
5197 3.514017655428472e-5
5198 0.522249567874496
5199 -0.240620787658427
5200 0.3539513309947286
5201 1.1156160634540129
5202 0.28046124567253966
5203 0.8935939783790683
5204 0.39902722481539005
5205 -0.9191521296298611
5206 0.9989755941977486
5207 -1.696582121079576
5208 -0.09152893570694039
5209 0.6239273683555587
5210 1.287774073578901
5211 1.312700751231936
5212 -0.05495976912374488
5213 0.3888738747288115
5214 0.562743470885439
5215 0.6889806440185503
5216 0.5571396031948546
5217 -0.5614975428753597
5218 0.06725347502766266
5219 -0.8785829177053005
5220 -1.505335598865072
5221 0.6023601185055412
5222 -0.533771124826001
5223 -0.9804932785250775
5224 -1.240291381483816
5225 1.1909584089523118
5226 -2.135607903513005
5227 -0.7661793041649357
5228 -0.5011577862246168
5229 -0.44394295393966526
5230 -2.7049348991673146
5231 0.699236511857195
5232 2.0431720485220195
5233 1.6733148572047607
5234 0.29944159218049776
5235 0.13083122771643244
5236 -0.8930679938052773
5237 0.8218169911447607
5238 2.4470097243136917
5239 0.704858064109281
5240 -0.8194897180972954
5241 -1.5559778906631503
5242 -0.6440596482639649
5243 0.2087448862031555
5244 0.6616244399907686
5245 2.2475056707434495
5246 -0.1367823278290306
5247 -0.8649848732953992
5248 0.3222590773860175
5249 -0.21418828790023625
5250 0.07620352087497045
5251 1.1435988136224176
5252 0.38473012214549773
5253 2.6544987134979148
5254 0.0462756648458572
5255 -0.6468128773742984
5256 0.020896128135325567
5257 -0.4660665243200836
5258 -0.33714044155289125
5259 0.37854012075321636
5260 0.5850208677665254
5261 -0.6683637694843219
5262 0.34200788917731434
5263 -1.2840128454480801
5264 0.2510217654705398
5265 -1.5791137315543622
5266 0.13472678611417405
5267 -1.600449548493068
5268 -0.40504910253649634
5269 1.6687027288835417
5270 -0.07920876206923858
5271 0.4417854737556343
5272 -1.3681980405477654
5273 0.9316102635256841
5274 0.769357756014884
5275 0.5968525964014607
5276 1.0165868077453017
5277 -0.9836687847057923
5278 0.08476598109804931
5279 -1.5060890876895365
5280 -1.158037906346835
5281 -0.5155546521790144
5282 1.1680785153418594
5283 -1.3884246436783776
5284 -0.8481686077146681
5285 0.09647085904425344
5286 1.2668655416993024
5287 -1.7829459523262787
5288 0.6344084874980522
5289 0.1560292458070525
5290 0.18193094595061515
5291 -1.7271466674379286
5292 -1.0066596785722088
5293 -0.3493254779403868
5294 -1.2310787394599167
5295 0.011112650869298898
5296 1.7671977438507662
5297 -0.3362329548876071
5298 -1.6478468369985337
5299 0.9096537440878432
5300 -0.4510189231886796
5301 -0.08837930297857648
5302 -2.327703670758823
5303 -0.17393360219625656
5304 -0.5860255596222602
5305 -0.4245355051226906
5306 0.8897415979203463
5307 -0.14089461509492585
5308 0.8464582502750169
5309 0.3416720528080186
5310 -0.29304918068573754
5311 1.9073502980602792
5312 0.6787606529695343
5313 -0.45046117306662836
5314 -0.8019546634883649
5315 1.9514609111856516
5316 -0.0862192159913759
5317 -0.15748146340064711
5318 1.1327927523173345
5319 0.38471603236290647
5320 1.6036553844234005
5321 -0.693410158890986
5322 -0.8047922256728556
5323 1.5438077758105246
5324 -0.4926215344717372
5325 -0.9590978797220373
5326 1.1160765360171625
5327 -1.4415957946490376
5328 -1.1456111279005148
5329 -0.6115647918722384
5330 -0.09507934938667115
5331 0.3519938418318742
5332 -0.8556702875915116
5333 0.2514897707967486
5334 0.5340047264255934
5335 -0.21157351854450462
5336 0.8114854933376514
5337 -0.12636724867970286
5338 1.7634273608389734
5339 -0.5678712960370836
5340 -0.6271917805514231
5341 0.621181899961541
5342 -0.6838347780388114
5343 0.6076702881174159
5344 -0.403544089454889
5345 -0.5516735173532014
5346 -0.9214735307671301
5347 0.7600483677113976
5348 0.38103291278648693
5349 -1.045807985345058
5350 0.09332209029749536
5351 0.8552703469213039
5352 1.1393095221188636
5353 -0.6491229906741436
5354 0.9762742726045938
5355 -0.9563699106394514
5356 -1.0849046301433658
5357 1.3046002594467492
5358 -0.10357165785076118
5359 0.6870998156255447
5360 -0.3636846101093243
5361 1.3277501381936254
5362 1.5166188437713464
5363 -1.821668360785236
5364 -0.6805832034778571
5365 0.712955813527675
5366 -0.18799943179587483
5367 0.9120523385442216
5368 -1.436020582256049
5369 -0.5355005137183374
5370 -0.7434379785876871
5371 -0.7610855124493731
5372 -2.093791627356479
5373 1.0991792743237543
5374 0.679371509445112
5375 0.10663949361590475
5376 0.9815379895996201
5377 0.564144548279039
5378 -2.8324576305461684
5379 0.3224188616049978
5380 -1.6909868029673325
5381 -0.47317299407513336
5382 -2.3907602546211404
5383 0.562748096841523
5384 -0.5226848147574245
5385 -0.7711561093946783
5386 1.7536206798770544
5387 0.948498450587021
5388 0.993040102939215
5389 1.4526079210647254
5390 1.0983126299639876
5391 0.527459020628018
5392 0.021943549561745688
5393 1.6942368234928238
5394 -0.12298469480384332
5395 0.19393756533356274
5396 0.36158490144100164
5397 -0.20493461981072142
5398 -0.19144338676103737
5399 -1.1460997312249335
5400 0.020659644432366973
5401 0.4773794759059874
5402 -1.1262696247828017
5403 -0.614825392860953
5404 -0.9375627530120092
5405 -0.6171675287734767
5406 -0.860485825260165
5407 0.7489718609992798
5408 -0.47799147924924007
5409 0.888323107481252
5410 -0.8384073947640155
5411 1.3619706001679694
5412 -0.784484906753322
5413 0.704392721724927
5414 -1.15804303205052
5415 -0.8237566779224069
5416 0.3127088524313526
5417 1.63396543424381
5418 -2.0942566064706427
5419 0.7990245770157385
5420 1.1513322082329691
5421 -0.2143091007218633
5422 -0.9937430601904778
5423 0.9529546047547539
5424 0.030495912796019046
5425 0.25515267575275974
5426 -1.4087645318978461
5427 0.2379880555110393
5428 0.10142316285523145
5429 -0.8647258369009545
5430 1.0369546887070848
5431 -1.497173530547005
5432 -1.3469206438359287
5433 0.036156657205052005
5434 1.3816017701575396
5435 -1.7446186534958243
5436 -1.8892505456225
5437 -0.47394609536097343
5438 -1.968117893860401
5439 -1.11683832533932
5440 -0.28113329793524094
5441 0.9582888457382356
5442 -0.609882295313585
5443 1.6683071279792225
5444 -0.14919295472594676
5445 -0.07076281247415853
5446 1.1167011312690593
5447 -0.626154515774747
5448 -0.33496209396636645
5449 -0.21338379130729815
5450 0.7168214518875867
5451 -0.4293730707971
5452 1.1798066965138878
5453 -0.023104691916207724
5454 -0.0059678929438510935
5455 0.6103223682816682
5456 0.7476710289723612
5457 0.2304907825631042
5458 -0.5972480649170079
5459 -0.9825717543474954
5460 0.9877564308510656
5461 2.5857811276220137
5462 -0.9768365007059496
5463 -0.8262858920091164
5464 -0.04273258648338553
5465 -0.6156044882011736
5466 -0.02564302086962441
5467 1.1319222326555922
5468 -0.6242127203107799
5469 -0.6555733761396627
5470 -0.6139993844976702
5471 -0.8588030297305024
5472 -0.4366509660920625
5473 0.8808580297511948
5474 -0.9022771831944757
5475 2.319121687792364
5476 0.16360530770378473
5477 0.47361115787791236
5478 0.9494945424881192
5479 -2.503693382375122
5480 -0.2810614240782613
5481 0.49233963264557584
5482 1.5371257673203431
5483 0.5473195829349932
5484 -0.15868379081042372
5485 -1.1657186125867884
5486 -0.4798848335877919
5487 -0.4163813970088726
5488 2.6585347170033775
5489 -1.2956908738831456
5490 1.2635081253659286
5491 -0.21283101111929348
5492 0.23297204556096532
5493 0.18485280221962921
5494 -0.5599760046032609
5495 1.2484166767129794
5496 0.2108301619143682
5497 0.6276896544446275
5498 0.18133382516431232
5499 -1.4729000385295365
5500 0.3124741750559803
5501 0.956537091294731
5502 -0.5613194419003515
5503 0.3971696471927891
5504 -1.6515221902974306
5505 -0.6223183337243838
5506 0.5721547928451922
5507 1.4903254351993922
5508 1.6893865359428466
5509 0.6275595862562128
5510 0.5027809832427489
5511 0.004723447372332709
5512 -0.4512777448365468
5513 0.7622274211280659
5514 1.3182706859775883
5515 1.2114656461914315
5516 0.27418322125232164
5517 0.8563922643340052
5518 0.19760406822977475
5519 -0.34301604069866853
5520 -0.20342740522727415
5521 1.9863226374478153
5522 0.9053664207969161
5523 0.41648599176626977
5524 -0.6234260154228374
5525 0.5482388068356553
5526 0.18329072203132538
5527 -0.9687394253369782
5528 -0.8373761466054136
5529 0.787727961515909
5530 0.7173767141505779
5531 -0.5405108813159795
5532 0.9090508581993406
5533 -0.15512079816076513
5534 -0.05470263728352529
5535 0.8961634407244756
5536 -2.362530409562781
5537 -0.12842965264041686
5538 1.078087602225711
5539 0.03911055367559944
5540 -0.31279323618322674
5541 -0.20859757137341364
5542 -0.17702431529978202
5543 0.9217420574746854
5544 -1.731033114437235
5545 0.008205744533876928
5546 -0.09408686993819919
5547 -0.42282462113639147
5548 -2.395386934572363
5549 0.926566805671753
5550 0.5482249350715632
5551 0.8436245105592839
5552 0.8305463002241501
5553 -1.533391109627643
5554 -0.09390278273183632
5555 1.4195536777726387
5556 1.5312893559487915
5557 1.0638250009431225
5558 -1.3377760477097786
5559 0.7346447785164874
5560 0.03234641466004456
5561 0.09503653353397519
5562 -1.0916656487838219
5563 1.11199459927342
5564 1.1083665676382555
5565 -0.6256827483384938
5566 1.826385996889206
5567 -0.663876176421725
5568 0.8339263836150539
5569 -1.2865277563116275
5570 -0.4587283386799789
5571 0.8957266798801612
5572 -1.0781216754567908
5573 0.24962913332832787
5574 -1.2193802646209013
5575 -1.098075306353475
5576 -0.45636804419779486
5577 0.5567689957540641
5578 0.4800565538666879
5579 -1.01818173476039
5580 0.5254567079400588
5581 0.778103883970296
5582 -0.3457964912182587
5583 0.509254101956751
5584 -0.45255539502814335
5585 0.4714990976794031
5586 0.6678758228912495
5587 0.8601275556380038
5588 -1.6727475186379788
5589 0.5434967821698005
5590 -1.835100469168858
5591 -1.2007504413191294
5592 -0.0342255665921219
5593 -0.31053858123740546
5594 -0.6817218474098934
5595 -1.2073963316992935
5596 -0.03332861033898519
5597 0.3127928503649422
5598 0.1678326067163351
5599 0.0002636361999722178
5600 0.4735380638851554
5601 1.1389121894468062
5602 -0.9459664669058974
5603 1.3295804556605237
5604 -0.043777972506393
5605 -0.6204030422257628
5606 -0.25205691400501723
5607 -0.3633404098224212
5608 1.4076459848918652
5609 -1.1471209802728284
5610 -0.8668199664363555
5611 -1.2828899580408073
5612 -0.4092873156362488
5613 -0.4574265642369392
5614 -1.0256987902816561
5615 -0.6317941430152217
5616 -1.9070056129219417
5617 1.4009057886397733
5618 0.06690516785212774
5619 0.6986100638303568
5620 -0.26226123927954503
5621 0.2949935007667972
5622 -1.4528123871214347
5623 -1.8557291313460287
5624 1.974993389391563
5625 -1.0950969327333162
5626 -1.63369266149386
5627 0.7550562029935218
5628 0.6878840898515025
5629 -0.902694546172668
5630 -0.8080142439471146
5631 -0.4208510937292994
5632 2.0155068451270712
5633 -0.11783329945591198
5634 0.38931951029573664
5635 -0.308354164682675
5636 -0.09656030013234448
5637 0.9237056877797205
5638 0.840809214580702
5639 0.36332090648879917
5640 -0.025222223829684306
5641 0.8504563142408944
5642 1.2145935358864905
5643 0.07026170888909218
5644 0.13680829660132826
5645 -0.3587975680188212
5646 -0.9767892566280987
5647 -1.4662492690771551
5648 -2.5089443452335063
5649 -2.191926213725547
5650 -1.313896220209698
5651 0.24426005956983443
5652 0.7617072003008711
5653 -2.430230214329687
5654 -1.904619214707371
5655 0.11493152153875212
5656 1.1762267255680696
5657 0.2547832977262449
5658 -1.4479803820323478
5659 0.9324343055975388
5660 0.903734737053201
5661 -0.3038328193079991
5662 0.7561661977258007
5663 -1.0718072028056673
5664 1.987963264806513
5665 0.5082148950087356
5666 -0.44256742258471404
5667 0.2968042180445433
5668 0.6859915812307428
5669 0.5620848487830604
5670 -1.4001851174563993
5671 2.223426992400087
5672 1.718102084568921
5673 1.0692877299942414
5674 0.9627005959927772
5675 0.08561093083461861
5676 0.4991455770223168
5677 0.5248329188131267
5678 -0.7711410294995242
5679 -2.004046241885755
5680 -0.6392008602502105
5681 1.246974285710797
5682 -1.5390537367073218
5683 1.6347567490782888
5684 0.9499547596168568
5685 1.3535083492472049
5686 1.8912708935885325
5687 1.6334339900175536
5688 -0.6533238322852924
5689 1.8553320535161497
5690 1.325726230787082
5691 -1.2582310892261928
5692 0.30392590300916583
5693 0.600222261842682
5694 -2.876613665330885
5695 -0.8275008919870924
5696 0.10134528798040286
5697 1.54423870392233
5698 -1.3141939486841512
5699 1.013790854941237
5700 3.332272778192461
5701 -0.13062441626729066
5702 1.0513245612461797
5703 -1.7805107229108565
5704 1.2335644301367412
5705 -0.6751840738142341
5706 -0.8966694496355763
5707 -1.5756104385257568
5708 0.365368484160185
5709 -0.44373059802193626
5710 0.20435246983349029
5711 -0.12200221023928502
5712 -0.030048255839828817
5713 -0.2097826297577462
5714 0.5711051713465297
5715 -0.8277049765614327
5716 -1.9063196966185887
5717 1.2942967618806365
5718 -0.4350253727736468
5719 1.3577246879784188
5720 -1.06458113261311
5721 -1.6385291866117178
5722 -0.7995775428729079
5723 -0.7062829665462793
5724 -0.643145605395561
5725 -0.48754241525058123
5726 0.4534064494220641
5727 -0.25924026707493647
5728 1.7341739032934798
5729 0.9472613840335911
5730 -0.44019158971026034
5731 -1.8279654214521281
5732 -1.4444913770934342
5733 -0.3805129093964207
5734 -1.2155656358845133
5735 -0.4250306666856521
5736 1.9218767291293488
5737 -1.347132701736794
5738 0.25614178973845636
5739 -0.2655750040336984
5740 1.1706653930817863
5741 1.4966497813463964
5742 0.9444570028616234
5743 0.9701648042542875
5744 0.2578481234082459
5745 2.559578124286476
5746 -0.6035414104171429
5747 -0.15080705262986452
5748 0.12214103350587419
5749 1.3969361778565674
5750 -2.289347507024187
5751 -0.38052456936461354
5752 -1.8900712270320832
5753 0.7563610661062725
5754 -2.6709001507400547
5755 1.0950679881571754
5756 0.7511571715689622
5757 -0.3056552554874846
5758 1.515238053741901
5759 1.837571204133474
5760 -0.5482595923955964
5761 0.08447532260473994
5762 0.10389937937948897
5763 -0.4146502965086558
5764 -2.490169848749004
5765 -0.9495551482995164
5766 -0.04634687013368159
5767 -0.9246441002018648
5768 -0.4338036788913997
5769 -0.027095975559330535
5770 0.4093290912361017
5771 -0.08613558211361165
5772 2.4586810606097718
5773 0.12107523206047766
5774 0.8426837050885917
5775 -0.03869483483866185
5776 -0.42625355806758947
5777 -0.8079392709733735
5778 -0.06698299867048935
5779 0.18141648896768006
5780 -0.5218988341686372
5781 -0.4624548963138885
5782 1.549490626693686
5783 -0.07233521441753399
5784 -0.08743564969501626
5785 1.0237961054054896
5786 2.0777584212953166
5787 0.44001840939595577
5788 0.129115560166519
5789 -0.02740641539422843
5790 2.116863581696862
5791 0.3544203427931101
5792 -0.7466781732090512
5793 -0.7063625487498376
5794 -0.8617191196237832
5795 -0.8903653057531074
5796 0.39167885198399977
5797 0.7276786666224035
5798 0.778520465561247
5799 -2.7433523546532377
5800 -0.28806361009623865
5801 1.0445718183802428
5802 -1.7558737610177884
5803 -1.0928886187781337
5804 0.1468239677290766
5805 -0.8233326754151099
5806 -1.3164425087961273
5807 -1.6904695011322328
5808 -0.39141875402421095
5809 -2.7561757207069717
5810 0.5246934135908342
5811 -0.835511479822684
5812 0.5794592984400174
5813 0.5129130715978336
5814 -1.2416776395442
5815 0.471199848019586
5816 0.6921160873857087
5817 0.19823030533049016
5818 0.3871081456971488
5819 0.5370721413317152
5820 -0.6513938454619242
5821 0.20740421894672584
5822 -1.1143098367070086
5823 -0.5922101125605798
5824 -0.5947636205495997
5825 3.446995116287033
5826 1.0974515168762422
5827 1.0513965048173455
5828 0.3400796845690894
5829 0.0743494231481364
5830 -0.024717434518601797
5831 -0.9702827804364811
5832 -0.5290518247018012
5833 0.5247589619626646
5834 -1.1046192859678245
5835 -1.5567206404727165
5836 0.48214119349222057
5837 -0.5638201764426743
5838 -0.2668128948353056
5839 0.4937839625137856
5840 -0.45047370466850006
5841 -0.26881077172453355
5842 -0.36605531453269846
5843 0.8850316952325981
5844 -1.0060499977769843
5845 0.9717220102641957
5846 -0.4058532657122818
5847 0.11992969975126319
5848 0.2663428667559025
5849 -1.0709357046363133
5850 -1.2134126174716804
5851 -0.4281221297729115
5852 -0.6149796517225856
5853 0.9192803060205006
5854 0.21206911711631868
5855 -1.183188173909696
5856 -1.4262613753212219
5857 -1.3570015402029505
5858 -0.04140799420593434
5859 -1.6388734896030699
5860 -0.593235177682353
5861 0.2534010108602029
5862 0.3743439816815494
5863 -0.25778170689863056
5864 -0.8660849171195028
5865 -0.5266608649210521
5866 0.5330031820131342
5867 -1.348177731081501
5868 0.013355757594674396
5869 1.8877255874762806
5870 -0.20622563116635045
5871 0.11314643410064563
5872 0.2721361813816733
5873 -1.4962215345559484
5874 -0.6438861746532826
5875 -0.3978583192726643
5876 -1.097400985024028
5877 0.9983784148554834
5878 -0.0286330685678203
5879 1.9700736556816296
5880 1.7802856245671805
5881 0.0851512272264556
5882 0.7469229459849306
5883 0.5587387240895311
5884 -0.9260658966979536
5885 1.5553862666535134
5886 -0.4162644701685891
5887 -0.9201186924791486
5888 1.554507850516601
5889 -1.4851939862979961
5890 -0.784369240083362
5891 2.425826825048975
5892 0.33642751840831514
5893 -0.6363892550994146
5894 -0.1979360773892724
5895 0.5101585002511653
5896 -0.8333878266867198
5897 -1.0611696895769847
5898 0.9714496444655197
5899 -0.1921921344720816
5900 0.4645378101766105
5901 0.3780760104909164
5902 -0.2390297437629107
5903 2.8810911806531565
5904 -2.2976815581512335
5905 0.03500673466942221
5906 -1.7925319985139283
5907 1.6027363955274112
5908 -0.09121268173190492
5909 -0.08016267562496826
5910 1.1317037136017312
5911 -1.990367496663729
5912 -1.0064227233285343
5913 -0.9779387617255718
5914 -0.6660940668475975
5915 2.4729152791019353
5916 -0.7897877435523125
5917 1.9111758177578264
5918 -0.11216302975443686
5919 -1.0568169848944984
5920 0.8937153488478126
5921 -0.9973821640272444
5922 1.0488931890273647
5923 0.16989888665788644
5924 1.029432649526945
5925 -1.7167289229913714
5926 -0.702798582175048
5927 -0.9300191975356913
5928 0.3452855076781691
5929 1.0355466373165505
5930 1.0705597340715176
5931 0.48418201581246395
5932 -0.6906774727239421
5933 -0.6309712805279917
5934 -1.350252054271995
5935 0.605662745038266
5936 -0.8339675499010546
5937 -0.09899379727335836
5938 -0.45681099845318085
5939 -1.4928544920814157
5940 -1.3212764476207182
5941 0.44660519478339444
5942 -0.2785738951840014
5943 0.12819344505850774
5944 0.7467876970115056
5945 -0.5272511656756137
5946 0.04317048805204831
5947 -1.6427981818543727
5948 0.09013133054682657
5949 -0.8285290780227378
5950 0.6932632635592426
5951 -0.40024398788867516
5952 -0.4164507615446188
5953 -0.7838935803609007
5954 0.283926895335853
5955 0.6129057324972313
5956 0.6719900729437757
5957 -1.5990964618695742
5958 0.31693403267814924
5959 0.024902174177613513
5960 -0.9012755808400928
5961 -0.7429252993103371
5962 0.3669612289021366
5963 -1.3763293945256005
5964 -1.2796446358292828
5965 -0.10500835312837915
5966 0.3257514385960797
5967 -0.7562328863427578
5968 -1.384810513205462
5969 -1.1603104079053057
5970 1.5687404791311543
5971 -0.1416625163113219
5972 0.32766532067292164
5973 0.8148864440804083
5974 -0.7568792672504645
5975 0.4094175594241545
5976 -2.0998799963321075
5977 0.5453365969357954
5978 -2.8269481279508644
5979 -0.7599789811832832
5980 1.3933088204523716
5981 0.9496537423678516
5982 -2.8330013960288647
5983 0.2824563107898751
5984 0.2690472871588789
5985 1.0122649039110199
5986 0.6136687089535745
5987 -0.0601454022648943
5988 0.14735709548735962
5989 -0.2984331160953429
5990 0.1993971886119153
5991 -0.49590714446536777
5992 0.5269757367861154
5993 2.7874104479494397
5994 0.9165974013832335
5995 0.9591939071679956
5996 -0.5702990863732892
5997 0.1749996783330888
5998 -1.1113590680969607
5999 0.2978243035050613
6000 0.13523245381488175
6001 -0.6245358844518806
6002 0.5365422191295174
6003 1.0104459177793608
6004 -1.1439485110140655
6005 -0.26988365363243394
6006 -0.35928435324018815
6007 0.08142580551113157
6008 0.14504033788410017
6009 0.38610553095803657
6010 0.26952246978263605
6011 -1.0064102137377744
6012 -0.4042262129730323
6013 0.13435221761056482
6014 0.5894833736022476
6015 1.0402447737756433
6016 -1.8106015441120573
6017 -0.5453553995533538
6018 0.12933716246265792
6019 0.2244981549840596
6020 -1.183066084313936
6021 -2.861927055977771
6022 0.3871552548284362
6023 0.5930435973377002
6024 0.2955274344295485
6025 -0.9355688068124005
6026 0.008766624387597394
6027 -0.6978035993693151
6028 1.4309424448446375
6029 1.0076355586333328
6030 -0.1187900873015624
6031 1.26701836020801
6032 0.6951544578743318
6033 -0.24821071295448602
6034 2.2652180928041012
6035 0.4462591252023724
6036 0.2013384272058932
6037 0.6293267608726786
6038 0.48830636773202657
6039 1.5812327943005808
6040 0.21604196365972153
6041 0.41780364226980693
6042 0.36671711655710243
6043 -0.15088093782037262
6044 -0.6231286798392027
6045 -0.36980536821246873
6046 -0.8950000790219468
6047 -0.657356735454761
6048 -0.9868382529359617
6049 0.610434864271664
6050 -0.07271799168314512
6051 2.1703749161555197
6052 -1.561069853024776
6053 -0.2769803821592527
6054 0.07516787400169463
6055 2.270529881760157
6056 0.8662760764123904
6057 -0.45889129248496896
6058 0.9182911472082542
6059 -0.025378187922761985
6060 -0.7698848199211359
6061 1.2727553739405508
6062 2.1873954668187654
6063 1.4114176509591667
6064 1.8319679292453048
6065 -1.5581040268049688
6066 2.724777852386864
6067 -0.8928796253253882
6068 1.902812009539933
6069 -0.35975126194951673
6070 0.5921930633355376
6071 0.9922143622705202
6072 -1.2551339530304269
6073 0.13293262170881967
6074 -0.11939299548667745
6075 -2.185963961292847
6076 0.12853328950327578
6077 1.2318504657531177
6078 -0.9333810889758437
6079 -0.552895763475248
6080 1.4839011437060607
6081 1.3351962806730349
6082 -0.5178167234858276
6083 1.3481400663516374
6084 1.1964648593831522
6085 -0.20643920726602494
6086 -0.5060809546275371
6087 -0.30262248260750313
6088 -0.012707646043476377
6089 -0.48120647571952746
6090 -0.31566890142170456
6091 -0.5495454742772401
6092 0.239306981867506
6093 -0.37518232849576727
6094 3.266200889686091
6095 0.04445987484953122
6096 -1.0369957936343739
6097 1.1001816981659995
6098 0.7744783637215842
6099 -0.24923134664905477
6100 -0.4955117997841967
6101 0.6387295335739813
6102 -1.2093303289098445
6103 0.7825534089744827
6104 0.8186529178031448
6105 0.865972221220444
6106 -0.9145261277016419
6107 -0.16865721260989314
6108 -0.42528018308007215
6109 -1.2544606440589257
6110 -0.3128834662249916
6111 -0.2903768304927332
6112 -0.7193975052834669
6113 1.8935197466688807
6114 -0.5177426143053933
6115 -0.11304366235752733
6116 0.23365321517069018
6117 1.169045189538031
6118 1.7937512783297684
6119 0.6287227256440739
6120 -1.3130472466002263
6121 0.780301419090876
6122 -0.21295455956246193
6123 0.5176264154118779
6124 -0.6124886203876199
6125 1.093457454212751
6126 1.131863551720979
6127 -0.07894636770335968
6128 0.5250395354103616
6129 0.2744618762556325
6130 -1.0852951680870544
6131 1.5318478861607965
6132 -1.8262400060952009
6133 0.3944797345909611
6134 -1.0766173635933365
6135 -0.07085987634037359
6136 -2.180303750169574
6137 0.4385594972424759
6138 -0.5306083735256653
6139 1.7768279457311034
6140 0.9809519727848849
6141 1.2246657519439725
6142 0.0320533417202058
6143 -0.18502644147261782
6144 -1.216769971695493
6145 0.2765036445521256
6146 -0.14912757549633646
6147 1.2484273768766934
6148 0.3799886050938562
6149 1.003956229023016
6150 -0.8016536976596921
6151 0.5574985227342909
6152 -2.2134437581099813
6153 1.7457258702396186
6154 -1.5860439329187719
6155 0.7409019325877941
6156 -0.12414991945007237
6157 -1.2123404378713247
6158 1.44990682637386
6159 -0.36527967104434755
6160 1.0408925822427617
6161 -1.4508332023561579
6162 1.0113851104739897
6163 -0.6017932457392299
6164 -2.458046284150831
6165 1.0052730403381909
6166 -0.29809326878127507
6167 -0.04527095983604914
6168 0.7717415222836572
6169 0.7766336660741736
6170 0.10824046005096302
6171 0.44721627161415484
6172 0.017663325643657413
6173 0.3072279218679989
6174 -1.2891075616316487
6175 0.36523856146807965
6176 -0.9317947710021366
6177 -1.2175691796827932
6178 1.8311520972305775
6179 1.3529427734098247
6180 0.9754613185534902
6181 -1.079972125578441
6182 -0.9145425522947253
6183 -0.23732133084597026
6184 -1.0101180662683285
6185 -2.110738496702877
6186 0.6023966247819891
6187 2.007141664966807
6188 -1.1935557822931078
6189 1.075347915792857
6190 -1.7963607772419337
6191 -0.5384622269951733
6192 -1.4811640474027497
6193 -1.1705970054725958
6194 0.7836112836752415
6195 -0.3665804970152246
6196 0.14538766767341096
6197 -0.4108470107215616
6198 1.3285906330126298
6199 0.43035849482627225
6200 -0.5787001793711245
6201 0.29168982618784267
6202 -0.0750637333078218
6203 -0.18941505962774796
6204 0.5856456603170824
6205 -1.9376867877291062
6206 1.1323760735555843
6207 1.6486946363681974
6208 -0.05198339542580756
6209 -1.2835354912707944
6210 1.335042293681588
6211 -0.47350015383882627
6212 0.06426156410243243
6213 -0.6222671302782031
6214 -2.105042610623083
6215 0.27890988839090625
6216 -0.07329903987021666
6217 -0.27266637085491313
6218 0.8998412837010356
6219 0.3663619561409644
6220 -1.6771921617740158
6221 -1.3362632779243386
6222 0.4515397326959795
6223 -0.1763646684197693
6224 -1.1857471725793012
6225 1.1154996128010861
6226 2.816750006242451
6227 -1.1456708395938935
6228 0.5867442177396628
6229 0.757283584474966
6230 0.42581356177333063
6231 0.2624302974680715
6232 -0.15893755249880445
6233 0.6639513736035179
6234 0.31157410080334286
6235 1.2305946641519574
6236 -0.8473744826040053
6237 0.7113517955590289
6238 -0.3239998022144573
6239 -0.7144062963561335
6240 1.3496363092666392
6241 0.7436299027721438
6242 -0.11875416926388441
6243 -1.5821802697781964
6244 -1.166779998510721
6245 1.0820298280444856
6246 -0.6566892444250142
6247 -1.5332454777101698
6248 0.25563265304462685
6249 0.13612110587026238
6250 0.1519095576463777
6251 1.5133853116261822
6252 -0.44691843023902145
6253 -0.07363527217327419
6254 -0.23359632060100238
6255 -1.4600334517485984
6256 1.0413812197593093
6257 0.8348888014616217
6258 -1.005512005075096
6259 -0.33810254959395
6260 -0.006627629633222184
6261 0.47838473950893456
6262 -1.9206274516871649
6263 1.0305517315374388
6264 -0.9487147299202566
6265 0.14779523812560952
6266 -0.4076629104560804
6267 -0.6641615189916373
6268 0.9959182917639889
6269 0.6535646951899833
6270 -0.08264504819757658
6271 -0.9936346708719516
6272 0.8207093951843528
6273 -0.25243624335996534
6274 0.2994645142525613
6275 0.9405627883370992
6276 0.34056748886990224
6277 0.10570568643448397
6278 1.0623047597794122
6279 1.5268543683198967
6280 -0.08153545158720123
6281 -0.17899366281862947
6282 0.30213240920643347
6283 0.12256385072084675
6284 0.6966859289763468
6285 0.11079464238976619
6286 0.2541374333205011
6287 1.748966642069033
6288 1.3915575531292412
6289 -0.42845361069241555
6290 -3.073991168741434
6291 0.27782351052830756
6292 2.0064648057560395
6293 -0.12588460182115246
6294 -0.37477377634326575
6295 1.6281935345276175
6296 0.3528074207878292
6297 0.9340697469255783
6298 -0.6534028059038838
6299 -0.6484385370415148
6300 -1.1173098159854997
6301 0.5939252033860587
6302 0.24847215803883146
6303 1.5062419114640047
6304 -1.366625407952948
6305 -0.4469056976113331
6306 1.2543135581111924
6307 1.0240794968316675
6308 0.6663443854609931
6309 0.20654128230080118
6310 -0.8769768520666774
6311 -0.22066037518984413
6312 0.2673514183534852
6313 -0.1353274467374628
6314 -0.8700613650069424
6315 -1.2154946254396668
6316 0.2044955367192685
6317 0.9590569965687087
6318 0.6778690067990368
6319 -0.2651222246727128
6320 0.5739643197996599
6321 -0.9082077881233052
6322 -2.2495048919053144
6323 -0.018765320315460746
6324 -1.5612994558867115
6325 -0.27329180254678487
6326 0.2773813583277883
6327 0.469111983034243
6328 -0.02741854896284129
6329 -1.4278388740918861
6330 -1.075398832069654
6331 2.5607941143655406
6332 0.7859134289768877
6333 -0.790576027724972
6334 0.22144248968681973
6335 2.9738603296236765
6336 -1.2738648994540434
6337 -2.4610415883682495
6338 -0.5859956296571853
6339 -0.04322555099400753
6340 0.3390905202828676
6341 0.20404636491775013
6342 0.9391813618818591
6343 -1.3956694797053528
6344 0.7129046692446331
6345 0.5758386379370893
6346 -0.07351217001439042
6347 1.2607856149976622
6348 -0.6442236976651182
6349 -0.314839860045311
6350 -0.5280542014273696
6351 -1.8411882622963
6352 1.4885239301392177
6353 0.2945874495638465
6354 0.806813039087565
6355 0.16913471918808595
6356 0.5200358471133756
6357 -2.525430461368557
6358 -0.10944569588347901
6359 -0.49466899566085215
6360 1.2789297826525636
6361 0.7545434014271474
6362 0.8015266455946026
6363 0.39084786204382127
6364 -1.1452301777121006
6365 0.14836386657551653
6366 -0.6959398694639235
6367 -0.20669471254735958
6368 0.5036621243432101
6369 -1.8931112814184858
6370 -1.9307964351800422
6371 -1.1816407793716728
6372 1.8941334087585862
6373 0.5154570953519134
6374 -0.13827129475827435
6375 -0.6584484866024002
6376 0.631720632208533
6377 -0.3842752151309235
6378 0.4002886603125095
6379 0.8211555371106642
6380 -0.2873935053704776
6381 -1.120957833796259
6382 0.8439321324096304
6383 1.2153222521607419
6384 0.27356423515194433
6385 0.6406976076490589
6386 3.7918341245743616
6387 -0.15797170253252543
6388 -1.0681946739692005
6389 2.2273159541798098
6390 0.712537589141843
6391 -0.2134789599814649
6392 -1.1640766772597828
6393 -1.4876950994432538
6394 0.1299040112562703
6395 -1.2978017083375804
6396 0.6436363699153579
6397 1.108663027429823
6398 -1.046970697885892
6399 0.49796424144362045
6400 -2.2822390321901804
6401 0.40641147213448225
6402 -0.032530969367011914
6403 -0.40350630467455395
6404 -0.7802907232834217
6405 -0.2235473059291852
6406 0.6367474527657069
6407 1.2255815032060287
6408 -0.6179590100393434
6409 -0.9919725061874726
6410 -1.1155391933084053
6411 1.0924416073794314
6412 -1.210674189252626
6413 0.07390769204005211
6414 0.9151260171005712
6415 0.4651488699273272
6416 -0.5021907760910256
6417 -0.8878793479738752
6418 1.7741586322397933
6419 -0.8356766615155747
6420 -0.5370854438053851
6421 0.008342177333015652
6422 -0.21461641928746988
6423 -0.178871449642859
6424 0.7198765180951125
6425 -0.423095248798397
6426 1.1908188618227145
6427 0.24989590160199956
6428 0.01078338751579857
6429 0.5540640418104773
6430 -0.5408051044005495
6431 -0.2076823154355728
6432 0.6810544998473409
6433 -0.4044270733076232
6434 -0.5660268573284268
6435 -0.9764800924843703
6436 -1.7571034853053031
6437 0.6784071677127306
6438 0.5664277448354175
6439 -0.3255485823236485
6440 -0.3046592898923653
6441 2.07326086139651
6442 -1.198076449605252
6443 -0.3258884300348501
6444 2.1757173942732937
6445 -0.4314927896715434
6446 0.9054748495554331
6447 -0.19625957757635004
6448 0.1136382654724617
6449 0.9514343950236277
6450 0.27190235711784533
6451 -0.950283687503646
6452 -0.02858671665227896
6453 -0.3404413565402264
6454 0.1516287368162713
6455 0.36807383692100043
6456 -1.6213592451000216
6457 -0.9738695464095649
6458 1.8654278914195168
6459 0.1968342059235808
6460 0.7417964143155098
6461 1.3778594742233896
6462 -0.29850637373555194
6463 -0.032482213297148725
6464 -0.05048443686555064
6465 -0.3263172336583751
6466 -0.5650435986196433
6467 -0.06435210862732266
6468 -0.9097317795811427
6469 0.5811931276882047
6470 0.6087809851416447
6471 0.1776923317346919
6472 -0.5477662454624055
6473 0.013539535493477736
6474 0.29349667912600147
6475 -0.3035640912052815
6476 -0.9808912396636055
6477 0.8820967299434169
6478 0.030020322964053825
6479 0.49665322909627324
6480 -1.188311412455504
6481 -0.22476192469707834
6482 0.950037229795795
6483 0.672815318877284
6484 -1.4870685079237658
6485 0.2669131851574751
6486 0.0902382557205048
6487 0.37250536693820246
6488 0.11909524003972644
6489 0.23402302736489042
6490 -2.3375917849039767
6491 -1.432085039521058
6492 1.1101332433904454
6493 -1.1816859839479212
6494 -1.7938605537892456
6495 1.1946150281668355
6496 -1.8649963780183587
6497 -0.2390407741652949
6498 0.010549998706622868
6499 -0.17884777768160945
6500 1.3297824357424655
6501 -0.15056070009110759
6502 0.6876216630527897
6503 -1.1294697084774754
6504 0.3747906245048606
6505 0.26695325699874173
6506 -1.3458982968469444
6507 -0.3919578337929812
6508 -1.9840008340588349
6509 -0.7598469465140183
6510 1.4395519248459898
6511 0.04576239133820578
6512 -0.8926505679040017
6513 0.5173709526283777
6514 -2.1053029267328713
6515 -0.22379906265133337
6516 -0.6458340421342407
6517 -0.11634251363583593
6518 -1.471420867628328
6519 -0.4370013819243101
6520 -2.269537003343197
6521 0.2372454313289989
6522 0.6219794781161107
6523 0.4715990347629891
6524 1.1634105159175205
6525 -1.7221081337767856
6526 0.5474356202402383
6527 0.19716703176166916
6528 -0.6108658451134851
6529 -2.2882149283410937
6530 1.5747228101157325
6531 0.8273486198163179
6532 0.29055946527652904
6533 -0.21572165691592182
6534 -0.6404917666224593
6535 -0.47431294289800113
6536 0.357841639819485
6537 -1.4437479252801937
6538 0.9692200622908501
6539 -1.5175520856651894
6540 0.022326164751741658
6541 -0.8840229964898224
6542 -1.7679136143626353
6543 0.1615623587652592
6544 -0.25089056844632185
6545 -0.3657552875226406
6546 -1.1383826936437902
6547 -1.1895667416383169
6548 -0.17246405317542865
6549 -0.6156858434616602
6550 1.8499655286547874
6551 1.0629356639983079
6552 1.0419189947060046
6553 -1.3582213462534787
6554 -1.877235152605313
6555 1.3239554729304202
6556 2.2049352153459356
6557 1.5270077551200048
6558 0.4647437395234255
6559 -1.1804504491247996
6560 0.8470026000563591
6561 0.648449292423333
6562 -0.27438054556974867
6563 -1.2821309402441594
6564 0.3952801482922943
6565 -0.3466103868526431
6566 -0.45747207351189983
6567 0.5639392509168744
6568 -0.8496852196468918
6569 0.7869441128674438
6570 -0.1902339013921937
6571 0.619721899099936
6572 0.25004329950885545
6573 0.5941061309847608
6574 -1.4762846972920536
6575 0.48156253504909324
6576 -1.1929070292601056
6577 -1.079429652203648
6578 0.12658096505450026
6579 1.1079498641217378
6580 0.16784285066554427
6581 -0.6928549510413553
6582 -1.3315364240516903
6583 -0.7170080468250728
6584 -0.3136133482654517
6585 -0.010924730516051601
6586 -0.9397974197044096
6587 0.5728958597206069
6588 -0.8983662751994022
6589 -0.20870045960748942
6590 -0.02546489848794661
6591 1.3543509415880826
6592 0.3605133072489817
6593 0.04311779509504143
6594 0.7620769738104428
6595 1.656682956557869
6596 -0.5167672850675099
6597 -0.42954880383559463
6598 -0.18708959138638817
6599 0.6157780628132221
6600 0.6743043390701097
6601 -0.04975975331294443
6602 1.3989310840215636
6603 -0.8053122541496589
6604 -1.4670025216721352
6605 0.6108525897018248
6606 -0.22692502959640554
6607 -0.23610405042400542
6608 -0.37859222877055054
6609 -0.041976507182647824
6610 0.07059745211809575
6611 2.187534870136803
6612 -0.903191054032613
6613 1.3363039528547382
6614 0.346632435214482
6615 0.1869915157545135
6616 -0.5303809831649507
6617 0.8625308074963545
6618 -0.1739351675058539
6619 -1.3550862077625538
6620 0.6992582515644767
6621 0.46024359481695065
6622 1.5707025331317006
6623 -0.02580945857645792
6624 -0.5445137316979483
6625 -1.1588402052699525
6626 -1.4535731278474275
6627 0.8121931602257694
6628 -1.0363325023085261
6629 0.5091013307237284
6630 0.6196306851673734
6631 1.0903325284203744
6632 2.1142943821915843
6633 -1.1298793620825105
6634 0.024242702451848064
6635 -0.4205701357521242
6636 0.7436960081390528
6637 0.5738612528639152
6638 2.0657895918081626
6639 0.983547421302789
6640 1.555631626513998
6641 1.3732844792770378
6642 -1.8326690415133933
6643 1.0660268609348444
6644 -0.13021272729975839
6645 1.2509011306712199
6646 0.22222974210347501
6647 0.05380399001102683
6648 -1.0484259102698248
6649 -0.49206881846326656
6650 -0.9291318077444695
6651 -0.5977111646641097
6652 0.7697575381352374
6653 0.8689359364103487
6654 -2.4927495094309533
6655 0.6597950823421858
6656 -1.0540664840479768
6657 0.6720259078552734
6658 -0.09202396899236821
6659 -1.7471648559765685
6660 0.3319755207195075
6661 -0.13541939592149313
6662 0.701844671189415
6663 -0.07460040220189385
6664 0.3862278258480106
6665 2.5886143986673615
6666 1.2576259857891312
6667 1.1427427363407703
6668 0.6377244544370423
6669 1.4456511696762147
6670 0.3744620526520952
6671 -0.4070175579472479
6672 0.7575284518359773
6673 0.2519972794602866
6674 -1.084581706725779
6675 0.3241848337769894
6676 -0.16416104267121523
6677 0.8301517705964457
6678 2.1176801004161714
6679 -0.6013705733383896
6680 0.2984434952935869
6681 0.9041158503483688
6682 -0.6999581203641047
6683 -0.5602314334781621
6684 1.597627923768653
6685 0.19107130277092382
6686 -0.2452069038244424
6687 -0.8592618326281837
6688 0.07598265163434095
6689 0.35271779012139753
6690 0.24895050359667148
6691 0.5760141358400589
6692 0.6731819603031823
6693 0.2530892166829116
6694 0.06876492084783774
6695 -0.2717067353896419
6696 1.83011644278046
6697 -0.7271852209791151
6698 1.2874819361138998
6699 1.6130953422851744
6700 -0.5521127122976759
6701 0.22613606353127755
6702 2.829941753970529
6703 1.2338968445843694
6704 -1.337782106641669
6705 0.7025930549763563
6706 -0.0946845104401632
6707 -0.4894028958469569
6708 1.7347849762888834
6709 1.2485416760026478
6710 0.32485282034027674
6711 0.034830521201279274
6712 -0.6467650262957815
6713 -0.9226621893224346
6714 0.9452203732034496
6715 -1.4896375237179382
6716 0.49910221069881644
6717 0.9853552000056147
6718 -0.8888744445068336
6719 1.6977956068799904
6720 1.2672183283236207
6721 2.1768792618736583
6722 0.21953396890827007
6723 0.039446195276401294
6724 0.3996811088024763
6725 -0.05305486655287029
6726 -0.4630219827698741
6727 -0.048073619840853
6728 -1.4798774368503473
6729 -0.5564466361101389
6730 -1.8519658290874597
6731 1.1307770616591772
6732 1.4205917325428155
6733 0.325600698057644
6734 0.6320406077621608
6735 -0.06771303685248498
6736 -1.6422396372248191
6737 -0.1816451737423211
6738 2.6820680037433835
6739 -0.6229587618527593
6740 -1.3078863078799814
6741 0.704358519317742
6742 -0.0072748735610680924
6743 1.0676107387926743
6744 -0.5663178363097325
6745 -0.7426076337365992
6746 0.14770421122805588
6747 1.1112836681515805
6748 -0.03314228410240301
6749 2.8344867392479767
6750 0.9696345709991947
6751 0.4918984435511992
6752 0.2909561203415477
6753 0.3434871169329948
6754 1.1684835476643622
6755 0.704418498296042
6756 1.0259903572812465
6757 0.8574019501301694
6758 1.1756714076143098
6759 0.6432520160101699
6760 1.0842901450081568
6761 1.8030631528537155
6762 -0.6741239139780854
6763 1.6022497854612288
6764 -1.0400955408656012
6765 -0.9170654187988299
6766 0.11157302706721964
6767 -0.1867026461194758
6768 1.6249713496185578
6769 -0.23559483805729436
6770 0.01813548853166607
6771 0.9163894745463599
6772 2.245649119800878
6773 -0.14589815149253657
6774 -1.8685118293721705
6775 -0.23100351170701602
6776 -1.6602205878520708
6777 0.0969814545263526
6778 1.214915447496065
6779 0.7518226466273771
6780 -0.4244233179705146
6781 0.29019525746921937
6782 -0.650662165024729
6783 -0.28772506734312053
6784 1.4373468159090874
6785 0.4987213089804586
6786 -1.7353497285241175
6787 1.1177518837227862
6788 1.4901194978208696
6789 0.18059061728568912
6790 1.1783828138725747
6791 -0.1950906787604051
6792 1.0289796634616888
6793 0.5151950319634186
6794 -1.0638698291910116
6795 0.7014044172467606
6796 -1.1556155600398037
6797 -1.5374462252207346
6798 1.15037459297938
6799 1.1184757708951185
6800 1.1324843356642667
6801 -1.6751239147466246
6802 0.3718100699076921
6803 0.6968943554441465
6804 0.5710061437131209
6805 1.755054183233683
6806 1.8883291559432107
6807 -0.04719647100731699
6808 -0.36657422067805173
6809 -0.5695588736009674
6810 -0.09917511376412531
6811 0.28083807834860175
6812 0.4519002563433769
6813 -1.5671384167339204
6814 0.733111744569181
6815 1.0718871884120396
6816 0.4346544730709032
6817 -0.4086594136492937
6818 0.2732544181061956
6819 1.5445602417058646
6820 0.8346109042054954
6821 0.4006224884291362
6822 -1.0685663714393938
6823 -0.8026599029000056
6824 -0.22983823514120333
6825 -0.3467685784984622
6826 -0.540844726745026
6827 0.9432741635025741
6828 -0.3874939500919651
6829 0.5084036647519523
6830 0.771265577447696
6831 1.0663418421982318
6832 -0.7232874355990678
6833 0.11608833799414754
6834 -0.4139965808443798
6835 -2.878336308095897
6836 -0.4761539118865178
6837 0.6270646357485697
6838 2.381621802432543
6839 1.338741289701149
6840 0.36198718927242884
6841 0.27871136511732647
6842 -0.4615516769288124
6843 0.3611738014360333
6844 -0.40706445395885066
6845 0.08247810313825911
6846 -0.6758734400344959
6847 -1.265610790307219
6848 0.26374328526157603
6849 -0.037588549026070894
6850 -0.08167948277330357
6851 1.2899543402593792
6852 1.9052661033190752
6853 0.26815388997014494
6854 -1.0113019209627336
6855 -0.161118350816484
6856 0.4774514028302756
6857 -2.333417724416469
6858 0.5861332400733607
6859 1.1782395187965056
6860 0.7871318679854494
6861 1.7219610453287666
6862 1.7830359437742878
6863 0.3022638231355733
6864 -0.7032578245691845
6865 -0.8976121945356637
6866 -0.7089992275674036
6867 0.1867517069483973
6868 -1.0536306075321618
6869 0.5102832892205861
6870 -0.005259018609676858
6871 0.583674485023201
6872 -0.5834319003367886
6873 -1.5976321164545861
6874 -1.1445317928390437
6875 -0.6455451094616326
6876 0.6445511991488208
6877 -0.20647560372609577
6878 1.572414063516552
6879 -0.642592856677908
6880 0.2650824635811334
6881 1.2218870308236587
6882 1.9861141923062988
6883 0.24627451934997507
6884 1.9986330564115427
6885 -0.548061331488854
6886 0.35319512735173614
6887 -0.8435140145833876
6888 -1.5161739087714141
6889 1.8795736610942626
6890 -1.224884662668395
6891 -0.5683978558800815
6892 -0.3326527376021449
6893 0.731468242726125
6894 0.488765936553098
6895 -0.5205280949029203
6896 -0.20796101042091894
6897 0.7093384688109073
6898 0.8168583041666874
6899 -0.560015246961762
6900 -1.363686697403496
6901 -1.5714102564763601
6902 -0.5278786680639391
6903 -0.14766192255662702
6904 0.5873207938241465
6905 -0.3232986350097182
6906 -0.3374541763615883
6907 0.20541460437334685
6908 0.19469954922098018
6909 0.5445693777317141
6910 0.14151976228363455
6911 -0.46760705771295547
6912 1.012567613869846
6913 0.4958507127612315
6914 0.45993035154282247
6915 -0.20244829464868988
6916 0.3195819715124037
6917 0.1000980748129845
6918 1.768962068372358
6919 -0.902640009896991
6920 -1.2696065479085472
6921 0.7205158690738411
6922 -0.6059562595685032
6923 -0.32685102425956974
6924 0.9495850779468161
6925 0.5961883534759744
6926 0.030570985130644893
6927 0.5136559563190763
6928 0.9204200482308886
6929 -1.110475120217471
6930 2.0718249197284138
6931 -0.3801301070079235
6932 -1.3074291576161217
6933 1.5843026540851464
6934 -0.4284564208027294
6935 -0.1237624706260447
6936 -0.27354437405514387
6937 -0.3923770763721288
6938 0.03804864540685892
6939 1.1359647655799905
6940 0.2865261455604115
6941 -0.9408778871348241
6942 -0.08958469134846712
6943 1.120552064381325
6944 0.7844683329250967
6945 -0.1828199801389141
6946 0.9363812846090319
6947 1.3689258061585163
6948 -0.0005667783397469994
6949 0.16824944744003154
6950 0.9587307023006565
6951 -0.8863713516858448
6952 -1.1397470371672598
6953 0.18304038094531605
6954 0.6414170693753669
6955 0.8128015983100109
6956 0.09568701727706652
6957 -0.5830739217307728
6958 0.7213303725671855
6959 0.40837368863413587
6960 -0.758557989314576
6961 0.8123832914745
6962 -0.4222993159931349
6963 -3.1807288040403576
6964 1.4059675664656912
6965 -1.2178532974369087
6966 -0.273635341184398
6967 -0.0252812023952781
6968 -1.5192250982218054
6969 -0.39110249759244925
6970 0.5393711751625573
6971 0.1314697839334126
6972 1.2487337268414471
6973 -0.7222476881737728
6974 0.5998981995333807
6975 -0.8462614065080183
6976 0.8330331517234127
6977 1.8345545541954922
6978 0.5858255868233453
6979 0.9884228255653327
6980 1.3063671737927534
6981 1.2917337811833112
6982 -0.10312312168983868
6983 -0.16813884404938628
6984 1.123565512320836
6985 -0.059998035059822215
6986 -0.5772527117374846
6987 -0.3404147144394459
6988 -0.6764410997131745
6989 -0.7426098434655384
6990 0.6435281357585992
6991 0.6012862372469173
6992 0.03907426203910795
6993 -0.8330249325575065
6994 -0.027273388531542802
6995 1.421865851743515
6996 -0.27862725231581675
6997 2.0205990872806416
6998 -0.035397893872974116
6999 0.2604493767392649
7000 0.9602048159548086
7001 1.4075453396075313
7002 -0.4412686437014189
7003 0.7635063901474409
7004 -0.8952069582469872
7005 -0.37471482511674536
7006 -0.9077557225692903
7007 0.6729930083439696
7008 0.6797543950615967
7009 1.3623376519584236
7010 0.31437579818993966
7011 1.483026645623872
7012 -0.9219889562872904
7013 -0.6784045604915353
7014 -0.9482208841365369
7015 -1.2770546118754857
7016 0.38610590800318323
7017 0.2671362930892493
7018 -0.6828871026524747
7019 -0.3735267915059272
7020 -0.865646031602479
7021 0.19001324158584296
7022 -1.0327411516104017
7023 0.48350096169174017
7024 -1.920750381305959
7025 1.3506420253609281
7026 0.06104612036128716
7027 0.16941553407477888
7028 -1.1438638896352593
7029 1.5578235290364053
7030 -0.5777513164898815
7031 0.23398630906509188
7032 -1.494089149658767
7033 1.6636098719887107
7034 0.2930206236812479
7035 0.31623574676374805
7036 -0.390640604919296
7037 1.4343772137728554
7038 0.27634017541230765
7039 -0.016358730783698854
7040 1.2662085457998884
7041 -0.21522292380303357
7042 0.16889029738654654
7043 0.06945326473140921
7044 0.10610383587127988
7045 0.7208433302459213
7046 0.005400291340972804
7047 0.4020699441980699
7048 -1.4645082075739908
7049 1.4850850341615436
7050 -0.6836984520428289
7051 1.469634951293615
7052 -1.1095126237391
7053 -0.697561201244337
7054 1.5500552769867637
7055 0.42987988991285037
7056 1.6386960295550868
7057 -0.1726995685535826
7058 -0.22763882007083402
7059 -0.026604148217301282
7060 -0.24616250361397757
7061 -1.717973856397969
7062 -2.2381368384993343
7063 0.5237026578226495
7064 0.6679284459840983
7065 -1.0254332155850165
7066 -1.2136529884113343
7067 0.6025979749805516
7068 0.7844857922685148
7069 2.6346211073109504
7070 0.5246502904141844
7071 1.3660698369923416
7072 -1.0064960354948385
7073 -0.2658834356286489
7074 0.49746200180873595
7075 -0.9151219132053474
7076 -0.6736253633212865
7077 -1.2486884326697878
7078 -0.8736937309214892
7079 0.11357814270780174
7080 0.173155906074047
7081 0.8651521984213492
7082 -1.0738535195159045
7083 2.436307701141342
7084 -0.6451884780974401
7085 1.393603851737237
7086 -0.8759642374069423
7087 0.28216996579066395
7088 0.11781838687351195
7089 -0.860980616514522
7090 1.0298743167681155
7091 -0.5610318628773568
7092 0.815485749810213
7093 -0.8543222388934468
7094 -0.45137024352132227
7095 0.19160445883679048
7096 -0.08751669462789508
7097 0.13710403928170073
7098 0.68158419151947
7099 -2.568330431579549
7100 -1.9800115188667222
7101 -0.6423113276285937
7102 -0.05414062854381007
7103 0.14964533840372704
7104 0.2607459969364424
7105 1.8286486521185794
7106 -1.4446016662816186
7107 -0.9972289774688816
7108 0.5031552349457127
7109 0.43803227604490774
7110 -0.5918647181968552
7111 -1.3927086721946373
7112 -0.38154175302638793
7113 0.30677461771993325
7114 -0.9231107588212114
7115 1.372783593313023
7116 0.08909655997327239
7117 0.39096998726891274
7118 -0.08728608817638095
7119 -0.6608009985311504
7120 -0.4320512420919933
7121 0.40217828498308056
7122 0.466114734775555
7123 1.10353286343219
7124 -0.9694892977637839
7125 -1.1941739587510967
7126 -0.3185874197367829
7127 -0.8847533685811702
7128 -0.3585440928281256
7129 -0.11981883038851453
7130 0.9605540098089074
7131 -1.3940246892161239
7132 1.4595251235553848
7133 -0.7321484059470744
7134 0.009396973038531523
7135 -0.11978391569884754
7136 -0.3598368631585557
7137 -0.5282480873416648
7138 -2.0781530665173245
7139 0.18115836466913174
7140 0.8194352341440674
7141 -0.4083609008341469
7142 0.47949293440138335
7143 0.14834579394621752
7144 0.5293797307914988
7145 -0.5537867017397561
7146 0.45457885125795555
7147 0.3088190001529571
7148 -0.07696316947320143
7149 -1.328183874853802
7150 -0.31081421419124333
7151 0.14549218507095046
7152 -0.2755496504959101
7153 -0.3006030011905748
7154 0.6151807199951804
7155 0.7529049489386213
7156 -1.4784568039806447
7157 -0.8746846959872251
7158 -0.28491888060121356
7159 0.2619159471250825
7160 -0.5121878162547093
7161 1.49620049117256
7162 0.8348224159045211
7163 -0.6818134947549198
7164 -1.7714922058000062
7165 -0.6997167346557724
7166 0.22196912401415428
7167 -1.9293732629188438
7168 -1.4608621121247887
7169 -0.5254183866217339
7170 -0.9857653041242359
7171 -0.6463491632713749
7172 -1.8146149315413844
7173 0.03141354974289571
7174 0.07063254635878016
7175 0.16793532209985268
7176 -0.7215185148492238
7177 -0.3921191921993171
7178 1.0984673235502802
7179 0.5425984489740181
7180 -0.10574334124139732
7181 0.12203109762585161
7182 -0.35698625573275
7183 1.6893986448391256
7184 -0.14717166106067558
7185 -0.3619497180019551
7186 -1.0987353093011563
7187 0.23328723850303992
7188 0.4531283561078159
7189 -0.08702788488914182
7190 -0.06936610994535958
7191 0.9259533244816812
7192 -0.3319312156412979
7193 0.3971572677842905
7194 -1.772308971749282
7195 -0.5814265170771895
7196 -1.5148825371715997
7197 -1.514553717060912
7198 -0.9087905858039235
7199 0.6281488901514568
7200 -0.4790218717333555
7201 1.205936642706175
7202 0.11736216385830475
7203 -1.4986698866506185
7204 0.859174031819025
7205 0.07894540839859945
7206 -1.014680395045464
7207 -0.15901415090439588
7208 0.5752391515651663
7209 0.3754061552500868
7210 -1.1464408960066013
7211 -0.8290017973060416
7212 1.1314784495330203
7213 -0.04172890730504688
7214 -0.7648310806354873
7215 0.8269016931239761
7216 -0.7124482533546673
7217 -0.7918687469649757
7218 0.7675024836204334
7219 -1.079542749943191
7220 0.08326232165392064
7221 -1.3811861990380983
7222 1.956382540273449
7223 0.4090796322794679
7224 -1.0073186458584842
7225 -1.275103697375317
7226 0.9450876753687714
7227 -2.0185094434492172
7228 -0.7991917847386103
7229 1.1910292057378138
7230 -1.1633630669622452
7231 -1.1072532078964585
7232 0.7013776440918089
7233 0.12886651519348108
7234 0.2508828518918528
7235 -0.24643296346932286
7236 -1.1645909818774083
7237 0.8827621435135022
7238 -1.749345757841905
7239 1.567040540382693
7240 0.5362130206811279
7241 0.8525147003072411
7242 -2.1587327374060608
7243 -0.7698113140861862
7244 1.361865121810783
7245 -0.5213634885839011
7246 -1.906303426782816
7247 0.24242176590495373
7248 0.524358975361567
7249 -0.6743003363972806
7250 -0.1582534191145145
7251 0.05736674566768434
7252 0.3790575109043051
7253 0.12559547634598597
7254 -1.109048745140777
7255 0.013611736387491337
7256 0.5685681258946171
7257 -1.4504266310022285
7258 -1.4244907846486685
7259 -0.14514602465722232
7260 0.5002500020288164
7261 0.5259761720642734
7262 -0.31123558936156226
7263 -1.6553558417496463
7264 -0.2598992565729091
7265 0.7453252864761414
7266 1.6730523400955444
7267 0.13873837167887285
7268 1.1869228322402545
7269 0.09552805842338438
7270 0.03066409218620554
7271 1.274870826309751
7272 -0.33030488832608124
7273 -1.648836191549507
7274 0.7499246927609252
7275 0.038410580670436616
7276 0.3903039399365209
7277 0.575656509154171
7278 0.0930826632312559
7279 1.221107356635095
7280 1.101374876359009
7281 -1.0140558767307692
7282 -1.462521958438685
7283 -0.5768113516759479
7284 0.9424672947828064
7285 -0.9694261722544835
7286 -0.05400568965501517
7287 -0.27371754648004204
7288 -0.6391518350525155
7289 -1.7508019837900628
7290 0.20453849174152322
7291 0.25534658547637545
7292 0.0919538712960737
7293 0.8704757507149191
7294 1.4363360498896318
7295 1.3636125333826945
7296 -0.28608395137027604
7297 0.5906537651641104
7298 -1.4953140708836614
7299 2.19428475454622
7300 -0.9998081305832641
7301 -2.1613065444149475
7302 0.004416097554761434
7303 -0.06518406990890378
7304 0.539551621879809
7305 0.3222666327436999
7306 -2.21430622072158
7307 2.057960692593112
7308 -0.9913263807937736
7309 0.5188807584138097
7310 -2.433055820047776
7311 0.4462113089732981
7312 2.319187509981117
7313 -0.1662029101147346
7314 0.2109764684920914
7315 1.0250647313744008
7316 1.4261868434182383
7317 1.12285724344431
7318 1.0000605228639443
7319 -0.531101021317918
7320 1.1420913082597821
7321 -0.1705926486833997
7322 0.5372697768200294
7323 -1.0938151217626275
7324 -0.9797396358946217
7325 -1.2200998734717532
7326 -0.9597820264637364
7327 -0.5357952696355528
7328 -1.4992391704612378
7329 1.4721379688801426
7330 -0.7158675201794568
7331 -0.7302595739486739
7332 0.2012707500904598
7333 0.11400320227688351
7334 -0.1422988912165143
7335 0.2950947286993021
7336 -0.45021970865816696
7337 -0.4878219933205786
7338 0.6382504350023954
7339 -0.15573230120417905
7340 1.5706795528744752
7341 0.6363028690886888
7342 0.6645408516290199
7343 1.7749430076721606
7344 0.4996530713788454
7345 0.39931461028874116
7346 0.8215118637803934
7347 1.6087361916573262
7348 0.6778178949700994
7349 1.2462536644492863
7350 1.1687370317462003
7351 -0.9734469820682577
7352 -1.2441577837482405
7353 -0.2694572101228953
7354 0.004047313653733112
7355 0.41727049647876807
7356 -1.5078530548858926
7357 -0.6946230236551358
7358 -1.4548070698331859
7359 -0.1908321642592934
7360 -1.0628768553910561
7361 0.23547804680529416
7362 -0.944902404505108
7363 -0.25852727039561235
7364 -0.8089637795549877
7365 0.32744419527098023
7366 -0.1530392904624365
7367 0.8019134705945568
7368 -0.3863810332858574
7369 -1.151639310680845
7370 -1.3495138887476568
7371 0.3646380575195378
7372 0.7061123704202749
7373 -0.11865425443041126
7374 -1.5864322934966992
7375 -0.24802231077373108
7376 1.1488926668319994
7377 -0.2973580679172958
7378 2.0623870222489877
7379 -0.9433584069009848
7380 1.6598378931727358
7381 -0.21087577385638404
7382 -1.6419108127928805
7383 0.7223252135279372
7384 0.7349795997670641
7385 -0.24458244599053525
7386 0.19360291519601758
7387 -0.8870030139879528
7388 0.42746951507856124
7389 0.2740803711460113
7390 -1.039710857744429
7391 -0.7661598761325122
7392 -2.823759376684161
7393 0.583816361287348
7394 0.340280804715301
7395 -0.3386553829892949
7396 0.4400176135447189
7397 -1.1689162827480093
7398 0.3999667790010983
7399 0.8065044710301792
7400 1.3948384974836159
7401 -0.5511664519596751
7402 -0.27096116832571254
7403 -0.2883280820489405
7404 1.2743276236081058
7405 1.557898046470025
7406 1.7445907278676456
7407 0.8354778366862285
7408 -0.18654813178362772
7409 1.5579054473613747
7410 -0.4297743986647291
7411 2.336334463470091
7412 1.7165476013638736
7413 0.8263018478587101
7414 2.460882842761952
7415 -0.3746673017823099
7416 -0.5842135418293409
7417 -0.9745307818814931
7418 -1.7056365790085117
7419 -0.7358086106929509
7420 0.681034133843065
7421 -0.8275561420770868
7422 -0.8144683506190898
7423 -0.28909630600467684
7424 -0.5542510029880533
7425 -0.4171143167929047
7426 0.38243287602999637
7427 1.3056637670112974
7428 -0.3437483180979361
7429 0.8377902523690716
7430 -1.0408369264896846
7431 -0.6791634309451725
7432 -0.8878053244008312
7433 0.5525584424671318
7434 -2.217627948787564
7435 -0.20117406532554089
7436 0.6008728981559919
7437 -0.3777955219277333
7438 -0.09401489847232758
7439 0.27133526889198445
7440 -0.2504427862060632
7441 -2.3057452623330272
7442 0.1959028085844183
7443 -0.36086672022902155
7444 0.5453507201882597
7445 0.3941297671918244
7446 -0.5553257993940688
7447 -0.7034801103558797
7448 0.12255390626044957
7449 0.14193351937762533
7450 0.17694754224169898
7451 -0.08648523632465224
7452 -0.29435784451528696
7453 0.4610923109249792
7454 -0.2145955202150187
7455 -0.8325447747459656
7456 0.865576312476114
7457 0.2851562217872119
7458 0.202582136114659
7459 0.4314583799533773
7460 0.5650111319696897
7461 -1.2453590063903675
7462 -0.06581084100225357
7463 -1.391048031939503
7464 -0.7103392400899983
7465 -0.904504074428677
7466 -2.638721073567964
7467 1.6812881813201688
7468 0.8476132239003394
7469 -1.3128999873500367
7470 0.15498988927195667
7471 0.7596719650057954
7472 -0.4961352623366523
7473 0.8817895419667515
7474 0.607056835028125
7475 -2.144906925941766
7476 -0.44570963187475693
7477 -0.6984749593457179
7478 0.2661100566313665
7479 -2.073670829275855
7480 -0.713164083596979
7481 -1.200346969334139
7482 0.1647044773648773
7483 0.21023558919552054
7484 -1.2140603426040457
7485 0.5405871365997059
7486 -0.41684103659868116
7487 -0.4238642628706208
7488 0.672164861925913
7489 1.1433909742570358
7490 -0.6170491157526606
7491 0.03498309898658274
7492 -1.2167185679941228
7493 0.6587976788778303
7494 1.3786354460772539
7495 0.47042611925527644
7496 -0.06195288773153655
7497 -1.0077113509467026
7498 -1.697753709093141
7499 0.3501712989771372
7500 2.3308305583357285
7501 0.32661089476010113
7502 -0.5558221571662831
7503 -1.1059276480023537
7504 1.591347936525808
7505 1.1734865383124247
7506 -1.8689600368479948
7507 -1.0863959829414083
7508 0.9950774271211925
7509 0.6733191233355142
7510 -0.9678864613251814
7511 1.6866375812309922
7512 1.8786884606097403
7513 -3.118611141531362
7514 -0.7312764095815897
7515 0.6917751475257561
7516 0.21317075936518293
7517 0.8243748327314997
7518 0.3804233041729715
7519 -0.4683261587761654
7520 0.8582298697009839
7521 -0.7170600002273146
7522 -0.39343591530155747
7523 0.6345366986249221
7524 -0.19865491150201908
7525 -0.26900239205319415
7526 -1.0282056489678124
7527 -2.4231539432171134
7528 1.2273852518107475
7529 0.7562768124095564
7530 -0.32400709986794807
7531 1.2363019082765743
7532 0.31561413338020083
7533 -0.8728739108845451
7534 0.60961161666724
7535 -0.2626438276741979
7536 -0.8977482795547668
7537 -1.4440381967996943
7538 1.2004092513927123
7539 -1.0414830108010753
7540 0.45388174179329943
7541 0.5706088042615314
7542 -0.7828965799588505
7543 -2.0244128555834147
7544 0.496559565730072
7545 0.6382253733471746
7546 -0.11028603793294996
7547 1.0446343872352037
7548 -1.073840345187349
7549 1.488573284814611
7550 0.5195373822084565
7551 0.8947863953494429
7552 -1.280643873326985
7553 1.3206571300760068
7554 -0.09029348861708963
7555 -1.0559191979434668
7556 -0.45310935151320747
7557 -0.6461801064810021
7558 0.07849184055880878
7559 -2.4727844024106296
7560 0.7601988967449749
7561 -0.1442116203025584
7562 -0.5533635977608291
7563 1.1047415816519526
7564 0.19048511858558762
7565 -0.6159753292230304
7566 1.1479602455593796
7567 1.4167053150503555
7568 -0.6620301448207762
7569 0.9249696238683836
7570 -0.9410381159787237
7571 0.34549521845257664
7572 -0.4692190988082681
7573 -1.3575385577743775
7574 1.9264938247026282
7575 -1.0312681322085446
7576 0.7271078184510806
7577 0.1245978195259472
7578 -0.46024593246963363
7579 -2.4208217882657572
7580 -0.10773547890559594
7581 0.7693571492658279
7582 -1.0342415692261573
7583 0.02025504167482834
7584 -0.4577179250407747
7585 -0.08464036070490281
7586 0.4777161542044395
7587 -1.6199449024533852
7588 1.086389322229469
7589 -1.2196201630152952
7590 -0.6313731418919394
7591 1.6401065471060137
7592 -0.05251390133256161
7593 0.06035670368590396
7594 0.17080600440155402
7595 -0.14320160359248016
7596 0.29900001879200666
7597 0.5178932297002881
7598 -0.6769900500403144
7599 -0.7150559476380199
7600 1.383331431948416
7601 -0.9720507281642475
7602 0.6209598957896741
7603 0.744726812185633
7604 1.5086139640700447
7605 -0.7520354503417691
7606 2.2683016339033997
7607 -1.1395253591513264
7608 1.470771295270655
7609 0.5371859416611152
7610 -0.783375259238666
7611 -0.45310014730819537
7612 -0.20501256449647803
7613 0.5556062493435493
7614 -1.0693893707762483
7615 1.236490674750767
7616 0.26082771860582743
7617 -0.9965557849828902
7618 0.4171053802998712
7619 1.0303773909450726
7620 0.21098104409139976
7621 0.6540799134797233
7622 -1.0628361252513179
7623 1.4855911150595817
7624 0.81506028943823
7625 0.9045857620851596
7626 0.5957472492218469
7627 -0.05203250446436891
7628 1.058449427442543
7629 1.180324648059319
7630 -0.2615537036339655
7631 -2.1455682763356587
7632 -1.6082478954286554
7633 -1.3762544686575622
7634 -1.2025237344776323
7635 -0.5404789346073546
7636 -1.605396714305204
7637 0.27818669193300133
7638 1.7016836598214107
7639 -0.4146317692604843
7640 0.4216223174635355
7641 0.11291559226258825
7642 1.6446835396379655
7643 -1.0750184931854236
7644 1.1776602430841314
7645 0.956341772156781
7646 -2.164912170426181
7647 -0.6074938537279178
7648 0.10807112299709619
7649 1.1128560103854181
7650 0.5787104703812371
7651 -2.517787490109775
7652 -0.7206296269079723
7653 -0.7812148007072767
7654 -0.10404720833374201
7655 0.48084752140659637
7656 0.8969800220542231
7657 -0.2550186173714604
7658 -0.645657898641155
7659 1.219727771219472
7660 -0.014291249148369824
7661 0.17847980920873305
7662 -0.18575451992659137
7663 -1.0596553234016917
7664 1.330738666761001
7665 0.9690878616350042
7666 0.0176361733453591
7667 0.0812601462376701
7668 -2.023739225188533
7669 -0.20145456302169892
7670 0.21359025946806484
7671 -2.0008149798657127
7672 0.8009912580754495
7673 0.4384405611932915
7674 0.46698219725475326
7675 0.5002551371670693
7676 -2.0657612413515944
7677 0.5647558820959875
7678 0.4292204175256209
7679 -0.3555030841969801
7680 0.6838032402473003
7681 -1.6842028209212536
7682 0.5247766722925549
7683 -0.5972284917357884
7684 -1.1335712839967196
7685 -1.6425542944342346
7686 1.4415358133256042
7687 0.514307265050814
7688 -1.7618392871248556
7689 0.26752377949251654
7690 -0.33683126665984275
7691 -1.6651155745016697
7692 0.508536215609252
7693 -0.25727130301262235
7694 -0.2090928335610442
7695 -0.28971604325002803
7696 -0.6835532329289566
7697 -0.6091961209844867
7698 1.6314435266698772
7699 -0.6629463496298024
7700 0.732549618050298
7701 1.022438295871515
7702 -0.521939514050651
7703 0.4238182910983345
7704 -1.3381630636839854
7705 1.0527989497688095
7706 0.03953852222143677
7707 -0.774315764889505
7708 0.13292079082960845
7709 0.29926789654043595
7710 -1.39131324421426
7711 -0.7627300056403042
7712 0.29668647541115567
7713 0.4209529422440554
7714 -0.6272711296727869
7715 1.21530636944104
7716 -1.1431283347937007
7717 -0.023667951571834583
7718 -0.433734019385065
7719 0.8844667948458074
7720 -1.2100358081074982
7721 -0.6454675347877714
7722 0.6512811174993993
7723 -1.2791461986561972
7724 0.9799165050301033
7725 -1.4947616652970759
7726 0.771015320073112
7727 -0.04835099577556534
7728 -0.29232087097862014
7729 0.7024278443980944
7730 0.5315766990749146
7731 -1.4240616193615618
7732 -2.302633043194583
7733 -0.18137186311774034
7734 1.528724103271808
7735 1.1805665172203923
7736 0.6434582982846073
7737 -0.265551379186075
7738 -0.5702119967217242
7739 -0.020293631949573655
7740 0.9446124333453754
7741 0.10271469106307933
7742 1.2226542064304695
7743 -1.1890750460312027
7744 0.42396164124975094
7745 -0.2494393221803064
7746 0.27662532134676593
7747 -0.04507491197447357
7748 0.8909823134876701
7749 -0.08738093323519518
7750 0.7414625098424702
7751 -0.45348454328338506
7752 -0.24203433623083456
7753 -0.9115543761774341
7754 -0.45854717682028623
7755 1.0513437507849028
7756 -0.2416312507974808
7757 0.5421058618166598
7758 0.11096628050374689
7759 -0.6195910488141542
7760 0.15075860387566412
7761 -1.8754066809573406
7762 -0.8815357759909599
7763 2.5208915043416154
7764 0.5993972260617367
7765 0.4613922451386279
7766 -0.7717051458446827
7767 0.1348019730306237
7768 3.1727333271956892
7769 -0.6036190226121235
7770 -1.2430181279173051
7771 1.130469552786032
7772 -0.8593507902314225
7773 -0.7410278299948688
7774 1.3055486524781188
7775 -0.37589657944792215
7776 1.355249983859334
7777 0.35844853994517795
7778 -0.040291530296240934
7779 0.7833692203981762
7780 1.065543337575209
7781 -0.5436903443398415
7782 -1.0360637524449265
7783 -0.7890316449634412
7784 1.334052129854775
7785 -0.5413941180991702
7786 1.936828848010109
7787 -0.5250730641918029
7788 1.2432459122104633
7789 -0.8258846656724473
7790 0.05074333059432885
7791 1.4272883780121253
7792 0.7318279967654865
7793 -0.055457468325607724
7794 0.7659474326694191
7795 -0.1489043583994381
7796 0.39220846680862337
7797 -0.2565321216783345
7798 0.8712658295317062
7799 -0.9682582629906172
7800 -1.6818986494045474
7801 0.14462166532602705
7802 1.1858629932378308
7803 1.129380295787227
7804 0.7952930323122867
7805 -0.9429450592784685
7806 1.1537522841906518
7807 0.4714318898391239
7808 1.1381478296265066
7809 0.1251252535169448
7810 0.4586720028292219
7811 -0.4149780491424256
7812 -1.1021999751943945
7813 0.13271658635929298
7814 2.497679009680414
7815 0.8586559053703574
7816 -0.8061509988086406
7817 -1.721052508304956
7818 1.1667186305308193
7819 0.3176666120640223
7820 0.7446711372310483
7821 1.5854202946928921
7822 0.7801706660687522
7823 0.04424414279694314
7824 -1.4669813159964182
7825 -0.4817943266782205
7826 -1.0887139576521707
7827 -2.786255542857832
7828 0.733733147880452
7829 -0.9101466982867512
7830 0.013178358904298892
7831 2.073667347634037
7832 0.9027218263265032
7833 0.47607100515021294
7834 0.7053978114998508
7835 -0.14733133504341572
7836 -0.7411582094511973
7837 -0.16998260962154493
7838 -0.7689584680289041
7839 0.05976773674675648
7840 -1.438505174940228
7841 -0.6378488746375487
7842 1.7023586177302463
7843 -0.11129083463278572
7844 0.786430407273319
7845 2.0711353157527315
7846 -0.007262088767200334
7847 0.5673420424515813
7848 -0.6671627673793975
7849 1.1815919000346933
7850 -0.23559353053540685
7851 -0.16654428685972245
7852 -1.1968382841956164
7853 -0.6344454415288988
7854 0.2726018228423726
7855 -1.0806120562740327
7856 0.7106203451167286
7857 -0.48035537570731396
7858 2.6954248741653815
7859 -0.4069634427057081
7860 0.8133878913919494
7861 1.8345683212288888
7862 1.0279033185520436
7863 1.6038778202363735
7864 0.33035263068224996
7865 0.2491380034172394
7866 0.3670496778335295
7867 0.32246808365410545
7868 -0.11842900757652443
7869 1.2519024315754397
7870 0.015219417280796992
7871 -1.2713481974352228
7872 1.3949287504236363
7873 0.6902550821001866
7874 -2.0068975365288635
7875 0.4858153299595424
7876 0.283235875800921
7877 -0.25231289441360794
7878 -2.387462574504308
7879 0.9085543704488934
7880 -0.292153885005877
7881 -0.13284143375085464
7882 -0.8027586059165309
7883 0.8953085932435898
7884 0.5441548596661182
7885 -0.1043700512516833
7886 1.8944291608168815
7887 -0.2891476463344786
7888 0.0020377328620299505
7889 -1.091615917760936
7890 0.027273957981956837
7891 0.4058231095870119
7892 -0.47930736420195125
7893 -0.14458338451042857
7894 0.9410988697952051
7895 -0.4015805152984035
7896 0.22599260972997812
7897 -1.1817565248351012
7898 -0.6589068280247407
7899 0.0264699523818424
7900 -0.31285289494673
7901 -2.073768884813722
7902 0.12942065645906398
7903 1.0209826409527971
7904 -0.4767723780776304
7905 -1.4013168362380894
7906 1.2878919237688298
7907 1.4050223205458379
7908 -0.37726536093538354
7909 -1.3682673597304944
7910 0.34561789000239945
7911 -0.5485274639732441
7912 0.31210031699906965
7913 -1.1161073468749612
7914 -0.3338484918508252
7915 -1.4741004901183017
7916 0.6360311923825793
7917 -0.15069845808054763
7918 -0.5538193675492504
7919 -0.5149634107321664
7920 -0.08023268679025423
7921 -1.2758796157566212
7922 1.187530879997063
7923 -0.25202512306489594
7924 -0.7723069909519017
7925 -3.695163437494644
7926 -0.7607389788455119
7927 0.6057118711825725
7928 0.9616302708238614
7929 -0.2982881948969899
7930 1.8643368651143992
7931 0.7206732788628947
7932 -1.054711622326999
7933 -0.10942941222340058
7934 -2.683653800234208
7935 -1.3839003403254775
7936 0.2265086742138771
7937 -2.195620728989903
7938 -0.30443270110918935
7939 -0.6927668580440272
7940 -0.7988482030669048
7941 0.8818426074890471
7942 0.7165633030707803
7943 -2.0881654987691065
7944 -0.3065085536615391
7945 0.2276290498686668
7946 -1.1237302371102216
7947 -0.36798230063650317
7948 -0.05543621048551087
7949 0.7089285126257043
7950 -0.3732067619931625
7951 -0.8635009184443574
7952 -0.6864488796697729
7953 0.17757270778100254
7954 -2.896937949288362
7955 -0.08106045621727517
7956 0.35988577319031284
7957 -0.8600178838067516
7958 -0.9784495132870354
7959 0.27167371588326894
7960 1.4435579516540185
7961 0.22275674212041666
7962 -1.0065801331695634
7963 0.5922305739565865
7964 1.3007229139903491
7965 0.4160171642760721
7966 -1.0501593954694501
7967 -0.17949540538959155
7968 0.5034963158493626
7969 -2.031724268760821
7970 0.6780177475185103
7971 -0.8102766185677129
7972 -0.6695483008798911
7973 -1.4763847778504406
7974 0.292375464920235
7975 1.158834941049265
7976 0.5124451788347789
7977 0.9155545149522413
7978 -0.5024594958108138
7979 -0.9968774404396638
7980 2.3370878651922697
7981 0.7928602726853072
7982 -0.5715089356031197
7983 -0.0030405981210853113
7984 -1.3807761246504637
7985 -1.764966548681595
7986 0.0730428552722274
7987 -0.39394848863329396
7988 0.8080672145227544
7989 1.246500262986538
7990 -0.19512443157211298
7991 0.26601918712732775
7992 0.03724658187305762
7993 -0.1886154147058795
7994 -1.3179226869708305
7995 0.6901054157184897
7996 -0.2510216448588106
7997 0.906540619813372
7998 -1.039549774583237
7999 -0.0418719143382084
8000 -1.0625919415894691
8001 -0.12843399683561593
8002 -0.1558650673666692
8003 1.1253463374733639
8004 0.9765307902513293
8005 0.4297957224926949
8006 1.273103171740315
8007 -0.7058669520863352
8008 2.3019697501217924
8009 0.849876313371062
8010 -2.3839516199576742
8011 0.6214450747049287
8012 2.8931435612626677
8013 -0.602595626787113
8014 0.49812008811864994
8015 -0.5415874522904962
8016 -0.791197065689021
8017 -1.8993284964348882
8018 -1.4995160255109385
8019 0.8167073201795
8020 0.681300754506287
8021 0.07553653690778249
8022 -0.9990445962559283
8023 -0.9273095417421586
8024 0.23572902636217793
8025 -1.461342687289808
8026 -1.065708510415691
8027 -0.7197838628975405
8028 1.1814633297857868
8029 1.3582715209711653
8030 1.1554570943149884
8031 0.5258649965097627
8032 -0.1506545175139474
8033 -0.02459679653463339
8034 0.003930897882553669
8035 0.5789944261354286
8036 -1.5427311163160156
8037 -0.5146120421782059
8038 -0.3342088490282989
8039 0.11505867541678101
8040 -1.157368525093753
8041 -1.0991382134262817
8042 0.3017831909986894
8043 0.18417730595972567
8044 -1.0075473894699694
8045 0.7971556652200338
8046 0.7759248743494865
8047 -0.6965919884155611
8048 -0.21860734483335478
8049 -0.5374552517408794
8050 0.9461577449049511
8051 1.1855122002958605
8052 -2.218055122053532
8053 0.8223903031374004
8054 -1.1047902292681597
8055 0.18680288534409495
8056 1.3694995327691353
8057 -0.3299777123241739
8058 2.3094536330568247
8059 0.1222274936513707
8060 0.437908211616387
8061 -0.5203458901839356
8062 0.7671032622891606
8063 -0.35682943225690933
8064 -0.44264254989938057
8065 -0.9751017744719997
8066 -0.17799283565803478
8067 0.162088838391185
8068 -1.1098626003197711
8069 -0.5156276027428658
8070 0.5134752852053144
8071 0.4961357417121393
8072 -0.6872897712917104
8073 -1.0131220893222526
8074 0.2074803996548862
8075 0.393075452026111
8076 -1.3837150167053769
8077 -0.896785131168705
8078 0.7969544493459831
8079 0.5642319327855078
8080 0.3172398094947434
8081 0.5487803435637945
8082 -0.543632443547271
8083 1.6886102739172293
8084 1.5085497562473622
8085 -1.4347075159562053
8086 1.8004296509590836
8087 0.7728005337367814
8088 1.0600297846154585
8089 -0.12502195072851088
8090 2.1580023908188846
8091 0.20571418329174856
8092 -0.6480117811902827
8093 0.1465086099129743
8094 0.09031931209768145
8095 2.5534321381930387
8096 -0.5664165082680123
8097 -0.8091356805439259
8098 1.47170515522338
8099 0.4133364258033943
8100 1.0012764505023835
8101 -0.8585874666114223
8102 -0.9468981704840183
8103 -1.3014797735996144
8104 -0.12647613882518555
8105 0.5735295646956888
8106 -0.43572266753774175
8107 1.0804964644980506
8108 -1.797547096171879
8109 1.5986770404929727
8110 0.9348885752470367
8111 -0.3307551497810962
8112 -0.23167700154285886
8113 0.39759811054094574
8114 -0.5857731393364245
8115 1.0821997081778414
8116 -1.0898361459170847
8117 -1.693951296564022
8118 0.9911037107659904
8119 -0.9199174359371696
8120 -0.5777119251020111
8121 -0.024201773629920265
8122 -1.1424120589339066
8123 -0.634763812645792
8124 0.6514410234978557
8125 0.32259257164733574
8126 -0.43078731976916185
8127 -1.7120667018366953
8128 -0.7669166867425026
8129 0.3430885023992544
8130 -1.0454324769543228
8131 -0.09100729194061712
8132 -0.6727197555079657
8133 0.0596902003905724
8134 -1.04265250840946
8135 -1.173407098245179
8136 0.5626546594689675
8137 -0.1426818057479271
8138 1.1647884685681547
8139 -0.14647156343767276
8140 0.6295760203365517
8141 0.2301654652635726
8142 0.9552575797921409
8143 0.06783315913612696
8144 0.07438670504635765
8145 0.10751012458774173
8146 0.04072109129045107
8147 -0.2411017071119758
8148 -1.397452326862084
8149 0.7482345184300304
8150 -0.5390707775624728
8151 0.6987860518609638
8152 -0.6613971331719389
8153 -0.8202982126618465
8154 -0.43976311613289193
8155 -1.6055460921795317
8156 -0.07368172054102741
8157 1.0476590682812599
8158 1.4341289912655575
8159 -1.3259818900253
8160 -1.3067847645758477
8161 -0.4536305145682596
8162 -0.6484991581385448
8163 -0.9581927622961273
8164 0.3817375639963814
8165 0.9322184563570712
8166 -0.12645150246661616
8167 1.0346130164256164
8168 -0.13002211180902917
8169 1.3942341381410912
8170 0.34777448294881985
8171 -0.12600717293402344
8172 -0.9859297799110522
8173 0.7297957019123738
8174 -0.14975098076555196
8175 -0.6205561658078734
8176 0.27766304570587763
8177 0.693271243433083
8178 0.48821455012847165
8179 -1.769460289851429
8180 0.25519908425799825
8181 -0.650303831763827
8182 0.3422732402626971
8183 -0.4775193941477147
8184 -0.2419622709800344
8185 1.6191119169790391
8186 0.3223337849952693
8187 -0.8909250573692801
8188 -1.1431282625782688
8189 0.26183663393742856
8190 -0.5339317172942424
8191 -1.0894474256183413
8192 0.2660789211726658
8193 0.38054261579009435
8194 1.0415390861686495
8195 -0.08150254506147446
8196 -2.0920654946720187
8197 1.8225006452129358
8198 -1.136749537276773
8199 1.0838122735296427
8200 0.0036056547012938774
8201 0.11967582539063432
8202 0.17809390083367568
8203 -1.176213933124833
8204 0.2653740462097274
8205 0.27544982267268553
8206 1.3378281721465755
8207 1.4186557515593108
8208 -0.11769995730913319
8209 -0.27700793495871484
8210 -0.6809142867915763
8211 -0.4359333079157859
8212 1.0545895474021747
8213 -0.7095785879983374
8214 1.3120610713230243
8215 0.5443190293687654
8216 -1.083790017016542
8217 -0.22194857408853988
8218 -1.459001481871622
8219 -1.0070741812053243
8220 0.8053248630462465
8221 0.7378454454255187
8222 0.25282957017750257
8223 -0.8416728739554294
8224 1.5841228092818227
8225 0.8066092924890513
8226 -0.49131914079974903
8227 -0.6141447622927767
8228 -0.23802627381712582
8229 -0.02039852728885052
8230 0.10768067672897774
8231 0.1356422075189482
8232 -0.5716154039058012
8233 0.2770768063545467
8234 -0.7259577775308965
8235 0.8773970102724963
8236 -0.7403297112779647
8237 0.21456523961814206
8238 -1.70162411148598
8239 -1.8098090876415294
8240 -0.1523673122579252
8241 -0.3140361089716057
8242 1.6591225039053765
8243 -0.7572161049780953
8244 1.2186281621991217
8245 1.6787560480243522
8246 1.555278219939478
8247 -0.7976943446671256
8248 0.44068758896823007
8249 -0.7363281676041703
8250 1.3851384725315756
8251 -0.863124587935812
8252 -0.3983887928498449
8253 -0.48641544565998496
8254 -0.2981908949211924
8255 -0.9158584255730661
8256 0.3538766020652851
8257 0.18839464763935285
8258 2.285608979028944
8259 0.05527258272055719
8260 -1.6885733073292026
8261 0.35000187584274306
8262 -1.5291614251372614
8263 0.3648817005727901
8264 -0.4274484885669206
8265 0.9519163300350294
8266 -0.6594964369555398
8267 1.6774291765252969
8268 -0.8196679294758927
8269 1.7344605313929018
8270 0.7045648614295125
8271 0.11369663885230318
8272 1.228475537531122
8273 2.2533728460067652
8274 0.26764753262679386
8275 0.19254496980052344
8276 -0.2967626910936112
8277 1.8984285782360852
8278 -1.1943320713848946
8279 -1.3891696631912194
8280 1.5195366145501792
8281 -0.4269820014998121
8282 -0.15326566279138304
8283 -1.3779813347216583
8284 -1.4611412161731634
8285 -1.0251618537102392
8286 0.4712658173318825
8287 1.049968607974334
8288 -0.38547712253231087
8289 1.2158624374904359
8290 -0.0413637486682474
8291 -0.17141175731943548
8292 -1.999626822669539
8293 -1.1084830446295424
8294 1.0617177972485103
8295 1.135014332669888
8296 -0.7810291623088913
8297 -1.2277509072199249
8298 1.1688452647157486
8299 0.06563228364834653
8300 -2.4304333563187974
8301 0.4942364182633905
8302 -0.5254196297260971
8303 -2.2313842825280443
8304 -0.07153230077596566
8305 -1.0514592982728208
8306 1.667079356195467
8307 -1.0100488816899904
8308 -0.5512354835617381
8309 -0.7458523298013584
8310 -0.40767395167328796
8311 -0.5045909225811063
8312 -0.2398880692019734
8313 -0.20491992880341076
8314 -0.22898200056343848
8315 -0.7982366826506787
8316 -0.5166013833489713
8317 -2.0019017755740602
8318 -1.6733942228747172
8319 0.7729001825713375
8320 -0.8750487575264322
8321 -0.3252790483820492
8322 -0.5176060886797572
8323 -0.6175037553052886
8324 -3.936105654337544
8325 2.1154274121556043
8326 0.06814734224877175
8327 -1.908664140527579
8328 1.1049060565373017
8329 -0.24165010771609918
8330 -1.097893817304499
8331 -1.8426149032311352
8332 -1.0857308263799403
8333 0.9216299680494365
8334 -0.6297293971433959
8335 0.5285637678445897
8336 -0.4979045456556885
8337 0.3788384792886047
8338 0.6505269675666381
8339 0.49851557696075166
8340 -0.8242159037800165
8341 2.617453203376673
8342 0.4456760312368594
8343 -1.1069246617987305
8344 2.6739028975595778
8345 -0.3194356855582256
8346 0.596738199454251
8347 -0.3668712121286084
8348 0.3137015159065497
8349 1.835605810065561
8350 -0.36494536989343224
8351 0.27017106418200854
8352 0.035971627227027334
8353 -1.2753843948046353
8354 -0.8544458181175524
8355 -0.7314654844360443
8356 1.728788193895245
8357 0.4421861100627938
8358 -0.742158141473831
8359 -0.8491709133593762
8360 -2.256669741148352
8361 0.49074167803699603
8362 1.4817341536676665
8363 0.4595178187043153
8364 2.570423194110924
8365 0.38588690688114674
8366 -1.1358716933896484
8367 1.1480447842313526
8368 -0.35421544182764486
8369 0.6363790324603692
8370 -0.329037337011126
8371 -0.2519727970387217
8372 -1.356334443312426
8373 -1.4532138121015272
8374 -2.5566765146454613
8375 -1.8428580094920097
8376 0.9547481307946264
8377 0.9733458364711123
8378 -0.7653289801737126
8379 -0.6230769607156764
8380 1.3928813387377448
8381 1.667869611152464
8382 1.2783185408605064
8383 0.12281178785339575
8384 1.3152228017344505
8385 -0.5706887425149987
8386 0.37474020853073065
8387 0.47175121779579254
8388 -0.5049717968156758
8389 0.47601613358898726
8390 0.991642729373602
8391 -0.2491429036007324
8392 0.8579015994602996
8393 -0.012105011503964815
8394 -0.16345088887631967
8395 0.4898477502157782
8396 -2.4015516269460684
8397 -0.8594674946087434
8398 -0.6199051112091329
8399 -1.5511028107869607
8400 1.004337161688194
8401 -0.6251337204311521
8402 -1.6120636268321233
8403 0.7540868955179515
8404 0.7919112781605663
8405 1.0717661200481625
8406 1.3098823378034747
8407 2.927330880541504
8408 0.18802322134681054
8409 1.051334363671559
8410 -0.04438604263499501
8411 0.9368415584514243
8412 -0.6019811199334215
8413 -0.06025078003891729
8414 0.3888936672793103
8415 -1.207085679718942
8416 -0.4012647178270189
8417 0.3850925164233079
8418 0.13045902021632974
8419 0.1935740960392351
8420 -1.1923429566982047
8421 0.2832267871463537
8422 -1.1200102748752334
8423 -0.5292158348268846
8424 -0.612559927319221
8425 1.6974827477133196
8426 0.7724836208576864
8427 -0.5717700537660207
8428 -0.4773797862853375
8429 0.7554225660461396
8430 0.5811023086312914
8431 0.7617514886843559
8432 1.073969531902652
8433 -0.7665212045982716
8434 0.010622648752328575
8435 0.2920487646083146
8436 -0.009062696410946524
8437 0.9311477673055432
8438 1.2539601784356242
8439 0.5616447908308239
8440 -0.03154060522986307
8441 1.4941989504017754
8442 0.2317355287711439
8443 -1.9780954292894894
8444 -0.10354263579737703
8445 -0.4438323535972707
8446 -1.3409464821699695
8447 0.9344422875742517
8448 0.16425231790884012
8449 2.1943500657292336
8450 -0.3824242847280742
8451 -0.6296055103312755
8452 -0.8815698375195293
8453 0.1971723603081233
8454 0.10773045503193794
8455 0.0879288002015923
8456 -0.7461639189530707
8457 1.1729576133990733
8458 1.4863225006404934
8459 -0.6940250097142087
8460 -0.8832624763925871
8461 2.101235358388188
8462 -0.8703177080785619
8463 -0.7282119739435248
8464 1.0363760299649787
8465 0.2754143692958665
8466 -0.7770839518862669
8467 1.2462504072787168
8468 -0.7943727000737945
8469 1.2286929753120133
8470 0.4356704284173967
8471 -0.015568618368555092
8472 -0.7377776647018507
8473 -1.1152673231408878
8474 1.5839326177242454
8475 -1.750117433767934
8476 1.6277240847976324
8477 -2.0328024866145644
8478 -0.08837840405505516
8479 0.48902461234612293
8480 0.397195775309491
8481 -1.8300352464670153
8482 0.5954196130622565
8483 -0.29117156197923827
8484 -1.2599704232265578
8485 -0.16373127561328896
8486 2.103631735840953
8487 0.35784074885871
8488 1.3656069841899543
8489 -1.0386606883609113
8490 -0.04488767604341882
8491 0.7697875236182408
8492 0.41209167201390307
8493 -0.23650909182157231
8494 0.6425459169016298
8495 1.931048588571987
8496 -0.8770525708172604
8497 -0.7132713425173642
8498 1.1156282228418937
8499 -0.4392031618081045
8500 -1.0194848985599765
8501 -0.05321354667389293
8502 0.25142799294802415
8503 -1.165215639242222
8504 0.8622757194811385
8505 -0.022959058535661863
8506 -0.8031489376397145
8507 -0.25546399106667
8508 -0.3727519970191012
8509 1.1366247032117978
8510 0.10056849665413799
8511 -0.22735746948868954
8512 -1.1263148288902298
8513 0.9718590969769014
8514 0.5138808029802441
8515 0.22376965018778214
8516 -0.5507053728456234
8517 1.5131253662009219
8518 -0.7156667641274778
8519 -0.7142152262729768
8520 0.41950131262210955
8521 -0.26236330795552903
8522 -0.8530074368410138
8523 -0.43953320992541056
8524 2.1095718440163056
8525 0.9594810734324285
8526 -0.3473576707695564
8527 -0.9838903771727396
8528 -0.5609068767608851
8529 1.322365269753592
8530 0.17647255651054464
8531 -0.17958718861896972
8532 0.5818457780527643
8533 -0.007001611363907328
8534 1.492814142797456
8535 -0.11673413374542024
8536 -0.6024176895300873
8537 -1.696637499773516
8538 1.6585875257343976
8539 1.6606218896833784
8540 -0.0713776978343858
8541 0.058188784189614304
8542 -0.6159517061472173
8543 -1.285144684643141
8544 -1.4184481351694591
8545 -0.7750288185663995
8546 0.4595706331791807
8547 0.2854988487502131
8548 -0.9021198479101906
8549 -0.4701987100709069
8550 -0.3531387819461054
8551 -0.6986390470070317
8552 0.035109797615769815
8553 3.547842178503141
8554 1.2042720615977565
8555 0.3773762049056064
8556 1.7332193620185166
8557 2.3320568025005257
8558 -1.002993504339254
8559 -2.520823372009542
8560 -0.16731179945628274
8561 0.6817115124463363
8562 0.8218044566662764
8563 -0.03386870931706976
8564 -1.6620872224764718
8565 0.7052815723200954
8566 1.3814502291709934
8567 -0.9605621438095612
8568 -0.586340168136529
8569 -0.34509179850919436
8570 0.29070541397678035
8571 1.771355627528538
8572 -0.027994770148128196
8573 1.2029024777896213
8574 0.8051338880886499
8575 -2.2496342235484788
8576 2.2301717881564227
8577 1.3139863894893542
8578 -1.0160067157107244
8579 1.1310686793209213
8580 2.733429897326382
8581 -1.684092638832131
8582 -0.011396169915084775
8583 -1.3259325826351085
8584 -0.20353339373537313
8585 -0.29073864714773534
8586 -0.4036205580421044
8587 -1.6047738098250701
8588 -1.34000473917465
8589 1.901300081093821
8590 0.02173276474211543
8591 1.0848051047888614
8592 -0.5300325244771587
8593 -0.35389750775169565
8594 1.7378413966473856
8595 -2.985562740945243
8596 0.4051435811145777
8597 1.3614105893963844
8598 -1.5887398829239276
8599 0.2776489453132865
8600 0.6098120082913061
8601 -0.5211942793878042
8602 -1.0849500162755652
8603 0.8841100860410875
8604 -0.8452165489588677
8605 -1.321671852544699
8606 0.6848658630175648
8607 -0.6462204476339929
8608 -2.6136040952646904
8609 -1.9491449379494452
8610 -0.26013758147637284
8611 0.701385463862415
8612 2.01576174457441
8613 -1.0317907509222812
8614 -0.4760366077257711
8615 0.9326396160975194
8616 -0.5251060378620599
8617 -0.7110057686972232
8618 -0.5722104593422067
8619 1.6060723809076138
8620 0.02392253622005943
8621 1.7282490059763322
8622 1.466076282626221
8623 -0.10109884952674304
8624 -0.03184477989391488
8625 -0.6064970872910977
8626 0.6381976738359844
8627 -1.3498871379454536
8628 1.6788413115351075
8629 -0.6419537601865777
8630 -1.377887961887327
8631 -0.26467620271582953
8632 1.5834892740259578
8633 0.8900646322886546
8634 -0.6681200981250166
8635 1.0194486073135118
8636 -0.4198173838799545
8637 0.15134667638648006
8638 -0.678716402311797
8639 0.08121044352562108
8640 -0.0042823308324736395
8641 0.34367970947585047
8642 0.7368922486156521
8643 -0.9914802391783459
8644 0.3501626505403752
8645 1.4446789485810312
8646 1.177263076962998
8647 -0.37350362698604467
8648 2.1646595042647823
8649 -0.5135651861605314
8650 0.6712689651915816
8651 -0.6249609388832761
8652 0.3760161084209458
8653 -0.7322344785501403
8654 -0.6777986420334938
8655 -0.6547020685090089
8656 -0.8357731823623947
8657 1.0522418898545949
8658 -1.4898336735738964
8659 0.11550176490431187
8660 -0.0585916441838312
8661 -0.8512905664816868
8662 0.1431152873269468
8663 1.290062662058733
8664 1.691346495268652
8665 -0.6948537358974815
8666 -1.0603242563799475
8667 2.4485839553254514
8668 -2.0893362941214915
8669 -0.42538965823505637
8670 -0.7215924641283753
8671 -1.0622568346190309
8672 -0.053310006088038854
8673 0.03477911320403351
8674 -1.3229945618501235
8675 0.6706565189449684
8676 -0.04429148485457285
8677 0.428899824984117
8678 -0.4632821290153445
8679 -0.72511172216032
8680 -0.11894402855882795
8681 -0.8478937906102404
8682 0.08763227472110444
8683 0.46326012196686156
8684 -0.7671728206469361
8685 0.39347653225528334
8686 1.1716186890101714
8687 -0.5678050993466065
8688 -0.6030567365895215
8689 1.288104016141098
8690 -0.0020874463748986817
8691 -0.3287745905142157
8692 -0.4850736732175459
8693 -0.028197016451783328
8694 -0.551560016670054
8695 0.7357947618758708
8696 -1.1864200912069267
8697 -0.2626275211739703
8698 0.45313138723605123
8699 1.6204632265573522
8700 -0.5673101946266744
8701 0.2969807353554726
8702 -1.2516404226370619
8703 0.9990053043838557
8704 -1.6318326945177368
8705 -0.5529193627113466
8706 -0.8103750741576968
8707 -0.5964174511387587
8708 0.7915570080654986
8709 1.7768197082905335
8710 -0.38326982972469603
8711 -0.8633218165470133
8712 1.2892744949009756
8713 -0.366434319914963
8714 -0.7550153358742702
8715 -0.20471760260421065
8716 0.028923490330851263
8717 -1.6667197054905323
8718 0.3405640463551307
8719 0.5646590892178798
8720 -1.28314808903406
8721 -0.417773081365352
8722 0.9162657679765885
8723 -0.427960553976516
8724 -1.3775097364744633
8725 0.4576644246123333
8726 0.43220054854577433
8727 0.07775080680553703
8728 0.7855012280416024
8729 -0.1855277363987952
8730 -1.5998868270018314
8731 0.8753782005288642
8732 0.7117549095714094
8733 0.7510462867223962
8734 0.13627236798484868
8735 -0.4395994012867495
8736 -1.7288718126021836
8737 -0.11630811634299115
8738 1.097406935897981
8739 0.39675755650022004
8740 0.5837983277426668
8741 1.0112041985138502
8742 -0.048317028976122854
8743 1.0777049226910107
8744 0.3907077033615898
8745 0.47155570680718184
8746 0.406219618583306
8747 1.6120754758903841
8748 1.8422079980965125
8749 -1.0687447062682855
8750 0.4766645906332037
8751 -2.027675696592284
8752 -0.9168578789345807
8753 -0.5800056407799131
8754 0.0034973754177724517
8755 -1.0582043645333814
8756 -1.358335951687456
8757 0.09935240133686582
8758 -0.7770881741608823
8759 -1.0943271903725953
8760 0.30065257449406974
8761 -0.17949631450187462
8762 -0.014585132654789721
8763 0.5713783479646692
8764 0.19810171620844302
8765 0.2208743065694481
8766 0.8304634801109012
8767 1.2299027705652072
8768 -1.0419604630956898
8769 1.9528206477576373
8770 -0.1652345901315189
8771 0.07771822498338167
8772 -0.5448928121515683
8773 -2.878904878587251
8774 -2.2899620200081903
8775 0.3841384320844403
8776 -0.22900898799977518
8777 0.49491840138417337
8778 2.045773575418183
8779 0.3098770300992475
8780 0.014873238726452376
8781 -0.13619293319679973
8782 0.8382266213876093
8783 0.4872036796939948
8784 0.15625440203483718
8785 0.20888545496105168
8786 2.052491196897496
8787 -0.47138819993273423
8788 -1.478753683532843
8789 0.9632835901829482
8790 -1.174285774619628
8791 -2.5658490655190906
8792 1.463603666413118
8793 0.39757361940866115
8794 0.35691236696245937
8795 0.5549314472115087
8796 -0.1833140391247181
8797 1.184116704291288
8798 0.363148648432682
8799 -0.3724763468997741
8800 -2.244264060244386
8801 0.6160818503852752
8802 -0.8724969030671814
8803 0.27479739085564203
8804 -1.8461680820382014
8805 1.7905766490117694
8806 -1.8288016888093508
8807 -0.42648829666424853
8808 1.0553111354817368
8809 -1.6063480962086296
8810 0.2787973411261778
8811 -0.9587099768401541
8812 1.5867810963901874
8813 1.989526948210817
8814 0.7381393096698805
8815 -0.8500185773016992
8816 -1.2038918204327484
8817 -0.6383036288840434
8818 0.887704918861792
8819 -0.3596549916629128
8820 -0.17880881502410956
8821 -0.12326518479278571
8822 -0.9220864895467098
8823 1.4653384320212257
8824 0.17290435756768163
8825 1.0922193635347095
8826 -0.10166068189330042
8827 0.062120816911614606
8828 -0.6318913480171904
8829 0.7694938158965583
8830 -0.4637422046035604
8831 -1.1535003820479606
8832 0.9363413816350175
8833 -2.8802767991263463
8834 -1.9011218713895897
8835 1.640921244982014
8836 -1.7654207165722589
8837 -1.2320840908704613
8838 1.3948381591590007
8839 -0.30692566594616444
8840 0.044508492956560404
8841 -0.033920055251245244
8842 -0.952857771672967
8843 0.9667652038076291
8844 2.5568659411148986
8845 0.03303039679522708
8846 -0.5110767585527903
8847 0.06285056079135976
8848 0.13523780608395994
8849 1.262352706349352
8850 0.2865078246970526
8851 2.0036984498094874
8852 0.5900735439466905
8853 0.3777762162930443
8854 -1.4643822859658435
8855 0.16362155204961368
8856 0.17930595998129017
8857 0.9902567045617916
8858 0.6016252821294568
8859 0.8831044093061967
8860 -1.0512973851053289
8861 -1.3827004363405975
8862 -1.0654078319058697
8863 0.5310982409829568
8864 0.5170503192686038
8865 0.31140390663701734
8866 -0.46123766997518595
8867 -0.7442020026377887
8868 0.666243267094783
8869 -0.3217356832900951
8870 -0.5610159246671849
8871 1.3955458505042893
8872 1.7425904368258927
8873 -1.8811135889178277
8874 -0.7198074256759472
8875 -1.1215525050097725
8876 0.024850160703832263
8877 1.258733917124954
8878 1.0570462603748096
8879 0.4453564024177982
8880 -0.8867151680408842
8881 -0.4908539229721933
8882 0.12248193888372677
8883 1.4728233948938756
8884 2.369945001715424
8885 0.4074432960637588
8886 -0.1386470272751723
8887 0.3690899162097329
8888 -1.4306156425124723
8889 0.6545250962920955
8890 -1.070451602687212
8891 -1.4901231836113693
8892 -1.9798760089570058
8893 0.623237930233019
8894 0.534133793474321
8895 -0.418854068078677
8896 0.09850924198857838
8897 -0.5756984154370839
8898 -1.6594016650302663
8899 1.0361830316172649
8900 -0.006294687171874227
8901 0.22578711289070838
8902 -0.4685546820537823
8903 0.8840078393508078
8904 -0.2153874536980973
8905 0.9828858990502465
8906 -0.510323990206719
8907 2.109080069957113
8908 1.3720747331744898
8909 -0.07020840753989635
8910 -0.5347525226263212
8911 1.5501176050174705
8912 0.26386478464584484
8913 -1.1939606789677208
8914 -0.37621038367300325
8915 0.02212879200709085
8916 -0.9338907628505305
8917 0.026560218546557213
8918 1.5268275852465127
8919 1.0120891696904586
8920 0.4775811031612889
8921 -0.49629263686600705
8922 1.8185925239184122
8923 1.149324371689589
8924 0.9803976048180744
8925 0.8288103910771346
8926 0.2816014053964131
8927 -0.89380638816209
8928 -1.8015655439828404
8929 0.8846682959810805
8930 -1.0190862580523141
8931 0.9646264054586473
8932 0.6768854170433549
8933 -2.0812185779960624
8934 0.31125051486369476
8935 0.15231253127217684
8936 -0.20181688306765827
8937 -1.8205615888985187
8938 0.059250857006431304
8939 1.5432889674348353
8940 1.0792331657030558
8941 -1.718710110767325
8942 -0.5758142411768494
8943 1.007224788601756
8944 1.0212432750120215
8945 -0.11192833966596565
8946 -0.7276472480285772
8947 -0.6721074203744698
8948 0.7695349795924268
8949 -0.21477978021134173
8950 -0.37878565563737243
8951 -0.24278886658485938
8952 0.32744226079779865
8953 -0.551224275635997
8954 0.8299234949776763
8955 0.9758618428747212
8956 -1.1513919780346584
8957 -1.1233517472312573
8958 0.11262901966198825
8959 -0.19084954707414187
8960 -0.5669460626286237
8961 1.7192128257921515
8962 -0.4129128111221766
8963 -0.7554907068388702
8964 -1.135603566641837
8965 0.1541935026303763
8966 0.5912069186702913
8967 -0.8645558331195778
8968 1.9974556855163281
8969 -1.9674473736181732
8970 0.609601703690575
8971 -0.6260362028478869
8972 1.3909261305239864
8973 -0.2930012844291198
8974 -0.30624635136579603
8975 1.6966123510626863
8976 -0.13773936554921665
8977 0.8418832274529133
8978 0.714091789499022
8979 -0.3715411770360822
8980 -1.6976717946561504
8981 -1.519963562786283
8982 -0.352864283408712
8983 -0.7303061773996188
8984 0.8178667839524559
8985 -1.3770705637410214
8986 0.47334446464065955
8987 -0.549640220512532
8988 1.2957589251600394
8989 -0.1732049848106251
8990 -1.0714288071940663
8991 -0.3566647017025502
8992 -0.20612342919046495
8993 -0.07437951612114406
8994 1.1844185980396493
8995 1.4728284009199075
8996 0.09893600498261117
8997 1.4931582986081628
8998 -0.527480067976587
8999 -0.9446654258048744
9000 0.08498127900032827
9001 0.9060189174419089
9002 0.9062275533533538
9003 -0.4485342224212685
9004 0.3151614268599903
9005 -1.0645523258360328
9006 -1.5806128484431847
9007 -0.5111736606140506
9008 0.586134852759811
9009 0.26017056927912835
9010 1.39064883626675
9011 1.8626815151448306
9012 -2.057947442735465
9013 -0.42908091451816044
9014 2.2893643762866094
9015 0.9657051794454131
9016 -0.34872450409044575
9017 -2.334232368802159
9018 1.1593921893812098
9019 0.06248728016523191
9020 0.10406583945750592
9021 0.5212967234371512
9022 -1.3566694252221303
9023 1.34600608538543
9024 0.2678717858954754
9025 0.12067865059597926
9026 1.5471558921112594
9027 -0.42968056678610184
9028 0.40167113823751066
9029 -0.8257877351201902
9030 -0.041785585423345054
9031 0.51403865845127
9032 -0.366453210783252
9033 -0.24845577774705413
9034 0.19683556073028444
9035 0.07592486676039349
9036 0.4740070190717143
9037 0.7884257027178351
9038 -0.040193099996272005
9039 -1.3805328511968606
9040 -0.6806730480917079
9041 -0.2025918505046008
9042 0.08204877165241077
9043 -0.48009665189950634
9044 -0.555964168554483
9045 -0.2640303304272481
9046 -0.7882339083002003
9047 -0.019438009170560544
9048 -1.025080404822461
9049 -0.29228130694560467
9050 0.8452206394254699
9051 0.5484254348179908
9052 0.7155631744985107
9053 -0.29194788463707344
9054 -0.10087846523104341
9055 -0.2304392378666285
9056 -0.3167023297684796
9057 -0.10910214975818261
9058 0.18814582410280614
9059 1.5854708099634205
9060 0.9202591113053239
9061 1.4874976711433041
9062 -0.16863101564612976
9063 0.2572636201832305
9064 -0.15187656183822382
9065 0.06744660243637877
9066 0.1347483044194028
9067 0.31875472620930617
9068 -0.7433160221638331
9069 0.18829783360167776
9070 0.08104800215087127
9071 1.6097435971383027
9072 -1.0565513124667711
9073 -1.7926482844662988
9074 -0.268875920997997
9075 1.0136544974966049
9076 0.412750719515102
9077 -1.237254403350558
9078 -0.40705346567086376
9079 1.2192854489992055
9080 0.07153609836934519
9081 -0.6561959304359308
9082 -0.9426036665982771
9083 -0.3181776185514282
9084 -0.24466771643273805
9085 -0.2782485405693262
9086 1.348432957529374
9087 0.47981034865594835
9088 -0.14842561373668992
9089 0.32216175791471013
9090 -0.8396545896471883
9091 0.37706792466199807
9092 -0.8745728077180802
9093 -0.15861861438886907
9094 0.12804268905140134
9095 -0.11236294259770647
9096 -0.07620191763043202
9097 -0.9207975930165867
9098 -1.4053230479240744
9099 -0.19380743074399356
9100 1.3058407125408422
9101 0.004974695438433066
9102 0.20871991866667627
9103 -0.5432542923693104
9104 0.31182300178361755
9105 1.845440152016837
9106 -1.7508406369861493
9107 -0.8197924746918632
9108 -0.27226521740483284
9109 1.0122160731623326
9110 -0.2610778006033148
9111 -1.4016979563605825
9112 -0.7643107218715345
9113 0.25240197609845416
9114 0.11308373826788606
9115 -0.2159882449410723
9116 -1.6631712170310564
9117 1.295059773111664
9118 -0.3496288669358677
9119 -0.9066688218308739
9120 1.4477052429586508
9121 -0.6631193752592568
9122 -0.5332926116814691
9123 -1.4595935865841068
9124 -3.195612498028157
9125 -0.9205243782120788
9126 -1.2370710915887282
9127 -0.5364687583310366
9128 0.02158229918925592
9129 0.583791577975725
9130 -0.7603158085636175
9131 0.9717542056045649
9132 -0.42342780469850344
9133 -0.1917198095045271
9134 -0.7071853934781878
9135 0.26584263698277183
9136 -0.24175467424119618
9137 1.6887683577010757
9138 -1.5919427552875371
9139 0.01082444390481332
9140 -0.3083293285614747
9141 1.203499758850213
9142 -0.7924399248824016
9143 -0.5183142758361647
9144 -0.2708847952979997
9145 -0.1795025160678866
9146 -1.8076925070851664
9147 -0.33520993938372695
9148 -0.7263047447123138
9149 1.0436325364070456
9150 1.2176256516047683
9151 0.4365567226513377
9152 0.7428615085770166
9153 1.7070874368485838
9154 0.5126145387427279
9155 -0.9781651018516919
9156 1.6169570354247556
9157 -0.9014558843857762
9158 -0.872874925010508
9159 0.4620198475622945
9160 -0.5659778878026639
9161 0.6526834967348917
9162 -0.2722115642462487
9163 -0.9351367642207495
9164 0.004924237696142577
9165 -0.3201296907956153
9166 0.651463165687979
9167 -1.5320676353864555
9168 0.029097392312405754
9169 1.1861489290694982
9170 0.5513349547877899
9171 0.9444926880089768
9172 0.04511258276474427
9173 -1.2000097868466175
9174 -0.5545983137184416
9175 0.623417863994735
9176 1.3347512344133792
9177 1.1544164352884347
9178 0.4526898607673255
9179 -0.4157337594509615
9180 0.8908602196621489
9181 0.866006815753258
9182 -0.19627672731959186
9183 1.5975580169259112
9184 0.6440028129298024
9185 0.055605316747001844
9186 0.8694307785240841
9187 -0.07446236654341952
9188 -0.2609861830186191
9189 -1.679844166962446
9190 0.5624665737081287
9191 -0.6230549189854757
9192 -0.3432318490395244
9193 1.2048172189616313
9194 -0.422794472718147
9195 -0.9487479899823791
9196 1.500103140791388
9197 -0.2720892377875912
9198 2.2368747894564414
9199 -0.3932381601993556
9200 0.4418576789847855
9201 1.7185258288466538
9202 -0.4574042052273865
9203 -0.2951332936116482
9204 0.324987455504776
9205 -1.76164235753503
9206 -1.1766151875353794
9207 -0.27013377121784254
9208 1.4248727871036657
9209 -0.8863367585759244
9210 -0.6023640434237834
9211 0.02568641342468002
9212 0.3333558732731236
9213 -0.04362077969987999
9214 0.4824265286798566
9215 -0.17420191040576563
9216 1.0017243466252033
9217 -1.8404356625651739
9218 0.018007912492827686
9219 -0.5661281305862881
9220 0.4756201687592745
9221 0.9452593253706727
9222 -0.4333467139902293
9223 -0.39166340731540866
9224 -1.1811755248694433
9225 1.774023275982751
9226 0.6427504194413061
9227 -0.6570806619526882
9228 -1.07050204612031
9229 -0.8660918877277345
9230 1.133941166339855
9231 -1.704526710480362
9232 1.015363865508401
9233 -0.046220165702810165
9234 0.32675177740301464
9235 0.4183961296257125
9236 -0.7518155272671396
9237 -0.21171972571827796
9238 -1.7280547925207903
9239 -0.186506883780347
9240 0.05195798663203842
9241 1.2086276277245467
9242 -0.4890517624148116
9243 2.0586211062751767
9244 -0.6005144610187052
9245 0.8888864555229342
9246 0.36364438343714556
9247 -1.7792697899214633
9248 -0.5929605664446922
9249 -0.6594436561645429
9250 1.0020906492471997
9251 0.5630027879505545
9252 -0.2365534021296344
9253 -1.6459534298416734
9254 0.3091843745505287
9255 0.9572374288343616
9256 -0.9236328985513887
9257 0.5400108537417013
9258 -0.968470041398111
9259 0.6275815846454572
9260 2.9941551872256427
9261 -0.7783632548338398
9262 0.46813585708706285
9263 0.9456647446916243
9264 -0.5232053072570286
9265 0.5312558496030086
9266 1.4543372970880604
9267 -0.5580585573136845
9268 -1.257413355002949
9269 0.8243339158317303
9270 -2.099932006593634
9271 -0.089050359396567
9272 -0.6296347214831592
9273 1.0123666277146348
9274 0.6701762286151726
9275 -1.3368444638663712
9276 -1.0057741602467403
9277 1.2129477179436101
9278 -0.22571813866027549
9279 0.8830408458733101
9280 0.6133978169879697
9281 -1.0741785946656401
9282 0.2548601316416709
9283 0.5242450595763233
9284 -1.3077943123780058
9285 -0.15616342543339595
9286 -1.8328744402469783
9287 0.9364107054940172
9288 -1.5920458774730644
9289 0.03057443920294007
9290 -0.777276605393959
9291 1.3534632607852222
9292 0.499941089747799
9293 0.47763533555466275
9294 1.7599644394486755
9295 -1.9044513795617652
9296 0.930575959245382
9297 0.34393637757244194
9298 0.5289681830005752
9299 0.7834656543320025
9300 0.8069476609089445
9301 0.06290653192857068
9302 -0.29211249112741655
9303 0.20453434986416355
9304 -0.29721865523853636
9305 -0.3541784038964472
9306 1.0123608926541872
9307 -1.7278441325505163
9308 -0.6491491255702451
9309 -1.6034923859048913
9310 -0.4419861946763692
9311 -1.1199816411801355
9312 -0.26432633064948863
9313 0.019157286401900123
9314 -0.7517084240829913
9315 0.29954939967599986
9316 0.5753260618166638
9317 0.424021710425947
9318 -0.4046624465518957
9319 -1.3322993000322232
9320 -2.477210682063973
9321 0.31612278923663806
9322 -0.8971970296118716
9323 -1.1806852817248192
9324 0.5162936918710247
9325 -0.20667477148272534
9326 -1.5264492439064543
9327 -0.564604174654033
9328 -0.15298933293517775
9329 1.704201466877794
9330 1.6318314116521322
9331 0.7680426781318267
9332 -0.7050856119024607
9333 1.426622003765616
9334 2.1820956781663314
9335 -0.3045748054211432
9336 -1.3267670143714665
9337 0.46493576592430513
9338 -2.6247572266711905
9339 -1.4054417810255058
9340 -1.184216106174413
9341 -1.5446226086333152
9342 -0.5034097142998243
9343 1.604540397133908
9344 0.5388108486689263
9345 2.41229123614837
9346 0.05202977912940971
9347 1.793924357027392
9348 0.7443137136349937
9349 -0.14502512465084094
9350 -1.0701753616119853
9351 -0.5762726552180338
9352 -0.12682635186985458
9353 -0.9640281467619631
9354 1.2760465026789287
9355 -1.3471274806089848
9356 -0.1279919529056499
9357 0.9915486276699204
9358 0.7854229667382455
9359 1.8455191699301376
9360 1.037331640201508
9361 -0.26585989012168243
9362 -0.9778309269195852
9363 0.8842087806332907
9364 -0.008091315528032104
9365 1.067051817591578
9366 0.08075757234611391
9367 1.2851284617211698
9368 0.36660919780694284
9369 -0.5408181187750374
9370 -1.6006115022522514
9371 -0.3419283437322548
9372 -0.8987362152295476
9373 -0.5097425278877479
9374 0.3913377187576003
9375 -0.721208859423724
9376 0.13414771356538469
9377 1.2351281035356292
9378 0.8231167039686969
9379 -2.36960653825384
9380 -0.2334929441283294
9381 0.8018876605578932
9382 0.07821701762930941
9383 0.9060183675371576
9384 -1.256734990050183
9385 -1.1603124245174126
9386 -0.18378190114189566
9387 1.361838947820491
9388 -0.6186340693218867
9389 -0.5970561364175111
9390 -0.5378082689093608
9391 -0.5235077799747148
9392 -0.2859289057269984
9393 -0.3850883816915433
9394 1.397673992707264
9395 -1.090437615949143
9396 -0.018779765066982878
9397 -0.004233030049159141
9398 -1.172596009678967
9399 -0.11698233470068475
9400 -0.4552320069448958
9401 0.40187635626528245
9402 0.6498781804077607
9403 0.2505680096922848
9404 -1.261692146760858
9405 0.2229025113496142
9406 0.20538071389478268
9407 0.29992853926625546
9408 0.395978463380655
9409 0.660894225960453
9410 0.6771658181178901
9411 0.31783384420801847
9412 0.5189837788711102
9413 3.0929152946933534
9414 -0.9036879696896581
9415 -1.2161924320761928
9416 -0.04219007753883381
9417 -0.07759629248512179
9418 1.2047978317744228
9419 0.4669092595775516
9420 1.0287516369839202
9421 -0.4398468028459097
9422 -2.3619331308340135
9423 -0.29018305468718814
9424 -0.17424163820510274
9425 1.4446948859128514
9426 -0.4126026759870336
9427 0.7399699631846095
9428 1.9339330261047283
9429 -0.8052267742794069
9430 -0.3544340199266843
9431 -0.6518704952481122
9432 -1.210518247819925
9433 0.6887635256676378
9434 -0.32733577740096265
9435 0.11254885022645458
9436 -1.6518551378459052
9437 0.8831293019261269
9438 1.368723563830269
9439 0.9962147887444919
9440 0.11776138156203018
9441 -0.5963636775407043
9442 0.8361259926563795
9443 0.5535498157567105
9444 1.8257463654603345
9445 -0.17260538762757602
9446 1.3676984602753737
9447 0.21928167332256537
9448 -1.211635155086485
9449 0.9473256182924524
9450 -2.1411475865517153
9451 -0.333853612934416
9452 -2.8375222599891656
9453 0.5058428716868801
9454 -0.043250719402178665
9455 1.3081200842101308
9456 1.2547142872469157
9457 1.1194501481178596
9458 0.2463534478818044
9459 0.44903365019883906
9460 2.002398593130341
9461 1.1649724251718419
9462 1.8369765580664776
9463 0.2842537107953732
9464 -0.3397775860710725
9465 0.46455087733783607
9466 1.9360060709408733
9467 0.6101404020594482
9468 0.29212242168131597
9469 -0.37661732095344624
9470 2.3782481036197636
9471 1.8643314191840206
9472 1.3755600519955498
9473 -1.219710186101226
9474 1.2953799047634547
9475 -0.8213919411173435
9476 1.1659693360640608
9477 0.12265076098704564
9478 -0.20583979069848765
9479 -0.4070746730192743
9480 0.6338422711840911
9481 1.0530381995653624
9482 0.5476284649089721
9483 -0.45137123901404685
9484 1.8633024514030079
9485 0.1843339731746457
9486 -0.8495969623440915
9487 -1.2561864228202766
9488 -0.1122926086728533
9489 0.25464652135420723
9490 -0.4081081185553323
9491 -0.7866218200257372
9492 0.150374850899437
9493 -1.9848206478804733
9494 -0.5914865260888865
9495 0.5284023946890313
9496 -0.0362639734616863
9497 0.5440738999488047
9498 0.9318574071070014
9499 -1.0549787572395346
9500 0.06539935467930845
9501 1.0115779638218014
9502 0.14643952198397542
9503 -1.7437650144360837
9504 1.391287549565889
9505 1.0184621481188028
9506 -0.5908606378470579
9507 -0.2459558406764067
9508 -0.43029487354477897
9509 -2.754283350353141
9510 -0.5589204657804367
9511 -0.39133676631838205
9512 -1.0557911759926972
9513 0.3289230725424271
9514 1.5154184502082437
9515 -0.13114479725454953
9516 0.8095662726921476
9517 0.05125469938078799
9518 0.4770763871396425
9519 0.9672747651118434
9520 1.012340422024171
9521 0.9543788925447363
9522 0.18908682295165108
9523 -0.3742606776280772
9524 -0.34386545932379664
9525 0.9123579185514564
9526 1.1458864808940428
9527 0.2997734050984281
9528 -1.2332521204958313
9529 0.8340120295432409
9530 -0.3422067806200335
9531 2.6342610887847733
9532 -0.919984054516768
9533 -0.033481081219457275
9534 0.7878314847007022
9535 -0.9632010294544496
9536 -1.3489158900584852
9537 1.0913796249552978
9538 1.3053162221636907
9539 -1.1609805698765796
9540 0.0870809904174122
9541 -0.1610650572466269
9542 -1.1871804254449325
9543 0.3008720478177921
9544 0.0584930387917499
9545 0.1834157968937845
9546 1.3540214582035577
9547 0.7526176023721034
9548 -2.032183443964485
9549 -0.1427639118760368
9550 -0.1910376966601457
9551 1.1701643426876773
9552 0.5303705672281485
9553 -0.5854112441424982
9554 0.4048379945781267
9555 -0.9417993024027703
9556 -1.310374307615571
9557 0.10210145141880339
9558 1.2854903420843269
9559 0.19395814774123085
9560 -1.494685932853675
9561 -1.6440195957362291
9562 -2.1091284636699026
9563 -0.3129294725968727
9564 -0.23876688183465497
9565 -0.002950327977348563
9566 -0.201865661580491
9567 -0.0205338265378846
9568 0.13403822998145298
9569 0.4785548783111436
9570 0.5088420079677028
9571 0.326909098288383
9572 0.15501375839546874
9573 -0.07103546267303136
9574 0.07729465521076956
9575 -2.2864739153201556
9576 -0.3947483785420372
9577 0.6480319127950086
9578 1.8870379186905974
9579 0.8391713820749522
9580 -0.5517088639871387
9581 0.2788850117487016
9582 -0.43844266352806704
9583 -0.7097419712726108
9584 -0.16867261785505566
9585 -1.4514892481730226
9586 -0.07866696189164034
9587 -0.06391503819463114
9588 -0.6582270601820664
9589 -0.4121631672354807
9590 0.7865788049486337
9591 1.7941736889541238
9592 -1.0713231808282542
9593 1.392813738133396
9594 -0.4965045053133216
9595 0.6337007314114761
9596 -0.505329316723213
9597 0.007065416536707194
9598 0.6036072321696531
9599 1.166433676419081
9600 -1.228269399403395
9601 -0.6877038636624256
9602 -0.5384060122640076
9603 0.7912700972968753
9604 0.29973373581221385
9605 0.024129980951051476
9606 -2.0046210863232585
9607 0.30557463759234055
9608 -0.46262404227982185
9609 -1.1156142600346104
9610 -0.11226486842407424
9611 -0.17149298457441653
9612 -0.47897662146255904
9613 -1.541806890426049
9614 -0.05334132692711234
9615 -1.066266084604797
9616 0.23937099450197058
9617 -0.5717069187042204
9618 1.0586135824390135
9619 -0.4920819878055889
9620 -0.26105208882291586
9621 -2.046810988541868
9622 3.0243142859864243
9623 -0.3685385039206812
9624 -0.549126965127342
9625 0.28590572936188924
9626 -0.12174304953910312
9627 -0.6069648096999068
9628 -0.17334164557338405
9629 -0.20026797254426526
9630 0.2867020936178865
9631 0.14893413409386172
9632 -1.3752816709097364
9633 -0.02769695218643932
9634 -0.6039988757137178
9635 1.4844943381668068
9636 -0.545576290648538
9637 -1.1415432128377243
9638 1.3726995071353454
9639 0.568235777849683
9640 -0.07384970259310052
9641 1.0228945215507872
9642 -0.25539853461280515
9643 -1.3431616444741243
9644 0.5180543283357172
9645 0.05106131470214901
9646 -1.3250419121134183
9647 0.7097505551752206
9648 -0.39492910997952313
9649 0.8324442263545935
9650 -0.25749441780223875
9651 1.7597198747863558
9652 0.4813567427101266
9653 -0.022741513590348778
9654 -0.9912094289304415
9655 1.9507703009657056
9656 1.8713849544355028
9657 0.208417117358213
9658 -0.7167904646217371
9659 -0.14790356976189512
9660 0.5103401483893222
9661 -0.45982866635492553
9662 2.220225738300922
9663 -0.21493613179958976
9664 0.6511113560345382
9665 0.6950135601065456
9666 0.17986818931602308
9667 -0.8450454979908087
9668 -1.0518623923268688
9669 0.7678818848596299
9670 -1.8642764499796118
9671 -0.9366988981276441
9672 -1.4680446873983086
9673 -0.4596115192029691
9674 0.9896376748123137
9675 1.0575441420319858
9676 0.13310101350381323
9677 1.5033827587964594
9678 -1.7052419526107283
9679 0.0009164784020233713
9680 0.5601423302850762
9681 -0.15770486042241363
9682 1.4670301471042657
9683 -0.8706010843180735
9684 0.0035199885143033377
9685 1.0877692049322154
9686 0.3046521404723836
9687 -1.6968838999970255
9688 -1.1347786326086973
9689 -1.0744726011370838
9690 0.20483510655934453
9691 -0.39696778430376195
9692 2.7523711022459385
9693 -0.4162687609954037
9694 -0.27832704728057606
9695 0.1078879908543159
9696 0.9873737960121998
9697 -0.6037379482759578
9698 -0.5995214424772513
9699 0.518911436391398
9700 -1.1920428419729265
9701 0.27000237498415863
9702 -0.13971044544731495
9703 -0.8655234725737044
9704 2.177219695985274
9705 1.3907118910522
9706 0.13512062162285343
9707 -0.37543924384029564
9708 -0.2609720605436379
9709 -1.1690282598633144
9710 -0.6994896009599042
9711 -0.24548193916753958
9712 1.5835699590225683
9713 -0.3177638018422532
9714 1.5633755953245605
9715 0.3749028472787975
9716 1.5448685813489842
9717 -0.5839068597739373
9718 0.1542327064185915
9719 -1.9070904673771165
9720 -1.3976139266511203
9721 -0.38311999025332055
9722 -0.8483278522875929
9723 0.6731650245918815
9724 1.1038188026263465
9725 -0.7891706985443496
9726 -0.3780123721219355
9727 0.924012715740413
9728 1.5660896834318856
9729 -0.578015207692621
9730 1.5168178774183774
9731 1.2418654904668545
9732 -0.4753403521366547
9733 0.054247951447138176
9734 -0.20538740881936135
9735 1.4162391264194403
9736 1.2642927680382428
9737 -0.5792607838795721
9738 1.9273857583787146
9739 1.153367220242476
9740 -0.5993447256137759
9741 -0.31769404379706
9742 -0.46638222023731424
9743 -0.554957309078404
9744 -0.2119329777506779
9745 -0.803930480122592
9746 -1.4163362016257723
9747 0.3974640442963014
9748 -0.4806767885793671
9749 0.928699303653456
9750 0.21457141154506904
9751 -0.2740819181370554
9752 0.044607833008732695
9753 -0.8764094151829875
9754 1.4473660802414345
9755 -1.0515799485634294
9756 0.2313888535781667
9757 -1.5442071976562448
9758 -0.8019803750115313
9759 -0.8435716363044652
9760 0.6530990945273626
9761 0.12204541187204389
9762 0.2008689458301261
9763 -0.44449637805686804
9764 0.24758882633010257
9765 -0.4076050983591435
9766 -2.0803477492562577
9767 -1.2130910413482003
9768 -0.6055904002704543
9769 0.27109182575488533
9770 -0.5772468906719618
9771 0.49025085571399746
9772 1.4376662913513343
9773 0.2094486812249415
9774 -0.687993534451506
9775 0.2933627896539165
9776 -1.6332871255750239
9777 1.2589591519807435
9778 0.13602493317086012
9779 0.9004482653690198
9780 0.3235514193773183
9781 -1.1759040382037809
9782 0.7693978624872183
9783 -0.3636768018104196
9784 0.7312384589068768
9785 0.10364290015094656
9786 -0.17871203823142642
9787 0.37062318208770306
9788 -0.24339380035310862
9789 -1.4640252984393867
9790 0.5019763425824921
9791 1.122493030518435
9792 1.8248368088850602
9793 0.7775591943741774
9794 -0.5585612594372027
9795 0.5008720133606356
9796 0.8862080353431537
9797 1.8204518968059045
9798 0.5529921072427962
9799 0.2384982288086894
9800 3.689553559337165
9801 -0.8646297150156051
9802 -0.5464768414091649
9803 -1.6687401947679676
9804 1.0339313049912684
9805 0.22159731726295318
9806 0.4339651737071426
9807 -0.10172122700756335
9808 -1.1998244069942383
9809 0.9103488201387985
9810 -1.2968401002222474
9811 -0.5961893038085864
9812 -1.2113436958970099
9813 0.3031805436433819
9814 2.389048801146588
9815 2.1364072647972088
9816 -0.186918745941792
9817 0.2678010834257608
9818 0.5197762706680253
9819 -0.965919514029998
9820 0.04369170947367813
9821 0.9252339499914065
9822 1.6747091236636802
9823 0.8114874209861689
9824 0.2086820216503839
9825 -1.5017502642092566
9826 0.3338491366412076
9827 -1.671913821349136
9828 -0.3358470208209848
9829 -0.7775788280238177
9830 0.5910693791901778
9831 0.30921008185671517
9832 0.23548910912024112
9833 1.028170010459415
9834 0.8614735371965341
9835 -1.032188015471248
9836 -0.0075415974878501445
9837 -0.8360388401562376
9838 -1.9127348936168036
9839 -0.22034486276103735
9840 -0.05767231037231613
9841 0.5563456171164551
9842 -0.41191607947802905
9843 -2.3702842661090133
9844 -0.1959875389874567
9845 -0.5164457230637345
9846 1.5213811973611353
9847 1.7495762698780368
9848 -0.9372106047298914
9849 -1.4617511768080307
9850 0.7653985422419499
9851 -0.7470904867548915
9852 0.9508750618957469
9853 0.03655914563517114
9854 -1.6407341332102243
9855 0.22646566269267415
9856 -1.225151044550951
9857 0.14514851227336747
9858 -0.26044918295890335
9859 1.3825131429666229
9860 -0.452103508550773
9861 -0.4901829369208692
9862 -2.0112909698653887
9863 0.11364241071314526
9864 -0.9856797569597499
9865 0.30985984804316336
9866 0.21381033297925964
9867 -0.7926559628651664
9868 0.2573556634186203
9869 -0.2530178756346499
9870 -1.3992191515796442
9871 -0.01258990512866567
9872 -0.45210502547436937
9873 0.34145935415680784
9874 -1.1491257404712008
9875 -0.9790253732147229
9876 0.5888505597941093
9877 -0.1773385249305618
9878 -0.5223440963955399
9879 0.8078289625852034
9880 -0.189009552313307
9881 0.18962800530629512
9882 -0.986019755468066
9883 -0.5190005215703893
9884 -0.7292373336183089
9885 -0.6121489786139606
9886 -0.2861445045000337
9887 1.5064239025613138
9888 -1.8480751718571777
9889 -0.3731176032675467
9890 1.9991691585542308
9891 0.13314195528183062
9892 -2.203037166012802
9893 0.7292335101997793
9894 0.06310744601666544
9895 2.037155730265355
9896 0.45437369364634694
9897 -0.9895896213772046
9898 0.10083565999060903
9899 -0.6307226012843227
9900 1.196061602462209
9901 0.05535897425910148
9902 -0.776026855427091
9903 -0.4676218547007525
9904 -0.513067947088789
9905 -1.0068926158590472
9906 0.7083653265393871
9907 0.7703828905042548
9908 1.0025575822417332
9909 -1.00999617330758
9910 -1.6795589542691154
9911 0.1946587602153307
9912 -0.6575667252091569
9913 -1.3965887809915702
9914 -0.8486026044083451
9915 1.0037264638439622
9916 -0.9321286355210892
9917 -0.8783025084220645
9918 0.38582864034628855
9919 -1.1966072028974595
9920 0.2693653285457622
9921 -0.8843140891860564
9922 0.9606427212248012
9923 -0.8210588398916832
9924 -1.2972809452353
9925 1.0328296274281537
9926 -0.6408527994021547
9927 -0.10254385800908311
9928 -0.5976435364007443
9929 0.4410329920924874
9930 0.8656455405024964
9931 -0.010432848429565945
9932 0.4706749254046249
9933 0.6713552818663189
9934 0.8563484466878015
9935 -1.1856523210969858
9936 -0.831524602173476
9937 1.128334768495598
9938 0.5838011394243461
9939 0.20952374017054087
9940 -0.532390127132173
9941 -0.9197965362634837
9942 -0.14788108923300197
9943 -0.3925897894362013
9944 0.4542615690125906
9945 0.16266407188852547
9946 -0.32123089165248936
9947 -2.1813573471267134
9948 1.5982013463238185
9949 2.2414529787539337
9950 2.0918547289782543
9951 0.08341008274402842
9952 -0.5153755676354805
9953 1.4453869908437937
9954 0.32598187089123554
9955 0.5436119064789725
9956 -0.3584612345171701
9957 -0.5763860787370773
9958 0.6681149315825492
9959 -0.46150984303255077
9960 0.937285299758236
9961 -0.2098979405270315
9962 -0.07164712401923368
9963 -0.3068356315042299
9964 -1.4001619912112477
9965 -0.9404694741254799
9966 -1.0935250149061801
9967 1.1679691375745216
9968 1.015411900739814
9969 1.1718326097723255
9970 0.8017752102771813
9971 -0.9931793875258994
9972 -1.304486591269489
9973 0.3062454564319905
9974 0.4306035155559993
9975 1.5727111207558893
9976 0.2603988880173924
9977 2.023403089895803
9978 -0.28412453957357026
9979 0.27829777210003903
9980 1.3051156973521614
9981 0.6012641715967781
9982 -0.30650139182281994
9983 -1.8838520015965237
9984 0.24224605728041568
9985 0.439329446674439
9986 0.9735286217351006
9987 -0.3139513707910807
9988 -1.0815354269762265
9989 0.6573166630333789
9990 0.7128864715807626
9991 -0.43699609111468396
9992 -0.10939165876018088
9993 -1.603697083402384
9994 0.8237817309774189
9995 -0.3713083690927498
9996 -0.4247028632343067
9997 -1.555673670781125
9998 -0.5601139736090598
9999 -1.2960893777659583
0 -1.1795508248113227
1 0.23881627869400782
2 -0.32402331387279626
3 -1.5125256648576102
4 0.4074016774357785
5 0.9411969429155745
6 0.6679634455687545
7 -0.2357542701884496
8 1.8100077897574185
9 1.20923257970095
10 -1.2245245864313088
11 -1.7402986834728298
12 -0.776341030420603
13 1.9962471004074342
14 0.5977269604849912
15 -0.5488198878053789
16 -0.9674039629312488
17 1.3959289441271412
18 0.09802322593299466
19 -0.5305990416324259
20 -1.5696679018553283
21 -1.3697239875084095
22 0.15898131106746705
23 -0.7757864298340018
24 0.24735429952092697
25 0.5944111966450215
26 0.8636857883681502
27 0.267015171650185
28 0.42785980448859523
29 0.5787664159036118
30 -0.7657071602173027
31 -0.9407368676891096
32 0.733892086810584
33 1.2595476362542315
34 -0.21121509919109602
35 0.10355228728265006
36 0.9198870597409878
37 0.05070947560777406
38 2.2312394037484617
39 0.04995612632483925
40 0.7572163716649194
41 0.9078210439127207
42 0.33290645206170255
43 0.5312509127723439
44 1.0748834083696248
45 -0.2953584831614772
46 0.7959907123144467
47 -1.2544680924548604
48 -1.0379001958937466
49 -0.8856454602853462
50 0.9339176728593492
51 -0.2446741080972371
52 0.7462017067777763
53 -0.4908536095342316
54 1.2657807811219752
55 1.1057648015489823
56 1.9342044056914993
57 0.406813122667264
58 -1.1613503772690061
59 0.48960773385032247
60 0.787504970624462
61 1.659953330076665
62 0.3399247012088004
63 1.0582382846821126
64 0.3806181927772901
65 1.7128516326528473
66 -1.4910486303926307
67 -1.065730733912472
68 0.39403459478868375
69 -0.7385831334798149
70 0.24588284087991027
71 0.32456945985889035
72 1.0274248884745607
73 1.086454400261281
74 0.4720125902930292
75 -0.07604367244214089
76 1.2280596973770237
77 1.3237185273860355
78 1.0542958600699588
79 -0.9018169951995798
80 0.5955010573616677
81 -0.24331836489257383
82 0.18772539721557002
83 0.25864464272713883
84 -0.9788906616275892
85 1.3801962447426501
86 1.6000686917732547
87 -1.733704492259921
88 0.7296782983169965
89 -0.5384687606260113
90 0.22134462005010289
91 1.0337716794862055
92 -0.029528503806132006
93 0.9963149187840764
94 0.9965288030678352
95 -2.380417717589903
96 -0.6995492562966023
97 0.3289679502074472
98 -1.9788141704905313
99 -0.5195379086557173
100 -0.008314126030703861
101 2.1296158642832226
102 0.3917721199367403
103 0.3854981930083973
104 0.3109178014877662
105 -0.027559514264398365
106 0.3619535833535816
107 -0.5992799912800334
108 0.017238094947327528
109 0.4691942770153877
110 0.42535323392438135
111 0.21196970186351005
112 -2.768251936724711
113 -0.5041460623451313
114 0.3653161051923304
115 -0.7656987253981485
116 -0.02281395363009332
117 0.9386276081422447
118 0.5582783763050974
119 -1.1188087283805805
120 1.7387295131758436
121 0.402533090633045
122 0.03565310780617914
123 -0.35894012742166365
124 -1.6452709003962194
125 1.7669685619074762
126 0.8220658796245722
127 -2.169180031316974
128 -0.8482726401108835
129 -1.3254156443601894
130 0.9127283855992507
131 -1.1281708921183462
132 -1.8638177769364435
133 0.10158107657253887
134 0.14778294948257495
135 -0.7443601827455596
136 1.073567507374131
137 1.1369179242827765
138 -0.390818544033519
139 0.39470096629869444
140 -0.1047700187731729
141 -0.6902343229793798
142 -0.6716730441448935
143 0.6288708594284952
144 0.42462505443126686
145 0.9710648268678397
146 0.3311593767490589
147 0.8052906346108999
148 -0.9539008994766971
149 0.06186468263507273
150 -1.3144114085802778
151 -1.1529621791392408
152 0.8260997048518782
153 0.7348485628188718
154 0.6060842722558898
155 0.280682194807935
156 0.5117047328711674
157 1.531454744656615
158 -0.04672289021489107
159 0.7848843053683271
160 1.6250906574644703
161 -2.77618865463901
162 -0.8611279443521217
163 2.3073695198543915
164 0.03547868400982993
165 -0.9554726058402244
166 -0.36307775803967257
167 -0.15576966479246415
168 -0.49894066401032205
169 0.7395911898163205
170 -0.493421725754294
171 0.022726618586832982
172 0.03284684259074495
173 -1.2264283446785385
174 0.16630243683396317
175 0.9579664078392878
176 1.6150068875852148
177 1.6706157392406786
178 0.35819982802005657
179 -0.13995150769149978
180 -1.6066515231582879
181 -1.3216255587081367
182 -0.008444759155546398
183 0.7070205520803128
184 0.15781961275156345
185 0.7571333484278715
186 0.5911229278815855
187 0.9522208286987395
188 -0.38199544203888924
189 -0.46900663206281523
190 -0.54661582213044
191 -1.4044082216593978
192 -1.2681806790555101
193 0.11933589897897509
194 -0.56494174240081
195 -1.2975476686942686
196 0.4280114972274069
197 -1.0658621081323127
198 0.7619088622462992
199 -2.171818426832829
200 0.0070836444101342565
201 1.7652484409920277
202 -0.4505074654107677
203 0.5685704576838694
204 0.6855931998106625
205 0.2975543943296682
206 -1.2856125202235824
207 2.039317746278605
208 -0.6274328696871594
209 0.6871751216707915
210 0.8841515183762695
211 1.7024102737104965
212 0.8308369879689426
213 0.1633495384437657
214 0.6486460977963169
215 -0.48857343380039187
216 -0.5261738185531734
217 -0.22146083012922332
218 0.7013737686184432
219 0.06181112692424272
220 -0.5489793346491149
221 0.3851349921918649
222 0.18615342048285888
223 0.8335484198772612
224 0.38432773857049934
225 -2.4180088201143053
226 0.8811124224394807
227 0.5260807920289211
228 1.0962571518000388
229 0.8712879657196435
230 -0.9570776733458883
231 -1.3809679155793622
232 -0.3428355037755586
233 0.5030280048952444
234 -1.1649136287187745
235 1.4123484081365405
236 -1.5150716445918662
237 0.1947810886901516
238 0.8099253324459579
239 0.15855474675960754
240 1.0558756040498443
241 0.23915170754090162
242 -0.7111188223934997
243 0.8245375405590556
244 -0.40616291975009927
245 0.4415736151134
246 1.5093176288706867
247 0.4251780291189002
248 1.0765476398409402
249 -0.8284587462540971
250 -0.881047462475927
251 0.4881067363414829
252 -0.2238932274105676
253 1.1373979581254445
254 -1.6032487271690967
255 -2.805490003320634
256 -0.5311263737358355
257 0.14540478029306478
258 0.45090747133704223
259 -0.584770204119463
260 0.8861365079839977
261 0.9809753354012726
262 -1.2248294706028198
263 0.899406941704286
264 -0.41434892974171633
265 -0.9373631301856112
266 0.121159060938287
267 -2.4087892361258194
268 0.9324665004246098
269 0.8949649156989375
270 -0.5167946833240935
271 -0.7699917472660802
272 0.7889612217857098
273 -0.47370607728322417
274 -0.01484335022732285
275 -1.376701790724774
276 -1.4006791539728192
277 -2.4862634837091395
278 0.49034774803951203
279 1.567544081375955
280 -0.27408388746818935
281 -0.9836665140011218
282 -0.7911146065432437
283 -2.2262534056898233
284 0.623267698162379
285 -0.2693471043864522
286 0.8626985176305964
287 -0.9655466317020667
288 0.9721452430253157
289 0.44459344317514965
290 -0.28417987983892984
291 0.11645263706236456
292 0.5165305369306105
293 -0.35584568689030266
294 0.43739387726075013
295 1.0705103253768125
296 1.1542173591446363
297 1.469558045982606
298 1.5539778560949231
299 -0.6442222158399463
300 1.3841450319434425
301 -0.26115910465273484
302 -1.5375444121475048
303 -0.09068032908715831
304 0.9024516803015639
305 -0.38835709067331076
306 0.4204585222986648
307 -0.7909093790842154
308 -1.0957491867798164
309 0.5998513969590471
310 0.40095790594326364
311 0.2595358389262076
312 0.2640541499214002
313 0.048416969665084936
314 0.4904913316070198
315 0.40935895614560464
316 0.17003174671875948
317 -0.5895711581211193
318 -2.146193641255784
319 -1.1321888339456458
320 -0.9831374164742067
321 1.3426497611271886
322 -1.1651833538583405
323 -0.018439500469002328
324 0.205151315426942
325 0.6366541404949648
326 -1.4718485314461114
327 0.9078629074881664
328 -1.0662634357231724
329 -0.6745923247720895
330 0.9163875852246933
331 1.032384868568993
332 -0.6922041587676544
333 0.1712619470005825
334 -0.4434413002842456
335 0.5273886896131607
336 0.355013480095884
337 0.08793415182732782
338 -0.5062354167376366
339 -2.457193715912134
340 -0.3370313322056735
341 -0.27626896469331125
342 0.2608082974541609
343 0.3269494174075891
344 1.3943129972580968
345 -0.018875503207382027
346 0.00235084399982048
347 -0.5162102477766862
348 1.371040740087552
349 -0.4525850972874441
350 1.1165248337451856
351 -1.5675494148308498
352 1.1974224276577543
353 1.8914768716003092
354 1.3765682894378566
355 0.240050798824964
356 0.05896390745836525
357 1.3258465553009655
358 -0.07935985330610378
359 0.08978435622774603
360 -0.7026456594517156
361 1.6840291350109038
362 2.001126633293056
363 0.5701234904348061
364 -0.2882992262607996
365 -1.5457821829086171
366 -0.43791680521183535
367 0.1721855622455344
368 0.09463047531252052
369 1.0157790105385034
370 -2.6026546060844513
371 0.5658834753552895
372 0.7074156302126161
373 0.5643845686426064
374 0.6474833986763338
375 1.3911450735829225
376 0.09607511528115106
377 -1.34804112790014
378 -0.4516976983534223
379 -0.3844727001593727
380 0.07814121293152881
381 0.6367644745485664
382 -0.4131510054450941
383 1.7356550452946213
384 0.6340419662692108
385 -1.8571192293008378
386 0.9308881580668793
387 -0.8812450946629293
388 0.39832117684634677
389 0.09192562591548858
390 0.22742284525929848
391 -0.16985744233701142
392 -1.529986049145668
393 0.059035484994924906
394 0.8826673427202666
395 -1.6120337839485646
396 -0.2966094837269922
397 -0.6176480010362193
398 -0.49076735246089226
399 -1.2072085177866474
400 -0.10838294752622504
401 0.6572021208224149
402 -0.34488901998921007
403 -0.3260051117230435
404 -0.0585957797537921
405 -0.822720400235995
406 0.08883024559542627
407 -1.1127142518181687
408 -0.6226700634288215
409 0.26165693076520463
410 -0.07032989077579435
411 -1.5176139164366362
412 -1.5535070233910313
413 -0.44989366176464324
414 -1.7603510218533627
415 -0.6198243614905404
416 -0.28481730018575974
417 1.1818261329102502
418 -0.1629207770645953
419 0.17488433782281232
420 0.4788041959116688
421 -0.5213065010772916
422 -0.2707168851396282
423 0.7188486679300687
424 0.9628731503070297
425 -0.9855264601292126
426 1.9201693852402297
427 -0.013097318314656494
428 0.23366993795289606
429 0.10594469334518176
430 1.3681638573505346
431 -0.770776858960317
432 0.9636675662712872
433 0.785652869798697
434 1.2970595258085245
435 -0.016378839742404033
436 -2.6819688583801438
437 0.8282867856826224
438 -1.0761753420663396
439 -0.7733385711404275
440 1.4792170039613892
441 0.6842636250214218
442 0.03128357706216367
443 0.3377376847539596
444 0.22382724503738372
445 1.9547066102374375
446 0.7398279312865199
447 0.06672414771162116
448 0.5718213930607255
449 -1.8705246691226423
450 0.8621886968962997
451 -0.5522702061194786
452 0.031443779031685035
453 0.7715370224844899
454 0.46892899979381886
455 -0.2653594004737416
456 0.1288193343099926
457 -0.20809927142162807
458 0.3163642652997494
459 -1.3660640157433939
460 -0.8701583292375143
461 -0.09584039284366593
462 -2.99860247459666
463 -0.6186965886158654
464 0.1537669653258225
465 0.43420451498485796
466 0.5504432630585091
467 -0.8643119125885843
468 0.3655195921904797
469 0.15408309428587807
470 0.3603777249180772
471 0.7557777394082653
472 0.28256579218273664
473 1.2170163273350914
474 -1.1646944473140848
475 0.6091078790391339
476 -0.2516405920740501
477 -0.5353474566853664
478 -1.0659295338641765
479 -0.06949324281378354
480 -1.2693499273140765
481 0.20198532533076435
482 -0.5597308417420228
483 0.9298056523267724
484 -1.6213613903059472
485 1.0876553427948223
486 1.4051389376782704
487 0.4804013692874772
488 0.11527564384925458
489 0.04545935934732778
490 -0.17920858985721067
491 0.36756571528604726
492 1.3374016197101344
493 0.3095540731160813
494 1.5388008299339846
495 -0.3280397036826063
496 0.4267071886502875
497 1.1393604538145352
498 -0.34564386511228506
499 0.31546987635654533
500 -0.25592012616455223
501 -0.714133137302058
502 0.14436765916205285
503 0.42747640851598756
504 -0.1394614741493893
505 -0.19316456212138006
506 0.27251665412947856
507 0.12636706298368786
508 -0.7374202615081008
509 -1.05079061659657
510 -0.0408659801026667
511 0.9381190201161363
512 -0.6812320950001998
513 -0.21996750123330647
514 -0.409573305972003
515 -0.42921807170673565
516 -0.25647278667157974
517 -0.8393912248099372
518 0.957956675025317
519 -1.0273424721600795
520 0.22134521588405837
521 1.0957831656767782
522 0.38307573015635665
523 -0.34603092639443006
524 -0.7285876794294021
525 1.021726581806725
526 1.3580571436429563
527 0.13764947979267095
528 -0.1994956191210865
529 -1.644104747126995
530 -0.04331798188566413
531 -0.31509540683722476
532 -0.1894831126961036
533 -0.6101671135236354
534 -1.4789345070052495
535 -1.4086807979055163
536 0.4643943788138841
537 0.9737126094702748
538 -1.235436334614122
539 0.06685549537069561
540 -0.9497948005953908
541 0.23974666556171972
542 -1.0876614811547192
543 0.9337030043756402
544 -2.2491246681012003
545 2.2179552654334844
546 0.6728358048206512
547 -1.3849914837852526
548 -1.0881117123721358
549 -0.23709961562761223
550 0.48619041756732745
551 0.522299128762628
552 2.2588298384996683
553 -2.0518500390548713
554 0.5693912777799938
555 -0.30201420080869384
556 -1.4067441013234339
557 -0.026048531892109917
558 0.8863395446436261
559 -0.5662816665770861
560 2.616166939242479
561 0.4674669070559898
562 0.3695751188118021
563 -0.6149957420610482
564 -0.5100877313746347
565 0.06418991781133236
566 -1.035108414743924
567 -0.17061412181729085
568 -0.30224313134078745
569 0.5278580536836278
570 -0.8020474505274869
571 -0.8271461670807205
572 -0.06273303226221633
573 -1.8477716582484334
574 -0.05229864697678145
575 -1.3756087859089452
576 1.1846363049153639
577 -1.7266365577921639
578 1.3739825613612302
579 -1.1233851300808892
580 1.0152033219508512
581 2.402752309076421
582 -0.15020828068591588
583 -2.509330257823739
584 1.659763090369753
585 0.3950877548278731
586 -0.9597427494821376
587 -1.466028252397514
588 0.7753644673986206
589 -0.6471307714003256
590 2.100070072053955
591 -1.1419669484024373
592 -0.7459552068391003
593 -0.6360709807730233
594 -0.540539717978462
595 -0.13649074437003625
596 0.3955654742494263
597 -0.984303875989401
598 -1.4172354726772352
599 1.1473370859922405
600 -1.2358673871775316
601 -0.2116177253555916
602 -0.7797723148528266
603 -0.40038020154082804
604 0.28661467573334987
605 1.659244294201238
606 -1.1415237816578496
607 0.007840230073051421
608 -1.415707923372711
609 1.0521163972038794
610 0.5821614651032391
611 0.2844467321348128
612 -0.8761791219697685
613 1.5381901552189272
614 -0.9669337063701712
615 0.2097094251977123
616 -0.5548631923838196
617 -0.20800633152418221
618 -0.09234582650526581
619 1.0041528936469026
620 1.279053637208281
621 -0.6561051693929278
622 1.286010531565794
623 1.6225478853665123
624 -0.8259006295687403
625 -0.5116646565602604
626 -1.353922999940288
627 -0.7593070826220425
628 0.14623303305392385
629 -0.5470501859095395
630 1.784536596441115
631 -1.0746931741374508
632 -0.710934301988908
633 -0.12333133171848247
634 0.19879845716624703
635 -1.6207210130502536
636 -0.17041294591237713
637 1.3377180192978904
638 -0.2259812313534553
639 0.34695275206487175
640 -1.1533655323349508
641 -1.236508462761664
642 0.914763885081122
643 -0.7568347595097983
644 2.518420145662077
645 1.3536661665664718
646 -0.10595893134204958
647 0.6753314558599125
648 0.717894487124725
649 1.9502369988496568
650 -0.07000971895438732
651 -0.11966367843441464
652 -1.0066423135450742
653 0.8130027856301097
654 1.7692089143067582
655 1.4266989424305794
656 -0.03904638672250533
657 2.396300912458431
658 1.3443605060970525
659 -0.7242145297528696
660 0.49480660731321496
661 1.2147625978999703
662 -1.0330736632757611
663 -1.03635677025767
664 0.2575953410828822
665 0.5300336478910551
666 1.8006386802157417
667 1.0742295572364302
668 -1.3810076749458635
669 1.7010511730211253
670 -1.4199991995061017
671 0.17010984205456378
672 1.0725990677012425
673 -0.2361693352023541
674 -0.3103836774165471
675 -0.011149828775240154
676 -0.1620408149519962
677 1.192072245929976
678 -2.5025774504116645
679 0.04805388134229276
680 -0.8630712182359939
681 -0.7342923907304312
682 -0.30315978275586086
683 0.38649746465247187
684 1.083032050191221
685 2.1444758308790353
686 0.8094232771360143
687 -1.7694482916064318
688 -0.5962493560225081
689 -0.9431607278049834
690 -0.8785457727055278
691 -0.39971863489595455
692 -1.6084314870492338
693 -0.09970939994085222
694 -0.6771833767288986
695 -0.15339245325031925
696 -1.1765999345396803
697 -1.0322845902514983
698 -0.3460273572163869
699 -1.9836261818066676
700 0.27970865760180963
701 0.4529732616780544
702 -0.4904761143050764
703 -0.6501588615116196
704 0.4118492273107751
705 1.2032767865582694
706 -0.5663575290149921
707 -1.4480762177651623
708 -0.04254227851992861
709 0.2840474892581342
710 1.351845436652141
711 -1.667368777021518
712 -0.47584499209155773
713 -0.4226060485169472
714 0.06466579403851644
715 0.36758846253043115
716 0.8350514705859532
717 -2.5069277053212633
718 -1.2443654980166328
719 -0.8868372329483153
720 -1.491956189944975
721 -1.205195920910607
722 -0.34877357424581756
723 1.599920947898087
724 0.9679727030682417
725 -1.9038407037165428
726 -0.6826098669197608
727 -1.5439721294718782
728 0.41115973325035626
729 -1.4009170505993334
730 0.4299948671069018
731 -1.3679737997552979
732 0.18705915648720034
733 -0.5443022896062676
734 1.0379393831349648
735 0.3021299075864346
736 0.9651965003817886
737 -0.5444771508907401
738 -0.515411117924281
739 -0.6946875270281964
740 1.1012378852182538
741 -0.8772427890071076
742 -0.7673931941045188
743 -0.23348513683132957
744 -0.09998227286998267
745 0.9556617386999509
746 -1.8410600104395913
747 0.4357106189854544
748 -0.11771040518961845
749 -0.3409720431996374
750 0.5038664144748385
751 0.2600030433237901
752 -1.5838146856545874
753 -0.2575593318442379
754 -0.32386632703164464
755 0.5333628752494952
756 1.765380143041226
757 -0.7783686442436637
758 -0.039674268198615
759 -0.6996279727670249
760 -0.5739811776715594
761 -1.0406143787277975
762 -1.0531482623354256
763 -0.4740450510712034
764 1.9908115950030147
765 -0.9060421186616333
766 -0.05804325912237507
767 -0.2725889102864987
768 0.9888005119710871
769 -0.2661579636562508
770 0.26016918811876594
771 1.674862707518217
772 -0.7577226897996832
773 0.8924856893510589
774 0.07367510414168749
775 0.333436514276029
776 -0.019106270311869313
777 0.43379552716687575
778 0.2331256698581858
779 0.3499781493491189
780 0.49152686703291376
781 -0.6730216347102536
782 -0.1867984700346427
783 1.7218105312592495
784 0.8891467789338461
785 -0.32715617617354414
786 -0.2072405908111532
787 1.3373285947709317
788 -0.7680084543035284
789 1.1730598210695817
790 0.7876015514738426
791 -0.3011008105632105
792 -2.3129161610785265
793 -2.0415954226305453
794 0.9659752462114978
795 -0.7029923447014395
796 1.224113079164076
797 1.2164836938734183
798 -1.221432470216199
799 -1.1736205008624514
800 1.1960864239351023
801 -0.08595067417948479
802 0.8975958840482579
803 -0.4986056838816074
804 -0.7440394716645371
805 -0.45654934022070814
806 0.8942297476098572
807 -1.2625834755822047
808 0.32428946911215883
809 0.5152694842902009
810 0.17351593193847115
811 -1.1734724249466364
812 -0.5500162483289
813 3.0467763478623127
814 -0.26342637997848306
815 -0.49046925264638147
816 0.7914841435147048
817 -0.26574067389342815
818 -1.577752592845413
819 0.9934573941208673
820 0.6939333404064466
821 0.8607139437809571
822 1.320350505035688
823 -0.9007125137099873
824 -0.5873539366668296
825 -0.140532697170491
826 0.7336582787243678
827 0.38063047173453396
828 0.2608762997570115
829 -0.7308902128759984
830 0.631236209075486
831 -0.06583011498997707
832 0.24139953909807432
833 -0.5745789555929914
834 0.7798327110745058
835 0.8224210779089509
836 0.5828355571646342
837 -0.8401675929638708
838 0.379864676867864
839 1.064692678585708
840 -2.0376302151786185
841 0.5427550528987083
842 0.8661464824298863
843 0.19507674754812035
844 1.0682797597205633
845 2.305890534765535
846 0.3181225380488922
847 0.8388821342916134
848 0.173531981595558
849 0.17301363637551984
850 0.48042623269349316
851 -0.08468465453029105
852 -1.381490379665962
853 0.22164992163926245
854 0.9094413015065956
855 1.1642360446848987
856 0.17203273799590277
857 1.5918395425064737
858 0.9993288732496101
859 1.8852426184897466
860 -1.5677045558449962
861 0.4037509454147867
862 1.152471554798656
863 -1.4821372208781836
864 -0.3234371525781259
865 0.6670007825708307
866 0.14807388676844443
867 -0.9652096319950577
868 0.796664493917673
869 0.8960070449393269
870 0.6275853876357635
871 0.8540913086546241
872 0.01635596726207477
873 1.0488986637377993
874 0.08105550975614291
875 1.9517247082531533
876 -0.1625803045637029
877 0.8699582289397644
878 0.4202463835318456
879 -0.5652867885067577
880 0.8706181080805441
881 -1.114311461054736
882 -0.6114207966874199
883 -0.35817536811376033
884 1.143616415454536
885 1.4751318105384308
886 -0.08802346939316959
887 1.3457972064366401
888 0.5576404978472377
889 -0.2574036416736537
890 0.6497750385069633
891 -0.21485427478095798
892 -0.46146740964197736
893 -0.24185612878303467
894 -0.497976391170236
895 -0.6090504869035445
896 -0.40334592110504325
897 -0.276226753052357
898 -0.09855300206077436
899 1.3460346612415006
900 0.19953512792090297
901 -0.3934638777284924
902 0.7807948290733628
903 -0.9057268764588027
904 -0.39547931448797674
905 -0.28665692807569354
906 0.45377048762570726
907 -0.32578651055503033
908 -0.05605861913758938
909 1.7380624319383104
910 -0.7959646853820225
911 0.12596298090031546
912 1.1270186889507328
913 -0.26676217457090035
914 -0.28336044949697764
915 0.31366121085674176
916 -1.4035197744297558
917 0.6567635122000249
918 -1.3680050209724979
919 -0.22205125201300738
920 1.5257178015389576
921 -0.9559424095688567
922 0.8964343294625273
923 -0.6640390397501545
924 0.0983771964223399
925 0.47191949719556087
926 -2.0695343559048576
927 1.5848716777445548
928 -1.3606345799818718
929 -1.5678746097530532
930 0.6601911977665759
931 0.10609674318129061
932 -0.912797243255628
933 -1.59267926312491
934 0.6021294831448231
935 2.308355135012653
936 0.19988209216049174
937 0.9834817094532045
938 -0.24854378616587547
939 -1.7623296211030473
940 -1.1291902664695157
941 -0.1703069014866671
942 1.5472526294593039
943 1.2902963121756925
944 -1.2770090744148657
945 1.246257412962375
946 -0.6846217176376207
947 -1.3086252703019394
948 -2.9737326785860407
949 1.426202256515168
950 -0.1198929827782466
951 -0.28793221391028156
952 0.4772763063967437
953 -0.5761880570119158
954 0.01909924674229692
955 -0.3079641907474913
956 -1.6445152098187739
957 1.5724477258146494
958 0.5940126477373767
959 -1.1355329251482824
960 -0.17482369665373115
961 -1.0149301294547162
962 0.2221125298639672
963 0.7785728601685825
964 1.2326654305302036
965 -0.517045227518436
966 -0.6864429534103138
967 0.4162719167441355
968 0.30364943352260154
969 0.8726382190020653
970 -0.8640078558729717
971 0.2122228281348464
972 1.728018765279818
973 -1.000686814555091
974 0.3303929647068149
975 -1.7404525301202667
976 0.1155373005520703
977 -0.43948613385555113
978 -0.6075962856555716
979 0.8280100258568014
980 -0.5200280327382388
981 0.40702642057519955
982 0.6664674782149614
983 -0.44496790616483145
984 -0.37657454469405416
985 -0.14638217568072873
986 -0.6289835991986024
987 -0.960893934538116
988 0.914875417729035
989 0.29812502388478607
990 -0.8173803622828598
991 1.758711826869148
992 0.787409527690621
993 -1.56814918797607
994 -0.9039670551173336
995 1.4817697996345585
996 0.8834393866484499
997 2.8067033890181543
998 -0.4288100654672822
999 0.8191576889288471
1000 -0.004977412487087618
1001 1.622074589050228
1002 -1.676815173225249
1003 1.4875485325699278
1004 -0.22736263424693823
1005 -1.123056136788669
1006 -0.5782386832623886
1007 0.32645354686703965
1008 0.21250018438256413
1009 2.2360595130695167
1010 0.44964304956015483
1011 0.18765781900376063
1012 -0.28709011793144706
1013 0.590779024265185
1014 1.335246407222348
1015 -0.2005461798605781
1016 -1.351777533351968
1017 -0.8155635017083046
1018 0.23105528884266183
1019 -1.545002395145894
1020 -0.06448057139653655
1021 1.5111827146476922
1022 -1.0441379500412131
1023 -0.9325321026376768
1024 -1.784819064579493
1025 -1.2142332333556067
1026 0.42975166768118067
1027 -0.8597358916473475
1028 -0.39516614744201795
1029 -0.7094938664604596
1030 0.16067255545442388
1031 0.2055148380844661
1032 -1.3041288216069116
1033 1.1149733418738959
1034 -1.233871896379551
1035 0.5940970953377946
1036 -0.26340145212068206
1037 1.6170995761371634
1038 1.562198660074986
1039 -0.6503057664148528
1040 -0.7342294443286311
1041 -1.9282072631498322
1042 -1.5912876573011479
1043 -0.03850714022745058
1044 1.9669744473204003
1045 -0.6715161535682443
1046 -0.28650849559645075
1047 -0.2042371795045941
1048 -0.5164300983133809
1049 -1.2407424830841638
1050 -0.43215124146942796
1051 -1.4726152890951154
1052 -0.025870347906826335
1053 -0.6297705268888737
1054 -1.2871077035208736
1055 0.27843001596714
1056 1.2677901400759055
1057 0.33747928707602004
1058 1.1914286737532434
1059 -1.0318683552950725
1060 0.12409546925871885
1061 0.09104949839134176
1062 2.0701933077073646
1063 0.044983639325644094
1064 -1.2008781667692625
1065 0.5537446598898582
1066 -1.7793634852330993
1067 1.3215647790283571
1068 0.3487171898216382
1069 0.07820021386839132
1070 1.2906815262065625
1071 0.04560869561791764
1072 -1.9010125294733358
1073 -1.0647119603808461
1074 -1.0649123944770134
1075 -0.7038510625996451
1076 2.166246790608185
1077 1.316721072169139
1078 -0.2219720139734419
1079 -0.24797510217881719
1080 0.7437859795891925
1081 -0.0941288908488718
1082 -0.5596826872071474
1083 0.38284556470960085
1084 0.23120385572745508
1085 -0.42093666279374115
1086 1.0866555781957
1087 1.7908967655348877
1088 1.2383199183912579
1089 1.1572736399346684
1090 0.3164243126073819
1091 1.8235599345590197
1092 -1.5249028163261589
1093 0.16229571350403177
1094 0.5151555141164362
1095 1.229387822641603
1096 1.4109317376259713
1097 -0.008434558643388155
1098 -1.5313033531448852
1099 -0.3136877912306137
1100 0.16991214219725154
1101 -1.4356615356925189
1102 0.9208950577788861
1103 -0.04363522650928384
1104 -0.290244413303866
1105 0.20118453999694072
1106 0.06790686761995328
1107 -1.7674912725064826
1108 1.3814626035325432
1109 -1.1990777902693348
1110 -0.19397538730627323
1111 0.8944065222121351
1112 0.10695192216336706
1113 -0.44149961451000147
1114 1.020811901974865
1115 -1.130807121447164
1116 -1.284806807703917
1117 -1.59048421933078
1118 1.7537046194448895
1119 0.5017275365148594
1120 -1.3995908025918828
1121 -2.936180375026366
1122 -0.16797688796736387
1123 1.5279333720851078
1124 -0.1915753247618557
1125 -0.3911742462852612
1126 -0.36763958105643446
1127 -0.6883505150965914
1128 -0.8573086653099521
1129 -0.40751206012110974
1130 0.47674377925542977
1131 -0.4536968544632742
1132 0.2806702937616789
1133 2.357480295531271
1134 -0.040047149416597594
1135 -0.13282112064219337
1136 -0.3607202802864383
1137 -0.23137501147596898
1138 0.8388835025128186
1139 -0.4528802380247082
1140 0.6068346821321341
1141 -0.012114882833862934
1142 -0.5292154378931855
1143 -0.7530901366854893
1144 -0.07569776545643965
1145 -0.8238338751806308
1146 -0.04377226964327764
1147 -0.10893103211030278
1148 -1.179531631998489
1149 0.6142661605924582
1150 0.939745558063598
1151 -0.3561554820530585
1152 -0.382555162239133
1153 -0.9075723146152425
1154 -0.00821136663982215
1155 -0.17772864934460486
1156 -1.029125005149931
1157 -0.27647208871718587
1158 -1.0125342202888024
1159 -1.253321201441645
1160 -1.0551374769098822
1161 0.3191687518745262
1162 0.6427142954048981
1163 0.15944619439498456
1164 -0.9719034438761353
1165 -1.6106632716261886
1166 -0.8711875065890616
1167 0.2916390619476298
1168 0.7136376379224476
1169 1.3001926989732846
1170 -0.2844267467499428
1171 -1.0587174327555402
1172 0.9217006274950814
1173 0.7190742043436483
1174 2.3859606136004485
1175 1.036186944669198
1176 -0.16005699745391308
1177 -1.3318827058800995
1178 -0.024896473832485992
1179 -1.7017633352556478
1180 -0.3532293262138452
1181 0.19808642642903201
1182 -0.9702938308351452
1183 -0.3891886336669222
1184 0.6640239101655732
1185 -0.4967102881317625
1186 1.7038075083501913
1187 -1.4708922500927168
1188 -0.26388491069180525
1189 -1.1646364641871325
1190 0.6097740224184993
1191 0.21776165825662905
1192 0.8001629261643859
1193 -0.011083078657437927
1194 -0.8641680035050192
1195 0.06075159947723873
1196 -0.03788888538391068
1197 -1.3080181798899901
1198 0.08559977194378857
1199 1.013863005976869
1200 0.6836606928738479
1201 1.5530851797005616
1202 0.4421526384597069
1203 -0.19919212651228588
1204 -0.18005351174502165
1205 2.5153716495252505
1206 0.5437283114801545
1207 1.3029546215822703
1208 0.7235126629046074
1209 -0.4407248083830273
1210 -0.6352099764755664
1211 -0.34627029076239363
1212 0.756435954410239
1213 -0.3127589748615888
1214 -1.3644950031377623
1215 0.801170357282637
1216 0.9964216068070031
1217 0.33850558146731224
1218 -0.33647591992805753
1219 0.35819995653009573
1220 -0.2472834536883848
1221 0.3861732064060656
1222 0.17161706858250705
1223 1.0043436836453137
1224 0.35736234157894065
1225 -0.20682626915950722
1226 0.6291479290819842
1227 0.7931215311330008
1228 -1.2009119269570443
1229 0.610073271930949
1230 0.08186031388714964
1231 -1.500820127297202
1232 -1.013766126228759
1233 -1.018907062277749
1234 0.05872433332158109
1235 -1.2226949721680558
1236 0.8122126671514726
1237 1.2169307308076514
1238 0.5594170812188854
1239 -1.1064148101812792
1240 -0.06732251853517582
1241 -0.35341861058596175
1242 1.0987512221757971
1243 0.898281837120569
1244 -1.2993414662281002
1245 -0.9419492286309525
1246 0.3221329846287746
1247 -0.12913503468079857
1248 1.050736933725846
1249 -0.7164406254371052
1250 1.3956193962076104
1251 1.5451494564420036
1252 -0.039592636185014525
1253 -0.12346535468864454
1254 -1.9081710542752306
1255 0.5264712373346063
1256 0.7789115187651097
1257 -0.07342524794303763
1258 -0.19966865105549061
1259 0.8268681429504144
1260 -0.24823465165366243
1261 -0.07580010568410359
1262 0.2847715629640134
1263 0.7169652983907814
1264 0.31022705085672697
1265 0.3001257084300242
1266 -2.5764410349189015
1267 0.443385087593236
1268 0.8409341887481778
1269 0.9743824230824696
1270 -0.4962043005118214
1271 0.5652340631470694
1272 -0.3734985764928792
1273 0.6441119646742045
1274 -0.9564652892270755
1275 -1.1569389258532061
1276 -1.8633667727872663
1277 -0.17441233300206826
1278 0.9335035579547556
1279 0.4591392138111948
1280 -0.22783075255151844
1281 -0.021909300768240138
1282 1.675919468053449
1283 -0.45827504353240583
1284 0.15405906403547556
1285 0.834087503926544
1286 0.17657695883468488
1287 -1.6436281811369429
1288 1.1341509570313253
1289 -1.4570936272590371
1290 0.2766468699131177
1291 -0.06636089657529758
1292 -0.9989055050998359
1293 -1.7263808798612321
1294 -0.568987047559592
1295 -0.06437937569745539
1296 0.5452554265093932
1297 -1.8527412874333853
1298 -2.1904393536169815
1299 -1.8307574503946715
1300 -1.4054547193715015
1301 -1.6006738814445083
1302 -0.7907620579710154
1303 -0.6865940109740091
1304 0.19474479300923775
1305 -0.6938784371895304
1306 0.02320559138653328
1307 0.10619526154137168
1308 -0.6429462489790891
1309 -1.4482875456846065
1310 0.7453032697764325
1311 -0.7318609651889569
1312 -1.6624844626091122
1313 0.6383305794741865
1314 -0.04508138918385642
1315 0.6788402640803648
1316 -0.4569273065566205
1317 0.0215810741543499
1318 -0.20779188754204533
1319 0.43252402295632153
1320 1.4066265852102613
1321 -1.1462336879989432
1322 1.2275901079131122
1323 -0.9028572703764762
1324 -2.0258975972216757
1325 0.1356579904123791
1326 -0.5126067829677503
1327 -0.2777573880000188
1328 2.1750720857555113
1329 0.6627264067344015
1330 0.08764816849530058
1331 -0.6914764552876684
1332 -0.5422997824321398
1333 0.9785403347790368
1334 -0.6362555921707846
1335 -0.10896659731545834
1336 -0.8232369691978366
1337 1.9875438482946655
1338 1.2353473676785673
1339 -0.8105362271124678
1340 -0.48359239196200265
1341 0.4813619282559734
1342 0.3743902467386655
1343 -0.8760163618306178
1344 0.13431795079092687
1345 2.144063913848534
1346 -1.5233839930047663
1347 0.833742977045824
1348 1.4266047752182338
1349 -0.3159324275679575
1350 -1.9502623102128107
1351 -0.7149073423436187
1352 -0.49019709631198505
1353 0.2836165510908902
1354 0.6482944958475448
1355 0.36933722560776255
1356 -0.47440695117946924
1357 -0.3805787847031372
1358 1.8016185516265188
1359 -0.5347964228547178
1360 -0.48343968456802816
1361 -0.3083478713903164
1362 0.9041761604103526
1363 0.6229588772952072
1364 0.2000734728263959
1365 -0.8862381390832687
1366 2.270746052022208
1367 -0.6595784167580075
1368 -0.4602047930317738
1369 0.4156017191831668
1370 0.154234569876112
1371 -0.39976959222443337
1372 -0.5443027611114076
1373 0.3225454883305375
1374 0.05370249648474074
1375 0.6413879581317119
1376 0.9628319686523061
1377 0.7951287979947468
1378 0.02322184708841108
1379 0.29437242273146946
1380 -0.6651546168656641
1381 0.6661979629234913
1382 -0.18947079788925145
1383 0.34706000057154685
1384 1.1440957911516463
1385 -1.3221594747847074
1386 0.8716426981422227
1387 -1.4877290569694226
1388 -1.283236939141582
1389 -0.7454958054007276
1390 -0.5353353350007295
1391 1.262802065637661
1392 -1.0035514406845725
1393 1.9109094342360993
1394 -0.14248242663533012
1395 -0.003509041380938821
1396 -0.23762567921231006
1397 0.04643117725008813
1398 -1.7123529714097563
1399 1.070513272309909
1400 1.1075301634869419
1401 -1.5400619574209926
1402 -0.28117769269559517
1403 0.6389579858650669
1404 0.6083371045127737
1405 0.7248860705373198
1406 1.0994272849990339
1407 -0.44531392932872593
1408 0.11737345112848407
1409 -0.894784257058975
1410 0.5415608387734889
1411 -0.01981962621024629
1412 -0.27223053905725064
1413 -1.2323732883273422
1414 -1.1047096876012548
1415 -0.8712050398948586
1416 -1.5141506191030063
1417 0.9795777294291732
1418 -0.20581928348244036
1419 0.339334020871488
1420 0.9216092764780145
1421 -0.11162603801796639
1422 -1.5903486999424907
1423 -1.2268348918912082
1424 -1.3191593120775937
1425 -0.5898072111508982
1426 -0.9915052298383028
1427 1.053025961980908
1428 0.13699146605775714
1429 0.31841513740447536
1430 0.3940956871816018
1431 -0.07266102689352873
1432 -0.06010055000106216
1433 0.6505897064474009
1434 -0.3920768378465194
1435 -0.6199419935509117
1436 -0.37254592062807185
1437 0.0032413184094407794
1438 -1.9510175476971319
1439 -0.6467578041061508
1440 1.0730894846083638
1441 0.22759160098646017
1442 0.9864092065367882
1443 0.8638880689629655
1444 -1.1912968018095969
1445 0.3596697824059416
1446 1.4948459899375326
1447 0.22995190020283013
1448 0.5972653437030984
1449 -0.9790285562046752
1450 -0.605110703600343
1451 -1.249721952019288
1452 1.308489479966871
1453 -0.0001108162062743855
1454 -1.238132751351871
1455 0.05090602571439172
1456 -0.13646416119964103
1457 -1.3961892551578101
1458 0.2734420139227691
1459 2.0495719427802546
1460 -0.5486575430050381
1461 -0.2940005501259546
1462 -0.13527554480717122
1463 0.07529721551526158
1464 -1.897577889249478
1465 -1.6152931815720364
1466 -0.061715152947580676
1467 -0.0026371072374548805
1468 0.3349146779143027
1469 -1.0059535399292423
1470 -0.5257812404578797
1471 -1.4204970503239995
1472 1.0869520333448262
1473 0.9959319715411908
1474 0.6045989392987644
1475 1.9637800856779328
1476 -0.32732767633324855
1477 -1.4384887747578377
1478 -1.294320251165028
1479 0.21308889604617418
1480 -0.018963914472409978
1481 0.34195523035581704
1482 0.35177781973246375
1483 0.7938463880600393
1484 1.3758167750356025
1485 -2.6682216893127477
1486 0.8229823070242985
1487 -0.5515594615617548
1488 -1.0037978539426249
1489 0.3355750995781599
1490 -0.46313729210112514
1491 -1.0697491327583626
1492 -0.7501355405806498
1493 -0.33134395319525606
1494 0.18195168202040607
1495 0.5244300026470116
1496 1.855798676593834
1497 0.5206589244464028
1498 0.5324268828825228
1499 0.47909970691450326
1500 -0.9615365622608436
1501 0.02439095510306773
1502 2.188238787145265
1503 -0.5463183231153862
1504 0.7022423673426341
1505 0.5913026595966744
1506 -0.2099874175207648
1507 0.8237493658133241
1508 -1.7927363828441625
1509 0.4727293589835944
1510 -0.67251951675212
1511 0.28835451011834573
1512 -1.2514832237922504
1513 0.2771637763828996
1514 0.47421045663070627
1515 -1.606072794011078
1516 -0.4303398908840116
1517 -0.5925609475565813
1518 0.4695707320161331
1519 -1.1819463354780244
1520 3.0074225998370574
1521 1.7680179501777848
1522 0.20221296338510514
1523 0.1343745273003447
1524 1.4555834288712846
1525 -1.0190653720047524
1526 -1.195392696371854
1527 1.1542979946703618
1528 -0.5200636093060239
1529 0.019081116372842242
1530 0.13849356077257297
1531 -1.4024877695563782
1532 0.5462250391997561
1533 0.8569035540598376
1534 -0.6968815715220605
1535 -0.04829677026216056
1536 -0.3848206545052504
1537 -0.9517584765423511
1538 -0.6296205309436816
1539 0.9733950918212547
1540 -1.4397147808576487
1541 -0.6312806336518618
1542 -0.4115884164514368
1543 -0.03321577924645697
1544 -0.9601181218276515
1545 -0.22555205332928752
1546 0.06379034576431641
1547 -0.30322863046554765
1548 0.28953642226859333
1549 -1.1862855792418912
1550 0.26288167794678485
1551 0.17978252840091552
1552 -0.5534462828382061
1553 0.3416721457827705
1554 -0.4651256628543398
1555 0.7269836100516522
1556 0.31605344984261324
1557 0.622108811860084
1558 -1.046772633738407
1559 -1.0613129284880103
1560 -0.35306515944753614
1561 -2.1735338181389676
1562 -1.2266086771446045
1563 -0.4751110885187607
1564 0.4557705198591197
1565 -0.4177940699224944
1566 1.0035846770916486
1567 -1.3252391128541277
1568 -2.6468637391938796
1569 -0.5934048918582423
1570 0.5952198076517656
1571 0.7965053070876944
1572 1.2820003134298008
1573 0.8108034326033569
1574 -0.46488139030189435
1575 -1.8068530800587883
1576 0.8912667349129569
1577 -0.13924000592017308
1578 -0.9939233142450442
1579 -0.33422039747675913
1580 0.1747420146981618
1581 -1.4579087528185743
1582 -0.550681672712431
1583 -0.42267293658801114
1584 0.4089222699991354
1585 0.9607343492946073
1586 -1.4890178848307216
1587 0.14788606498035867
1588 0.18393605942056285
1589 -0.3016575139036117
1590 -0.42313107409351663
1591 1.0190360671623044
1592 0.6207987479431303
1593 0.6793341159068816
1594 -0.24926164894330735
1595 1.1766224359091284
1596 -0.37560874578893366
1597 0.3719556048237799
1598 0.5690812729016517
1599 1.0189863954811653
1600 -0.07635781476287708
1601 1.8246120023365826
1602 0.7259699604163298
1603 -1.0147590012488608
1604 0.40120912378224594
1605 1.9789124789652777
1606 0.7396869476260163
1607 -0.9567233482598956
1608 0.7289073561668715
1609 0.7801791343434502
1610 -0.6786444311280736
1611 -1.1356235932253291
1612 -1.088707097046943
1613 0.8350996564241923
1614 -1.6792890022594222
1615 0.14444959902077786
1616 1.7570259815979445
1617 -0.13570945449549823
1618 0.35496684239499
1619 0.5294026009864603
1620 0.16248274573923074
1621 0.012088163199730596
1622 1.3599000985851721
1623 0.0484245213222223
1624 0.0919239755794123
1625 1.2966857077206746
1626 0.5232349993387848
1627 -0.16763173848305077
1628 -1.9470923040741381
1629 0.44873910703836384
1630 0.23224536324496448
1631 0.20553495375935704
1632 -0.75707357518447
1633 1.509984238482066
1634 0.3852085588490996
1635 -0.5198030501063323
1636 -1.8503820267274804
1637 -1.022781022538498
1638 0.5927538922603555
1639 -0.6911868864721389
1640 2.4483748278132524
1641 0.04751154090161184
1642 -1.546654508039355
1643 -1.1702084685299865
1644 0.35937468151486474
1645 -0.597524902334213
1646 -1.4637138355719457
1647 0.6591840828742943
1648 -0.21528284426097116
1649 1.1494588514044513
1650 -0.02283315127573699
1651 -0.38359726626569984
1652 0.655449197726811
1653 -0.9562189286815415
1654 -0.06383325470098199
1655 0.052999197194724366
1656 2.0902445158255465
1657 0.4122630835153249
1658 -0.30657174473651155
1659 -1.9456240899105586
1660 1.1992136905368425
1661 0.42990411757328134
1662 -1.5238165142730802
1663 -0.861401835984196
1664 1.9162985010311022
1665 -0.016256735255066542
1666 -0.5017284929667283
1667 -0.03851834635099106
1668 1.981695504270631
1669 -0.21236622785021703
1670 -0.8872356558135184
1671 -0.9138355481005358
1672 2.8736603436569683
1673 0.46703658903969875
1674 -0.35852544811445036
1675 0.20161813858166774
1676 0.9850587604619634
1677 4.2138123249583
1678 -1.1112807180004096
1679 1.6882360718818157
1680 -0.1439839164184998
1681 1.5597453470333213
1682 1.8463673824870024
1683 -0.2660712080789036
1684 -0.8965586510094221
1685 0.1604180684913793
1686 -0.2469726332395487
1687 -0.5726314599305282
1688 -2.132425406122593
1689 1.3862826401192139
1690 -0.39089043889003944
1691 0.8573300790039475
1692 -1.051465099913186
1693 -1.5802564516538478
1694 -1.3008999628414397
1695 -0.48105175075705664
1696 0.6814892614221361
1697 0.9558691985224242
1698 0.434268637167424
1699 -1.393705008416048
1700 -1.8044946980374994
1701 -0.34061545476776633
1702 2.8290376944874263
1703 0.06531450779452597
1704 1.5051307907699802
1705 -0.36227778450678794
1706 1.5639190140572337
1707 -1.2861959179563924
1708 -0.2808117074381466
1709 -0.2629722452244346
1710 0.23352425048984246
1711 -0.4775610631305652
1712 -0.28798572493991315
1713 1.4890548749070254
1714 -0.4077865311095893
1715 0.04583106679501625
1716 1.0254861529475066
1717 -1.320740799606684
1718 0.6355515821267437
1719 0.6405684745856561
1720 -2.4128605124116707
1721 0.8390163131067663
1722 0.0037320371106253193
1723 -0.3446983964893407
1724 -0.11517895280339789
1725 -0.4036072169867676
1726 0.7690586181508902
1727 0.8959580662350721
1728 -0.2242061891166434
1729 -0.768930855266663
1730 -0.8093954973423481
1731 0.13604762728762268
1732 0.27344379822913006
1733 0.5754879792856229
1734 -0.436483880819356
1735 1.8091723299356584
1736 -0.1193258816553334
1737 -0.8415043366168181
1738 0.6184204464111853
1739 0.4261762344196245
1740 -0.20091147185855002
1741 -0.8444103344825601
1742 1.1251749514212206
1743 0.9832861414699655
1744 -1.5155067521086074
1745 0.11262944007451607
1746 1.228051789070056
1747 -0.6537429187997161
1748 -1.1284103237327259
1749 0.01877175285886595
1750 2.3237484474927843
1751 2.3638813389781697
1752 -1.1656401614310476
1753 1.9746058453667992
1754 -1.161773946663213
1755 0.7496265973062511
1756 0.48394471094702096
1757 -0.4864204035615992
1758 -1.3124104096263551
1759 0.48494428356756547
1760 -0.48126106916216377
1761 0.708933397379511
1762 0.41314834944810197
1763 -0.15458387356852496
1764 -0.06922361425669216
1765 -0.48279108580821883
1766 0.29145329230774636
1767 0.3224499763274041
1768 0.5421564285164592
1769 0.12298699232839781
1770 2.3974859560515993
1771 -0.21260202990950047
1772 0.9756276491382464
1773 -0.22370769241711333
1774 0.6674260156228335
1775 -0.1289323764421874
1776 -1.5374083692537437
1777 1.0832649431736348
1778 -1.8422793922341982
1779 -1.2028456943202244
1780 2.2727467304622757
1781 1.6541218104339659
1782 0.2082211441074277
1783 -0.36528004743082765
1784 -0.3348663375266638
1785 -0.3450000454841143
1786 -0.025266583659837995
1787 -0.13878443692503256
1788 1.2417861781333408
1789 -1.2671364658383584
1790 0.05423487035339599
1791 0.8899484537370987
1792 2.9651350463347663
1793 -1.834905952231432
1794 -0.6484296397320078
1795 1.3117425630824482
1796 1.1795395084204399
1797 0.8420003612335926
1798 1.341079437775597
1799 0.15220575676546808
1800 1.5039051285847704
1801 -0.47362279186192646
1802 -0.7887096151399238
1803 -0.5807080279072794
1804 -0.7823140818646771
1805 -1.1726994914435516
1806 0.3018100801818166
1807 1.5397693039382265
1808 -0.6364588683228299
1809 0.642102899002182
1810 -0.6652417795049909
1811 0.8557618282509444
1812 -0.9110322945113847
1813 -0.28577000776269124
1814 0.6224131254942126
1815 0.7427151622114915
1816 -0.5415305582893305
1817 -1.115444603797032
1818 0.03537091414461139
1819 0.20981323380998884
1820 0.01283612485591387
1821 -0.9981613651646505
1822 1.239483088483433
1823 -0.4523906094583386
1824 0.5769606355924064
1825 -0.3234600841900946
1826 -1.018992509983464
1827 0.7740738539843606
1828 -0.46739322245812254
1829 -0.632460486843469
1830 -0.4819749354935387
1831 1.2019343100843936
1832 0.11323315490024932
1833 -1.6593042891121386
1834 0.35303137801367357
1835 -0.8817280079843179
1836 -0.5184734471336566
1837 -1.556516407987686
1838 1.339441062665522
1839 -0.6180413848020742
1840 0.9070168501514566
1841 0.187188671094152
1842 -0.783302809112706
1843 -0.4661890324001029
1844 -0.8537071790266229
1845 1.0849821950871157
1846 -0.06167898938588772
1847 2.0797366237959305
1848 -0.14710286243167367
1849 -0.8373648883564451
1850 0.9399492507729278
1851 -0.8062496939347557
1852 -0.680252255192928
1853 -0.2143000631174463
1854 1.5459615647192946
1855 -0.021890657441965018
1856 -1.8145109586748702
1857 -1.6271181546529583
1858 -0.9382704529475581
1859 -0.7174785851399963
1860 0.27002792114838997
1861 -0.9016340961393927
1862 -1.4011334138060634
1863 1.6340425285784315
1864 0.9611509058915783
1865 -0.30849632703477536
1866 0.4063878946849955
1867 -0.47332495299780547
1868 1.3496147304221118
1869 0.8012551617498438
1870 0.4104806317558418
1871 0.6736945223174385
1872 -1.95774433972608
1873 0.8712235313372828
1874 -0.16665038755318864
1875 0.2988102999322509
1876 -0.143669354103864
1877 0.17998809120526085
1878 -1.0132028958210304
1879 -0.21739333566757923
1880 -1.0861828592504825
1881 -0.12395583693081977
1882 -0.7594253867309773
1883 1.302091361959856
1884 1.1677793556577858
1885 -0.4857630679438397
1886 0.17809168027727745
1887 0.3159108160601348
1888 0.47370849698772666
1889 -0.9828199690188345
1890 -0.5437051571311052
1891 0.7318298416704875
1892 0.14123172557134633
1893 -0.8040826400437749
1894 0.5623726412653514
1895 -1.075157477359375
1896 -0.6311697902527733
1897 -0.03099672839678242
1898 -0.07133961054843711
1899 -0.8675370075282236
1900 2.018199378677072
1901 1.1692943186450093
1902 0.9255723785797586
1903 -0.8592445209506233
1904 -0.046578099379909525
1905 0.20592173109257564
1906 0.9353416063037802
1907 -0.41124284875700823
1908 0.6322249870367094
1909 -0.16163065988679484
1910 -0.239831394660254
1911 0.023527996925009766
1912 1.6578987898651298
1913 0.5116280937978281
1914 -0.37389725022128784
1915 0.9407911301618803
1916 1.356574663979588
1917 -0.3122776326956178
1918 -0.49896570693254205
1919 0.1731715994054969
1920 -0.014506170093003975
1921 0.2465138291235658
1922 0.001203613167539743
1923 -0.3239826092848641
1924 -0.2242814586532949
1925 -0.04567747761065665
1926 -1.3297122139883415
1927 0.03914657105890537
1928 0.5120826293701929
1929 0.264708571231234
1930 -0.7089339694758252
1931 -1.006696900728785
1932 0.7591135220448139
1933 0.593003000955443
1934 -0.3005246696721331
1935 0.16449172623218777
1936 1.3283460176606778
1937 1.5607430817774552
1938 -0.4534322777845912
1939 0.7594481458881015
1940 0.6610397553088062
1941 0.5500328636019487
1942 -0.38540943675174033
1943 -0.7035254106276332
1944 -2.1495837257312473
1945 0.7221328375359383
1946 0.6026172528304454
1947 -1.5811790590748052
1948 0.3062239938678365
1949 0.06220550839593449
1950 1.9758363197091495
1951 0.4399095241697214
1952 -0.29057507857015574
1953 -1.1496175260989978
1954 1.1445544133238337
1955 1.0460581211843463
1956 0.9779001114573403
1957 -0.25348482288414337
1958 1.347600244432023
1959 0.056602594822393215
1960 0.3827522104569827
1961 0.9381546652662179
1962 0.717046210895257
1963 -0.20258453766046394
1964 1.6512089114860522
1965 -0.753012852887744
1966 -1.0140776494129853
1967 1.1626295452606243
1968 -1.175621082994374
1969 0.046243346191019705
1970 -0.023219401793611087
1971 1.9256284644581418
1972 1.1328065131940102
1973 -0.08158546793787783
1974 -0.20702307187472552
1975 -0.2176319158741729
1976 0.2922601745961531
1977 -0.8894882445454682
1978 1.5888142286627096
1979 -1.0193056247066854
1980 1.0069441299018116
1981 -1.6148791713108825
1982 0.755009747956202
1983 -1.7069934962704503
1984 -1.6233523852305833
1985 0.034869320245691
1986 0.11147808595265644
1987 -0.5621907014920716
1988 0.8240521582494308
1989 -0.7377362720381306
1990 -0.44059962816849196
1991 -0.04922160420736285
1992 0.29647494453246376
1993 0.707815333910802
1994 1.0283102358458458
1995 -0.2963704067204993
1996 -1.0967744417591856
1997 0.2748802578067312
1998 1.7293681028891177
1999 -0.9371537458291129
0  ┌────────────────────────────────────────┐
1 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points1
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│
16  └────────────────────────────────────────┘
17  -1  3
0  Scatter
1  ┌──────────┐
2 2 │' :      '│
3  │'':'''''''│
4  │  :       │
5  │  :       │
6 -5 │. :      .│
7  └──────────┘
8  -1  3
0  ┌────────────────────────────────────────┐
1 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│
16  └────────────────────────────────────────┘
17  -1  3
0  ┌────────────────────────────────────────┐
1 5 │                                        │
2  │                             ░░         │
3  │                        ░░░ ░ ░░  ░░    │
4  │                   ░ ░░░░░░░▒▒░▒░░░▒    │
5  │                  ░░░▒▒░▒▓▒▒▒▒▒░░▓░░░ ░ │
6  │           ░   ░░░░▒░▒░▒▒▒▒▓▒▓▓▓▒▓▒░░░░░│
7  │         ░ ░░░░░░░░▒▒░▒▒▓▓▒▒▓▓▓▓▒▓░░░░░ │
8  │         ░░░░░▒░░▒░▓▒░▒▒▒▓░▒▒▒▓▒░▒▒ ▒   │
9  │        ░░▒▒░▒▒█▓▓▒▒▒░▓▒░▒▒▒▒ ░░░░ ░    │
10  │       ░░░░░▒▒▓▓▒▒▓█▓▓█▒░▒▒░ ░░   ░     │
11  │       ░░░░▒▒▒▒▒▒▒▓▒▒▒▒░░░░░            │
12  │        ░  ░░▒░▒░▒▒▒░▒▒░░               │
13  │         ░ ░░░░░░ ░░  ░                 │
14  │                                        │
15 -3 │                                        │
16  └────────────────────────────────────────┘
17  -3  4
0  Title
1  ┌────────────────────────────────────────┐
2 5 │                                        │ foo
3  │                             ░░         │ bar
4  │                        ░░░ ░ ░░  ░░    │
5  │                   ░ ░░░░░░░▒▒░▒░░░▒    │
6  │                  ░░░▒▒░▒▓▒▒▒▒▒░░▓░░░ ░ │
7  │           ░   ░░░░▒░▒░▒▒▒▒▓▒▓▓▓▒▓▒░░░░░│
8  │         ░ ░░░░░░░░▒▒░▒▒▓▓▒▒▓▓▓▓▒▓░░░░░ │
9  │         ░░░░░▒░░▒░▓▒░▒▒▒▓░▒▒▒▓▒░▒▒ ▒   │
10  │        ░░▒▒░▒▒█▓▓▒▒▒░▓▒░▒▒▒▒ ░░░░ ░    │
11  │       ░░░░░▒▒▓▓▒▒▓█▓▓█▒░▒▒░ ░░   ░     │
12  │       ░░░░▒▒▒▒▒▒▒▓▒▒▒▒░░░░░            │
13  │        ░  ░░▒░▒░▒▒▒░▒▒░░               │
14  │         ░ ░░░░░░ ░░  ░                 │
15  │                                        │
16 -3 │                                        │
17  └────────────────────────────────────────┘
18  -3  4
19  x
0  ┌────────────────────────────────────────┐
1 2.5 │⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5  │⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⡧⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 -5.5 │⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀│
16  └────────────────────────────────────────┘
17  -1.5  3.5
0 Scatter
1 ┌────────────────────────────────────────┐
2 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points1
3 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points2
4 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀│ points3
5 │⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6 │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│
7 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9 y │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16 -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│
17 └────────────────────────────────────────┘
18 -1 3
19 x
0  ┌────────────────────────────────────────┐
1 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│
16  └────────────────────────────────────────┘
17  -1  3
0  Scatter
1  ┌────────────────────────────────────────┐
2 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points1
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9 y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16 -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│
17  └────────────────────────────────────────┘
18  -1  3
19  x
0  Scatter
1  ┌────────────────────────────────────────┐
2 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points1
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points2
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9 y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16 -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│
17  └────────────────────────────────────────┘
18  -1  3
19  x
0  Scatter
1  ┌────────────────────────────────────────┐
2 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points1
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│ points2
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀│ points3
5  │⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⡗⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9 y  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16 -5 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│
17  └────────────────────────────────────────┘
18  -1  3
19  x
0  ┌────────────────────────────────────────┐
1 10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 6 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16  └────────────────────────────────────────┘
17  1  5
0  ┌────────────────────────────────────────┐
1 10 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 6 │⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16  └────────────────────────────────────────┘
17  11  15
0  ┌────────────────────────────────────────┐
1 -14.998 │⠁⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 -15.005 │⡀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀│
16  └────────────────────────────────────────┘
17  -1000  4000
0  ┌────────────────────────────────────────┐
1 2000 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈│
15 -6000 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16  └────────────────────────────────────────┘
17  14.999  15.003
0  ┌────────────────────────────────────────┐
1 1.2796649117521434e+218 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 -1.2796649117521434e+218 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
16  └────────────────────────────────────────┘
17  0  2
0  ┌────────────────────────────────────────┐
1 2 │⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀│
2  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
3  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
4  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
5  │⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒⠒│
6  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
7  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
8  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
9  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
10  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
11  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
12  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
13  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
14  │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀│
15 -5 │⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀│
16  └────────────────────────────────────────┘
17  1  5
0 98652211 | 0 | 145589
1 95543000 | 1 | 11344889
2 4410 | 2 | 23344666788
3 9743221100 | 3 | 3358888
4 98866432211110 | 4 | 11189
5 5310 | 5 | 0133377778
6 8764331 | 6 | 012356789
7 8553210 | 7 | 025569
8 944400 | 8 | 1558999
9 98755442210 | 9 | 0123466899
10 0 | 10 | 0
11 Key: 1|0 = 10
12 The decimal is 1 digit(s) to the right of |
0 png_ | a | p
1 eaa | b |
2 | c | aah
3 o | d |
4 g | e | l
5 | f | lr
6 | g | n
7 | h |
8 | i |
9 u | j | u
0 -1 | 0077
1 -0 | 0000234556677788999
2 0 | 01222356788899999
3 1 | 034889
4 2 | 127
5 3 | 1
6 Key: 1|0 = 10
7 The decimal is 1 digit(s) to the right of |
0 -4 | 0
1 -3 | 05
2 -2 | 05
3 -1 | 05
4 -0 | 5
5 0 | 05
6 1 | 05
7 2 | 05
8 3 | 05
9 4 | 0
10 Key: 1|0 = 1
11 The decimal is 0 digit(s) to the right of |
0 0 😄 11225689
1 1 😄 00034559
2 2 😄 0144
3 3 😄 0011223479
4 4 😄 01111223466889
5 5 😄 0135
6 6 😄 1334678
7 7 😄 0123558
8 8 😄 004449
9 9 😄 01224455789
10 10 😄 0
11 Key: 1😄0 = 10
12 The decimal is 1 digit(s) to the right of 😄
0 0 | 11225689
1 1 | 00034559
2 2 | 0144
3 3 | 0011223479
4 4 | 01111223466889
5 5 | 0135
6 6 | 1334678
7 7 | 0123558
8 8 | 004449
9 9 | 01224455789
10 10 | 0
11 Key: 1|0 = 10
12 The decimal is 1 digit(s) to the right of |
0 -10 | 0
1 -9 | 0011222444456789999
2 -8 | 11233455789
3 -7 | 0001112334556678999
4 -6 | 1344556666789
5 -5 | 1223334455666779
6 -4 | 012334566667778889
7 -3 | 0001244556777788
8 -2 | 0111233445556666778889999
9 -1 | 23345566677899
10 -0 | 123333345566677888999
11 0 | 001135677888999
12 1 | 0333446678999
13 2 | 0022334567779
14 3 | 0123457889
15 4 | 44799
16 5 | 01334455666999
17 6 | 22245677889
18 7 | 011233556777899
19 8 | 012344444555666777999
20 9 | 113345689
21 10 | 0
22 Key: 1|0 = 10
23 The decimal is 1 digit(s) to the right of |
0 -10 | 0
1 -9 | 0123456789
2 -8 | 0123456789
3 -7 | 0123456789
4 -6 | 0123456789
5 -5 | 0123456789
6 -4 | 0123456789
7 -3 | 0123456789
8 -2 | 0123456789
9 -1 | 0123456789
10 -0 | 123456789
11 0 | 0123456789
12 1 | 0123456789
13 2 | 0123456789
14 3 | 0123456789
15 4 | 0123456789
16 5 | 0123456789
17 6 | 0123456789
18 7 | 0123456789
19 8 | 0123456789
20 9 | 0123456789
21 10 | 0
22 Key: 1|0 = 10
23 The decimal is 1 digit(s) to the right of |
0 a | _gnp
1 b | aae
2 c |
3 d | o
4 e | g
5 f |
6 g |
7 h |
8 i |
9 j | u
0 a_ | _
1 ag | e
2 an | t
3 ap | p
4 ba | rz
5 be | e
6 do | g
7 eg | g
8 ju | n
0 a | ?gnp
1 b | aae
2 c |
3 d | o
4 e | g
5 f |
6 g |
7 h |
8 i |
9 j | u
11
22 module Helper
33 module WithTerm
4 def with_term(tty=true)
4 def with_sio(tty: true)
55 sio = StringIO.new
66 def sio.tty?; true; end if tty
77
8 orig_stdout, $stdout = $stdout, sio
9 orig_env = ENV.to_h.dup
10 ENV['TERM'] = 'xterm-256color'
11
12 result = yield
8 result = yield(sio)
139 sio.close
1410
1511 [result, sio.string]
16 ensure
17 $stdout.close
18 $stdout = orig_stdout
19 ENV.replace(orig_env) if orig_env
12 end
13
14 def with_term(tty=true)
15 with_sio(tty: tty) do |sio|
16 begin
17 orig_stdout, $stdout = $stdout, sio
18 orig_env = ENV.to_h.dup
19 ENV['TERM'] = 'xterm-256color'
20 yield
21 ensure
22 $stdout = orig_stdout
23 ENV.replace(orig_env) if orig_env
24 end
25 end
2026 end
2127 end
2228 end
88 end
99 assert_raise(ArgumentError) do
1010 UnicodePlot.barplot([:a, :b], [-1, 2])
11 end
12 end
13
14 sub_test_case("with invalid arguments") do
15 test("unknown border type") do
16 assert_raise(ArgumentError.new("unknown border type: invalid_border_name")) do
17 UnicodePlot.barplot(data: {bar: 23, foo: 37}, border: :invalid_border_name)
18 end
1119 end
1220 end
1321
22 include Helper::WithTerm
33
44 sub_test_case("UnicodePlot.boxplot") do
5 sub_test_case("with invalid arguments") do
6 test("unknown border type") do
7 assert_raise(ArgumentError.new("unknown border type: invalid_border_name")) do
8 UnicodePlot.boxplot([1, 2, 3, 4, 5], border: :invalid_border_name)
9 end
10 end
11 end
12
513 sub_test_case("print to tty") do
614 test("without name") do
715 plot = UnicodePlot.boxplot([1, 2, 3, 4, 5])
55 ascii: UnicodePlot::AsciiCanvas,
66 braille: UnicodePlot::BrailleCanvas,
77 density: UnicodePlot::DensityCanvas,
8 dot: UnicodePlot::DotCanvas
8 dot: UnicodePlot::DotCanvas,
9 block: UnicodePlot::BlockCanvas
910 }.freeze
1011
1112 def self.included(mod)
5354
5455 test("empty") do
5556 if self.class::CANVAS_NAME == :braille
56 _, output = with_term { @canvas.show($stdout) }
57 _, output = with_term { @canvas.show(UnicodePlot::IOContext.new($stdout)) }
5758 assert_equal(fixture_path("canvas/empty_braille_show.txt").read,
5859 output)
5960 else
60 _, output = with_term { @canvas.show($stdout) }
61 _, output = with_term { @canvas.show(UnicodePlot::IOContext.new($stdout)) }
6162 assert_equal(fixture_path("canvas/empty_show.txt").read,
6263 output)
6364 end
7980 end
8081
8182 test("print_row") do
82 _, output = with_term { @canvas.print_row($stdout, 2) }
83 _, output = with_term { @canvas.print_row(UnicodePlot::IOContext.new($stdout), 2) }
8384 assert_equal(fixture_path("canvas/#{self.class::CANVAS_NAME}_printrow.txt").read,
8485 output)
8586 end
8687
8788 test("print") do
88 _, output = with_term { @canvas.print($stdout) }
89 _, output = with_term { @canvas.print(UnicodePlot::IOContext.new($stdout)) }
8990 assert_equal(fixture_path("canvas/#{self.class::CANVAS_NAME}_print.txt").read,
9091 output)
9192 end
9293
9394 test("print_nocolor") do
94 _, output = with_term(false) { @canvas.print($stdout) }
95 _, output = with_term(false) { @canvas.print(UnicodePlot::IOContext.new($stdout)) }
9596 assert_equal(fixture_path("canvas/#{self.class::CANVAS_NAME}_print_nocolor.txt").read,
9697 output)
9798 end
9899
99100 test("sow") do
100 _, output = with_term { @canvas.show($stdout) }
101 _, output = with_term { @canvas.show(UnicodePlot::IOContext.new($stdout)) }
101102 assert_equal(fixture_path("canvas/#{self.class::CANVAS_NAME}_show.txt").read,
102103 output)
103104 end
104105
105106 test("show_nocolor") do
106 _, output = with_term(false) { @canvas.show($stdout) }
107 _, output = with_term(false) { @canvas.show(UnicodePlot::IOContext.new($stdout)) }
107108 assert_equal(fixture_path("canvas/#{self.class::CANVAS_NAME}_show_nocolor.txt").read,
108109 output)
109110 end
135136
136137 include CanvasTestCases
137138 end
139
140 class BlockCanvasTest < Test::Unit::TestCase
141 CANVAS_NAME = :block
142
143 include CanvasTestCases
144 end
77 @dy = randn[1000, 1000].compact
88 assert_equal(1000, @dx.length)
99 assert_equal(1000, @dy.length)
10 end
11
12 sub_test_case("with invalid arguments") do
13 test("unknown border type") do
14 assert_raise(ArgumentError.new("unknown border type: invalid_border_name")) do
15 UnicodePlot.densityplot(@dx, @dy, border: :invalid_border_name)
16 end
17 end
1018 end
1119
1220 test("default") do
44 sub_test_case("UnicodePlot.histogram") do
55 def setup
66 @x = fixture_path("randn.txt").read.lines.map(&:to_f)
7 end
8
9 sub_test_case("with invalid arguments") do
10 test("unknown border type") do
11 assert_raise(ArgumentError.new("unknown border type: invalid_border_name")) do
12 UnicodePlot.histogram(@x, border: :invalid_border_name)
13 end
14 end
715 end
816
917 test("default") do
2222 assert_raise(ArgumentError) { UnicodePlot.lineplot(1..3, 1..2) }
2323 end
2424
25 sub_test_case("with invalid arguments") do
26 test("unknown border type") do
27 assert_raise(ArgumentError.new("unknown border type: invalid_border_name")) do
28 UnicodePlot.lineplot(@x, @y, border: :invalid_border_name)
29 end
30 end
31 end
32
2533 sub_test_case("with numeric array") do
2634 test("default") do
2735 plot = UnicodePlot.lineplot(@x, @y)
191199 output)
192200 end
193201
202 test("fixed line y-interpolation bug (issue 32)") do
203 ys = [261, 272, 277, 283, 289, 294, 298, 305, 309, 314, 319, 320, 322, 323, 324]
204 xs = ys.size.times.to_a
205 plot = UnicodePlot.lineplot(xs, ys, height: 26, ylim: [0, 700])
206 _, output = with_term { plot.render($stdout, newline: false) }
207 assert_equal(fixture_path("lineplot/issue32_fix.txt").read,
208 output)
209 end
210
194211 # TODO: functions
195212
196 # TODO: stairs
213 sub_test_case("stairs") do
214 def setup
215 @sx = [1, 2, 4, 7, 8]
216 @sy = [1, 3, 4, 2, 7]
217 end
218
219 test("pre") do
220 plot = UnicodePlot.stairs(@sx, @sy, style: :pre)
221 _, output = with_term { plot.render($stdout, newline: false) }
222 assert_equal(fixture_path("lineplot/stairs_pre.txt").read, output)
223 end
224
225 test("post") do
226 # inferred post
227 plot = UnicodePlot.stairs(@sx, @sy)
228 _, output = with_term { plot.render($stdout, newline: false) }
229 assert_equal(fixture_path("lineplot/stairs_post.txt").read, output)
230 # explicit post
231 plot = UnicodePlot.stairs(@sx, @sy, style: :post)
232 _, output = with_term { plot.render($stdout, newline: false) }
233 assert_equal(fixture_path("lineplot/stairs_post.txt").read, output)
234 end
235
236 test("with parameters") do
237 plot = UnicodePlot.stairs(@sx, @sy, title: "Foo", color: :red, xlabel: "x", name: "1")
238 sx2 = @sx.map { |val| val - 0.2 }
239 sy2 = @sy.map { |val| val + 1.5 }
240 plot2 = UnicodePlot.stairs!(plot, sx2, sy2, name: "2")
241 assert_equal(plot.class, plot2.class)
242 _, output = with_term { plot.render($stdout, newline: false) }
243 assert_equal(fixture_path("lineplot/stairs_parameters.txt").read, output)
244
245 # add a 3rd staircase and check again
246 plot3 = UnicodePlot.stairs!(plot, @sx, @sy, name: "3", style: :pre)
247 assert_equal(plot.class, plot3.class)
248 _, output = with_term { plot.render($stdout, newline: false) }
249 assert_equal(fixture_path("lineplot/stairs_parameters2.txt").read, output)
250
251 # check with color disabled
252 output = StringIO.open do |sio|
253 plot.render(sio)
254 sio.close
255 sio.string
256 end
257 assert_equal("\n", output[-1])
258 assert_equal(fixture_path("lineplot/stairs_parameters2_nocolor.txt").read,
259 output.chomp)
260 end
261
262 test("special weird case") do
263 plot = UnicodePlot.stairs(@sx, [1, 3, 4, 2, 7000])
264 _, output = with_term { plot.render($stdout, newline: false) }
265 assert_equal(fixture_path("lineplot/stairs_edgecase.txt").read, output)
266 end
267
268 test("annotations") do
269 plot = UnicodePlot.stairs(@sx, @sy, width: 10, padding: 3)
270 plot.annotate!(:tl, "Hello")
271 plot.annotate!(:t, "how are")
272 plot.annotate!(:tr, "you?")
273 plot.annotate!(:bl, "Hello")
274 plot.annotate!(:b, "how are")
275 plot.annotate!(:br, "you?")
276 UnicodePlot.lineplot!(plot, 1, 0.5)
277 _, output = with_term { plot.render($stdout, newline: false) }
278 assert_equal(fixture_path("lineplot/squeeze_annotations.txt").read, output)
279 end
280 end
197281 end
198282 end
00 require 'stringio'
11
22 class TestPlot < Test::Unit::TestCase
3 include Helper::WithTerm
4
35 sub_test_case("#render") do
46 test("render to $stdout when no arguments") do
57 sio = StringIO.new
1517 $stdout = save_stdout
1618 end
1719 end
20
21 test("color: true") do
22 _, tty_output = with_sio(tty: true) {|sio| UnicodePlot.barplot(data: {a: 23, b: 37}).render(sio) }
23 _, notty_output = with_sio(tty: false) {|sio| UnicodePlot.barplot(data: {a: 23, b: 37}).render(sio, color: true) }
24
25 assert_equal(tty_output, notty_output)
26 end
27
28 test("color: false") do
29 _, tty_output = with_sio(tty: true) {|sio| UnicodePlot.barplot(data: {a: 23, b: 37}).render(sio, color: false) }
30 _, notty_output = with_sio(tty: false) {|sio| UnicodePlot.barplot(data: {a: 23, b: 37}).render(sio) }
31
32 assert_equal(tty_output, notty_output)
33 end
1834 end
1935 end
+0
-0
test/test-result.rb less more
(Empty file)
1818 end
1919 assert_raise(ArgumentError) do
2020 UnicodePlot.scatterplot(1..3, 1..2)
21 end
22 end
23
24 sub_test_case("with invalid arguments") do
25 test("unknown border type") do
26 assert_raise(ArgumentError.new("unknown border type: invalid_border_name")) do
27 UnicodePlot.scatterplot(@x, @y, border: :invalid_border_name)
28 end
2129 end
2230 end
2331
0 # coding: utf-8
1 class HistogramTest < Test::Unit::TestCase
2 include Helper::Fixture
3 include Helper::WithTerm
4
5 sub_test_case("UnicodePlot.stemplot") do
6 def setup
7 @randoms = fixture_path("randn.txt").read.lines.take(50).map(&:to_f)
8
9 @int80a = [40, 53, 33, 8, 30, 78, 68, 63, 80, 75, 73, 75, 61, 24, 84, 84, 51, 31, 94, 63, 72, 9, 80, 1, 84, 1, 13, 55, 46, 41, 99, 100, 39, 41, 10, 70, 67, 21, 50, 41, 49, 24, 32, 42, 32, 37, 44, 10, 48, 64, 41, 46, 94, 15, 15, 5, 6, 97, 48, 14, 2, 92, 10, 2, 91, 89, 20, 98, 19, 66, 43, 95, 90, 34, 71, 42, 31, 92, 95, 30]
10
11 @int80b = [23, 24, 70, 61, 26, 57, 28, 18, 69, 53, 92, 11, 33, 38, 85, 58, 38, 27, 14, 62, 57, 38, 91, 11, 66, 23, 63, 28, 98, 9, 53, 26, 1, 93, 96, 49, 8, 89, 19, 18, 68, 51, 4, 57, 79, 90, 72, 99, 41, 57, 100, 94, 5, 13, 24, 76, 5, 60, 26, 41, 89, 99, 22, 81, 41, 48, 65, 67, 38, 53, 96, 85, 75, 89, 35, 75, 88, 50, 14, 33]
12
13 @int300 = [-30, -7, 37, -42, -15, 8, 62, 22, -3, -32, -35, -48, -29, 8, -75, 27, 84, 81, -21, 9, 23, 86, -30, 29, 47, 89, -3, 38, 22, 31, 49, 84, -5, -28, -26, -66, 68, 59, -92, -3, -23, 100, -73, 19, -37, 89, -21, 23, 71, 14, -98, 49, -3, -1, -8, 67, -55, -30, -55, 93, 69, -20, -79, -91, -23, -46, 84, -49, -12, 35, -74, -2, -84, -34, -28, 98, -70, -72, 71, 86, 24, 64, -99, -76, -37, 54, 53, 72, -31, -53, 85, 10, -17, -8, -35, -16, -3, 26, 68, -92, 20, -70, 87, -78, 95, -88, -85, -7, 67, -47, -46, 0, -24, -48, 53, -53, -26, 79, -51, -40, -95, -37, 44, 77, -66, 85, 14, 5, -25, -85, -54, -17, -94, -52, -75, -79, 79, -53, -16, -27, -43, -94, -66, -56, -47, -56, -21, 7, 73, -19, 87, -64, -46, -81, 19, -13, -44, -87, -22, 18, 54, -9, 84, 50, 85, 62, 8, 99, -94, -65, 59, 93, 84, 16, 82, -16, 77, 55, -63, -13, -34, -77, 55, 87, -99, -82, 9, 73, 75, -94, -6, 9, 89, 27, 70, 56, -38, -67, -46, 59, 91, -26, 30, -81, -6, -29, -66, 25, 17, -25, -9, -90, 20, -71, 1, -47, -76, 39, -29, -19, -45, 91, -92, -6, -59, 34, 51, -61, -41, -90, 77, 83, -83, -25, -29, -64, 16, -91, -14, 7, -71, -57, -71, 76, -9, -43, -89, 86, 56, 56, 27, 3, -5, 13, -99, 13, -97, -68, 94, -15, 6, -8, -28, -52, 38, -96, -54, 13, -36, 78, -24, 32, 96, -57, -56, -27, -79, -73, -18, 44, -48, -65, -4, 80, -69, -26, -38, 66, 62, 65, -83, -100, -37, 1, -99, 75, 33, 19, 0, -70]
14
15 @words_1 = %w[apple junk ant age bee bar baz dog egg a]
16 @words_2 = %w[ape flan can cat juice elf gnome child fruit]
17
18 end
19
20 test("range input") do
21 _, output = with_term { UnicodePlot.stemplot(-100..100) }
22 assert_equal(fixture_path("stemplot/range.txt").read, output)
23 end
24
25 test("positive integers") do
26 _, output = with_term { UnicodePlot.stemplot(@int80a) }
27 assert_equal(fixture_path("stemplot/pos_ints.txt").read, output)
28 end
29
30 test("with happy divider") do
31 _, output = with_term { UnicodePlot.stemplot(@int80a, divider: "😄") }
32 assert_equal(fixture_path("stemplot/ints_divider.txt").read, output)
33 end
34
35 test("positive and negative integers") do
36 _, output = with_term { UnicodePlot.stemplot(@int300) }
37 assert_equal(fixture_path("stemplot/posneg_ints.txt").read, output)
38 end
39
40 test("floats") do
41 x10 = @randoms.map {|a| a * 10 }
42 #p x10.sort
43 #UnicodePlot.stemplot(x10)
44 _, output = with_term { UnicodePlot.stemplot(x10) }
45 assert_equal(fixture_path("stemplot/float.txt").read, output)
46 end
47
48
49 test("floats, scale=1") do
50 floats = (-8..8).to_a.map { |a| a / 2.0 }
51 _, output = with_term { UnicodePlot.stemplot(floats, scale: 1) }
52 assert_equal(fixture_path("stemplot/float_scale1.txt").read, output)
53 end
54
55
56 test("back-to-back stemplot with integers") do
57 _, output = with_term { UnicodePlot.stemplot(@int80a, @int80b) }
58 assert_equal(fixture_path("stemplot/b2b_integers.txt").read, output)
59 end
60
61 test("stemplot with strings") do
62 _, output = with_term { UnicodePlot.stemplot(@words_1) }
63 assert_equal(fixture_path("stemplot/strings.txt").read, output)
64 end
65
66 test("back-to-back stemplot with strings") do
67 _, output = with_term { UnicodePlot.stemplot(@words_1, @words_2) }
68 assert_equal(fixture_path("stemplot/b2b_strings.txt").read, output)
69 end
70
71 test("stemplot with strings, two-char scale") do
72 _, output = with_term { UnicodePlot.stemplot(@words_1, scale: 100, trim: true) }
73 assert_equal(fixture_path("stemplot/strings_2c.txt").read, output)
74 end
75
76 test("stemplot with strings, two-char scale, string_padchar") do
77 _, output = with_term { UnicodePlot.stemplot(@words_1, string_padchar: '?') }
78 assert_equal(fixture_path("stemplot/strings_pad.txt").read, output)
79 end
80
81 test("string stemplot cannot take scale less than 10") do
82 assert_raise(ArgumentError) do
83 UnicodePlot.stemplot(@words_1, scale: 9)
84 end
85 end
86
87 test("cannot mix string/number in back to back stemplot") do
88 assert_raise(ArgumentError) do
89 UnicodePlot.stemplot(@words_1, @int80a)
90 end
91 end
92
93 end
94 end
0 class UnicodePlotTest < Test::Unit::TestCase
1 test("UnicodePlot.canvas_types") do
2 available_canvas_types = [:ascii, :block, :braille, :density, :dot]
3 assert_equal(available_canvas_types.sort,
4 UnicodePlot.canvas_types.sort)
5 end
6
7 test("UnicodePlot.border_types") do
8 available_border_types = [:solid, :corners, :barplot]
9 assert_equal(available_border_types.sort,
10 UnicodePlot.border_types.sort)
11 end
12 end
1818 spec.homepage = "https://github.com/red-data-tools/unicode_plot.rb"
1919 spec.license = "MIT"
2020
21 spec.metadata ||= {}
22 spec.metadata["documentation_uri"] = "https://red-data-tools.github.io/unicode_plot.rb/#{spec.version}/"
23
2124 spec.files = ["README.md", "Rakefile", "Gemfile", "#{spec.name}.gemspec"]
2225 spec.files << "LICENSE.txt"
2326 spec.files.concat Dir.glob("lib/**/*.rb")
3336 spec.add_development_dependency "bundler", ">= 1.17"
3437 spec.add_development_dependency "rake"
3538 spec.add_development_dependency "test-unit"
39 spec.add_development_dependency "yard"
3640 end