riml 0.2.9 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/lib/class_map.rb CHANGED
@@ -4,7 +4,7 @@ module Riml
4
4
  # Map of {"ClassName" => ClassDefinitionNode}
5
5
  # Can also query object for superclass of a named class, etc...
6
6
  #
7
- # Ex : classes["SomeClass"].superclass_name => "SomeClassBase"
7
+ # Ex : class_map.superclass("g:SomeClass") => "g:SomeClassBase"
8
8
  class ClassMap
9
9
  def initialize
10
10
  @map = {}
@@ -17,15 +17,17 @@ module Riml
17
17
 
18
18
  def []=(key, val)
19
19
  ensure_key_is_string!(key)
20
- if @map[key]
21
- raise ClassRedefinitionError, "can't redefine class #{key.inspect}."
20
+ if class_node = @map[key]
21
+ if !class_node.instance_variable_get("@registered_state") &&
22
+ !val.instance_variable_get("@registered_state")
23
+ raise ClassRedefinitionError, "can't redefine class #{key.inspect}."
24
+ end
22
25
  end
23
26
  @map[key] = val
24
27
  end
25
28
 
26
29
  def superclass(key)
27
- ensure_key_is_string!(key)
28
- super_key = @map[key].superclass_name
30
+ super_key = self[key].superclass_name
29
31
  self[super_key]
30
32
  end
31
33
 
data/lib/compiler.rb CHANGED
@@ -3,7 +3,7 @@ require File.expand_path('../nodes', __FILE__)
3
3
  # visits AST nodes and translates them into VimL
4
4
  module Riml
5
5
  class Compiler
6
- attr_accessor :parser
6
+ attr_accessor :parser, :output_dir
7
7
 
8
8
  # Base abstract visitor
9
9
  class Visitor
@@ -433,7 +433,7 @@ module Riml
433
433
  set_modifier(node)
434
434
  bang = node.bang
435
435
  params = process_parameters!(node)
436
- declaration = "function#{bang} #{node.scope_modifier}"
436
+ declaration = "function#{bang} #{node.sid}#{node.scope_modifier}"
437
437
  declaration <<
438
438
  if node.name.respond_to?(:variable)
439
439
  node.name.accept(visitor_for_node(node.name))
@@ -527,16 +527,17 @@ module Riml
527
527
  node.compiled_output << ", " unless last_arg?(node.arguments, i)
528
528
  end
529
529
  node.compiled_output << ")" unless node.builtin_command?
530
-
531
530
  unless node.descendant_of_control_structure? ||
532
531
  node.descendant_of_call_node? ||
532
+ node.descendant_of_object_instantiation_node? ||
533
533
  node.descendant_of_list_node? ||
534
534
  node.descendant_of_list_or_dict_get_node? ||
535
535
  node.descendant_of_operator_node? ||
536
536
  node.descendant_of_wrap_in_parens_node? ||
537
537
  node.descendant_of_sublist_node? ||
538
538
  node.descendant_of_dict_get_dot_node? ||
539
- node.descendant_of_dictionary_node?
539
+ node.descendant_of_dictionary_node? ||
540
+ node.descendant_of_curly_brace_part?
540
541
  node.force_newline = true
541
542
  end
542
543
  end
@@ -747,13 +748,11 @@ module Riml
747
748
  end
748
749
 
749
750
  def compile_include(source, from_file)
750
- root_node = parser.parse(source, parser.ast_rewriter, from_file)
751
+ root_node = parser.parse(source, parser.ast_rewriter, from_file, true)
751
752
  output = compile(root_node)
752
753
  (Riml::INCLUDE_COMMENT_FMT % from_file) + output
753
754
  end
754
755
 
755
- attr_accessor :output_dir
756
-
757
756
  # compiles nodes into output code
758
757
  def compile(root_node)
759
758
  root_node.extend CompilerAccessible
data/lib/errors.rb CHANGED
@@ -7,6 +7,7 @@ module Riml
7
7
 
8
8
  FileNotFound = Class.new(RimlError)
9
9
  IncludeFileLoop = Class.new(RimlError)
10
+ SourceFileLoop = Class.new(RimlError)
10
11
  IncludeNotTopLevel = Class.new(RimlError)
11
12
  # bad user arguments to Riml functions
12
13
  UserArgumentError = Class.new(RimlError)
@@ -0,0 +1,3 @@
1
+ function! s:SID()
2
+ return matchstr(expand('<sfile>'), '<SNR>\zs\d\+\ze_SID$')
3
+ endfunction
data/lib/grammar.y CHANGED
@@ -248,9 +248,10 @@ rule
248
248
  | /* nothing */ { result = nil }
249
249
  ;
250
250
 
251
- ScopeOrSID:
252
- Scope { val[0] }
253
- | '<' IDENTIFIER '>' { result = Riml::SIDNode.new(val[1]) }
251
+ # [SID, scope_modifier]
252
+ SIDAndScope:
253
+ Scope { result = [ nil, val[0] ] }
254
+ | '<' IDENTIFIER '>' Scope { result = [ Riml::SIDNode.new(val[1]), val[3] ] }
254
255
  ;
255
256
 
256
257
  ArgList:
@@ -378,12 +379,12 @@ rule
378
379
  ;
379
380
 
380
381
  # Method definition
381
- # [scope_modifier, name, parameters, keyword, expressions]
382
+ # [SID, scope_modifier, name, parameters, keyword, expressions]
382
383
  Def:
383
- FunctionType ScopeOrSID DefCallIdentifier DefKeywords Block END { result = Riml.const_get(val[0]).new('!', val[1], val[2], [], val[3], val[4]) }
384
- | FunctionType ScopeOrSID DefCallIdentifier '(' ParamList ')' DefKeywords Block END { result = Riml.const_get(val[0]).new('!', val[1], val[2], val[4], val[6], val[7]) }
385
- | FunctionType ScopeOrSID DefCallIdentifier '(' SPLAT ')' DefKeywords Block END { result = Riml.const_get(val[0]).new('!', val[1], val[2], [val[4]], val[6], val[7]) }
386
- | FunctionType ScopeOrSID DefCallIdentifier '(' ParamList ',' SPLAT ')' DefKeywords Block END { result = Riml.const_get(val[0]).new('!', val[1], val[2], val[4] << val[6], val[8], val[9]) }
384
+ FunctionType SIDAndScope DefCallIdentifier DefKeywords Block END { result = Riml.const_get(val[0]).new('!', val[1][0], val[1][1], val[2], [], val[3], val[4]) }
385
+ | FunctionType SIDAndScope DefCallIdentifier '(' ParamList ')' DefKeywords Block END { result = Riml.const_get(val[0]).new('!', val[1][0], val[1][1], val[2], val[4], val[6], val[7]) }
386
+ | FunctionType SIDAndScope DefCallIdentifier '(' SPLAT ')' DefKeywords Block END { result = Riml.const_get(val[0]).new('!', val[1][0], val[1][1], val[2], [val[4]], val[6], val[7]) }
387
+ | FunctionType SIDAndScope DefCallIdentifier '(' ParamList ',' SPLAT ')' DefKeywords Block END { result = Riml.const_get(val[0]).new('!', val[1][0], val[1][1], val[2], val[4] << val[6], val[8], val[9]) }
387
388
  ;
388
389
 
389
390
  FunctionType:
@@ -507,8 +508,8 @@ rule
507
508
  ;
508
509
 
509
510
  ClassDefinition:
510
- CLASS IDENTIFIER Block END { result = Riml::ClassDefinitionNode.new(val[1], nil, val[2]) }
511
- | CLASS IDENTIFIER '<' IDENTIFIER Block END { result = Riml::ClassDefinitionNode.new(val[1], val[3], val[4]) }
511
+ CLASS Scope IDENTIFIER Block END { result = Riml::ClassDefinitionNode.new(val[1], val[2], nil, val[3]) }
512
+ | CLASS Scope IDENTIFIER '<' Scope IDENTIFIER Block END { result = Riml::ClassDefinitionNode.new(val[1], val[2], (val[4] || ClassDefinitionNode::DEFAULT_SCOPE_MODIFIER) + val[5], val[6]) }
512
513
  ;
513
514
 
514
515
  ObjectInstantiation:
@@ -536,7 +537,7 @@ end
536
537
  attr_accessor :ast_rewriter
537
538
 
538
539
  # parses tokens or code into output nodes
539
- def parse(object, ast_rewriter = Riml::AST_Rewriter.new, include_file = nil)
540
+ def parse(object, ast_rewriter = Riml::AST_Rewriter.new, filename = nil, included = false)
540
541
  if tokens?(object)
541
542
  @tokens = object
542
543
  elsif code?(object)
@@ -559,7 +560,7 @@ end
559
560
  @ast_rewriter ||= ast_rewriter
560
561
  return ast unless @ast_rewriter
561
562
  @ast_rewriter.ast = ast
562
- @ast_rewriter.rewrite(include_file)
563
+ @ast_rewriter.rewrite(filename, included)
563
564
  end
564
565
 
565
566
  # get the next token from either the list of tokens provided, or
data/lib/nodes.rb CHANGED
@@ -242,7 +242,7 @@ module Riml
242
242
  end
243
243
 
244
244
  class SIDNode < LiteralNode
245
- def initialize(ident)
245
+ def initialize(ident = 'SID')
246
246
  Riml.warn("expected #{ident} to be SID") unless ident == 'SID'
247
247
  super('<SID>')
248
248
  end
@@ -381,7 +381,7 @@ module Riml
381
381
  files.each do |basename, full_path|
382
382
  begin
383
383
  yield basename, full_path
384
- rescue Riml::IncludeFileLoop
384
+ rescue Riml::IncludeFileLoop, Riml::SourceFileLoop
385
385
  arguments.delete_if { |arg| arg.value == basename }
386
386
  end
387
387
  end
@@ -530,7 +530,8 @@ module Riml
530
530
  include Walkable
531
531
 
532
532
  def interpolated?
533
- GetVariableNode === value || GetSpecialVariableNode === value || nested?
533
+ GetVariableNode === value || GetSpecialVariableNode === value ||
534
+ CallNode === value || nested?
534
535
  end
535
536
 
536
537
  def nested?
@@ -559,12 +560,14 @@ module Riml
559
560
  end
560
561
 
561
562
  # Method definition.
562
- class DefNode < Struct.new(:bang, :scope_modifier, :name, :parameters, :keywords, :expressions)
563
+ class DefNode < Struct.new(:bang, :sid, :scope_modifier, :name, :parameters, :keywords, :expressions)
563
564
  include Visitable
564
565
  include Indentable
565
566
  include FullyNameable
566
567
  include Walkable
567
568
 
569
+ attr_accessor :private_function
570
+
568
571
  def initialize(*args)
569
572
  super
570
573
  # max number of arguments in viml
@@ -612,10 +615,10 @@ module Riml
612
615
 
613
616
  def keywords
614
617
  if name.include?('.')
615
- (super.to_a + ['dict']).uniq
618
+ (super.to_a + ['dict'])
616
619
  else
617
620
  super.to_a
618
- end
621
+ end.uniq
619
622
  end
620
623
 
621
624
  def defined_on_dictionary?
@@ -626,6 +629,8 @@ module Riml
626
629
  name.include?('#')
627
630
  end
628
631
 
632
+ alias sid? sid
633
+
629
634
  def super_node
630
635
  expressions.nodes.detect {|n| SuperNode === n}
631
636
  end
@@ -642,7 +647,11 @@ module Riml
642
647
  end
643
648
 
644
649
  def children
645
- children = [expressions]
650
+ children = if sid?
651
+ [sid, expressions]
652
+ else
653
+ [expressions]
654
+ end
646
655
  children.concat(default_param_nodes)
647
656
  end
648
657
 
@@ -702,7 +711,7 @@ module Riml
702
711
 
703
712
  class DefMethodNode < DefNode
704
713
  def to_def_node
705
- def_node = DefNode.new(bang, 'g:', name, parameters, ['dict'], expressions)
714
+ def_node = DefNode.new(bang, sid, 's:', name, parameters, ['dict'], expressions)
706
715
  def_node.parent = parent
707
716
  def_node
708
717
  end
@@ -786,7 +795,7 @@ module Riml
786
795
  end
787
796
 
788
797
  def children
789
- [expressions]
798
+ [condition, body]
790
799
  end
791
800
  end
792
801
 
@@ -890,21 +899,37 @@ module Riml
890
899
 
891
900
  end
892
901
 
893
- class ClassDefinitionNode < Struct.new(:name, :superclass_name, :expressions)
902
+ class ClassDefinitionNode < Struct.new(:scope_modifier, :name, :superclass_name, :expressions)
894
903
  include Visitable
895
904
  include Walkable
896
905
 
897
906
  FUNCTIONS = lambda {|expr| DefNode === expr}
907
+ DEFAULT_SCOPE_MODIFIER = 's:'
908
+
909
+ def initialize(*)
910
+ super
911
+ unless scope_modifier
912
+ self.scope_modifier = DEFAULT_SCOPE_MODIFIER
913
+ end
914
+ # registered with ClassMap
915
+ @registered_state = false
916
+ end
898
917
 
899
918
  def superclass?
900
919
  not superclass_name.nil?
901
920
  end
902
921
 
922
+ def full_name
923
+ scope_modifier + name
924
+ end
925
+
926
+ alias superclass_full_name superclass_name
927
+
903
928
  def constructor
904
929
  expressions.nodes.detect do |n|
905
930
  next(false) unless DefNode === n && (n.name == 'initialize' || n.name == constructor_name)
906
931
  if n.instance_of?(DefMethodNode)
907
- Riml.warn("class #{name.inspect} has an initialize function declared with 'defm'. Please use 'def'.")
932
+ Riml.warn("class #{full_name.inspect} has an initialize function declared with 'defm'. Please use 'def'.")
908
933
  new_node = n.to_def_node
909
934
  new_node.keywords = nil
910
935
  n.replace_with(new_node)
@@ -925,10 +950,18 @@ module Riml
925
950
  "#{name}Constructor"
926
951
  end
927
952
 
953
+ def constructor_full_name
954
+ "#{scope_modifier}#{name}Constructor"
955
+ end
956
+
928
957
  def constructor_obj_name
929
958
  name[0].downcase + name[1..-1] + "Obj"
930
959
  end
931
960
 
961
+ def private_function_names
962
+ @private_function_names ||= []
963
+ end
964
+
932
965
  def children
933
966
  [expressions]
934
967
  end
data/lib/parser.rb CHANGED
@@ -13,13 +13,13 @@ require 'racc/parser.rb'
13
13
  module Riml
14
14
  class Parser < Racc::Parser
15
15
 
16
- module_eval(<<'...end grammar.y/module_eval...', 'grammar.y', 534)
16
+ module_eval(<<'...end grammar.y/module_eval...', 'grammar.y', 535)
17
17
  # This code will be put as-is in the parser class
18
18
 
19
19
  attr_accessor :ast_rewriter
20
20
 
21
21
  # parses tokens or code into output nodes
22
- def parse(object, ast_rewriter = Riml::AST_Rewriter.new, include_file = nil)
22
+ def parse(object, ast_rewriter = Riml::AST_Rewriter.new, filename = nil, included = false)
23
23
  if tokens?(object)
24
24
  @tokens = object
25
25
  elsif code?(object)
@@ -42,7 +42,7 @@ module_eval(<<'...end grammar.y/module_eval...', 'grammar.y', 534)
42
42
  @ast_rewriter ||= ast_rewriter
43
43
  return ast unless @ast_rewriter
44
44
  @ast_rewriter.ast = ast
45
- @ast_rewriter.rewrite(include_file)
45
+ @ast_rewriter.rewrite(filename, included)
46
46
  end
47
47
 
48
48
  # get the next token from either the list of tokens provided, or
@@ -64,98 +64,97 @@ module_eval(<<'...end grammar.y/module_eval...', 'grammar.y', 534)
64
64
  ##### State transition tables begin ###
65
65
 
