chunky_png 0.0.5 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. data/README.rdoc +20 -10
  2. data/chunky_png.gemspec +18 -6
  3. data/lib/chunky_png.rb +11 -28
  4. data/lib/chunky_png/canvas.rb +186 -0
  5. data/lib/chunky_png/canvas/adam7_interlacing.rb +53 -0
  6. data/lib/chunky_png/canvas/drawing.rb +8 -0
  7. data/lib/chunky_png/{pixel_matrix → canvas}/operations.rb +12 -12
  8. data/lib/chunky_png/canvas/png_decoding.rb +145 -0
  9. data/lib/chunky_png/canvas/png_encoding.rb +182 -0
  10. data/lib/chunky_png/chunk.rb +101 -23
  11. data/lib/chunky_png/color.rb +307 -0
  12. data/lib/chunky_png/datastream.rb +143 -45
  13. data/lib/chunky_png/image.rb +31 -30
  14. data/lib/chunky_png/palette.rb +49 -47
  15. data/lib/chunky_png/rmagick.rb +43 -0
  16. data/spec/chunky_png/canvas/adam7_interlacing_spec.rb +108 -0
  17. data/spec/chunky_png/canvas/png_decoding_spec.rb +81 -0
  18. data/spec/chunky_png/canvas/png_encoding_spec.rb +70 -0
  19. data/spec/chunky_png/canvas_spec.rb +71 -0
  20. data/spec/chunky_png/color_spec.rb +104 -0
  21. data/spec/chunky_png/datastream_spec.rb +32 -0
  22. data/spec/chunky_png/image_spec.rb +25 -0
  23. data/spec/chunky_png/rmagick_spec.rb +21 -0
  24. data/spec/{integration/image_spec.rb → chunky_png_spec.rb} +14 -8
  25. data/spec/resources/composited.png +0 -0
  26. data/spec/resources/cropped.png +0 -0
  27. data/spec/resources/damaged_chunk.png +0 -0
  28. data/spec/resources/damaged_signature.png +13 -0
  29. data/spec/resources/pixelstream.rgba +67 -0
  30. data/spec/resources/replaced.png +0 -0
  31. data/spec/resources/text_chunk.png +0 -0
  32. data/spec/resources/ztxt_chunk.png +0 -0
  33. data/spec/spec_helper.rb +8 -5
  34. data/tasks/github-gem.rake +1 -1
  35. metadata +37 -18
  36. data/lib/chunky_png/pixel.rb +0 -272
  37. data/lib/chunky_png/pixel_matrix.rb +0 -136
  38. data/lib/chunky_png/pixel_matrix/decoding.rb +0 -159
  39. data/lib/chunky_png/pixel_matrix/encoding.rb +0 -89
  40. data/spec/unit/decoding_spec.rb +0 -83
  41. data/spec/unit/encoding_spec.rb +0 -27
  42. data/spec/unit/pixel_matrix_spec.rb +0 -93
  43. data/spec/unit/pixel_spec.rb +0 -47
