expressir 0.2.4-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (520) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/rake.yml +46 -0
  3. data/.github/workflows/release.yml +75 -0
  4. data/.gitignore +15 -0
  5. data/.gitmodules +3 -0
  6. data/.rspec +2 -0
  7. data/.rubocop.yml +508 -0
  8. data/Gemfile +6 -0
  9. data/README.adoc +147 -0
  10. data/Rakefile +17 -0
  11. data/bin/console +12 -0
  12. data/bin/rspec +29 -0
  13. data/bin/setup +8 -0
  14. data/demo.rb +18 -0
  15. data/docs/development.md +90 -0
  16. data/exe/expressir +20 -0
  17. data/exe/generate-parser +48 -0
  18. data/expressir.gemspec +40 -0
  19. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/CMakeLists.txt +118 -0
  20. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2013.vcxproj +637 -0
  21. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2013.vcxproj.filters +984 -0
  22. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2015.vcxproj +652 -0
  23. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2015.vcxproj.filters +990 -0
  24. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2017.vcxproj +652 -0
  25. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2017.vcxproj.filters +990 -0
  26. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj +652 -0
  27. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj.filters +990 -0
  28. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/Info.plist +26 -0
  29. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/antlrcpp_ios.h +17 -0
  30. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.pbxproj +3024 -0
  31. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  32. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  33. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4.xcscheme +76 -0
  34. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_ios.xcscheme +80 -0
  35. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_static.xcscheme +80 -0
  36. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.cpp +10 -0
  37. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.h +167 -0
  38. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.cpp +10 -0
  39. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.h +121 -0
  40. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.cpp +34 -0
  41. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.h +27 -0
  42. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.cpp +155 -0
  43. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.h +69 -0
  44. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.cpp +61 -0
  45. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.h +59 -0
  46. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.cpp +25 -0
  47. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.h +36 -0
  48. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.cpp +414 -0
  49. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.h +200 -0
  50. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.cpp +11 -0
  51. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.h +37 -0
  52. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.cpp +195 -0
  53. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.h +158 -0
  54. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.cpp +39 -0
  55. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.h +74 -0
  56. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.cpp +78 -0
  57. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.h +79 -0
  58. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.cpp +15 -0
  59. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.h +35 -0
  60. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.cpp +333 -0
  61. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.h +466 -0
  62. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.cpp +84 -0
  63. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.h +80 -0
  64. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.cpp +64 -0
  65. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.h +99 -0
  66. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.cpp +51 -0
  67. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.h +32 -0
  68. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.cpp +18 -0
  69. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.h +24 -0
  70. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.cpp +12 -0
  71. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.h +218 -0
  72. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.cpp +19 -0
  73. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.h +45 -0
  74. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.cpp +295 -0
  75. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.h +196 -0
  76. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.cpp +75 -0
  77. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.h +52 -0
  78. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.cpp +36 -0
  79. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.h +31 -0
  80. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.cpp +92 -0
  81. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.h +88 -0
  82. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.cpp +46 -0
  83. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.h +42 -0
  84. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.cpp +648 -0
  85. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.h +467 -0
  86. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.cpp +306 -0
  87. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.h +179 -0
  88. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.cpp +141 -0
  89. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.h +147 -0
  90. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.cpp +53 -0
  91. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.h +38 -0
  92. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.cpp +66 -0
  93. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.h +98 -0
  94. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.cpp +167 -0
  95. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.h +164 -0
  96. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.cpp +143 -0
  97. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.h +137 -0
  98. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.cpp +27 -0
  99. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.h +32 -0
  100. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.cpp +53 -0
  101. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.h +155 -0
  102. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.cpp +9 -0
  103. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.h +92 -0
  104. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenFactory.h +30 -0
  105. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.cpp +9 -0
  106. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.h +85 -0
  107. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.cpp +11 -0
  108. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.h +137 -0
  109. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.cpp +425 -0
  110. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.h +293 -0
  111. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.cpp +211 -0
  112. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.h +123 -0
  113. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.cpp +270 -0
  114. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.h +115 -0
  115. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.cpp +104 -0
  116. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.h +193 -0
  117. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.cpp +9 -0
  118. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.h +23 -0
  119. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-common.h +137 -0
  120. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-runtime.h +167 -0
  121. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.cpp +209 -0
  122. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.h +112 -0
  123. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.cpp +113 -0
  124. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.h +148 -0
  125. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.cpp +228 -0
  126. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.h +110 -0
  127. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.cpp +64 -0
  128. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.h +50 -0
  129. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.cpp +758 -0
  130. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.h +85 -0
  131. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSerializer.cpp +621 -0
  132. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSerializer.h +61 -0
  133. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.cpp +63 -0
  134. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.h +87 -0
  135. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.cpp +72 -0
  136. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.h +133 -0
  137. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNType.h +20 -0
  138. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AbstractPredicateTransition.cpp +14 -0
  139. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AbstractPredicateTransition.h +24 -0
  140. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.cpp +33 -0
  141. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.h +33 -0
  142. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.cpp +16 -0
  143. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.h +68 -0
  144. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.cpp +82 -0
  145. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.h +43 -0
  146. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.cpp +31 -0
  147. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.h +30 -0
  148. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicBlockStartState.cpp +12 -0
  149. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicBlockStartState.h +22 -0
  150. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicState.cpp +12 -0
  151. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicState.h +21 -0
  152. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockEndState.cpp +15 -0
  153. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockEndState.h +24 -0
  154. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockStartState.cpp +9 -0
  155. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockStartState.h +21 -0
  156. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.cpp +14 -0
  157. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.h +47 -0
  158. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.cpp +14 -0
  159. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.h +70 -0
  160. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.cpp +25 -0
  161. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.h +227 -0
  162. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.cpp +17 -0
  163. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.h +30 -0
  164. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EmptyPredictionContext.cpp +35 -0
  165. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EmptyPredictionContext.h +27 -0
  166. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.cpp +35 -0
  167. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.h +39 -0
  168. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.cpp +15 -0
  169. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.h +43 -0
  170. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.cpp +158 -0
  171. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.h +109 -0
  172. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.cpp +84 -0
  173. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.h +44 -0
  174. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.cpp +628 -0
  175. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.h +210 -0
  176. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.cpp +9 -0
  177. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.h +66 -0
  178. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.cpp +107 -0
  179. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.h +115 -0
  180. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionType.h +55 -0
  181. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.cpp +55 -0
  182. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.h +63 -0
  183. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.cpp +62 -0
  184. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.h +87 -0
  185. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.cpp +63 -0
  186. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.h +82 -0
  187. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.cpp +56 -0
  188. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.h +61 -0
  189. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.cpp +47 -0
  190. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.h +57 -0
  191. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.cpp +47 -0
  192. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.h +57 -0
  193. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.cpp +56 -0
  194. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.h +61 -0
  195. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.cpp +47 -0
  196. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.h +55 -0
  197. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.cpp +56 -0
  198. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.h +55 -0
  199. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.cpp +16 -0
  200. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.h +42 -0
  201. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LoopEndState.cpp +12 -0
  202. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LoopEndState.h +22 -0
  203. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile +67 -0
  204. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.cpp +27 -0
  205. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.h +25 -0
  206. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.cpp +12 -0
  207. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.h +20 -0
  208. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.cpp +102 -0
  209. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.h +102 -0
  210. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.cpp +1366 -0
  211. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.h +904 -0
  212. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusBlockStartState.cpp +12 -0
  213. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusBlockStartState.h +25 -0
  214. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusLoopbackState.cpp +12 -0
  215. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusLoopbackState.h +22 -0
  216. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.cpp +32 -0
  217. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.h +29 -0
  218. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.cpp +17 -0
  219. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.h +62 -0
  220. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.cpp +34 -0
  221. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.h +39 -0
  222. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.cpp +662 -0
  223. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.h +254 -0
  224. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.cpp +201 -0
  225. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.h +436 -0
  226. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.cpp +179 -0
  227. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.h +60 -0
  228. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.cpp +30 -0
  229. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.h +29 -0
  230. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStartState.cpp +16 -0
  231. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStartState.h +25 -0
  232. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStopState.cpp +12 -0
  233. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStopState.h +25 -0
  234. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.cpp +37 -0
  235. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.h +40 -0
  236. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.cpp +377 -0
  237. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.h +222 -0
  238. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.cpp +32 -0
  239. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.h +30 -0
  240. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.cpp +81 -0
  241. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.h +36 -0
  242. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarBlockStartState.cpp +12 -0
  243. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarBlockStartState.h +21 -0
  244. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopEntryState.cpp +15 -0
  245. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopEntryState.h +35 -0
  246. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.cpp +19 -0
  247. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.h +21 -0
  248. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TokensStartState.cpp +12 -0
  249. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TokensStartState.h +21 -0
  250. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.cpp +44 -0
  251. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.h +76 -0
  252. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.cpp +25 -0
  253. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.h +25 -0
  254. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.cpp +127 -0
  255. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.h +91 -0
  256. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.cpp +67 -0
  257. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.h +32 -0
  258. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.cpp +100 -0
  259. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.h +144 -0
  260. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.cpp +20 -0
  261. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.h +23 -0
  262. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.cpp +124 -0
  263. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.h +31 -0
  264. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.cpp +89 -0
  265. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.h +84 -0
  266. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.cpp +521 -0
  267. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.h +198 -0
  268. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.cpp +134 -0
  269. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.h +76 -0
  270. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.cpp +4 -0
  271. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.h +21 -0
  272. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.cpp +13 -0
  273. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.h +170 -0
  274. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.cpp +43 -0
  275. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.h +110 -0
  276. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/BitSet.h +76 -0
  277. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.cpp +248 -0
  278. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.h +78 -0
  279. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Declarations.h +163 -0
  280. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.cpp +36 -0
  281. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.h +54 -0
  282. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/guid.cpp +303 -0
  283. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/guid.h +112 -0
  284. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/AbstractParseTreeVisitor.h +128 -0
  285. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNode.cpp +9 -0
  286. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNode.h +19 -0
  287. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.cpp +23 -0
  288. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.h +33 -0
  289. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.cpp +71 -0
  290. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.h +53 -0
  291. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.cpp +15 -0
  292. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.h +102 -0
  293. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.cpp +9 -0
  294. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.h +39 -0
  295. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeProperty.h +50 -0
  296. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.cpp +9 -0
  297. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.h +57 -0
  298. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.cpp +49 -0
  299. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.h +31 -0
  300. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNode.cpp +9 -0
  301. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNode.h +32 -0
  302. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.cpp +57 -0
  303. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.h +33 -0
  304. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.cpp +241 -0
  305. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.h +78 -0
  306. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.cpp +9 -0
  307. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.h +44 -0
  308. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.cpp +69 -0
  309. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.h +132 -0
  310. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.cpp +64 -0
  311. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.h +105 -0
  312. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.cpp +371 -0
  313. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.h +185 -0
  314. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.cpp +77 -0
  315. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.h +117 -0
  316. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.cpp +39 -0
  317. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.h +86 -0
  318. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.cpp +28 -0
  319. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.h +51 -0
  320. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.cpp +36 -0
  321. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.h +80 -0
  322. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.cpp +154 -0
  323. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.h +86 -0
  324. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.cpp +31 -0
  325. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.h +40 -0
  326. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp +173 -0
  327. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.g4 +64 -0
  328. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.h +56 -0
  329. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.tokens +12 -0
  330. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.cpp +13 -0
  331. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.h +22 -0
  332. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.cpp +20 -0
  333. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.h +27 -0
  334. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.cpp +30 -0
  335. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.h +26 -0
  336. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.cpp +20 -0
  337. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.h +25 -0
  338. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.cpp +33 -0
  339. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.h +26 -0
  340. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.cpp +23 -0
  341. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.h +23 -0
  342. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.cpp +24 -0
  343. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.h +23 -0
  344. data/ext/express-parser/antlrgen/Express.interp +532 -0
  345. data/ext/express-parser/antlrgen/Express.tokens +190 -0
  346. data/ext/express-parser/antlrgen/ExpressBaseListener.cpp +7 -0
  347. data/ext/express-parser/antlrgen/ExpressBaseListener.h +623 -0
  348. data/ext/express-parser/antlrgen/ExpressBaseVisitor.cpp +7 -0
  349. data/ext/express-parser/antlrgen/ExpressBaseVisitor.h +816 -0
  350. data/ext/express-parser/antlrgen/ExpressLexer.cpp +1169 -0
  351. data/ext/express-parser/antlrgen/ExpressLexer.h +85 -0
  352. data/ext/express-parser/antlrgen/ExpressLexer.interp +534 -0
  353. data/ext/express-parser/antlrgen/ExpressLexer.tokens +190 -0
  354. data/ext/express-parser/antlrgen/ExpressListener.cpp +7 -0
  355. data/ext/express-parser/antlrgen/ExpressListener.h +616 -0
  356. data/ext/express-parser/antlrgen/ExpressParser.cpp +17284 -0
  357. data/ext/express-parser/antlrgen/ExpressParser.h +3696 -0
  358. data/ext/express-parser/antlrgen/ExpressVisitor.cpp +7 -0
  359. data/ext/express-parser/antlrgen/ExpressVisitor.h +422 -0
  360. data/ext/express-parser/express_parser.cpp +17931 -0
  361. data/ext/express-parser/extconf.rb +34 -0
  362. data/lib/express_parser.so +0 -0
  363. data/lib/expressir.rb +21 -0
  364. data/lib/expressir/cli.rb +27 -0
  365. data/lib/expressir/cli/ui.rb +36 -0
  366. data/lib/expressir/config.rb +23 -0
  367. data/lib/expressir/express.rb +11 -0
  368. data/lib/expressir/express/aggregate_dimension.rb +38 -0
  369. data/lib/expressir/express/attribute.rb +15 -0
  370. data/lib/expressir/express/comment.rb +7 -0
  371. data/lib/expressir/express/defined_type.rb +36 -0
  372. data/lib/expressir/express/derived.rb +65 -0
  373. data/lib/expressir/express/derived_aggregate.rb +43 -0
  374. data/lib/expressir/express/entity.rb +137 -0
  375. data/lib/expressir/express/explicit.rb +70 -0
  376. data/lib/expressir/express/explicit_aggregate.rb +46 -0
  377. data/lib/expressir/express/explicit_or_derived.rb +16 -0
  378. data/lib/expressir/express/global_rule.rb +44 -0
  379. data/lib/expressir/express/interface_specification.rb +51 -0
  380. data/lib/expressir/express/interfaced_item.rb +38 -0
  381. data/lib/expressir/express/inverse.rb +46 -0
  382. data/lib/expressir/express/inverse_aggregate.rb +37 -0
  383. data/lib/expressir/express/model_element.rb +7 -0
  384. data/lib/expressir/express/named_type.rb +19 -0
  385. data/lib/expressir/express/remark.rb +8 -0
  386. data/lib/expressir/express/repository.rb +306 -0
  387. data/lib/expressir/express/schema_definition.rb +96 -0
  388. data/lib/expressir/express/subtype_constraint.rb +14 -0
  389. data/lib/expressir/express/type.rb +26 -0
  390. data/lib/expressir/express/type_aggregate.rb +42 -0
  391. data/lib/expressir/express/type_enum.rb +29 -0
  392. data/lib/expressir/express/type_parser.rb +45 -0
  393. data/lib/expressir/express/type_select.rb +82 -0
  394. data/lib/expressir/express/unique_rule.rb +35 -0
  395. data/lib/expressir/express/where_rule.rb +32 -0
  396. data/lib/expressir/express_exp/formatter.rb +1450 -0
  397. data/lib/expressir/express_exp/parser.rb +36 -0
  398. data/lib/expressir/express_exp/visitor.rb +2451 -0
  399. data/lib/expressir/express_parser.rb +30 -0
  400. data/lib/expressir/model.rb +65 -0
  401. data/lib/expressir/model/attribute.rb +27 -0
  402. data/lib/expressir/model/constant.rb +17 -0
  403. data/lib/expressir/model/entity.rb +46 -0
  404. data/lib/expressir/model/enumeration_item.rb +11 -0
  405. data/lib/expressir/model/expressions/aggregate_initializer.rb +13 -0
  406. data/lib/expressir/model/expressions/aggregate_item.rb +15 -0
  407. data/lib/expressir/model/expressions/attribute_reference.rb +15 -0
  408. data/lib/expressir/model/expressions/binary_expression.rb +40 -0
  409. data/lib/expressir/model/expressions/call.rb +15 -0
  410. data/lib/expressir/model/expressions/entity_constructor.rb +15 -0
  411. data/lib/expressir/model/expressions/group_reference.rb +15 -0
  412. data/lib/expressir/model/expressions/index_reference.rb +17 -0
  413. data/lib/expressir/model/expressions/interval.rb +21 -0
  414. data/lib/expressir/model/expressions/query_expression.rb +26 -0
  415. data/lib/expressir/model/expressions/simple_reference.rb +13 -0
  416. data/lib/expressir/model/expressions/unary_expression.rb +19 -0
  417. data/lib/expressir/model/function.rb +62 -0
  418. data/lib/expressir/model/identifier.rb +9 -0
  419. data/lib/expressir/model/interface.rb +18 -0
  420. data/lib/expressir/model/literals/binary.rb +13 -0
  421. data/lib/expressir/model/literals/integer.rb +13 -0
  422. data/lib/expressir/model/literals/logical.rb +17 -0
  423. data/lib/expressir/model/literals/real.rb +13 -0
  424. data/lib/expressir/model/literals/string.rb +15 -0
  425. data/lib/expressir/model/parameter.rb +17 -0
  426. data/lib/expressir/model/procedure.rb +60 -0
  427. data/lib/expressir/model/renamed_ref.rb +13 -0
  428. data/lib/expressir/model/repository.rb +19 -0
  429. data/lib/expressir/model/rule.rb +62 -0
  430. data/lib/expressir/model/schema.rb +67 -0
  431. data/lib/expressir/model/scope.rb +17 -0
  432. data/lib/expressir/model/statements/alias.rb +26 -0
  433. data/lib/expressir/model/statements/assignment.rb +15 -0
  434. data/lib/expressir/model/statements/call.rb +15 -0
  435. data/lib/expressir/model/statements/case.rb +17 -0
  436. data/lib/expressir/model/statements/case_action.rb +15 -0
  437. data/lib/expressir/model/statements/compound.rb +13 -0
  438. data/lib/expressir/model/statements/escape.rb +8 -0
  439. data/lib/expressir/model/statements/if.rb +17 -0
  440. data/lib/expressir/model/statements/null.rb +8 -0
  441. data/lib/expressir/model/statements/repeat.rb +34 -0
  442. data/lib/expressir/model/statements/return.rb +13 -0
  443. data/lib/expressir/model/statements/skip.rb +8 -0
  444. data/lib/expressir/model/subtype_constraint.rb +27 -0
  445. data/lib/expressir/model/type.rb +24 -0
  446. data/lib/expressir/model/types/aggregate.rb +17 -0
  447. data/lib/expressir/model/types/array.rb +21 -0
  448. data/lib/expressir/model/types/bag.rb +17 -0
  449. data/lib/expressir/model/types/binary.rb +15 -0
  450. data/lib/expressir/model/types/boolean.rb +8 -0
  451. data/lib/expressir/model/types/enumeration.rb +19 -0
  452. data/lib/expressir/model/types/generic.rb +13 -0
  453. data/lib/expressir/model/types/generic_entity.rb +13 -0
  454. data/lib/expressir/model/types/integer.rb +8 -0
  455. data/lib/expressir/model/types/list.rb +19 -0
  456. data/lib/expressir/model/types/logical.rb +8 -0
  457. data/lib/expressir/model/types/number.rb +8 -0
  458. data/lib/expressir/model/types/real.rb +13 -0
  459. data/lib/expressir/model/types/select.rb +21 -0
  460. data/lib/expressir/model/types/set.rb +17 -0
  461. data/lib/expressir/model/types/string.rb +15 -0
  462. data/lib/expressir/model/unique.rb +15 -0
  463. data/lib/expressir/model/variable.rb +17 -0
  464. data/lib/expressir/model/where.rb +15 -0
  465. data/lib/expressir/parser.rb +6 -0
  466. data/lib/expressir/parser/owl_parser.rb +8 -0
  467. data/lib/expressir/version.rb +3 -0
  468. data/original/examples/ap233/ap233e1_arm_lf_stepmod-2010-11-12.exp +9589 -0
  469. data/original/examples/ap233/ap233e1_arm_lf_stepmod-2010-11-12.owl +36619 -0
  470. data/original/examples/ap233/ap233e1_arm_lf_stepmod-2010-11-12.xml +13294 -0
  471. data/original/examples/employment/eclipse/.project +17 -0
  472. data/original/examples/employment/eclipse/Export/Employment.png +0 -0
  473. data/original/examples/employment/eclipse/Express/employment_schema.exp +33 -0
  474. data/original/examples/employment/eclipse/Express/employment_schema.xmi +77 -0
  475. data/original/examples/employment/eclipse/Express/employment_schema.xml +93 -0
  476. data/original/examples/employment/eclipse/Models/Employment.uml +4 -0
  477. data/original/examples/employment/eclipse/Models/Employment.umldi +240 -0
  478. data/original/examples/employment/eclipse/readme.txt +7 -0
  479. data/original/examples/employment/employment_schema.exp +33 -0
  480. data/original/examples/employment/employment_schema.rb +232 -0
  481. data/original/examples/employment/employment_schema.xml +93 -0
  482. data/original/examples/employment/employment_schema___module.rb +46 -0
  483. data/original/examples/employment/employment_schema___p28attr.rb +126 -0
  484. data/original/examples/employment/employment_schema___p28inst.rb +26 -0
  485. data/original/examples/employment/example_employment_data.xml +1 -0
  486. data/original/examples/employment/example_employment_data_copy.xml +1 -0
  487. data/original/examples/employment/example_employment_reader.rb +30 -0
  488. data/original/examples/employment/example_employment_writer.rb +51 -0
  489. data/original/examples/plcs/ap239e1_arm_lf_dexlib_2010-01-06.exp +3710 -0
  490. data/original/examples/plcs/ap239e1_arm_lf_dexlib_2010-01-06.owl +35880 -0
  491. data/original/examples/plcs/ap239e1_arm_lf_dexlib_2010-01-06.xmi +15357 -0
  492. data/original/examples/plcs/ap239e1_arm_lf_dexlib_2010-01-06.xml +9468 -0
  493. data/original/examples/plcs/ap239e2_arm_lf_stepmod-2010-01-25.exp +8404 -0
  494. data/original/examples/plcs/ap239e2_arm_lf_stepmod-2010-01-25.owl +43147 -0
  495. data/original/examples/plcs/ap239e2_arm_lf_stepmod-2010-01-25.xmi +18341 -0
  496. data/original/examples/plcs/ap239e2_arm_lf_stepmod-2010-01-25.xml +11632 -0
  497. data/original/examples/syntax/remark.exp +145 -0
  498. data/original/examples/syntax/remark_formatted.exp +174 -0
  499. data/original/examples/syntax/syntax.exp +310 -0
  500. data/original/examples/syntax/syntax_formatted.exp +1187 -0
  501. data/original/exp2ruby.rb +525 -0
  502. data/original/expsm.rb +34 -0
  503. data/original/mapping_owl.rb +1018 -0
  504. data/original/mapping_sysml.rb +2281 -0
  505. data/original/mapping_uml2.rb +599 -0
  506. data/original/mapping_uml2_eclipse.rb +433 -0
  507. data/original/reeper.rb +134 -0
  508. data/spec/acceptance/express_to_owl_spec.rb +18 -0
  509. data/spec/acceptance/version_spec.rb +12 -0
  510. data/spec/expressir/express/repository_spec.rb +25 -0
  511. data/spec/expressir/express_exp/ap233_spec.rb +22 -0
  512. data/spec/expressir/express_exp/format_remark_spec.rb +28 -0
  513. data/spec/expressir/express_exp/format_syntax_spec.rb +28 -0
  514. data/spec/expressir/express_exp/parse_remark_spec.rb +345 -0
  515. data/spec/expressir/express_exp/parse_syntax_spec.rb +2998 -0
  516. data/spec/expressir/model/find_spec.rb +110 -0
  517. data/spec/expressr_spec.rb +5 -0
  518. data/spec/spec_helper.rb +17 -0
  519. data/spec/support/console_helper.rb +29 -0
  520. metadata +695 -0
