mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
cleanups getting underscore to compile
This commit is contained in:
@@ -24,9 +24,9 @@ prechigh
|
||||
left '&&' '||' AND OR
|
||||
left ':'
|
||||
right '-=' '+=' '/=' '*=' '||=' '&&='
|
||||
nonassoc IF
|
||||
left UNLESS
|
||||
right RETURN THROW FOR WHILE
|
||||
left UNLESS
|
||||
nonassoc IF
|
||||
nonassoc "."
|
||||
preclow
|
||||
|
||||
|
||||
@@ -245,8 +245,10 @@ class CodeNode < Node
|
||||
end
|
||||
|
||||
def compile(indent, scope, opts={})
|
||||
opts = opts.merge(:return => true)
|
||||
code = @body.compile(indent + TAB, Scope.new(scope), opts)
|
||||
scope = Scope.new(scope)
|
||||
@params.each {|id| scope.find(id) }
|
||||
opts = opts.merge(:return => true)
|
||||
code = @body.compile(indent + TAB, scope, opts)
|
||||
"function(#{@params.join(', ')}) {\n#{code}\n#{indent}}"
|
||||
end
|
||||
end
|
||||
@@ -273,66 +275,6 @@ class ArrayNode < Node
|
||||
end
|
||||
end
|
||||
|
||||
# "if-else" control structure. Look at this node if you want to implement other control
|
||||
# structures like while, for, loop, etc.
|
||||
class IfNode < Node
|
||||
FORCE_STATEMENT = [Nodes, ReturnNode, AssignNode, IfNode]
|
||||
|
||||
def initialize(condition, body, else_body=nil, tag=nil)
|
||||
@condition = condition
|
||||
@body = body && body.flatten
|
||||
@else_body = else_body && else_body.flatten
|
||||
@condition = OpNode.new("!", @condition) if tag == :invert
|
||||
end
|
||||
|
||||
def <<(else_body)
|
||||
eb = else_body.flatten
|
||||
@else_body ? @else_body << eb : @else_body = eb
|
||||
self
|
||||
end
|
||||
|
||||
# Rewrite a chain of IfNodes with their switch condition for equality.
|
||||
def rewrite_condition(expression)
|
||||
@condition = OpNode.new("is", expression, @condition)
|
||||
@else_body.rewrite_condition(expression) if chain?
|
||||
self
|
||||
end
|
||||
|
||||
# Rewrite a chain of IfNodes to add a default case as the final else.
|
||||
def add_default(expressions)
|
||||
chain? ? @else_body.add_default(expressions) : @else_body = expressions
|
||||
self
|
||||
end
|
||||
|
||||
def chain?
|
||||
@chain ||= @else_body && @else_body.is_a?(IfNode)
|
||||
end
|
||||
|
||||
def statement?
|
||||
@is_statement ||= (FORCE_STATEMENT.include?(@body.class) || FORCE_STATEMENT.include?(@else_body.class))
|
||||
end
|
||||
|
||||
def line_ending
|
||||
statement? ? '' : ';'
|
||||
end
|
||||
|
||||
def compile(indent, scope, opts={})
|
||||
statement? ? compile_statement(indent, scope, opts) : compile_ternary(indent, scope)
|
||||
end
|
||||
|
||||
def compile_statement(indent, scope, opts)
|
||||
if_part = "if (#{@condition.compile(indent, scope, :no_paren => true)}) {\n#{Nodes.wrap(@body).compile(indent + TAB, scope, opts)}\n#{indent}}"
|
||||
else_part = @else_body ? " else {\n#{Nodes.wrap(@else_body).compile(indent + TAB, scope, opts)}\n#{indent}}" : ''
|
||||
if_part + else_part
|
||||
end
|
||||
|
||||
def compile_ternary(indent, scope)
|
||||
if_part = "#{@condition.compile(indent, scope)} ? #{@body.compile(indent, scope)}"
|
||||
else_part = @else_body ? "#{@else_body.compile(indent, scope)}" : 'null'
|
||||
"#{if_part} : #{else_part}"
|
||||
end
|
||||
end
|
||||
|
||||
class WhileNode < Node
|
||||
def initialize(condition, body)
|
||||
@condition, @body = condition, body
|
||||
@@ -369,6 +311,10 @@ class ForNode < Node
|
||||
true
|
||||
end
|
||||
|
||||
def statement?
|
||||
true
|
||||
end
|
||||
|
||||
def compile(indent, scope, opts={})
|
||||
svar = scope.free_variable
|
||||
ivar = scope.free_variable
|
||||
@@ -439,3 +385,63 @@ class ParentheticalNode < Node
|
||||
opts[:no_paren] ? compiled : "(#{compiled})"
|
||||
end
|
||||
end
|
||||
|
||||
# "if-else" control structure. Look at this node if you want to implement other control
|
||||
# structures like while, for, loop, etc.
|
||||
class IfNode < Node
|
||||
FORCE_STATEMENT = [Nodes, ReturnNode, AssignNode, IfNode, ForNode, ThrowNode, WhileNode]
|
||||
|
||||
def initialize(condition, body, else_body=nil, tag=nil)
|
||||
@condition = condition
|
||||
@body = body && body.flatten
|
||||
@else_body = else_body && else_body.flatten
|
||||
@condition = OpNode.new("!", @condition) if tag == :invert
|
||||
end
|
||||
|
||||
def <<(else_body)
|
||||
eb = else_body.flatten
|
||||
@else_body ? @else_body << eb : @else_body = eb
|
||||
self
|
||||
end
|
||||
|
||||
# Rewrite a chain of IfNodes with their switch condition for equality.
|
||||
def rewrite_condition(expression)
|
||||
@condition = OpNode.new("is", expression, @condition)
|
||||
@else_body.rewrite_condition(expression) if chain?
|
||||
self
|
||||
end
|
||||
|
||||
# Rewrite a chain of IfNodes to add a default case as the final else.
|
||||
def add_default(expressions)
|
||||
chain? ? @else_body.add_default(expressions) : @else_body = expressions
|
||||
self
|
||||
end
|
||||
|
||||
def chain?
|
||||
@chain ||= @else_body && @else_body.is_a?(IfNode)
|
||||
end
|
||||
|
||||
def statement?
|
||||
@is_statement ||= (FORCE_STATEMENT.include?(@body.class) || FORCE_STATEMENT.include?(@else_body.class))
|
||||
end
|
||||
|
||||
def line_ending
|
||||
statement? ? '' : ';'
|
||||
end
|
||||
|
||||
def compile(indent, scope, opts={})
|
||||
statement? ? compile_statement(indent, scope, opts) : compile_ternary(indent, scope)
|
||||
end
|
||||
|
||||
def compile_statement(indent, scope, opts)
|
||||
if_part = "if (#{@condition.compile(indent, scope, :no_paren => true)}) {\n#{Nodes.wrap(@body).compile(indent + TAB, scope, opts)}\n#{indent}}"
|
||||
else_part = @else_body ? " else {\n#{Nodes.wrap(@else_body).compile(indent + TAB, scope, opts)}\n#{indent}}" : ''
|
||||
if_part + else_part
|
||||
end
|
||||
|
||||
def compile_ternary(indent, scope)
|
||||
if_part = "#{@condition.compile(indent, scope)} ? #{@body.compile(indent, scope)}"
|
||||
else_part = @else_body ? "#{@else_body.compile(indent, scope)}" : 'null'
|
||||
"#{if_part} : #{else_part}"
|
||||
end
|
||||
end
|
||||
|
||||
@@ -25,51 +25,69 @@ module_eval(<<'...end grammar.y/module_eval...', 'grammar.y', 297)
|
||||
##### State transition tables begin ###
|
||||
|
||||
clist = [
|
||||
'10,6,199,53,26,33,39,43,48,2,6,178,125,18,21,25,30,174,188,46,1,8,27',
|
||||
'34,17,20,27,34,37,53,49,123,7,12,53,53,27,34,32,162,170,183,198,27,34',
|
||||
'177,185,27,34,187,179,93,96,99,47,57,5,112,14,27,34,38,202,47,10,5,119',
|
||||
'14,26,33,39,43,48,2,6,56,128,18,21,25,30,57,193,46,1,8,57,57,17,20,54',
|
||||
'54,37,60,49,78,7,12,184,27,34,74,32,129,130,93,96,99,101,103,105,106',
|
||||
'108,84,86,90,92,95,98,100,102,104,132,27,34,38,118,47,10,5,116,14,26',
|
||||
'33,39,43,48,2,6,27,34,18,21,25,30,27,34,46,1,8,27,34,17,20,27,34,37',
|
||||
'162,49,60,7,12,138,163,27,34,32,93,96,99,101,103,105,106,108,84,86,90',
|
||||
'92,95,27,34,60,162,174,160,175,27,34,38,,47,10,5,,14,26,33,39,43,48',
|
||||
'2,6,67,68,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,203,27,34,,32',
|
||||
'93,96,99,101,103,105,106,108,84,86,90,92,95,93,96,99,101,103,93,96,99',
|
||||
',38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,',
|
||||
',37,,49,,7,12,191,27,34,,32,93,96,99,101,103,105,106,108,84,86,90,92',
|
||||
'95,93,96,99,101,103,204,27,34,,38,,47,10,5,,14,26,33,39,43,48,2,6,,',
|
||||
'18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,209,27,34,,32,93,96,99,101',
|
||||
'103,105,106,108,84,86,90,92,95,93,96,99,101,103,,,,,38,,47,10,5,,14',
|
||||
'26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,',
|
||||
',32,93,96,99,101,103,105,106,108,84,86,90,92,95,93,96,99,101,103,,,27',
|
||||
'34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20',
|
||||
',,37,,49,,7,12,,,,,32,93,96,99,101,103,105,106,108,84,86,90,92,95,,',
|
||||
',,,,,27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8',
|
||||
',,17,20,,,37,,49,,7,12,,,,,32,93,96,99,101,103,105,106,108,84,86,90',
|
||||
'92,95,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46',
|
||||
'10,6,199,53,26,33,39,43,48,2,6,178,119,18,21,25,30,174,188,46,1,8,27',
|
||||
'34,17,20,27,34,37,53,49,123,7,12,53,53,27,34,32,162,125,183,198,27,34',
|
||||
'163,185,27,34,187,179,204,27,34,47,57,5,112,14,27,34,38,202,47,10,5',
|
||||
'193,14,26,33,39,43,48,2,6,56,128,18,21,25,30,57,132,46,1,8,57,57,17',
|
||||
'20,54,54,37,138,49,78,7,12,184,27,34,74,32,129,130,93,96,99,101,103',
|
||||
'105,106,108,84,86,90,92,95,98,100,102,104,60,27,34,38,118,47,10,5,116',
|
||||
'14,26,33,39,43,48,2,6,27,34,18,21,25,30,27,34,46,1,8,67,68,17,20,27',
|
||||
'34,37,162,49,175,7,12,174,177,27,34,32,93,96,99,101,103,105,106,108',
|
||||
'84,86,90,92,95,27,34,60,162,60,160,93,96,99,38,170,47,10,5,,14,26,33',
|
||||
'39,43,48,2,6,27,34,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,209,27',
|
||||
'34,,32,93,96,99,101,103,105,106,108,84,86,90,92,95,93,96,99,101,103',
|
||||
'191,27,34,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8',
|
||||
',,17,20,,,37,,49,,7,12,93,96,99,,32,93,96,99,101,103,105,106,108,84',
|
||||
'86,90,92,95,93,96,99,101,103,203,27,34,,38,,47,10,5,,14,26,33,39,43',
|
||||
'48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,93,96,99',
|
||||
'101,103,105,106,108,84,86,90,92,95,93,96,99,101,103,,,,,38,,47,10,5',
|
||||
',14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12',
|
||||
',,,,32,93,96,99,101,103,105,106,108,84,86,90,92,95,93,96,99,101,103',
|
||||
',,27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,',
|
||||
'17,20,,,37,,49,,7,12,,,,,32,93,96,99,101,103,105,106,108,84,86,90,92',
|
||||
'95,,,,,,,,27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46',
|
||||
'1,8,,,17,20,,,37,,49,,7,12,,,,,32,93,96,99,101,103,105,106,108,84,86',
|
||||
'90,92,95,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,',
|
||||
',46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10',
|
||||
'5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7',
|
||||
'12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,',
|
||||
',18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,',
|
||||
',,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17',
|
||||
'20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,27,34,38,,47,10,5,,14,26',
|
||||
'33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32',
|
||||
',,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25',
|
||||
',46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,93,96,99,101,103,105,106,108,84',
|
||||
'86,90,92,95,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30',
|
||||
',,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,27,34,38',
|
||||
',47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37',
|
||||
',49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48',
|
||||
'2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,',
|
||||
',,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8',
|
||||
',,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,27,34,38,,47,10,5',
|
||||
',14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12',
|
||||
',,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18',
|
||||
'21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,',
|
||||
'27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17',
|
||||
'20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33',
|
||||
'39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,',
|
||||
',,,,,,,,,,,,,,,,,,27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25',
|
||||
'30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,27,34',
|
||||
'38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,',
|
||||
'37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43',
|
||||
'48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,',
|
||||
',,,,,,,,,,,,27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,',
|
||||
',46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,27,34,38,',
|
||||
'47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,',
|
||||
'49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,27,34,38,,47,10,5,,14,26,33,39,43',
|
||||
'48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,',
|
||||
',,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46',
|
||||
'37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,27,34,38,,47,10,5,,14,26,33',
|
||||
'39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,',
|
||||
',,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30',
|
||||
',,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47',
|
||||
'10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49',
|
||||
',7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2',
|
||||
'6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,',
|
||||
',,,,,,,27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1',
|
||||
'8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14',
|
||||
'26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,',
|
||||
',32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21',
|
||||
'25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38',
|
||||
',47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37',
|
||||
',49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48',
|
||||
'2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,',
|
||||
',,,,,,,,,27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46',
|
||||
'1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5',
|
||||
',14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12',
|
||||
',,,,32,,,,,,,,,,,,,,,,,,,,,27,34,38,,47,10,5,,14,26,33,39,43,48,2,6',
|
||||
',,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,',
|
||||
',,,,,27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8',
|
||||
',,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,27,34,38,,47,10,5',
|
||||
',14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12',
|
||||
',,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18',
|
||||
'21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,',
|
||||
',,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20',
|
||||
@@ -83,36 +101,18 @@ clist = [
|
||||
',,,,27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8',
|
||||
',,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14',
|
||||
'26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,',
|
||||
',32,,,,,,,,,,,,,,,,,,,,,27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18',
|
||||
'21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,',
|
||||
'27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17',
|
||||
'20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,27,34,38,,47,10,5,,14,26',
|
||||
'33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32',
|
||||
',,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25',
|
||||
'30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,',
|
||||
'47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,',
|
||||
'49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48',
|
||||
',32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21',
|
||||
'25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38',
|
||||
',47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37',
|
||||
',49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48',
|
||||
'2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,',
|
||||
',,,,,,,,,27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46',
|
||||
'1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5',
|
||||
',14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12',
|
||||
',,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18',
|
||||
'21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,',
|
||||
',,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20',
|
||||
',,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39',
|
||||
'43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,',
|
||||
',,,,,,,,,,,,,,,27,34,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30',
|
||||
',,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47',
|
||||
'10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49',
|
||||
',7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2',
|
||||
'6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,',
|
||||
',,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,',
|
||||
',17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26',
|
||||
'33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32',
|
||||
',,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25',
|
||||
'30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,',
|
||||
'47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,',
|
||||
'49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48',
|
||||
',,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8',
|
||||
',,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14',
|
||||
'26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,',
|
||||
',32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21',
|
||||
'25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38',
|
||||
',47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37',
|
||||
',49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48',
|
||||
'2,6,,,18,21,25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,',
|
||||
',,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21,25,30,,,46,1,8',
|
||||
',,17,20,,,37,,49,,7,12,,,,,32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14',
|
||||
@@ -136,41 +136,41 @@ clist = [
|
||||
',32,,,,,,,,,,,,,,,,,,,,,,,38,,47,10,5,,14,26,33,39,43,48,2,6,,,18,21',
|
||||
'25,30,,,46,1,8,,,17,20,,,37,,49,,7,12,88,,,97,32,,,,,,,,,,,,,,,,,,87',
|
||||
',,,,38,,47,,5,,14,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100',
|
||||
'102,104,,107,83,85,89,91,94,88,,,97,,,194,,,,,,,,,,,,,,,,87,,,,,,,,',
|
||||
',,,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100,102,104,,107,83',
|
||||
'85,89,91,94,88,,121,97,165,,164,,,,,,,,,,,,,,,,87,,,,,,,88,,121,97,',
|
||||
'102,104,,107,83,85,89,91,94,88,,,97,165,,164,,,,,,,,,,,,,,,,87,,,,,',
|
||||
',,,,,,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100,102,104,,107',
|
||||
'83,85,89,91,94,88,,121,97,,,194,,,,,,,,,,,,,,,,87,,,,,,,88,,121,97,',
|
||||
'93,96,99,101,103,105,106,108,84,86,90,92,95,98,100,102,104,87,107,83',
|
||||
'85,89,91,94,,27,34,88,,93,96,99,101,103,105,106,108,84,86,90,92,95,98',
|
||||
'85,89,91,94,,27,34,,,93,96,99,101,103,105,106,108,84,86,90,92,95,98',
|
||||
'100,102,104,,107,83,85,89,91,94,,27,34,88,,121,97,,93,96,99,101,103',
|
||||
'105,106,108,84,86,90,92,95,98,100,102,104,87,107,83,85,89,91,94,88,',
|
||||
'121,97,,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100,102,104,87',
|
||||
'107,83,85,89,91,94,200,27,34,97,,93,96,99,101,103,105,106,108,84,86',
|
||||
'90,92,95,98,100,102,104,87,107,83,85,89,91,94,211,27,34,97,,93,96,99',
|
||||
'107,83,85,89,91,94,211,27,34,97,,93,96,99,101,103,105,106,108,84,86',
|
||||
'90,92,95,98,100,102,104,87,107,83,85,89,91,94,200,27,34,97,,93,96,99',
|
||||
'101,103,105,106,108,84,86,90,92,95,98,100,102,104,87,107,83,85,89,91',
|
||||
'94,201,-114,,,,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100,102',
|
||||
'104,,107,83,85,89,91,94,212,88,,,97,,93,96,99,101,103,105,106,108,84',
|
||||
'86,90,92,95,98,100,102,104,87,107,83,85,89,91,94,88,,,97,,93,96,99,101',
|
||||
'94,212,,,,,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100,102,104',
|
||||
',107,83,85,89,91,94,201,88,,,97,,93,96,99,101,103,105,106,108,84,86',
|
||||
'90,92,95,98,100,102,104,87,107,83,85,89,91,94,88,,,97,,93,96,99,101',
|
||||
'103,105,106,108,84,86,90,92,95,98,100,102,104,87,107,83,85,89,91,94',
|
||||
'88,,,97,,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100,102,104',
|
||||
'87,107,83,85,89,91,94,88,,,97,,93,96,99,101,103,105,106,108,84,86,90',
|
||||
'92,95,98,100,102,104,87,107,83,85,89,91,94,88,,,97,,93,96,99,101,103',
|
||||
'105,106,108,84,86,90,92,95,98,100,102,104,87,107,83,85,89,91,94,88,',
|
||||
',97,,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100,102,104,87,107',
|
||||
'83,85,89,91,94,-114,,,,,93,96,99,101,103,105,106,108,84,86,90,92,95',
|
||||
'98,100,102,104,,107,83,85,89,91,94,88,,,97,,93,96,99,101,103,105,106',
|
||||
'108,84,86,90,92,95,98,100,102,104,87,107,83,85,89,91,94,88,,,97,,93',
|
||||
'96,99,101,103,105,106,108,84,86,90,92,95,98,100,102,104,87,107,83,85',
|
||||
'89,91,94,-114,,,,,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100',
|
||||
'102,104,,107,83,85,89,91,94,,,,,,93,96,99,101,103,105,106,108,84,86',
|
||||
'90,92,95,98,100,102,104,,107,83,85,89,91,94,93,96,99,101,103,105,106',
|
||||
'108,84,86,90,92,95,98,100,102,104,,107,83,85,89,91,94,93,96,99,101,103',
|
||||
'105,106,108,84,86,90,92,95,98,100,102,104,,107,83,85,89,91,94,93,96',
|
||||
'99,101,103,105,106,108,84,86,90,92,95,98,100,102,104,,107,83,85,89,91',
|
||||
'94,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100,102,104,,107,83',
|
||||
'85,89,91,94,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100,102,104',
|
||||
',107,83,85,89,91,94,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100',
|
||||
'102,104,,107,83,85,89,91,94' ]
|
||||
racc_action_table = arr = Array.new(4817, nil)
|
||||
'87,107,83,85,89,91,94,-114,,,97,,93,96,99,101,103,105,106,108,84,86',
|
||||
'90,92,95,98,100,102,104,87,107,83,85,89,91,94,88,,,97,,93,96,99,101',
|
||||
'103,105,106,108,84,86,90,92,95,98,100,102,104,87,107,83,85,89,91,94',
|
||||
'88,,,97,,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100,102,104',
|
||||
'87,107,83,85,89,91,94,-114,,,97,,93,96,99,101,103,105,106,108,84,86',
|
||||
'90,92,95,98,100,102,104,87,107,83,85,89,91,94,88,,,97,,93,96,99,101',
|
||||
'103,105,106,108,84,86,90,92,95,98,100,102,104,87,107,83,85,89,91,94',
|
||||
'-114,,,97,,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100,102,104',
|
||||
'87,107,83,85,89,91,94,,,,,,93,96,99,101,103,105,106,108,84,86,90,92',
|
||||
'95,98,100,102,104,87,107,83,85,89,91,94,,,,,,93,96,99,101,103,105,106',
|
||||
'108,84,86,90,92,95,98,100,102,104,87,107,83,85,89,91,94,,,,,,93,96,99',
|
||||
'101,103,105,106,108,84,86,90,92,95,98,100,102,104,87,107,83,85,89,91',
|
||||
'94,,,,,,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100,102,104,',
|
||||
'107,83,85,89,91,94,93,96,99,101,103,105,106,108,84,86,90,92,95,98,100',
|
||||
'102,104,,107,83,85,89,91,94,93,96,99,101,103,105,106,108,84,86,90,92',
|
||||
'95,98,100,102,104,,107,83,85,89,91,94,93,96,99,101,103,105,106,108,84',
|
||||
'86,90,92,95,98,100,102,104,,107,83,85,89,91,94,93,96,99,101,103,105',
|
||||
'106,108,84,86,90,92,95,98,100,102,104,,107,83,85,89,91,94' ]
|
||||
racc_action_table = arr = Array.new(4827, nil)
|
||||
idx = 0
|
||||
clist.each do |str|
|
||||
str.split(',', -1).each do |i|
|
||||
@@ -180,36 +180,36 @@ clist = [
|
||||
end
|
||||
|
||||
clist = [
|
||||
'0,21,190,42,0,0,0,0,0,0,0,138,68,0,0,0,0,172,172,0,0,0,66,66,0,0,41',
|
||||
'41,0,72,0,66,0,0,71,4,131,131,0,131,124,169,190,190,190,131,171,171',
|
||||
'171,172,138,154,154,154,21,42,21,53,21,0,0,0,193,0,211,0,60,0,211,211',
|
||||
'211,211,211,211,211,4,74,211,211,211,211,72,179,211,211,211,71,4,211',
|
||||
'211,71,4,211,118,211,37,211,211,169,169,169,29,211,75,75,114,114,114',
|
||||
'114,114,114,114,114,114,114,114,114,114,114,114,114,114,79,59,59,211',
|
||||
'59,211,126,211,59,211,126,126,126,126,126,126,126,77,77,126,126,126',
|
||||
'126,75,75,126,126,126,205,205,126,126,113,113,126,113,126,117,126,126',
|
||||
'87,113,80,80,126,151,151,151,151,151,151,151,151,151,151,151,151,151',
|
||||
'110,110,5,110,127,110,129,126,126,126,,126,7,126,,126,7,7,7,7,7,7,7',
|
||||
'15,15,7,7,7,7,,,7,7,7,,,7,7,,,7,,7,,7,7,195,195,195,,7,137,137,137,137',
|
||||
'137,137,137,137,137,137,137,137,137,159,159,159,159,159,152,152,152',
|
||||
',7,,7,10,7,,7,10,10,10,10,10,10,10,,,10,10,10,10,,,10,10,10,,,10,10',
|
||||
',,10,,10,,10,10,176,176,176,,10,149,149,149,149,149,149,149,149,149',
|
||||
'149,149,149,149,157,157,157,157,157,196,196,196,,10,,10,12,10,,10,12',
|
||||
'12,12,12,12,12,12,,,12,12,12,12,,,12,12,12,,,12,12,,,12,,12,,12,12,206',
|
||||
'206,206,,12,155,155,155,155,155,155,155,155,155,155,155,155,155,135',
|
||||
'135,135,135,135,,,,,12,,12,14,12,,12,14,14,14,14,14,14,14,,,14,14,14',
|
||||
'14,,,14,14,14,,,14,14,,,14,,14,,14,14,,,,,14,143,143,143,143,143,143',
|
||||
'143,143,143,143,143,143,143,156,156,156,156,156,,,14,14,14,,14,120,14',
|
||||
',14,120,120,120,120,120,120,120,,,120,120,120,120,,,120,120,120,,,120',
|
||||
'120,,,120,,120,,120,120,,,,,120,153,153,153,153,153,153,153,153,153',
|
||||
'153,153,153,153,,,,,,,,120,120,120,,120,17,120,,120,17,17,17,17,17,17',
|
||||
'17,,,17,17,17,17,,,17,17,17,,,17,17,,,17,,17,,17,17,,,,,17,141,141,141',
|
||||
'141,141,141,141,141,141,141,141,141,141,,,,,,,,,,17,,17,20,17,,17,20',
|
||||
'20,20,20,20,20,20,,,20,20,20,20,,,20,20,20,,,20,20,,,20,,20,,20,20,',
|
||||
',,,20,146,146,146,146,146,146,146,146,146,146,146,146,146,,,,,,,,,,20',
|
||||
',20,119,20,,20,119,119,119,119,119,119,119,,,119,119,119,119,,,119,119',
|
||||
'119,,,119,119,,,119,,119,,119,119,,,,,119,,,,,,,,,,,,,,,,,,,,,,,119',
|
||||
',119,25,119,,119,25,25,25,25,25,25,25,,,25,25,25,25,,,25,25,25,,,25',
|
||||
'0,21,190,72,0,0,0,0,0,0,0,138,60,0,0,0,0,172,172,0,0,0,66,66,0,0,205',
|
||||
'205,0,42,0,66,0,0,71,4,113,113,0,113,68,169,190,190,190,113,171,171',
|
||||
'171,172,138,196,196,196,21,72,21,53,21,0,0,0,193,0,211,0,179,0,211,211',
|
||||
'211,211,211,211,211,4,74,211,211,211,211,42,79,211,211,211,71,4,211',
|
||||
'211,71,4,211,87,211,37,211,211,169,169,169,29,211,75,75,114,114,114',
|
||||
'114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,59,59,211',
|
||||
'59,211,119,211,59,211,119,119,119,119,119,119,119,80,80,119,119,119',
|
||||
'119,75,75,119,119,119,15,15,119,119,131,131,119,131,119,129,119,119',
|
||||
'127,131,41,41,119,146,146,146,146,146,146,146,146,146,146,146,146,146',
|
||||
'110,110,5,110,118,110,152,152,152,119,124,119,7,119,,119,7,7,7,7,7,7',
|
||||
'7,77,77,7,7,7,7,,,7,7,7,,,7,7,,,7,,7,,7,7,206,206,206,,7,143,143,143',
|
||||
'143,143,143,143,143,143,143,143,143,143,157,157,157,157,157,176,176',
|
||||
'176,,7,,7,10,7,,7,10,10,10,10,10,10,10,,,10,10,10,10,,,10,10,10,,,10',
|
||||
'10,,,10,,10,,10,10,154,154,154,,10,149,149,149,149,149,149,149,149,149',
|
||||
'149,149,149,149,159,159,159,159,159,195,195,195,,10,,10,12,10,,10,12',
|
||||
'12,12,12,12,12,12,,,12,12,12,12,,,12,12,12,,,12,12,,,12,,12,,12,12,',
|
||||
',,,12,151,151,151,151,151,151,151,151,151,151,151,151,151,135,135,135',
|
||||
'135,135,,,,,12,,12,14,12,,12,14,14,14,14,14,14,14,,,14,14,14,14,,,14',
|
||||
'14,14,,,14,14,,,14,,14,,14,14,,,,,14,141,141,141,141,141,141,141,141',
|
||||
'141,141,141,141,141,156,156,156,156,156,,,14,14,14,,14,126,14,,14,126',
|
||||
'126,126,126,126,126,126,,,126,126,126,126,,,126,126,126,,,126,126,,',
|
||||
'126,,126,,126,126,,,,,126,155,155,155,155,155,155,155,155,155,155,155',
|
||||
'155,155,,,,,,,,126,126,126,,126,17,126,,126,17,17,17,17,17,17,17,,,17',
|
||||
'17,17,17,,,17,17,17,,,17,17,,,17,,17,,17,17,,,,,17,137,137,137,137,137',
|
||||
'137,137,137,137,137,137,137,137,,,,,,,,,,17,,17,20,17,,17,20,20,20,20',
|
||||
'20,20,20,,,20,20,20,20,,,20,20,20,,,20,20,,,20,,20,,20,20,,,,,20,153',
|
||||
'153,153,153,153,153,153,153,153,153,153,153,153,,,,,,,,,,20,,20,130',
|
||||
'20,,20,130,130,130,130,130,130,130,,,130,130,130,130,,,130,130,130,',
|
||||
',130,130,,,130,,130,,130,130,,,,,130,,,,,,,,,,,,,,,,,,,,,130,130,130',
|
||||
',130,25,130,,130,25,25,25,25,25,25,25,,,25,25,25,25,,,25,25,25,,,25',
|
||||
'25,,,25,,25,,25,25,,,,,25,,,,,,,,,,,,,,,,,,,,,,,25,,25,202,25,,25,202',
|
||||
'202,202,202,202,202,202,,,202,202,202,202,,,202,202,202,,,202,202,,',
|
||||
'202,,202,,202,202,,,,,202,,,,,,,,,,,,,,,,,,,,,,,202,,202,30,202,,202',
|
||||
@@ -231,120 +231,121 @@ clist = [
|
||||
',161,46,161,,161,46,46,46,46,46,46,46,,,46,46,46,46,,,46,46,46,,,46',
|
||||
'46,,,46,,46,,46,46,,,,,46,,,,,,,,,,,,,,,,,,,,,,,46,,46,47,46,,46,47',
|
||||
'47,47,47,47,47,47,,,47,47,47,47,,,47,47,47,,,47,47,,,47,,47,,47,47,',
|
||||
',,,47,,,,,,,,,,,,,,,,,,,,,,,47,,47,162,47,,47,162,162,162,162,162,162',
|
||||
'162,,,162,162,162,162,,,162,162,162,,,162,162,,,162,,162,,162,162,,',
|
||||
',,162,,,,,,,,,,,,,,,,,,,,,,,162,,162,54,162,,162,54,54,54,54,54,54,54',
|
||||
',,54,54,54,54,,,54,54,54,,,54,54,,,54,,54,,54,54,,,,,54,,,,,,,,,,,,',
|
||||
',,,,,,,,,,54,,54,56,54,,54,56,56,56,56,56,56,56,,,56,56,56,56,,,56,56',
|
||||
'56,,,56,56,,,56,,56,,56,56,,,,,56,,,,,,,,,,,,,,,,,,,,,,,56,,56,57,56',
|
||||
',56,57,57,57,57,57,57,57,,,57,57,57,57,,,57,57,57,,,57,57,,,57,,57,',
|
||||
'57,57,,,,,57,,,,,,,,,,,,,,,,,,,,,,,57,,57,165,57,,57,165,165,165,165',
|
||||
'165,165,165,,,165,165,165,165,,,165,165,165,,,165,165,,,165,,165,,165',
|
||||
'165,,,,,165,,,,,,,,,,,,,,,,,,,,,,,165,,165,188,165,,165,188,188,188',
|
||||
'188,188,188,188,,,188,188,188,188,,,188,188,188,,,188,188,,,188,,188',
|
||||
',188,188,,,,,188,,,,,,,,,,,,,,,,,,,,,188,188,188,,188,108,188,,188,108',
|
||||
'108,108,108,108,108,108,,,108,108,108,108,,,108,108,108,,,108,108,,',
|
||||
'108,,108,,108,108,,,,,108,,,,,,,,,,,,,,,,,,,,,,,108,,108,65,108,,108',
|
||||
'65,65,65,65,65,65,65,,,65,65,65,65,,,65,65,65,,,65,65,,,65,,65,,65,65',
|
||||
',,,,65,,,,,,,,,,,,,,,,,,,,,65,65,65,,65,183,65,,65,183,183,183,183,183',
|
||||
'183,183,,,183,183,183,183,,,183,183,183,,,183,183,,,183,,183,,183,183',
|
||||
',,,,183,,,,,,,,,,,,,,,,,,,,,183,183,183,,183,67,183,,183,67,67,67,67',
|
||||
'67,67,67,,,67,67,67,67,,,67,67,67,,,67,67,,,67,,67,,67,67,,,,,67,,,',
|
||||
',,,,,,,,,,,,,,,,,67,67,67,,67,107,67,,67,107,107,107,107,107,107,107',
|
||||
',,107,107,107,107,,,107,107,107,,,107,107,,,107,,107,,107,107,,,,,107',
|
||||
',,,,,,,,,,,,,,,,,,,,,,107,,107,106,107,,107,106,106,106,106,106,106',
|
||||
'106,,,106,106,106,106,,,106,106,106,,,106,106,,,106,,106,,106,106,,',
|
||||
',,106,,,,,,,,,,,,,,,,,,,,,,,106,,106,105,106,,106,105,105,105,105,105',
|
||||
'105,105,,,105,105,105,105,,,105,105,105,,,105,105,,,105,,105,,105,105',
|
||||
',,,,105,,,,,,,,,,,,,,,,,,,,,,,105,,105,130,105,,105,130,130,130,130',
|
||||
'130,130,130,,,130,130,130,130,,,130,130,130,,,130,130,,,130,,130,,130',
|
||||
'130,,,,,130,,,,,,,,,,,,,,,,,,,,,130,130,130,,130,104,130,,130,104,104',
|
||||
'104,104,104,104,104,,,104,104,104,104,,,104,104,104,,,104,104,,,104',
|
||||
',104,,104,104,,,,,104,,,,,,,,,,,,,,,,,,,,,,,104,,104,103,104,,104,103',
|
||||
'103,103,103,103,103,103,,,103,103,103,103,,,103,103,103,,,103,103,,',
|
||||
'103,,103,,103,103,,,,,103,,,,,,,,,,,,,,,,,,,,,,,103,,103,102,103,,103',
|
||||
'102,102,102,102,102,102,102,,,102,102,102,102,,,102,102,102,,,102,102',
|
||||
',,102,,102,,102,102,,,,,102,,,,,,,,,,,,,,,,,,,,,,,102,,102,178,102,',
|
||||
'102,178,178,178,178,178,178,178,,,178,178,178,178,,,178,178,178,,,178',
|
||||
'178,,,178,,178,,178,178,,,,,178,,,,,,,,,,,,,,,,,,,,,,,178,,178,175,178',
|
||||
',178,175,175,175,175,175,175,175,,,175,175,175,175,,,175,175,175,,,175',
|
||||
',,,47,,,,,,,,,,,,,,,,,,,,,,,47,,47,120,47,,47,120,120,120,120,120,120',
|
||||
'120,,,120,120,120,120,,,120,120,120,,,120,120,,,120,,120,,120,120,,',
|
||||
',,120,,,,,,,,,,,,,,,,,,,,,120,120,120,,120,54,120,,120,54,54,54,54,54',
|
||||
'54,54,,,54,54,54,54,,,54,54,54,,,54,54,,,54,,54,,54,54,,,,,54,,,,,,',
|
||||
',,,,,,,,,,,,,,,,54,,54,56,54,,54,56,56,56,56,56,56,56,,,56,56,56,56',
|
||||
',,56,56,56,,,56,56,,,56,,56,,56,56,,,,,56,,,,,,,,,,,,,,,,,,,,,,,56,',
|
||||
'56,57,56,,56,57,57,57,57,57,57,57,,,57,57,57,57,,,57,57,57,,,57,57,',
|
||||
',57,,57,,57,57,,,,,57,,,,,,,,,,,,,,,,,,,,,,,57,,57,108,57,,57,108,108',
|
||||
'108,108,108,108,108,,,108,108,108,108,,,108,108,108,,,108,108,,,108',
|
||||
',108,,108,108,,,,,108,,,,,,,,,,,,,,,,,,,,,,,108,,108,188,108,,108,188',
|
||||
'188,188,188,188,188,188,,,188,188,188,188,,,188,188,188,,,188,188,,',
|
||||
'188,,188,,188,188,,,,,188,,,,,,,,,,,,,,,,,,,,,188,188,188,,188,107,188',
|
||||
',188,107,107,107,107,107,107,107,,,107,107,107,107,,,107,107,107,,,107',
|
||||
'107,,,107,,107,,107,107,,,,,107,,,,,,,,,,,,,,,,,,,,,,,107,,107,65,107',
|
||||
',107,65,65,65,65,65,65,65,,,65,65,65,65,,,65,65,65,,,65,65,,,65,,65',
|
||||
',65,65,,,,,65,,,,,,,,,,,,,,,,,,,,,65,65,65,,65,183,65,,65,183,183,183',
|
||||
'183,183,183,183,,,183,183,183,183,,,183,183,183,,,183,183,,,183,,183',
|
||||
',183,183,,,,,183,,,,,,,,,,,,,,,,,,,,,183,183,183,,183,67,183,,183,67',
|
||||
'67,67,67,67,67,67,,,67,67,67,67,,,67,67,67,,,67,67,,,67,,67,,67,67,',
|
||||
',,,67,,,,,,,,,,,,,,,,,,,,,67,67,67,,67,106,67,,67,106,106,106,106,106',
|
||||
'106,106,,,106,106,106,106,,,106,106,106,,,106,106,,,106,,106,,106,106',
|
||||
',,,,106,,,,,,,,,,,,,,,,,,,,,,,106,,106,105,106,,106,105,105,105,105',
|
||||
'105,105,105,,,105,105,105,105,,,105,105,105,,,105,105,,,105,,105,,105',
|
||||
'105,,,,,105,,,,,,,,,,,,,,,,,,,,,,,105,,105,104,105,,105,104,104,104',
|
||||
'104,104,104,104,,,104,104,104,104,,,104,104,104,,,104,104,,,104,,104',
|
||||
',104,104,,,,,104,,,,,,,,,,,,,,,,,,,,,,,104,,104,103,104,,104,103,103',
|
||||
'103,103,103,103,103,,,103,103,103,103,,,103,103,103,,,103,103,,,103',
|
||||
',103,,103,103,,,,,103,,,,,,,,,,,,,,,,,,,,,,,103,,103,102,103,,103,102',
|
||||
'102,102,102,102,102,102,,,102,102,102,102,,,102,102,102,,,102,102,,',
|
||||
'102,,102,,102,102,,,,,102,,,,,,,,,,,,,,,,,,,,,,,102,,102,178,102,,102',
|
||||
'178,178,178,178,178,178,178,,,178,178,178,178,,,178,178,178,,,178,178',
|
||||
',,178,,178,,178,178,,,,,178,,,,,,,,,,,,,,,,,,,,,,,178,,178,175,178,',
|
||||
'178,175,175,175,175,175,175,175,,,175,175,175,175,,,175,175,175,,,175',
|
||||
'175,,,175,,175,,175,175,,,,,175,,,,,,,,,,,,,,,,,,,,,175,175,175,,175',
|
||||
'78,175,,175,78,78,78,78,78,78,78,,,78,78,78,78,,,78,78,78,,,78,78,,',
|
||||
'78,,78,,78,78,,,,,78,,,,,,,,,,,,,,,,,,,,,,,78,,78,174,78,,78,174,174',
|
||||
'174,174,174,174,174,,,174,174,174,174,,,174,174,174,,,174,174,,,174',
|
||||
',174,,174,174,,,,,174,,,,,,,,,,,,,,,,,,,,,,,174,,174,101,174,,174,101',
|
||||
'101,101,101,101,101,101,,,101,101,101,101,,,101,101,101,,,101,101,,',
|
||||
'101,,101,,101,101,,,,,101,,,,,,,,,,,,,,,,,,,,,,,101,,101,81,101,,101',
|
||||
'81,81,81,81,81,81,81,,,81,81,81,81,,,81,81,81,,,81,81,,,81,,81,,81,81',
|
||||
',,,,81,,,,,,,,,,,,,,,,,,,,,,,81,,81,83,81,,81,83,83,83,83,83,83,83,',
|
||||
',83,83,83,83,,,83,83,83,,,83,83,,,83,,83,,83,83,,,,,83,,,,,,,,,,,,,',
|
||||
',,,,,,,,,83,,83,84,83,,83,84,84,84,84,84,84,84,,,84,84,84,84,,,84,84',
|
||||
'84,,,84,84,,,84,,84,,84,84,,,,,84,,,,,,,,,,,,,,,,,,,,,,,84,,84,85,84',
|
||||
',84,85,85,85,85,85,85,85,,,85,85,85,85,,,85,85,85,,,85,85,,,85,,85,',
|
||||
'85,85,,,,,85,,,,,,,,,,,,,,,,,,,,,,,85,,85,86,85,,85,86,86,86,86,86,86',
|
||||
'86,,,86,86,86,86,,,86,86,86,,,86,86,,,86,,86,,86,86,,,,,86,,,,,,,,,',
|
||||
',,,,,,,,,,,,,86,,86,99,86,,86,99,99,99,99,99,99,99,,,99,99,99,99,,,99',
|
||||
'99,99,,,99,99,,,99,,99,,99,99,,,,,99,,,,,,,,,,,,,,,,,,,,,,,99,,99,88',
|
||||
'99,,99,88,88,88,88,88,88,88,,,88,88,88,88,,,88,88,88,,,88,88,,,88,,88',
|
||||
',88,88,,,,,88,,,,,,,,,,,,,,,,,,,,,,,88,,88,89,88,,88,89,89,89,89,89',
|
||||
'89,89,,,89,89,89,89,,,89,89,89,,,89,89,,,89,,89,,89,89,,,,,89,,,,,,',
|
||||
',,,,,,,,,,,,,,,,89,,89,90,89,,89,90,90,90,90,90,90,90,,,90,90,90,90',
|
||||
',,90,90,90,,,90,90,,,90,,90,,90,90,,,,,90,,,,,,,,,,,,,,,,,,,,,,,90,',
|
||||
'90,91,90,,90,91,91,91,91,91,91,91,,,91,91,91,91,,,91,91,91,,,91,91,',
|
||||
',91,,91,,91,91,,,,,91,,,,,,,,,,,,,,,,,,,,,,,91,,91,92,91,,91,92,92,92',
|
||||
'92,92,92,92,,,92,92,92,92,,,92,92,92,,,92,92,,,92,,92,,92,92,,,,,92',
|
||||
',,,,,,,,,,,,,,,,,,,,,,92,,92,93,92,,92,93,93,93,93,93,93,93,,,93,93',
|
||||
'93,93,,,93,93,93,,,93,93,,,93,,93,,93,93,,,,,93,,,,,,,,,,,,,,,,,,,,',
|
||||
',,93,,93,94,93,,93,94,94,94,94,94,94,94,,,94,94,94,94,,,94,94,94,,,94',
|
||||
'94,,,94,,94,,94,94,,,,,94,,,,,,,,,,,,,,,,,,,,,,,94,,94,95,94,,94,95',
|
||||
'95,95,95,95,95,95,,,95,95,95,95,,,95,95,95,,,95,95,,,95,,95,,95,95,',
|
||||
',,,95,,,,,,,,,,,,,,,,,,,,,,,95,,95,96,95,,95,96,96,96,96,96,96,96,,',
|
||||
'96,96,96,96,,,96,96,96,,,96,96,,,96,,96,,96,96,,,,,96,,,,,,,,,,,,,,',
|
||||
',,,,,,,,96,,96,97,96,,96,97,97,97,97,97,97,97,,,97,97,97,97,,,97,97',
|
||||
'97,,,97,97,,,97,,97,,97,97,,,,,97,,,,,,,,,,,,,,,,,,,,,,,97,,97,98,97',
|
||||
',97,98,98,98,98,98,98,98,,,98,98,98,98,,,98,98,98,,,98,98,,,98,,98,',
|
||||
'98,98,,,,,98,,,,,,,,,,,,,,,,,,,,,,,98,,98,100,98,,98,100,100,100,100',
|
||||
'100,100,100,,,100,100,100,100,,,100,100,100,,,100,100,,,100,,100,,100',
|
||||
'100,182,,,182,100,,,,,,,,,,,,,,,,,,182,,,,,100,,100,,100,,100,182,182',
|
||||
'182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,,182,182',
|
||||
'182,182,182,182,115,,,115,,,182,,,,,,,,,,,,,,,,115,,,,,,,,,,,,115,115',
|
||||
'115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,,115,115',
|
||||
'115,115,115,115,63,,63,63,115,,115,,,,,,,,,,,,,,,,63,,,,,,,189,,189',
|
||||
'189,,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,189,63,63,63',
|
||||
'63,63,63,,63,63,148,,189,189,189,189,189,189,189,189,189,189,189,189',
|
||||
'189,189,189,189,189,,189,189,189,189,189,189,,189,189,69,,69,69,,148',
|
||||
'148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,69,148',
|
||||
'148,148,148,148,148,70,,70,70,,69,69,69,69,69,69,69,69,69,69,69,69,69',
|
||||
'69,69,69,69,70,69,69,69,69,69,69,192,69,69,192,,70,70,70,70,70,70,70',
|
||||
'70,70,70,70,70,70,70,70,70,70,192,70,70,70,70,70,70,208,70,70,208,,192',
|
||||
'192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,208',
|
||||
'192,192,192,192,192,192,192,139,,,,208,208,208,208,208,208,208,208,208',
|
||||
'208,208,208,208,208,208,208,208,,208,208,208,208,208,208,208,109,,,109',
|
||||
',139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139',
|
||||
'109,139,139,139,139,139,139,181,,,181,,109,109,109,109,109,109,109,109',
|
||||
'109,109,109,109,109,109,109,109,109,181,109,109,109,109,109,109,111',
|
||||
',,111,,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181',
|
||||
'181,111,181,181,181,181,181,181,73,,,73,,111,111,111,111,111,111,111',
|
||||
'111,111,111,111,111,111,111,111,111,111,73,111,111,111,111,111,111,45',
|
||||
',,45,,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,45,73,73,73',
|
||||
'73,73,73,180,,,180,,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45',
|
||||
'45,180,45,45,45,45,45,45,207,,,,,180,180,180,180,180,180,180,180,180',
|
||||
'180,180,180,180,180,180,180,180,,180,180,180,180,180,180,133,,,133,',
|
||||
'207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207',
|
||||
'133,207,207,207,207,207,207,168,,,168,,133,133,133,133,133,133,133,133',
|
||||
'133,133,133,133,133,133,133,133,133,168,133,133,133,133,133,133,213',
|
||||
',,,,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168',
|
||||
'168,,168,168,168,168,168,168,,,,,,213,213,213,213,213,213,213,213,213',
|
||||
'213,213,213,213,213,213,213,213,,213,213,213,213,213,213,136,136,136',
|
||||
'136,136,136,136,136,136,136,136,136,136,136,136,136,136,,136,136,136',
|
||||
'136,136,136,134,134,134,134,134,134,134,134,134,134,134,134,134,134',
|
||||
'134,134,134,,134,134,134,134,134,134,140,140,140,140,140,140,140,140',
|
||||
'140,140,140,140,140,140,140,140,140,,140,140,140,140,140,140,145,145',
|
||||
'145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,,145,145',
|
||||
'145,145,145,145,142,142,142,142,142,142,142,142,142,142,142,142,142',
|
||||
'142,142,142,142,,142,142,142,142,142,142,158,158,158,158,158,158,158',
|
||||
'158,158,158,158,158,158,158,158,158,158,,158,158,158,158,158,158' ]
|
||||
racc_action_check = arr = Array.new(4817, nil)
|
||||
'174,175,,175,174,174,174,174,174,174,174,,,174,174,174,174,,,174,174',
|
||||
'174,,,174,174,,,174,,174,,174,174,,,,,174,,,,,,,,,,,,,,,,,,,,,,,174',
|
||||
',174,101,174,,174,101,101,101,101,101,101,101,,,101,101,101,101,,,101',
|
||||
'101,101,,,101,101,,,101,,101,,101,101,,,,,101,,,,,,,,,,,,,,,,,,,,,,',
|
||||
'101,,101,78,101,,101,78,78,78,78,78,78,78,,,78,78,78,78,,,78,78,78,',
|
||||
',78,78,,,78,,78,,78,78,,,,,78,,,,,,,,,,,,,,,,,,,,,,,78,,78,100,78,,78',
|
||||
'100,100,100,100,100,100,100,,,100,100,100,100,,,100,100,100,,,100,100',
|
||||
',,100,,100,,100,100,,,,,100,,,,,,,,,,,,,,,,,,,,,,,100,,100,165,100,',
|
||||
'100,165,165,165,165,165,165,165,,,165,165,165,165,,,165,165,165,,,165',
|
||||
'165,,,165,,165,,165,165,,,,,165,,,,,,,,,,,,,,,,,,,,,,,165,,165,81,165',
|
||||
',165,81,81,81,81,81,81,81,,,81,81,81,81,,,81,81,81,,,81,81,,,81,,81',
|
||||
',81,81,,,,,81,,,,,,,,,,,,,,,,,,,,,,,81,,81,83,81,,81,83,83,83,83,83',
|
||||
'83,83,,,83,83,83,83,,,83,83,83,,,83,83,,,83,,83,,83,83,,,,,83,,,,,,',
|
||||
',,,,,,,,,,,,,,,,83,,83,84,83,,83,84,84,84,84,84,84,84,,,84,84,84,84',
|
||||
',,84,84,84,,,84,84,,,84,,84,,84,84,,,,,84,,,,,,,,,,,,,,,,,,,,,,,84,',
|
||||
'84,85,84,,84,85,85,85,85,85,85,85,,,85,85,85,85,,,85,85,85,,,85,85,',
|
||||
',85,,85,,85,85,,,,,85,,,,,,,,,,,,,,,,,,,,,,,85,,85,86,85,,85,86,86,86',
|
||||
'86,86,86,86,,,86,86,86,86,,,86,86,86,,,86,86,,,86,,86,,86,86,,,,,86',
|
||||
',,,,,,,,,,,,,,,,,,,,,,86,,86,162,86,,86,162,162,162,162,162,162,162',
|
||||
',,162,162,162,162,,,162,162,162,,,162,162,,,162,,162,,162,162,,,,,162',
|
||||
',,,,,,,,,,,,,,,,,,,,,,162,,162,88,162,,162,88,88,88,88,88,88,88,,,88',
|
||||
'88,88,88,,,88,88,88,,,88,88,,,88,,88,,88,88,,,,,88,,,,,,,,,,,,,,,,,',
|
||||
',,,,,88,,88,89,88,,88,89,89,89,89,89,89,89,,,89,89,89,89,,,89,89,89',
|
||||
',,89,89,,,89,,89,,89,89,,,,,89,,,,,,,,,,,,,,,,,,,,,,,89,,89,90,89,,89',
|
||||
'90,90,90,90,90,90,90,,,90,90,90,90,,,90,90,90,,,90,90,,,90,,90,,90,90',
|
||||
',,,,90,,,,,,,,,,,,,,,,,,,,,,,90,,90,91,90,,90,91,91,91,91,91,91,91,',
|
||||
',91,91,91,91,,,91,91,91,,,91,91,,,91,,91,,91,91,,,,,91,,,,,,,,,,,,,',
|
||||
',,,,,,,,,91,,91,92,91,,91,92,92,92,92,92,92,92,,,92,92,92,92,,,92,92',
|
||||
'92,,,92,92,,,92,,92,,92,92,,,,,92,,,,,,,,,,,,,,,,,,,,,,,92,,92,93,92',
|
||||
',92,93,93,93,93,93,93,93,,,93,93,93,93,,,93,93,93,,,93,93,,,93,,93,',
|
||||
'93,93,,,,,93,,,,,,,,,,,,,,,,,,,,,,,93,,93,94,93,,93,94,94,94,94,94,94',
|
||||
'94,,,94,94,94,94,,,94,94,94,,,94,94,,,94,,94,,94,94,,,,,94,,,,,,,,,',
|
||||
',,,,,,,,,,,,,94,,94,95,94,,94,95,95,95,95,95,95,95,,,95,95,95,95,,,95',
|
||||
'95,95,,,95,95,,,95,,95,,95,95,,,,,95,,,,,,,,,,,,,,,,,,,,,,,95,,95,96',
|
||||
'95,,95,96,96,96,96,96,96,96,,,96,96,96,96,,,96,96,96,,,96,96,,,96,,96',
|
||||
',96,96,,,,,96,,,,,,,,,,,,,,,,,,,,,,,96,,96,99,96,,96,99,99,99,99,99',
|
||||
'99,99,,,99,99,99,99,,,99,99,99,,,99,99,,,99,,99,,99,99,,,,,99,,,,,,',
|
||||
',,,,,,,,,,,,,,,,99,,99,98,99,,99,98,98,98,98,98,98,98,,,98,98,98,98',
|
||||
',,98,98,98,,,98,98,,,98,,98,,98,98,,,,,98,,,,,,,,,,,,,,,,,,,,,,,98,',
|
||||
'98,97,98,,98,97,97,97,97,97,97,97,,,97,97,97,97,,,97,97,97,,,97,97,',
|
||||
',97,,97,,97,97,115,,,115,97,,,,,,,,,,,,,,,,,,115,,,,,97,,97,,97,,97',
|
||||
'115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115',
|
||||
',115,115,115,115,115,115,182,,,182,115,,115,,,,,,,,,,,,,,,,182,,,,,',
|
||||
',,,,,,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182',
|
||||
'182,,182,182,182,182,182,182,63,,63,63,,,182,,,,,,,,,,,,,,,,63,,,,,',
|
||||
',189,,189,189,,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,189',
|
||||
'63,63,63,63,63,63,,63,63,,,189,189,189,189,189,189,189,189,189,189,189',
|
||||
'189,189,189,189,189,189,,189,189,189,189,189,189,,189,189,69,,69,69',
|
||||
',158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158',
|
||||
'69,158,158,158,158,158,158,70,,70,70,,69,69,69,69,69,69,69,69,69,69',
|
||||
'69,69,69,69,69,69,69,70,69,69,69,69,69,69,208,69,69,208,,70,70,70,70',
|
||||
'70,70,70,70,70,70,70,70,70,70,70,70,70,208,70,70,70,70,70,70,192,70',
|
||||
'70,192,,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208',
|
||||
'208,208,192,208,208,208,208,208,208,208,,,,,192,192,192,192,192,192',
|
||||
'192,192,192,192,192,192,192,192,192,192,192,,192,192,192,192,192,192',
|
||||
'192,181,,,181,,136,136,136,136,136,136,136,136,136,136,136,136,136,136',
|
||||
'136,136,136,181,136,136,136,136,136,136,45,,,45,,181,181,181,181,181',
|
||||
'181,181,181,181,181,181,181,181,181,181,181,181,45,181,181,181,181,181',
|
||||
'181,111,,,111,,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,111',
|
||||
'45,45,45,45,45,45,139,,,139,,111,111,111,111,111,111,111,111,111,111',
|
||||
'111,111,111,111,111,111,111,139,111,111,111,111,111,111,133,,,133,,139',
|
||||
'139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,139,133',
|
||||
'139,139,139,139,139,139,180,,,180,,133,133,133,133,133,133,133,133,133',
|
||||
'133,133,133,133,133,133,133,133,180,133,133,133,133,133,133,207,,,207',
|
||||
',180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180',
|
||||
'207,180,180,180,180,180,180,168,,,168,,207,207,207,207,207,207,207,207',
|
||||
'207,207,207,207,207,207,207,207,207,168,207,207,207,207,207,207,213',
|
||||
',,213,,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168',
|
||||
'168,213,168,168,168,168,168,168,,,,,,213,213,213,213,213,213,213,213',
|
||||
'213,213,213,213,213,213,213,213,213,73,213,213,213,213,213,213,,,,,',
|
||||
'73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,148,73,73,73,73,73',
|
||||
'73,,,,,,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148',
|
||||
'148,148,109,148,148,148,148,148,148,,,,,,109,109,109,109,109,109,109',
|
||||
'109,109,109,109,109,109,109,109,109,109,,109,109,109,109,109,109,140',
|
||||
'140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,,140',
|
||||
'140,140,140,140,140,134,134,134,134,134,134,134,134,134,134,134,134',
|
||||
'134,134,134,134,134,,134,134,134,134,134,134,142,142,142,142,142,142',
|
||||
'142,142,142,142,142,142,142,142,142,142,142,,142,142,142,142,142,142',
|
||||
'145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145',
|
||||
',145,145,145,145,145,145' ]
|
||||
racc_action_check = arr = Array.new(4827, nil)
|
||||
idx = 0
|
||||
clist.each do |str|
|
||||
str.split(',', -1).each do |i|
|
||||
@@ -355,27 +356,27 @@ clist = [
|
||||
|
||||
racc_action_pointer = [
|
||||
-2, nil, nil, nil, 22, 170, nil, 190, nil, nil,
|
||||
254, nil, 318, nil, 382, 140, nil, 510, nil, nil,
|
||||
254, nil, 318, nil, 382, 87, nil, 510, nil, nil,
|
||||
574, -11, nil, nil, nil, 702, nil, nil, nil, 101,
|
||||
830, nil, 894, nil, nil, nil, 958, 26, 1086, nil,
|
||||
nil, -35, -10, nil, nil, 4468, 1342, 1406, nil, nil,
|
||||
nil, 103, 16, nil, nil, 4381, 1342, 1406, nil, nil,
|
||||
nil, nil, nil, 45, 1534, nil, 1598, 1662, nil, 62,
|
||||
13, nil, nil, 4116, nil, 1918, -39, 2046, -3, 4206,
|
||||
4235, 21, 16, 4439, 76, 84, nil, 78, 2686, 62,
|
||||
103, 2878, nil, 2942, 3006, 3070, 3134, 150, 3262, 3326,
|
||||
3390, 3454, 3518, 3582, 3646, 3710, 3774, 3838, 3902, 3198,
|
||||
3966, 2814, 2494, 2430, 2366, 2238, 2174, 2110, 1854, 4352,
|
||||
119, 4410, nil, 93, 69, 4058, nil, 147, 81, 638,
|
||||
446, nil, nil, nil, -20, nil, 126, 156, nil, 174,
|
||||
2302, -25, nil, 4555, 4661, 336, 4637, 195, -14, 4323,
|
||||
4685, 515, 4733, 387, nil, 4709, 579, nil, 4177, 259,
|
||||
nil, 131, 213, 451, 15, 323, 400, 272, 4757, 208,
|
||||
nil, 1278, 1470, nil, nil, 1726, nil, nil, 4584, 38,
|
||||
nil, -14, -11, nil, 2750, 2622, 230, nil, 2558, 70,
|
||||
4497, 4381, 4000, 1982, nil, nil, nil, nil, 1790, 4145,
|
||||
-18, nil, 4264, 37, nil, 166, 253, 1214, nil, 1150,
|
||||
1022, nil, 766, nil, nil, 89, 294, 4526, 4293, nil,
|
||||
nil, 62, nil, 4613, nil ]
|
||||
-41, nil, nil, 4116, nil, 1918, -39, 2046, 25, 4206,
|
||||
4235, 21, -10, 4613, 76, 84, nil, 142, 2686, 22,
|
||||
78, 2878, nil, 2942, 3006, 3070, 3134, 81, 3262, 3326,
|
||||
3390, 3454, 3518, 3582, 3646, 3710, 3774, 3966, 3902, 3838,
|
||||
2750, 2622, 2366, 2302, 2238, 2174, 2110, 1854, 1726, 4671,
|
||||
119, 4410, nil, -25, 69, 4000, nil, 110, 172, 126,
|
||||
1470, nil, nil, nil, 130, nil, 446, 134, nil, 147,
|
||||
638, 93, nil, 4468, 4719, 336, 4323, 515, -14, 4439,
|
||||
4695, 387, 4743, 195, nil, 4767, 131, nil, 4642, 259,
|
||||
nil, 323, 150, 579, 254, 451, 400, 208, 4177, 272,
|
||||
nil, 1278, 3198, nil, nil, 2814, nil, nil, 4555, 38,
|
||||
nil, -14, -11, nil, 2558, 2494, 189, nil, 2430, 54,
|
||||
4497, 4352, 4058, 1982, nil, nil, nil, nil, 1790, 4145,
|
||||
-18, nil, 4293, 37, nil, 253, -9, 1214, nil, 1150,
|
||||
1022, nil, 766, nil, nil, -35, 166, 4526, 4264, nil,
|
||||
nil, 62, nil, 4584, nil ]
|
||||
|
||||
racc_action_default = [
|
||||
-1, -32, -31, -20, -9, -81, -69, -114, -33, -10,
|
||||
|
||||
Reference in New Issue
Block a user