@@ -0,0 +1,70 @@
1
+ require 'spec_helper'
2
+
3
+ describe ChunkyPNG::Canvas::PNGEncoding do
4
+ include ChunkyPNG::Canvas::PNGEncoding
5
+
6
+ describe '.encode_png' do
7
+ [:indexed, :grayscale, :grayscale_alpha, :truecolor, :truecolor_alpha].each do |color_mode_name|
8
+ it "should encode an image with color mode #{color_mode_name} correctly" do
9
+ filename = resource_file("_tmp_#{color_mode_name}.png")
10
+ canvas = ChunkyPNG::Canvas.new(10, 10, ChunkyPNG::Color.rgb(100, 100, 100))
11
+ color_mode = ChunkyPNG.const_get("COLOR_#{color_mode_name.to_s.upcase}")
12
+ canvas.save(filename, :color_mode => color_mode)
13
+
14
+ ds = ChunkyPNG::Datastream.from_file(filename)
15
+ ds.header_chunk.color.should == color_mode
16
+ ChunkyPNG::Canvas.from_datastream(ds).should == reference_canvas('gray_10x10')
17
+
18
+ File.unlink(filename)
19
+ end
20
+ end
21
+
22
+ it "should encode an image with interlacing correctly" do
23
+ input_canvas = ChunkyPNG::Canvas.from_file(resource_file('16x16_non_interlaced.png'))
24
+ filename = resource_file("_tmp_interlaced.png")
25
+ input_canvas.save(filename, :interlace => true)
26
+
27
+ ds = ChunkyPNG::Datastream.from_file(filename)
28
+ ds.header_chunk.interlace.should == ChunkyPNG::INTERLACING_ADAM7
29
+ ChunkyPNG::Canvas.from_datastream(ds).should == input_canvas
30
+
31
+ File.unlink(filename)
32
+ end
33
+ end
34
+
35
+ describe '#encode_scanline' do
36
+
37
+ it "should encode a scanline without filtering correctly" do
38
+ current = [0, 0, 0, 1, 1, 1, 2, 2, 2]
39
+ encoded = encode_png_scanline(ChunkyPNG::FILTER_NONE, current, nil)
40
+ encoded.should == [0, 0, 0, 0, 1, 1, 1, 2, 2, 2]
41
+ end
42
+
43
+ it "should encode a scanline with sub filtering correctly" do
44
+ current = [255, 255, 255, 255, 255, 255, 255, 255, 255]
45
+ encoded = encode_png_scanline(ChunkyPNG::FILTER_SUB, current, nil)
46
+ encoded.should == [1, 255, 255, 255, 0, 0, 0, 0, 0, 0]
47
+ end
48
+
49
+ it "should encode a scanline with up filtering correctly" do
50
+ previous = [255, 255, 255, 255, 255, 255, 255, 255, 255]
51
+ current = [255, 255, 255, 255, 255, 255, 255, 255, 255]
52
+ encoded = encode_png_scanline(ChunkyPNG::FILTER_UP, current, previous)
53
+ encoded.should == [2, 0, 0, 0, 0, 0, 0, 0, 0, 0]
54
+ end
55
+
56
+ it "should encode a scanline with average filtering correctly" do
57
+ previous = [10, 20, 30, 40, 50, 60, 70, 80, 80, 100, 110, 120]
58
+ current = [ 5, 10, 25, 45, 45, 55, 80, 125, 105, 150, 114, 165]
59
+ encoded = encode_png_scanline(ChunkyPNG::FILTER_AVERAGE, current, previous)
60
+ encoded.should == [3, 0, 0, 10, 20, 10, 0, 0, 40, 10, 20, 190, 0]
61
+ end
62
+
63
+ it "should encode a scanline with paeth filtering correctly" do
64
+ previous = [10, 20, 30, 40, 50, 60, 70, 80, 80, 100, 110, 120]
65
+ current = [10, 20, 40, 60, 60, 60, 70, 120, 90, 120, 54, 120]
66
+ encoded = encode_png_scanline(ChunkyPNG::FILTER_PAETH, current, previous)
67
+ encoded.should == [4, 0, 0, 10, 20, 10, 0, 0, 40, 10, 20, 190, 0]
68
+ end
69
+ end
70
+ end
@@ -0,0 +1,71 @@
1
+ require 'spec_helper'
2
+
3
+ describe ChunkyPNG::Canvas do
4
+
5
+ describe '.from_rgb_stream' do
6
+ it "should load an image correctly from a datastrean" do
7
+ File.open(resource_file('pixelstream.rgb')) do |stream|
8
+ matrix = ChunkyPNG::Canvas.from_rgb_stream(240, 180, stream)
9
+ matrix.should == reference_canvas('pixelstream_reference')
10
+ end
11
+ end
12
+ end
13
+
14
+ describe '.from_rgba_stream' do
15
+ it "should load an image correctly from a datastrean" do
16
+ File.open(resource_file('pixelstream.rgba')) do |stream|
17
+ matrix = ChunkyPNG::Canvas.from_rgba_stream(240, 180, stream)
18
+ matrix.should == reference_canvas('pixelstream_reference')
19
+ end
20
+ end
21
+ end
22
+
23
+ describe '#to_rgba_stream' do
24
+ it "should load an image correctly from a datastrean" do
25
+ canvas = reference_canvas('pixelstream_reference')
26
+ canvas.to_rgba_stream.should == File.read(resource_file('pixelstream.rgba'))
27
+ end
28
+ end
29
+
30
+ describe '#to_rgb_stream' do
31
+ it "should load an image correctly from a datastrean" do
32
+ canvas = reference_canvas('pixelstream_reference')
33
+ canvas.to_rgb_stream.should == File.read(resource_file('pixelstream.rgb'))
34
+ end
35
+ end
36
+
37
+ describe '#crop' do
38
+ before(:each) do
39
+ @canvas = ChunkyPNG::Canvas.from_file(resource_file('operations.png'))
40
+ end
41
+
42
+ it "should crop the right pixels from the original canvas" do
43
+ cropped = @canvas.crop(10, 5, 4, 8)
44
+ cropped.should == reference_canvas('cropped')
45
+ end
46
+ end
47
+
48
+ describe '#compose' do
49
+ before(:each) do
50
+ @canvas = ChunkyPNG::Canvas.from_file(resource_file('operations.png'))
51
+ end
52
+
53
+ it "should compose pixels correctly" do
54
+ subcanvas = ChunkyPNG::Canvas.new(4, 8, ChunkyPNG::Color.rgba(0, 0, 0, 75))
55
+ @canvas.compose(subcanvas, 8, 4)
56
+ @canvas.should == reference_canvas('composited')
57
+ end
58
+ end
59
+
60
+ describe '#replace' do
61
+ before(:each) do
62
+ @canvas = ChunkyPNG::Canvas.from_file(resource_file('operations.png'))
63
+ end
64
+
65
+ it "should replace the correct pixels" do
66
+ subcanvas = ChunkyPNG::Canvas.new(3, 2, ChunkyPNG::Color.rgb(200, 255, 0))
67
+ @canvas.replace(subcanvas, 5, 4)
68
+ @canvas.should == reference_canvas('replaced')
69
+ end
70
+ end
71
+ end
@@ -0,0 +1,104 @@
1
+ require 'spec_helper'
2
+
3
+ describe ChunkyPNG::Color do
4
+ include ChunkyPNG::Color
5
+
6
+ before(:each) do
7
+ @white = 0xffffffff
8
+ @black = 0x000000ff
9
+ @opaque = 0x0a6496ff
10
+ @non_opaque = 0x0a649664
11
+ @fully_transparent = 0x0a649600
12
+ end
13
+
14
+ describe '#rgba' do
15
+ it "should represent pixels as the correct number" do
16
+ rgba(255, 255, 255, 255).should == @white
17
+ rgba( 0, 0, 0, 255).should == @black
18
+ rgba( 10, 100, 150, 255).should == @opaque
19
+ rgba( 10, 100, 150, 100).should == @non_opaque
20
+ rgba( 10, 100, 150, 0).should == @fully_transparent
21
+ end
22
+ end
23
+
24
+ describe '#from_hex' do
25
+ it "should load colors correctlt from hex notation" do
26
+ from_hex('0a649664').should == @non_opaque
27
+ from_hex('#0a649664').should == @non_opaque
28
+ from_hex('0x0a649664').should == @non_opaque
29
+ from_hex('0a6496').should == @opaque
30
+ from_hex('#0a6496').should == @opaque
31
+ from_hex('0x0a6496').should == @opaque
32
+ end
33
+ end
34
+
35
+ describe '#opaque?' do
36
+ it "should correctly check for opaqueness" do
37
+ opaque?(@white).should be_true
38
+ opaque?(@black).should be_true
39
+ opaque?(@opaque).should be_true
40
+ opaque?(@non_opaque).should be_false
41
+ opaque?(@fully_transparent).should be_false
42
+ end
43
+ end
44
+
45
+ describe 'extractiion of separate color channels' do
46
+ it "should extract components from a color correctly" do
47
+ r(@opaque).should == 10
48
+ g(@opaque).should == 100
49
+ b(@opaque).should == 150
50
+ a(@opaque).should == 255
51
+ end
52
+ end
53
+
54
+ describe '#to_hex' do
55
+ it "should represent colors correcly using hex notation" do
56
+ to_hex(@white).should == '#ffffffff'
57
+ to_hex(@black).should == '#000000ff'
58
+ to_hex(@opaque).should == '#0a6496ff'
59
+ to_hex(@non_opaque).should == '#0a649664'
60
+ to_hex(@fully_transparent).should == '#0a649600'
61
+ end
62
+
63
+ it "should represent colors correcly using hex notation without alpha channel" do
64
+ to_hex(@white, false).should == '#ffffff'
65
+ to_hex(@black, false).should == '#000000'
66
+ to_hex(@opaque, false).should == '#0a6496'
67
+ to_hex(@non_opaque, false).should == '#0a6496'
68
+ to_hex(@fully_transparent, false).should == '#0a6496'
69
+ end
70
+ end
71
+
72
+ describe 'conversion to other formats' do
73
+ it "should convert the individual color values back correctly" do
74
+ to_truecolor_bytes(@opaque).should == [10, 100, 150]
75
+ to_truecolor_alpha_bytes(@non_opaque).should == [10, 100, 150, 100]
76
+ end
77
+ end
78
+
79
+ describe '#compose' do
80
+ it "should use the foregorund color as is when an opaque color is given as foreground color" do
81
+ compose(@opaque, @white).should == @opaque
82
+ end
83
+
84
+ it "should use the background color as is when a fully transparent pixel is given as foreground color" do
85
+ compose(@fully_transparent, @white).should == @white
86
+ end
87
+
88
+ it "should compose pixels correctly" do
89
+ compose_quick(@non_opaque, @white).should == 0x9fc2d6ff
90
+ compose_precise(@non_opaque, @white).should == 0x9fc2d6ff
91
+ end
92
+ end
93
+
94
+ describe '#blend' do
95
+ it "should blend colors correctly" do
96
+ blend(@opaque, @black).should == 0x05324bff
97
+ end
98
+
99
+ it "should not matter what color is used as foreground, and what as background" do
100
+ blend(@opaque, @black).should == blend(@black, @opaque)
101
+ end
102
+ end
103
+ end
104
+
@@ -0,0 +1,32 @@
1
+ require 'spec_helper'
2
+
3
+ describe ChunkyPNG::Datastream do
4
+
5
+ describe '.from_io'do
6
+ it "should raise an error when loading a file with a bad signature" do
7
+ filename = resource_file('damaged_signature.png')
8
+ lambda { ChunkyPNG::Datastream.from_file(filename) }.should raise_error
9
+ end
10
+
11
+ it "should raise an error if the CRC of a chunk is incorrect" do
12
+ filename = resource_file('damaged_chunk.png')
13
+ lambda { ChunkyPNG::Datastream.from_file(filename) }.should raise_error
14
+ end
15
+ end
16
+
17
+ describe '#metadata' do
18
+ it "should load uncompressed tXTt chunks correctly" do
19
+ filename = resource_file('text_chunk.png')
20
+ ds = ChunkyPNG::Datastream.from_file(filename)
21
+ ds.metadata['Title'].should == 'My amazing icon!'
22
+ ds.metadata['Author'].should == "Willem van Bergen"
23
+ end
24
+
25
+ it "should load compressed zTXt chunks correctly" do
26
+ filename = resource_file('ztxt_chunk.png')
27
+ ds = ChunkyPNG::Datastream.from_file(filename)
28
+ ds.metadata['Title'].should == 'PngSuite'
29
+ ds.metadata['Copyright'].should == "Copyright Willem van Schaik, Singapore 1995-96"
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,25 @@
1
+ require 'spec_helper'
2
+
3
+ describe ChunkyPNG::Image do
4
+ describe '#metadata' do
5
+
6
+ it "should load metadata from an existing file" do
7
+ image = ChunkyPNG::Image.from_file(resource_file('text_chunk.png'))
8
+ image.metadata['Title'].should == 'My amazing icon!'
9
+ image.metadata['Author'].should == 'Willem van Bergen'
10
+ end
11
+
12
+ it "should write metadata to the file correctly" do
13
+ filename = resource_file('_metadata.png')
14
+
15
+ image = ChunkyPNG::Image.new(10, 10)
16
+ image.metadata['Title'] = 'My amazing icon!'
17
+ image.metadata['Author'] = 'Willem van Bergen'
18
+ image.save(filename)
19
+
20
+ metadata = ChunkyPNG::Datastream.from_file(filename).metadata
21
+ metadata['Title'].should == 'My amazing icon!'
22
+ metadata['Author'].should == 'Willem van Bergen'
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,21 @@
1
+ require 'spec_helper'
2
+
3
+ require 'chunky_png/rmagick'
4
+
5
+ describe ChunkyPNG::RMagick do
6
+
7
+ it "should import an image from RMagick correctly" do
8
+ image = Magick::Image.read(resource_file('16x16_non_interlaced.png')).first
9
+ canvas = ChunkyPNG::RMagick.import(image)
10
+ canvas.should == reference_canvas('16x16_non_interlaced')
11
+ end
12
+
13
+ it "should export an image to RMagick correctly" do
14
+ canvas = reference_canvas('16x16_non_interlaced')
15
+ image = ChunkyPNG::RMagick.export(canvas)
16
+
17
+ filename = resource_file('_rmagick.png')
18
+ image.write("png:#{filename}") { |info| info.depth = 8 }
19
+ canvas.should == ChunkyPNG::Canvas.from_file(filename)
20
+ end
21
+ end
@@ -1,24 +1,24 @@
1
- require File.expand_path('../spec_helper.rb', File.dirname(__FILE__))
1
+ require 'spec_helper'
2
2
 
