ruby_terminal_games 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: daca2f7a086e3e6efb02744675de934890622b86
4
- data.tar.gz: 643e9c2bff3684d7b92216db2201c787b8f889c9
3
+ metadata.gz: 4a8bfc59e37c8c12c382c70159647a7377aa2c3d
4
+ data.tar.gz: be6e3566c6e0f5e8e92e2cd377a194fbf6f91efa
5
5
  SHA512:
6
- metadata.gz: 28f69c1ec650b408448ceabbe874aaccea983d82b20194352eaa4e95227457ee2159dbda7b4ca4afcb964e1c242986e5a270bdebfc3acf9b352737a46e236b9a
7
- data.tar.gz: 88d4f3e4bb29d61df49e62b566d19fabafeba42fba533afe488d53c17065cf44dcb1cbaf5f5f13aa5f8ff537d253ce3ec5baed6372def84e718c453bc501c385
6
+ metadata.gz: 92d8cd11cf6fbb5ee6fbc0b0ad2d5d1836884e5f3f74862b183e78a5fb4f7742f825562b4dca97dc3c9cbc41933645e01371a1559d1163529a85b7433a451acf
7
+ data.tar.gz: d22a5816061df6c813f41fd0fac65e464e806e7230736e5685814efd87c5f6bf32d139efdbb8cd3ffa79721a8424f00962d5636f88b7ce6a4d8bcb67547714e8
data/README.md CHANGED
@@ -2,10 +2,11 @@
2
2
 
3
3
  The idea of the gem is provide some basic games to play on Terminal. Currently the gem has the games below:
4
4
 