66
66
  clist = [
67
- '131,58,266,201,132,360,393,394,201,201,387,365,423,142,55,189,86,367',
68
- '366,385,385,135,36,45,47,46,36,48,43,44,319,388,36,424,264,58,49,67',
69
- '36,59,408,263,407,60,61,125,126,128,123,124,127,111,112,113,117,118',
67
+ '131,58,419,201,132,284,393,394,201,201,424,264,387,142,55,189,86,301',
68
+ '263,385,385,302,36,45,47,46,36,48,43,44,370,425,36,388,364,58,49,67',
69
+ '36,59,366,365,266,60,61,125,126,128,123,124,127,111,112,113,117,118',
70
70
  '119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104',
71
- '103,129,130,97,96,133,167,77,37,169,36,78,37,79,82,80,81,84,37,101,83',
72
- '36,72,73,37,56,55,85,86,74,36,87,57,75,36,45,47,46,88,48,43,44,62,69',
73
- '70,-110,269,58,49,67,76,59,352,201,201,60,61,314,267,358,255,298,135',
74
- '316,385,385,262,298,301,185,37,261,302,149,148,-166,-166,-166,-166,201',
75
- '143,37,201,355,48,-42,-42,48,370,269,37,145,28,371,37,51,77,53,160,351',
76
- '78,145,79,82,80,81,84,145,267,83,160,72,73,160,56,55,85,86,74,160,87',
77
- '57,75,36,45,47,46,88,48,43,44,62,69,70,-41,-41,58,49,67,76,59,160,-43',
78
- '-43,60,61,197,157,-163,-163,-163,-163,-47,-47,372,-191,267,373,-44,-44',
79
- '160,-84,-84,-84,-84,-166,-166,-166,-166,248,143,262,157,349,260,-110',
80
- '261,58,49,67,348,28,-98,37,51,77,53,145,269,78,-97,79,82,80,81,84,51',
81
- '145,83,160,72,73,376,56,55,85,86,74,160,87,57,75,36,45,47,46,88,48,43',
82
- '44,62,69,70,-110,160,58,49,67,76,59,347,-98,248,60,61,-190,135,-46,-46',
83
- '-97,160,-45,-45,125,126,128,135,393,412,125,126,128,123,124,127,-164',
84
- '-164,-164,-164,181,182,183,184,259,125,126,128,123,124,127,28,248,37',
85
- '51,77,53,149,148,78,346,79,82,80,81,84,145,342,83,201,72,73,101,56,55',
86
- '85,86,74,101,87,57,75,36,45,47,46,88,48,43,44,62,69,70,101,379,58,49',
87
- '67,76,59,58,49,67,60,61,304,380,-163,-163,-163,-163,58,49,67,160,339',
88
- '381,202,382,58,145,205,206,208,331,135,145,327,101,305,101,101,201,252',
89
- '125,126,128,123,124,127,28,201,37,51,201,53,138,125,126,128,123,124',
90
- '127,111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105,107',
91
- '106,108,110,109,102,104,103,129,130,97,96,133,101,77,253,313,312,78',
92
- '405,79,82,80,81,84,406,101,83,311,72,73,409,56,55,85,86,74,410,87,57',
93
- '75,36,45,47,46,88,48,43,44,62,69,70,-110,361,58,49,67,76,59,413,137',
94
- '415,60,61,308,416,417,418,201,420,421,297,352,257,352,135,95,259,259',
95
- '135,432,410,259,101,284,248,135,436,305,352,438,89,145,125,126,128,123',
96
- '124,127,28,285,37,51,284,53,441,125,126,128,123,124,127,111,112,113',
97
- '117,118,119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109',
98
- '102,104,103,129,130,97,96,133,101,77,,,,78,,79,82,80,81,84,,101,83,',
99
- '72,73,,56,55,85,86,74,,87,57,75,36,45,47,46,88,48,43,44,62,69,70,,,58',
100
- '49,67,76,59,,,,60,61,,,125,126,128,123,124,127,111,112,113,117,118,119',
101
- '114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104,103',
102
- '129,130,97,28,,37,51,77,53,,,78,,79,82,80,81,84,101,,83,,72,73,,56,55',
103
- '85,86,74,,87,57,75,,45,47,46,88,48,43,44,62,69,70,-110,,58,49,67,76',
104
- '59,,,,60,61,125,126,128,123,124,127,111,112,113,117,118,119,114,115',
105
- '116,120,121,122,98,100,99,105,107,106,108,110,109,102,104,103,129,130',
106
- '97,96,133,28,,77,51,,53,78,-230,79,82,80,81,84,101,,83,,72,73,,56,55',
107
- '85,86,74,,87,57,75,36,45,47,46,88,48,43,44,62,69,70,,,58,49,67,76,59',
108
- ',,,60,61,,395,,,,,,,,,,,,,,,,,,,,,,,,,,,,125,126,128,123,124,127,28',
109
- ',37,51,,53,125,126,128,123,124,127,111,112,113,117,118,119,114,115,116',
110
- '120,121,122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,97',
111
- '96,133,390,101,,,,,,,142,55,,86,,101,87,,,,45,47,46,,48,43,44,62,,,',
112
- ',58,49,67,,59,,,,60,61,125,126,128,123,124,127,111,112,113,117,118,119',
113
- '114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104,103',
114
- '129,130,97,96,133,28,,,51,,53,,251,142,55,,86,,101,87,,,,45,47,46,,48',
115
- '43,44,62,,,,,58,49,67,,59,,,,60,61,142,55,,86,,,87,,,,45,47,46,,48,43',
116
- '44,62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,53,,251,45,47,46',
117
- ',48,43,44,62,,,,,58,49,67,,59,,,,60,61,142,55,28,86,,51,87,53,335,,45',
71
+ '103,129,130,97,96,133,178,77,37,51,36,78,37,79,82,80,81,84,37,101,83',
72
+ '269,72,73,37,56,55,85,86,74,36,87,57,75,36,45,47,46,88,48,43,44,62,69',
73
+ '70,360,157,58,49,67,76,59,201,201,359,60,61,308,-84,-84,-84,-84,314',
74
+ '385,385,145,248,201,316,409,37,408,48,160,36,149,148,-166,-166,-166',
75
+ '-166,305,143,255,262,135,157,-42,-42,261,37,201,28,357,37,51,48,53,160',
76
+ '125,126,128,123,124,127,111,112,113,117,118,119,114,115,116,120,121',
77
+ '122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,97,96,133',
78
+ '37,77,-41,-41,160,78,145,79,82,80,81,84,145,101,83,267,72,73,269,56',
79
+ '55,85,86,74,298,87,57,75,36,45,47,46,88,48,43,44,62,69,70,-110,298,58',
80
+ '49,67,76,59,-97,371,262,60,61,260,267,261,372,267,135,-47,-47,149,148',
81
+ '269,248,-43,-43,-190,375,160,145,259,160,259,-166,-166,-166,-166,160',
82
+ '143,-110,197,58,49,67,58,49,67,28,145,37,51,77,53,160,259,78,-97,79',
83
+ '82,80,81,84,145,-191,83,160,72,73,160,56,55,85,86,74,160,87,57,75,135',
84
+ '45,47,46,88,48,43,44,62,69,70,-110,51,58,49,67,76,59,248,135,259,60',
85
+ '61,-98,351,-163,-163,-163,-163,125,126,128,123,124,127,-44,-44,-164',
86
+ '-164,-164,-164,181,182,183,184,58,49,67,-45,-45,125,126,128,123,124',
87
+ '127,-46,-46,28,257,77,51,284,53,78,-230,79,82,80,81,84,350,-98,83,378',
88
+ '72,73,101,56,55,85,86,74,379,87,57,75,36,45,47,46,88,48,43,44,62,69',
89
+ '70,101,380,58,49,67,76,59,160,338,253,60,61,393,413,125,126,128,123',
90
+ '124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105',
91
+ '107,106,108,110,109,102,104,103,129,130,97,28,381,37,51,77,53,252,354',
92
+ '78,58,79,82,80,81,84,101,145,83,101,72,73,135,56,55,85,86,74,135,87',
93
+ '57,75,36,45,47,46,88,48,43,44,62,69,70,-110,208,58,49,67,76,59,206,205',
94
+ '58,60,61,304,58,201,-163,-163,-163,-163,297,201,348,201,403,58,311,312',
95
+ '185,313,406,407,318,410,411,347,414,305,135,416,417,418,125,126,128',
96
+ '123,124,127,28,285,37,51,201,53,421,125,126,128,123,124,127,111,112',
97
+ '113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106,108,110',
98
+ '109,102,104,103,129,130,97,96,133,101,77,422,346,351,78,248,79,82,80',
99
+ '81,84,351,101,83,345,72,73,145,56,55,85,86,74,101,87,57,75,36,45,47',
100
+ '46,88,48,43,44,62,69,70,-110,145,58,49,67,76,59,201,101,434,60,61,411',
101
+ '101,125,126,128,123,124,127,111,112,113,117,118,119,114,115,116,120',
102
+ '121,122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,341,28',
103
+ '138,37,51,77,53,137,135,78,438,79,82,80,81,84,101,439,83,351,72,73,441',
104
+ '56,55,85,86,74,95,87,57,75,36,45,47,46,88,48,43,44,62,69,70,326,330',
105
+ '58,49,67,76,59,89,444,,60,61,,,125,126,128,123,124,127,111,112,113,117',
106
+ '118,119,114,115,116,120,121,122,,,,,,,,,,125,126,128,123,124,127,28',
107
+ ',37,51,77,53,,,78,,79,82,80,81,84,101,,83,,72,73,,56,55,85,86,74,,87',
108
+ '57,75,36,45,47,46,88,48,43,44,62,69,70,101,,58,49,67,76,59,,,,60,61',
109
+ ',395,,,,,,,,,,,,,,,,,,,,,,,,,,,,125,126,128,123,124,127,28,,37,51,,53',
110
+ '125,126,128,123,124,127,111,112,113,117,118,119,114,115,116,120,121',
111
+ '122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,97,96,133',
112
+ '390,101,,,,,,,142,55,,86,,101,87,,,,45,47,46,,48,43,44,62,,,,,58,49',
113
+ '67,,59,,,,60,61,125,126,128,123,124,127,111,112,113,117,118,119,114',
114
+ '115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104,103,129',
115
+ '130,97,96,133,28,,,51,,53,,251,142,55,,86,,101,87,,,,45,47,46,,48,43',
116
+ '44,62,,,,,58,49,67,,59,,,,60,61,142,55,,86,,,87,,,,45,47,46,,48,43,44',
117
+ '62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,53,,251,45,47,46,',
118
+ '48,43,44,62,,,,,58,49,67,,59,,,,60,61,142,55,28,86,,51,87,53,334,,45',
118
119
  '47,46,,48,43,44,62,,,-110,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87',
119
120
  '53,,,45,47,46,,48,43,44,62,,,-110,,58,49,67,,59,,,,60,61,142,55,28,86',
120
- ',51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,142,55',
121
- '28,86,,51,87,53,,163,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61',
122
- '142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60',
123
- '61,,142,55,161,86,,51,87,53,,,45,47,46,,48,43,44,62,,,-110,,58,49,67',
124
- ',59,,,,60,61,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49',
125
- '67,,59,,,,60,61,,142,55,172,86,,51,87,53,,,45,47,46,,48,43,44,62,,,',
126
- ',58,49,67,,59,,,,60,61,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62',
127
- ',,,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,53,,,45,47,46,,48,43',
128
- '44,62,,,,,58,49,67,,59,,,,60,61,142,55,28,86,,51,87,53,,,45,47,46,,48',
129
- '43,44,62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,53,,,45,47,46',
130
- ',48,43,44,62,,,,,58,49,67,,59,,,,60,61,142,55,28,86,,51,87,53,,,45,47',
131
- '46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,53,,',
132
- '45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,142,55,28,86,,51,87',
133
- '53,,,45,47,46,,48,43,44,62,125,126,128,,58,49,67,,59,,,,60,61,,142,55',
134
- '28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,-110,,58,49,67,,59,,,,60,61',
135
- ',101,28,-113,,51,,53,125,126,128,123,124,127,111,112,113,117,118,119',
136
- '114,115,116,120,121,122,,,125,126,128,142,55,,86,28,,87,51,,53,45,47',
137
- '46,,48,43,44,62,,,,,58,49,67,101,59,,,,60,61,142,55,,86,,,87,,,,45,47',
138
- '46,101,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,53',
139
- ',,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,142,55,28,86,,51,87',
140
- '53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86,',
141
- '51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,142,55,28',
142
- '86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,142',
143
- '55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,-110,,58,49,67,,59,,,,60',
121
+ ',51,87,53,,,45,47,46,,48,43,44,62,,,-110,,58,49,67,,59,,,,60,61,,142',
122
+ '55,28,86,,51,87,53,,163,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60',
144
123
  '61,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,125,126,128,,58,49',
145
- '67,,59,,,,60,61,,142,55,28,86,,51,87,278,,,45,47,46,,48,43,44,62,,,',
124
+ '67,,59,,,,60,61,,142,55,161,86,,51,87,53,,,45,47,46,,48,43,44,62,,,-110',
146
125
  ',58,49,67,,59,,,,60,61,,101,28,-113,,51,,53,125,126,128,123,124,127',
147
126
  '111,112,113,117,118,119,114,115,116,120,121,122,,,125,126,128,142,55',
148
- ',86,28,,87,51,,53,45,47,46,,48,43,44,62,,,-110,,58,49,67,101,59,,,,60',
149
- '61,142,55,,86,,,87,,,,45,47,46,101,48,43,44,62,,,,,58,49,67,,59,,,,60',
127
+ ',86,172,,87,51,,53,45,47,46,,48,43,44,62,,,,,58,49,67,101,59,,,,60,61',
128
+ '142,55,,86,,,87,,,,45,47,46,101,48,43,44,62,,,,,58,49,67,,59,,,,60,61',
129
+ ',142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,',
130
+ '60,61,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59',
131
+ ',,,60,61,,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,125,126,128',
132
+ ',58,49,67,,59,,,,60,61,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62',
133
+ ',,,,58,49,67,,59,,,,60,61,,,101,28,-113,,51,,53,,125,126,128,123,124',
134
+ '127,111,112,113,117,118,119,114,115,116,120,121,122,125,126,128,142',
135
+ '55,,86,28,-113,87,51,,53,45,47,46,,48,43,44,62,,,,,58,49,67,,59,101',
136
+ ',,60,61,142,55,,86,,,87,,,,45,47,46,101,48,43,44,62,125,126,128,,58',
137
+ '49,67,,59,,,,60,61,,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,',
138
+ ',,,58,49,67,,59,,,,60,61,,101,28,-113,,51,,53,125,126,128,123,124,127',
139
+ '111,112,113,117,118,119,114,115,116,120,121,122,,,,,,142,55,,86,28,',
140
+ '87,51,,53,45,47,46,,48,43,44,62,,,-110,,58,49,67,101,59,,,,60,61,142',
141
+ '55,,86,,,87,,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,142',
142
+ '55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61',
143
+ '142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60',
150
144
  '61,,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59',
151
- ',,,60,61,,,28,-113,,51,,53,125,126,128,123,124,127,111,112,113,117,118',
152
- '119,114,115,116,120,121,122,,,,,,142,55,,86,28,,87,51,333,53,45,47,46',
153
- ',48,43,44,62,,,,,58,49,67,101,59,,,,60,61,142,55,,86,,,87,,,,45,47,46',
154
- ',48,43,44,62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,53,,,45',
155
- '47,46,,48,43,44,62,,,-110,,58,49,67,,59,,,,60,61,,,28,-113,,51,,53,125',
156
- '126,128,123,124,127,111,112,113,117,118,119,114,115,116,120,121,122',
157
- ',,,,,142,55,,86,28,,87,51,,53,45,47,46,,48,43,44,62,,,,,58,49,67,101',
158
- '59,,,,60,61,142,55,,86,,,87,,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59',
145
+ ',,,60,61,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67',
146
+ ',59,,,,60,61,,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58',
147
+ '49,67,,59,,,,60,61,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,',
148
+ ',,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44',
149
+ '62,,,,,58,49,67,,59,,,,60,61,142,55,28,86,,51,87,53,,,45,47,46,,48,43',
150
+ '44,62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,53,,,45,47,46,',
151
+ '48,43,44,62,,,,,58,49,67,,59,,,,60,61,142,55,28,86,,51,87,53,,,45,47',
152
+ '46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,,,28,,,51,332,53,,125,126',
153
+ '128,123,124,127,111,112,113,117,118,119,114,115,116,120,121,122,,,,142',
154
+ '55,,86,28,,87,51,,53,45,47,46,,48,43,44,62,,,,,58,49,67,,59,101,,,60',
155
+ '61,142,55,,86,,,87,,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61',
156
+ ',142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,',
157
+ '60,61,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59',
159
158
  ',,,60,61,,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67',
160
159
  ',59,,,,60,61,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49',
161
160
  '67,,59,,,,60,61,,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,',
@@ -197,66 +196,56 @@ clist = [
197
196
  '46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,53,,',
198
197
  '45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,142,55,28,86,,51,87',
199
198
  '53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86,',
200
- '51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,,28,-113',
201
- ',51,,53,125,126,128,123,124,127,111,112,113,117,118,119,114,115,116',
202
- '120,121,122,,,,,,142,55,,86,28,-113,87,51,,53,45,47,46,,48,43,44,62',
203
- ',,,,58,49,67,101,59,,,,60,61,142,55,,86,,,87,,,,45,47,46,,48,43,44,62',
199
+ '51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,142,55,28',
200
+ '86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,,,28',
201
+ '-113,,51,,53,,125,126,128,123,124,127,111,112,113,117,118,119,114,115',
202
+ '116,120,121,122,,,,142,55,,86,28,-113,87,51,,53,45,47,46,,48,43,44,62',
203
+ ',,,,58,49,67,,59,101,,,60,61,142,55,,86,,,87,,,,45,47,46,,48,43,44,62',
204
204
  ',,,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,53,,,45,47,46,,48,43',
205
205
  '44,62,,,,,58,49,67,,59,,,,60,61,142,55,28,86,,51,87,53,,,45,47,46,,48',
206
- '43,44,62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,53,,,45,47,46',
207
- ',48,43,44,62,,,,,58,49,67,,59,,,,60,61,142,55,28,86,,51,87,53,,,45,47',
206
+ '43,44,62,,,-110,,58,49,67,,59,,,,60,61,,,,28,-113,,51,,53,,125,126,128',
207
+ '123,124,127,111,112,113,117,118,119,114,115,116,120,121,122,,,,142,55',
208
+ ',86,28,,87,51,,278,45,47,46,,48,43,44,62,,,-110,,58,49,67,,59,101,,',
209
+ '60,61,142,55,,86,,,87,,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60',
210
+ '61,,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59',
211
+ ',,,60,61,,,28,-113,,51,,53,125,126,128,123,124,127,111,112,113,117,118',
212
+ '119,114,115,116,120,121,122,,,,,,142,55,,86,28,-113,87,51,,53,45,47',
213
+ '46,,48,43,44,62,,,,,58,49,67,101,59,,,,60,61,142,55,,86,,,87,,,,45,47',
208
214
  '46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,53,,',
209
- '45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,,28,-113,,51,,53,125',
215
+ '45,47,46,,48,43,44,62,,,-110,,58,49,67,,59,,,,60,61,142,55,28,86,,51',
216
+ '87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86',
217
+ ',51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,142,55,28',
218
+ '86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,142',
219
+ '55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61',
220
+ ',,28,-113,,51,,53,125,126,128,123,124,127,111,112,113,117,118,119,114',
221
+ '115,116,120,121,122,,,,,,142,55,,86,28,,87,51,,278,45,47,46,,48,43,44',
222
+ '62,,,,,58,49,67,101,59,,,,60,61,142,55,,86,125,126,128,123,124,127,45',
223
+ '47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,142,55,28,86,,51,,53,',
224
+ ',45,47,46,,48,43,44,62,,101,,,58,49,67,,59,,,,60,61,142,55,178,86,,51',
225
+ ',,,,45,47,46,,48,43,44,,,,,,58,49,67,,59,,,,60,61,,,,178,,,51,,,,,,',
226
+ ',,,,,,,,201,,,,,,125,126,128,123,124,127,,,167,,,169,125,126,128,123',
227
+ '124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105',
228
+ '107,106,108,110,109,102,104,103,129,130,97,96,133,201,101,,,,,125,126',
229
+ '128,123,124,127,,101,,,,,125,126,128,123,124,127,111,112,113,117,118',
230
+ '119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104',
231
+ '103,129,130,97,96,133,201,101,,,,,125,126,128,123,124,127,,101,,,,,125',
210
232
  '126,128,123,124,127,111,112,113,117,118,119,114,115,116,120,121,122',
211
- ',,,,,142,55,,86,28,,87,51,,53,45,47,46,,48,43,44,62,,,,,58,49,67,101',
212
- '59,,,,60,61,142,55,,86,,,87,,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59',
213
- ',,,60,61,,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,,,58,49,67',
214
- ',59,,,,60,61,142,55,28,86,,51,87,53,,,45,47,46,,48,43,44,62,,,-110,',
215
- '58,49,67,,59,,,,60,61,,142,55,28,86,,51,87,278,,,45,47,46,,48,43,44',
216
- '62,,,,,58,49,67,,59,,,,60,61,142,55,28,86,,51,87,53,,,45,47,46,,48,43',
217
- '44,62,,,,,58,49,67,,59,,,,60,61,,,,28,-113,,51,,53,,125,126,128,123',
218
- '124,127,111,112,113,117,118,119,114,115,116,120,121,122,,,,142,55,,86',
219
- '28,-113,87,51,,53,45,47,46,,48,43,44,62,,,,,58,49,67,,59,101,,,60,61',
220
- '142,55,,86,,,,,,,45,47,46,,48,43,44,62,,,,,58,49,67,,59,,,,60,61,,,',
221
- '28,-113,,51,,53,,142,55,,86,125,126,128,123,124,127,45,47,46,,48,43',
222
- '44,,,,,,58,49,67,178,59,,51,,60,61,142,55,,86,125,126,128,123,124,127',
223
- '45,47,46,,48,43,44,62,,,101,,58,49,67,,59,,,,60,61,,,,178,,,51,,,,,',
224
- ',,,,,,,,101,201,,,,,,125,126,128,123,124,127,,,178,,,51,125,126,128',
225
- '123,124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100,99',
226
- '105,107,106,108,110,109,102,104,103,129,130,97,96,133,434,101,,,,,125',
227
- '126,128,123,124,127,,101,,,,,125,126,128,123,124,127,111,112,113,117',
228
- '118,119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102',
229
- '104,103,129,130,97,96,133,201,101,,,,,125,126,128,123,124,127,,101,',
230
- ',,,125,126,128,123,124,127,111,112,113,117,118,119,114,115,116,120,121',
231
- '122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,97,96,133',
232
- '201,101,,,,,125,126,128,123,124,127,,101,,,,,125,126,128,123,124,127',
233
- '111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106',
234
- '108,110,109,102,104,103,129,130,97,96,133,201,101,,,,,125,126,128,123',
235
- '124,127,,101,,,,,125,126,128,123,124,127,111,112,113,117,118,119,114',
236
- '115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104,103,129',
237
- '130,97,96,133,201,101,,,,,,,,,,,,101,,,,,125,126,128,123,124,127,111',
233
+ '98,100,99,105,107,106,108,110,109,102,104,103,129,130,97,96,133,201',
234
+ '101,,,,,125,126,128,123,124,127,,101,,,,,125,126,128,123,124,127,111',
238
235
  '112,113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106,108',
239
- '110,109,102,104,103,129,130,97,96,133,430,,,,,,,,,,,,,101,,,,,125,126',
240
- '128,123,124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100',
241
- '99,105,107,106,108,110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,',
242
- ',,101,125,126,128,123,124,127,111,112,113,117,118,119,114,115,116,120',
243
- '121,122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,97,96',
244
- '133,,,,,,,,,,,,,265,101,125,126,128,123,124,127,111,112,113,117,118',
236
+ '110,109,102,104,103,129,130,97,96,133,201,101,,,,,125,126,128,123,124',
237
+ '127,,101,,,,,125,126,128,123,124,127,111,112,113,117,118,119,114,115',
238
+ '116,120,121,122,98,100,99,105,107,106,108,110,109,102,104,103,129,130',
239
+ '97,96,133,436,101,,,,,125,126,128,123,124,127,,101,,,,,125,126,128,123',
240
+ '124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105',
241
+ '107,106,108,110,109,102,104,103,129,130,97,96,133,431,101,,,,,,,,,,',
242
+ ',101,,,,,125,126,128,123,124,127,111,112,113,117,118,119,114,115,116',
243
+ '120,121,122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,97',
244
+ '96,133,,,,,,,,,,,,,,101,125,126,128,123,124,127,111,112,113,117,118',
245
245
  '119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104',
246
- '103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123,124,127,111,112',
247
- '113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106,108,110',
248
- '109,102,104,103,129,130,,,,,,,,,,,,,,,,,101,125,126,128,123,124,127',
249
- '111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106',
250
- '108,110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128',
251
- '123,124,127,111,112,113,117,118,119,114,115,116,120,121,122,125,126',
252
- '128,123,124,127,111,112,113,117,118,119,114,115,116,120,121,122,,,,',
253
- ',,,,,,,,101,,,,,,,,,,,,,,,,,,101,125,126,128,123,124,127,111,112,113',
254
- '117,118,119,114,115,116,120,121,122,125,126,128,123,124,127,111,112',
255
- '113,117,118,119,114,115,116,120,121,122,,,,,,,,,,,,,101,,,,,,,,,,,,',
256
- ',,,,,101,125,126,128,123,124,127,111,112,113,117,118,119,114,115,116',
257
- '120,121,122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,101,125,126,128,123,124,127',
258
- '111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106',
259
- '108,110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128',
246
+ '103,129,130,97,96,133,,,,,,,256,,,,,,,101,125,126,128,123,124,127,111',
247
+ '112,113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106,108',
248
+ '110,109,102,104,103,129,130,97,96,133,,,,,,,344,,,,,,,101,125,126,128',
260
249
  '123,124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100,99',
261
250
  '105,107,106,108,110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,,,,101',
262
251
  '125,126,128,123,124,127,111,112,113,117,118,119,114,115,116,120,121',
@@ -264,46 +253,39 @@ clist = [
264
253
  ',,,,,,,,,,,,,101,125,126,128,123,124,127,111,112,113,117,118,119,114',
265
254
  '115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104,103,129',
266
255
  '130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123,124,127,111,112,113,117',
267
- '118,119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102',
268
- '104,103,,,,,,,,,,,,,,,,,,,101,125,126,128,123,124,127,111,112,113,117',
269
- '118,119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102',
270
- '104,103,,,,,,,,,,,,,,,,,,,101,125,126,128,123,124,127,111,112,113,117',
271
- '118,119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102',
272
- '104,103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123,124,127,111',
256
+ '118,119,114,115,116,120,121,122,125,126,128,123,124,127,111,112,113',
257
+ '117,118,119,114,115,116,120,121,122,,,,,,,,,,,,,101,,,,,,,,,,,,,,,,',
258
+ ',101,125,126,128,123,124,127,111,112,113,117,118,119,114,115,116,120',
259
+ '121,122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,101,125,126,128,123,124,127,111',
273
260
  '112,113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106,108',
274
- '110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123',
275
- '124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105',
276
- '107,106,108,110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,,,322,101',
261
+ '110,109,102,104,103,129,130,97,96,133,,,,,,,344,,,,,,,101,125,126,128',
262
+ '123,124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100,99',
263
+ '105,107,106,108,110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,,,,101',
277
264
  '125,126,128,123,124,127,111,112,113,117,118,119,114,115,116,120,121',
278
265
  '122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,97,96,133',
279
266
  ',,,,,,,,,,,,,101,125,126,128,123,124,127,111,112,113,117,118,119,114',
280
- '115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104,103,129',
281
- '130,97,96,133,,,,,,,,,,325,,,326,101,125,126,128,123,124,127,111,112',
267
+ '115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104,103,,',
268
+ ',,,,,,,,,,,,,,,,101,125,126,128,123,124,127,111,112,113,117,118,119',
269
+ '114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104,103',
270
+ ',,,,,,,,,,,,,,,,,,101,125,126,128,123,124,127,111,112,113,117,118,119',
271
+ '114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104,103',
272
+ '129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123,124,127,111,112,113',
273
+ '117,118,119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109',
274
+ '102,104,103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123,124,127',
275
+ '111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106',
276
+ '108,110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,,,321,101,125,126',
277
+ '128,123,124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100',
278
+ '99,105,107,106,108,110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,',
279
+ ',,101,125,126,128,123,124,127,111,112,113,117,118,119,114,115,116,120',
280
+ '121,122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,97,96',
281
+ '133,,,,,,,,,,324,,,325,101,125,126,128,123,124,127,111,112,113,117,118',
282
+ '119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104',
283
+ '103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123,124,127,111,112',
282
284
  '113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106,108,110',
283
285
  '109,102,104,103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123,124',
284
286
  '127,111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105,107',
285
287
  '106,108,110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126',
286
288
  '128,123,124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100',
287
- '99,105,107,106,108,110,109,102,104,103,129,130,97,96,133,,,,,,,345,',
288
- ',,,,,101,125,126,128,123,124,127,111,112,113,117,118,119,114,115,116',
289
- '120,121,122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,97',
290
- '96,133,,,,,,,,,,375,,,326,101,125,126,128,123,124,127,111,112,113,117',
291
- '118,119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102',
292
- '104,103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123,124,127,111',
293
- '112,113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106,108',
294
- '110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123',
295
- '124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105',
296
- '107,106,108,110,109,102,104,103,129,130,97,96,133,,,,,,,256,,,,,,,101',
297
- '125,126,128,123,124,127,111,112,113,117,118,119,114,115,116,120,121',
298
- '122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,97,96,133',
299
- ',,,,,,,,,,,,,101,125,126,128,123,124,127,111,112,113,117,118,119,114',
300
- '115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104,103,129',
301
- '130,97,96,133,,,,,,,,,,378,,,,101,125,126,128,123,124,127,111,112,113',
302
- '117,118,119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109',
303
- '102,104,103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123,124,127',
304
- '111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106',
305
- '108,110,109,102,104,103,129,130,97,96,133,,,,,,,256,,,,,,,101,125,126',
306
- '128,123,124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100',
307
289
  '99,105,107,106,108,110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,',
308
290
  ',,101,125,126,128,123,124,127,111,112,113,117,118,119,114,115,116,120',
309
291
  '121,122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,97,96',
@@ -313,8 +295,26 @@ clist = [
313
295
  '117,118,119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109',
314
296
  '102,104,103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123,124,127',
315
297
  '111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106',
316
- '108,110,109,102,104,103,129,130,97,96,133,,,,,,,345,,,,,,,101' ]
317
- racc_action_table = arr = ::Array.new(6308, nil)
298
+ '108,110,109,102,104,103,129,130,97,96,133,,,,,,,256,,,,,,,101,125,126',
299
+ '128,123,124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100',
300
+ '99,105,107,106,108,110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,',
301
+ ',,101,125,126,128,123,124,127,111,112,113,117,118,119,114,115,116,120',
302
+ '121,122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,97,96',
303
+ '133,,,,,,,,,,377,,,,101,125,126,128,123,124,127,111,112,113,117,118',
304
+ '119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104',
305
+ '103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123,124,127,111,112',
306
+ '113,117,118,119,114,115,116,120,121,122,98,100,99,105,107,106,108,110',
307
+ '109,102,104,103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126,128,123,124',
308
+ '127,111,112,113,117,118,119,114,115,116,120,121,122,98,100,99,105,107',
309
+ '106,108,110,109,102,104,103,129,130,97,96,133,,,,,,,,,,,,,,101,125,126',
310
+ '128,123,124,127,111,112,113,117,118,119,114,115,116,120,121,122,98,100',
311
+ '99,105,107,106,108,110,109,102,104,103,129,130,97,96,133,,,,,,,,,,374',
312
+ ',,325,101,125,126,128,123,124,127,111,112,113,117,118,119,114,115,116',
313
+ '120,121,122,98,100,99,105,107,106,108,110,109,102,104,103,129,130,97',
314
+ '96,133,,,,,,,,,,,,,,101,125,126,128,123,124,127,111,112,113,117,118',
315
+ '119,114,115,116,120,121,122,98,100,99,105,107,106,108,110,109,102,104',
316
+ '103,129,130,97,96,133,,,,,,,,,,,,,265,101' ]
317
+ racc_action_table = arr = ::Array.new(6261, nil)
318
318
  idx = 0
319
319
  clist.each do |str|
320
320
  str.split(',', -1).each do |i|
@@ -324,281 +324,281 @@ clist = [
324
324
  end
325
325
 
326
326
  clist = [
327
- '21,71,156,202,21,309,357,357,437,350,351,315,408,56,56,71,56,315,315',
328
- '437,350,42,439,56,56,56,429,56,56,56,202,351,357,408,153,56,56,56,317',
329
- '56,386,153,386,56,56,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21',
330
- '21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,56,201,439',
331
- '56,435,201,429,201,201,201,201,201,357,21,201,91,201,201,317,201,201',
332
- '201,201,201,2,201,201,201,201,201,201,201,201,201,201,201,201,201,201',
333
- '201,268,201,201,201,201,201,300,422,426,201,201,200,267,307,139,203',
334
- '139,200,422,426,288,190,192,67,435,288,192,277,277,273,273,273,273,367',
335
- '273,91,316,303,367,273,273,316,318,299,2,274,201,319,201,201,430,201',
336
- '268,300,430,276,430,430,430,430,430,275,157,430,267,430,430,203,430',
337
- '430,430,430,430,190,430,430,430,430,430,430,430,430,430,430,430,430',
338
- '430,430,277,277,430,430,430,430,430,299,274,274,430,430,83,54,275,275',
339
- '275,275,276,276,320,157,298,321,275,275,157,134,134,134,134,30,30,30',
340
- '30,134,30,151,171,297,151,8,151,8,8,8,291,430,382,430,430,4,430,256',
341
- '158,4,405,4,4,4,4,4,83,345,4,54,4,4,324,4,4,4,4,4,298,4,4,4,4,4,4,4',
342
- '4,4,4,4,4,4,4,4,171,4,4,4,4,4,290,382,289,4,4,158,256,272,272,405,158',
343
- '271,271,237,237,237,345,392,392,235,235,235,235,235,235,41,41,41,41',
344
- '64,64,64,64,329,225,225,225,225,225,225,4,330,4,4,413,4,39,39,413,287',
345
- '413,413,413,413,413,32,283,413,84,413,413,237,413,413,413,413,413,235',
346
- '413,413,413,413,413,413,413,413,413,413,413,413,413,413,225,338,413',
347
- '413,413,413,413,70,70,70,413,413,193,340,32,32,32,32,69,69,69,280,280',
348
- '341,85,344,86,34,87,89,92,258,93,31,250,242,193,240,239,366,136,226',
349
- '226,226,226,226,226,413,369,413,413,371,413,26,193,193,193,193,193,193',
350
- '193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193',
351
- '193,193,193,193,193,193,193,193,193,193,193,193,226,0,137,199,198,0',
352
- '383,0,0,0,0,0,384,193,0,197,0,0,387,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0',
353
- '0,0,0,0,0,0,310,0,0,0,0,0,393,23,396,0,0,194,397,398,399,401,403,404',
354
- '189,407,142,409,22,18,144,146,179,423,424,147,175,174,150,170,431,194',
355
- '432,433,1,166,227,227,227,227,227,227,0,165,0,0,162,0,440,194,194,194',
327
+ '21,71,399,318,21,162,356,356,427,440,409,153,350,62,62,71,62,192,153',
328
+ '427,440,192,430,62,62,62,437,62,62,62,318,409,356,350,315,62,62,62,2',
329
+ '62,315,315,156,62,62,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21',
330
+ '21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,62,436,430',
331
+ '62,317,436,437,436,436,436,436,436,356,21,436,268,436,436,2,436,436',
332
+ '436,436,436,442,436,436,436,436,436,436,436,436,436,436,436,436,436',
333
+ '436,310,54,436,436,436,436,436,423,349,309,436,436,194,134,134,134,134',
334
+ '200,423,349,166,134,366,200,386,317,386,366,268,91,277,277,273,273,273',
335
+ '273,194,273,139,288,139,171,273,273,288,442,316,436,307,436,436,316',
336
+ '436,54,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194',
356
337
  '194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194',
357
- '194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,227,434',
358
- ',,,434,,434,434,434,434,434,,194,434,,434,434,,434,434,434,434,434,',
359
- '434,434,434,434,434,434,434,434,434,434,434,434,434,434,,,434,434,434',
360
- '434,434,,,,434,434,,,210,210,210,210,210,210,210,210,210,210,210,210',
338
+ '194,194,91,4,277,277,171,4,276,4,4,4,4,4,274,194,4,267,4,4,158,4,4,4',
339
+ '4,4,190,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,203,4,4,4,4,4,406,319,151,4,4',
340
+ '151,298,151,320,157,170,276,276,39,39,299,150,274,274,158,323,267,344',
341
+ '147,158,146,30,30,30,30,190,30,8,83,8,8,8,70,70,70,4,256,4,4,90,4,203',
342
+ '328,90,406,90,90,90,90,90,275,157,90,298,90,90,157,90,90,90,90,90,299',
343
+ '90,90,90,344,90,90,90,90,90,90,90,90,90,90,90,83,90,90,90,90,90,329',
344
+ '256,144,90,90,381,300,275,275,275,275,225,225,225,225,225,225,275,275',
345
+ '41,41,41,41,64,64,64,64,69,69,69,271,271,226,226,226,226,226,226,272',
346
+ '272,90,142,305,90,174,90,305,305,305,305,305,305,305,300,381,305,337',
347
+ '305,305,225,305,305,305,305,305,339,305,305,305,305,305,305,305,305',
348
+ '305,305,305,305,305,305,226,340,305,305,305,305,305,280,280,137,305',
349
+ '305,392,392,210,210,210,210,210,210,210,210,210,210,210,210,210,210',
361
350
  '210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210',
362
- '210,210,210,210,434,,434,434,90,434,,,90,,90,90,90,90,90,210,,90,,90',
363
- '90,,90,90,90,90,90,,90,90,90,,90,90,90,90,90,90,90,90,90,90,90,,90,90',
364
- '90,90,90,,,,90,90,191,191,191,191,191,191,191,191,191,191,191,191,191',
365
- '191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191',
366
- '191,191,191,191,191,90,,305,90,,90,305,305,305,305,305,305,305,191,',
367
- '305,,305,305,,305,305,305,305,305,,305,305,305,305,305,305,305,305,305',
368
- '305,305,305,305,305,,,305,305,305,305,305,,,,305,305,,359,,,,,,,,,,',
369
- ',,,,,,,,,,,,,,,,,228,228,228,228,228,228,305,,305,305,,305,359,359,359',
370
- '359,359,359,359,359,359,359,359,359,359,359,359,359,359,359,359,359',
371
- '359,359,359,359,359,359,359,359,359,359,359,359,359,359,359,356,228',
372
- ',,,,,,248,248,,248,,359,248,,,,248,248,248,,248,248,248,248,,,,,248',
373
- '248,248,,248,,,,248,248,356,356,356,356,356,356,356,356,356,356,356',
374
- '356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356,356',
375
- '356,356,356,356,356,356,356,248,,,248,,248,,248,135,135,,135,,356,135',
376
- ',,,135,135,135,,135,135,135,135,,,,,135,135,135,,135,,,,135,135,264',
377
- '264,,264,,,264,,,,264,264,264,,264,264,264,264,,,,,264,264,264,,264',
378
- ',,,264,264,,123,123,135,123,,135,123,135,,135,123,123,123,,123,123,123',
379
- '123,,,,,123,123,123,,123,,,,123,123,51,51,264,51,,264,51,264,264,,51',
380
- '51,51,,51,51,51,51,,,51,,51,51,51,,51,,,,51,51,,53,53,123,53,,123,53',
381
- '123,,,53,53,53,,53,53,53,53,,,53,,53,53,53,,53,,,,53,53,312,312,51,312',
382
- ',51,312,51,,,312,312,312,,312,312,312,312,,,,,312,312,312,,312,,,,312',
383
- '312,,55,55,53,55,,53,55,53,,55,55,55,55,,55,55,55,55,,,,,55,55,55,,55',
384
- ',,,55,55,311,311,312,311,,312,311,312,,,311,311,311,,311,311,311,311',
385
- ',,,,311,311,311,,311,,,,311,311,,57,57,55,57,,55,57,55,,,57,57,57,,57',
386
- '57,57,57,,,57,,57,57,57,,57,,,,57,57,59,59,311,59,,311,59,311,,,59,59',
387
- '59,,59,59,59,59,,,,,59,59,59,,59,,,,59,59,,60,60,57,60,,57,60,57,,,60',
388
- '60,60,,60,60,60,60,,,,,60,60,60,,60,,,,60,60,61,61,59,61,,59,61,59,',
389
- ',61,61,61,,61,61,61,61,,,,,61,61,61,,61,,,,61,61,,308,308,60,308,,60',
390
- '308,60,,,308,308,308,,308,308,308,308,,,,,308,308,308,,308,,,,308,308',
391
- '322,322,61,322,,61,322,61,,,322,322,322,,322,322,322,322,,,,,322,322',
392
- '322,,322,,,,322,322,,304,304,308,304,,308,304,308,,,304,304,304,,304',
393
- '304,304,304,,,,,304,304,304,,304,,,,304,304,302,302,322,302,,322,302',
394
- '322,,,302,302,302,,302,302,302,302,,,,,302,302,302,,302,,,,302,302,',
395
- '301,301,304,301,,304,301,304,,,301,301,301,,301,301,301,301,,,,,301',
396
- '301,301,,301,,,,301,301,285,285,302,285,,302,285,302,,,285,285,285,',
397
- '285,285,285,285,238,238,238,,285,285,285,,285,,,,285,285,,75,75,301',
398
- '75,,301,75,301,,,75,75,75,,75,75,75,75,,,75,,75,75,75,,75,,,,75,75,',
399
- '238,285,285,,285,,285,212,212,212,212,212,212,212,212,212,212,212,212',
400
- '212,212,212,212,212,212,,,241,241,241,77,77,,77,75,,77,75,,75,77,77',
401
- '77,,77,77,77,77,,,,,77,77,77,212,77,,,,77,77,78,78,,78,,,78,,,,78,78',
402
- '78,241,78,78,78,78,,,,,78,78,78,,78,,,,78,78,,79,79,77,79,,77,79,77',
403
- ',,79,79,79,,79,79,79,79,,,,,79,79,79,,79,,,,79,79,82,82,78,82,,78,82',
404
- '78,,,82,82,82,,82,82,82,82,,,,,82,82,82,,82,,,,82,82,,284,284,79,284',
405
- ',79,284,79,,,284,284,284,,284,284,284,284,,,,,284,284,284,,284,,,,284',
406
- '284,281,281,82,281,,82,281,82,,,281,281,281,,281,281,281,281,,,,,281',
407
- '281,281,,281,,,,281,281,,278,278,284,278,,284,278,284,,,278,278,278',
408
- ',278,278,278,278,,,278,,278,278,278,,278,,,,278,278,266,266,281,266',
409
- ',281,266,281,,,266,266,266,,266,266,266,266,176,176,176,,266,266,266',
410
- ',266,,,,266,266,,265,265,278,265,,278,265,278,,,265,265,265,,265,265',
411
- '265,265,,,,,265,265,265,,265,,,,265,265,,176,266,266,,266,,266,213,213',
412
- '213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,,,177',
413
- '177,177,326,326,,326,265,,326,265,,265,326,326,326,,326,326,326,326',
414
- ',,326,,326,326,326,213,326,,,,326,326,347,347,,347,,,347,,,,347,347',
415
- '347,177,347,347,347,347,,,,,347,347,347,,347,,,,347,347,,262,262,326',
416
- '262,,326,262,326,,,262,262,262,,262,262,262,262,,,,,262,262,262,,262',
417
- ',,,262,262,,,347,347,,347,,347,214,214,214,214,214,214,214,214,214,214',
418
- '214,214,214,214,214,214,214,214,,,,,,260,260,,260,262,,260,262,262,262',
419
- '260,260,260,,260,260,260,260,,,,,260,260,260,214,260,,,,260,260,257',
420
- '257,,257,,,257,,,,257,257,257,,257,257,257,257,,,,,257,257,257,,257',
421
- ',,,257,257,,251,251,260,251,,260,251,260,,,251,251,251,,251,251,251',
422
- '251,,,251,,251,251,251,,251,,,,251,251,,,257,257,,257,,257,216,216,216',
423
- '216,216,216,216,216,216,216,216,216,216,216,216,216,216,216,,,,,,96',
424
- '96,,96,251,,96,251,,251,96,96,96,,96,96,96,96,,,,,96,96,96,216,96,,',
425
- ',96,96,97,97,,97,,,97,,,,97,97,97,,97,97,97,97,,,,,97,97,97,,97,,,,97',
426
- '97,,98,98,96,98,,96,98,96,,,98,98,98,,98,98,98,98,,,,,98,98,98,,98,',
427
- ',,98,98,99,99,97,99,,97,99,97,,,99,99,99,,99,99,99,99,,,,,99,99,99,',
428
- '99,,,,99,99,,100,100,98,100,,98,100,98,,,100,100,100,,100,100,100,100',
429
- ',,,,100,100,100,,100,,,,100,100,101,101,99,101,,99,101,99,,,101,101',
430
- '101,,101,101,101,101,,,,,101,101,101,,101,,,,101,101,,102,102,100,102',
431
- ',100,102,100,,,102,102,102,,102,102,102,102,,,,,102,102,102,,102,,,',
432
- '102,102,103,103,101,103,,101,103,101,,,103,103,103,,103,103,103,103',
433
- ',,,,103,103,103,,103,,,,103,103,,104,104,102,104,,102,104,102,,,104',
434
- '104,104,,104,104,104,104,,,,,104,104,104,,104,,,,104,104,105,105,103',
435
- '105,,103,105,103,,,105,105,105,,105,105,105,105,,,,,105,105,105,,105',
436
- ',,,105,105,,106,106,104,106,,104,106,104,,,106,106,106,,106,106,106',
437
- '106,,,,,106,106,106,,106,,,,106,106,107,107,105,107,,105,107,105,,,107',
438
- '107,107,,107,107,107,107,,,,,107,107,107,,107,,,,107,107,,108,108,106',
439
- '108,,106,108,106,,,108,108,108,,108,108,108,108,,,,,108,108,108,,108',
440
- ',,,108,108,109,109,107,109,,107,109,107,,,109,109,109,,109,109,109,109',
441
- ',,,,109,109,109,,109,,,,109,109,,110,110,108,110,,108,110,108,,,110',
442
- '110,110,,110,110,110,110,,,,,110,110,110,,110,,,,110,110,111,111,109',
443
- '111,,109,111,109,,,111,111,111,,111,111,111,111,,,,,111,111,111,,111',
444
- ',,,111,111,,112,112,110,112,,110,112,110,,,112,112,112,,112,112,112',
445
- '112,,,,,112,112,112,,112,,,,112,112,113,113,111,113,,111,113,111,,,113',
446
- '113,113,,113,113,113,113,,,,,113,113,113,,113,,,,113,113,,114,114,112',
447
- '114,,112,114,112,,,114,114,114,,114,114,114,114,,,,,114,114,114,,114',
448
- ',,,114,114,115,115,113,115,,113,115,113,,,115,115,115,,115,115,115,115',
449
- ',,,,115,115,115,,115,,,,115,115,,116,116,114,116,,114,116,114,,,116',
450
- '116,116,,116,116,116,116,,,,,116,116,116,,116,,,,116,116,117,117,115',
451
- '117,,115,117,115,,,117,117,117,,117,117,117,117,,,,,117,117,117,,117',
452
- ',,,117,117,,118,118,116,118,,116,118,116,,,118,118,118,,118,118,118',
453
- '118,,,,,118,118,118,,118,,,,118,118,119,119,117,119,,117,119,117,,,119',
454
- '119,119,,119,119,119,119,,,,,119,119,119,,119,,,,119,119,,120,120,118',
455
- '120,,118,120,118,,,120,120,120,,120,120,120,120,,,,,120,120,120,,120',
456
- ',,,120,120,121,121,119,121,,119,121,119,,,121,121,121,,121,121,121,121',
457
- ',,,,121,121,121,,121,,,,121,121,,122,122,120,122,,120,122,120,,,122',
458
- '122,122,,122,122,122,122,,,,,122,122,122,,122,,,,122,122,313,313,121',
459
- '313,,121,313,121,,,313,313,313,,313,313,313,313,,,,,313,313,313,,313',
460
- ',,,313,313,,124,124,122,124,,122,124,122,,,124,124,124,,124,124,124',
461
- '124,,,,,124,124,124,,124,,,,124,124,125,125,313,125,,313,125,313,,,125',
462
- '125,125,,125,125,125,125,,,,,125,125,125,,125,,,,125,125,,126,126,124',
463
- '126,,124,126,124,,,126,126,126,,126,126,126,126,,,,,126,126,126,,126',
464
- ',,,126,126,127,127,125,127,,125,127,125,,,127,127,127,,127,127,127,127',
465
- ',,,,127,127,127,,127,,,,127,127,,128,128,126,128,,126,128,126,,,128',
466
- '128,128,,128,128,128,128,,,,,128,128,128,,128,,,,128,128,129,129,127',
467
- '129,,127,129,127,,,129,129,129,,129,129,129,129,,,,,129,129,129,,129',
468
- ',,,129,129,,130,130,128,130,,128,130,128,,,130,130,130,,130,130,130',
469
- '130,,,,,130,130,130,,130,,,,130,130,131,131,129,131,,129,131,129,,,131',
470
- '131,131,,131,131,131,131,,,,,131,131,131,,131,,,,131,131,,132,132,130',
471
- '132,,130,132,130,,,132,132,132,,132,132,132,132,,,,,132,132,132,,132',
472
- ',,,132,132,133,133,131,133,,131,133,131,,,133,133,133,,133,133,133,133',
473
- ',,,,133,133,133,,133,,,,133,133,,28,28,132,28,,132,28,132,,,28,28,28',
474
- ',28,28,28,28,,,,,28,28,28,,28,,,,28,28,372,372,133,372,,133,372,133',
475
- ',,372,372,372,,372,372,372,372,,,,,372,372,372,,372,,,,372,372,,205',
476
- '205,28,205,,28,205,28,,,205,205,205,,205,205,205,205,,,,,205,205,205',
477
- ',205,,,,205,205,,,372,372,,372,,372,217,217,217,217,217,217,217,217',
478
- '217,217,217,217,217,217,217,217,217,217,,,,,,394,394,,394,205,205,394',
479
- '205,,205,394,394,394,,394,394,394,394,,,,,394,394,394,217,394,,,,394',
480
- '394,410,410,,410,,,410,,,,410,410,410,,410,410,410,410,,,,,410,410,410',
481
- ',410,,,,410,410,,412,412,394,412,,394,412,394,,,412,412,412,,412,412',
482
- '412,412,,,,,412,412,412,,412,,,,412,412,184,184,410,184,,410,184,410',
483
- ',,184,184,184,,184,184,184,184,,,,,184,184,184,,184,,,,184,184,,183',
484
- '183,412,183,,412,183,412,,,183,183,183,,183,183,183,183,,,,,183,183',
485
- '183,,183,,,,183,183,143,143,184,143,,184,143,184,,,143,143,143,,143',
486
- '143,143,143,,,,,143,143,143,,143,,,,143,143,,182,182,183,182,,183,182',
487
- '183,,,182,182,182,,182,182,182,182,,,,,182,182,182,,182,,,,182,182,',
488
- ',143,143,,143,,143,218,218,218,218,218,218,218,218,218,218,218,218,218',
489
- '218,218,218,218,218,,,,,,181,181,,181,182,,181,182,,182,181,181,181',
490
- ',181,181,181,181,,,,,181,181,181,218,181,,,,181,181,178,178,,178,,,178',
491
- ',,,178,178,178,,178,178,178,178,,,,,178,178,178,,178,,,,178,178,,160',
492
- '160,181,160,,181,160,181,,,160,160,160,,160,160,160,160,,,,,160,160',
493
- '160,,160,,,,160,160,169,169,178,169,,178,169,178,,,169,169,169,,169',
494
- '169,169,169,,,169,,169,169,169,,169,,,,169,169,,167,167,160,167,,160',
495
- '167,160,,,167,167,167,,167,167,167,167,,,,,167,167,167,,167,,,,167,167',
496
- '161,161,169,161,,169,161,169,,,161,161,161,,161,161,161,161,,,,,161',
497
- '161,161,,161,,,,161,161,,,,167,167,,167,,167,,219,219,219,219,219,219',
498
- '219,219,219,219,219,219,219,219,219,219,219,219,,,,172,172,,172,161',
499
- '161,172,161,,161,172,172,172,,172,172,172,172,,,,,172,172,172,,172,219',
500
- ',,172,172,95,95,,95,,,,,,,95,95,95,,95,95,95,95,,,,,95,95,95,,95,,,',
501
- '95,95,,,,172,172,,172,,172,,62,62,,62,229,229,229,229,229,229,62,62',
502
- '62,,62,62,62,,,,,,62,62,62,95,62,,95,,62,62,138,138,,138,230,230,230',
503
- '230,230,230,138,138,138,,138,138,138,138,,,229,,138,138,138,,138,,,',
504
- '138,138,,,,62,,,62,,,,,,,,,,,,,,230,196,,,,,,231,231,231,231,231,231',
505
- ',,138,,,138,196,196,196,196,196,196,196,196,196,196,196,196,196,196',
506
- '196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196',
507
- '196,196,196,196,428,231,,,,,232,232,232,232,232,232,,196,,,,,428,428',
508
- '428,428,428,428,428,428,428,428,428,428,428,428,428,428,428,428,428',
509
- '428,428,428,428,428,428,428,428,428,428,428,428,428,428,428,428,364',
510
- '232,,,,,233,233,233,233,233,233,,428,,,,,364,364,364,364,364,364,364',
511
- '364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364',
512
- '364,364,364,364,364,364,364,364,364,364,364,195,233,,,,,234,234,234',
513
- '234,234,234,,364,,,,,195,195,195,195,195,195,195,195,195,195,195,195',
514
- '195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195',
515
- '195,195,195,195,195,195,362,234,,,,,236,236,236,236,236,236,,195,,,',
516
- ',362,362,362,362,362,362,362,362,362,362,362,362,362,362,362,362,362',
517
- '362,362,362,362,362,362,362,362,362,362,362,362,362,362,362,362,362',
518
- '362,363,236,,,,,,,,,,,,362,,,,,363,363,363,363,363,363,363,363,363,363',
519
- '363,363,363,363,363,363,363,363,363,363,363,363,363,363,363,363,363',
520
- '363,363,363,363,363,363,363,363,414,,,,,,,,,,,,,363,,,,,414,414,414',
521
- '414,414,414,414,414,414,414,414,414,414,414,414,414,414,414,414,414',
522
- '414,414,414,414,414,414,414,414,414,414,414,414,414,414,414,,,,,,,,',
523
- ',,,,,414,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155',
524
- '155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155',
525
- '155,155,155,,,,,,,,,,,,,155,155,164,164,164,164,164,164,164,164,164',
526
- '164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164',
527
- '164,164,164,164,164,164,164,164,164,,,,,,,,,,,,,,164,211,211,211,211',
351
+ '210,210,305,343,305,305,0,305,136,303,0,348,0,0,0,0,0,210,32,0,175,0',
352
+ '0,179,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,89,87',
353
+ '86,0,0,193,85,84,32,32,32,32,189,365,297,368,369,370,197,198,67,199',
354
+ '382,384,202,387,388,291,393,193,42,396,397,398,227,227,227,227,227,227',
355
+ '0,165,0,0,401,0,404,193,193,193,193,193,193,193,193,193,193,193,193',
356
+ '193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193',
357
+ '193,193,193,193,193,193,227,201,405,290,408,201,289,201,201,201,201',
358
+ '201,410,193,201,287,201,201,34,201,201,201,201,201,239,201,201,201,201',
359
+ '201,201,201,201,201,201,201,201,201,201,201,31,201,201,201,201,201,421',
360
+ '240,424,201,201,425,242,211,211,211,211,211,211,211,211,211,211,211',
528
361
  '211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211',
529
- '211,211,211,211,211,211,211,211,211,211,211,,,,,,,,,,,,,,,,,211,215',
530
- '215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215',
362
+ '211,211,211,211,283,201,26,201,201,414,201,23,22,414,432,414,414,414',
363
+ '414,414,211,433,414,434,414,414,435,414,414,414,414,414,18,414,414,414',
364
+ '414,414,414,414,414,414,414,414,414,414,414,250,258,414,414,414,414',
365
+ '414,1,443,,414,414,,,212,212,212,212,212,212,212,212,212,212,212,212',
366
+ '212,212,212,212,212,212,,,,,,,,,,228,228,228,228,228,228,414,,414,414',
367
+ '431,414,,,431,,431,431,431,431,431,212,,431,,431,431,,431,431,431,431',
368
+ '431,,431,431,431,431,431,431,431,431,431,431,431,431,431,431,228,,431',
369
+ '431,431,431,431,,,,431,431,,358,,,,,,,,,,,,,,,,,,,,,,,,,,,,229,229,229',
370
+ '229,229,229,431,,431,431,,431,358,358,358,358,358,358,358,358,358,358',
371
+ '358,358,358,358,358,358,358,358,358,358,358,358,358,358,358,358,358',
372
+ '358,358,358,358,358,358,358,358,355,229,,,,,,,135,135,,135,,358,135',
373
+ ',,,135,135,135,,135,135,135,135,,,,,135,135,135,,135,,,,135,135,355',
374
+ '355,355,355,355,355,355,355,355,355,355,355,355,355,355,355,355,355',
375
+ '355,355,355,355,355,355,355,355,355,355,355,355,355,355,355,355,355',
376
+ '135,,,135,,135,,135,248,248,,248,,355,248,,,,248,248,248,,248,248,248',
377
+ '248,,,,,248,248,248,,248,,,,248,248,264,264,,264,,,264,,,,264,264,264',
378
+ ',264,264,264,264,,,,,264,264,264,,264,,,,264,264,,123,123,248,123,,248',
379
+ '123,248,,248,123,123,123,,123,123,123,123,,,,,123,123,123,,123,,,,123',
380
+ '123,51,51,264,51,,264,51,264,264,,51,51,51,,51,51,51,51,,,51,,51,51',
381
+ '51,,51,,,,51,51,,53,53,123,53,,123,53,123,,,53,53,53,,53,53,53,53,,',
382
+ '53,,53,53,53,,53,,,,53,53,251,251,51,251,,51,251,51,,,251,251,251,,251',
383
+ '251,251,251,,,251,,251,251,251,,251,,,,251,251,,55,55,53,55,,53,55,53',
384
+ ',55,55,55,55,,55,55,55,55,,,,,55,55,55,,55,,,,55,55,257,257,251,257',
385
+ ',251,257,251,,,257,257,257,,257,257,257,257,237,237,237,,257,257,257',
386
+ ',257,,,,257,257,,57,57,55,57,,55,57,55,,,57,57,57,,57,57,57,57,,,57',
387
+ ',57,57,57,,57,,,,57,57,,237,257,257,,257,,257,213,213,213,213,213,213',
388
+ '213,213,213,213,213,213,213,213,213,213,213,213,,,238,238,238,59,59',
389
+ ',59,57,,59,57,,57,59,59,59,,59,59,59,59,,,,,59,59,59,213,59,,,,59,59',
390
+ '60,60,,60,,,60,,,,60,60,60,238,60,60,60,60,,,,,60,60,60,,60,,,,60,60',
391
+ ',61,61,59,61,,59,61,59,,,61,61,61,,61,61,61,61,,,,,61,61,61,,61,,,,61',
392
+ '61,284,284,60,284,,60,284,60,,,284,284,284,,284,284,284,284,,,,,284',
393
+ '284,284,,284,,,,284,284,,285,285,61,285,,61,285,61,,,285,285,285,,285',
394
+ '285,285,285,241,241,241,,285,285,285,,285,,,,285,285,205,205,284,205',
395
+ ',284,205,284,,,205,205,205,,205,205,205,205,,,,,205,205,205,,205,,,',
396
+ '205,205,,,241,285,285,,285,,285,,214,214,214,214,214,214,214,214,214',
397
+ '214,214,214,214,214,214,214,214,214,177,177,177,411,411,,411,205,205',
398
+ '411,205,,205,411,411,411,,411,411,411,411,,,,,411,411,411,,411,214,',
399
+ ',411,411,371,371,,371,,,371,,,,371,371,371,177,371,371,371,371,176,176',
400
+ '176,,371,371,371,,371,,,,371,371,,413,413,411,413,,411,413,411,,,413',
401
+ '413,413,,413,413,413,413,,,,,413,413,413,,413,,,,413,413,,176,371,371',
402
+ ',371,,371,216,216,216,216,216,216,216,216,216,216,216,216,216,216,216',
403
+ '216,216,216,,,,,,75,75,,75,413,,75,413,,413,75,75,75,,75,75,75,75,,',
404
+ '75,,75,75,75,216,75,,,,75,75,77,77,,77,,,77,,,,77,77,77,,77,77,77,77',
405
+ ',,,,77,77,77,,77,,,,77,77,,78,78,75,78,,75,78,75,,,78,78,78,,78,78,78',
406
+ '78,,,,,78,78,78,,78,,,,78,78,79,79,77,79,,77,79,77,,,79,79,79,,79,79',
407
+ '79,79,,,,,79,79,79,,79,,,,79,79,,82,82,78,82,,78,82,78,,,82,82,82,,82',
408
+ '82,82,82,,,,,82,82,82,,82,,,,82,82,281,281,79,281,,79,281,79,,,281,281',
409
+ '281,,281,281,281,281,,,,,281,281,281,,281,,,,281,281,,184,184,82,184',
410
+ ',82,184,82,,,184,184,184,,184,184,184,184,,,,,184,184,184,,184,,,,184',
411
+ '184,183,183,281,183,,281,183,281,,,183,183,183,,183,183,183,183,,,,',
412
+ '183,183,183,,183,,,,183,183,,260,260,184,260,,184,260,184,,,260,260',
413
+ '260,,260,260,260,260,,,,,260,260,260,,260,,,,260,260,28,28,183,28,,183',
414
+ '28,183,,,28,28,28,,28,28,28,28,,,,,28,28,28,,28,,,,28,28,,262,262,260',
415
+ '262,,260,262,260,,,262,262,262,,262,262,262,262,,,,,262,262,262,,262',
416
+ ',,,262,262,265,265,28,265,,28,265,28,,,265,265,265,,265,265,265,265',
417
+ ',,,,265,265,265,,265,,,,265,265,,,,262,,,262,262,262,,217,217,217,217',
418
+ '217,217,217,217,217,217,217,217,217,217,217,217,217,217,,,,182,182,',
419
+ '182,265,,182,265,,265,182,182,182,,182,182,182,182,,,,,182,182,182,',
420
+ '182,217,,,182,182,181,181,,181,,,181,,,,181,181,181,,181,181,181,181',
421
+ ',,,,181,181,181,,181,,,,181,181,,301,301,182,301,,182,301,182,,,301',
422
+ '301,301,,301,301,301,301,,,,,301,301,301,,301,,,,301,301,178,178,181',
423
+ '178,,181,178,181,,,178,178,178,,178,178,178,178,,,,,178,178,178,,178',
424
+ ',,,178,178,,96,96,301,96,,301,96,301,,,96,96,96,,96,96,96,96,,,,,96',
425
+ '96,96,,96,,,,96,96,97,97,178,97,,178,97,178,,,97,97,97,,97,97,97,97',
426
+ ',,,,97,97,97,,97,,,,97,97,,98,98,96,98,,96,98,96,,,98,98,98,,98,98,98',
427
+ '98,,,,,98,98,98,,98,,,,98,98,99,99,97,99,,97,99,97,,,99,99,99,,99,99',
428
+ '99,99,,,,,99,99,99,,99,,,,99,99,,100,100,98,100,,98,100,98,,,100,100',
429
+ '100,,100,100,100,100,,,,,100,100,100,,100,,,,100,100,101,101,99,101',
430
+ ',99,101,99,,,101,101,101,,101,101,101,101,,,,,101,101,101,,101,,,,101',
431
+ '101,,102,102,100,102,,100,102,100,,,102,102,102,,102,102,102,102,,,',
432
+ ',102,102,102,,102,,,,102,102,103,103,101,103,,101,103,101,,,103,103',
433
+ '103,,103,103,103,103,,,,,103,103,103,,103,,,,103,103,,104,104,102,104',
434
+ ',102,104,102,,,104,104,104,,104,104,104,104,,,,,104,104,104,,104,,,',
435
+ '104,104,105,105,103,105,,103,105,103,,,105,105,105,,105,105,105,105',
436
+ ',,,,105,105,105,,105,,,,105,105,,106,106,104,106,,104,106,104,,,106',
437
+ '106,106,,106,106,106,106,,,,,106,106,106,,106,,,,106,106,107,107,105',
438
+ '107,,105,107,105,,,107,107,107,,107,107,107,107,,,,,107,107,107,,107',
439
+ ',,,107,107,,108,108,106,108,,106,108,106,,,108,108,108,,108,108,108',
440
+ '108,,,,,108,108,108,,108,,,,108,108,109,109,107,109,,107,109,107,,,109',
441
+ '109,109,,109,109,109,109,,,,,109,109,109,,109,,,,109,109,,110,110,108',
442
+ '110,,108,110,108,,,110,110,110,,110,110,110,110,,,,,110,110,110,,110',
443
+ ',,,110,110,111,111,109,111,,109,111,109,,,111,111,111,,111,111,111,111',
444
+ ',,,,111,111,111,,111,,,,111,111,,112,112,110,112,,110,112,110,,,112',
445
+ '112,112,,112,112,112,112,,,,,112,112,112,,112,,,,112,112,113,113,111',
446
+ '113,,111,113,111,,,113,113,113,,113,113,113,113,,,,,113,113,113,,113',
447
+ ',,,113,113,,114,114,112,114,,112,114,112,,,114,114,114,,114,114,114',
448
+ '114,,,,,114,114,114,,114,,,,114,114,115,115,113,115,,113,115,113,,,115',
449
+ '115,115,,115,115,115,115,,,,,115,115,115,,115,,,,115,115,,116,116,114',
450
+ '116,,114,116,114,,,116,116,116,,116,116,116,116,,,,,116,116,116,,116',
451
+ ',,,116,116,117,117,115,117,,115,117,115,,,117,117,117,,117,117,117,117',
452
+ ',,,,117,117,117,,117,,,,117,117,,118,118,116,118,,116,118,116,,,118',
453
+ '118,118,,118,118,118,118,,,,,118,118,118,,118,,,,118,118,119,119,117',
454
+ '119,,117,119,117,,,119,119,119,,119,119,119,119,,,,,119,119,119,,119',
455
+ ',,,119,119,,120,120,118,120,,118,120,118,,,120,120,120,,120,120,120',
456
+ '120,,,,,120,120,120,,120,,,,120,120,121,121,119,121,,119,121,119,,,121',
457
+ '121,121,,121,121,121,121,,,,,121,121,121,,121,,,,121,121,,313,313,120',
458
+ '313,,120,313,120,,,313,313,313,,313,313,313,313,,,,,313,313,313,,313',
459
+ ',,,313,313,394,394,121,394,,121,394,121,,,394,394,394,,394,394,394,394',
460
+ ',,,,394,394,394,,394,,,,394,394,,124,124,313,124,,313,124,313,,,124',
461
+ '124,124,,124,124,124,124,,,,,124,124,124,,124,,,,124,124,125,125,394',
462
+ '125,,394,125,394,,,125,125,125,,125,125,125,125,,,,,125,125,125,,125',
463
+ ',,,125,125,,126,126,124,126,,124,126,124,,,126,126,126,,126,126,126',
464
+ '126,,,,,126,126,126,,126,,,,126,126,127,127,125,127,,125,127,125,,,127',
465
+ '127,127,,127,127,127,127,,,,,127,127,127,,127,,,,127,127,,128,128,126',
466
+ '128,,126,128,126,,,128,128,128,,128,128,128,128,,,,,128,128,128,,128',
467
+ ',,,128,128,129,129,127,129,,127,129,127,,,129,129,129,,129,129,129,129',
468
+ ',,,,129,129,129,,129,,,,129,129,,130,130,128,130,,128,130,128,,,130',
469
+ '130,130,,130,130,130,130,,,,,130,130,130,,130,,,,130,130,131,131,129',
470
+ '131,,129,131,129,,,131,131,131,,131,131,131,131,,,,,131,131,131,,131',
471
+ ',,,131,131,,132,132,130,132,,130,132,130,,,132,132,132,,132,132,132',
472
+ '132,,,,,132,132,132,,132,,,,132,132,133,133,131,133,,131,133,131,,,133',
473
+ '133,133,,133,133,133,133,,,,,133,133,133,,133,,,,133,133,,346,346,132',
474
+ '346,,132,346,132,,,346,346,346,,346,346,346,346,,,,,346,346,346,,346',
475
+ ',,,346,346,266,266,133,266,,133,266,133,,,266,266,266,,266,266,266,266',
476
+ ',,,,266,266,266,,266,,,,266,266,,,,346,346,,346,,346,,218,218,218,218',
477
+ '218,218,218,218,218,218,218,218,218,218,218,218,218,218,,,,302,302,',
478
+ '302,266,266,302,266,,266,302,302,302,,302,302,302,302,,,,,302,302,302',
479
+ ',302,218,,,302,302,304,304,,304,,,304,,,,304,304,304,,304,304,304,304',
480
+ ',,,,304,304,304,,304,,,,304,304,,172,172,302,172,,302,172,302,,,172',
481
+ '172,172,,172,172,172,172,,,,,172,172,172,,172,,,,172,172,278,278,304',
482
+ '278,,304,278,304,,,278,278,278,,278,278,278,278,,,278,,278,278,278,',
483
+ '278,,,,278,278,,,,172,172,,172,,172,,219,219,219,219,219,219,219,219',
484
+ '219,219,219,219,219,219,219,219,219,219,,,,169,169,,169,278,,169,278',
485
+ ',278,169,169,169,,169,169,169,169,,,169,,169,169,169,,169,219,,,169',
486
+ '169,167,167,,167,,,167,,,,167,167,167,,167,167,167,167,,,,,167,167,167',
487
+ ',167,,,,167,167,,143,143,169,143,,169,143,169,,,143,143,143,,143,143',
488
+ '143,143,,,,,143,143,143,,143,,,,143,143,,,167,167,,167,,167,220,220',
489
+ '220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,,,,',
490
+ ',308,308,,308,143,143,308,143,,143,308,308,308,,308,308,308,308,,,,',
491
+ '308,308,308,220,308,,,,308,308,311,311,,311,,,311,,,,311,311,311,,311',
492
+ '311,311,311,,,,,311,311,311,,311,,,,311,311,,325,325,308,325,,308,325',
493
+ '308,,,325,325,325,,325,325,325,325,,,325,,325,325,325,,325,,,,325,325',
494
+ '312,312,311,312,,311,312,311,,,312,312,312,,312,312,312,312,,,,,312',
495
+ '312,312,,312,,,,312,312,,321,321,325,321,,325,321,325,,,321,321,321',
496
+ ',321,321,321,321,,,,,321,321,321,,321,,,,321,321,161,161,312,161,,312',
497
+ '161,312,,,161,161,161,,161,161,161,161,,,,,161,161,161,,161,,,,161,161',
498
+ ',160,160,321,160,,321,160,321,,,160,160,160,,160,160,160,160,,,,,160',
499
+ '160,160,,160,,,,160,160,,,161,161,,161,,161,221,221,221,221,221,221',
500
+ '221,221,221,221,221,221,221,221,221,221,221,221,,,,,,122,122,,122,160',
501
+ ',122,160,,160,122,122,122,,122,122,122,122,,,,,122,122,122,221,122,',
502
+ ',,122,122,138,138,,138,230,230,230,230,230,230,138,138,138,,138,138',
503
+ '138,138,,,,,138,138,138,,138,,,,138,138,,95,95,122,95,,122,,122,,,95',
504
+ '95,95,,95,95,95,95,,230,,,95,95,95,,95,,,,95,95,56,56,138,56,,138,,',
505
+ ',,56,56,56,,56,56,56,,,,,,56,56,56,,56,,,,56,56,,,,95,,,95,,,,,,,,,',
506
+ ',,,,,363,,,,,,231,231,231,231,231,231,,,56,,,56,363,363,363,363,363',
507
+ '363,363,363,363,363,363,363,363,363,363,363,363,363,363,363,363,363',
508
+ '363,363,363,363,363,363,363,363,363,363,363,363,363,361,231,,,,,232',
509
+ '232,232,232,232,232,,363,,,,,361,361,361,361,361,361,361,361,361,361',
510
+ '361,361,361,361,361,361,361,361,361,361,361,361,361,361,361,361,361',
511
+ '361,361,361,361,361,361,361,361,362,232,,,,,233,233,233,233,233,233',
512
+ ',361,,,,,362,362,362,362,362,362,362,362,362,362,362,362,362,362,362',
513
+ '362,362,362,362,362,362,362,362,362,362,362,362,362,362,362,362,362',
514
+ '362,362,362,195,233,,,,,234,234,234,234,234,234,,362,,,,,195,195,195',
515
+ '195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195',
516
+ '195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,196,234',
517
+ ',,,,235,235,235,235,235,235,,195,,,,,196,196,196,196,196,196,196,196',
518
+ '196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196',
519
+ '196,196,196,196,196,196,196,196,196,196,429,235,,,,,236,236,236,236',
520
+ '236,236,,196,,,,,429,429,429,429,429,429,429,429,429,429,429,429,429',
521
+ '429,429,429,429,429,429,429,429,429,429,429,429,429,429,429,429,429',
522
+ '429,429,429,429,429,415,236,,,,,,,,,,,,429,,,,,415,415,415,415,415,415',
523
+ '415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415,415',
524
+ '415,415,415,415,415,415,415,415,415,415,415,415,,,,,,,,,,,,,,415,282',
525
+ '282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282',
526
+ '282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282',
527
+ ',,,,,,282,,,,,,,282,292,292,292,292,292,292,292,292,292,292,292,292',
528
+ '292,292,292,292,292,292,292,292,292,292,292,292,292,292,292,292,292',
529
+ '292,292,292,292,292,292,,,,,,,292,,,,,,,292,191,191,191,191,191,191',
530
+ '191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191',
531
+ '191,191,191,191,191,191,191,191,191,191,191,191,,,,,,,,,,,,,,191,376',
532
+ '376,376,376,376,376,376,376,376,376,376,376,376,376,376,376,376,376',
533
+ '376,376,376,376,376,376,376,376,376,376,376,376,376,376,376,376,376',
534
+ ',,,,,,,,,,,,,376,215,215,215,215,215,215,215,215,215,215,215,215,215',
531
535
  '215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215,215',
532
- ',,,,,,,,,,,,,215,220,220,220,220,220,220,220,220,220,220,220,220,220',
533
- '220,220,220,220,220,221,221,221,221,221,221,221,221,221,221,221,221',
534
- '221,221,221,221,221,221,,,,,,,,,,,,,220,,,,,,,,,,,,,,,,,,221,222,222',
535
- '222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,223',
536
- '223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223,223',
537
- ',,,,,,,,,,,,222,,,,,,,,,,,,,,,,,,223,224,224,224,224,224,224,224,224',
538
- '224,224,224,224,224,224,224,224,224,224,,,,,,,,,,,,,,,,,,,,,,,,,,,,',
539
- ',,224,374,374,374,374,374,374,374,374,374,374,374,374,374,374,374,374',
540
- '374,374,374,374,374,374,374,374,374,374,374,374,374,374,374,374,374',
541
- '374,374,,,,,,,,,,,,,,374,377,377,377,377,377,377,377,377,377,377,377',
542
- '377,377,377,377,377,377,377,377,377,377,377,377,377,377,377,377,377',
543
- '377,377,377,377,377,377,377,,,,,,,,,,,,,,377,152,152,152,152,152,152',
544
- '152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152',
545
- '152,152,152,152,152,152,152,152,152,152,152,152,,,,,,,,,,,,,,152,296',
546
- '296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296',
547
- '296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296',
548
- ',,,,,,,,,,,,,296,243,243,243,243,243,243,243,243,243,243,243,243,243',
536
+ '215,215,215,215,215,,,,,,,,,,,,,,215,222,222,222,222,222,222,222,222',
537
+ '222,222,222,222,222,222,222,222,222,222,223,223,223,223,223,223,223',
538
+ '223,223,223,223,223,223,223,223,223,223,223,,,,,,,,,,,,,222,,,,,,,,',
539
+ ',,,,,,,,,223,224,224,224,224,224,224,224,224,224,224,224,224,224,224',
540
+ '224,224,224,224,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,224,286,286,286,286,286',
541
+ '286,286,286,286,286,286,286,286,286,286,286,286,286,286,286,286,286',
542
+ '286,286,286,286,286,286,286,286,286,286,286,286,286,,,,,,,286,,,,,,',
543
+ '286,293,293,293,293,293,293,293,293,293,293,293,293,293,293,293,293',
544
+ '293,293,293,293,293,293,293,293,293,293,293,293,293,293,293,293,293',
545
+ '293,293,,,,,,,,,,,,,,293,353,353,353,353,353,353,353,353,353,353,353',
546
+ '353,353,353,353,353,353,353,353,353,353,353,353,353,353,353,353,353',
547
+ '353,353,353,353,353,353,353,,,,,,,,,,,,,,353,243,243,243,243,243,243',
549
548
  '243,243,243,243,243,243,243,243,243,243,243,243,243,243,243,243,243',
550
- ',,,,,,,,,,,,,,,,,,243,244,244,244,244,244,244,244,244,244,244,244,244',
549
+ '243,243,243,243,243,243,243,,,,,,,,,,,,,,,,,,,243,244,244,244,244,244',
551
550
  '244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244,244',
552
- '244,,,,,,,,,,,,,,,,,,,244,245,245,245,245,245,245,245,245,245,245,245',
551
+ '244,244,244,244,244,244,244,244,,,,,,,,,,,,,,,,,,,244,245,245,245,245',
553
552
  '245,245,245,245,245,245,245,245,245,245,245,245,245,245,245,245,245',
554
- '245,245,245,245,245,245,245,,,,,,,,,,,,,,245,246,246,246,246,246,246',
553
+ '245,245,245,245,245,245,245,245,245,245,245,245,245,245,,,,,,,,,,,,',
554
+ ',245,246,246,246,246,246,246,246,246,246,246,246,246,246,246,246,246',
555
555
  '246,246,246,246,246,246,246,246,246,246,246,246,246,246,246,246,246',
556
- '246,246,246,246,246,246,246,246,246,246,246,246,,,,,,,,,,,,,,246,247',
556
+ '246,246,,,,,,,,,,,,,,246,247,247,247,247,247,247,247,247,247,247,247',
557
557
  '247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,247',
558
- '247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,247',
559
- ',,,,,,,,,,,,247,247,295,295,295,295,295,295,295,295,295,295,295,295',
560
- '295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295',
561
- '295,295,295,295,295,295,,,,,,,,,,,,,,295,249,249,249,249,249,249,249',
558
+ '247,247,247,247,247,247,247,,,,,,,,,,,,,247,247,352,352,352,352,352',
559
+ '352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352',
560
+ '352,352,352,352,352,352,352,352,352,352,352,352,352,,,,,,,,,,,,,,352',
562
561
  '249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249',
563
- '249,249,249,249,249,249,249,249,249,249,249,,,,,,,,,,249,,,249,249,294',
564
- '294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294',
562
+ '249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249',
563
+ '249,,,,,,,,,,249,,,249,249,373,373,373,373,373,373,373,373,373,373,373',
564
+ '373,373,373,373,373,373,373,373,373,373,373,373,373,373,373,373,373',
565
+ '373,373,373,373,373,373,373,,,,,,,,,,,,,,373,294,294,294,294,294,294',
565
566
  '294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294',
566
- ',,,,,,,,,,,,,294,293,293,293,293,293,293,293,293,293,293,293,293,293',
567
- '293,293,293,293,293,293,293,293,293,293,293,293,293,293,293,293,293',
568
- '293,293,293,293,293,,,,,,,,,,,,,,293,292,292,292,292,292,292,292,292',
569
- '292,292,292,292,292,292,292,292,292,292,292,292,292,292,292,292,292',
570
- '292,292,292,292,292,292,292,292,292,292,,,,,,,292,,,,,,,292,323,323',
571
- '323,323,323,323,323,323,323,323,323,323,323,323,323,323,323,323,323',
572
- '323,323,323,323,323,323,323,323,323,323,323,323,323,323,323,323,,,,',
573
- ',,,,,323,,,323,323,354,354,354,354,354,354,354,354,354,354,354,354,354',
574
- '354,354,354,354,354,354,354,354,354,354,354,354,354,354,354,354,354',
575
- '354,354,354,354,354,,,,,,,,,,,,,,354,353,353,353,353,353,353,353,353',
576
- '353,353,353,353,353,353,353,353,353,353,353,353,353,353,353,353,353',
577
- '353,353,353,353,353,353,353,353,353,353,,,,,,,,,,,,,,353,141,141,141',
567
+ '294,294,294,294,294,294,294,294,294,294,294,294,,,,,,,,,,,,,,294,295',
568
+ '295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295',
569
+ '295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295',
570
+ ',,,,,,,,,,,,,295,296,296,296,296,296,296,296,296,296,296,296,296,296',
571
+ '296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296',
572
+ '296,296,296,296,296,,,,,,,,,,,,,,296,428,428,428,428,428,428,428,428',
573
+ '428,428,428,428,428,428,428,428,428,428,428,428,428,428,428,428,428',
574
+ '428,428,428,428,428,428,428,428,428,428,,,,,,,,,,,,,,428,342,342,342',
575
+ '342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,342',
576
+ '342,342,342,342,342,342,342,342,342,342,342,342,342,342,342,,,,,,,,',
577
+ ',,,,,342,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336',
578
+ '336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336,336',
579
+ '336,336,336,,,,,,,,,,,,,,336,141,141,141,141,141,141,141,141,141,141',
578
580
  '141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141',
579
- '141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,,,,,,,141',
580
- ',,,,,,141,328,328,328,328,328,328,328,328,328,328,328,328,328,328,328',
581
- '328,328,328,328,328,328,328,328,328,328,328,328,328,328,328,328,328',
582
- '328,328,328,,,,,,,,,,,,,,328,332,332,332,332,332,332,332,332,332,332',
583
- '332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332,332',
584
- '332,332,332,332,332,332,332,332,,,,,,,,,,332,,,,332,334,334,334,334',
585
- '334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334,334',
586
- '334,334,334,334,334,334,334,334,334,334,334,334,334,334,,,,,,,,,,,,',
587
- ',334,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282',
588
- '282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282',
589
- '282,282,,,,,,,282,,,,,,,282,337,337,337,337,337,337,337,337,337,337',
590
- '337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337,337',
591
- '337,337,337,337,337,337,337,337,,,,,,,,,,,,,,337,279,279,279,279,279',
581
+ '141,141,141,141,141,141,141,141,,,,,,,141,,,,,,,141,333,333,333,333',
582
+ '333,333,333,333,333,333,333,333,333,333,333,333,333,333,333,333,333',
583
+ '333,333,333,333,333,333,333,333,333,333,333,333,333,333,,,,,,,,,,,,',
584
+ ',333,331,331,331,331,331,331,331,331,331,331,331,331,331,331,331,331',
585
+ '331,331,331,331,331,331,331,331,331,331,331,331,331,331,331,331,331',
586
+ '331,331,,,,,,,,,,331,,,,331,327,327,327,327,327,327,327,327,327,327',
587
+ '327,327,327,327,327,327,327,327,327,327,327,327,327,327,327,327,327',
588
+ '327,327,327,327,327,327,327,327,,,,,,,,,,,,,,327,279,279,279,279,279',
592
589
  '279,279,279,279,279,279,279,279,279,279,279,279,279,279,279,279,279',
593
590
  '279,279,279,279,279,279,279,279,279,279,279,279,279,,,,,,,,,,,,,,279',
594
- '343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343',
595
- '343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343',
596
- '343,,,,,,,,,,,,,,343,427,427,427,427,427,427,427,427,427,427,427,427',
597
- '427,427,427,427,427,427,427,427,427,427,427,427,427,427,427,427,427',
598
- '427,427,427,427,427,427,,,,,,,,,,,,,,427,286,286,286,286,286,286,286',
599
- '286,286,286,286,286,286,286,286,286,286,286,286,286,286,286,286,286',
600
- '286,286,286,286,286,286,286,286,286,286,286,,,,,,,286,,,,,,,286' ]
601
- racc_action_check = arr = ::Array.new(6308, nil)
591
+ '164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164',
592
+ '164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164',
593
+ '164,,,,,,,,,,,,,,164,322,322,322,322,322,322,322,322,322,322,322,322',
594
+ '322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322,322',
595
+ '322,322,322,322,322,322,,,,,,,,,,322,,,322,322,152,152,152,152,152,152',
596
+ '152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152',
597
+ '152,152,152,152,152,152,152,152,152,152,152,152,,,,,,,,,,,,,,152,155',
598
+ '155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155',
599
+ '155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155',
600
+ ',,,,,,,,,,,,155,155' ]
601
+ racc_action_check = arr = ::Array.new(6261, nil)
602
602
  idx = 0
603
603
  clist.each do |str|
604
604
  str.split(',', -1).each do |i|
@@ -608,51 +608,51 @@ clist = [
608
608
  end
609
609
 
610
610
  racc_action_pointer = [
611
- 474, 553, 75, nil, 257, nil, nil, nil, 209, nil,
612
- nil, nil, nil, nil, nil, nil, nil, nil, 452, nil,
613
- nil, -2, 447, 470, nil, nil, 353, nil, 3431, nil,
614
- 157, 378, 318, nil, 372, nil, nil, nil, nil, 319,
615
- nil, 247, -69, nil, nil, nil, nil, nil, nil, nil,
616
- nil, 1066, nil, 1099, 181, 1164, -7, 1229, nil, 1261,
617
- 1294, 1326, 4116, nil, 251, nil, nil, 103, nil, 362,
618
- 351, -41, nil, nil, nil, 1554, nil, 1617, 1649, 1682,
619
- nil, nil, 1714, 180, 333, 370, 370, 327, nil, 415,
620
- 691, 66, 376, 328, nil, 4074, 2196, 2228, 2261, 2293,
621
- 2326, 2358, 2391, 2423, 2456, 2488, 2521, 2553, 2586, 2618,
622
- 2651, 2683, 2716, 2748, 2781, 2813, 2846, 2878, 2911, 2943,
623
- 2976, 3008, 3041, 1034, 3106, 3138, 3171, 3203, 3236, 3268,
624
- 3301, 3333, 3366, 3398, 153, 969, 385, 437, 4148, 46,
625
- nil, 5771, 448, 3721, 498, nil, 499, 503, nil, nil,
626
- 457, 159, 5036, -52, nil, 4559, -85, 142, 222, nil,
627
- 3882, 3979, 479, nil, 4608, 475, 513, 3947, nil, 3914,
628
- 458, 206, 4042, nil, 460, 450, 1835, 1910, 3849, 451,
629
- nil, 3817, 3754, 3689, 3656, nil, nil, nil, nil, 493,
630
- 101, 696, 140, 393, 521, 4351, 4192, 474, 463, 462,
631
- 124, 79, -26, 95, nil, 3496, nil, nil, nil, nil,
632
- 609, 4657, 1567, 1890, 2018, 4706, 2146, 3509, 3767, 3994,
633
- 4755, 4773, 4822, 4840, 4889, 291, 380, 508, 812, 4093,
634
- 4125, 4180, 4233, 4286, 4339, 276, 4392, 270, 1512, 329,
635
- 328, 1587, 326, 5134, 5183, 5232, 5281, 5330, 894, 5428,
636
- 329, 2133, nil, nil, nil, nil, 220, 2100, 329, nil,
637
- 2068, nil, 2005, nil, 1001, 1877, 1844, 92, 80, nil,
638
- nil, 223, 219, 67, 124, 140, 134, 116, 1812, 6065,
639
- 315, 1779, 5967, 272, 1747, 1521, 6212, 265, 54, 216,
640
- 217, 166, 5575, 5526, 5477, 5379, 5085, 194, 190, 123,
641
- 86, 1489, 1456, 150, 1424, 778, nil, 126, 1359, -2,
642
- 508, 1196, 1131, 3073, nil, 4, 127, 9, 155, 127,
643
- 141, 143, 1391, 5624, 185, nil, 1940, nil, 5820, 296,
644
- 255, nil, 5869, nil, 5918, nil, nil, 6016, 299, nil,
645
- 306, 316, nil, 6114, 323, 230, nil, 1972, nil, nil,
646
- -20, -9, nil, 5722, 5673, nil, 899, 3, nil, 824,
647
- nil, nil, 4404, 4457, 4298, nil, 396, 124, nil, 405,
648
- nil, 408, 3463, nil, 4938, nil, nil, 4987, nil, nil,
649
- nil, nil, 215, 393, 480, nil, -46, 405, 417, nil,
650
- nil, nil, 318, 492, 3559, nil, 516, 520, 521, 522,
651
- nil, 501, nil, 524, 444, 223, nil, 494, -7, 496,
652
- 3591, nil, 3624, 346, 4510, nil, nil, nil, nil, nil,
653
- nil, nil, 98, 454, 461, nil, 99, 6163, 4245, -3,
654
- 168, 542, 511, 545, 602, 55, nil, -21, nil, -7,
655
- 560, nil ]
611
+ 472, 736, 9, nil, 207, nil, nil, nil, 246, nil,
612
+ nil, nil, nil, nil, nil, nil, nil, nil, 628, nil,
613
+ nil, -2, 604, 641, nil, nil, 602, nil, 1937, nil,
614
+ 198, 600, 445, nil, 578, nil, nil, nil, nil, 236,
615
+ nil, 280, 459, nil, nil, nil, nil, nil, nil, nil,
616
+ nil, 1066, nil, 1099, 80, 1164, 4168, 1229, nil, 1292,
617
+ 1324, 1357, -7, nil, 284, nil, nil, 499, nil, 328,
618
+ 249, -41, nil, nil, nil, 1645, nil, 1677, 1710, 1742,
619
+ nil, nil, 1775, 247, 497, 483, 479, 433, nil, 519,
620
+ 296, 119, 473, 407, nil, 4136, 2195, 2227, 2260, 2292,
621
+ 2325, 2357, 2390, 2422, 2455, 2487, 2520, 2552, 2585, 2617,
622
+ 2650, 2682, 2715, 2747, 2780, 2812, 2845, 2877, 2910, 2942,
623
+ 2975, 3007, 4071, 1034, 3105, 3137, 3170, 3202, 3235, 3267,
624
+ 3300, 3332, 3365, 3397, 50, 894, 435, 392, 4103, 69,
625
+ nil, 5773, 297, 3750, 304, nil, 238, 236, nil, nil,
626
+ 180, 170, 6116, -75, nil, 6165, -45, 223, 186, nil,
627
+ 4008, 3975, -81, nil, 6018, 473, 98, 3717, nil, 3685,
628
+ 174, 120, 3590, nil, 301, 393, 1540, 1487, 2162, 401,
629
+ nil, 2097, 2065, 1872, 1840, nil, nil, nil, nil, 491,
630
+ 192, 4677, 15, 519, 126, 4371, 4424, 521, 522, 524,
631
+ 129, 600, 503, 208, nil, 1454, nil, nil, nil, nil,
632
+ 390, 607, 696, 1242, 1469, 4775, 1595, 2017, 3477, 3637,
633
+ 3763, 4021, 4824, 4842, 4891, 307, 328, 506, 723, 812,
634
+ 4080, 4200, 4253, 4306, 4359, 4412, 4465, 1187, 1262, 530,
635
+ 553, 1413, 558, 5087, 5136, 5185, 5234, 5283, 969, 5381,
636
+ 638, 1131, nil, nil, nil, nil, 254, 1196, 642, nil,
637
+ 1905, nil, 1970, nil, 1001, 2002, 3462, 183, 55, nil,
638
+ nil, 281, 289, 69, 179, 268, 173, 118, 3622, 5969,
639
+ 338, 1807, 4579, 598, 1389, 1422, 4940, 528, 72, 517,
640
+ 517, 458, 4628, 4989, 5479, 5528, 5577, 480, 220, 229,
641
+ 309, 2130, 3525, 470, 3557, 383, nil, 160, 3813, 121,
642
+ 112, 3845, 3910, 3040, nil, 27, 136, 55, -26, 168,
643
+ 174, 3943, 6067, 183, nil, 3878, nil, 5920, 260, 253,
644
+ nil, 5871, nil, 5822, nil, nil, 5724, 311, nil, 315,
645
+ 331, nil, 5675, 383, 235, nil, 3430, nil, 437, 98,
646
+ -7, nil, 5332, 5038, nil, 899, 3, nil, 824, nil,
647
+ nil, 4265, 4318, 4212, nil, 503, 112, nil, 505, 528,
648
+ 494, 1549, nil, 5430, nil, nil, 4726, nil, nil, nil,
649
+ nil, 307, 453, nil, 535, nil, 57, 456, 463, nil,
650
+ nil, nil, 432, 518, 3072, nil, 543, 544, 545, -5,
651
+ nil, 534, nil, nil, 525, 515, 213, nil, 565, -9,
652
+ 573, 1517, nil, 1582, 689, 4530, nil, nil, nil, nil,
653
+ nil, 618, nil, 97, 561, 570, nil, -21, 5626, 4477,
654
+ -7, 778, 689, 696, 665, 701, 79, -3, nil, nil,
655
+ -20, nil, 75, 730, nil ]
656
656
 
657
657
  racc_action_default = [
658
658
  -1, -244, -2, -3, -6, -8, -9, -10, -11, -12,
@@ -663,7 +663,7 @@ racc_action_default = [
663
663
  -64, -68, -71, -74, -244, -110, -110, -113, -109, -110,
664
664
  -110, -110, -110, -156, -244, -165, -167, -244, -171, -110,
665
665
  -110, -110, -187, -188, -189, -204, -206, -110, -110, -110,
666
- -215, -216, -110, -244, -244, -244, -110, -242, -243, -244,
666
+ -215, -216, -110, -244, -244, -110, -110, -242, -243, -244,
667
667
  -5, -7, -244, -244, -175, -110, -110, -110, -110, -110,
668
668
  -110, -110, -110, -110, -110, -110, -110, -110, -110, -110,
669
669
  -110, -110, -110, -110, -110, -110, -110, -110, -110, -110,
@@ -675,7 +675,7 @@ racc_action_default = [
675
675
  -244, -244, -110, -106, -114, -152, -153, -154, -110, -244,
676
676
  -155, -110, -110, -110, -110, -169, -173, -174, -111, -244,
677
677
  -244, -205, -201, -244, -244, -244, -244, -244, -244, -244,
678
- -224, -230, -244, -244, -240, -110, 442, -4, -168, -158,
678
+ -224, -230, -244, -244, -240, -110, 445, -4, -168, -158,
679
679
  -117, -118, -119, -120, -121, -122, -123, -124, -125, -126,
680
680
  -127, -128, -129, -130, -131, -132, -133, -134, -135, -136,
681
681
  -137, -138, -139, -140, -141, -142, -143, -144, -145, -146,
@@ -686,132 +686,132 @@ racc_action_default = [
686
686
  -244, -110, -115, -244, -110, -110, -115, -244, -244, -82,
687
687
  -244, -244, -244, -159, -160, -161, -162, -244, -191, -190,
688
688
  -194, -110, -110, -244, -110, -110, -231, -244, -110, -244,
689
- -244, -110, -110, -110, -221, -244, -244, -229, -244, -244,
690
- -104, -244, -110, -244, -244, -85, -90, -86, -91, -81,
691
- -83, -98, -244, -67, -70, -73, -76, -77, -244, -180,
692
- -244, -244, -99, -116, -244, -244, -102, -110, -105, -112,
693
- -244, -195, -192, -202, -203, -207, -244, -229, -210, -244,
694
- -214, -217, -244, -244, -244, -222, -244, -244, -225, -244,
695
- -238, -244, -110, -241, -213, -87, -88, -89, -65, -97,
696
- -181, -182, -108, -244, -244, -193, -244, -244, -196, -197,
689
+ -244, -110, -110, -110, -221, -244, -244, -229, -244, -104,
690
+ -244, -110, -244, -244, -85, -90, -86, -91, -81, -83,
691
+ -98, -244, -67, -70, -73, -76, -77, -244, -180, -244,
692
+ -244, -99, -116, -244, -244, -102, -110, -105, -110, -244,
693
+ -195, -192, -202, -203, -207, -244, -229, -210, -244, -214,
694
+ -217, -244, -244, -244, -222, -244, -244, -225, -244, -244,
695
+ -110, -110, -241, -213, -87, -88, -89, -65, -97, -181,
696
+ -182, -108, -244, -112, -244, -193, -244, -244, -196, -197,
697
697
  -208, -232, -233, -244, -110, -211, -244, -244, -244, -244,
698
- -227, -244, -226, -244, -244, -107, -183, -194, -244, -194,
699
- -110, -234, -110, -110, -244, -218, -219, -220, -223, -228,
700
- -239, -103, -244, -244, -198, -199, -244, -200, -244, -235,
701
- -110, -244, -194, -244, -110, -236, -184, -244, -185, -237,
702
- -244, -186 ]
698
+ -227, -244, -226, -238, -244, -244, -107, -183, -194, -244,
699
+ -194, -110, -234, -110, -110, -244, -218, -219, -220, -223,
700
+ -228, -244, -103, -244, -244, -198, -199, -244, -200, -244,
701
+ -235, -110, -244, -244, -194, -244, -110, -236, -239, -184,
702
+ -244, -185, -237, -244, -186 ]
703
703
 
704
704
  racc_goto_table = [
705
- 90, 26, 2, 276, 200, 26, 91, 369, 144, 389,
706
- 274, 147, 391, 150, 272, 165, 166, 92, 151, 271,
707
- 250, 94, 168, 1, 93, 303, 307, 180, 204, 162,
708
- 190, 336, 199, 386, 341, 192, 136, 315, 207, 392,
709
- nil, nil, nil, nil, nil, nil, nil, 411, 21, 198,
710
- nil, nil, 21, nil, nil, nil, nil, nil, 401, nil,
711
- nil, nil, nil, nil, 150, 171, 425, 277, nil, 158,
712
- 156, nil, 270, nil, 281, nil, 141, nil, 92, 92,
713
- 188, nil, 186, 187, 350, 93, 93, nil, nil, 90,
714
- nil, 26, nil, nil, nil, 203, 209, nil, nil, 152,
705
+ 90, 2, 26, 92, 151, 91, 26, 150, 200, 144,
706
+ 271, 165, 147, 166, 389, 274, 276, 93, 391, 250,
707
+ 168, 272, 94, 303, 307, 1, 180, 204, 162, 190,
708
+ 335, 199, 368, 386, 340, 192, 136, 315, 207, 392,
709
+ nil, nil, nil, nil, nil, nil, nil, 198, 21, nil,
710
+ nil, 171, 21, nil, 412, nil, nil, nil, 150, nil,
711
+ nil, nil, nil, nil, 92, 92, 188, nil, 277, nil,
712
+ 158, nil, nil, 426, 156, 270, 141, 281, 93, 93,
713
+ 202, 203, 401, 186, 187, nil, nil, nil, 349, 90,
714
+ nil, nil, 26, nil, nil, nil, 173, 209, nil, 152,
715
715
  nil, 155, nil, nil, nil, nil, nil, 175, 176, 177,
716
- 173, nil, nil, nil, nil, 309, 310, nil, nil, 273,
717
- 275, 276, 318, 191, 276, 193, 194, 195, 274, nil,
718
- 196, 274, 272, 324, nil, 272, 288, 271, 21, 254,
719
- 271, 289, nil, nil, 210, 211, 212, 213, 214, 215,
716
+ nil, nil, nil, nil, nil, 273, nil, 275, nil, 309,
717
+ 310, nil, 288, 191, nil, 193, 194, 195, 271, nil,
718
+ 196, 271, 323, 274, 276, 289, 274, 276, 21, 272,
719
+ 254, nil, 272, nil, 210, 211, 212, 213, 214, 215,
720
720
  216, 217, 218, 219, 220, 221, 222, 223, 224, 225,
721
721
  226, 227, 228, 229, 230, 231, 232, 233, 234, 235,
722
722
  236, 237, 238, 239, 240, 241, 242, 243, 244, 245,
723
- 246, 247, 270, 249, nil, 277, 158, 290, 277, nil,
724
- nil, 422, 281, 426, 340, nil, 258, nil, nil, nil,
725
- nil, nil, 26, 317, nil, 299, 300, nil, 279, 282,
726
- nil, nil, nil, 270, 283, 286, 437, 152, 299, 320,
727
- 282, nil, nil, nil, nil, 291, 292, 330, nil, 293,
728
- 294, 295, 296, 329, 139, nil, 368, 273, 275, nil,
729
- 273, 275, nil, nil, nil, nil, nil, nil, nil, 21,
730
- nil, 144, nil, 147, nil, nil, nil, nil, 321, nil,
731
- nil, nil, 170, nil, nil, nil, nil, nil, 179, nil,
732
- 384, nil, nil, nil, nil, nil, nil, nil, nil, nil,
733
- nil, nil, 396, 397, 398, nil, 399, 400, nil, 402,
734
- nil, 403, nil, nil, nil, nil, 323, nil, nil, 328,
735
- nil, 179, nil, nil, nil, nil, 26, 357, 332, nil,
736
- 334, nil, 155, 337, nil, 90, 330, nil, nil, 338,
737
- nil, 419, 329, nil, nil, nil, 155, nil, nil, 279,
738
- nil, nil, 343, nil, nil, nil, nil, nil, 344, nil,
739
- nil, nil, 431, nil, 179, nil, 433, nil, nil, 353,
740
- 354, nil, 356, 21, nil, 90, 359, 440, nil, 362,
741
- 363, 364, nil, nil, nil, nil, nil, 139, nil, nil,
742
- 374, nil, nil, 139, 377, nil, nil, nil, 139, nil,
743
- nil, nil, nil, nil, 139, nil, nil, nil, nil, nil,
723
+ 246, 247, 258, 249, 139, 270, 277, 158, nil, 277,
724
+ nil, 290, nil, nil, nil, 281, 423, 339, 427, nil,
725
+ 283, nil, 317, 26, nil, nil, 299, nil, 279, 282,
726
+ 300, 291, 170, nil, nil, 286, 270, 152, 179, 299,
727
+ 282, 329, 440, 319, nil, nil, 292, nil, nil, 293,
728
+ 294, 295, 296, 273, 328, 275, 273, nil, 275, nil,
729
+ 367, nil, 369, nil, 320, nil, nil, nil, nil, 21,
730
+ nil, 179, 144, nil, 147, nil, nil, nil, nil, nil,
731
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
732
+ nil, nil, nil, 384, nil, nil, nil, nil, nil, nil,
733
+ nil, nil, nil, nil, nil, 396, 397, 398, nil, 399,
734
+ 400, nil, 402, nil, 179, nil, 322, nil, nil, 327,
735
+ nil, nil, nil, nil, nil, 337, 356, 26, 331, 329,
736
+ 333, nil, 155, 336, nil, 90, nil, 139, nil, nil,
737
+ nil, nil, 328, 139, 343, 420, 155, nil, 139, 279,
738
+ nil, nil, 342, nil, 139, nil, nil, nil, nil, nil,
739
+ nil, nil, nil, 383, nil, 432, nil, 433, nil, 352,
740
+ 353, 435, 355, 21, 90, nil, 358, nil, nil, 361,
741
+ 362, 363, nil, nil, 443, 404, nil, nil, nil, 373,
742
+ nil, nil, nil, 376, nil, nil, nil, nil, nil, nil,
743
+ nil, nil, nil, nil, nil, 382, nil, nil, nil, nil,
744
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
744
745
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
745
- 383, nil, nil, nil, nil, nil, nil, nil, nil, nil,
746
- nil, nil, nil, nil, 26, 429, nil, nil, nil, nil,
747
- nil, nil, nil, nil, nil, 404, nil, 90, nil, nil,
748
- nil, 26, 435, 90, nil, 26, 439, 90, nil, nil,
749
- nil, nil, 414, nil, nil, nil, nil, nil, nil, nil,
750
- nil, nil, nil, nil, nil, nil, nil, nil, 427, nil,
751
- 428, 21, nil, nil, nil, nil, nil, nil, nil, nil,
752
- nil, nil, nil, nil, nil, nil, nil, nil, 21, nil,
753
- nil, nil, 21 ]
746
+ 405, nil, nil, nil, nil, 430, 26, nil, nil, nil,
747
+ nil, nil, nil, nil, nil, nil, nil, nil, 90, nil,
748
+ nil, nil, 437, 26, nil, 90, nil, 442, 26, nil,
749
+ 90, nil, 415, nil, nil, nil, nil, nil, nil, nil,
750
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, 428,
751
+ nil, 429, 21, nil, nil, nil, nil, nil, nil, nil,
752
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, 21,
753
+ nil, nil, nil, nil, 21 ]
754
754
 
755
755
  racc_goto_check = [
756
- 4, 27, 2, 34, 65, 27, 2, 39, 48, 67,
757
- 31, 48, 71, 49, 26, 30, 32, 52, 44, 25,
758
- 51, 60, 40, 1, 41, 69, 69, 58, 56, 55,
759
- 57, 47, 43, 66, 36, 68, 24, 70, 3, 72,
760
- nil, nil, nil, nil, nil, nil, nil, 71, 21, 40,
761
- nil, nil, 21, nil, nil, nil, nil, nil, 39, nil,
762
- nil, nil, nil, nil, 49, 52, 67, 37, nil, 61,
763
- 53, nil, 62, nil, 62, nil, 21, nil, 52, 52,
764
- 52, nil, 60, 60, 64, 41, 41, nil, nil, 4,
765
- nil, 27, nil, nil, nil, 52, 27, nil, nil, 21,
756
+ 4, 2, 27, 52, 44, 2, 27, 49, 65, 48,
757
+ 25, 30, 48, 32, 67, 31, 34, 41, 71, 51,
758
+ 40, 26, 60, 69, 69, 1, 58, 56, 55, 57,
759
+ 47, 43, 39, 66, 36, 68, 24, 70, 3, 72,
760
+ nil, nil, nil, nil, nil, nil, nil, 40, 21, nil,
761
+ nil, 52, 21, nil, 71, nil, nil, nil, 49, nil,
762
+ nil, nil, nil, nil, 52, 52, 52, nil, 37, nil,
763
+ 61, nil, nil, 67, 53, 62, 21, 62, 41, 41,
764
+ 52, 52, 39, 60, 60, nil, nil, nil, 64, 4,
765
+ nil, nil, 27, nil, nil, nil, 54, 27, nil, 21,
766
766
  nil, 21, nil, nil, nil, nil, nil, 21, 21, 21,
767
- 54, nil, nil, nil, nil, 65, 65, nil, nil, 30,
768
- 32, 34, 65, 21, 34, 21, 21, 21, 31, nil,
769
- 21, 31, 26, 51, nil, 26, 44, 25, 21, 27,
770
- 25, 49, nil, nil, 21, 21, 21, 21, 21, 21,
767
+ nil, nil, nil, nil, nil, 30, nil, 32, nil, 65,
768
+ 65, nil, 44, 21, nil, 21, 21, 21, 25, nil,
769
+ 21, 25, 51, 31, 34, 49, 31, 34, 21, 26,
770
+ 27, nil, 26, nil, 21, 21, 21, 21, 21, 21,
771
771
  21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
772
772
  21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
773
773
  21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
774
- 21, 21, 62, 21, nil, 37, 61, 53, 37, nil,
775
- nil, 64, 62, 64, 62, nil, 54, nil, nil, nil,
776
- nil, nil, 27, 2, nil, 61, 53, nil, 21, 21,
777
- nil, nil, nil, 62, 54, 21, 64, 21, 61, 53,
778
- 21, nil, nil, nil, nil, 54, 21, 49, nil, 21,
779
- 21, 21, 21, 48, 22, nil, 65, 30, 32, nil,
780
- 30, 32, nil, nil, nil, nil, nil, nil, nil, 21,
781
- nil, 48, nil, 48, nil, nil, nil, nil, 54, nil,
782
- nil, nil, 22, nil, nil, nil, nil, nil, 22, nil,
783
- 65, nil, nil, nil, nil, nil, nil, nil, nil, nil,
784
- nil, nil, 65, 65, 65, nil, 65, 65, nil, 65,
785
- nil, 65, nil, nil, nil, nil, 21, nil, nil, 21,
786
- nil, 22, nil, nil, nil, nil, 27, 2, 21, nil,
787
- 21, nil, 21, 21, nil, 4, 49, nil, nil, 54,
788
- nil, 65, 48, nil, nil, nil, 21, nil, nil, 21,
789
- nil, nil, 21, nil, nil, nil, nil, nil, 54, nil,
790
- nil, nil, 65, nil, 22, nil, 65, nil, nil, 21,
791
- 21, nil, 21, 21, nil, 4, 21, 65, nil, 21,
792
- 21, 21, nil, nil, nil, nil, nil, 22, nil, nil,
793
- 21, nil, nil, 22, 21, nil, nil, nil, 22, nil,
794
- nil, nil, nil, nil, 22, nil, nil, nil, nil, nil,
774
+ 21, 21, 54, 21, 22, 62, 37, 61, nil, 37,
775
+ nil, 53, nil, nil, nil, 62, 64, 62, 64, nil,
776
+ 54, nil, 2, 27, nil, nil, 61, nil, 21, 21,
777
+ 53, 54, 22, nil, nil, 21, 62, 21, 22, 61,
778
+ 21, 49, 64, 53, nil, nil, 21, nil, nil, 21,
779
+ 21, 21, 21, 30, 48, 32, 30, nil, 32, nil,
780
+ 65, nil, 65, nil, 54, nil, nil, nil, nil, 21,
781
+ nil, 22, 48, nil, 48, nil, nil, nil, nil, nil,
782
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
783
+ nil, nil, nil, 65, nil, nil, nil, nil, nil, nil,
784
+ nil, nil, nil, nil, nil, 65, 65, 65, nil, 65,
785
+ 65, nil, 65, nil, 22, nil, 21, nil, nil, 21,
786
+ nil, nil, nil, nil, nil, 54, 2, 27, 21, 49,
787
+ 21, nil, 21, 21, nil, 4, nil, 22, nil, nil,
788
+ nil, nil, 48, 22, 54, 65, 21, nil, 22, 21,
789
+ nil, nil, 21, nil, 22, nil, nil, nil, nil, nil,
790
+ nil, nil, nil, 52, nil, 65, nil, 65, nil, 21,
791
+ 21, 65, 21, 21, 4, nil, 21, nil, nil, 21,
792
+ 21, 21, nil, nil, 65, 52, nil, nil, nil, 21,
793
+ nil, nil, nil, 21, nil, nil, nil, nil, nil, nil,
794
+ nil, nil, nil, nil, nil, 54, nil, nil, nil, nil,
795
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
795
796
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
796
- 54, nil, nil, nil, nil, nil, nil, nil, nil, nil,
797
- nil, nil, nil, nil, 27, 2, nil, nil, nil, nil,
798
- nil, nil, nil, nil, nil, 54, nil, 4, nil, nil,
799
- nil, 27, 2, 4, nil, 27, 2, 4, nil, nil,
800
- nil, nil, 21, nil, nil, nil, nil, nil, nil, nil,
801
- nil, nil, nil, nil, nil, nil, nil, nil, 21, nil,
802
- 21, 21, nil, nil, nil, nil, nil, nil, nil, nil,
803
- nil, nil, nil, nil, nil, nil, nil, nil, 21, nil,
804
- nil, nil, 21 ]
797
+ 54, nil, nil, nil, nil, 2, 27, nil, nil, nil,
798
+ nil, nil, nil, nil, nil, nil, nil, nil, 4, nil,
799
+ nil, nil, 2, 27, nil, 4, nil, 2, 27, nil,
800
+ 4, nil, 21, nil, nil, nil, nil, nil, nil, nil,
801
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, 21,
802
+ nil, 21, 21, nil, nil, nil, nil, nil, nil, nil,
803
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, 21,
804
+ nil, nil, nil, nil, 21 ]
805
805
 
806
806
  racc_goto_pointer = [
807
- nil, 23, 2, -52, -2, nil, nil, nil, nil, nil,
807
+ nil, 25, 1, -52, -2, nil, nil, nil, nil, nil,
808
808
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
809
- nil, 48, 206, nil, 13, -141, -146, 1, nil, nil,
810
- -41, -150, -40, nil, -157, nil, -247, -93, nil, -309,
811
- -34, 16, nil, -51, -33, nil, nil, -233, -23, -29,
812
- nil, -115, 9, 16, 53, -26, -58, -41, -35, nil,
813
- 13, 15, -86, nil, -216, -80, -318, -342, -40, -168,
814
- -163, -345, -318 ]
809
+ nil, 48, 156, nil, 13, -150, -139, 2, nil, nil,
810
+ -45, -145, -43, nil, -144, nil, -247, -92, nil, -284,
811
+ -36, 9, nil, -52, -47, nil, nil, -234, -22, -35,
812
+ nil, -116, -5, 20, 39, -27, -59, -42, -36, nil,
813
+ 14, 16, -83, nil, -212, -76, -317, -336, -40, -170,
814
+ -163, -338, -317 ]
815
815
 
816
816
  racc_goto_default = [
817
817
  nil, nil, nil, 3, 4, 5, 6, 7, 8, 9,
@@ -936,7 +936,7 @@ racc_reduce_table = [
936
936
  1, 148, :_reduce_109,
937
937
  0, 148, :_reduce_110,
938
938
  1, 153, :_reduce_111,
939
- 3, 153, :_reduce_112,
939
+ 4, 153, :_reduce_112,
940
940
  0, 150, :_reduce_113,
941
941
  1, 150, :_reduce_114,
942
942
  1, 151, :_reduce_115,
@@ -1062,8 +1062,8 @@ racc_reduce_table = [
1062
1062
  3, 167, :_reduce_235,
1063
1063
  4, 168, :_reduce_236,
1064
1064
  5, 168, :_reduce_237,
1065
- 4, 110, :_reduce_238,
1066
- 6, 110, :_reduce_239,
1065
+ 5, 110, :_reduce_238,
1066
+ 8, 110, :_reduce_239,
1067
1067
  2, 131, :_reduce_240,
1068
1068
  4, 124, :_reduce_241,
1069
1069
  1, 124, :_reduce_242,
@@ -1071,7 +1071,7 @@ racc_reduce_table = [
1071
1071
 
1072
1072
  racc_reduce_n = 244
1073
1073
 
1074
- racc_shift_n = 442
1074
+ racc_shift_n = 445
1075
1075
 
1076
1076
  racc_token_table = {
1077
1077
  false => 0,
@@ -1345,7 +1345,7 @@ Racc_token_to_s_table = [
1345
1345
  "ArgList",
1346
1346
  "ArgListWithoutNothing",
1347
1347
  "ObjectInstantiationCall",
1348
- "ScopeOrSID",
1348
+ "SIDAndScope",
1349
1349
  "AssignExpression",
1350
1350
  "AssignLHS",
1351
1351
  "VariableRetrieval",
@@ -2138,931 +2138,931 @@ module_eval(<<'.,.,', 'grammar.y', 247)
2138
2138
  end
2139
2139
  .,.,
2140
2140
 
2141
- module_eval(<<'.,.,', 'grammar.y', 251)
2141
+ module_eval(<<'.,.,', 'grammar.y', 252)
2142
2142
  def _reduce_111(val, _values, result)
2143
- val[0]
2143
+ result = [ nil, val[0] ]
2144
2144
  result
2145
2145
  end
2146
2146
  .,.,
2147
2147
 
2148
- module_eval(<<'.,.,', 'grammar.y', 252)
2148
+ module_eval(<<'.,.,', 'grammar.y', 253)
2149
2149
  def _reduce_112(val, _values, result)
2150
- result = Riml::SIDNode.new(val[1])
2150
+ result = [ Riml::SIDNode.new(val[1]), val[3] ]
2151
2151
  result
2152
2152
  end
2153
2153
  .,.,
2154
2154
 
2155
- module_eval(<<'.,.,', 'grammar.y', 256)
2155
+ module_eval(<<'.,.,', 'grammar.y', 257)
2156
2156
  def _reduce_113(val, _values, result)
2157
2157
  result = []
2158
2158
  result
2159
2159
  end
2160
2160
  .,.,
2161
2161
 
2162
- module_eval(<<'.,.,', 'grammar.y', 257)
2162
+ module_eval(<<'.,.,', 'grammar.y', 258)
2163
2163
  def _reduce_114(val, _values, result)
2164
2164
  result = val[0]
2165
2165
  result
2166
2166
  end
2167
2167
  .,.,
2168
2168
 
2169
- module_eval(<<'.,.,', 'grammar.y', 261)
2169
+ module_eval(<<'.,.,', 'grammar.y', 262)
2170
2170
  def _reduce_115(val, _values, result)
2171
2171
  result = val
2172
2172
  result
2173
2173
  end
2174
2174
  .,.,
2175
2175
 
2176
- module_eval(<<'.,.,', 'grammar.y', 262)
2176
+ module_eval(<<'.,.,', 'grammar.y', 263)
2177
2177
  def _reduce_116(val, _values, result)
2178
2178
  result = val[0] << val[2]
2179
2179
  result
2180
2180
  end
2181
2181
  .,.,
2182
2182
 
2183
- module_eval(<<'.,.,', 'grammar.y', 266)
2183
+ module_eval(<<'.,.,', 'grammar.y', 267)
2184
2184
  def _reduce_117(val, _values, result)
2185
2185
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2186
2186
  result
2187
2187
  end
2188
2188
  .,.,
2189
2189
 
2190
- module_eval(<<'.,.,', 'grammar.y', 267)
2190
+ module_eval(<<'.,.,', 'grammar.y', 268)
2191
2191
  def _reduce_118(val, _values, result)
2192
2192
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2193
2193
  result
2194
2194
  end
2195
2195
  .,.,
2196
2196
 
2197
- module_eval(<<'.,.,', 'grammar.y', 269)
2197
+ module_eval(<<'.,.,', 'grammar.y', 270)
2198
2198
  def _reduce_119(val, _values, result)
2199
2199
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2200
2200
  result
2201
2201
  end
2202
2202
  .,.,
2203
2203
 
2204
- module_eval(<<'.,.,', 'grammar.y', 270)
2204
+ module_eval(<<'.,.,', 'grammar.y', 271)
2205
2205
  def _reduce_120(val, _values, result)
2206
2206
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2207
2207
  result
2208
2208
  end
2209
2209
  .,.,
2210
2210
 
2211
- module_eval(<<'.,.,', 'grammar.y', 271)
2211
+ module_eval(<<'.,.,', 'grammar.y', 272)
2212
2212
  def _reduce_121(val, _values, result)
2213
2213
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2214
2214
  result
2215
2215
  end
2216
2216
  .,.,
2217
2217
 
2218
- module_eval(<<'.,.,', 'grammar.y', 274)
2218
+ module_eval(<<'.,.,', 'grammar.y', 275)
2219
2219
  def _reduce_122(val, _values, result)
2220
2220
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2221
2221
  result
2222
2222
  end
2223
2223
  .,.,
2224
2224
 
2225
- module_eval(<<'.,.,', 'grammar.y', 276)
2225
+ module_eval(<<'.,.,', 'grammar.y', 277)
2226
2226
  def _reduce_123(val, _values, result)
2227
2227
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2228
2228
  result
2229
2229
  end
2230
2230
  .,.,
2231
2231
 
2232
- module_eval(<<'.,.,', 'grammar.y', 277)
2232
+ module_eval(<<'.,.,', 'grammar.y', 278)
2233
2233
  def _reduce_124(val, _values, result)
2234
2234
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2235
2235
  result
2236
2236
  end
2237
2237
  .,.,
2238
2238
 
2239
- module_eval(<<'.,.,', 'grammar.y', 278)
2239
+ module_eval(<<'.,.,', 'grammar.y', 279)
2240
2240
  def _reduce_125(val, _values, result)
2241
2241
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2242
2242
  result
2243
2243
  end
2244
2244
  .,.,
2245
2245
 
2246
- module_eval(<<'.,.,', 'grammar.y', 280)
2246
+ module_eval(<<'.,.,', 'grammar.y', 281)
2247
2247
  def _reduce_126(val, _values, result)
2248
2248
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2249
2249
  result
2250
2250
  end
2251
2251
  .,.,
2252
2252
 
2253
- module_eval(<<'.,.,', 'grammar.y', 281)
2253
+ module_eval(<<'.,.,', 'grammar.y', 282)
2254
2254
  def _reduce_127(val, _values, result)
2255
2255
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2256
2256
  result
2257
2257
  end
2258
2258
  .,.,
2259
2259
 
2260
- module_eval(<<'.,.,', 'grammar.y', 282)
2260
+ module_eval(<<'.,.,', 'grammar.y', 283)
2261
2261
  def _reduce_128(val, _values, result)
2262
2262
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2263
2263
  result
2264
2264
  end
2265
2265
  .,.,
2266
2266
 
2267
- module_eval(<<'.,.,', 'grammar.y', 284)
2267
+ module_eval(<<'.,.,', 'grammar.y', 285)
2268
2268
  def _reduce_129(val, _values, result)
2269
2269
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2270
2270
  result
2271
2271
  end
2272
2272
  .,.,
2273
2273
 
2274
- module_eval(<<'.,.,', 'grammar.y', 285)
2274
+ module_eval(<<'.,.,', 'grammar.y', 286)
2275
2275
  def _reduce_130(val, _values, result)
2276
2276
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2277
2277
  result
2278
2278
  end
2279
2279
  .,.,
2280
2280
 
2281
- module_eval(<<'.,.,', 'grammar.y', 286)
2281
+ module_eval(<<'.,.,', 'grammar.y', 287)
2282
2282
  def _reduce_131(val, _values, result)
2283
2283
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2284
2284
  result
2285
2285
  end
2286
2286
  .,.,
2287
2287
 
2288
- module_eval(<<'.,.,', 'grammar.y', 288)
2288
+ module_eval(<<'.,.,', 'grammar.y', 289)
2289
2289
  def _reduce_132(val, _values, result)
2290
2290
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2291
2291
  result
2292
2292
  end
2293
2293
  .,.,
2294
2294
 
2295
- module_eval(<<'.,.,', 'grammar.y', 289)
2295
+ module_eval(<<'.,.,', 'grammar.y', 290)
2296
2296
  def _reduce_133(val, _values, result)
2297
2297
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2298
2298
  result
2299
2299
  end
2300
2300
  .,.,
2301
2301
 
2302
- module_eval(<<'.,.,', 'grammar.y', 290)
2302
+ module_eval(<<'.,.,', 'grammar.y', 291)
2303
2303
  def _reduce_134(val, _values, result)
2304
2304
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2305
2305
  result
2306
2306
  end
2307
2307
  .,.,
2308
2308
 
2309
- module_eval(<<'.,.,', 'grammar.y', 292)
2309
+ module_eval(<<'.,.,', 'grammar.y', 293)
2310
2310
  def _reduce_135(val, _values, result)
2311
2311
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2312
2312
  result
2313
2313
  end
2314
2314
  .,.,
2315
2315
 
2316
- module_eval(<<'.,.,', 'grammar.y', 293)
2316
+ module_eval(<<'.,.,', 'grammar.y', 294)
2317
2317
  def _reduce_136(val, _values, result)
2318
2318
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2319
2319
  result
2320
2320
  end
2321
2321
  .,.,
2322
2322
 
2323
- module_eval(<<'.,.,', 'grammar.y', 294)
2323
+ module_eval(<<'.,.,', 'grammar.y', 295)
2324
2324
  def _reduce_137(val, _values, result)
2325
2325
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2326
2326
  result
2327
2327
  end
2328
2328
  .,.,
2329
2329
 
2330
- module_eval(<<'.,.,', 'grammar.y', 296)
2330
+ module_eval(<<'.,.,', 'grammar.y', 297)
2331
2331
  def _reduce_138(val, _values, result)
2332
2332
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2333
2333
  result
2334
2334
  end
2335
2335
  .,.,
2336
2336
 
2337
- module_eval(<<'.,.,', 'grammar.y', 297)
2337
+ module_eval(<<'.,.,', 'grammar.y', 298)
2338
2338
  def _reduce_139(val, _values, result)
2339
2339
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2340
2340
  result
2341
2341
  end
2342
2342
  .,.,
2343
2343
 
2344
- module_eval(<<'.,.,', 'grammar.y', 298)
2344
+ module_eval(<<'.,.,', 'grammar.y', 299)
2345
2345
  def _reduce_140(val, _values, result)
2346
2346
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2347
2347
  result
2348
2348
  end
2349
2349
  .,.,
2350
2350
 
2351
- module_eval(<<'.,.,', 'grammar.y', 300)
2351
+ module_eval(<<'.,.,', 'grammar.y', 301)
2352
2352
  def _reduce_141(val, _values, result)
2353
2353
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2354
2354
  result
2355
2355
  end
2356
2356
  .,.,
2357
2357
 
2358
- module_eval(<<'.,.,', 'grammar.y', 301)
2358
+ module_eval(<<'.,.,', 'grammar.y', 302)
2359
2359
  def _reduce_142(val, _values, result)
2360
2360
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2361
2361
  result
2362
2362
  end
2363
2363
  .,.,
2364
2364
 
2365
- module_eval(<<'.,.,', 'grammar.y', 302)
2365
+ module_eval(<<'.,.,', 'grammar.y', 303)
2366
2366
  def _reduce_143(val, _values, result)
2367
2367
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2368
2368
  result
2369
2369
  end
2370
2370
  .,.,
2371
2371
 
2372
- module_eval(<<'.,.,', 'grammar.y', 304)
2372
+ module_eval(<<'.,.,', 'grammar.y', 305)
2373
2373
  def _reduce_144(val, _values, result)
2374
2374
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2375
2375
  result
2376
2376
  end
2377
2377
  .,.,
2378
2378
 
2379
- module_eval(<<'.,.,', 'grammar.y', 305)
2379
+ module_eval(<<'.,.,', 'grammar.y', 306)
2380
2380
  def _reduce_145(val, _values, result)
2381
2381
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2382
2382
  result
2383
2383
  end
2384
2384
  .,.,
2385
2385
 
2386
- module_eval(<<'.,.,', 'grammar.y', 306)
2386
+ module_eval(<<'.,.,', 'grammar.y', 307)
2387
2387
  def _reduce_146(val, _values, result)
2388
2388
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2389
2389
  result
2390
2390
  end
2391
2391
  .,.,
2392
2392
 
2393
- module_eval(<<'.,.,', 'grammar.y', 307)
2393
+ module_eval(<<'.,.,', 'grammar.y', 308)
2394
2394
  def _reduce_147(val, _values, result)
2395
2395
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2396
2396
  result
2397
2397
  end
2398
2398
  .,.,
2399
2399
 
2400
- module_eval(<<'.,.,', 'grammar.y', 308)
2400
+ module_eval(<<'.,.,', 'grammar.y', 309)
2401
2401
  def _reduce_148(val, _values, result)
2402
2402
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2403
2403
  result
2404
2404
  end
2405
2405
  .,.,
2406
2406
 
2407
- module_eval(<<'.,.,', 'grammar.y', 309)
2407
+ module_eval(<<'.,.,', 'grammar.y', 310)
2408
2408
  def _reduce_149(val, _values, result)
2409
2409
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2410
2410
  result
2411
2411
  end
2412
2412
  .,.,
2413
2413
 
2414
- module_eval(<<'.,.,', 'grammar.y', 311)
2414
+ module_eval(<<'.,.,', 'grammar.y', 312)
2415
2415
  def _reduce_150(val, _values, result)
2416
2416
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2417
2417
  result
2418
2418
  end
2419
2419
  .,.,
2420
2420
 
2421
- module_eval(<<'.,.,', 'grammar.y', 312)
2421
+ module_eval(<<'.,.,', 'grammar.y', 313)
2422
2422
  def _reduce_151(val, _values, result)
2423
2423
  result = Riml::BinaryOperatorNode.new(val[1], [val[0], val[2]])
2424
2424
  result
2425
2425
  end
2426
2426
  .,.,
2427
2427
 
2428
- module_eval(<<'.,.,', 'grammar.y', 316)
2428
+ module_eval(<<'.,.,', 'grammar.y', 317)
2429
2429
  def _reduce_152(val, _values, result)
2430
2430
  result = Riml::UnaryOperatorNode.new(val[0], [val[1]])
2431
2431
  result
2432
2432
  end
2433
2433
  .,.,
2434
2434
 
2435
- module_eval(<<'.,.,', 'grammar.y', 317)
2435
+ module_eval(<<'.,.,', 'grammar.y', 318)
2436
2436
  def _reduce_153(val, _values, result)
2437
2437
  result = Riml::UnaryOperatorNode.new(val[0], [val[1]])
2438
2438
  result
2439
2439
  end
2440
2440
  .,.,
2441
2441
 
2442
- module_eval(<<'.,.,', 'grammar.y', 318)
2442
+ module_eval(<<'.,.,', 'grammar.y', 319)
2443
2443
  def _reduce_154(val, _values, result)
2444
2444
  result = Riml::UnaryOperatorNode.new(val[0], [val[1]])
2445
2445
  result
2446
2446
  end
2447
2447
  .,.,
2448
2448
 
2449
- module_eval(<<'.,.,', 'grammar.y', 323)
2449
+ module_eval(<<'.,.,', 'grammar.y', 324)
2450
2450
  def _reduce_155(val, _values, result)
2451
2451
  result = Riml::AssignNode.new(val[1][0], val[1][1], val[1][2])
2452
2452
  result
2453
2453
  end
2454
2454
  .,.,
2455
2455
 
2456
- module_eval(<<'.,.,', 'grammar.y', 324)
2456
+ module_eval(<<'.,.,', 'grammar.y', 325)
2457
2457
  def _reduce_156(val, _values, result)
2458
2458
  result = Riml::AssignNode.new(val[0][0], val[0][1], val[0][2])
2459
2459
  result
2460
2460
  end
2461
2461
  .,.,
2462
2462
 
2463
- module_eval(<<'.,.,', 'grammar.y', 328)
2463
+ module_eval(<<'.,.,', 'grammar.y', 329)
2464
2464
  def _reduce_157(val, _values, result)
2465
2465
  result = Riml::MultiAssignNode.new([val[0], val[2]])
2466
2466
  result
2467
2467
  end
2468
2468
  .,.,
2469
2469
 
2470
- module_eval(<<'.,.,', 'grammar.y', 329)
2470
+ module_eval(<<'.,.,', 'grammar.y', 330)
2471
2471
  def _reduce_158(val, _values, result)
2472
2472
  val[0].assigns << val[2]; result = val[0]
2473
2473
  result
2474
2474
  end
2475
2475
  .,.,
2476
2476
 
2477
- module_eval(<<'.,.,', 'grammar.y', 334)
2477
+ module_eval(<<'.,.,', 'grammar.y', 335)
2478
2478
  def _reduce_159(val, _values, result)
2479
2479
  result = [val[1], val[0], val[2]]
2480
2480
  result
2481
2481
  end
2482
2482
  .,.,
2483
2483
 
2484
- module_eval(<<'.,.,', 'grammar.y', 335)
2484
+ module_eval(<<'.,.,', 'grammar.y', 336)
2485
2485
  def _reduce_160(val, _values, result)
2486
2486
  result = [val[1], val[0], val[2]]
2487
2487
  result
2488
2488
  end
2489
2489
  .,.,
2490
2490
 
2491
- module_eval(<<'.,.,', 'grammar.y', 336)
2491
+ module_eval(<<'.,.,', 'grammar.y', 337)
2492
2492
  def _reduce_161(val, _values, result)
2493
2493
  result = [val[1], val[0], val[2]]
2494
2494
  result
2495
2495
  end
2496
2496
  .,.,
2497
2497
 
2498
- module_eval(<<'.,.,', 'grammar.y', 337)
2498
+ module_eval(<<'.,.,', 'grammar.y', 338)
2499
2499
  def _reduce_162(val, _values, result)
2500
2500
  result = [val[1], val[0], val[2]]
2501
2501
  result
2502
2502
  end
2503
2503
  .,.,
2504
2504
 
2505
- module_eval(<<'.,.,', 'grammar.y', 341)
2505
+ module_eval(<<'.,.,', 'grammar.y', 342)
2506
2506
  def _reduce_163(val, _values, result)
2507
2507
  result = val[0]
2508
2508
  result
2509
2509
  end
2510
2510
  .,.,
2511
2511
 
2512
- module_eval(<<'.,.,', 'grammar.y', 342)
2512
+ module_eval(<<'.,.,', 'grammar.y', 343)
2513
2513
  def _reduce_164(val, _values, result)
2514
2514
  result = val[0]
2515
2515
  result
2516
2516
  end
2517
2517
  .,.,
2518
2518
 
2519
- module_eval(<<'.,.,', 'grammar.y', 343)
2519
+ module_eval(<<'.,.,', 'grammar.y', 344)
2520
2520
  def _reduce_165(val, _values, result)
2521
2521
  result = val[0]
2522
2522
  result
2523
2523
  end
2524
2524
  .,.,
2525
2525
 
2526
- module_eval(<<'.,.,', 'grammar.y', 344)
2526
+ module_eval(<<'.,.,', 'grammar.y', 345)
2527
2527
  def _reduce_166(val, _values, result)
2528
2528
  result = val[0]
2529
2529
  result
2530
2530
  end
2531
2531
  .,.,
2532
2532
 
2533
- module_eval(<<'.,.,', 'grammar.y', 345)
2533
+ module_eval(<<'.,.,', 'grammar.y', 346)
2534
2534
  def _reduce_167(val, _values, result)
2535
2535
  result = val[0]
2536
2536
  result
2537
2537
  end
2538
2538
  .,.,
2539
2539
 
2540
- module_eval(<<'.,.,', 'grammar.y', 350)
2540
+ module_eval(<<'.,.,', 'grammar.y', 351)
2541
2541
  def _reduce_168(val, _values, result)
2542
2542
  result = Riml::GetVariableNode.new(val[0], val[1])
2543
2543
  result
2544
2544
  end
2545
2545
  .,.,
2546
2546
 
2547
- module_eval(<<'.,.,', 'grammar.y', 351)
2547
+ module_eval(<<'.,.,', 'grammar.y', 352)
2548
2548
  def _reduce_169(val, _values, result)
2549
2549
  result = Riml::GetSpecialVariableNode.new(val[0], val[1])
2550
2550
  result
2551
2551
  end
2552
2552
  .,.,
2553
2553
 
2554
- module_eval(<<'.,.,', 'grammar.y', 352)
2554
+ module_eval(<<'.,.,', 'grammar.y', 353)
2555
2555
  def _reduce_170(val, _values, result)
2556
2556
  result = Riml::GetVariableByScopeAndDictNameNode.new(val[0], val[1])
2557
2557
  result
2558
2558
  end
2559
2559
  .,.,
2560
2560
 
2561
- module_eval(<<'.,.,', 'grammar.y', 356)
2561
+ module_eval(<<'.,.,', 'grammar.y', 357)
2562
2562
  def _reduce_171(val, _values, result)
2563
2563
  result = val[0]
2564
2564
  result
2565
2565
  end
2566
2566
  .,.,
2567
2567
 
2568
- module_eval(<<'.,.,', 'grammar.y', 357)
2568
+ module_eval(<<'.,.,', 'grammar.y', 358)
2569
2569
  def _reduce_172(val, _values, result)
2570
2570
  result = Riml::GetCurlyBraceNameNode.new(val[0], val[1])
2571
2571
  result
2572
2572
  end
2573
2573
  .,.,
2574
2574
 
2575
- module_eval(<<'.,.,', 'grammar.y', 361)
2575
+ module_eval(<<'.,.,', 'grammar.y', 362)
2576
2576
  def _reduce_173(val, _values, result)
2577
2577
  result = Riml::UnletVariableNode.new('!', [ val[1] ])
2578
2578
  result
2579
2579
  end
2580
2580
  .,.,
2581
2581
 
2582
- module_eval(<<'.,.,', 'grammar.y', 362)
2582
+ module_eval(<<'.,.,', 'grammar.y', 363)
2583
2583
  def _reduce_174(val, _values, result)
2584
2584
  result = Riml::UnletVariableNode.new('!', [ val[1] ])
2585
2585
  result
2586
2586
  end
2587
2587
  .,.,
2588
2588
 
2589
- module_eval(<<'.,.,', 'grammar.y', 363)
2589
+ module_eval(<<'.,.,', 'grammar.y', 364)
2590
2590
  def _reduce_175(val, _values, result)
2591
2591
  result = val[0] << val[1]
2592
2592
  result
2593
2593
  end
2594
2594
  .,.,
2595
2595
 
2596
- module_eval(<<'.,.,', 'grammar.y', 367)
2596
+ module_eval(<<'.,.,', 'grammar.y', 368)
2597
2597
  def _reduce_176(val, _values, result)
2598
2598
  result = Riml::CurlyBraceVariable.new([ val[0] ])
2599
2599
  result
2600
2600
  end
2601
2601
  .,.,
2602
2602
 
2603
- module_eval(<<'.,.,', 'grammar.y', 368)
2603
+ module_eval(<<'.,.,', 'grammar.y', 369)
2604
2604
  def _reduce_177(val, _values, result)
2605
2605
  result = Riml::CurlyBraceVariable.new([ Riml::CurlyBracePart.new(val[0]), val[1] ])
2606
2606
  result
2607
2607
  end
2608
2608
  .,.,
2609
2609
 
2610
- module_eval(<<'.,.,', 'grammar.y', 369)
2610
+ module_eval(<<'.,.,', 'grammar.y', 370)
2611
2611
  def _reduce_178(val, _values, result)
2612
2612
  result = val[0] << Riml::CurlyBracePart.new(val[1])
2613
2613
  result
2614
2614
  end
2615
2615
  .,.,
2616
2616
 
2617
- module_eval(<<'.,.,', 'grammar.y', 370)
2617
+ module_eval(<<'.,.,', 'grammar.y', 371)
2618
2618
  def _reduce_179(val, _values, result)
2619
2619
  result = val[0] << val[1]
2620
2620
  result
2621
2621
  end
2622
2622
  .,.,
2623
2623
 
2624
- module_eval(<<'.,.,', 'grammar.y', 374)
2624
+ module_eval(<<'.,.,', 'grammar.y', 375)
2625
2625
  def _reduce_180(val, _values, result)
2626
2626
  result = Riml::CurlyBracePart.new(val[1])
2627
2627
  result
2628
2628
  end
2629
2629
  .,.,
2630
2630
 
2631
- module_eval(<<'.,.,', 'grammar.y', 375)
2631
+ module_eval(<<'.,.,', 'grammar.y', 376)
2632
2632
  def _reduce_181(val, _values, result)
2633
2633
  result = Riml::CurlyBracePart.new([val[1], val[2]])
2634
2634
  result
2635
2635
  end
2636
2636
  .,.,
2637
2637
 
2638
- module_eval(<<'.,.,', 'grammar.y', 376)
2638
+ module_eval(<<'.,.,', 'grammar.y', 377)
2639
2639
  def _reduce_182(val, _values, result)
2640
2640
  result = Riml::CurlyBracePart.new([val[1], val[2]])
2641
2641
  result
2642
2642
  end
2643
2643
  .,.,
2644
2644
 
2645
- module_eval(<<'.,.,', 'grammar.y', 382)
2645
+ module_eval(<<'.,.,', 'grammar.y', 383)
2646
2646
  def _reduce_183(val, _values, result)
2647
- result = Riml.const_get(val[0]).new('!', val[1], val[2], [], val[3], val[4])
2647
+ result = Riml.const_get(val[0]).new('!', val[1][0], val[1][1], val[2], [], val[3], val[4])
2648
2648
  result
2649
2649
  end
2650
2650
  .,.,
2651
2651
 
2652
- module_eval(<<'.,.,', 'grammar.y', 383)
2652
+ module_eval(<<'.,.,', 'grammar.y', 384)
2653
2653
  def _reduce_184(val, _values, result)
2654
- result = Riml.const_get(val[0]).new('!', val[1], val[2], val[4], val[6], val[7])
2654
+ result = Riml.const_get(val[0]).new('!', val[1][0], val[1][1], val[2], val[4], val[6], val[7])
2655
2655
  result
2656
2656
  end
2657
2657
  .,.,
2658
2658
 
2659
- module_eval(<<'.,.,', 'grammar.y', 384)
2659
+ module_eval(<<'.,.,', 'grammar.y', 385)
2660
2660
  def _reduce_185(val, _values, result)
2661
- result = Riml.const_get(val[0]).new('!', val[1], val[2], [val[4]], val[6], val[7])
2661
+ result = Riml.const_get(val[0]).new('!', val[1][0], val[1][1], val[2], [val[4]], val[6], val[7])
2662
2662
  result
2663
2663
  end
2664
2664
  .,.,
2665
2665
 
2666
- module_eval(<<'.,.,', 'grammar.y', 385)
2666
+ module_eval(<<'.,.,', 'grammar.y', 386)
2667
2667
  def _reduce_186(val, _values, result)
2668
- result = Riml.const_get(val[0]).new('!', val[1], val[2], val[4] << val[6], val[8], val[9])
2668
+ result = Riml.const_get(val[0]).new('!', val[1][0], val[1][1], val[2], val[4] << val[6], val[8], val[9])
2669
2669
  result
2670
2670
  end
2671
2671
  .,.,
2672
2672
 
2673
- module_eval(<<'.,.,', 'grammar.y', 389)
2673
+ module_eval(<<'.,.,', 'grammar.y', 390)
2674
2674
  def _reduce_187(val, _values, result)
2675
2675
  result = "DefNode"
2676
2676
  result
2677
2677
  end
2678
2678
  .,.,
2679
2679
 
2680
- module_eval(<<'.,.,', 'grammar.y', 390)
2680
+ module_eval(<<'.,.,', 'grammar.y', 391)
2681
2681
  def _reduce_188(val, _values, result)
2682
2682
  result = "DefNode"
2683
2683
  result
2684
2684
  end
2685
2685
  .,.,
2686
2686
 
2687
- module_eval(<<'.,.,', 'grammar.y', 391)
2687
+ module_eval(<<'.,.,', 'grammar.y', 392)
2688
2688
  def _reduce_189(val, _values, result)
2689
2689
  result = "DefMethodNode"
2690
2690
  result
2691
2691
  end
2692
2692
  .,.,
2693
2693
 
2694
- module_eval(<<'.,.,', 'grammar.y', 396)
2694
+ module_eval(<<'.,.,', 'grammar.y', 397)
2695
2695
  def _reduce_190(val, _values, result)
2696
2696
  result = Riml::GetCurlyBraceNameNode.new('', val[0])
2697
2697
  result
2698
2698
  end
2699
2699
  .,.,
2700
2700
 
2701
- module_eval(<<'.,.,', 'grammar.y', 397)
2701
+ module_eval(<<'.,.,', 'grammar.y', 398)
2702
2702
  def _reduce_191(val, _values, result)
2703
2703
  result = val[0]
2704
2704
  result
2705
2705
  end
2706
2706
  .,.,
2707
2707
 
2708
- module_eval(<<'.,.,', 'grammar.y', 402)
2708
+ module_eval(<<'.,.,', 'grammar.y', 403)
2709
2709
  def _reduce_192(val, _values, result)
2710
2710
  result = [val[0]]
2711
2711
  result
2712
2712
  end
2713
2713
  .,.,
2714
2714
 
2715
- module_eval(<<'.,.,', 'grammar.y', 403)
2715
+ module_eval(<<'.,.,', 'grammar.y', 404)
2716
2716
  def _reduce_193(val, _values, result)
2717
2717
  result = val[0] << val[1]
2718
2718
  result
2719
2719
  end
2720
2720
  .,.,
2721
2721
 
2722
- module_eval(<<'.,.,', 'grammar.y', 404)
2722
+ module_eval(<<'.,.,', 'grammar.y', 405)
2723
2723
  def _reduce_194(val, _values, result)
2724
2724
  result = nil
2725
2725
  result
2726
2726
  end
2727
2727
  .,.,
2728
2728
 
2729
- module_eval(<<'.,.,', 'grammar.y', 408)
2729
+ module_eval(<<'.,.,', 'grammar.y', 409)
2730
2730
  def _reduce_195(val, _values, result)
2731
2731
  result = []
2732
2732
  result
2733
2733
  end
2734
2734
  .,.,
2735
2735
 
2736
- module_eval(<<'.,.,', 'grammar.y', 409)
2736
+ module_eval(<<'.,.,', 'grammar.y', 410)
2737
2737
  def _reduce_196(val, _values, result)
2738
2738
  result = val
2739
2739
  result
2740
2740
  end
2741
2741
  .,.,
2742
2742
 
2743
- module_eval(<<'.,.,', 'grammar.y', 410)
2743
+ module_eval(<<'.,.,', 'grammar.y', 411)
2744
2744
  def _reduce_197(val, _values, result)
2745
2745
  result = val
2746
2746
  result
2747
2747
  end
2748
2748
  .,.,
2749
2749
 
2750
- module_eval(<<'.,.,', 'grammar.y', 411)
2750
+ module_eval(<<'.,.,', 'grammar.y', 412)
2751
2751
  def _reduce_198(val, _values, result)
2752
2752
  result = val[0] << val[2]
2753
2753
  result
2754
2754
  end
2755
2755
  .,.,
2756
2756
 
2757
- module_eval(<<'.,.,', 'grammar.y', 412)
2757
+ module_eval(<<'.,.,', 'grammar.y', 413)
2758
2758
  def _reduce_199(val, _values, result)
2759
2759
  result = val[0] << val[2]
2760
2760
  result
2761
2761
  end
2762
2762
  .,.,
2763
2763
 
2764
- module_eval(<<'.,.,', 'grammar.y', 416)
2764
+ module_eval(<<'.,.,', 'grammar.y', 417)
2765
2765
  def _reduce_200(val, _values, result)
2766
2766
  result = Riml::DefaultParamNode.new(val[0], val[2])
2767
2767
  result
2768
2768
  end
2769
2769
  .,.,
2770
2770
 
2771
- module_eval(<<'.,.,', 'grammar.y', 420)
2771
+ module_eval(<<'.,.,', 'grammar.y', 421)
2772
2772
  def _reduce_201(val, _values, result)
2773
2773
  result = Riml::ReturnNode.new(val[1])
2774
2774
  result
2775
2775
  end
2776
2776
  .,.,
2777
2777
 
2778
- module_eval(<<'.,.,', 'grammar.y', 421)
2778
+ module_eval(<<'.,.,', 'grammar.y', 422)
2779
2779
  def _reduce_202(val, _values, result)
2780
2780
  result = Riml::IfNode.new(val[3], Nodes.new([ReturnNode.new(val[1])]))
2781
2781
  result
2782
2782
  end
2783
2783
  .,.,
2784
2784
 
2785
- module_eval(<<'.,.,', 'grammar.y', 422)
2785
+ module_eval(<<'.,.,', 'grammar.y', 423)
2786
2786
  def _reduce_203(val, _values, result)
2787
2787
  result = Riml::UnlessNode.new(val[3], Nodes.new([ReturnNode.new(val[1])]))
2788
2788
  result
2789
2789
  end
2790
2790
  .,.,
2791
2791
 
2792
- module_eval(<<'.,.,', 'grammar.y', 426)
2792
+ module_eval(<<'.,.,', 'grammar.y', 427)
2793
2793
  def _reduce_204(val, _values, result)
2794
2794
  result = nil
2795
2795
  result
2796
2796
  end
2797
2797
  .,.,
2798
2798
 
2799
- module_eval(<<'.,.,', 'grammar.y', 427)
2799
+ module_eval(<<'.,.,', 'grammar.y', 428)
2800
2800
  def _reduce_205(val, _values, result)
2801
2801
  result = val[0]
2802
2802
  result
2803
2803
  end
2804
2804
  .,.,
2805
2805
 
2806
- module_eval(<<'.,.,', 'grammar.y', 431)
2806
+ module_eval(<<'.,.,', 'grammar.y', 432)
2807
2807
  def _reduce_206(val, _values, result)
2808
2808
  result = Riml::FinishNode.new
2809
2809
  result
2810
2810
  end
2811
2811
  .,.,
2812
2812
 
2813
- module_eval(<<'.,.,', 'grammar.y', 436)
2813
+ module_eval(<<'.,.,', 'grammar.y', 437)
2814
2814
  def _reduce_207(val, _values, result)
2815
2815
  result = Riml::IfNode.new(val[1], val[2])
2816
2816
  result
2817
2817
  end
2818
2818
  .,.,
2819
2819
 
2820
- module_eval(<<'.,.,', 'grammar.y', 437)
2820
+ module_eval(<<'.,.,', 'grammar.y', 438)
2821
2821
  def _reduce_208(val, _values, result)
2822
2822
  result = Riml::IfNode.new(val[1], Riml::Nodes.new([val[3]]))
2823
2823
  result
2824
2824
  end
2825
2825
  .,.,
2826
2826
 
2827
- module_eval(<<'.,.,', 'grammar.y', 438)
2827
+ module_eval(<<'.,.,', 'grammar.y', 439)
2828
2828
  def _reduce_209(val, _values, result)
2829
2829
  result = Riml::IfNode.new(val[2], Riml::Nodes.new([val[0]]))
2830
2830
  result
2831
2831
  end
2832
2832
  .,.,
2833
2833
 
2834
- module_eval(<<'.,.,', 'grammar.y', 442)
2834
+ module_eval(<<'.,.,', 'grammar.y', 443)
2835
2835
  def _reduce_210(val, _values, result)
2836
2836
  result = Riml::UnlessNode.new(val[1], val[2])
2837
2837
  result
2838
2838
  end
2839
2839
  .,.,
2840
2840
 
2841
- module_eval(<<'.,.,', 'grammar.y', 443)
2841
+ module_eval(<<'.,.,', 'grammar.y', 444)
2842
2842
  def _reduce_211(val, _values, result)
2843
2843
  result = Riml::UnlessNode.new(val[1], Riml::Nodes.new([val[3]]))
2844
2844
  result
2845
2845
  end
2846
2846
  .,.,
2847
2847
 
2848
- module_eval(<<'.,.,', 'grammar.y', 444)
2848
+ module_eval(<<'.,.,', 'grammar.y', 445)
2849
2849
  def _reduce_212(val, _values, result)
2850
2850
  result = Riml::UnlessNode.new(val[2], Riml::Nodes.new([val[0]]))
2851
2851
  result
2852
2852
  end
2853
2853
  .,.,
2854
2854
 
2855
- module_eval(<<'.,.,', 'grammar.y', 448)
2855
+ module_eval(<<'.,.,', 'grammar.y', 449)
2856
2856
  def _reduce_213(val, _values, result)
2857
2857
  result = Riml::TernaryOperatorNode.new([val[0], val[2], val[4]])
2858
2858
  result
2859
2859
  end
2860
2860
  .,.,
2861
2861
 
2862
- module_eval(<<'.,.,', 'grammar.y', 452)
2862
+ module_eval(<<'.,.,', 'grammar.y', 453)
2863
2863
  def _reduce_214(val, _values, result)
2864
2864
  result = Riml::WhileNode.new(val[1], val[2])
2865
2865
  result
2866
2866
  end
2867
2867
  .,.,
2868
2868
 
2869
- module_eval(<<'.,.,', 'grammar.y', 456)
2869
+ module_eval(<<'.,.,', 'grammar.y', 457)
2870
2870
  def _reduce_215(val, _values, result)
2871
2871
  result = Riml::BreakNode.new
2872
2872
  result
2873
2873
  end
2874
2874
  .,.,
2875
2875
 
2876
- module_eval(<<'.,.,', 'grammar.y', 457)
2876
+ module_eval(<<'.,.,', 'grammar.y', 458)
2877
2877
  def _reduce_216(val, _values, result)
2878
2878
  result = Riml::ContinueNode.new
2879
2879
  result
2880
2880
  end
2881
2881
  .,.,
2882
2882
 
2883
- module_eval(<<'.,.,', 'grammar.y', 461)
2883
+ module_eval(<<'.,.,', 'grammar.y', 462)
2884
2884
  def _reduce_217(val, _values, result)
2885
2885
  result = Riml::UntilNode.new(val[1], val[2])
2886
2886
  result
2887
2887
  end
2888
2888
  .,.,
2889
2889
 
2890
- module_eval(<<'.,.,', 'grammar.y', 465)
2890
+ module_eval(<<'.,.,', 'grammar.y', 466)
2891
2891
  def _reduce_218(val, _values, result)
2892
2892
  result = Riml::ForNode.new(val[1], val[3], val[4])
2893
2893
  result
2894
2894
  end
2895
2895
  .,.,
2896
2896
 
2897
- module_eval(<<'.,.,', 'grammar.y', 466)
2897
+ module_eval(<<'.,.,', 'grammar.y', 467)
2898
2898
  def _reduce_219(val, _values, result)
2899
2899
  result = Riml::ForNode.new(val[1], val[3], val[4])
2900
2900
  result
2901
2901
  end
2902
2902
  .,.,
2903
2903
 
2904
- module_eval(<<'.,.,', 'grammar.y', 467)
2904
+ module_eval(<<'.,.,', 'grammar.y', 468)
2905
2905
  def _reduce_220(val, _values, result)
2906
2906
  result = Riml::ForNode.new(val[1], val[3], val[4])
2907
2907
  result
2908
2908
  end
2909
2909
  .,.,
2910
2910
 
2911
- module_eval(<<'.,.,', 'grammar.y', 471)
2911
+ module_eval(<<'.,.,', 'grammar.y', 472)
2912
2912
  def _reduce_221(val, _values, result)
2913
2913
  result = Riml::TryNode.new(val[1], nil, nil)
2914
2914
  result
2915
2915
  end
2916
2916
  .,.,
2917
2917
 
2918
- module_eval(<<'.,.,', 'grammar.y', 472)
2918
+ module_eval(<<'.,.,', 'grammar.y', 473)
2919
2919
  def _reduce_222(val, _values, result)
2920
2920
  result = Riml::TryNode.new(val[1], val[2], nil)
2921
2921
  result
2922
2922
  end
2923
2923
  .,.,
2924
2924
 
2925
- module_eval(<<'.,.,', 'grammar.y', 473)
2925
+ module_eval(<<'.,.,', 'grammar.y', 474)
2926
2926
  def _reduce_223(val, _values, result)
2927
2927
  result = Riml::TryNode.new(val[1], val[2], val[4])
2928
2928
  result
2929
2929
  end
2930
2930
  .,.,
2931
2931
 
2932
- module_eval(<<'.,.,', 'grammar.y', 477)
2932
+ module_eval(<<'.,.,', 'grammar.y', 478)
2933
2933
  def _reduce_224(val, _values, result)
2934
2934
  result = nil
2935
2935
  result
2936
2936
  end
2937
2937
  .,.,
2938
2938
 
2939
- module_eval(<<'.,.,', 'grammar.y', 478)
2939
+ module_eval(<<'.,.,', 'grammar.y', 479)
2940
2940
  def _reduce_225(val, _values, result)
2941
2941
  result = [ Riml::CatchNode.new(nil, val[1]) ]
2942
2942
  result
2943
2943
  end
2944
2944
  .,.,
2945
2945
 
2946
- module_eval(<<'.,.,', 'grammar.y', 479)
2946
+ module_eval(<<'.,.,', 'grammar.y', 480)
2947
2947
  def _reduce_226(val, _values, result)
2948
2948
  result = [ Riml::CatchNode.new(val[1], val[2]) ]
2949
2949
  result
2950
2950
  end
2951
2951
  .,.,
2952
2952
 
2953
- module_eval(<<'.,.,', 'grammar.y', 480)
2953
+ module_eval(<<'.,.,', 'grammar.y', 481)
2954
2954
  def _reduce_227(val, _values, result)
2955
2955
  result = val[0] << Riml::CatchNode.new(nil, val[2])
2956
2956
  result
2957
2957
  end
2958
2958
  .,.,
2959
2959
 
2960
- module_eval(<<'.,.,', 'grammar.y', 481)
2960
+ module_eval(<<'.,.,', 'grammar.y', 482)
2961
2961
  def _reduce_228(val, _values, result)
2962
2962
  result = val[0] << Riml::CatchNode.new(val[2], val[3])
2963
2963
  result
2964
2964
  end
2965
2965
  .,.,
2966
2966
 
2967
- module_eval(<<'.,.,', 'grammar.y', 488)
2967
+ module_eval(<<'.,.,', 'grammar.y', 489)
2968
2968
  def _reduce_229(val, _values, result)
2969
2969
  result = val[1]
2970
2970
  result
2971
2971
  end
2972
2972
  .,.,
2973
2973
 
2974
- module_eval(<<'.,.,', 'grammar.y', 489)
2974
+ module_eval(<<'.,.,', 'grammar.y', 490)
2975
2975
  def _reduce_230(val, _values, result)
2976
2976
  result = Riml::Nodes.new([])
2977
2977
  result
2978
2978
  end
2979
2979
  .,.,
2980
2980
 
2981
- module_eval(<<'.,.,', 'grammar.y', 493)
2981
+ module_eval(<<'.,.,', 'grammar.y', 494)
2982
2982
  def _reduce_231(val, _values, result)
2983
2983
  result = val[0]
2984
2984
  result
2985
2985
  end
2986
2986
  .,.,
2987
2987
 
2988
- module_eval(<<'.,.,', 'grammar.y', 494)
2988
+ module_eval(<<'.,.,', 'grammar.y', 495)
2989
2989
  def _reduce_232(val, _values, result)
2990
2990
  result = val[1] << val[2]
2991
2991
  result
2992
2992
  end
2993
2993
  .,.,
2994
2994
 
2995
- module_eval(<<'.,.,', 'grammar.y', 495)
2995
+ module_eval(<<'.,.,', 'grammar.y', 496)
2996
2996
  def _reduce_233(val, _values, result)
2997
2997
  result = val[1] << val[2]
2998
2998
  result
2999
2999
  end
3000
3000
  .,.,
3001
3001
 
3002
- module_eval(<<'.,.,', 'grammar.y', 496)
3002
+ module_eval(<<'.,.,', 'grammar.y', 497)
3003
3003
  def _reduce_234(val, _values, result)
3004
3004
  result = val[1] << val[2] << val[3]
3005
3005
  result
3006
3006
  end
3007
3007
  .,.,
3008
3008
 
3009
- module_eval(<<'.,.,', 'grammar.y', 500)
3009
+ module_eval(<<'.,.,', 'grammar.y', 501)
3010
3010
  def _reduce_235(val, _values, result)
3011
3011
  result = Riml::ElseNode.new(val[2])
3012
3012
  result
3013
3013
  end
3014
3014
  .,.,
3015
3015
 
3016
- module_eval(<<'.,.,', 'grammar.y', 504)
3016
+ module_eval(<<'.,.,', 'grammar.y', 505)
3017
3017
  def _reduce_236(val, _values, result)
3018
3018
  result = Riml::Nodes.new([Riml::ElseifNode.new(val[1], val[3])])
3019
3019
  result
3020
3020
  end
3021
3021
  .,.,
3022
3022
 
3023
- module_eval(<<'.,.,', 'grammar.y', 505)
3023
+ module_eval(<<'.,.,', 'grammar.y', 506)
3024
3024
  def _reduce_237(val, _values, result)
3025
3025
  result = val[0] << Riml::ElseifNode.new(val[2], val[4])
3026
3026
  result
3027
3027
  end
3028
3028
  .,.,
3029
3029
 
3030
- module_eval(<<'.,.,', 'grammar.y', 509)
3030
+ module_eval(<<'.,.,', 'grammar.y', 510)
3031
3031
  def _reduce_238(val, _values, result)
3032
- result = Riml::ClassDefinitionNode.new(val[1], nil, val[2])
3032
+ result = Riml::ClassDefinitionNode.new(val[1], val[2], nil, val[3])
3033
3033
  result
3034
3034
  end
3035
3035
  .,.,
3036
3036
 
3037
- module_eval(<<'.,.,', 'grammar.y', 510)
3037
+ module_eval(<<'.,.,', 'grammar.y', 511)
3038
3038
  def _reduce_239(val, _values, result)
3039
- result = Riml::ClassDefinitionNode.new(val[1], val[3], val[4])
3039
+ result = Riml::ClassDefinitionNode.new(val[1], val[2], (val[4] || ClassDefinitionNode::DEFAULT_SCOPE_MODIFIER) + val[5], val[6])
3040
3040
  result
3041
3041
  end
3042
3042
  .,.,
3043
3043
 
3044
- module_eval(<<'.,.,', 'grammar.y', 514)
3044
+ module_eval(<<'.,.,', 'grammar.y', 515)
3045
3045
  def _reduce_240(val, _values, result)
3046
3046
  result = Riml::ObjectInstantiationNode.new(val[1])
3047
3047
  result
3048
3048
  end
3049
3049
  .,.,
3050
3050
 
3051
- module_eval(<<'.,.,', 'grammar.y', 518)
3051
+ module_eval(<<'.,.,', 'grammar.y', 519)
3052
3052
  def _reduce_241(val, _values, result)
3053
3053
  result = Riml::SuperNode.new(val[2], true)
3054
3054
  result
3055
3055
  end
3056
3056
  .,.,
3057
3057
 
3058
- module_eval(<<'.,.,', 'grammar.y', 519)
3058
+ module_eval(<<'.,.,', 'grammar.y', 520)
3059
3059
  def _reduce_242(val, _values, result)
3060
3060
  result = Riml::SuperNode.new([], false)
3061
3061
  result
3062
3062
  end
3063
3063
  .,.,
3064
3064
 
3065
- module_eval(<<'.,.,', 'grammar.y', 523)
3065
+ module_eval(<<'.,.,', 'grammar.y', 524)
3066
3066
  def _reduce_243(val, _values, result)
3067
3067
  result = Riml::ExLiteralNode.new(val[0])
3068
3068
  result