3
3
  describe ChunkyPNG do
4
-
4
+
5
5
  # it "should create reference images for all color modes" do
6
- # image = ChunkyPNG::Image.new(10, 10, ChunkyPNG::Pixel.rgb(100, 100, 100))
6
+ # image = ChunkyPNG::Image.new(10, 10, ChunkyPNG::Color.rgb(100, 100, 100))
7
7
  # [:indexed, :grayscale, :grayscale_alpha, :truecolor, :truecolor_alpha].each do |color_mode|
8
- #
9
- # color_mode_id = ChunkyPNG::Chunk::Header.const_get("COLOR_#{color_mode.to_s.upcase}")
8
+ #
9
+ # color_mode_id = ChunkyPNG.const_get("COLOR_#{color_mode.to_s.upcase}")
10
10
  # filename = resource_file("gray_10x10_#{color_mode}.png")
11
11
  # image.save(filename, :color_mode => color_mode_id)
12
12
  # end
13
13
  # end
14
-
14
+
15
15
  # it "should create a reference image for operations" do
16
- # image = ChunkyPNG::Image.new(16, 16, ChunkyPNG::Pixel::WHITE)
16
+ # image = ChunkyPNG::Image.new(16, 16, ChunkyPNG::Color::WHITE)
17
17
  # r = 0