5
- - [x] Snake
6
- - [x] Hangman
7
- - [ ] Sudoku
8
- - Any suggestions?
5
+ | Snake | Hangman | Sudoku |
6
+ | ------------- | ------------- | ------ |
7
+ | ![Snake](https://raw.githubusercontent.com/alvesdan/ruby_terminal_games/master/images/Snake.png) | ![Hangman](https://raw.githubusercontent.com/alvesdan/ruby_terminal_games/master/images/Hangman.png) | ![Sudoku](https://raw.githubusercontent.com/alvesdan/ruby_terminal_games/master/images/Sudoku.png) |
8
+
9
+ Any game suggestions?
9
10
 
10
11
  ## Installation
11
12
 
@@ -1,6 +1,20 @@
1
-
2
1
  module RubyTerminalGames
3
2
  class Board
3
+ EMPTY_CHAR = " ".freeze
4
+ HORIZONTAL_LINE = "─".freeze
5
+ VERTICAL_LINE = "│".freeze
6
+ HORIZONTAL_DASHED_LINE = "┄".freeze
7
+ VERTICAL_DASHED_LINE = "┆".freeze
8
+ LEFT_TOP_CORNER = "┌".freeze
9
+ RIGHT_TOP_CORNER = "┐".freeze
10
+ LEFT_BOTTOM_CORNER = "└".freeze
11
+ RIGHT_BOTTOM_CORNER = "┘".freeze
12
+ CENTER_SEPARATOR = "┼".freeze
13
+ LEFT_SEPARATOR = "├".freeze
14
+ RIGHT_SEPARATOR = "┤".freeze
15
+ BOTTOM_SEPARATOR = "┴".freeze
16
+ TOP_SEPARATOR = "┬".freeze
17
+
4
18
  attr_accessor :rows, :cols, :width, :height
5
19
  def initialize(width: nil, height: nil)
6
20
  @rows, @cols = STDOUT.winsize
@@ -10,7 +24,7 @@ module RubyTerminalGames
10
24
 
11
25
  def clear!
12
26
  move_cursor(1, 1)
13
- rows.times { write(" " * cols) }
27
+ rows.times { write(EMPTY_CHAR * cols) }
14
28
  end
15
29
 
16
30
  def write(text, row: nil, col: nil)
@@ -23,23 +37,20 @@ module RubyTerminalGames
23
37
  end
24
38
 
25
39
  def draw_border!
26
- # Left and right border
27
40
  (0..height).each do |i|
28
- write("│", row: i, col: 0)
29
- write("│", row: i, col: width)
41
+ write(VERTICAL_LINE, row: i, col: 0)
42
+ write(VERTICAL_LINE, row: i, col: width)
30
43
  end
31
44
 
32
- # Top and bottom border
33
45
  (0..width).each do |i|
34
- write("─", row: 0, col: i)
35
- write("─", row: height, col: i)
46
+ write(HORIZONTAL_LINE, row: 0, col: i)
47
+ write(HORIZONTAL_LINE, row: height, col: i)
36
48
  end
37
49
 
38
- # Corners
39
- write("┌", row: 0, col: 0)
40
- write("┘", row: height, col: width)
41
- write("┐", row: 0, col: width)
42
- write("└", row: height, col: 0)
50
+ write(LEFT_TOP_CORNER, row: 0, col: 0)
51
+ write(RIGHT_BOTTOM_CORNER, row: height, col: width)
52
+ write(RIGHT_TOP_CORNER, row: 0, col: width)
53
+ write(LEFT_BOTTOM_CORNER, row: height, col: 0)
43
54
  end
44
55
  end
45
56
  end
@@ -1,6 +1,8 @@
1
1
  module RubyTerminalGames
2
2
  module Hangman
3
3
  class Board < RubyTerminalGames::Board
4
+ PLACEHOLDER = '_'.freeze
5
+
4
6
  def initialize(width: nil, height: nil)
5
7
  super
6
8
  @height = 10
@@ -18,7 +20,7 @@ module RubyTerminalGames
18
20
  word.guess_letters.each_with_index do |letter, index|
19
21
  output = letter ? letter.upcase : ''
20
22
  output = output.green if word.won?
21
- placeholder = '_'
23
+ placeholder = PLACEHOLDER
22
24
  write(output, row: 4, col: (index * 2) + 4)
23
25
  write(placeholder, row: 5, col: (index * 2) + 4)
24
26
  end
@@ -30,7 +32,7 @@ module RubyTerminalGames
30
32
 
31
33
  def print_exit_instruction
32
34
  draw_border!
33
- text = "Press SHIFT+Q to Exit"
35
+ text = "Press SHIFT+Q to exit"
34
36
  write(text, row: height + 1, col: cols - text.length)
35
37
  end
36
38
  end
@@ -1,6 +1,13 @@
1
1
  module RubyTerminalGames
2
2
  module Snake
3
3
  class Board < RubyTerminalGames::Board
4
+ APPLE = "❤".freeze
5
+ SNAKE_BODY = "◆".freeze
6
+ SNAKE_HEAD_RIGHT = "⊃".freeze
7
+ SNAKE_HEAD_LEFT = "⊂".freeze
8
+ SNAKE_HEAD_UP = "∩".freeze
9
+ SNAKE_HEAD_DOWN = "∪".freeze
10
+
4
11
  def initialize(width: nil, height: nil)
5
12
  super
6
13
  @width = cols
@@ -20,7 +27,7 @@ module RubyTerminalGames
20
27
 
21
28
  def draw_stats!(speed, points)
22
29
  stats = [
23
- "SPEED:", speed + 1, "POINTS:", points
30
+ "Speed:", speed + 1, "Points:", points
24
31
  ].join(' ')
25
32
  write(stats, row: rows, col: 0)
26
33
  end
@@ -32,7 +39,7 @@ module RubyTerminalGames
32
39
 
33
40
  def draw_apple!(apple)
34
41
  row, col = apple.position
35
- write("❤".red, row: row, col: col)
42
+ write(APPLE.red, row: row, col: col)
36
43
  end
37
44
 
38
45
  def draw_snake!(snake_state, direction)
@@ -45,16 +52,16 @@ module RubyTerminalGames
45
52
 
46
53
  def snake_head(position)
47
54
  case position
48
- when UP then '∩'
49
- when RIGHT then '⊃'
50
- when DOWN then '∪'
51
- when LEFT then '⊂'
55
+ when UP then SNAKE_HEAD_UP
56
+ when RIGHT then SNAKE_HEAD_RIGHT
57
+ when DOWN then SNAKE_HEAD_DOWN
58
+ when LEFT then SNAKE_HEAD_LEFT
52
59
  end
53
60
  end
54
61
 
55
62
  def draw_snake_body(direction, position, head: false)
56
63
  row, col = position
57
- text = head ? snake_head(direction) : '◆'
64
+ text = head ? snake_head(direction) : SNAKE_BODY
58
65
  write(text, row: row, col: col)
59
66
  end
60
67
 
@@ -66,42 +66,42 @@ module RubyTerminalGames
66
66
  end
67
67
 
68
68
  def print_top_border!
69
- write("┌", row: 1, col: 1)
70
- write("┬", row: 1, col: 7)
71
- write("┬", row: 1, col: 13)
72
- write("┐", row: 1, col: 19)
69
+ write(LEFT_TOP_CORNER, row: 1, col: 1)
70
+ write(TOP_SEPARATOR, row: 1, col: 7)
71
+ write(TOP_SEPARATOR, row: 1, col: 13)
72
+ write(RIGHT_TOP_CORNER, row: 1, col: 19)
73
73
  end
74
74
 
75
75
  def print_middle_borders!
76
- write("├", row: 5, col: 1)
77
- write("┼", row: 5, col: 7)
78
- write("┼", row: 5, col: 13)
79
- write("┤", row: 5, col: 19)
80
- write("├", row: 9, col: 1)
81
- write("┼", row: 9, col: 7)
82
- write("┼", row: 9, col: 13)
83
- write("┤", row: 9, col: 19)
76
+ write(LEFT_SEPARATOR, row: 5, col: 1)
77
+ write(CENTER_SEPARATOR, row: 5, col: 7)
78
+ write(CENTER_SEPARATOR, row: 5, col: 13)
79
+ write(RIGHT_SEPARATOR, row: 5, col: 19)
80
+ write(LEFT_SEPARATOR, row: 9, col: 1)
81
+ write(CENTER_SEPARATOR, row: 9, col: 7)
82
+ write(CENTER_SEPARATOR, row: 9, col: 13)
83
+ write(RIGHT_SEPARATOR, row: 9, col: 19)
84
84
 
85
85
  middle_rows.each do |col|
86
- write("┈", row: 5, col: col)
87
- write("┈", row: 9, col: col)
86
+ write(HORIZONTAL_DASHED_LINE, row: 5, col: col)
87
+ write(HORIZONTAL_DASHED_LINE, row: 9, col: col)
88
88
  end
89
89
 
90
90
  middle_columns.each do |row|
91
- write("┊", row: row, col: 7)
92
- write("┊", row: row, col: 13)
91
+ write(VERTICAL_DASHED_LINE, row: row, col: 7)
92
+ write(VERTICAL_DASHED_LINE, row: row, col: 13)
93
93
  end
94
94
  end
95
95
 
96
96
  def print_bottom_border!
97
- write("└", row: 13, col: 1)
98
- write("┴", row: 13, col: 7)
99
- write("┴", row: 13, col: 13)
100
- write("┘", row: 13, col: 19)
97
+ write(LEFT_BOTTOM_CORNER, row: 13, col: 1)
98
+ write(BOTTOM_SEPARATOR, row: 13, col: 7)
99
+ write(BOTTOM_SEPARATOR, row: 13, col: 13)
100
+ write(RIGHT_BOTTOM_CORNER, row: 13, col: 19)
101
101
  end
102
102
 
103
103
  def print_bottom_line!
104
- write("─"*width, row: 14, col: 1)
104
+ write(HORIZONTAL_LINE * width, row: 14, col: 1)
105
105
  end
106
106
 
107
107
  def print_instructions!
@@ -3,3 +3,1110 @@
3
3
  810000000000100304050706018140300062005009800000000000020900405093810700406500000
4
4
  008003000301000200029005000200070000000506400100040008000020000000090100000000800
5
5
  000000700000000600300000100000006000000010000000070001000060500000000000000000000
6
+ 400000805030000000000700000020000060000080400000010000000603070500200000104000000
7
+ 520006000000000701300000000000400800600000050000000000041800000000030020008700000
8
+ 600000803040700000000000000000504070300200000106000000020000050000080600000010000
9
+ 480300000000000071020000000705000060000200800000000000001076000300000400000050000
10
+ 000014000030000200070000000000900030601000000000000080200000104000050600000708000
11
+ 000000520080400000030009000501000600200700000000300000600010000000000704000000030
12
+ 602050000000003040000000000430008000010000200000000700500270000000000081000600000
13
+ 052400000000070100000000000000802000300000600090500000106030000000000089700000000
14
+ 602050000000004030000000000430008000010000200000000700500270000000000081000600000
15
+ 092300000000080100000000000107040000000000065800000000060502000400000700000900000
16
+ 600302000050000010000000000702600000000000054300000000080150000000040200000000700
17
+ 060501090100090053900007000040800070000000508081705030000050200000000000076008000
18
+ 005000987040050001007000000200048000090100000600200000300600200000009070000000500
19
+ 306070000000000051800000000010405000700000600000200000020000040000080300000500000
20
+ 100000308070400000000000000203010000000000095800000000050600070000080200040000000
21
+ 600302000040000010000000000702600000000000054300000000080150000000040200000000700
22
+ 000030090000200001050900000000000000102080406080500020075000000401006003000004060
23
+ 450000030000801000090000000000050090200700000800000000010040000000000702000600800
24
+ 023700006800060590900000700000040970307096002000000000500470000000002000080000000
25
+ 008400030000300000900001574790008000000007005140000020009060002050000400000090056
26
+ 098010000200000060000000000000302050084000000000600000000040809300500000000000100
27
+ 002470058000000000000001040000020009528090400009000100000000030300007500685002000
28
+ 400000805030000000000700000020000060000050400000010000000603070500200000109000000
29
+ 020300000063000005800000001500009030000700000000100008087900260000006070006007004
30
+ 100000709040007200800000000070010060300000005060040020000000008005300070702000046
31
+ 400000300000802000000700000000100087340000000600000000500060000000010400082000000
32
+ 000000071020800000000403000700060050000200300900000000600070000080000400000050000
33
+ 600302000040000080000000000702600000000000054300000000080150000000080200000000700
34
+ 047080001000000000000600700600003570000005000010060000280040000090100040000020690
35
+ 000000801700200000000506000000700050010000300080000000500000020040080000600030000
36
+ 380600000009000000020030510000005000030010060000400000017050080000000900000007032
37
+ 000500000000000506970000020004802000250100030080030000000004070013050090020003100
38
+ 020000000305062009068000300050000000000640802004700900003000001000006000170430000
39
+ 080040000300000010000000020005000406900100800200000000000309000060000500000200000
40
+ 008090100060500020000006000030107050000000009004000300050000200070003080200700004
41
+ 400000508030000000000700000020000060000050800000010000000603070500200000108000000
42
+ 100000308060400000000000000203010000000000095800000000050600070000080200040000000
43
+ 100006080064000000000040007000090600070400500500070100050000320300008000400000000
44
+ 249060003030000200800000005000006000000200000010040820090500700004000001070003000
45
+ 000800009087300040600700000008500970000000000043007500000003000030001450400002001
46
+ 000501000090000800060000000401000000000070090000000030800000105000200400000360000
47
+ 000000801600200000000705000000600020010000300080000000200000070030080000500040000
48
+ 047600050803000002000009000000805006000100000602400000078000510006000040090004007
49
+ 000007095000001000860020000020073008500000060003004900305000417240000000000000000
50
+ 040500000800090030076020000014600000000009007000003600001004050060000003007100200
51
+ 083400000000070050000000000040108000000000027000300000206050000500000800000000100
52
+ 009000003000009000700000506006500400000300000028000000300750600600000000000120308
53
+ 026039000000600001900000700000004009050000200008500000300200900400007620000000004
54
+ 203080000800700000000000100060507000400000030000100000000000082050000600010000000
55
+ 600302000010000050000000000702600000000000084300000000080150000000080200000000700
56
+ 100000900064001070070040000000300000308900500007000020000060709000004010000129030
57
+ 000000000900000084062300050000600045300010006000900070000100000405002000030800009
58
+ 020000593800500460940060008002030000060080730700200000000040380070000600000000005
59
+ 904005000250600100310000008070009000400260000001470000700000002000300806040000090
60
+ 000520000090003004000000700010000040080045300600010008702000000008000032040080010
61
+ 530020900024030050009000000000010827000700000000098100000000000006400009102050430
62
+ 100007860007008010800200009000000002400010000009005000608000000000050900000009304
63
+ 000050001100000070060000080000004000009010300000596020080062007007000000305070200
64
+ 047020000800001000030000902000005000600810050000040000070000304000900010400270800
65
+ 000000940000090005300005070080400100463000000000007080800700000700000028050260000
66
+ 020000006000041000007800001000000700003700000600412000010074005008050070000003900
67
+ 100000308060400000000000000203010000000000075800000000070500060000080200040000000
68
+ 200001090010030700900800020000000850060400000000070003020300060000500000109000205
69
+ 007008000006020300030000009010050060000010000070900002000000004083004000260000510
70
+ 000360000850000000904008000000006800000000017009004500010500060400009002000003000
71
+ 340600000007000000020080570000005000070010020000400000036020010000000900000007082
72
+ 000000401800200000000607000000800060040000300010000000600000020050010000700030000
73
+ 040050067000100040000200000100800300000000200060000000000040050300000800200000000
74
+ 000000040002004001070050090003007000040060000600100800020000100850900060000080003
75
+ 800700004050000600000000000030970008000043005000020900006000000200060007071008302
76
+ 080004050000700300000000000010085000600000200000040000302600000000000041700000000
77
+ 000070080006000500020003061010007002008005340200900000002000000580006030400010000
78
+ 000000801600200000000705000000600020010000300080000000200000070040080000500030000
79
+ 020000000000600003074080000000003002080040010600500000000010780500009000000000040
80
+ 052006800000007020000000600004800900200410000001000008006100380000090006300600109
81
+ 000010780500009000000000040020000000000600003074080000000003002080040010600500000
82
+ 100000003060300700070005001210700090007000000008010020000806400009020060000400000
83
+ 400070100001904605000001000000700002002030000847006000014000806020000300600090000
84
+ 000000801700200000000506000000700050010000300080000000500000020030080000600040000
85
+ 963000000100008000000205000040800000010000700000030025700000030009020407000000900
86
+ 150300000070040200004072000008000000000900108010080790000003800000000000600007423
87
+ 000000000057240009800009470009003000500900120003010900060000250000560000070000006
88
+ 000075000010020000040003000500000302000800010000000600000100480200000000700000000
89
+ 600000703040800000000000000000504080700200000103000000020000050000070900000010000
90
+ 000060004006030000100400507700000805000800000608000090002090000400003200009700100
91
+ 032000005800300000904280001000400039000600050000010000020006708000004000095000060
92
+ 000503000000060700508000016360020000000401000000030005670000208004070000000200500
93
+ 050307040100000000030000000508030610000800509060010000000040006000692700002000900
94
+ 005008001800000090000000780000400000640000900000053002060000000001380050000907140
95
+ 000000000072060100005100082080001300400000000037090010000023800504009000000000790
96
+ 000658000004000000120000000000009607000300500002080003001900800306000004000047300
97
+ 020300000006008090830500000000200080709005000000006004000000010001000402200700809
98
+ 050090000100000600000308000008040009514000000030000200000000004080006007700150060
99
+ 000002000000070001700300090800700000020890600013006000090050824000008910000000000
100
+ 300080000000700005100000000000000360002004000070000000000060130045200000000000800
101
+ 094000130000000000000076002080010000032000000000200060000050400000008007006304008
102
+ 000000000000942080160000029000000008906000001400250000004000000020008090050000700
103
+ 000007000090001000000045006000020000036000410500000809000000004000018000081500032
104
+ 052470000060000000000008010400000009700950000020040030000800090000003706000091000
105
+ 090000000001006000060080070300000010000039000000050002170400028000003000086000057
106
+ 000005000020004010030080020000008400800600000090010705006000000950003060003000001
107
+ 500068000000000060042050000000800900001000040903000620700001009004200003080000000
108
+ 070021004000030000601000002000000060008600703190000040010000208420900000000000000
109
+ 000000001007050309004800020000000000030005700009420000000003000001000407060278000
110
+ 000008003016020907030004600000000000905000200020130009003000020070005000000000400
111
+ 004020030000809000000000700050037008000000005049060010500000000068000000007040901
112
+ 000006003009040005320000008000010000001750609200000080000060000000800040470000200
113
+ 000008020000006930098070001000000000009210000700000096240090000000300180000000003
114
+ 002046000004080005070030009000002000305700000700000400006000093000054078000000000
115
+ 003000040400200000000090026000070000010902000260000008500007000000060803300000069
116
+ 000000003005002014000080060000000000946000000030004206000700000000030680070291000
117
+ 020000000000004800054018030700001004000086050000000600000000100000020009230400005
118
+ 009043000000000030410070000000000000800500060040006002000000010004098006700600520
119
+ 000000000406070090050038200000000030900000000004260000070003002001600800085000700
120
+ 000604000000000003010002600002000000600090015804000006000007000976050000000203100
121
+ 000040000050000009003078400001000000620000000000503800000020000006400703405100020
122
+ 000305600006800300040000000000000805050000412000900000003090000000080060019604500
123
+ 020007005000000000600095001070004130000000200001050006700010800080070000000200049
124
+ 000500003000820001300001790170000000000000300600712040040060000090000000060050200
125
+ 300000040002008000091200030005010080064090000000005006180700000000000065070900000
126
+ 000040000100900640030000800007000000000108590000000300052001000010703000390050004
127
+ 400009000005410003000000007000000020031070008906003000000090000100600080007500046
128
+ 080400000130000000000000008400001000507002003000900100000020780200006030076003009
129
+ 050000000006005091009000380400000008000038002073000000000010000280470500600000070
130
+ 010060900009005000030000076001030002720000040008000000007300009305007600000000020
131
+ 530097000000000070000010050000001300004002000109800204000000005070000920091050000
132
+ 000000000070006208100000054003050000000300002200800006900000080300070000007025401
133
+ 000600004450000200000089300970000003063000000004002700609050000000000000500003061
134
+ 030010000000042703020906040500020000349000000000000001000009000006000080005003460
135
+ 000060000050000970002005000000200080074000000085040201001007000600004000920600100
136
+ 000000000000000731054100008000000500021904000040060007000580000000007090098010002
137
+ 008000000000630004001000630030009000400000062000000140000500790170000000005400083
138
+ 000000000900100002004028000650000700001000003009702000000005070040000061035010900
139
+ 000002000013409002709000015000005000100080006060970080500006000002000000000200030
140
+ 000008009000000280030070000048000000000020000607009130000003900090010400570600001
141
+ 000710000500000000000000530160020300000030009045600000090200070600000203000006081
142
+ 000000000000805049200060301009000000000021038000300000005000000006004800130009602
143
+ 000002073080000000005700200900000010800000004600815090000000460400000502000096000
144
+ 000000000070480090004020370100005002000003007003000640040000000006310000000008910
145
+ 000000000000067000007080012000000000030006500501000893070000000009001024004390008
146
+ 000000013000040000004698000000000008030000700028069000001030060009200007600080001
147
+ 000000010020000930065030000940050000007800200600000000001200004000609800000000127
148
+ 501083007000720000000000010008000020010050900003000001000900080040007500390400000
149
+ 050000800010000032008000006090000000040800605000007000002070003300001004005620010
150
+ 005001080040000009007659010000000070004200000010000806000035000000000090970000108
151
+ 007000030050009001900000000020000000500030029080074103000408000002000006000015800
152
+ 000050000000000040003601008000000701020010800070009000400003000000006590059007206
153
+ 905800076000000000700049030000000009001008200000370000070000000430005080008090005
154
+ 000100000098020006300040050500000003061000000000700860007080300000000009005200408
155
+ 003000000000028500200000070000002004010000023630001057100004080050000900090700000
156
+ 070000090000400082002109000000500400000010007103600000020000300005000100801026000
157
+ 060000000040700080000006130100400005000020800050000076000200300800040020790008000
158
+ 000000050000000021039000000400051007017004900000360500000015000900000160640000000
159
+ 300007501708006000000800003800004790090000000000023000962000007000000060000040900
160
+ 170000036000090040306000080600008201200005000000010000800007000050000000000051063
161
+ 000000000700040000090006120400010007000020500501098000000001060000060280000405300
162
+ 740060030002005000018002009080020600900000070004080000003700000600090000020004000
163
+ 900060000000030000030800406005000000009080300004000297020000004000300000680200015
164
+ 053670009000000050000020016000003702900000060000500000020010005106000090000900040
165
+ 000001850002008031300500400641000000900005000000000080000906000000000000509040072
166
+ 000005030007900100030000705051000097800001056000008000000000028074020000090000000
167
+ 001000080000004500005070000002730000000000200358010000203056000900000001006090700
168
+ 040000000012000000008200537000000200300080004005307000000040060900000070200790001
169
+ 260070038000010070000004602010005000090230400000007200000000000700000080001008700
170
+ 001020000080005090060400100000080030000042050097000000000000000070000040032017605
171
+ 008091060000240000900070020002000900005000080800630700000007001056000400010000000
172
+ 000300590009000003000060070408010000000090000000520908600000700005800300100000064
173
+ 051008000070692030000003000007000092000070001060000450000000000090080600640500000
174
+ 000300000800600015400050000000004000200060080070090340000020009001008400708000020
175
+ 000003001040000830005040000064100080010007000000300007509000060000030050000870003
176
+ 028005000400100000000003000000400850000200000100070003700090040980500006560002000
177
+ 000000500300000000090018000100900260060000400980100000070300000000020316040800005
178
+ 000000000000109620060007059001000000090804002000000346008000001906003000000000580
179
+ 000000009500060030070002500000000000000704060032981000000000008005020000760390002
180
+ 000006057000500000100080300800032000006010590000000006000100000000020970501700800
181
+ 000016007000700930207000008839000000000038001500000000700000080050100000000509400
182
+ 400018700800000002000004000000000000006053001007260430001070006030001080000600000
183
+ 000002400500000908020065070080030001074000000060000009000004005000000030012007800
184
+ 806300000013000090000600002700000000005060000001049200030010000000002047000036800
185
+ 000091000000200870000600100000050000000060003007900216500000020280030500003007000
186
+ 090000000008020300006000000500000400010005280000004073000060830060100020180200000
187
+ 005000000017053009080100030004001020002000095000380600000700000020004300000009000
188
+ 000060059084010300000007000008000000000300001500400900400000000050780240097000003
189
+ 000000902009000010000065000007020000000050034020400098050001000080007003016000005
190
+ 080000003600000907000050060000090000000403600159002000000008090020001040003500008
191
+ 100900000080070400405002000000000003900036070000010090000240000204501008000000700
192
+ 007006000000000104040203009408000006900810000000009000000000030001035080200008500
193
+ 004300807800002030030006000006905002090070040000000000000000506000000000389050070
194
+ 004200700200060000000300100005007009080600007409001080000000000610052040000000008
195
+ 001000050036050009007900006000000030600801000000060105000000000598020000020073000
196
+ 000008013000000800007020050030000000000096500508007021050300400000000000800051007
197
+ 800003057705006300002004000000809000009040201063000000000000030004000070200090000
198
+ 700000003008030200000007000000900407900460500360800000030500000001000020800009100
199
+ 000001000108040500060090400000009000009700001400100230000000000057406000800000302
200
+ 090040200000000003506900000000000150073000400002400076020001000000090700005070040
201
+ 708900000006008040000250030000000100600010020070005060000070000920003000100080600
202
+ 008607000070005410900000000000000002040200080007003500000000609000050700052090004
203
+ 000000000020040003001097050000004630710206000002000000000600000200005307030000908
204
+ 000900040081000005004052000000609300070000800200000004000000001603000900000106028
205
+ 700006050060000040000700080040000000100300000003002400000073092008060000602001300
206
+ 000002005060500800009100030752000000000380000000700000038000001000004003420008600
207
+ 070000005000020900530000700009240000028509000000000001040010007001000043700300000
208
+ 000300074700004000020000150000020090003600000500090040400000060090000010071260000
209
+ 002040000680051000700000080000030005000000900205900701000009078000006090006300000
210
+ 050300000000080490800900060970000200000000017406000080008000000000030100094000670
211
+ 100280590000506001700009002070408010030000040002000000000090000053000000000004009
212
+ 007600001400000000000804092090000050680072000002009030000000506005023800000000000
213
+ 240000009003005000000067030005004000900080270001000006000000604080000007000270100
214
+ 003250000000008500000700008000000069302040000768000100000000000800000004500821030
215
+ 000000000000800037098001200000000006065000900800405300004000002000080000072056100
216
+ 002000090000010300000000107004000075080509060070000008000104000000030500105067000
217
+ 000060050406310000000000080005000460010000520003002000900000000024700000100250090
218
+ 000640050040000000500008000000081300003050008100002005700000000005400036082005000
219
+ 000000600034090000600008003000600000000400050250000100008000040096020000100087590
220
+ 000000290040000600007058000680007000102000060000004080000000000000401900050780013
221
+ 000000900009014006640370000002001030090005000010060007200400070000006800000000600
222
+ 060070000500003601400000090094020070800000004007060500000000000300104000756000000
223
+ 700000000009030000408001007000000080000627005000045009503004000002000600000070908
224
+ 000010008090000700060005000006000302020000400510080000080000070000602030003090061
225
+ 605700001100000008090000002001030000007040060080000905010903000000005000074080000
226
+ 000000000000105000040008002009003100000010000680750004007060030090000700054000980
227
+ 001009006000002300009603024000000000058000009600700001000000000040030700160000508
228
+ 070001005000005040000302001008010000035000600940800003020000800009000060000720000
229
+ 004807003100000060090000800806000002000010030050900001000006540600050000400001000
230
+ 003000000261000000000376000000020004000009005075040086000000000000008009034090170
231
+ 040060170000520000100000008008000005000803200627000900010000006004052000000700000
232
+ 000200400000008205051000000000014800000900000029000000030100070008570000100020604
233
+ 501000308000070020000000510650000000009002004020090000004700003200000001010006009
234
+ 200000080000400000000900746060205004000300070040076020003010000600008000010000002
235
+ 074081000000056090000400030000900001007005300006000000000020000030000217000890006
236
+ 007018009004005001000000500921700008800500000000409000008000007609000000000000280
237
+ 000008000100000095050000300200000640600810000090400030040000000906000000030524009
238
+ 000040000300000062001200030000000520008674000000800640000001800009000010060709000
239
+ 043500007000000020250309060004005801001004000700000000000080090002100000000030005
240
+ 000001030000070009300000801900000007007000180020640000002000005000200090153060070
241
+ 000000901004000070100000520000090003073000200090750000008100060001900000000507032
242
+ 300000050920000000860070040000048000000190003080600090000000401040500739000001000
243
+ 002007000010000030008006004004000062300082007000560300000405000000000270801700000
244
+ 005000006046090300810000002200007008500020000000006054000900000100800400000002105
245
+ 000000000305040002000260008010000000000400905070306201700000000200018400600500080
246
+ 000090500920300000070600004000008050000030002401000690007002000100003005002000160
247
+ 000000000000140060007059031000000007030400500802000009016904000040207006000000008
248
+ 000710900002000010000900026020000300045690000906001000008005000070200000200000530
249
+ 053006170000000000060098002200001004040800309000000000001000060009700800020000901
250
+ 004080000050000264910000000007000000300000057000054010000000001200500603090043800
251
+ 000006030000010802700300950010600300005200094038900000100000005080000000000005400
252
+ 400070900000000050005009020000040701008000000020087503003000000090000078180400030
253
+ 000001700000006094040350080000080000001907000930200005000000009000500470804000500
254
+ 053020100100000900000470058300708000002000000040000009060090710000000000007500460
255
+ 100000000702000640000207080005009000910000003000002106000000004287000000060900820
256
+ 000305000007091008000000300480000001000083500092000400000000130001000004040009025
257
+ 005000007800960000030000900001000000050003028070000014020600090000208060004009005
258
+ 000000000007400002003050008000000000906000500000062810300008100090170304750004000
259
+ 064090050000000018080302007425009000010030000000000000300000702800200006050700000
260
+ 000004070000020100800060902026000000000030807050001000003070010600892003080000000
261
+ 000080000100000090029130006000000000578900010002360000000004000010005930400600200
262
+ 006090000000008052740000080000000000000900561203001470000000000008040635000079000
263
+ 000000001100050080090100704070080000000049000030000479009036000001008000020004006
264
+ 920001040001040020500609000004000000000314090000200003030000500400050800070800000
265
+ 000000004100004000020070600092600400000039000007050002903000020000900040510700800
266
+ 070600008040350016060019050007000000006000005090074000002000090000801000084000000
267
+ 000000000340500200090314000000000000000071094004600500600000002017008060030007800
268
+ 000052600010007000006000201000003000104000500702890000081900003003005080020000000
269
+ 000501082050009000007080006276010050005000000300000700000000060083900000000024800
270
+ 000000090063002080000460700010900065050000008908000000807000040005100000090704000
271
+ 700000000140900020000584600000030008000000040093000000800000100210048300007001006
272
+ 900002007600010040000000532000400000200090300050006800000050000890000070070008610
273
+ 000000100720006040130000000400003002060090000008000050000027390000800000870100406
274
+ 960140008045000900000020030000082000050006000400790250000000403004000009010000000
275
+ 600050000080000000000400073000000200009300407010740050700030002091060300040000080
276
+ 000070600156000000000002000819400003000100450000000000007050000060207080300068020
277
+ 001002076030000000287001400000000008013000920700204000090000000000085000000030809
278
+ 000000000005020009093040706000000000501008004000251900002000000030000010084906200
279
+ 960000000000000200405900070000000012500008930070030008000503100000190000092080000
280
+ 000000000904800600000714002020060005300000200608107000000000100043000050001030060
281
+ 020094000300000040809500000000402681000000403000000050003050002000100300000006105
282
+ 000000000400870015030000820009030000080000060200150003000060007007085009300000200
283
+ 000004089900000060000090000400200000050030720807000040002000008790300000008010406
284
+ 000000080300097600000803900000500000000000030009048205071000002000400000635000047
285
+ 000000007300000008700006300000000004006027080080005921051070000060002030000008005
286
+ 800000006405008000100000030000000205051809000000000078040000120006300049000405000
287
+ 008000000601803000420050000000000820006208790004000010000000003700004000059307000
288
+ 002001000030004005090007012050930008000706000800000006000000160000000050900150003
289
+ 320000000000008609000054002000000308000400020085000094501006000000030000462090000
290
+ 040050006000806003007040000020030000050004930006008000800005600004300090000900001
291
+ 030004007700230006040005000100020000000906000000300805004000900000009200095000703
292
+ 000070600300100549200080000000000001060700480005804000000020000021300000430000100
293
+ 006900000107050300000000050000004003080003072001007000805076400060000100009100000
294
+ 000070004100580000090000002035040000008700091000000030050000108006300000940006003
295
+ 000600040050190000013080002620000008071000000900004071000008000800000300060530000
296
+ 000000000001002003350000806000003007000108000000040539098000020005300000200609040
297
+ 002030005800000904694007000403000001000080000000000290000006000000200310900005062
298
+ 500000002100060500006073008050009020000010007000080009030000000280030005000400031
299
+ 040009503902007000000000000430000000006070300008940000800094000500000086000706004
300
+ 009320060000000040600040210003800004000000009081065000090003500000100000700002090
301
+ 000000085081040000037001004000013000000400000020060700000600040090007001003000652
302
+ 000638000300001000000005080020007000080500470040000020000090040090700010004010260
303
+ 000100008000350000050009000000000400400008090080230000600000007700000030034076952
304
+ 000200405000060300060008000010050000004832709030600002000000020000003500708000003
305
+ 000000000076001000802006050090070300060000002140060900000014000000300020005902070
306
+ 065000030407000080008007001020001000006800000900006000000003000700060410014008009
307
+ 000000000045009020002004601000200040400010000090005007020000010500700460008060090
308
+ 000080003100000025000690084003002000020809000090070000001000009007030006300008040
309
+ 021006004005000020060000300000031400000400008500000000000070900802504000030002640
310
+ 030000000002000601600500208000010070010000803000004006003600002400870000200900004
311
+ 007060000050200600060000102003080004800005000001000203002003041000000000010750800
312
+ 000003060500018009000070080009004000000060001006000053048000020120007900000200700
313
+ 004056000305800090000000060040910086000002000020705030000000010080100004000004002
314
+ 000007000006004009900060050000090000000700302200801007000000130650018000803000700
315
+ 007000000403100097010609005000002000000000080000500906000000000906410300008067004
316
+ 008000007006300080000105060083900000970010500000000020067002000800090000400006800
317
+ 000000000003006805040080900030070000004010070080900300008400007070830200000091000
318
+ 000003040070090000438005000000502010002700000040000008009030820003040060000007003
319
+ 000000000030600000004028910000000000000497000820001470000000000600239001300000846
320
+ 080005000300000047000020500020500036000000200430090070000403010608070400500000000
321
+ 000000000040180050008900000000000000001008049500403026007000000300009000900536780
322
+ 060005300500400080001900000000007000090004057058000160004003090000050070900000008
323
+ 000000000000070050516028040000000000603000007089052001008000090900600800760010000
324
+ 000000400094200050000050070470010000050000030001009500000000200026700100700080940
325
+ 000000090000690050520700000000030009080205300040080006300046005001000000200300400
326
+ 003020000000080075801300006960800050000012400100000000000600030006930800000000007
327
+ 400701000750003008200000000005100003000060050380005047000004001000010802000000030
328
+ 000000000010000047000056302000000000020010030700642001000000010073025080500030004
329
+ 073000000200006000004000309000000080701080400020000761000010020006020000000938040
330
+ 060003020300900040400000508000000000200030000006002301070460000690000000008207009
331
+ 060000002300002090001000576000000000002600310080305400007096008000007000100050000
332
+ 200000070000040000076009000001005090000600005900000640600000050030080007050304102
333
+ 000000050001004600900070008000007009710045000400080000000209007040010060070000102
334
+ 000001000002080070060004038000800100045000700721600403000000010000090002300006000
335
+ 003000000900000004000600031000800000000007300804230560020008010000050000698100200
336
+ 700300209080010003002006500028000000050004100000100000000580000000009002603002010
337
+ 602400000004900200090300000059000001000589006000010008300000080000020050000600104
338
+ 600000003090000000052006040020700000000005106079030000904003052000900030001000008
339
+ 000000000028070010704600000001000090090104080500000300000410500300009000000703609
340
+ 300000007100908002049000000000030001000052300000004006000007000408000150600009084
341
+ 000018000010630000000000089709006200002000005800050300000093040600000030001400050
342
+ 000008000003670000000910760000040890008003050000090070000000000310500000045209001
343
+ 600000000005370090000010007000002040140050000083000900006090000000000320930480005
344
+ 000000010004000300360500007035028400000310000000740000020007000000001500907000802
345
+ 021009000007010060000800310000000530010095840070008000000030000009400100060020000
346
+ 000050034500700809000009000009003000003000005600800000010008000700060400904020603
347
+ 300008060002005409076000210040009000007000900010820000009302000060000000000071000
348
+ 098000007070080020000300500200000000030070000065000900000000004607003008900046250
349
+ 000000000000863020091200080000000000027000000014000807000090003000005010009324065
350
+ 001000003700002005030094208000040000200600900018300000000017000070000006390000500
351
+ 079000010030005607000009000000000000080500002510006040020800000000071400000290035
352
+ 086400000200080000040070090000500600000001900300000005003040710060000039008009060
353
+ 000006000003000072521090000000007008098000000700000426004603700060800500010000000
354
+ 300000060060030070700005000030500000009100004008000021000600000000090410050810630
355
+ 050923000700000000920000105000000000035400010604005309000008000000000270308010000
356
+ 000000000060001003103782000000000000502900600980570000000000006091006038004000009
357
+ 200100630004000000050036000007840000080900007100000040000005000008009703005080100
358
+ 106000000030040010087020050000031029070000800000004301000000000918000000200050008
359
+ 901000008004000000300064000000030507020500001000090320002800730000005900130000000
360
+ 000000000010005003957008020001000008060409071000057000000000000700096000035040006
361
+ 000001000068030002000720300091000000000000400080409650506000003000070800040000760
362
+ 000000020003007000000001470008000000746000003050400209000000000000104050100235804
363
+ 310000800904000000070900030000690070160070020000000109000500010407200300000003000
364
+ 490002000003000100000716000000200600008600010000000390900003200000490000050100470
365
+ 000000004690000057008000200000000000200000080040391700050000000003020045702065300
366
+ 200700006007005800000016003000408000100620000900037000050000000300000020090300108
367
+ 006000000028900005000005007000000006009014000400003970005000003000809050010070029
368
+ 000300007001000048420000000009000006008600203010902000000096000090170050000200080
369
+ 009000050100400006260000308020000500700006000900823000006010200000007090000004030
370
+ 000000070602100000341000200500009700010208004080000000000000100000360408050001060
371
+ 000059400200010070006380009002030000000008000605000020300490000500020380000000004
372
+ 000073020039000000000000041000340006050100900000000002500097400004000070802006005
373
+ 000000000000530208005002400009200015003000004086300000030748000078000000600000040
374
+ 000090000080000050000205906200000000000407109034050700000000360003040000509000012
375
+ 000020000003104007040007600004800009600000008000060710000300040900016000050070900
376
+ 087000129002040000030000000000000091003000000020750004004017030050000000000409702
377
+ 000407001700950080200000500000001800500004090020060005000000000980006030100740000
378
+ 800000900503000000006900300010002003000090820050007190002000000000751000000300086
379
+ 007000000100000000836500074010000057020000103050009000500060000000104000000050268
380
+ 589004000040000800070000006300560009000903200000020000007000180605000000000009602
381
+ 100300800005000241900000000000009002006002084400060300000907000000000060074006005
382
+ 000500007380007906200090000000000000062900001000340200501000700078000000000080310
383
+ 002007060100900000086003050000500000000030706030609004065000000008000093000010400
384
+ 030000000068019030000470050000000000090000026000006100007002000900500010082034007
385
+ 900700000001008000085000000094020000000100050000945730030600970000031006000000800
386
+ 000074081000030046000800000050019000008300600900507000002000090060000000149000200
387
+ 000009004000006700057000930000020000098000000040000005004090010702100500100004078
388
+ 005014000010070000008009600100053009020000070906001000069020000800000090000007008
389
+ 070000020000001050602040900406000000800402100300050200003000680000730000000000740
390
+ 000005000046000705100036000050200040001300000030408000000904002080000000000027906
391
+ 000080300602000000501000800000004100000896004400000006007050200006000090804071000
392
+ 001080000000000704000352060100000500060030097050600001074000000000200000000046053
393
+ 090000002500402006000000518006900000000017009000045020900080005003000000010309000
394
+ 000000917054000030000800000800000003002030690000410002000070020100000000467009008
395
+ 000004000039860000000091000006080000004002500250000096800910300020000700000300008
396
+ 900000080000036000100000200000048700001602048300070000069000000000200670780000004
397
+ 000003090008000006300020070000000002010872500000500640050007000020009803040080000
398
+ 000000000800009006710020300000001005050030008060740200036050010000003000070010030
399
+ 000000000604001709300060200000090006006070002200000010090007001000800000080529030
400
+ 000600000930005001000018060100060002000002057090000000057080000010200003400003080
401
+ 010004005030007089085900000000000001600009740408500000040000000000270000000035008
402
+ 000000000070120030900000876000000000058013002003900700004000020200030080600097000
403
+ 000300076080090000020000150039014600006000080004020000000070005350000060000450000
404
+ 008409000070000850000000004005004090000050013100000008000000600000027040301098020
405
+ 000000010000001008092050003000000000061003900003020561004000000000017080080406007
406
+ 800600950004000000000904003070000080008000001006002400000090602043006000900003500
407
+ 005000000000701050019000260002009000100040900000003806080060500007500010000100009
408
+ 000000000652080100030419000000000006001000200045700301000008000020000000013006750
409
+ 007903100000006000500720009000000032000007500400000010046500000800100005903000060
410
+ 008900000365008001000010000800741060000050107030000000040000090900000023002000005
411
+ 000000000342015009809043006000000000008400000000087134000000000590700000010000270
412
+ 000000003500830102800070000402096000005420000096000300004000800020001000000005060
413
+ 000007000000309126000002400050000000006010005037000904000005070090040018002000300
414
+ 000003000000200600006070085000000030000005019200180400000500000490000050027014008
415
+ 406000000000004000051039000190007004000002700003045962000000020040000000900800500
416
+ 005000070006005000200078095000000002002301000087020009090006007003000010000000803
417
+ 000000002670980000000001570000008000004300000006200039000000000900064100300107420
418
+ 000020600001000000000650090090700130000594000080031540000000480045000000206000000
419
+ 430000000000009003509000860000020300000803000600010009800506000001040090070031000
420
+ 010200004006001030700040080000000003270500890301000000500000702060010000000030008
421
+ 010090002800000000500030006003040700004070000000502008000027060008109003000000019
422
+ 006000039400000000000030450080009006001203004749001200020900000008005000000100000
423
+ 008000204020000070006007098002000000080960000015003400000000000000080536309000080
424
+ 000000000600050040000840290008000002190000000005008901000036000007200100010000825
425
+ 000000000008004790900076010000001040509040000400507000000000002030000860600029001
426
+ 000600000000019000009083010008006070006000400003207800000000006200000089400090052
427
+ 000030000000090085010000000040100702001020806300604000029000100000070000003400270
428
+ 000200080684000000050000970001070500060002000000900004100000000205740013000800005
429
+ 020000500000009120006800000007000040000087000010506080032000756000032400100000000
430
+ 300980020406000003000004000000000010000002970032590000000065100060000004005070030
431
+ 006000000000043000500008127050010003800000070070305009000000000021009080400200600
432
+ 040071000000006000900200800008603000004000000072090004205300607000000002000050430
433
+ 900006450050000000300800006009000008000000070504070061002090000000040000703201009
434
+ 000004030200507006906000058000008400501000000000360005000040200008700000027000300
435
+ 510030600300000001060400070000210000030000008002900050000040000405002000820000940
436
+ 000050000090000800005043009000020000089000603004600050000001000001502400006800071
437
+ 203100000000002009000085040650300000000200900009700006000000000706004018318000000
438
+ 000000000059002410042006309000000005800431000030060070000000000400009080000710003
439
+ 000010300870900000000020708000804060506002004000060203402000000000000085000000907
440
+ 003000000200000006006070500000009000160000700907080603002000009080003000394006005
441
+ 030070000007000002560900107090080000000000008000005001040000500301090000900024730
442
+ 000769000000000009070004000000000538000345000100000070801006002009430080043000000
443
+ 000000000904001000780094000000000102093000600020000084046009038000310000208000000
444
+ 000000600003000100019530004601900200020000009004007010000073802040000050000000003
445
+ 046003080230000016000100000478300500000080200000007000000700930009042000080000000
446
+ 000000000000200405407090601000040030030000100041300960003000008000480000000506700
447
+ 400090000000007009230800000010000083850060200000500040000000000075900020020473000
448
+ 200500067800000509003000000000020000000780000020090601030400000701000003060030708
449
+ 800003007000000029501020004000000000703000001010030200085700000100000648000600500
450
+ 000007000100000480000840000000000000810030009300096005000080050020400030603520001
451
+ 070000300000053000000800060300100000806047000002090007003500004000084020250000100
452
+ 008109002000040900000062000702000000305000078001000000030000000060804009800020067
453
+ 003000000120008000005940200009081000070000028000000050001000005750100409030000600
454
+ 000064092900001004700200000080040000000500000527000041001000730009000000000937000
455
+ 000000000036900000900508703000260000003007400800000090062040008080070200400000001
456
+ 390000050600800003400090070000070100020000630080000790030000000000016820006007000
457
+ 005009010097020000010006004500000000000740006030008070002000000000803200060400031
458
+ 000000002000000000840001506100005000030700204004000003007803000901004020300600090
459
+ 000000003004650090800092070006001040000000007200008900000004050070206008000005006
460
+ 000090000709200000050300070500040060003500020001070300090000530000000080480000709
461
+ 000040000060008940009001000000200000020080073008500001600020009530000006000075200
462
+ 080009050200803000100000070000004100001367402406000000000000001300200900097000000
463
+ 006504010800003700000002008085000064000000200703400000000200000000070083160000002
464
+ 006000050100000692003200000000001000300000000061300084000006800004875000000004309
465
+ 002000001000005060000726000001904000300000005200000430006009002000600708907000010
466
+ 905000000201000003070050000089000010100060400000305600000001000000598000706200090
467
+ 900000000016020500370001604000203000080070000600000000400000010000910080060800305
468
+ 000060000005401000070280000090000700002003800000500063010006400900000008008010207
469
+ 040012050000300006008007009000000103317000000400009080070000000000800000090620805
470
+ 005000080000000931090040000007000000000504008950000020040025000020006100030809004
471
+ 000000000008901300021067000000000000007010024200300009010009000050000207700608003
472
+ 000000010006003904040000720000030500850000600300010000000000002720600090080047100
473
+ 000000003070002000130009006000000070610320005093004008060050000000008509000470000
474
+ 007020000904650000000403000300000091700906030000000005005000800020080007008001050
475
+ 080706000467009000000000040004097000701000084090000020000002000029070000000350006
476
+ 000002000020080040000001050000006010703040060100070903800700009400000006500090400
477
+ 090085030005030000000700090501090060000000800003208000010060009600400000700800001
478
+ 003000100000090050006500040000060007048050006012480000800000000000040000120603004
479
+ 000600501703005000000809006000020000502000000970306000000050700100000040008070063
480
+ 000000000065013800210000540000086000057000004600000003000000009000030700900870302
481
+ 000000509056090070070600030000000002709400003300020008800000000003008000400359000
482
+ 000000006000070100607000594000009020080700069040050000005008307100000000060405000
483
+ 003009017200000054000030000000040008800000100010900765000700000000050030150003900
484
+ 010003070008000024300097500005001200004930600000020000200000000080600000070052000
485
+ 800000100500670300067000009300700000091006200000004000000010008000200007008040920
486
+ 510030400907000000000000890004000000006293000000074018200000100000050004035008000
487
+ 001090000000053000350670200000405000005900007900060002000002301009040000070300000
488
+ 007203090200000700000100000405000000000000369000780041002300005560009030000060000
489
+ 000070020000008031000000000091080000006000000500930780010000090007006810025700004
490
+ 004005902000000080000300000038090004500100007007004000000601000005007003700480006
491
+ 000009000000200700875000000000004001700000024084050003000010000010000030569030108
492
+ 400000800907000000000708010700000001000000905010560020000030200060009070300200059
493
+ 000000050002148000006009042000006000050000607000980010000000004093000000600091085
494
+ 090000000600020000208000006040057090000038400300042500000003002014000908000000070
495
+ 004001000600000950000090421000000000000005800049000007008900000060400109030206008
496
+ 000100003500009000009000400020090034050000001003001700307040050090080000006500080
497
+ 600010000000000047050060030900700000735000060000020050397080005000009400000052000
498
+ 000009050000000070070201004000000008080070000200010005809030000007086041004000096
499
+ 000000000100005000460900807000000046080032005045009301000080000037006000000200700
500
+ 000070000000001008000026970074000000036005040008010300000000007560000400003902050
501
+ 040000005500000009000006000005400080607003000020801090050300801300040060000025000
502
+ 005100000000009200030060000081000520000000006670030040904071600017600000000000300
503
+ 050000200060405000002769010003000000080000003475000100800000007020800400000601030
504
+ 032060900401000005500003064000000400083004000009010070000700002250090000900000006
505
+ 580000200300060000046000900000500004000940060900700008090450030060090080400030000
506
+ 070000000030105000000206057006004010000050800400720030000000000081907000700400105
507
+ 090000600010008035048005000005000000000032004082004900000000000000050091106070058
508
+ 000000900006040000049000870000200061000908052050071000014800000900000020500006040
509
+ 000000004000000037009730001800000000020016000006040523000001000064008000903620070
510
+ 000000030900810504500307081000000000002003005001580407090000000000050006203600000
511
+ 001700856060000900003508000070000060019830000006900040000600700000004025020000000
512
+ 080000070010930000420000000000060504000010000036400718500000360000100800042000090
513
+ 000001700000003002800045090001000060007300005040050007960000000080007006014200003
514
+ 804009000005001000300040005000018200000050017000602009096200001000080600150000000
515
+ 005000020609020080200000100000038000000000040180002370700040069092700000000003400
516
+ 000008540007600008003002000062009800000000470070000000940050200008007650000001080
517
+ 004000530061000000000800007080006370000008006400000910075010000043000020000605003
518
+ 007002000000003900360700002000800400090300050400000189840005000010000693020000000
519
+ 000300506706000800000040001005002060200004050000901300070060000008200040029003000
520
+ 060000090900801300403700060000000008190002400006005070000000500010600003002150000
521
+ 006000200807300004050040003000008040000001062080003509005006000040700000003500008
522
+ 000000000060305000300027900000000002074200080000009760000000000089700650027006401
523
+ 005000000460021000000600200001060000090305040000000050000002037003000428840090005
524
+ 008000000460000900000981006000200067003840009900603000019050000000000000030002504
525
+ 041800000060000200208900000002006030050000000600000902700040610090020300800037000
526
+ 000004006000500910021360004048002000000000000000906500910400830030000005407000000
527
+ 000000000010070900905080000006090002052000800003052100030001006000005493508000000
528
+ 007004050900007068840905001000000009010000000002103007038000070000060000490000800
529
+ 008010030000078002050000006020081703001000060640000200030005000800030000002000091
530
+ 090003000005000004102600000008100000030008100000069705000730040010000079060040001
531
+ 040082030050000100000037060802000010500316000000008000001050000260000043304000000
532
+ 000000000005908000100207006000000000003000492009730805000003000450000003090140607
533
+ 000019020000500000094200006900040807020000000000006300000000600007094200500683009
534
+ 072400100008002300000000400007006000000801002001009640200070000090000001000053069
535
+ 200000300400030000600527010080079600106000000000050020000000080000008701020701050
536
+ 093406000002700000100000000000090207000302004700010063000050000610000900000108740
537
+ 000040900000003005500980070000000000970008430000030706603002040000400000105000207
538
+ 000003000005067000100054006000000000840000720029040080000001003600000908930020100
539
+ 700000000004020500920040300049000000000050080050280601000002000000018070003000865
540
+ 050000008009000002000010000076900020800035046030006000000070805040800960003050000
541
+ 000000018905007003100060970008000500000400000407600080001000090000351640000200000
542
+ 000000941860090370000000008090008000500040000400735000040000700002003084000100002
543
+ 000000104000003000001950062000600070905000210072000800089460050007089000000000000
544
+ 000000000004610007020800610079000000000023900400086000000000070800100060006034809
545
+ 000000000000007954950600007000040000105000030200030419007000800060004100510090000
546
+ 781000069000000032200060800000008705002079010000400000000000907004603000008004000
547
+ 050006000000000005008000900010000000506020007074108360000063080037200500002009000
548
+ 043000000008000700006000241090000024800000500605082090000070000000060900401900060
549
+ 000203040050600070008900035000000000000000569006100007000006000093000800080730052
550
+ 060008000030000900009106700008000009400009800090070002016703000080010000000480020
551
+ 000000000720094008005000017000061070000000169900080000008005004100700005500040600
552
+ 000000000305109040100200000000001020030070000500603007009000300000002514400705002
553
+ 900030050200940100001005308380000020094070000000000040040359007000700000100000000
554
+ 000080001009300006000004008091000000007000002000576000900600045040007080083002600
555
+ 000000000230050090000908603048060000000030150000004900021000000000190700085006010
556
+ 000400305900000001080003007007000000000308000000720083070002008009005700120970000
557
+ 040050000000000084036900070100070000000500000009806200400000030000002016010687005
558
+ 900000020000000003000034015302600000060400000009082000008200006070090001130860000
559
+ 000000604062003800001020050010080000000400090090000106200301000050000460009002070
560
+ 000400008000016300240050006000090000001500000069000081000020000300000165006080043
561
+ 000000000005038400710200000009000800000183006403002007030005020200340008000001000
562
+ 060050000098023017100000200000000859000005700602000040000001300539700000000800000
563
+ 000000000001026007004059600070012000000870090002005070200000000007001006600004503
564
+ 000090000098100074501020600007000090000430050000510007000002000900000080805000021
565
+ 000008000605700000000960052001000009560000008304070000050010020000003096008006005
566
+ 020000030004736090000920800000009005072000000310040007403090070500000000000480000
567
+ 072003009001000000400000700000008000628000100005000260000020010200940800004807090
568
+ 036210407008000001100000060000042000000000005025700013004000000000129000090030008
569
+ 570000640000207000008000005000800000405009080000000901000004002007390006000728500
570
+ 004010800000000047030580010010030008000900063000000950080000009205068004000005000
571
+ 000000000000103008950062003004050800090801000020000409002008030030004000005000207
572
+ 000050000000408690104020070000003001008000060241000007000070009000200000670094200
573
+ 005000000637120000041000073000900000000040302800000010500200001020001435000000080
574
+ 300600000040800000000042500004000038000010000590008070070000000905003080860700054
575
+ 005002030000100070026000900000007090908000145450000000000608007040200000800005300
576
+ 006000100400005000100609000000000090608900500070004020005000607210007008009500001
577
+ 020000000901000040300080905010003009000870000004020080072040000000390120500000400
578
+ 000003000000020040005861002007000080543008000800900435000000900000000001006305004
579
+ 060000805100604090907005020500070000000009200008000000001080006050000982000700040
580
+ 050000060001003000698001000074500090000004510000092003000139040000400008000060000
581
+ 009004270400000006000200000007000060010800030002040100050010800008569000040008009
582
+ 048000005010005090902000160000002009000400320000009406000070000004000000061050807
583
+ 090000040000006090000370201000000010430000007015080004060508000000620400008900100
584
+ 041008000005900060000614000010000000027049000000007013070000002900000006000201094
585
+ 003100008000030016002498003700000040008270000900000000009300002006001080310000000
586
+ 000000060905700104700000925000002007000508000000060290200014050000600000100030600
587
+ 400000000000040801008056730000004007004600100000902000003000000019028005000000283
588
+ 000000003000074000200300470000810900402000000090006020008600000006940305010000067
589
+ 000000000009070460403009705080940000520708000040002007000000000005000342000060090
590
+ 060005010080730900307000000009003008000000000003081700090000000000620000700314206
591
+ 000007000003260000400005030004002700200000006070000013020080090100900000006501380
592
+ 000000050060040000083600000000000000150070960900000435000805004510700080004060003
593
+ 000000000315008000024001960007000009060085004080000302000070000000210000006903020
594
+ 000040020600000407040036051280000000001060000073000082000009030010070060009100000
595
+ 080400006900001050000600020004070000090500200003102007000000098000017405030000100
596
+ 803054009100800042000000000008700020070400000030000500900007086000301004000049000
597
+ 000100000930000080400805001004000900700000206020090000000010600103000024095004007
598
+ 000000004000507308050000260176000000200000000500400716004050000000060009001390500
599
+ 000010070610007500900030406000000004100900000093700000060000305000004000308075090
600
+ 008500000000070508002006000060017000109040006007005003000000842000000109406000070
601
+ 000000008076008000090000060004002006001000074080007200102003000900040021008006030
602
+ 900600052001000000806052004702000000000003000000907040009000410000480000200095008
603
+ 080020007000018000600040500000080000506000003003400002004800209900050060000100705
604
+ 400002005960800000000700000000040301045003200000009080601000030080000109590007000
605
+ 000000080007010003000700620082000300703080009000407000000600010960000000008120790
606
+ 000006900010800003000200060020001390400309000060407000000000500056000030938700000
607
+ 010700054630005028000000360040000000001900005078000000007060000000052040005010080
608
+ 000004000050010076000070004300060800009700000080009023035000000000080069901400050
609
+ 000000802000000300820410500204600000160003000000004050000000000000809060306100498
610
+ 640092000009004007020080000001600005050070000400020090760000048000036010090000000
611
+ 000004020800007000004030100070000000080700090430005200000090000340810000060403081
612
+ 000004000700900501105070208001000037407000000058000609300500000000001072000002000
613
+ 005400000000070080001008609000100020003000060008900010370004005800039000004700008
614
+ 900610000000800004502000000000080700073002006000000102001090030300270405050003000
615
+ 000106070000002610000090000050040030300500120002007008070900060830000200000010500
616
+ 050070600000600091300001570900700060002003000806000000790080002000020007000050100
617
+ 700015003000000000200000185050000000000600070127000450040306090000000060030708004
618
+ 040000000000000300008004509004900002001000840030406000060000078000028650002065000
619
+ 007002000030610000069400008000070500501000090006000003020100000305090000900204050
620
+ 000000100009003080080900340000006708001075000008320090000000200000200001040030907
621
+ 000005000040006803002180000001568900450003000000000100100800000039000000070300401
622
+ 000000000401800007000300541000000020030785000100003000004000000013057006907040010
623
+ 000500000040090562001070030000040000100000000050102304700000000689007021000020009
624
+ 002000080004010960000020504000050070800007000040083201010000008070000016000009300
625
+ 013000860800003000900000130004008602000040000000106400000600307000097000009002010
626
+ 005003000900020601160000000000000000001590070640032000000000020050600700370059400
627
+ 000000070036000809000900506000400600048000700020070010003540900004013000000007400
628
+ 107000809000070003000400001090005204600790000000042000070001000010950006050000300
629
+ 095000200600000009004900060000000000002170900100860040001002000300000500029037600
630
+ 000000105040090002009327000001003000900040070050000020000800010800900003090670008
631
+ 000000800014906000009030010000002000300000000090010705000050003020098006056001048
632
+ 000004000075060020300900400006000000280035700050000006002000000007508009830000054
633
+ 000000000600809005109026400000000000063000054040005980000000000000300012908010506
634
+ 006853000000000030008000100031400002290000000000090000040010000103020098060008370
635
+ 090000000000008700148000000000000040035209000824000060000700009000800007370690204
636
+ 500000000740800600000060240000003000309400001000100097000300054001008006080000032
637
+ 000000000084560000000092007000003000102400080000008591907005000400200070001030400
638
+ 000000000000014290973200000006080000000000500790026001600000000021000007539860000
639
+ 000000070000009820030170000000000500380007000960051008000000600009800000873060901
640
+ 300090056040000230508000009000008002000000000000370600010040700004067000006900310
641
+ 000000000030800016070021408000000000006700003309050820000003002200008000600007104
642
+ 432600001000000000000050030000000869800000400060005010004002003000003900076004180
643
+ 000010000800400000070003510000000900607100430000700085060235070000000050930000600
644
+ 000320500090050021000008000086004000000006140100090062000000090500060008001040006
645
+ 059030100000000800000800032020000000900000580360007004090780005000050010002003700
646
+ 090000000780302000002006400000090000800004709001230000000000900600700204034500001
647
+ 000000009024059003750000060000000000070030890000065742800002000000006010043008000
648
+ 000003040708000009034010500059000208000001000307600000090000000000030850860000037
649
+ 000007002006000000000168057000000300600780000019006074040002001060040200008000090
650
+ 000600790002000300000000608806009040057000180000004000900006003040010000201043000
651
+ 007000000000000036420000008004003002700001409002900870000000900290870000001250000
652
+ 050010000008000304000050800090000000007009003001700900900002001000504260600097400
653
+ 300010000075000004008060105200009000091000203006200010040000000050008600600050070
654
+ 027000080006000050008902004500600000090003810000580400060000000000409030030200700
655
+ 000000400100007092087060050000000000000056004050042038000004001049000000001500907
656
+ 090070000700020080000801000600005040000000003030004016080059000014008009060100070
657
+ 480020900002090045000500100010003400093800600000600070050060200000000081009000000
658
+ 020000000700502000008070405902010008030060079040000300000100000010006002000098700
659
+ 000004503002300070030150000010700006000000900000062800905200000060040710300500000
660
+ 060000004001403680000090000002600003000007810340900070003700000007000040054000001
661
+ 000000008003001050078009300006000000500003007000208641207015000010000700000900006
662
+ 000000000002004050090170408000000070001000925905001000030020000000000704104680009
663
+ 090000008000805000007090030030020000000400000020036010014009300300010900005380004
664
+ 000080000140000000067090010000004085000032100070000632900320008050060000000000023
665
+ 000050004000009000000080917005000700000872000021400008000008005003001270400590000
666
+ 010400003003200950000805000000100078000000405007000390309004000006003080250000000
667
+ 047000008000201590100000000000000006004006700800070005200900100001708060000013070
668
+ 059002006070000509010000000000160000100000307900037004007000000023006098500000400
669
+ 000005602000407080004000000049008000030100400006002000050200007900700306000501090
670
+ 000080045050000800060490070400000007500730900003900000001000080700100203008020000
671
+ 000530000005000600000190503000004000000000164100370800008000040010000008004700921
672
+ 031260004400019000000004006000000050060008020000056300010900000028000001003000290
673
+ 800000000000000350203070000400090003107605080030020076000000064050800000004309000
674
+ 005009400001806070000003500000001004000400698086030000800000060050000002037000005
675
+ 500000060408507000026000000003050008600000520100000907200040006700009000005730000
676
+ 050000900600091000001750000020040300010000090306000004030068200000000400165300000
677
+ 607000100400900603090000000000500020030000040049300000100405009300002060000010038
678
+ 013000040600300000005000801009605000080230076030008005000806000050000400000020003
679
+ 002008000400706100000020908000000000003860000000054083700000009100090460200003050
680
+ 000000000070205608008900072020000060009006285007000000000042000005300007040007500
681
+ 040000000300000067500900001006790030102300000000020905015000083200400000400030000
682
+ 280000100300162000000400000050007000000000003000000980600078031703000004820603000
683
+ 200405601000002000003070508007209010850000900090000004020100000000000003100800006
684
+ 140007000000000200700000090000300000090400002030950010000061300053000001002030974
685
+ 008009003200100006070080200046000000000032000300006040032007500000000061501000020
686
+ 000800000000620004409003010000000070040130000061000900000060008095000047308000059
687
+ 040000000300205000009304002026000070000580000530000000000108760000730908005060000
688
+ 000060010002000450003000009090100000200806000001205090300000600620070004400000170
689
+ 003000090090305010000900002002008006104600500000000084000090070610000050020000061
690
+ 003005049009000031650000000010900070006040000007086053000060090000000000090030108
691
+ 000400070000500020090008000009302010720054006004000090000200030036080001000000709
692
+ 041805009009070058030000000000002600300060025000500097000006902010040000007000000
693
+ 000050300018000400000106852000005000800070010706003009002008000000940000000020508
694
+ 000000000000187600000920570000600000002009005090000863200000000000004090060093781
695
+ 000010020009000067054032000400000000302501780000780030000200000000058000508000006
696
+ 000000000005063009008400000000000600002001007500600483090030000000700090630059024
697
+ 000600000075040030800009040030002058002000091009000000000000000023106080008307400
698
+ 900003610000000000036005000803050100060004070400020000000070000000012905041000860
699
+ 009000000301000800587000002000100400040703600000052007700010060050000000000030251
700
+ 000005000090040218004020090000000007900061004006000000200080300070600809100590000
701
+ 000002900004000051000001002073904000800070000001003807050000090420030000006058000
702
+ 400903007300708091000000006080024000000600000640005003050080010107000000000000045
703
+ 002009000006500010030216009080000000023908600401000000000040070300000000005003208
704
+ 000000005000079306400000907000000000210608000850400102000000000090037000700510804
705
+ 090000008003400520081050000010005000020900047000070002000060705000580300700009000
706
+ 000004000079000060020060415005020000706053009002070001067080002000000850000000000
707
+ 063000050000800001050006009006090107009100400000072000075000004000240005000000960
708
+ 000000000000098020000051030000004009050900000208700005001400300064070052005000804
709
+ 906320010000006250005070000030000007009050100007863000503000060000010000000507000
710
+ 000000000400000003051004620000000000040500016023716094000000000060023001005009800
711
+ 300000400010809000780000000000074000000030016023090700007300008000000001058020064
712
+ 000005002030700004500962081000000805093080000001000030000000043000000100000354900
713
+ 080003040035094000900608005100000200020080054070006000000000000000000030302500908
714
+ 000010300000006074053000080560000000704000138010000000600070050040060020020045000
715
+ 000609700009072050000800090600780400000000070100023000020000000000500061306007500
716
+ 050007010000209000014800070003000000020500008040378000500000090000082007100400006
717
+ 000000000000037095000690207000000000200059070300260540000042000008000030009070420
718
+ 009000000000005628000001500820040000000003000000010456050120060007004002080070900
719
+ 003020100060000002020610000000031040000000006050000030008900000605200001370008650
720
+ 070900500000000208000768003000000000500090120021080000300000000050029000400815090
721
+ 510000043300050000000000080700000000000400029203180065000000000490200300071090006
722
+ 000000000080030090070000853400000006050100400000740030100480009509003001000601000
723
+ 000000000400670005002003000000010020006008009700300100010009008247000003038700040
724
+ 801000002000000500020001470060570100210903000000000005300090008000200360002040000
725
+ 000700000705200090012004000000300087000500100020140005040060309100005000900000001
726
+ 056000004040001060000800000700090058000008003000050209000000000569000027087400005
727
+ 000070030800005070000830920700000400400600000020009700130060000040000500087003200
728
+ 420000016100003000008400007000000000090510000060000100005060809000000670710004503
729
+ 180000040030406000002070000000050000073000205028300006000000400000009050000204973
730
+ 000000400053000000000701080000072060000360005020000934000004007580200001902007000
731
+ 070000000600502000000874010050100000007203050009000024020060070300010008010000030
732
+ 540908600070000000000060400061000058000000002408023000000080000005602000800105060
733
+ 901005030000406081060000009430000800002014000000200000015000740003800000000000390
734
+ 000000000009000307048130600080000406024070000107003080010008000000000005036409000
735
+ 040008000205000070080020000009300007003600051001040603000900000000000920002730006
736
+ 000000008706002000003000142900080064000026090400590000600007050050000820000004000
737
+ 000000058000700000800092300000000000030260007010839200009070005001053020004000900
738
+ 000000000000070004000946578000000406007500000684100000002050600009008001076000040
739
+ 070000540140000000000015008004007003000004015002601000000090300007000020609570000
740
+ 040000008806005000700000005000100500900000610460007203500980000200006000004000091
741
+ 600000007970250010048090002000760000210000000080045000000079000420000300000500080
742
+ 020008004060009020001073000092010800700800000080060010800005200000000400034001000
743
+ 000710080050000030790008010000050000360007800400020050000000005100540003004102000
744
+ 000010004000024368700000001000500000003008970000073085096000000000090016230000000
745
+ 056000001980000000300007060000000000460023000000090350090800000015302070030740000
746
+ 100000000400073001000000456000090000000487600040002005300000500061009040090500080
747
+ 000000001286004000300090520000000800048300007900080260060100070000000405009400000
748
+ 000000000021079004000003821000000000600450003030008500000000006000100430046002079
749
+ 000006080950000600020750400000080000000020356090305000100004000080030000032600008
750
+ 000000000000000850073500000000002060002070091008904507000000004067050200200096070
751
+ 009000000002056930003009506000000004000800670300000850060100000400020008080703000
752
+ 098000070000000100054600009009847000060000000040006013000000005000500702080070340
753
+ 000009005304000000000100930260000000000000009108006740500008300007010092000040560
754
+ 000003000000700040700010030000081790900420100007006000003000210008000400510008009
755
+ 000040080006200000540000002000008060015060004002070050004007003020000001030150007
756
+ 002030000010000000608017902070000000006704200023000040000000700907000064000908100
757
+ 000000000007800356080603029000000000050002000000300587009000060001000703060054002
758
+ 000000038004000000062340000090000006007005040203006005006804700085003200000070000
759
+ 060003000000510000400080003030000950008060007000750001001000300050800010002000574
760
+ 000050000005004020070000031010000000000409200000230604000000000130045089049001005
761
+ 800000000047000009900000001000001800050094700000607310004106000000700403005003006
762
+ 000000000003500008128009300000000000601000900094005683000000009007098200400360000
763
+ 000000000900012080060008004000000000100009076600500308000040007570200000306070059
764
+ 000100000000050960000300147006500002519000000000070010030026000900814050080000000
765
+ 000000806070000000000000532009008000005900300030040090000806025020193080600500000
766
+ 000002000030010204804605090006000000007100508000304900001000000000050000050040871
767
+ 010000000030000070000090206000020007067010042000605900080000060104800000600203004
768
+ 000000080070000060040063057900000040000000100001580000400370005150006000090801600
769
+ 000000900010003502009020017061000000000350040007600005600705000000038120000009000
770
+ 800000030007002050005040280002000000960001000400070003006500000004090000009603025
771
+ 087020016050000700000090000065000000000600904090002083000000047003008001500010030
772
+ 001000000000300190005290064000004000000530480700000009030400006008006005007010008
773
+ 503080090800740006000320001980100000070450028000000300047000000000060000600800000
774
+ 568000000070800090020070100000000000600010802480302000007004003000000709301900000
775
+ 010000004000000060305010070080900003000085006900100005056000020400001000003007480
776
+ 400001009080002007007800000000000000390007401008100032050008000006000000002794010
777
+ 000008090004100300502060000000000000000381050000005078700000000680907400905016000
778
+ 007000000300010400086500023000003008070080040000001076000095000001006050000030760
779
+ 040010068000000594080059000007003080304006000000100000050800703000000000800032009
780
+ 000003400070090000500120078000000006059000010000302950060000000041200060003905000
781
+ 000090008100000070000067200006700001400300020270006000005002103040008000060030005
782
+ 080000000007300814103006020000000008030000051004000203090730000000000002700801600
783
+ 000600000010000807608010000000700620000050400000034978100090002005300000007500030
784
+ 023004000000000000009830040000700081500080400080006000000200010150000009092300508
785
+ 000002000010000700627040000000009000000000801700018695000100006002000049503024000
786
+ 000000000704005060086200003000000007000030906060010030000001000000840009893006015
787
+ 000000000065400000700506010009000100540070090087000503000000020200010300806700900
788
+ 000009000000000100602080390700010000046070001100056030000000500390200800074100000
789
+ 070060200040005003050180040000050706001079002000000010300010807800030000000006000
790
+ 000100000070008020130005900017000004000700600362000007020040000090001800000960005
791
+ 000000000002003605073060200010030050000607940000400800100008500000000000804092070
792
+ 080057000000000060020300704160000000000000080700904610690500000030000040005038006
793
+ 000000000000002650100865027000000000900658000860003009000007000048300001500009200
794
+ 000000000400501009980706010000000000094008000003000185000003000000900200308154900
795
+ 008009301000800007090015000000040006605000020240070010000007000000260008801000600
796
+ 600100000013702000200040080076030005000009000300010008002400000901070300040000009
797
+ 900008004000010260036000000500940600070200000000000052098001006000804710000050000
798
+ 000000010008000005000000894020060000500490007000071300050009000892005000730040020
799
+ 000000006096004820030000000000086000172009000003700000000470000500090002061200507
800
+ 003600000200000000090000000050003009900400057480065030001000020700300005540002001
801
+ 009007060000009800020000400003000000960104000080200005000040902001900046200300070
802
+ 000000000802000003015309000300000000020080607976500000603000100000800204040000506
803
+ 000000060000084500005000400100070000027000006094000002540009010079005200030400070
804
+ 320060010000100000001000872102009008900070000700000300000000004006001000075004980
805
+ 000000024520000900004000570040700060010090040000003007000900000360020008080010705
806
+ 007000000405060000010009035700000000000620019104900300000007400000010002008452000
807
+ 800500000450003001000040000003610079000002500080700610610400090030020000009006000
808
+ 007000000080700051000820004000000000730500600012400089100035008008900000003040100
809
+ 000000000000801000180927060000000073263000100050090000000000002807050630340700009
810
+ 200900100006004500700052046000600003830001065000000070004078000501400000080000000
811
+ 308000000000000092100067300040900000090031724003720060000010048600000030000000006
812
+ 000050007049030080050400200800000000036700001002600070060001028100200056000000009
813
+ 001200008080510040000003050000000003405700001003000520000070000010002070907800430
814
+ 000008006400902000001074000002000030004007025007050409000100000600009051030005004
815
+ 000300000800020540951700080002006050000002009100007020010000006030008000006000498
816
+ 007020000300514007050000002000000000700038059695001000021000000400005080070000403
817
+ 030000000000009460007135000000001006086370040000008000005000700029010005004500390
818
+ 000000010000690038000000609080010300007006090009003864000300000000001087900064500
819
+ 008025010020000003047003500015009000900300000380010040000004000050790800002600000
820
+ 010000000900000503050120790400008060006900108070300020000480007005030400000005000
821
+ 002000010408010006070000040000900407746000000009000080500302000804000000600409570
822
+ 000408102080090000450032000000007000007001280030009400700000600590000870000000904
823
+ 000020000002005093154038000080000000409000602005000000500000130040003060700004205
824
+ 000000000000070309038009650020500090050002006800710020010000000000100730704650000
825
+ 000030008001600050608905100100000000320070006070068000000000200000406900000017560
826
+ 020054300098000007004090006609020008003800000200903005000035000000270000000400002
827
+ 000000000000207001067003204000000008004750090085010400001004900830000000000085310
828
+ 000000600800901003001230000000000000039000500057019046000062000020508360008000005
829
+ 001000025000000000940300870003026500020005004000030010309700600400090000000060093
830
+ 000000030076400000030029700000000000001960040803017000507001003684000005000800002
831
+ 000430600090000000007010093000300000050021900021600005800000209006000080002040056
832
+ 000039002017080000000607500004000000800000050005890100002000049040023800301004000
833
+ 040000008000006000207840603708100260000700030009030000050000000000300125300021000
834
+ 007000000000080560508067000000003080070920000020746005009000046040001000002600100
835
+ 060000008000040000830007900002001000900030070600502001006003000080200103050009406
836
+ 000005000000720103000801000001006000730050960000010520008002000050004030070580004
837
+ 020000010030000702100907000000004200040300050380709060060001020800000001005006008
838
+ 004001000020076004007090002000000200010360000000004501030100000102903007000007305
839
+ 207800400600000007040000080050009032000000900030280000004005600000400570300601009
840
+ 500040000000800200002005840009600400000050000000124950008060000100407020063009000
841
+ 000000001005600420000150063030000000400072000096800000004200007001060005679400000
842
+ 003006002500021700801030000000000000000005920605080340000090000007003500040507001
843
+ 100000980600080010025000060006402000009000630008760090000000003000054100000208009
844
+ 000000000407380000000052040000074500000530280060090070008400701703000006006000090
845
+ 001000000003970085090008023000007000932000070004090810005080000760000400000400060
846
+ 078000090010070500005903100000100000290000301000402009709000006000020050050006002
847
+ 000000000960004108543000000000000006080009053705080900007003480054002000000048000
848
+ 009000040200030170800000002000000006002053008306091700000140000600085300001000007
849
+ 000000001020160307000038600009003000100049200062700400000000100004800005070000046
850
+ 003000000900000300485003700200001000064800000300027080000010070000704600800006930
851
+ 250001000000008060003000401004806090009040800010029040905307000060050007000000000
852
+ 090000080300500001280400000510060000004000009902300700100870200000904850000003000
853
+ 002019030800000010001800009000001076004000081000670200000000500900020048400008900
854
+ 058403000040000050000008000000006009900540300407020500070600001000002040501080090
855
+ 000009000007086000600300000040007008000000032003605100060700080302000490054800003
856
+ 000000000007080005000000893000001050000300906406005087000070000020008500704039608
857
+ 740005000501040906090000000000000100000402680008700042002000003000620700980003000
858
+ 900001080060038100010600000090006802002000003030070060750000000009017034000080000
859
+ 008000012000019005900400806042037000091500007000000000080000700000398020106000000
860
+ 000040003000900080004300019600009007008100000003700150040000000106003500705000230
861
+ 005000000034000010816035000070080000000903240200000050000000081000001003300006592
862
+ 000000000001006008730000001000020003300905027072040800020000000080100390047092000
863
+ 000000009000704600904001502003000800806000020000160900000050000000809000030076198
864
+ 001000207300705410000000030000007000000000902020406381009000000010004803000108040
865
+ 260010008010003020004020050000904070030000000098000201000000000000406017040100305
866
+ 001020005945001000000009000074000201000500000200040060090000640007060300020930010
867
+ 000009000000000840408002105004010080086000700000600000030076010760530090000820000
868
+ 000000000000009032052047006000000000009020060060078025000003000094000008021590043
869
+ 000000200003005140000900006000201004000093020500408000654002009009000370300800000
870
+ 018040000502007008000000240000000000000109380036000500000401000074506000000092710
871
+ 008042600000060000040807500060000001000050270070000800087609005093200000400000009
872
+ 610000000000809000000050000000900700003000016400100035030010002025008001040270503
873
+ 000600000400080007700000026000000000070046030801070054008005100050000083100003570
874
+ 000000000354600000690000504000040000006001703040850109000000000009070006401020390
875
+ 010008004400000806000304000106700309302000050000002000000017000509203100000400060
876
+ 001000002300005400050200080000490010000500004000001708000800265594006071000000000
877
+ 000082060827000000001004000300090710010500630900000080203000450000203000080070000
878
+ 200000600057000008040000239000910000000500006003007010470068090009000800060100007
879
+ 003058000170000000002007090009000000000035940300009102020000050940000063800016000
880
+ 028401000040006980005089000001002300080000600000030090000000001000003070060708409
881
+ 030807000068010009510002800000000050200000060095003000001079002000006003020001400
882
+ 000000000100408007000670000009000703050090008000043000096031004045080009070000380
883
+ 000000000013009020280076001000000000007090530060783002000000100000000003751600809
884
+ 000050000050000746000600085020106050007400108008000020900000004010700800700830000
885
+ 000700000000060500087301040093010700060000021800500304070400608000000000900050070
886
+ 005901080070600004600000030240000010050004000063000002000807043000000900300009806
887
+ 030005000907203001000790000000000500003006100600051807205360000300008000004000090
888
+ 080100054300097080070800006050704000003000040020000000000085030000400000618970000
889
+ 031200008005001600800003000000030091000007284700000000100000400004600902002000016
890
+ 200170000007080004600000000000000000046000397030407001000300000061708029000020106
891
+ 006000002270039060905000307060000000000105000000092051300908000000400800100027000
892
+ 013402500000900702470000000000000000061008000800205016000000001506804020000650000
893
+ 007000000043602009000030800000000000005000690216040350000000000500810403801000920
894
+ 200008000000500309006237000000180703050040000100000400607010000001300006005006080
895
+ 000290700000000045100004230000010006500970000801430000010000800094000601200000070
896
+ 000000000090174000471800009000000000000207000050090237006003040005020000130500670
897
+ 007600000000007020001380500000030000080004105005200740000400000604800350010003009
898
+ 000000005025008700001000040000003000070904008082006910010000000007060803630700090
899
+ 000200004000370002602400930080004000000605000001790005100006400000900306008000009
900
+ 000103500010045000700209000001000002020000059007520600006700000089000200003080040
901
+ 000053002039000007801007900100708260008501000000620000400000000973100000000000080
902
+ 001003000000100832080000000010005200075906080060008000700304009000000058050090300
903
+ 000600000200100060009820000008000710006000482500000003100904007070061000904050000
904
+ 030000080000010200000506900090040065300005019000063002900002107070000000061000008
905
+ 000100005090007000021059000100000007003700560400065013200030000000000400000581200
906
+ 106700000000000970004230608003009700000000040700020109805000000241307000030000000
907
+ 007000009009500800200000300001002703000750001503004080100000000005070100000380092
908
+ 090200000000014000400000862000000000961042030020800090340000005000031700000480009
909
+ 000000000072010006580000900100790060000006008400000700259030000003800500040900073
910
+ 000600170003000000000002083049001000800700400000094300005000200600057040080260700
911
+ 004002000100068750700900001007003080000010300000689502000000000001000600500701200
912
+ 000000000302540000050301070000000004409006005023054790000000050700810000080060009
913
+ 500400070600090520003025400000000067000014800800600000005200000300007000790350000
914
+ 000000000047056000908400061000070090409000100000009080000000007000284600302690005
915
+ 000000000000530041600412005900000160040600002005200000000103200000005089070080006
916
+ 090060000004000006003000942000200000086000200007081694700008000009510000050000073
917
+ 000070360301000000042000008003006400004800002000003100005080007200760000000300856
918
+ 000102900103097000009000070034060800000004500500021030000400000950000000000015307
919
+ 800000090075209080040500100003080600000300070280005000000004000010027030060900020
920
+ 000002008401006007002107903007000000065040009004000560000001000008000006910080070
921
+ 006029000400006002090000600200005104000000080850010263000092040510000000000400800
922
+ 000000000010720000700014826000000000006000900041906030050001000020097680000580009
923
+ 005100026230009000000000000000900800590083000006500107060000001004000008853001600
924
+ 680400000000710009013000000800000300000804090462009000000900037020007108000000026
925
+ 000900007020007061300810002000078009007300020100040000000000050005000003010052078
926
+ 000000060000130907900200031002000000004501703010006004046000020000010000200605008
927
+ 000000000000002891080030507000000000047001085006427003000000000030005070719000204
928
+ 010050000362010005070206400000005070005090600900000000700001008000374900601000000
929
+ 000001086076300502000009300007000060900000800054000207008035900030900000000407000
930
+ 307009000000003060006400001003100094025040803060300002000000006000200900580000040
931
+ 021000050000000708000400020000600035060000000083020600059002086030001000006904200
932
+ 050000000004080639001003405200000000600450800410800006000000094000207000080009002
933
+ 090000030020490800006000040508000004000000003000620508900007200005280060200900005
934
+ 000052080000007654400090003950070000000900700040300005000000536190000000006020010
935
+ 000057306705003800000200700100000000000809000900020050004100000002006180000032607
936
+ 200000000006000530040860207070000000000600003502070000004100000000296040620080701
937
+ 000003000306700084500090200000000000000602013005100029004000000052000006091064500
938
+ 000000010005902040090068070004800003800000450003040060060000007300690000002007100
939
+ 000000003600000000000903800000009300000245086501006092700000000080074009016800040
940
+ 000000030000100600001642000400700000093401020000000100007000284150000300804037000
941
+ 000700090000006500000913060006005000030079000070840020002000100060004209405100000
942
+ 000006049003070000000500100017000600302050000054000008700000080065020407000400506
943
+ 070408200000000003403000050007060030600000501059000070004081000000000760390050008
944
+ 002000000930002006050869020000000905000080040000347000004750030013000000600100004
945
+ 000000000002608900064300052000000065201705030070030000000007000000086090700010028
946
+ 000001000908050600200080040009800400020740983000000000001070090000000060560010207
947
+ 204800000000705000013000009007000000026000030300026040009008450870000016000060200
948
+ 400001000050000010100902008060010000900000056027500009008000900500700080002804060
949
+ 020000000000001070100002680000000430370060000000004190002018000037050800006207050
950
+ 002000000000705000450000000508000090046100000003209006000001063804030007005470800
951
+ 300700009052000000070902400000006148000010000020080760000000300800500000503024080
952
+ 040876020000090500900040000000060240000009800000401050810000000470000012200300600
953
+ 050000006006740310200080040010300024000800070000004100002600000060009081500008000
954
+ 020004000403100090900002000009000000002571009100800506000080065000000300006203800
955
+ 000000004008030019342016000009000006080004000650002080100000050005021008000040300
956
+ 030900000250708030607000000000003080000000070070285300001000005003004006005019700
957
+ 000000000203041080060008400002000070000375908000000104000000005508600000324800006
958
+ 001000000005017000020800050800700020007003090000090607042009830000000200018205000
959
+ 000000090000042001901000300008010000004008000130200080800400600023500010000300958
960
+ 000900000701203008000008700009020010010000470420080003000000600063001000542030000
961
+ 070000003100000029008050700000090400000510000907806000060283000000000000410605380
962
+ 000030060000000005690000700049001000007080001000400502065100900700090206080700004
963
+ 000000000050083009000720160002009070004307001001064008000000000408031000015000007
964
+ 080100090106005000074023010600700000400500078000000005000908000040000000005017089
965
+ 000010028000004000203905070000008307009060000300000980004009006092007010000040200
966
+ 000000009000018060030750000004000000072140000300002470000000005008200096906085020
967
+ 000000008800200500050900007008054900100000080042800003007400000430010065600020000
968
+ 000000007600000003070160000002001000807030920040006080006000040530840009008009300
969
+ 983000000010020000000050000020900300090015420100046800000000601002400008040500003
970
+ 000000000070051098009007206003000100054000020090200504000300702006080000401000005
971
+ 000000000008590720020030809700000000230080507005000104000007008050601000900850000
972
+ 000090060000750180670000000500300200003014000402000300000008009000000710300147005
973
+ 000390800095000001004001000000070380050000009000980106608000000070000200040200638
974
+ 000000010043600200800010900070030004381700000054000800000800000000240350000060401
975
+ 000000000070405080000020609000000000803700020420900517000000000500108040710054090
976
+ 500008030008000400310050000006040009000001006000600700030205000900060203480090005
977
+ 070000000006001790000908030004000000130060000200030054000004000800016903010090402
978
+ 050000097700802000000900030307090100040000600065001000603000000000720001800016050
979
+ 000000000005007810000508073000000001090003040070219050001000000800390500059004002
980
+ 002000010048200500030004920300006008000003000094805700020030007000708000800000300
981
+ 003000000000000384085100009000000067800090000001400000009670040360040900400009710
982
+ 081000065005900200400060100007000000036007000040000520000009000600002051000078402
983
+ 005040062000030079370210000000001000031008006200000040004070000000080690500600020
984
+ 009070060040052000000046092060500087003009004080400005005000006670000000000007300
985
+ 070200090002000105000900380000090004058312000090080020080000200000006900103000040
986
+ 060000490000050070300901080000002050000310000400000360002080006800105200100070800
987
+ 000082000000500000010090600002400500009260040400000061003000000090300056608170004
988
+ 500090004007000000902007000000009000300706100204100009030002700009084010000000348
989
+ 004000000300000500009405003030000000005600800080254107600009700200000905000820060
990
+ 008003017002600008906000030000050003200000546060002800000030100005090000100004005
991
+ 004000070000000005087400069500006900020000016900301200800500000009074030700000008
992
+ 000040070029506340014000000008000009100000000000702010000003806090600050300800490
993
+ 000000000084000053100030820000000009600000300835190007001005000060800000900060412
994
+ 301007004000006000846003000000070500604100800730004000080900710103080000002000000
995
+ 080030000309200000652800000004000701093050002000000005000080000000002040007014359
996
+ 003800004800500000005003080000000800650702040780001900006940010000000007310006000
997
+ 000094600002860009000003048009000001001307000074000500800000420093480000000070000
998
+ 100820600000004000502090070000900006600500490009000081000000007090030000030012048
999
+ 000008000000300148040000062007010005005067004080005000601000020002000000304600910
1000
+ 000000960007031000000089021050000000072803000063024005000000008310000500000318000
1001
+ 020000050000000603060100700007000089090500000800070305000904070014000000502803090
1002
+ 080004000200008004007290000000300502090500060002006803000100000063005070700000940
1003
+ 050007000010000080800000654040200005201060048500040300000000000000308060300490002
1004
+ 500006004006200080408050000080300000200000009004000010000002400659080700000067508
1005
+ 260000003050109062000000500040006000600080300870300200000000000009060405000504079
1006
+ 000000000000875200708600000005000000804000020637050400000001000140308005003090014
1007
+ 000000070000001008070080006200609030100003085003000200920030050301200900005004000
1008
+ 400005000032400890070280000006000200340900000000007004000000009213040080090600030
1009
+ 004037000009050040500004003000000007000040680605000000060082009902005030300000708
1010
+ 000070030007030210000000000600000000500290000389000570020600940060049003040003008
1011
+ 600300004005000000200047000000900006900010005070200930000001050500420000017605200
1012
+ 205000004000460020080000039050007000706321000002800090009002300020000000001070400
1013
+ 000009000000800906061000030000007000004000370009041502000020007300000105800510420
1014
+ 348000002000060083060000100090080000683100070201000000900004300000000008000031209
1015
+ 005060000090504800073008004000000000000106050507003901009000000402000019030000702
1016
+ 000000000400068035000000240005001004000080000904003601750304006009010000061700000
1017
+ 000000000070000806362010070003000040090702010086400030005080000010004000040021085
1018
+ 000006000000930100000070962060400000003000050450007600034000090190040706600000081
1019
+ 000000000000029640290000503000000050083017009570204001000001000700042300000060705
1020
+ 000080000000504200540072860063010005081000600000000040000030020054700000802000506
1021
+ 000000010200010307010873905031000058000000600760001000090000000380060104000002080
1022
+ 060002070000000500030071092092065087010004009700900000801000000004090010000000045
1023
+ 000008006006105708000000000000200000007980230020300071001000500703000860052070009
1024
+ 000000800018200600704003000001058006000700001070020080005000360306504020000030400
1025
+ 360020709900300210004000030506000008009208000000500400050000000490005380000070002
1026
+ 001005000005070020437019000108000000000000078060000230000000006000807400006041592
1027
+ 090030200004007130000400070000005000040706380060100702851304060006000000030000000
1028
+ 000980010700030600090100002000002000000790206902000308100000000807460000050000763
1029
+ 086009000105080200004130700000000000060004038000392005000050002000000060010920804
1030
+ 000000000020003040005708036000000000002830000074265080001000005580002104000300870
1031
+ 000003020000400006074506003058000030100800700020000040000700001500640200081005600
1032
+ 500020000000374000074000090000008001002730040008250306060010000000003080703000109
1033
+ 000083000583120600401009000000006000040000900602000380300070810009060000810000007
1034
+ 000000300204830000083001004076000120000009030905000000000075000000600418600408070
1035
+ 000000900201060700007200065060008090002300040003004802010002000006030050009740000
1036
+ 003040000000070006000128000021080030070000040300007001010602804200090010008000360
1037
+ 000000000010900008800003020200009010090061072060720403074000500900000001000407009
1038
+ 007013040204090017000040000920000704000930005001000003000070900000300000030405601
1039
+ 480090300307002006000000080030006002800250000065037000000000430500078000090400005
1040
+ 000008000060031000207090000042000001000003480010000076009000000020007030038625190
1041
+ 000900000002004056031000000005000109010250360004000020000700002100002600026093005
1042
+ 700060000080041000002900041000000010000039287027000300003000090095103006000005070
1043
+ 000001000020000008691200000000000014102506003800020506005000000730000000006319405
1044
+ 900500008300040920068003050000960010000007004007430602700309000000000080050100000
1045
+ 700006003000010000000090400300025790000160000040037050062000537108000600000000019
1046
+ 000000000000001006080465700000007000009000200003159060097000000046700902021043007
1047
+ 000000000005002803060009054000000000093560010020091047000000071030000400072104006
1048
+ 018040060003006091004003002006580000080010023045000000000000006000000130000300289
1049
+ 000000000000700023130009400000043000040800192580900000008002000400100206010070038
1050
+ 000013207014002803000005000000030000569070000023500108006000001000000705290007000
1051
+ 018500002000230004030001059000009010045000096093010200084000005006004000000000070
1052
+ 000000000004260000906057004050000000000080029080900056001008090008500340700603001
1053
+ 200060000070900050809005706000000039003008002040000500000070000090286010106503000
1054
+ 000000000106050300037018604000009000051230700069080000000000080010000003280003160
1055
+ 001200700003600018700000200000050020420108000005002100000004005649001800030900000
1056
+ 500070000063000090700302504076020001001600008050100009040000020000903000007010080
1057
+ 800010405000000060063000700700000000000072039000800000680300904010004380047900006
1058
+ 004000000060523008350100007000050200400208760001006000030000000000095000007800359
1059
+ 060000000307000008180062040003008002000405180000720400010500000708001000200006700
1060
+ 400000000009301000385064007040000000000000368600700200060570000800409006094100000
1061
+ 000070098000600050006000104020000001304906020001027080000000009150300000940005800
1062
+ 001002009074000000932700406800000603000060904300009050000023040700500000000100300
1063
+ 000170430003009001000200005000000000700023004036054700805300000002500000004090608
1064
+ 006700024400005907070010605300006800041000000000002000020001490000000006000049702
1065
+ 000000004207060190600093000000001000002080709100906850806000407000000080700050020
1066
+ 000070500200004063006002080090085000500260007021040000005009004000000630000030970
1067
+ 080010000000007208300040160000700300409300850600000000903002084000930500050070000
1068
+ 000020907000400080006003050000000000090060040000209518000014070081072004060030090
1069
+ 108000500027900000900701800804309000002040103000020009000004300000200950400008000
1070
+ 000560000000070310080031006000000000960080007005000032100000040030017065006304100
1071
+ 000800001000027096007500830040300000300050007095608000001902008004000300000006010
1072
+ 009080000000100000680007019020004007100030040460790000070060003000002090096300020
1073
+ 000000710000009020060571009500000800073800000040300207154020900007000100000045000
1074
+ 010208000000050607000671020300500001001000040060002050000007000027000090605190002
1075
+ 080000000002654010405000000000008041008000020170000860000009000050340089200001604
1076
+ 081094000250000000000070000720010030005000090096380007000008400510000009008100025
1077
+ 003000006120708004504001070008900500040306700300000002000800400001005800000010090
1078
+ 010080000690004002000006500006039240040010050839000060062540000400000100000000020
1079
+ 607080001000000700090000305020010800005000007800006400010930004900005000002801509
1080
+ 000000600960000000084050100003009004200017800850040020506028000020700000400005070
1081
+ 090005006800100900000000000084000000520016000603908005000030500300050800750002140
1082
+ 000007000003056020970010640000000002007020930020000160000000000061500490009640070
1083
+ 400000501005064000009000000000050100001009705050100924004503007000007602200090000
1084
+ 000900004000070800280000103670000000030000201021090060090500000800234007000710080
1085
+ 000004000005007600108500270000006000300000082509048100050000010801090720600070000
1086
+ 097001600604070030530000004010060072000003000008700301000020000040096080070000900
1087
+ 000008006050300010007106002000000904913000020065030007030080000001500800500000043
1088
+ 000000070068000200057902003800010000000800010004000002070204000083090500500130790
1089
+ 000000000050030900004100052206800003508060010031020600000000005000002308000501024
1090
+ 040002300800010000009605020000000000074003060901427000000000100090000230005230074
1091
+ 000080060800007003940250000000020000600301000028670300000000000310000096409008021
1092
+ 060000050902000061300006402400060000030052090500403000089000040000007200000820010
1093
+ 000000000054090067001020048000600000730000004580000030060907000040860079008040003
1094
+ 073090000000480070804000203900300800000050000316900000000005107060700000500019008
1095
+ 050060020040000700000002081060040800000006040004098030086000300000000270097083600
1096
+ 054000800980030600601908040010000000000890700500620008000050060090000073470060000
1097
+ 090004025036000910000000004300000000200670408004500002940150000000700009178090000
1098
+ 003000000008007100560090002005304600000070000320600570030002007002000000670813050
1099
+ 050000000210050903009208460000000000092300580000085600005004009020000040040009706
1100
+ 004609100060050027100402006300000092000003040475000003890006200000000000000907300
1101
+ 080060000002000180070003000000001200043000010051076438020000000038000720006709050
1102
+ 000000500004301060690804203000030450900008702000209006000000000200983000089070000
1103
+ 000000000760045000905030746010000050086001073009002000008000060090080507000020038
1104
+ 000008900603049010000500600004000009230000001050002060007000000302051000508960203
1105
+ 307600002000001804090000570000003049953460008020000005002000000580036000009500000
1106
+ 000005000007060430406008205002000000008074900601800000003500000060001020100327090
1107
+ 010007000000590230050800000006000000200900300590702080104070003000200640029040005
1108
+ 000000000540090003000010764000003000604000201290000030000004016010069307706000045
1109
+ 000000760000008005400260000010050004700080530300006100000001000087000003640035871
1110
+ 000000004000005079090020531000079000060508000070000350000001000015092807200807015
1111
+ 250007001000004050010020367000600000000081030080040706620100070009400008800006003
1112
+