@@ -0,0 +1,85 @@
1
+
2
+ // Generated from Express.g4 by ANTLR 4.8
3
+
4
+ #pragma once
5
+
6
+
7
+ #include "antlr4-runtime.h"
8
+
9
+
10
+
11
+
12
+ class ExpressLexer : public antlr4::Lexer {
13
+ public:
14
+ enum {
15
+ T__0 = 1, T__1 = 2, T__2 = 3, T__3 = 4, T__4 = 5, T__5 = 6, T__6 = 7,
16
+ T__7 = 8, T__8 = 9, T__9 = 10, T__10 = 11, T__11 = 12, T__12 = 13, T__13 = 14,
17
+ T__14 = 15, T__15 = 16, T__16 = 17, T__17 = 18, T__18 = 19, T__19 = 20,
18
+ T__20 = 21, T__21 = 22, T__22 = 23, T__23 = 24, T__24 = 25, T__25 = 26,
19
+ T__26 = 27, T__27 = 28, T__28 = 29, ABS = 30, ABSTRACT = 31, ACOS = 32,
20
+ AGGREGATE = 33, ALIAS = 34, AND = 35, ANDOR = 36, ARRAY = 37, AS = 38,
21
+ ASIN = 39, ATAN = 40, BAG = 41, BASED_ON = 42, BEGIN_ = 43, BINARY = 44,
22
+ BLENGTH = 45, BOOLEAN = 46, BY = 47, CASE = 48, CONSTANT = 49, CONST_E = 50,
23
+ COS = 51, DERIVE = 52, DIV = 53, ELSE = 54, END_ = 55, END_ALIAS = 56,
24
+ END_CASE = 57, END_CONSTANT = 58, END_ENTITY = 59, END_FUNCTION = 60,
25
+ END_IF = 61, END_LOCAL = 62, END_PROCEDURE = 63, END_REPEAT = 64, END_RULE = 65,
26
+ END_SCHEMA = 66, END_SUBTYPE_CONSTRAINT = 67, END_TYPE = 68, ENTITY = 69,
27
+ ENUMERATION = 70, ESCAPE = 71, EXISTS = 72, EXP = 73, EXTENSIBLE = 74,
28
+ FALSE = 75, FIXED = 76, FOR = 77, FORMAT = 78, FROM = 79, FUNCTION = 80,
29
+ GENERIC = 81, GENERIC_ENTITY = 82, HIBOUND = 83, HIINDEX = 84, IF = 85,
30
+ IN = 86, INSERT = 87, INTEGER = 88, INVERSE = 89, LENGTH = 90, LIKE = 91,
31
+ LIST = 92, LOBOUND = 93, LOCAL = 94, LOG = 95, LOG10 = 96, LOG2 = 97,
32
+ LOGICAL = 98, LOINDEX = 99, MOD = 100, NOT = 101, NUMBER = 102, NVL = 103,
33
+ ODD = 104, OF = 105, ONEOF = 106, OPTIONAL = 107, OR = 108, OTHERWISE = 109,
34
+ PI = 110, PROCEDURE = 111, QUERY = 112, REAL = 113, REFERENCE = 114,
35
+ REMOVE = 115, RENAMED = 116, REPEAT = 117, RETURN = 118, ROLESOF = 119,
36
+ RULE = 120, SCHEMA = 121, SELECT = 122, SELF = 123, SET = 124, SIN = 125,
37
+ SIZEOF = 126, SKIP_ = 127, SQRT = 128, STRING = 129, SUBTYPE = 130,
38
+ SUBTYPE_CONSTRAINT = 131, SUPERTYPE = 132, TAN = 133, THEN = 134, TO = 135,
39
+ TRUE = 136, TYPE = 137, TYPEOF = 138, TOTAL_OVER = 139, UNIQUE = 140,
40
+ UNKNOWN = 141, UNTIL = 142, USE = 143, USEDIN = 144, VALUE_ = 145, VALUE_IN = 146,
41
+ VALUE_UNIQUE = 147, VAR = 148, WITH = 149, WHERE = 150, WHILE = 151,
42
+ XOR = 152, BinaryLiteral = 153, EncodedStringLiteral = 154, IntegerLiteral = 155,
43
+ RealLiteral = 156, SimpleId = 157, SimpleStringLiteral = 158, EmbeddedRemark = 159,
44
+ TailRemark = 160, Whitespace = 161
45
+ };
46
+
47
+ ExpressLexer(antlr4::CharStream *input);
48
+ ~ExpressLexer();
49
+
50
+ virtual std::string getGrammarFileName() const override;
51
+ virtual const std::vector<std::string>& getRuleNames() const override;
52
+
53
+ virtual const std::vector<std::string>& getChannelNames() const override;
54
+ virtual const std::vector<std::string>& getModeNames() const override;
55
+ virtual const std::vector<std::string>& getTokenNames() const override; // deprecated, use vocabulary instead
56
+ virtual antlr4::dfa::Vocabulary& getVocabulary() const override;
57
+
58
+ virtual const std::vector<uint16_t> getSerializedATN() const override;
59
+ virtual const antlr4::atn::ATN& getATN() const override;
60
+
61
+ private:
62
+ static std::vector<antlr4::dfa::DFA> _decisionToDFA;
63
+ static antlr4::atn::PredictionContextCache _sharedContextCache;
64
+ static std::vector<std::string> _ruleNames;
65
+ static std::vector<std::string> _tokenNames;
66
+ static std::vector<std::string> _channelNames;
67
+ static std::vector<std::string> _modeNames;
68
+
69
+ static std::vector<std::string> _literalNames;
70
+ static std::vector<std::string> _symbolicNames;
71
+ static antlr4::dfa::Vocabulary _vocabulary;
72
+ static antlr4::atn::ATN _atn;
73
+ static std::vector<uint16_t> _serializedATN;
74
+
75
+
76
+ // Individual action functions triggered by action() above.
77
+
78
+ // Individual semantic predicate functions triggered by sempred() above.
79
+
80
+ struct Initializer {
81
+ Initializer();
82
+ };
83
+ static Initializer _init;
84
+ };
85
+
@@ -0,0 +1,534 @@
1
+ token literal names:
2
+ null
3
+ ';'
4
+ '('
5
+ ','
6
+ ')'
7
+ '+'
8
+ '-'
9
+ '['
10
+ ']'
11
+ ':'
12
+ ':='
13
+ '.'
14
+ '?'
15
+ '**'
16
+ '\\'
17
+ '{'
18
+ '}'
19
+ '<'
20
+ '<='
21
+ '*'
22
+ '/'
23
+ '||'
24
+ '<*'
25
+ '|'
26
+ '>'
27
+ '>='
28
+ '<>'
29
+ '='
30
+ ':<>:'
31
+ ':=:'
32
+ null
33
+ null
34
+ null
35
+ null
36
+ null
37
+ null
38
+ null
39
+ null
40
+ null
41
+ null
42
+ null
43
+ null
44
+ null
45
+ null
46
+ null
47
+ null
48
+ null
49
+ null
50
+ null
51
+ null
52
+ null
53
+ null
54
+ null
55
+ null
56
+ null
57
+ null
58
+ null
59
+ null
60
+ null
61
+ null
62
+ null
63
+ null
64
+ null
65
+ null
66
+ null
67
+ null
68
+ null
69
+ null
70
+ null
71
+ null
72
+ null
73
+ null
74
+ null
75
+ null
76
+ null
77
+ null
78
+ null
79
+ null
80
+ null
81
+ null
82
+ null
83
+ null
84
+ null
85
+ null
86
+ null
87
+ null
88
+ null
89
+ null
90
+ null
91
+ null
92
+ null
93
+ null
94
+ null
95
+ null
96
+ null
97
+ null
98
+ null
99
+ null
100
+ null
101
+ null
102
+ null
103
+ null
104
+ null
105
+ null
106
+ null
107
+ null
108
+ null
109
+ null
110
+ null
111
+ null
112
+ null
113
+ null
114
+ null
115
+ null
116
+ null
117
+ null
118
+ null
119
+ null
120
+ null
121
+ null
122
+ null
123
+ null
124
+ null
125
+ null
126
+ null
127
+ null
128
+ null
129
+ null
130
+ null
131
+ null
132
+ null
133
+ null
134
+ null
135
+ null
136
+ null
137
+ null
138
+ null
139
+ null
140
+ null
141
+ null
142
+ null
143
+ null
144
+ null
145
+ null
146
+ null
147
+ null
148
+ null
149
+ null
150
+ null
151
+ null
152
+ null
153
+ null
154
+ null
155
+ null
156
+ null
157
+ null
158
+ null
159
+ null
160
+ null
161
+ null
162
+ null
163
+ null
164
+
165
+ token symbolic names:
166
+ null
167
+ null
168
+ null
169
+ null
170
+ null
171
+ null
172
+ null
173
+ null
174
+ null
175
+ null
176
+ null
177
+ null
178
+ null
179
+ null
180
+ null
181
+ null
182
+ null
183
+ null
184
+ null
185
+ null
186
+ null
187
+ null
188
+ null
189
+ null
190
+ null
191
+ null
192
+ null
193
+ null
194
+ null
195
+ null
196
+ ABS
197
+ ABSTRACT
198
+ ACOS
199
+ AGGREGATE
200
+ ALIAS
201
+ AND
202
+ ANDOR
203
+ ARRAY
204
+ AS
205
+ ASIN
206
+ ATAN
207
+ BAG
208
+ BASED_ON
209
+ BEGIN_
210
+ BINARY
211
+ BLENGTH
212
+ BOOLEAN
213
+ BY
214
+ CASE
215
+ CONSTANT
216
+ CONST_E
217
+ COS
218
+ DERIVE
219
+ DIV
220
+ ELSE
221
+ END_
222
+ END_ALIAS
223
+ END_CASE
224
+ END_CONSTANT
225
+ END_ENTITY
226
+ END_FUNCTION
227
+ END_IF
228
+ END_LOCAL
229
+ END_PROCEDURE
230
+ END_REPEAT
231
+ END_RULE
232
+ END_SCHEMA
233
+ END_SUBTYPE_CONSTRAINT
234
+ END_TYPE
235
+ ENTITY
236
+ ENUMERATION
237
+ ESCAPE
238
+ EXISTS
239
+ EXP
240
+ EXTENSIBLE
241
+ FALSE
242
+ FIXED
243
+ FOR
244
+ FORMAT
245
+ FROM
246
+ FUNCTION
247
+ GENERIC
248
+ GENERIC_ENTITY
249
+ HIBOUND
250
+ HIINDEX
251
+ IF
252
+ IN
253
+ INSERT
254
+ INTEGER
255
+ INVERSE
256
+ LENGTH
257
+ LIKE
258
+ LIST
259
+ LOBOUND
260
+ LOCAL
261
+ LOG
262
+ LOG10
263
+ LOG2
264
+ LOGICAL
265
+ LOINDEX
266
+ MOD
267
+ NOT
268
+ NUMBER
269
+ NVL
270
+ ODD
271
+ OF
272
+ ONEOF
273
+ OPTIONAL
274
+ OR
275
+ OTHERWISE
276
+ PI
277
+ PROCEDURE
278
+ QUERY
279
+ REAL
280
+ REFERENCE
281
+ REMOVE
282
+ RENAMED
283
+ REPEAT
284
+ RETURN
285
+ ROLESOF
286
+ RULE
287
+ SCHEMA
288
+ SELECT
289
+ SELF
290
+ SET
291
+ SIN
292
+ SIZEOF
293
+ SKIP_
294
+ SQRT
295
+ STRING
296
+ SUBTYPE
297
+ SUBTYPE_CONSTRAINT
298
+ SUPERTYPE
299
+ TAN
300
+ THEN
301
+ TO
302
+ TRUE
303
+ TYPE
304
+ TYPEOF
305
+ TOTAL_OVER
306
+ UNIQUE
307
+ UNKNOWN
308
+ UNTIL
309
+ USE
310
+ USEDIN
311
+ VALUE_
312
+ VALUE_IN
313
+ VALUE_UNIQUE
314
+ VAR
315
+ WITH
316
+ WHERE
317
+ WHILE
318
+ XOR
319
+ BinaryLiteral
320
+ EncodedStringLiteral
321
+ IntegerLiteral
322
+ RealLiteral
323
+ SimpleId
324
+ SimpleStringLiteral
325
+ EmbeddedRemark
326
+ TailRemark
327
+ Whitespace
328
+
329
+ rule names:
330
+ T__0
331
+ T__1
332
+ T__2
333
+ T__3
334
+ T__4
335
+ T__5
336
+ T__6
337
+ T__7
338
+ T__8
339
+ T__9
340
+ T__10
341
+ T__11
342
+ T__12
343
+ T__13
344
+ T__14
345
+ T__15
346
+ T__16
347
+ T__17
348
+ T__18
349
+ T__19
350
+ T__20
351
+ T__21
352
+ T__22
353
+ T__23
354
+ T__24
355
+ T__25
356
+ T__26
357
+ T__27
358
+ T__28
359
+ A
360
+ B
361
+ C
362
+ D
363
+ E
364
+ F
365
+ G
366
+ H
367
+ I
368
+ J
369
+ K
370
+ L
371
+ M
372
+ N
373
+ O
374
+ P
375
+ Q
376
+ R
377
+ S
378
+ T
379
+ U
380
+ V
381
+ W
382
+ X
383
+ Y
384
+ Z
385
+ ABS
386
+ ABSTRACT
387
+ ACOS
388
+ AGGREGATE
389
+ ALIAS
390
+ AND
391
+ ANDOR
392
+ ARRAY
393
+ AS
394
+ ASIN
395
+ ATAN
396
+ BAG
397
+ BASED_ON
398
+ BEGIN_
399
+ BINARY
400
+ BLENGTH
401
+ BOOLEAN
402
+ BY
403
+ CASE
404
+ CONSTANT
405
+ CONST_E
406
+ COS
407
+ DERIVE
408
+ DIV
409
+ ELSE
410
+ END_
411
+ END_ALIAS
412
+ END_CASE
413
+ END_CONSTANT
414
+ END_ENTITY
415
+ END_FUNCTION
416
+ END_IF
417
+ END_LOCAL
418
+ END_PROCEDURE
419
+ END_REPEAT
420
+ END_RULE
421
+ END_SCHEMA
422
+ END_SUBTYPE_CONSTRAINT
423
+ END_TYPE
424
+ ENTITY
425
+ ENUMERATION
426
+ ESCAPE
427
+ EXISTS
428
+ EXP
429
+ EXTENSIBLE
430
+ FALSE
431
+ FIXED
432
+ FOR
433
+ FORMAT
434
+ FROM
435
+ FUNCTION
436
+ GENERIC
437
+ GENERIC_ENTITY
438
+ HIBOUND
439
+ HIINDEX
440
+ IF
441
+ IN
442
+ INSERT
443
+ INTEGER
444
+ INVERSE
445
+ LENGTH
446
+ LIKE
447
+ LIST
448
+ LOBOUND
449
+ LOCAL
450
+ LOG
451
+ LOG10
452
+ LOG2
453
+ LOGICAL
454
+ LOINDEX
455
+ MOD
456
+ NOT
457
+ NUMBER
458
+ NVL
459
+ ODD
460
+ OF
461
+ ONEOF
462
+ OPTIONAL
463
+ OR
464
+ OTHERWISE
465
+ PI
466
+ PROCEDURE
467
+ QUERY
468
+ REAL
469
+ REFERENCE
470
+ REMOVE
471
+ RENAMED
472
+ REPEAT
473
+ RETURN
474
+ ROLESOF
475
+ RULE
476
+ SCHEMA
477
+ SELECT
478
+ SELF
479
+ SET
480
+ SIN
481
+ SIZEOF
482
+ SKIP_
483
+ SQRT
484
+ STRING
485
+ SUBTYPE
486
+ SUBTYPE_CONSTRAINT
487
+ SUPERTYPE
488
+ TAN
489
+ THEN
490
+ TO
491
+ TRUE
492
+ TYPE
493
+ TYPEOF
494
+ TOTAL_OVER
495
+ UNIQUE
496
+ UNKNOWN
497
+ UNTIL
498
+ USE
499
+ USEDIN
500
+ VALUE_
501
+ VALUE_IN
502
+ VALUE_UNIQUE
503
+ VAR
504
+ WITH
505
+ WHERE
506
+ WHILE
507
+ XOR
508
+ Bit
509
+ Digit
510
+ Digits
511
+ EncodedCharacter
512
+ HexDigit
513
+ Letter
514
+ Octet
515
+ Sign
516
+ BinaryLiteral
517
+ EncodedStringLiteral
518
+ IntegerLiteral
519
+ RealLiteral
520
+ SimpleId
521
+ SimpleStringLiteral
522
+ EmbeddedRemark
523
+ TailRemark
524
+ Whitespace
525
+
526
+ channel names:
527
+ DEFAULT_TOKEN_CHANNEL
528
+ HIDDEN
529
+
530
+ mode names:
531
+ DEFAULT_MODE
532
+
533
+ atn:
534
+ [3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 163, 1488, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 33, 3, 33, 3, 34, 3, 34, 3, 35, 3, 35, 3, 36, 3, 36, 3, 37, 3, 37, 3, 38, 3, 38, 3, 39, 3, 39, 3, 40, 3, 40, 3, 41, 3, 41, 3, 42, 3, 42, 3, 43, 3, 43, 3, 44, 3, 44, 3, 45, 3, 45, 3, 46, 3, 46, 3, 47, 3, 47, 3, 48, 3, 48, 3, 49, 3, 49, 3, 50, 3, 50, 3, 51, 3, 51, 3, 52, 3, 52, 3, 53, 3, 53, 3, 54, 3, 54, 3, 55, 3, 55, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 112, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 181, 3, 181, 3, 182, 3, 182, 7, 182, 1384, 10, 182, 12, 182, 14, 182, 1387, 11, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 5, 184, 1396, 10, 184, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 7, 188, 1408, 10, 188, 12, 188, 14, 188, 1411, 11, 188, 3, 189, 3, 189, 3, 189, 7, 189, 1416, 10, 189, 12, 189, 14, 189, 1419, 11, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 5, 191, 1428, 10, 191, 3, 191, 3, 191, 5, 191, 1432, 10, 191, 3, 191, 3, 191, 5, 191, 1436, 10, 191, 3, 192, 3, 192, 3, 192, 3, 192, 7, 192, 1442, 10, 192, 12, 192, 14, 192, 1445, 11, 192, 3, 193, 3, 193, 7, 193, 1449, 10, 193, 12, 193, 14, 193, 1452, 11, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 7, 194, 1461, 10, 194, 12, 194, 14, 194, 1464, 11, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 7, 195, 1475, 10, 195, 12, 195, 14, 195, 1478, 11, 195, 3, 195, 3, 195, 3, 196, 6, 196, 1483, 10, 196, 13, 196, 14, 196, 1484, 3, 196, 3, 196, 4, 1450, 1462, 2, 197, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 2, 63, 2, 65, 2, 67, 2, 69, 2, 71, 2, 73, 2, 75, 2, 77, 2, 79, 2, 81, 2, 83, 2, 85, 2, 87, 2, 89, 2, 91, 2, 93, 2, 95, 2, 97, 2, 99, 2, 101, 2, 103, 2, 105, 2, 107, 2, 109, 2, 111, 2, 113, 32, 115, 33, 117, 34, 119, 35, 121, 36, 123, 37, 125, 38, 127, 39, 129, 40, 131, 41, 133, 42, 135, 43, 137, 44, 139, 45, 141, 46, 143, 47, 145, 48, 147, 49, 149, 50, 151, 51, 153, 52, 155, 53, 157, 54, 159, 55, 161, 56, 163, 57, 165, 58, 167, 59, 169, 60, 171, 61, 173, 62, 175, 63, 177, 64, 179, 65, 181, 66, 183, 67, 185, 68, 187, 69, 189, 70, 191, 71, 193, 72, 195, 73, 197, 74, 199, 75, 201, 76, 203, 77, 205, 78, 207, 79, 209, 80, 211, 81, 213, 82, 215, 83, 217, 84, 219, 85, 221, 86, 223, 87, 225, 88, 227, 89, 229, 90, 231, 91, 233, 92, 235, 93, 237, 94, 239, 95, 241, 96, 243, 97, 245, 98, 247, 99, 249, 100, 251, 101, 253, 102, 255, 103, 257, 104, 259, 105, 261, 106, 263, 107, 265, 108, 267, 109, 269, 110, 271, 111, 273, 112, 275, 113, 277, 114, 279, 115, 281, 116, 283, 117, 285, 118, 287, 119, 289, 120, 291, 121, 293, 122, 295, 123, 297, 124, 299, 125, 301, 126, 303, 127, 305, 128, 307, 129, 309, 130, 311, 131, 313, 132, 315, 133, 317, 134, 319, 135, 321, 136, 323, 137, 325, 138, 327, 139, 329, 140, 331, 141, 333, 142, 335, 143, 337, 144, 339, 145, 341, 146, 343, 147, 345, 148, 347, 149, 349, 150, 351, 151, 353, 152, 355, 153, 357, 154, 359, 2, 361, 2, 363, 2, 365, 2, 367, 2, 369, 2, 371, 2, 373, 2, 375, 155, 377, 156, 379, 157, 381, 158, 383, 159, 385, 160, 387, 161, 389, 162, 391, 163, 3, 2, 35, 4, 2, 67, 67, 99, 99, 4, 2, 68, 68, 100, 100, 4, 2, 69, 69, 101, 101, 4, 2, 70, 70, 102, 102, 4, 2, 71, 71, 103, 103, 4, 2, 72, 72, 104, 104, 4, 2, 73, 73, 105, 105, 4, 2, 74, 74, 106, 106, 4, 2, 75, 75, 107, 107, 4, 2, 76, 76, 108, 108, 4, 2, 77, 77, 109, 109, 4, 2, 78, 78, 110, 110, 4, 2, 79, 79, 111, 111, 4, 2, 80, 80, 112, 112, 4, 2, 81, 81, 113, 113, 4, 2, 82, 82, 114, 114, 4, 2, 83, 83, 115, 115, 4, 2, 84, 84, 116, 116, 4, 2, 85, 85, 117, 117, 4, 2, 86, 86, 118, 118, 4, 2, 87, 87, 119, 119, 4, 2, 88, 88, 120, 120, 4, 2, 89, 89, 121, 121, 4, 2, 90, 90, 122, 122, 4, 2, 91, 91, 123, 123, 4, 2, 92, 92, 124, 124, 3, 2, 50, 51, 3, 2, 50, 59, 4, 2, 67, 72, 99, 104, 4, 2, 67, 92, 99, 124, 4, 2, 45, 45, 47, 47, 3, 2, 12, 12, 5, 2, 11, 12, 14, 15, 34, 34, 2, 1468, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 3, 393, 3, 2, 2, 2, 5, 395, 3, 2, 2, 2, 7, 397, 3, 2, 2, 2, 9, 399, 3, 2, 2, 2, 11, 401, 3, 2, 2, 2, 13, 403, 3, 2, 2, 2, 15, 405, 3, 2, 2, 2, 17, 407, 3, 2, 2, 2, 19, 409, 3, 2, 2, 2, 21, 411, 3, 2, 2, 2, 23, 414, 3, 2, 2, 2, 25, 416, 3, 2, 2, 2, 27, 418, 3, 2, 2, 2, 29, 421, 3, 2, 2, 2, 31, 423, 3, 2, 2, 2, 33, 425, 3, 2, 2, 2, 35, 427, 3, 2, 2, 2, 37, 429, 3, 2, 2, 2, 39, 432, 3, 2, 2, 2, 41, 434, 3, 2, 2, 2, 43, 436, 3, 2, 2, 2, 45, 439, 3, 2, 2, 2, 47, 442, 3, 2, 2, 2, 49, 444, 3, 2, 2, 2, 51, 446, 3, 2, 2, 2, 53, 449, 3, 2, 2, 2, 55, 452, 3, 2, 2, 2, 57, 454, 3, 2, 2, 2, 59, 459, 3, 2, 2, 2, 61, 463, 3, 2, 2, 2, 63, 465, 3, 2, 2, 2, 65, 467, 3, 2, 2, 2, 67, 469, 3, 2, 2, 2, 69, 471, 3, 2, 2, 2, 71, 473, 3, 2, 2, 2, 73, 475, 3, 2, 2, 2, 75, 477, 3, 2, 2, 2, 77, 479, 3, 2, 2, 2, 79, 481, 3, 2, 2, 2, 81, 483, 3, 2, 2, 2, 83, 485, 3, 2, 2, 2, 85, 487, 3, 2, 2, 2, 87, 489, 3, 2, 2, 2, 89, 491, 3, 2, 2, 2, 91, 493, 3, 2, 2, 2, 93, 495, 3, 2, 2, 2, 95, 497, 3, 2, 2, 2, 97, 499, 3, 2, 2, 2, 99, 501, 3, 2, 2, 2, 101, 503, 3, 2, 2, 2, 103, 505, 3, 2, 2, 2, 105, 507, 3, 2, 2, 2, 107, 509, 3, 2, 2, 2, 109, 511, 3, 2, 2, 2, 111, 513, 3, 2, 2, 2, 113, 515, 3, 2, 2, 2, 115, 519, 3, 2, 2, 2, 117, 528, 3, 2, 2, 2, 119, 533, 3, 2, 2, 2, 121, 543, 3, 2, 2, 2, 123, 549, 3, 2, 2, 2, 125, 553, 3, 2, 2, 2, 127, 559, 3, 2, 2, 2, 129, 565, 3, 2, 2, 2, 131, 568, 3, 2, 2, 2, 133, 573, 3, 2, 2, 2, 135, 578, 3, 2, 2, 2, 137, 582, 3, 2, 2, 2, 139, 591, 3, 2, 2, 2, 141, 597, 3, 2, 2, 2, 143, 604, 3, 2, 2, 2, 145, 612, 3, 2, 2, 2, 147, 620, 3, 2, 2, 2, 149, 623, 3, 2, 2, 2, 151, 628, 3, 2, 2, 2, 153, 637, 3, 2, 2, 2, 155, 645, 3, 2, 2, 2, 157, 649, 3, 2, 2, 2, 159, 656, 3, 2, 2, 2, 161, 660, 3, 2, 2, 2, 163, 665, 3, 2, 2, 2, 165, 669, 3, 2, 2, 2, 167, 679, 3, 2, 2, 2, 169, 688, 3, 2, 2, 2, 171, 701, 3, 2, 2, 2, 173, 712, 3, 2, 2, 2, 175, 725, 3, 2, 2, 2, 177, 732, 3, 2, 2, 2, 179, 742, 3, 2, 2, 2, 181, 756, 3, 2, 2, 2, 183, 767, 3, 2, 2, 2, 185, 776, 3, 2, 2, 2, 187, 787, 3, 2, 2, 2, 189, 810, 3, 2, 2, 2, 191, 819, 3, 2, 2, 2, 193, 826, 3, 2, 2, 2, 195, 838, 3, 2, 2, 2, 197, 845, 3, 2, 2, 2, 199, 852, 3, 2, 2, 2, 201, 856, 3, 2, 2, 2, 203, 867, 3, 2, 2, 2, 205, 873, 3, 2, 2, 2, 207, 879, 3, 2, 2, 2, 209, 883, 3, 2, 2, 2, 211, 890, 3, 2, 2, 2, 213, 895, 3, 2, 2, 2, 215, 904, 3, 2, 2, 2, 217, 912, 3, 2, 2, 2, 219, 927, 3, 2, 2, 2, 221, 935, 3, 2, 2, 2, 223, 943, 3, 2, 2, 2, 225, 946, 3, 2, 2, 2, 227, 949, 3, 2, 2, 2, 229, 956, 3, 2, 2, 2, 231, 964, 3, 2, 2, 2, 233, 972, 3, 2, 2, 2, 235, 979, 3, 2, 2, 2, 237, 984, 3, 2, 2, 2, 239, 989, 3, 2, 2, 2, 241, 997, 3, 2, 2, 2, 243, 1003, 3, 2, 2, 2, 245, 1007, 3, 2, 2, 2, 247, 1013, 3, 2, 2, 2, 249, 1018, 3, 2, 2, 2, 251, 1026, 3, 2, 2, 2, 253, 1034, 3, 2, 2, 2, 255, 1038, 3, 2, 2, 2, 257, 1042, 3, 2, 2, 2, 259, 1049, 3, 2, 2, 2, 261, 1053, 3, 2, 2, 2, 263, 1057, 3, 2, 2, 2, 265, 1060, 3, 2, 2, 2, 267, 1066, 3, 2, 2, 2, 269, 1075, 3, 2, 2, 2, 271, 1078, 3, 2, 2, 2, 273, 1088, 3, 2, 2, 2, 275, 1091, 3, 2, 2, 2, 277, 1101, 3, 2, 2, 2, 279, 1107, 3, 2, 2, 2, 281, 1112, 3, 2, 2, 2, 283, 1122, 3, 2, 2, 2, 285, 1129, 3, 2, 2, 2, 287, 1137, 3, 2, 2, 2, 289, 1144, 3, 2, 2, 2, 291, 1151, 3, 2, 2, 2, 293, 1159, 3, 2, 2, 2, 295, 1164, 3, 2, 2, 2, 297, 1171, 3, 2, 2, 2, 299, 1178, 3, 2, 2, 2, 301, 1183, 3, 2, 2, 2, 303, 1187, 3, 2, 2, 2, 305, 1191, 3, 2, 2, 2, 307, 1198, 3, 2, 2, 2, 309, 1203, 3, 2, 2, 2, 311, 1208, 3, 2, 2, 2, 313, 1215, 3, 2, 2, 2, 315, 1223, 3, 2, 2, 2, 317, 1242, 3, 2, 2, 2, 319, 1252, 3, 2, 2, 2, 321, 1256, 3, 2, 2, 2, 323, 1261, 3, 2, 2, 2, 325, 1264, 3, 2, 2, 2, 327, 1269, 3, 2, 2, 2, 329, 1274, 3, 2, 2, 2, 331, 1281, 3, 2, 2, 2, 333, 1292, 3, 2, 2, 2, 335, 1299, 3, 2, 2, 2, 337, 1307, 3, 2, 2, 2, 339, 1313, 3, 2, 2, 2, 341, 1317, 3, 2, 2, 2, 343, 1324, 3, 2, 2, 2, 345, 1330, 3, 2, 2, 2, 347, 1339, 3, 2, 2, 2, 349, 1352, 3, 2, 2, 2, 351, 1356, 3, 2, 2, 2, 353, 1361, 3, 2, 2, 2, 355, 1367, 3, 2, 2, 2, 357, 1373, 3, 2, 2, 2, 359, 1377, 3, 2, 2, 2, 361, 1379, 3, 2, 2, 2, 363, 1381, 3, 2, 2, 2, 365, 1388, 3, 2, 2, 2, 367, 1395, 3, 2, 2, 2, 369, 1397, 3, 2, 2, 2, 371, 1399, 3, 2, 2, 2, 373, 1402, 3, 2, 2, 2, 375, 1404, 3, 2, 2, 2, 377, 1412, 3, 2, 2, 2, 379, 1422, 3, 2, 2, 2, 381, 1424, 3, 2, 2, 2, 383, 1437, 3, 2, 2, 2, 385, 1446, 3, 2, 2, 2, 387, 1455, 3, 2, 2, 2, 389, 1470, 3, 2, 2, 2, 391, 1482, 3, 2, 2, 2, 393, 394, 7, 61, 2, 2, 394, 4, 3, 2, 2, 2, 395, 396, 7, 42, 2, 2, 396, 6, 3, 2, 2, 2, 397, 398, 7, 46, 2, 2, 398, 8, 3, 2, 2, 2, 399, 400, 7, 43, 2, 2, 400, 10, 3, 2, 2, 2, 401, 402, 7, 45, 2, 2, 402, 12, 3, 2, 2, 2, 403, 404, 7, 47, 2, 2, 404, 14, 3, 2, 2, 2, 405, 406, 7, 93, 2, 2, 406, 16, 3, 2, 2, 2, 407, 408, 7, 95, 2, 2, 408, 18, 3, 2, 2, 2, 409, 410, 7, 60, 2, 2, 410, 20, 3, 2, 2, 2, 411, 412, 7, 60, 2, 2, 412, 413, 7, 63, 2, 2, 413, 22, 3, 2, 2, 2, 414, 415, 7, 48, 2, 2, 415, 24, 3, 2, 2, 2, 416, 417, 7, 65, 2, 2, 417, 26, 3, 2, 2, 2, 418, 419, 7, 44, 2, 2, 419, 420, 7, 44, 2, 2, 420, 28, 3, 2, 2, 2, 421, 422, 7, 94, 2, 2, 422, 30, 3, 2, 2, 2, 423, 424, 7, 125, 2, 2, 424, 32, 3, 2, 2, 2, 425, 426, 7, 127, 2, 2, 426, 34, 3, 2, 2, 2, 427, 428, 7, 62, 2, 2, 428, 36, 3, 2, 2, 2, 429, 430, 7, 62, 2, 2, 430, 431, 7, 63, 2, 2, 431, 38, 3, 2, 2, 2, 432, 433, 7, 44, 2, 2, 433, 40, 3, 2, 2, 2, 434, 435, 7, 49, 2, 2, 435, 42, 3, 2, 2, 2, 436, 437, 7, 126, 2, 2, 437, 438, 7, 126, 2, 2, 438, 44, 3, 2, 2, 2, 439, 440, 7, 62, 2, 2, 440, 441, 7, 44, 2, 2, 441, 46, 3, 2, 2, 2, 442, 443, 7, 126, 2, 2, 443, 48, 3, 2, 2, 2, 444, 445, 7, 64, 2, 2, 445, 50, 3, 2, 2, 2, 446, 447, 7, 64, 2, 2, 447, 448, 7, 63, 2, 2, 448, 52, 3, 2, 2, 2, 449, 450, 7, 62, 2, 2, 450, 451, 7, 64, 2, 2, 451, 54, 3, 2, 2, 2, 452, 453, 7, 63, 2, 2, 453, 56, 3, 2, 2, 2, 454, 455, 7, 60, 2, 2, 455, 456, 7, 62, 2, 2, 456, 457, 7, 64, 2, 2, 457, 458, 7, 60, 2, 2, 458, 58, 3, 2, 2, 2, 459, 460, 7, 60, 2, 2, 460, 461, 7, 63, 2, 2, 461, 462, 7, 60, 2, 2, 462, 60, 3, 2, 2, 2, 463, 464, 9, 2, 2, 2, 464, 62, 3, 2, 2, 2, 465, 466, 9, 3, 2, 2, 466, 64, 3, 2, 2, 2, 467, 468, 9, 4, 2, 2, 468, 66, 3, 2, 2, 2, 469, 470, 9, 5, 2, 2, 470, 68, 3, 2, 2, 2, 471, 472, 9, 6, 2, 2, 472, 70, 3, 2, 2, 2, 473, 474, 9, 7, 2, 2, 474, 72, 3, 2, 2, 2, 475, 476, 9, 8, 2, 2, 476, 74, 3, 2, 2, 2, 477, 478, 9, 9, 2, 2, 478, 76, 3, 2, 2, 2, 479, 480, 9, 10, 2, 2, 480, 78, 3, 2, 2, 2, 481, 482, 9, 11, 2, 2, 482, 80, 3, 2, 2, 2, 483, 484, 9, 12, 2, 2, 484, 82, 3, 2, 2, 2, 485, 486, 9, 13, 2, 2, 486, 84, 3, 2, 2, 2, 487, 488, 9, 14, 2, 2, 488, 86, 3, 2, 2, 2, 489, 490, 9, 15, 2, 2, 490, 88, 3, 2, 2, 2, 491, 492, 9, 16, 2, 2, 492, 90, 3, 2, 2, 2, 493, 494, 9, 17, 2, 2, 494, 92, 3, 2, 2, 2, 495, 496, 9, 18, 2, 2, 496, 94, 3, 2, 2, 2, 497, 498, 9, 19, 2, 2, 498, 96, 3, 2, 2, 2, 499, 500, 9, 20, 2, 2, 500, 98, 3, 2, 2, 2, 501, 502, 9, 21, 2, 2, 502, 100, 3, 2, 2, 2, 503, 504, 9, 22, 2, 2, 504, 102, 3, 2, 2, 2, 505, 506, 9, 23, 2, 2, 506, 104, 3, 2, 2, 2, 507, 508, 9, 24, 2, 2, 508, 106, 3, 2, 2, 2, 509, 510, 9, 25, 2, 2, 510, 108, 3, 2, 2, 2, 511, 512, 9, 26, 2, 2, 512, 110, 3, 2, 2, 2, 513, 514, 9, 27, 2, 2, 514, 112, 3, 2, 2, 2, 515, 516, 5, 61, 31, 2, 516, 517, 5, 63, 32, 2, 517, 518, 5, 97, 49, 2, 518, 114, 3, 2, 2, 2, 519, 520, 5, 61, 31, 2, 520, 521, 5, 63, 32, 2, 521, 522, 5, 97, 49, 2, 522, 523, 5, 99, 50, 2, 523, 524, 5, 95, 48, 2, 524, 525, 5, 61, 31, 2, 525, 526, 5, 65, 33, 2, 526, 527, 5, 99, 50, 2, 527, 116, 3, 2, 2, 2, 528, 529, 5, 61, 31, 2, 529, 530, 5, 65, 33, 2, 530, 531, 5, 89, 45, 2, 531, 532, 5, 97, 49, 2, 532, 118, 3, 2, 2, 2, 533, 534, 5, 61, 31, 2, 534, 535, 5, 73, 37, 2, 535, 536, 5, 73, 37, 2, 536, 537, 5, 95, 48, 2, 537, 538, 5, 69, 35, 2, 538, 539, 5, 73, 37, 2, 539, 540, 5, 61, 31, 2, 540, 541, 5, 99, 50, 2, 541, 542, 5, 69, 35, 2, 542, 120, 3, 2, 2, 2, 543, 544, 5, 61, 31, 2, 544, 545, 5, 83, 42, 2, 545, 546, 5, 77, 39, 2, 546, 547, 5, 61, 31, 2, 547, 548, 5, 97, 49, 2, 548, 122, 3, 2, 2, 2, 549, 550, 5, 61, 31, 2, 550, 551, 5, 87, 44, 2, 551, 552, 5, 67, 34, 2, 552, 124, 3, 2, 2, 2, 553, 554, 5, 61, 31, 2, 554, 555, 5, 87, 44, 2, 555, 556, 5, 67, 34, 2, 556, 557, 5, 89, 45, 2, 557, 558, 5, 95, 48, 2, 558, 126, 3, 2, 2, 2, 559, 560, 5, 61, 31, 2, 560, 561, 5, 95, 48, 2, 561, 562, 5, 95, 48, 2, 562, 563, 5, 61, 31, 2, 563, 564, 5, 109, 55, 2, 564, 128, 3, 2, 2, 2, 565, 566, 5, 61, 31, 2, 566, 567, 5, 97, 49, 2, 567, 130, 3, 2, 2, 2, 568, 569, 5, 61, 31, 2, 569, 570, 5, 97, 49, 2, 570, 571, 5, 77, 39, 2, 571, 572, 5, 87, 44, 2, 572, 132, 3, 2, 2, 2, 573, 574, 5, 61, 31, 2, 574, 575, 5, 99, 50, 2, 575, 576, 5, 61, 31, 2, 576, 577, 5, 87, 44, 2, 577, 134, 3, 2, 2, 2, 578, 579, 5, 63, 32, 2, 579, 580, 5, 61, 31, 2, 580, 581, 5, 73, 37, 2, 581, 136, 3, 2, 2, 2, 582, 583, 5, 63, 32, 2, 583, 584, 5, 61, 31, 2, 584, 585, 5, 97, 49, 2, 585, 586, 5, 69, 35, 2, 586, 587, 5, 67, 34, 2, 587, 588, 7, 97, 2, 2, 588, 589, 5, 89, 45, 2, 589, 590, 5, 87, 44, 2, 590, 138, 3, 2, 2, 2, 591, 592, 5, 63, 32, 2, 592, 593, 5, 69, 35, 2, 593, 594, 5, 73, 37, 2, 594, 595, 5, 77, 39, 2, 595, 596, 5, 87, 44, 2, 596, 140, 3, 2, 2, 2, 597, 598, 5, 63, 32, 2, 598, 599, 5, 77, 39, 2, 599, 600, 5, 87, 44, 2, 600, 601, 5, 61, 31, 2, 601, 602, 5, 95, 48, 2, 602, 603, 5, 109, 55, 2, 603, 142, 3, 2, 2, 2, 604, 605, 5, 63, 32, 2, 605, 606, 5, 83, 42, 2, 606, 607, 5, 69, 35, 2, 607, 608, 5, 87, 44, 2, 608, 609, 5, 73, 37, 2, 609, 610, 5, 99, 50, 2, 610, 611, 5, 75, 38, 2, 611, 144, 3, 2, 2, 2, 612, 613, 5, 63, 32, 2, 613, 614, 5, 89, 45, 2, 614, 615, 5, 89, 45, 2, 615, 616, 5, 83, 42, 2, 616, 617, 5, 69, 35, 2, 617, 618, 5, 61, 31, 2, 618, 619, 5, 87, 44, 2, 619, 146, 3, 2, 2, 2, 620, 621, 5, 63, 32, 2, 621, 622, 5, 109, 55, 2, 622, 148, 3, 2, 2, 2, 623, 624, 5, 65, 33, 2, 624, 625, 5, 61, 31, 2, 625, 626, 5, 97, 49, 2, 626, 627, 5, 69, 35, 2, 627, 150, 3, 2, 2, 2, 628, 629, 5, 65, 33, 2, 629, 630, 5, 89, 45, 2, 630, 631, 5, 87, 44, 2, 631, 632, 5, 97, 49, 2, 632, 633, 5, 99, 50, 2, 633, 634, 5, 61, 31, 2, 634, 635, 5, 87, 44, 2, 635, 636, 5, 99, 50, 2, 636, 152, 3, 2, 2, 2, 637, 638, 5, 65, 33, 2, 638, 639, 5, 89, 45, 2, 639, 640, 5, 87, 44, 2, 640, 641, 5, 97, 49, 2, 641, 642, 5, 99, 50, 2, 642, 643, 7, 97, 2, 2, 643, 644, 5, 69, 35, 2, 644, 154, 3, 2, 2, 2, 645, 646, 5, 65, 33, 2, 646, 647, 5, 89, 45, 2, 647, 648, 5, 97, 49, 2, 648, 156, 3, 2, 2, 2, 649, 650, 5, 67, 34, 2, 650, 651, 5, 69, 35, 2, 651, 652, 5, 95, 48, 2, 652, 653, 5, 77, 39, 2, 653, 654, 5, 103, 52, 2, 654, 655, 5, 69, 35, 2, 655, 158, 3, 2, 2, 2, 656, 657, 5, 67, 34, 2, 657, 658, 5, 77, 39, 2, 658, 659, 5, 103, 52, 2, 659, 160, 3, 2, 2, 2, 660, 661, 5, 69, 35, 2, 661, 662, 5, 83, 42, 2, 662, 663, 5, 97, 49, 2, 663, 664, 5, 69, 35, 2, 664, 162, 3, 2, 2, 2, 665, 666, 5, 69, 35, 2, 666, 667, 5, 87, 44, 2, 667, 668, 5, 67, 34, 2, 668, 164, 3, 2, 2, 2, 669, 670, 5, 69, 35, 2, 670, 671, 5, 87, 44, 2, 671, 672, 5, 67, 34, 2, 672, 673, 7, 97, 2, 2, 673, 674, 5, 61, 31, 2, 674, 675, 5, 83, 42, 2, 675, 676, 5, 77, 39, 2, 676, 677, 5, 61, 31, 2, 677, 678, 5, 97, 49, 2, 678, 166, 3, 2, 2, 2, 679, 680, 5, 69, 35, 2, 680, 681, 5, 87, 44, 2, 681, 682, 5, 67, 34, 2, 682, 683, 7, 97, 2, 2, 683, 684, 5, 65, 33, 2, 684, 685, 5, 61, 31, 2, 685, 686, 5, 97, 49, 2, 686, 687, 5, 69, 35, 2, 687, 168, 3, 2, 2, 2, 688, 689, 5, 69, 35, 2, 689, 690, 5, 87, 44, 2, 690, 691, 5, 67, 34, 2, 691, 692, 7, 97, 2, 2, 692, 693, 5, 65, 33, 2, 693, 694, 5, 89, 45, 2, 694, 695, 5, 87, 44, 2, 695, 696, 5, 97, 49, 2, 696, 697, 5, 99, 50, 2, 697, 698, 5, 61, 31, 2, 698, 699, 5, 87, 44, 2, 699, 700, 5, 99, 50, 2, 700, 170, 3, 2, 2, 2, 701, 702, 5, 69, 35, 2, 702, 703, 5, 87, 44, 2, 703, 704, 5, 67, 34, 2, 704, 705, 7, 97, 2, 2, 705, 706, 5, 69, 35, 2, 706, 707, 5, 87, 44, 2, 707, 708, 5, 99, 50, 2, 708, 709, 5, 77, 39, 2, 709, 710, 5, 99, 50, 2, 710, 711, 5, 109, 55, 2, 711, 172, 3, 2, 2, 2, 712, 713, 5, 69, 35, 2, 713, 714, 5, 87, 44, 2, 714, 715, 5, 67, 34, 2, 715, 716, 7, 97, 2, 2, 716, 717, 5, 71, 36, 2, 717, 718, 5, 101, 51, 2, 718, 719, 5, 87, 44, 2, 719, 720, 5, 65, 33, 2, 720, 721, 5, 99, 50, 2, 721, 722, 5, 77, 39, 2, 722, 723, 5, 89, 45, 2, 723, 724, 5, 87, 44, 2, 724, 174, 3, 2, 2, 2, 725, 726, 5, 69, 35, 2, 726, 727, 5, 87, 44, 2, 727, 728, 5, 67, 34, 2, 728, 729, 7, 97, 2, 2, 729, 730, 5, 77, 39, 2, 730, 731, 5, 71, 36, 2, 731, 176, 3, 2, 2, 2, 732, 733, 5, 69, 35, 2, 733, 734, 5, 87, 44, 2, 734, 735, 5, 67, 34, 2, 735, 736, 7, 97, 2, 2, 736, 737, 5, 83, 42, 2, 737, 738, 5, 89, 45, 2, 738, 739, 5, 65, 33, 2, 739, 740, 5, 61, 31, 2, 740, 741, 5, 83, 42, 2, 741, 178, 3, 2, 2, 2, 742, 743, 5, 69, 35, 2, 743, 744, 5, 87, 44, 2, 744, 745, 5, 67, 34, 2, 745, 746, 7, 97, 2, 2, 746, 747, 5, 91, 46, 2, 747, 748, 5, 95, 48, 2, 748, 749, 5, 89, 45, 2, 749, 750, 5, 65, 33, 2, 750, 751, 5, 69, 35, 2, 751, 752, 5, 67, 34, 2, 752, 753, 5, 101, 51, 2, 753, 754, 5, 95, 48, 2, 754, 755, 5, 69, 35, 2, 755, 180, 3, 2, 2, 2, 756, 757, 5, 69, 35, 2, 757, 758, 5, 87, 44, 2, 758, 759, 5, 67, 34, 2, 759, 760, 7, 97, 2, 2, 760, 761, 5, 95, 48, 2, 761, 762, 5, 69, 35, 2, 762, 763, 5, 91, 46, 2, 763, 764, 5, 69, 35, 2, 764, 765, 5, 61, 31, 2, 765, 766, 5, 99, 50, 2, 766, 182, 3, 2, 2, 2, 767, 768, 5, 69, 35, 2, 768, 769, 5, 87, 44, 2, 769, 770, 5, 67, 34, 2, 770, 771, 7, 97, 2, 2, 771, 772, 5, 95, 48, 2, 772, 773, 5, 101, 51, 2, 773, 774, 5, 83, 42, 2, 774, 775, 5, 69, 35, 2, 775, 184, 3, 2, 2, 2, 776, 777, 5, 69, 35, 2, 777, 778, 5, 87, 44, 2, 778, 779, 5, 67, 34, 2, 779, 780, 7, 97, 2, 2, 780, 781, 5, 97, 49, 2, 781, 782, 5, 65, 33, 2, 782, 783, 5, 75, 38, 2, 783, 784, 5, 69, 35, 2, 784, 785, 5, 85, 43, 2, 785, 786, 5, 61, 31, 2, 786, 186, 3, 2, 2, 2, 787, 788, 5, 69, 35, 2, 788, 789, 5, 87, 44, 2, 789, 790, 5, 67, 34, 2, 790, 791, 7, 97, 2, 2, 791, 792, 5, 97, 49, 2, 792, 793, 5, 101, 51, 2, 793, 794, 5, 63, 32, 2, 794, 795, 5, 99, 50, 2, 795, 796, 5, 109, 55, 2, 796, 797, 5, 91, 46, 2, 797, 798, 5, 69, 35, 2, 798, 799, 7, 97, 2, 2, 799, 800, 5, 65, 33, 2, 800, 801, 5, 89, 45, 2, 801, 802, 5, 87, 44, 2, 802, 803, 5, 97, 49, 2, 803, 804, 5, 99, 50, 2, 804, 805, 5, 95, 48, 2, 805, 806, 5, 61, 31, 2, 806, 807, 5, 77, 39, 2, 807, 808, 5, 87, 44, 2, 808, 809, 5, 99, 50, 2, 809, 188, 3, 2, 2, 2, 810, 811, 5, 69, 35, 2, 811, 812, 5, 87, 44, 2, 812, 813, 5, 67, 34, 2, 813, 814, 7, 97, 2, 2, 814, 815, 5, 99, 50, 2, 815, 816, 5, 109, 55, 2, 816, 817, 5, 91, 46, 2, 817, 818, 5, 69, 35, 2, 818, 190, 3, 2, 2, 2, 819, 820, 5, 69, 35, 2, 820, 821, 5, 87, 44, 2, 821, 822, 5, 99, 50, 2, 822, 823, 5, 77, 39, 2, 823, 824, 5, 99, 50, 2, 824, 825, 5, 109, 55, 2, 825, 192, 3, 2, 2, 2, 826, 827, 5, 69, 35, 2, 827, 828, 5, 87, 44, 2, 828, 829, 5, 101, 51, 2, 829, 830, 5, 85, 43, 2, 830, 831, 5, 69, 35, 2, 831, 832, 5, 95, 48, 2, 832, 833, 5, 61, 31, 2, 833, 834, 5, 99, 50, 2, 834, 835, 5, 77, 39, 2, 835, 836, 5, 89, 45, 2, 836, 837, 5, 87, 44, 2, 837, 194, 3, 2, 2, 2, 838, 839, 5, 69, 35, 2, 839, 840, 5, 97, 49, 2, 840, 841, 5, 65, 33, 2, 841, 842, 5, 61, 31, 2, 842, 843, 5, 91, 46, 2, 843, 844, 5, 69, 35, 2, 844, 196, 3, 2, 2, 2, 845, 846, 5, 69, 35, 2, 846, 847, 5, 107, 54, 2, 847, 848, 5, 77, 39, 2, 848, 849, 5, 97, 49, 2, 849, 850, 5, 99, 50, 2, 850, 851, 5, 97, 49, 2, 851, 198, 3, 2, 2, 2, 852, 853, 5, 69, 35, 2, 853, 854, 5, 107, 54, 2, 854, 855, 5, 91, 46, 2, 855, 200, 3, 2, 2, 2, 856, 857, 5, 69, 35, 2, 857, 858, 5, 107, 54, 2, 858, 859, 5, 99, 50, 2, 859, 860, 5, 69, 35, 2, 860, 861, 5, 87, 44, 2, 861, 862, 5, 97, 49, 2, 862, 863, 5, 77, 39, 2, 863, 864, 5, 63, 32, 2, 864, 865, 5, 83, 42, 2, 865, 866, 5, 69, 35, 2, 866, 202, 3, 2, 2, 2, 867, 868, 5, 71, 36, 2, 868, 869, 5, 61, 31, 2, 869, 870, 5, 83, 42, 2, 870, 871, 5, 97, 49, 2, 871, 872, 5, 69, 35, 2, 872, 204, 3, 2, 2, 2, 873, 874, 5, 71, 36, 2, 874, 875, 5, 77, 39, 2, 875, 876, 5, 107, 54, 2, 876, 877, 5, 69, 35, 2, 877, 878, 5, 67, 34, 2, 878, 206, 3, 2, 2, 2, 879, 880, 5, 71, 36, 2, 880, 881, 5, 89, 45, 2, 881, 882, 5, 95, 48, 2, 882, 208, 3, 2, 2, 2, 883, 884, 5, 71, 36, 2, 884, 885, 5, 89, 45, 2, 885, 886, 5, 95, 48, 2, 886, 887, 5, 85, 43, 2, 887, 888, 5, 61, 31, 2, 888, 889, 5, 99, 50, 2, 889, 210, 3, 2, 2, 2, 890, 891, 5, 71, 36, 2, 891, 892, 5, 95, 48, 2, 892, 893, 5, 89, 45, 2, 893, 894, 5, 85, 43, 2, 894, 212, 3, 2, 2, 2, 895, 896, 5, 71, 36, 2, 896, 897, 5, 101, 51, 2, 897, 898, 5, 87, 44, 2, 898, 899, 5, 65, 33, 2, 899, 900, 5, 99, 50, 2, 900, 901, 5, 77, 39, 2, 901, 902, 5, 89, 45, 2, 902, 903, 5, 87, 44, 2, 903, 214, 3, 2, 2, 2, 904, 905, 5, 73, 37, 2, 905, 906, 5, 69, 35, 2, 906, 907, 5, 87, 44, 2, 907, 908, 5, 69, 35, 2, 908, 909, 5, 95, 48, 2, 909, 910, 5, 77, 39, 2, 910, 911, 5, 65, 33, 2, 911, 216, 3, 2, 2, 2, 912, 913, 5, 73, 37, 2, 913, 914, 5, 69, 35, 2, 914, 915, 5, 87, 44, 2, 915, 916, 5, 69, 35, 2, 916, 917, 5, 95, 48, 2, 917, 918, 5, 77, 39, 2, 918, 919, 5, 65, 33, 2, 919, 920, 7, 97, 2, 2, 920, 921, 5, 69, 35, 2, 921, 922, 5, 87, 44, 2, 922, 923, 5, 99, 50, 2, 923, 924, 5, 77, 39, 2, 924, 925, 5, 99, 50, 2, 925, 926, 5, 109, 55, 2, 926, 218, 3, 2, 2, 2, 927, 928, 5, 75, 38, 2, 928, 929, 5, 77, 39, 2, 929, 930, 5, 63, 32, 2, 930, 931, 5, 89, 45, 2, 931, 932, 5, 101, 51, 2, 932, 933, 5, 87, 44, 2, 933, 934, 5, 67, 34, 2, 934, 220, 3, 2, 2, 2, 935, 936, 5, 75, 38, 2, 936, 937, 5, 77, 39, 2, 937, 938, 5, 77, 39, 2, 938, 939, 5, 87, 44, 2, 939, 940, 5, 67, 34, 2, 940, 941, 5, 69, 35, 2, 941, 942, 5, 107, 54, 2, 942, 222, 3, 2, 2, 2, 943, 944, 5, 77, 39, 2, 944, 945, 5, 71, 36, 2, 945, 224, 3, 2, 2, 2, 946, 947, 5, 77, 39, 2, 947, 948, 5, 87, 44, 2, 948, 226, 3, 2, 2, 2, 949, 950, 5, 77, 39, 2, 950, 951, 5, 87, 44, 2, 951, 952, 5, 97, 49, 2, 952, 953, 5, 69, 35, 2, 953, 954, 5, 95, 48, 2, 954, 955, 5, 99, 50, 2, 955, 228, 3, 2, 2, 2, 956, 957, 5, 77, 39, 2, 957, 958, 5, 87, 44, 2, 958, 959, 5, 99, 50, 2, 959, 960, 5, 69, 35, 2, 960, 961, 5, 73, 37, 2, 961, 962, 5, 69, 35, 2, 962, 963, 5, 95, 48, 2, 963, 230, 3, 2, 2, 2, 964, 965, 5, 77, 39, 2, 965, 966, 5, 87, 44, 2, 966, 967, 5, 103, 52, 2, 967, 968, 5, 69, 35, 2, 968, 969, 5, 95, 48, 2, 969, 970, 5, 97, 49, 2, 970, 971, 5, 69, 35, 2, 971, 232, 3, 2, 2, 2, 972, 973, 5, 83, 42, 2, 973, 974, 5, 69, 35, 2, 974, 975, 5, 87, 44, 2, 975, 976, 5, 73, 37, 2, 976, 977, 5, 99, 50, 2, 977, 978, 5, 75, 38, 2, 978, 234, 3, 2, 2, 2, 979, 980, 5, 83, 42, 2, 980, 981, 5, 77, 39, 2, 981, 982, 5, 81, 41, 2, 982, 983, 5, 69, 35, 2, 983, 236, 3, 2, 2, 2, 984, 985, 5, 83, 42, 2, 985, 986, 5, 77, 39, 2, 986, 987, 5, 97, 49, 2, 987, 988, 5, 99, 50, 2, 988, 238, 3, 2, 2, 2, 989, 990, 5, 83, 42, 2, 990, 991, 5, 89, 45, 2, 991, 992, 5, 63, 32, 2, 992, 993, 5, 89, 45, 2, 993, 994, 5, 101, 51, 2, 994, 995, 5, 87, 44, 2, 995, 996, 5, 67, 34, 2, 996, 240, 3, 2, 2, 2, 997, 998, 5, 83, 42, 2, 998, 999, 5, 89, 45, 2, 999, 1000, 5, 65, 33, 2, 1000, 1001, 5, 61, 31, 2, 1001, 1002, 5, 83, 42, 2, 1002, 242, 3, 2, 2, 2, 1003, 1004, 5, 83, 42, 2, 1004, 1005, 5, 89, 45, 2, 1005, 1006, 5, 73, 37, 2, 1006, 244, 3, 2, 2, 2, 1007, 1008, 5, 83, 42, 2, 1008, 1009, 5, 89, 45, 2, 1009, 1010, 5, 73, 37, 2, 1010, 1011, 7, 51, 2, 2, 1011, 1012, 7, 50, 2, 2, 1012, 246, 3, 2, 2, 2, 1013, 1014, 5, 83, 42, 2, 1014, 1015, 5, 89, 45, 2, 1015, 1016, 5, 73, 37, 2, 1016, 1017, 7, 52, 2, 2, 1017, 248, 3, 2, 2, 2, 1018, 1019, 5, 83, 42, 2, 1019, 1020, 5, 89, 45, 2, 1020, 1021, 5, 73, 37, 2, 1021, 1022, 5, 77, 39, 2, 1022, 1023, 5, 65, 33, 2, 1023, 1024, 5, 61, 31, 2, 1024, 1025, 5, 83, 42, 2, 1025, 250, 3, 2, 2, 2, 1026, 1027, 5, 83, 42, 2, 1027, 1028, 5, 89, 45, 2, 1028, 1029, 5, 77, 39, 2, 1029, 1030, 5, 87, 44, 2, 1030, 1031, 5, 67, 34, 2, 1031, 1032, 5, 69, 35, 2, 1032, 1033, 5, 107, 54, 2, 1033, 252, 3, 2, 2, 2, 1034, 1035, 5, 85, 43, 2, 1035, 1036, 5, 89, 45, 2, 1036, 1037, 5, 67, 34, 2, 1037, 254, 3, 2, 2, 2, 1038, 1039, 5, 87, 44, 2, 1039, 1040, 5, 89, 45, 2, 1040, 1041, 5, 99, 50, 2, 1041, 256, 3, 2, 2, 2, 1042, 1043, 5, 87, 44, 2, 1043, 1044, 5, 101, 51, 2, 1044, 1045, 5, 85, 43, 2, 1045, 1046, 5, 63, 32, 2, 1046, 1047, 5, 69, 35, 2, 1047, 1048, 5, 95, 48, 2, 1048, 258, 3, 2, 2, 2, 1049, 1050, 5, 87, 44, 2, 1050, 1051, 5, 103, 52, 2, 1051, 1052, 5, 83, 42, 2, 1052, 260, 3, 2, 2, 2, 1053, 1054, 5, 89, 45, 2, 1054, 1055, 5, 67, 34, 2, 1055, 1056, 5, 67, 34, 2, 1056, 262, 3, 2, 2, 2, 1057, 1058, 5, 89, 45, 2, 1058, 1059, 5, 71, 36, 2, 1059, 264, 3, 2, 2, 2, 1060, 1061, 5, 89, 45, 2, 1061, 1062, 5, 87, 44, 2, 1062, 1063, 5, 69, 35, 2, 1063, 1064, 5, 89, 45, 2, 1064, 1065, 5, 71, 36, 2, 1065, 266, 3, 2, 2, 2, 1066, 1067, 5, 89, 45, 2, 1067, 1068, 5, 91, 46, 2, 1068, 1069, 5, 99, 50, 2, 1069, 1070, 5, 77, 39, 2, 1070, 1071, 5, 89, 45, 2, 1071, 1072, 5, 87, 44, 2, 1072, 1073, 5, 61, 31, 2, 1073, 1074, 5, 83, 42, 2, 1074, 268, 3, 2, 2, 2, 1075, 1076, 5, 89, 45, 2, 1076, 1077, 5, 95, 48, 2, 1077, 270, 3, 2, 2, 2, 1078, 1079, 5, 89, 45, 2, 1079, 1080, 5, 99, 50, 2, 1080, 1081, 5, 75, 38, 2, 1081, 1082, 5, 69, 35, 2, 1082, 1083, 5, 95, 48, 2, 1083, 1084, 5, 105, 53, 2, 1084, 1085, 5, 77, 39, 2, 1085, 1086, 5, 97, 49, 2, 1086, 1087, 5, 69, 35, 2, 1087, 272, 3, 2, 2, 2, 1088, 1089, 5, 91, 46, 2, 1089, 1090, 5, 77, 39, 2, 1090, 274, 3, 2, 2, 2, 1091, 1092, 5, 91, 46, 2, 1092, 1093, 5, 95, 48, 2, 1093, 1094, 5, 89, 45, 2, 1094, 1095, 5, 65, 33, 2, 1095, 1096, 5, 69, 35, 2, 1096, 1097, 5, 67, 34, 2, 1097, 1098, 5, 101, 51, 2, 1098, 1099, 5, 95, 48, 2, 1099, 1100, 5, 69, 35, 2, 1100, 276, 3, 2, 2, 2, 1101, 1102, 5, 93, 47, 2, 1102, 1103, 5, 101, 51, 2, 1103, 1104, 5, 69, 35, 2, 1104, 1105, 5, 95, 48, 2, 1105, 1106, 5, 109, 55, 2, 1106, 278, 3, 2, 2, 2, 1107, 1108, 5, 95, 48, 2, 1108, 1109, 5, 69, 35, 2, 1109, 1110, 5, 61, 31, 2, 1110, 1111, 5, 83, 42, 2, 1111, 280, 3, 2, 2, 2, 1112, 1113, 5, 95, 48, 2, 1113, 1114, 5, 69, 35, 2, 1114, 1115, 5, 71, 36, 2, 1115, 1116, 5, 69, 35, 2, 1116, 1117, 5, 95, 48, 2, 1117, 1118, 5, 69, 35, 2, 1118, 1119, 5, 87, 44, 2, 1119, 1120, 5, 65, 33, 2, 1120, 1121, 5, 69, 35, 2, 1121, 282, 3, 2, 2, 2, 1122, 1123, 5, 95, 48, 2, 1123, 1124, 5, 69, 35, 2, 1124, 1125, 5, 85, 43, 2, 1125, 1126, 5, 89, 45, 2, 1126, 1127, 5, 103, 52, 2, 1127, 1128, 5, 69, 35, 2, 1128, 284, 3, 2, 2, 2, 1129, 1130, 5, 95, 48, 2, 1130, 1131, 5, 69, 35, 2, 1131, 1132, 5, 87, 44, 2, 1132, 1133, 5, 61, 31, 2, 1133, 1134, 5, 85, 43, 2, 1134, 1135, 5, 69, 35, 2, 1135, 1136, 5, 67, 34, 2, 1136, 286, 3, 2, 2, 2, 1137, 1138, 5, 95, 48, 2, 1138, 1139, 5, 69, 35, 2, 1139, 1140, 5, 91, 46, 2, 1140, 1141, 5, 69, 35, 2, 1141, 1142, 5, 61, 31, 2, 1142, 1143, 5, 99, 50, 2, 1143, 288, 3, 2, 2, 2, 1144, 1145, 5, 95, 48, 2, 1145, 1146, 5, 69, 35, 2, 1146, 1147, 5, 99, 50, 2, 1147, 1148, 5, 101, 51, 2, 1148, 1149, 5, 95, 48, 2, 1149, 1150, 5, 87, 44, 2, 1150, 290, 3, 2, 2, 2, 1151, 1152, 5, 95, 48, 2, 1152, 1153, 5, 89, 45, 2, 1153, 1154, 5, 83, 42, 2, 1154, 1155, 5, 69, 35, 2, 1155, 1156, 5, 97, 49, 2, 1156, 1157, 5, 89, 45, 2, 1157, 1158, 5, 71, 36, 2, 1158, 292, 3, 2, 2, 2, 1159, 1160, 5, 95, 48, 2, 1160, 1161, 5, 101, 51, 2, 1161, 1162, 5, 83, 42, 2, 1162, 1163, 5, 69, 35, 2, 1163, 294, 3, 2, 2, 2, 1164, 1165, 5, 97, 49, 2, 1165, 1166, 5, 65, 33, 2, 1166, 1167, 5, 75, 38, 2, 1167, 1168, 5, 69, 35, 2, 1168, 1169, 5, 85, 43, 2, 1169, 1170, 5, 61, 31, 2, 1170, 296, 3, 2, 2, 2, 1171, 1172, 5, 97, 49, 2, 1172, 1173, 5, 69, 35, 2, 1173, 1174, 5, 83, 42, 2, 1174, 1175, 5, 69, 35, 2, 1175, 1176, 5, 65, 33, 2, 1176, 1177, 5, 99, 50, 2, 1177, 298, 3, 2, 2, 2, 1178, 1179, 5, 97, 49, 2, 1179, 1180, 5, 69, 35, 2, 1180, 1181, 5, 83, 42, 2, 1181, 1182, 5, 71, 36, 2, 1182, 300, 3, 2, 2, 2, 1183, 1184, 5, 97, 49, 2, 1184, 1185, 5, 69, 35, 2, 1185, 1186, 5, 99, 50, 2, 1186, 302, 3, 2, 2, 2, 1187, 1188, 5, 97, 49, 2, 1188, 1189, 5, 77, 39, 2, 1189, 1190, 5, 87, 44, 2, 1190, 304, 3, 2, 2, 2, 1191, 1192, 5, 97, 49, 2, 1192, 1193, 5, 77, 39, 2, 1193, 1194, 5, 111, 56, 2, 1194, 1195, 5, 69, 35, 2, 1195, 1196, 5, 89, 45, 2, 1196, 1197, 5, 71, 36, 2, 1197, 306, 3, 2, 2, 2, 1198, 1199, 5, 97, 49, 2, 1199, 1200, 5, 81, 41, 2, 1200, 1201, 5, 77, 39, 2, 1201, 1202, 5, 91, 46, 2, 1202, 308, 3, 2, 2, 2, 1203, 1204, 5, 97, 49, 2, 1204, 1205, 5, 93, 47, 2, 1205, 1206, 5, 95, 48, 2, 1206, 1207, 5, 99, 50, 2, 1207, 310, 3, 2, 2, 2, 1208, 1209, 5, 97, 49, 2, 1209, 1210, 5, 99, 50, 2, 1210, 1211, 5, 95, 48, 2, 1211, 1212, 5, 77, 39, 2, 1212, 1213, 5, 87, 44, 2, 1213, 1214, 5, 73, 37, 2, 1214, 312, 3, 2, 2, 2, 1215, 1216, 5, 97, 49, 2, 1216, 1217, 5, 101, 51, 2, 1217, 1218, 5, 63, 32, 2, 1218, 1219, 5, 99, 50, 2, 1219, 1220, 5, 109, 55, 2, 1220, 1221, 5, 91, 46, 2, 1221, 1222, 5, 69, 35, 2, 1222, 314, 3, 2, 2, 2, 1223, 1224, 5, 97, 49, 2, 1224, 1225, 5, 101, 51, 2, 1225, 1226, 5, 63, 32, 2, 1226, 1227, 5, 99, 50, 2, 1227, 1228, 5, 109, 55, 2, 1228, 1229, 5, 91, 46, 2, 1229, 1230, 5, 69, 35, 2, 1230, 1231, 7, 97, 2, 2, 1231, 1232, 5, 65, 33, 2, 1232, 1233, 5, 89, 45, 2, 1233, 1234, 5, 87, 44, 2, 1234, 1235, 5, 97, 49, 2, 1235, 1236, 5, 99, 50, 2, 1236, 1237, 5, 95, 48, 2, 1237, 1238, 5, 61, 31, 2, 1238, 1239, 5, 77, 39, 2, 1239, 1240, 5, 87, 44, 2, 1240, 1241, 5, 99, 50, 2, 1241, 316, 3, 2, 2, 2, 1242, 1243, 5, 97, 49, 2, 1243, 1244, 5, 101, 51, 2, 1244, 1245, 5, 91, 46, 2, 1245, 1246, 5, 69, 35, 2, 1246, 1247, 5, 95, 48, 2, 1247, 1248, 5, 99, 50, 2, 1248, 1249, 5, 109, 55, 2, 1249, 1250, 5, 91, 46, 2, 1250, 1251, 5, 69, 35, 2, 1251, 318, 3, 2, 2, 2, 1252, 1253, 5, 99, 50, 2, 1253, 1254, 5, 61, 31, 2, 1254, 1255, 5, 87, 44, 2, 1255, 320, 3, 2, 2, 2, 1256, 1257, 5, 99, 50, 2, 1257, 1258, 5, 75, 38, 2, 1258, 1259, 5, 69, 35, 2, 1259, 1260, 5, 87, 44, 2, 1260, 322, 3, 2, 2, 2, 1261, 1262, 5, 99, 50, 2, 1262, 1263, 5, 89, 45, 2, 1263, 324, 3, 2, 2, 2, 1264, 1265, 5, 99, 50, 2, 1265, 1266, 5, 95, 48, 2, 1266, 1267, 5, 101, 51, 2, 1267, 1268, 5, 69, 35, 2, 1268, 326, 3, 2, 2, 2, 1269, 1270, 5, 99, 50, 2, 1270, 1271, 5, 109, 55, 2, 1271, 1272, 5, 91, 46, 2, 1272, 1273, 5, 69, 35, 2, 1273, 328, 3, 2, 2, 2, 1274, 1275, 5, 99, 50, 2, 1275, 1276, 5, 109, 55, 2, 1276, 1277, 5, 91, 46, 2, 1277, 1278, 5, 69, 35, 2, 1278, 1279, 5, 89, 45, 2, 1279, 1280, 5, 71, 36, 2, 1280, 330, 3, 2, 2, 2, 1281, 1282, 5, 99, 50, 2, 1282, 1283, 5, 89, 45, 2, 1283, 1284, 5, 99, 50, 2, 1284, 1285, 5, 61, 31, 2, 1285, 1286, 5, 83, 42, 2, 1286, 1287, 7, 97, 2, 2, 1287, 1288, 5, 89, 45, 2, 1288, 1289, 5, 103, 52, 2, 1289, 1290, 5, 69, 35, 2, 1290, 1291, 5, 95, 48, 2, 1291, 332, 3, 2, 2, 2, 1292, 1293, 5, 101, 51, 2, 1293, 1294, 5, 87, 44, 2, 1294, 1295, 5, 77, 39, 2, 1295, 1296, 5, 93, 47, 2, 1296, 1297, 5, 101, 51, 2, 1297, 1298, 5, 69, 35, 2, 1298, 334, 3, 2, 2, 2, 1299, 1300, 5, 101, 51, 2, 1300, 1301, 5, 87, 44, 2, 1301, 1302, 5, 81, 41, 2, 1302, 1303, 5, 87, 44, 2, 1303, 1304, 5, 89, 45, 2, 1304, 1305, 5, 105, 53, 2, 1305, 1306, 5, 87, 44, 2, 1306, 336, 3, 2, 2, 2, 1307, 1308, 5, 101, 51, 2, 1308, 1309, 5, 87, 44, 2, 1309, 1310, 5, 99, 50, 2, 1310, 1311, 5, 77, 39, 2, 1311, 1312, 5, 83, 42, 2, 1312, 338, 3, 2, 2, 2, 1313, 1314, 5, 101, 51, 2, 1314, 1315, 5, 97, 49, 2, 1315, 1316, 5, 69, 35, 2, 1316, 340, 3, 2, 2, 2, 1317, 1318, 5, 101, 51, 2, 1318, 1319, 5, 97, 49, 2, 1319, 1320, 5, 69, 35, 2, 1320, 1321, 5, 67, 34, 2, 1321, 1322, 5, 77, 39, 2, 1322, 1323, 5, 87, 44, 2, 1323, 342, 3, 2, 2, 2, 1324, 1325, 5, 103, 52, 2, 1325, 1326, 5, 61, 31, 2, 1326, 1327, 5, 83, 42, 2, 1327, 1328, 5, 101, 51, 2, 1328, 1329, 5, 69, 35, 2, 1329, 344, 3, 2, 2, 2, 1330, 1331, 5, 103, 52, 2, 1331, 1332, 5, 61, 31, 2, 1332, 1333, 5, 83, 42, 2, 1333, 1334, 5, 101, 51, 2, 1334, 1335, 5, 69, 35, 2, 1335, 1336, 7, 97, 2, 2, 1336, 1337, 5, 77, 39, 2, 1337, 1338, 5, 87, 44, 2, 1338, 346, 3, 2, 2, 2, 1339, 1340, 5, 103, 52, 2, 1340, 1341, 5, 61, 31, 2, 1341, 1342, 5, 83, 42, 2, 1342, 1343, 5, 101, 51, 2, 1343, 1344, 5, 69, 35, 2, 1344, 1345, 7, 97, 2, 2, 1345, 1346, 5, 101, 51, 2, 1346, 1347, 5, 87, 44, 2, 1347, 1348, 5, 77, 39, 2, 1348, 1349, 5, 93, 47, 2, 1349, 1350, 5, 101, 51, 2, 1350, 1351, 5, 69, 35, 2, 1351, 348, 3, 2, 2, 2, 1352, 1353, 5, 103, 52, 2, 1353, 1354, 5, 61, 31, 2, 1354, 1355, 5, 95, 48, 2, 1355, 350, 3, 2, 2, 2, 1356, 1357, 5, 105, 53, 2, 1357, 1358, 5, 77, 39, 2, 1358, 1359, 5, 99, 50, 2, 1359, 1360, 5, 75, 38, 2, 1360, 352, 3, 2, 2, 2, 1361, 1362, 5, 105, 53, 2, 1362, 1363, 5, 75, 38, 2, 1363, 1364, 5, 69, 35, 2, 1364, 1365, 5, 95, 48, 2, 1365, 1366, 5, 69, 35, 2, 1366, 354, 3, 2, 2, 2, 1367, 1368, 5, 105, 53, 2, 1368, 1369, 5, 75, 38, 2, 1369, 1370, 5, 77, 39, 2, 1370, 1371, 5, 83, 42, 2, 1371, 1372, 5, 69, 35, 2, 1372, 356, 3, 2, 2, 2, 1373, 1374, 5, 107, 54, 2, 1374, 1375, 5, 89, 45, 2, 1375, 1376, 5, 95, 48, 2, 1376, 358, 3, 2, 2, 2, 1377, 1378, 9, 28, 2, 2, 1378, 360, 3, 2, 2, 2, 1379, 1380, 9, 29, 2, 2, 1380, 362, 3, 2, 2, 2, 1381, 1385, 5, 361, 181, 2, 1382, 1384, 5, 361, 181, 2, 1383, 1382, 3, 2, 2, 2, 1384, 1387, 3, 2, 2, 2, 1385, 1383, 3, 2, 2, 2, 1385, 1386, 3, 2, 2, 2, 1386, 364, 3, 2, 2, 2, 1387, 1385, 3, 2, 2, 2, 1388, 1389, 5, 371, 186, 2, 1389, 1390, 5, 371, 186, 2, 1390, 1391, 5, 371, 186, 2, 1391, 1392, 5, 371, 186, 2, 1392, 366, 3, 2, 2, 2, 1393, 1396, 5, 361, 181, 2, 1394, 1396, 9, 30, 2, 2, 1395, 1393, 3, 2, 2, 2, 1395, 1394, 3, 2, 2, 2, 1396, 368, 3, 2, 2, 2, 1397, 1398, 9, 31, 2, 2, 1398, 370, 3, 2, 2, 2, 1399, 1400, 5, 367, 184, 2, 1400, 1401, 5, 367, 184, 2, 1401, 372, 3, 2, 2, 2, 1402, 1403, 9, 32, 2, 2, 1403, 374, 3, 2, 2, 2, 1404, 1405, 7, 39, 2, 2, 1405, 1409, 5, 359, 180, 2, 1406, 1408, 5, 359, 180, 2, 1407, 1406, 3, 2, 2, 2, 1408, 1411, 3, 2, 2, 2, 1409, 1407, 3, 2, 2, 2, 1409, 1410, 3, 2, 2, 2, 1410, 376, 3, 2, 2, 2, 1411, 1409, 3, 2, 2, 2, 1412, 1413, 7, 36, 2, 2, 1413, 1417, 5, 365, 183, 2, 1414, 1416, 5, 365, 183, 2, 1415, 1414, 3, 2, 2, 2, 1416, 1419, 3, 2, 2, 2, 1417, 1415, 3, 2, 2, 2, 1417, 1418, 3, 2, 2, 2, 1418, 1420, 3, 2, 2, 2, 1419, 1417, 3, 2, 2, 2, 1420, 1421, 7, 36, 2, 2, 1421, 378, 3, 2, 2, 2, 1422, 1423, 5, 363, 182, 2, 1423, 380, 3, 2, 2, 2, 1424, 1425, 5, 363, 182, 2, 1425, 1427, 7, 48, 2, 2, 1426, 1428, 5, 363, 182, 2, 1427, 1426, 3, 2, 2, 2, 1427, 1428, 3, 2, 2, 2, 1428, 1435, 3, 2, 2, 2, 1429, 1431, 5, 69, 35, 2, 1430, 1432, 5, 373, 187, 2, 1431, 1430, 3, 2, 2, 2, 1431, 1432, 3, 2, 2, 2, 1432, 1433, 3, 2, 2, 2, 1433, 1434, 5, 363, 182, 2, 1434, 1436, 3, 2, 2, 2, 1435, 1429, 3, 2, 2, 2, 1435, 1436, 3, 2, 2, 2, 1436, 382, 3, 2, 2, 2, 1437, 1443, 5, 369, 185, 2, 1438, 1442, 5, 369, 185, 2, 1439, 1442, 5, 361, 181, 2, 1440, 1442, 7, 97, 2, 2, 1441, 1438, 3, 2, 2, 2, 1441, 1439, 3, 2, 2, 2, 1441, 1440, 3, 2, 2, 2, 1442, 1445, 3, 2, 2, 2, 1443, 1441, 3, 2, 2, 2, 1443, 1444, 3, 2, 2, 2, 1444, 384, 3, 2, 2, 2, 1445, 1443, 3, 2, 2, 2, 1446, 1450, 7, 41, 2, 2, 1447, 1449, 11, 2, 2, 2, 1448, 1447, 3, 2, 2, 2, 1449, 1452, 3, 2, 2, 2, 1450, 1451, 3, 2, 2, 2, 1450, 1448, 3, 2, 2, 2, 1451, 1453, 3, 2, 2, 2, 1452, 1450, 3, 2, 2, 2, 1453, 1454, 7, 41, 2, 2, 1454, 386, 3, 2, 2, 2, 1455, 1456, 7, 42, 2, 2, 1456, 1457, 7, 44, 2, 2, 1457, 1462, 3, 2, 2, 2, 1458, 1461, 5, 387, 194, 2, 1459, 1461, 11, 2, 2, 2, 1460, 1458, 3, 2, 2, 2, 1460, 1459, 3, 2, 2, 2, 1461, 1464, 3, 2, 2, 2, 1462, 1463, 3, 2, 2, 2, 1462, 1460, 3, 2, 2, 2, 1463, 1465, 3, 2, 2, 2, 1464, 1462, 3, 2, 2, 2, 1465, 1466, 7, 44, 2, 2, 1466, 1467, 7, 43, 2, 2, 1467, 1468, 3, 2, 2, 2, 1468, 1469, 8, 194, 2, 2, 1469, 388, 3, 2, 2, 2, 1470, 1471, 7, 47, 2, 2, 1471, 1472, 7, 47, 2, 2, 1472, 1476, 3, 2, 2, 2, 1473, 1475, 10, 33, 2, 2, 1474, 1473, 3, 2, 2, 2, 1475, 1478, 3, 2, 2, 2, 1476, 1474, 3, 2, 2, 2, 1476, 1477, 3, 2, 2, 2, 1477, 1479, 3, 2, 2, 2, 1478, 1476, 3, 2, 2, 2, 1479, 1480, 8, 195, 2, 2, 1480, 390, 3, 2, 2, 2, 1481, 1483, 9, 34, 2, 2, 1482, 1481, 3, 2, 2, 2, 1483, 1484, 3, 2, 2, 2, 1484, 1482, 3, 2, 2, 2, 1484, 1485, 3, 2, 2, 2, 1485, 1486, 3, 2, 2, 2, 1486, 1487, 8, 196, 3, 2, 1487, 392, 3, 2, 2, 2, 17, 2, 1385, 1395, 1409, 1417, 1427, 1431, 1435, 1441, 1443, 1450, 1460, 1462, 1476, 1484, 4, 2, 4, 2, 2, 3, 2]