18
18
  # image.width.times do |x|
19
19
  # g = 0
20
20
  # image.height.times do |y|
21
- # image[x, y] = ChunkyPNG::Pixel.rgb(r, g, 255)
21
+ # image[x, y] = ChunkyPNG::Color.rgb(r, g, 255)
22
22
  # g += 16
23
23
  # end
24
24
  # r += 16
@@ -27,5 +27,11 @@ describe ChunkyPNG do
27
27
  # image.save(filename)
28
28
  # # `open #{filename}`
29
29
  # end
30
+
31
+ # it "should create damaged CRC values" do
32
+ # Zlib.stub!(:crc32).and_return(12345)
33
+ # image = ChunkyPNG::Image.new(10, 10, ChunkyPNG::Color::BLACK)
34
+ # image.save(resource_file('damaged_chunk.png'))
35
+ # end
30
36
  end
31
37
 
@@ -0,0 +1,13 @@
1
+ �PNG
2
+
3
+
4
+ 
5
+
6
+
7
+ IHDR ���)�IDATx�]��
8
+ �0 P*@��#�
9
+
10
+ #T��10lPF`ؠF=���IQ�*��u�`%qk�
11
+ H�񚈩�m�����ߟ э=,�f�OK
12
+
13
+ ���t��(������F ;�P����{xp�]9�/p�*$(�*�y�Ճ�������@�C�  c�q��N�U#�)11�.��r��f�0���gh(��t���E���kIEND�B`�
@@ -0,0 +1,67 @@
1
+ ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ooo������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kkk������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ggg����'%#�
2
+ �mJ/�iE(�qJ-�yQ1��kK��xV��mK��cA��[:��[:�tL,�oI,�uR6�������������������������������tS9�qL0�{U7�sJ+�uJ(��a?��gE��_>��\<�sL,�kC%�sL-��_B�}Z?�xW=�&$"�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ccc���KB;�tR7���������������������������������� ��,,,�;;;�???�DDD�HHH�!!!�555��������������aC+�hI/�2!��������������������� �iE)�nG)�yQ0�T2�zN+�qG'�qI*��7)0�7)0�7)0�7)0�7)0�6(/�6(/�6(/�6(/�6(/�6(/�5'.�5'.�5'.�;-4��mK1�|X;��\>��]=��dB�{R1��������������������������2/-��\9��^<��cB�S;(��
3
+ ����������EEE���������������������41.�xI$�wI&�pD#�oF'�
4
+ �nJ.��aB��kH��mH��qJ��mG��fC��8)0�8)0�8)0�8)0�6(/�7(/�8)0�8)0�7)0�7)0�8)0�8*1�9*1��=/5��yT6��[:�T2��d@��nH��jD�����������������������742��e>��hD��b?�{Q1�>+��������������������������������wR4��a@��d@��^7��mE��|S��g>��b9��yP��W��yP��kE��eA�B-���������������������
5
+ �}X:�|T4��Z7��b<��zR��|S��tK��zQ��zQ��rI��vP��a=��Y8��������������������������������Z;��a@��iE��uN��c;��qH��jB��[5��fC�mYA���z���s���s�eiU�;*�=<<�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������vqm�xU8��������������������������666�555�LLL�PPP�TTT�YYY�KKK�***�����
6
+ �M4!�O4 �[>'�N7%�K6&�,���3��~Z=��]>��`@�{R1�}S2��V5�~T3��V5��fE��mL��jI�xM+�)��`>��lG��sM��wP��rL��`9��f?�����������������������741��lE��uN��kE��nK��dC�tL-� ��H0�cB(�pO4�}[?��cE�V6�}Q0��fC��nI��rK��W��yP��g>��kB��h?��h?��h?��vM��~W���[��jF��W3��fD��`@��cD��`B�|W9�vP2�rL.�oJ,�qK-�lG)�{U7��]?��fH�~X:�oJ,��[=�~X:��dE��gG��eD��dA��]9��`:��jC��c:��vM���W���c���W��_6��vN��qJ��vQ��tP��lI��eC�{Q0�~U4��X8��V4��_=��oK��{W��wR��W0��nF��uL��yQ��yS��nJ��aA�]XJ��޽�������������
7
+ �[9�]9�5#��������������������
8
+ �+�,�,
9
+
10
+ �- �N�Y�y������� �lI-�~W7��W4��fB��b>��iE��gC��lH��pL��lH��a=�~O+�f?!�0��a;��f?��f>��g@��qJ��gA�����������������������631��O(��e>��b<��Z6��[8��_?�N5!�� �uP4�xT7�yT6��Z:�xM+�}P,�yJ%��c>��e>��f>��kB��xO��qH��sJ��wN��{R��xO��zR��oH��R,��R-�vH$��[8��W5��X6��X8��\<��X8��X8��_>��a@��`?��jI��`@�pF%�oE$�nD$�|R1��Y7��\:��c?��`;��e?��mF��mF��uL��yP���\���W��\3��V-��X0��_8��iB��gA��e?��[6��b>��`=��c?��gC��mH��uP��vP��`9��S+��W/��\3��jA��e>��b?�|S2�^TE������ҫ��ҫ���y����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������pJ,�oI+�zT5�zT5�sN2�eD)�_@(�V9!�Q4�Q4�L1�U:%�M2�P6 �N4�M3�O4�W;&�Y<'�Y='�X;$�X;#�Z<$�[;#�\: �fB%�sM0�oH*�dB&�W:#�W:#�V9"�U:$�Q8#�S9%�L3�L2�N4 �K2�H.�I/�M4 �H.�I/�J1�M4 �K3�6$�*�� ��,,��76��:9��54��,,��##��������kH,�}S1��gA��nF��nF��hA��c<��hA��c<��Z3��]5��_8��Z2�aA(�/��]7��e=��nF��mF��jD�����������������������631��d=��d=��Z4��`:��^9��_=��\<�
11
+ ��iF,�qJ+�pH(�{Q0��S/��Z5��^8��g@��b:��f>��e<��tK��sJ��rI��kB��mD��f=��]5��]5��X0��hA��Z4��^:��Z7��W4��Y5��b>��`=��`=��[7��Y5��[7��U2�|P,��T0��]9��U1��U1��Z5��]8��_:��e?��iC��qJ��d=��f=��kB��g>��_6��`7��kB��_6��`8��b:��jB��hA��f?��kD��qK��c<��e>��g@��d=��]5��_6��c;��\3��h?��c;��c<��X4��Y8�}t`��Ӷ����������ƫ�
12
+ ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������uN0�zS4�vN/��\<��_@�~Y<�xU:�mJ1�jI.�bA'�aA'�lK2�lL4�hI0�cD+�aB)�dD+�^>$�mK2�sR7�uS8�xU:�rO3�sO3�rM0�sK,��cC��cC��`?��a?��W6�}T4�sK,�}W9��]?��^A��[>�}X:�}W9�sN0�pK-��bD�~X;�}X:�Y;�tN0�oL/�a?%���('��76��DD��CC��98��--��""����
13
+ ����[?��a?��lE��pG��sJ��zQ��}T��V���[���W��mD���Y��vM��yP��xO��lK� �(�aB*�wR5�����������������������631��qK��vO��{U��rK��mF��iC��iE��a@�� ��gF��mJ��uQ��vO��rJ��}T��~U���Z��{R��uL��yP���W��zQ��xO���X��~V��zR��{T��sL��jE��tO��nI��sN��pL��e@��oI��qK��rM��iD��pJ��rM��lH��jF��c>��iD��sM��nI��tO��vP��d?��oI��lG��nJ��jF��nI��uO��tM��pI��d<��{S��zQ��xO��~U���^��wN��vM��tK��uL��yP��|S���W���W��zQ��f=���b��xO��xO��yQ��X��gC��Z:�`YE��Ǥ��ҫ��ҫ�����
14
+ ��GGG���������������������631��kE��uN��tM��tM��|U���[��jF��jF�@/"��U<(��pM��]9��xR��xP��pH��|S��{R��xO��V���a��vM��{R�Ïf���a��}U��yQ��d>��}X��kG��_<��gE��hF��hF��jF��vR��kH��iF��yU��vR��tQ��jG��_=��mJ��d@��b?��lH��pL��pL��c?��tP��lJ��c@��qN��~[��xT��oJ��pJ��yR��h@��pG��{R���W���X��xO���]���X��uL���Z�ѝt���]��yP��|S��~U��i@��nE��yP��{R��xQ��nJ��oM�__S��޽����������α�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mL��qP��xT��|W���^���_��|V��~X��jE��~Y��d?��^9��fA��rM��wR��vQ���_���{���l���{���k���]���[��lF���[��iC��hA��jE���l���}���e���a���[��~[���~�������j��~W��oH���_��mG��zT��lE��rK��{U��yR���|���e� ����('��+*��'&��! ������������{W;��sQ���a���Y���b�̘o�Ǔj���_��}T�Ǔj���d���c��{R��uL���W��yP���b���d���Y��fG��XXX�kkk�hhh�fff�hhh�...�
15
+ ��iF��{W��lG��vO��qI��V��V���b���d���c���_�Ïf�Đg���`���_��nH��wT�H1�!
16
+ ���������l� �vR5��Y6��rJ��tL��eB��yR��wP��sK��jA��uL���W��g>��oF��mD��jA��wN��h?��sK��qI��tM��zS��{T��qJ��`;��iD��nI�����b<��nG��h@��i@��oG��vP��uP��uQ�]A+��%��c@��b?��mG��oH��c;��tK��i@��jA��pG��{R���Y���`��zQ��hA��jD��_<�$���gD)��� �mJ.��]=��bC�$�� �^@(�/ � ��'�}T5��Z:�oK/�
17
+ �_C.� ��+��X7��eA��wR��g@��f=��pG��sJ��sJ��h?��qH��xO��|S���Y��wN��{R��nE��xO���Y��mD��i@��mD��mD��sK��c=��jF��eB��a@�5- �!�sP5�gE*����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������bA��_=��e@��`9��Y0��`7��\3��V-��c:��^5��X/��kB��g>��jA��uL��wN����������������������������������������������������������������������������������������������������������������������������������������������������z� �xS7��fD��`:��hA��;'�|O+��R,��b:��Z1��_6��W.��jA��h?��vM��~U��zQ��h?��sK��V.��b:��V.��Q*��X2��S.��X3�����rK��wP��xQ��mD��uM��W0��V0�}O+�zM*�
18
+ ��hD'�vI%��b=��`9��lD��xO��|S��rI��oF��f=��Z1��a8��Y2�O)��V2�tJ)�;$�
19
+ ������S6�oH)�pF$�Q-��a;��c;��lC��zQ��sJ��{R��f=��h?��_6��h?��X/��^5��d;��Z1��]4��^5��f=��jA��yP��vN��tM��_9��d?�zN*��V4�oF&�e?!�jE)���������������������������������������```���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������tK*�~R0�}N)��Q)��R)��Q(��N%��P'��X/��\3��]4��a8��^5��_6��U,��^5�������������������������������������������������������������������������������������������������������������������������������������������������������b>"�yN,��Y4�\:���D(�rE"��S,��Z2��\3��_6��]4��g>��N%��Y0��\3��_6��Y1��O'�~L$�L$�M%��O(��T.��S-����}L&��U.��X1��_6��X/�|I"�yI"�vG#�sF"�@'��.�~R/�|O+��U0��T,��U-��_6��c:��W.��U,��R*��N&�yH"�tF"�qG&�iC%�*���������������������&
20
+ �b?$�nG)�vK)��Z5��_8��a:��Y1��Z1��`7��e<��R)��Y0��X/�~J!��T+��\3��a8��\3��b9��`7��f=��U,��X0��\4��]6��R,�yJ%�vH$�i>�e=�e?!���������������������������������������000���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������zP0��W5��gB��f>��a8��uL���Y��yP��yP��vM��~U��yP��oF��mD��uL��f=������������������������������������������������������������������������������������������������������������������������������������������������������W;$�xN.��d@� ��� ��^A��lH��vO��zR���W��sJ��g>��mD��oF��b9��sJ��xO��i@��]4���\��V��yQ��xQ��pI�����f?��kE��`8��oF��vM��d<��\5��uP��qM��dC�
21
+ ���gF��hE��_:��g@��pH��e<��i@��sJ��jA��^6��mF��uP��eB��\<�uQ5� ��������������������� �\?'�^?(�T5�
22
+ ����������������������_A)�dD,�bC*�[<$����������������������
23
+ �%#"�$""������$ �e>�pA��T-��X0��a8��d;��b9��V-��Z1��`7��Z1��T+��V-��`8�a>#������`9��`9��^7��W.��\3��Y0��W.��P(��Q+��W3��T1�
24
+ ��H,�yL)��W3��\6��]6��\3��`7��V.��T-�tF"��oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@��a:�rH&�}O+��W1��a9��]4��[2��\3��^5��^5��R)��]4��c:��^5��W.��N%��Y0��[2��`7��c:��`7��Y0��Z1��Y0��\4�~M'�yL)�yO.�������������������������������PPP�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������zR3�xN-��T2��Z7��hD��^;��U3�mM4�H2"��aA��Y6��\8��Z5��xR��wO��kC���������������������������������������������������������������������������������������ƺ����������������������������������vW=�tP4�|U7�qK-��cD��^?��Z<�~W8�kD%�~V8��[=�cE-�
25
+ �--,�10/�+*)�"! ��
26
+ ���� �jC%��fB��sL��zQ��zQ��lC��g>��c:��zQ��xO��mD��zQ���[��xQ������~W��oH��g?��e<��d;��uL��yP��mE��jD��wR��oK�iJ2��#��Y6��rN��mG��f?��`8��e<��c;��mG��_<���rX��rX��rX��rX��rX��rX��rX��rX��sY��tY��tY��tY��tY��tY��tY��tY��tY��tY��tY��rX��rX��rX��rX��rX��rX��rX��rX��rX��rX��rX��rX��rX��rX��hC&��[:��mJ��kF��pH��oF��mD��\3��tK��tK��h?���\��V��yP��tK��[2��uL��~U��wN��zQ��nE��jA��]4��uL��tK��c=��nK��iH���������������������������PPP���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������rK-�yR3�~T4��fD��bA�S:&�!���/ �[<$�b?$�pD!��`;��c=��a9����������������������������������ƾ�������������������������������������������������������ƺ���Ǿ���������������������ź���z\��e@��gC��dA��lG��pK��iE��a=��W4�pD!�jG-�
27
+ �$""�654�CBB�A@@�554�)('��
28
+ ��U4��]:��b=��pJ��zR��pH��jE��cA��oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@��rP5�~W9��Z8��kF��hA��tK��yP��{R��}T��~U��|S���W��xO��mD��mD��xO��xO��nE��tK��lC��rI��wN��zQ���X��{R��rL��pM��bA�������+++�
29
+
30
+
31
+ ��
32
+
33
+ ����������gF��jD��nE��tK��vM���X��|S��tK���Y��yR��rK�����wP��wP��pH��rI��tK��xO��~U��|S��qH��}V��wQ��mI��nK�4#��M7%��kH��iE��kF��pI��xQ��qL��dC���tY��tY��tY��tY��tY��tY��tY��tY��tY��tY��tY��uZ��v[��v[��v[��v[��v[��v[��v[��v[��tY��tY��tY��sX��tY��tY��uZ��v[��v[��x\��x\��x\��w[��tQ6�zT6��eC��mI���Y��yP��oF��{R��}T��~U��|S��~U���W���Y��oF���]��sJ��yP��}T���Z��vM��oF��vM��zQ��~U��sM��gD��jI�������WWW�@@@�)))���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������[@+��
34
+
35
+
36
+ �������###�###� ��[?)��a@��jG���������������������������������Ȼ������������������������������������������������������������÷���ȿ�����������������������_�őh��V�Že�͙p��uL���]��lC��pH��rM��eC� ��0/.�0/.�('&�����������V:$��dC���^��}T���^�őh���]���]�˗n���\��xQ��gA�����iC��uN���Y���Z���^���`���^���_���d���^��qJ��hC��nJ��Z;�� ��iF��lI���\��|V���Z��zU��rP��oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@��mK0��^?��cB��iE��uM�őh��yP���^�őh��V�Ïf�͙p��vM���\��mD��tK��}T��~U��qH��{R�Ȕk��}T���^�Ïf���X��Y���a��fE�������������������vvv�^^^������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ������ �###�###�###�###�###��$��eF��mL���������������������������������Ⱥ������������������������������������������������������������ø����������������������������[���^���_���`���\��pG���d��vM��V��lD��_;��bA�0#�
37
+
38
+ ������� �N5 �Y;��oL��{U���^���d���Z���Z�Že�Ïf��wN��uN��}V�����nG��{U���]���[���_���[���Y�ƒi�Že��}T��pI��}W��[6��iE�$��cG1��wS��zU��|V��|W��qM��vU���uZ��v[��tY��tY��sY��rX��rX��rX��rX��sY��v[��v[��v[��uZ��tY��tY��uZ��tY��rX��sY��sX��rX��rX��rX��sY��uZ��uZ��tY��tY��tY��tY��tY��uZ��uS8�vP2��X7��oK���Z���^���^���[���^���^���`���]��pG���b��wN���X��qH��kB��{R���]���Z���a���d���^���Y���Z��xU��^=���������������������������@@@����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������!!!�###����"""�###�###�###�###�###���bB(�W6������ɾ�������������������������Ȼ������������������������������������������������������������ø���������������������������lC��i@��f=��e<��Z1��_6��[2��[2��\3��`7��g@��a<�U4�7$��� ������� �V8 �pK-��Y7��d?��iA��_6��sJ��g>��jA��kB��a8��V.��[4��Y3�����iC��jD��nF��c:��qH��b9��oF��jA��h?��U,��W/��Y3��S.��T1�\<$��#��dA��W3��d>��d>��]:�~S2��oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@��a>#�mG)��X7��]8��b;��kB��f=��kB��h?��e<��e<��Z1��_6��\3��[2��\3��a8��kB��lC��jA��i@��a8��oF��d;��b:��`9�{O+�rH'�������������������������������PPP�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������###� ��
39
+ �W9!�iB$��T1��_8��mE��tK��sJ��\3��kB��S*��\3��Z1��]4��c;��`9��_8�����pI��mF��qI��]4��i@��S*��V-��Y0��a8��]4��c:��c;��U.��[6��S.�S9$��9'��X3��[5��Y2�xK&�wM+��oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@�oS@��`>"�pJ,�U4��c>��b:��sJ��c:��c:��[2��a8��Y0��d;��jA��kB��`7��[2��c:��jA��qH��nE��rI��^5��i@��V-��]5��T.�}P-��V5�����������������������������������000�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������]?'���###� ���!!!�###�###�###�###�###�###�
40
+
41
+
42
+ �###�###�
43
+ ��lc^���������ij��Ķ����������������������������������������������õ��̽���ù��������������������������ʽ���z��pG��zQ���\���c���[��wN��|S��|S���[��vM��zQ��nE��yP��f=��mF��hC�~V7� �!��`B��dC��oJ��zR���W��sJ��V��jA��zQ��jA��e<��sJ��mD��V���]���`��zS�zU7�����sL��c<��uM��mD��\3��rI��pG��sJ���Z�Že���^��vM��vM��|T��lD��mF��f?��qJ��lE��Y1��nG��f@��^;���x\��x\��v[��v[��tY��tY��tY��rX��rX��sX��sX��rX��rX��rX��rX��rX��rX��rX��rX��rX��rX��rX��tY��tY��tY��tY��tY��v[��v[��v[��w[��v[��v[��}X;��fE��c@��jE��pH��{R��g>��uL��qH��yP���\���c���[��xO��|S��|S���[��uL��yP��kB��sL��a:��hB��iC��c>��pM��jJ��cE���������������������������������������PPP���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������uR5�iG,�(� �"""�"""� ��������������2�~@@�% ��PJF���������ȹ��ʺ��ĵ��������������������������ö��ʼ��Ͼ���Ż������������������������������ɼ���x���Z��yP��~U���W��tK��wN���_��~U��}T��wN��pG��~U��pG��c:��qH��|T��sN��jG��fE��`=��d?���Y��V��yP��zQ��i@��zQ��nE��kB��sJ��V���X���\���Y��tK��jB������hB��pI��lD��pG��pG��yP��~U���]���_��}T��qH���W���^��wO��}U��iA��uM��uM��h@��kD��tM��sM��vR�������������������������������������`A��gF��eA��mG��}U��sJ��d;��pG���Z��zQ��~U��V��sJ��vM���_��~U��|S��wN��nE��zR��jC��\6��fA��oL��kH��eD��]>�uP3�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������qqq���a]Y�X2�Y5�N.���"""���������2/���x���[���B���W���ZZ��VV��00��77�6������ξ���ź��ĺ������ù��ø��ù��ø��¶��ø��ȼ��ʾ����������������������������������ɼ���g��R)��P'�{G��L#��L#��N%�vB�xD�K"�xD�}I ��N%�K"��P'��L#�|H�~L%�xH"�uE�wG!��P)�s@�uA��N%�xD�yE��M$��M$��M$��L#��N%��L#��O&��L#�}I!�\:�����{J#�yH"�|I!�~J!��N%�zF�~J!�~J!��S*��L#��W.�xD�s?�|H�xD��P'�{H�zG�L#��N%�s?�vE�m>�oC �b9�X3�J*�����������������������?%�=#�?%�����������������������:"�>$�:!
44
+ ��6$�U:%����f�lg7�75!���h���Z���=�ic0� ��q22��DD�8��s_M��}g���y�����������������������������������������~���y���z������������������������������i���`���X��}T���Z��}T��pG��rI��~U��pG��V��V��{R���W���`���Y���_���Z��~U���]���W��qH��qH��wN��g>���X��zQ���X���]���[���[���\���Y���Y���_���X��mF��g@�����tM��yS��yS��|U���]��|T��}V���X���Z��X��rJ��e>��nG��d<��vN��xP��{S��zR���Y���_���X���W���X��yP��zT��jF��V5�]@(�nI-�1!�lL4�B/�bF/�]B-�dI2��`C��_@� ���������aC��bC����������bA��`>��hB��yR��uL��~U���[��zQ��~U���c���Z���`���X��}T���[��~U��pG��rI��}T��nE��V��|S��tM��oL��lK�FA.���i���x���x�ckN����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������~W8�}V7��X8�V5�}U5�pO5� �1 �KZ#�
45
+
46
+ ��fb=�OJ(�><�"! ��
47
+ �FB(�<:�85�2/�+(��E0�zU7��rL��{T��xQ���]��zS���d���Y���Z��W���^��~V���\���Y��sK��pH��yQ��W��xP���c��zR���c��W���\���Z���^���Y���\���X��uM��oF��yP��|T��zQ���c��xO�őh��|S���_���Z���d���]���_���`��|S��tK��rI��zQ��~U���b��xO�őh��vM���^���^���a��X���Z���]��lF��oJ�����yT��oI��|V��qK��Y��|V��Y��{V��tO��|W��gB��vQ��^9��pJ��zT��{U��xQ��{T���\���]���^���^�đh��wN���Z��sL��sN�H2 ������ �D1"��pN��pM��xV��hF��lK��gG��]=��\<��hF��lI��jG��uR��lI��xV��lK��iI��fF��lL��jH��sP��tP��mG��mE��yP���W��{R���d��}T���d���X���^���\���`���[���^���Z��xO��qH��{R��}T��{R���b��qK��[��aA�8=-���p���x���x��d�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������bE��eF�mO7��=P� �B`6�����Ų�����%H�%�& �!&����
48
+
49
+
50
+ ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������zV9�Y;#�
51
+ �) �*M�������t�Nr"�=k�v�D�b~<�~�Y�Vy8�Ut'�_O�f@�
52
+ ��GGG���������������������2/,�zL)��V3��X5��Y6�zO+�hD(�2�\:�4"�!0�
53
+ �uN1�gE*� �I4�xL)��V3��Y5��_;��W2��\6��[4��T,��`7��jA��e<��g?��e=��`9��U.��`9��\5��]6��`9��Z3��d=��e=��W/��]5��jA��kB��c;��f>��b:��U,��lC��^5��a8��_6��]4��lC��a9��^6��\4��g>��nE��f=��lC��d;��Y0��pG��a8��f=��^5��f=��c:��e<��^5��]4��e<��lC��kB��sJ��f=��^5��i@��d;��h@��^7��X4�sI(�VQ9���i���x���x�{�^� ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �.�<Q �]^�s�W�Pt/�_�O�f�T�:o�f�.�g�8�T��a�8�t�M���q�Ts0�����E];�( �
54
+ ���*�S8$��iE��vM��vO��sO��kH�8=-���i���x���x�|�^�
55
+ ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������2!��
56
+ �4D
57
+ �fzU�'T�y�m�Bw�d�-�E{�n�R�N0�N��Jp�RR%�Bk�k�J�cx=�; � �M3�����������������������������������������������������������������������������������������???��������������������������������������������vO/�~R.��^:�qN3�1!�(�gF,���Z��vM��uL��xO��wN��{R��c:�gF,�
58
+ �1J&�� ��� ��Z6��Z5��oI��iC��_8��^5��xP��{S��mF��nG��vO��mF��f>��g?��h@��e=��X1��sL��mF��g?��c;��jB��|T��sL��oH��nG��sL��jB��nG��iA��c;��Y2��pI��tM��qJ��a9��a9���Y��uN��pI��jB��uN��oH��lE��jB��c<��`8��nF��yP��kC��f=��kB���_���uL��rI��iE�lL2�&�2"�qK-��V1��^;� ����}�CI5�
59
+ �]@)�653�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������~zw� �"�@���������En3���}�2i�F�SyA��������A|�f�.���t�Ls)�w�Y�Nk'�)�
60
+ � �I3#�����������������������������������������������������������������������������������������OOO������������������������������������������������]?��X7��b>��lE��}T���X��~U��lH�6%��bA���Z��|S��kG�,��iB��V��jA��nF��pI��uN�����������������������41/��mJ��eB��dB�~T3�]A+�����Fk9�;X2�
61
+ ��c�W�OuF�
62
+ �%7#��MrD� ��*��wM+�~R/��Z7��^:�|O,���������������������������������������������`=��^:��d>��^7��[3��jA���d;��a8��^5��d;��X/��]4��f>��c;�vQ4�7%��\7��W3�}R0�xP1�rL.�*'&�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������nnn��
63
+
64
+ �;X2�,B(�^�J�� �sK+���cB��c@��hE��_<��\9������������������������������������������������������������������������������������������������������������������������������������������������������������������dC��dA��tO��]6��b:��g>���sJ��i@��S*��e<��c:��xO��xO��vM��wO�cD+�I3"��X3��\8�{Q0�yQ1�,*(�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������^^^���E?9�mK0�nL2� � E�v�n�Nm<�Fn �h�Q���[�v�?�.c�~�e�\H�5c�Ww7���_�~�R�!: ��V;&�T7 �����������������������������������������������444�����������������������������������������zzz�{{{�����������������������������������������������uP3��Y8��gD��gA��wN��e<��h?��rI��sJ��xO�bE-�%�qI*��f=��nE��qH��qH��qJ��mF��pI�����������������������30.�~P-��V3�L3 �fG-�N7$��'�!0#�"�Bc7�-�)@%�r�X�d�L��W9#���];��c@��eB��dB��bA������������������������������������������������������������������������������������������������������������������������������������������������������������������]=��]<��hD��]7��jB��sJ���xO��{R��nE��[2��lC��qH��qH��pG��wN��mD�5%�nI+��^8��_<��Y9�-+)�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ccc���H?8�eC(�hH-��- � =������Ү���}�X~'�q�E�e�T�g�3�2]�Nr%���u�t�T�<R�(@ �&�(�bC+������SSS�������������������������������������������rL.�}S2��eA��tM��uM��nE��mD��oF��kB��nE��nE� ��U1��V-��i@��lC��e=��oH��sL��rK�����������������������30-�wJ'��U2��[:�}R2�
65
+
66
+ �
67
+ ���@=:�EB>�1.+�-*(�IDB�LGD�NIF�PLH�RMI�ROJ�SOK�TOK�SNI�OKH�MIE�KFC�IFB�IEA�IEA�IEA�IEA�IDB�IDB�IEA�HDA�HEA�JFB�IEA�IDA�HDA�HCA�HDA�IDB�IEB�JFB�IEB�JFB�JFB�JFC�IEB�JFB�JFC�JFB�JFB�IFB�LGD�NJF�RMI�����������������TOK�ga\�f`\�c^Y�e_[�d^Y��iii�iii�ggg�fff�fff�fff��_ZV�^XT�����������������_YU�]XT�ZUQ�VRM������������������������������������������