@opra/common 0.33.13 → 1.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (582) hide show
  1. package/browser.js +4657 -3899
  2. package/cjs/document/api-document.js +112 -23
  3. package/cjs/document/common/api-base.js +27 -0
  4. package/cjs/document/common/data-type-map.js +66 -0
  5. package/cjs/document/common/document-element.js +31 -0
  6. package/cjs/document/common/document-init-context.js +69 -0
  7. package/cjs/document/common/document-node.js +124 -0
  8. package/cjs/document/common/opra-document-error.js +15 -0
  9. package/cjs/document/common/value.js +33 -0
  10. package/cjs/document/constants.js +13 -7
  11. package/cjs/document/data-type/api-field.js +64 -0
  12. package/cjs/document/data-type/complex-type-base.js +183 -0
  13. package/cjs/document/data-type/complex-type.js +89 -13
  14. package/cjs/document/data-type/data-type.js +32 -25
  15. package/cjs/document/data-type/decorators/api-field-decorator.js +26 -0
  16. package/cjs/document/data-type/decorators/complex-type.decorator.js +33 -0
  17. package/cjs/document/data-type/decorators/simple-type.decorator.js +67 -0
  18. package/cjs/document/data-type/enum-type.js +92 -36
  19. package/cjs/document/data-type/{builtin → extended-types}/base64.type.js +11 -2
  20. package/cjs/document/data-type/extended-types/date-string.type.js +44 -0
  21. package/cjs/document/data-type/extended-types/date-time-string.type.js +47 -0
  22. package/cjs/document/data-type/extended-types/date-time.type.js +58 -0
  23. package/cjs/document/data-type/extended-types/date.type.js +55 -0
  24. package/cjs/document/data-type/extended-types/email.type.js +80 -0
  25. package/cjs/document/data-type/extended-types/field-path.type.js +53 -0
  26. package/cjs/document/data-type/extended-types/filter.type.js +74 -0
  27. package/cjs/document/data-type/extended-types/index.js +16 -0
  28. package/cjs/document/data-type/{builtin → extended-types}/object-id.type.js +11 -2
  29. package/cjs/document/data-type/extended-types/operation-result.type.js +56 -0
  30. package/cjs/document/data-type/extended-types/time.type.js +47 -0
  31. package/cjs/document/data-type/{builtin → extended-types}/url.type.js +12 -3
  32. package/cjs/document/data-type/extended-types/uuid.type.js +30 -0
  33. package/cjs/document/data-type/mapped-type.js +77 -61
  34. package/cjs/document/data-type/mixin-type.js +78 -23
  35. package/cjs/document/data-type/omit-type.js +11 -0
  36. package/cjs/document/data-type/partial-type.js +13 -0
  37. package/cjs/document/data-type/pick-type.js +11 -0
  38. package/cjs/document/data-type/primitive-types/any.type.js +25 -0
  39. package/cjs/document/data-type/primitive-types/bigint.type.js +30 -0
  40. package/cjs/document/data-type/{builtin → primitive-types}/boolean.type.js +11 -2
  41. package/cjs/document/data-type/primitive-types/index.js +11 -0
  42. package/cjs/document/data-type/primitive-types/integer.type.js +30 -0
  43. package/cjs/document/data-type/{builtin → primitive-types}/null.type.js +11 -2
  44. package/cjs/document/data-type/primitive-types/number.type.js +40 -0
  45. package/cjs/document/data-type/{builtin → primitive-types}/object.type.js +7 -1
  46. package/cjs/document/data-type/primitive-types/string.type.js +58 -0
  47. package/cjs/document/data-type/required-type.js +13 -0
  48. package/cjs/document/data-type/simple-type.js +93 -14
  49. package/cjs/document/data-type/utils/create-mapped-class.js +54 -0
  50. package/cjs/document/data-type/utils/get-is-inherited-predicate-fn.js +15 -0
  51. package/cjs/document/{data-type/field-decorator.js → decorators/api-field-decorator.js} +7 -7
  52. package/cjs/document/{data-type → decorators}/complex-type.decorator.js +11 -1
  53. package/cjs/document/decorators/http-controller.decorator.js +117 -0
  54. package/cjs/document/decorators/http-operation-entity.decorator.js +462 -0
  55. package/cjs/document/decorators/http-operation.decorator.js +183 -0
  56. package/cjs/document/decorators/simple-type.decorator.js +67 -0
  57. package/cjs/document/factory/api-document.factory.js +178 -0
  58. package/cjs/document/factory/data-type.factory.js +498 -0
  59. package/cjs/document/factory/http-api.factory.js +315 -0
  60. package/cjs/document/http/decorators/http-controller.decorator.js +117 -0
  61. package/cjs/document/http/decorators/http-operation-entity.decorator.js +461 -0
  62. package/cjs/document/http/decorators/http-operation.decorator.js +183 -0
  63. package/cjs/document/http/http-api.js +40 -0
  64. package/cjs/document/http/http-controller.js +145 -0
  65. package/cjs/document/http/http-media-type.js +68 -0
  66. package/cjs/document/http/http-multipart-field.js +33 -0
  67. package/cjs/document/http/http-operation-response.js +42 -0
  68. package/cjs/document/http/http-operation.js +93 -0
  69. package/cjs/document/http/http-parameter.js +44 -0
  70. package/cjs/document/http/http-request-body.js +25 -0
  71. package/cjs/document/http/http-status-range.js +41 -0
  72. package/cjs/document/index.js +35 -22
  73. package/cjs/document/utils/inspect.util.js +3 -3
  74. package/cjs/document/utils/parse-regexp.util.js +22 -0
  75. package/cjs/exception/http-errors/bad-request.error.js +3 -3
  76. package/cjs/exception/http-errors/conflict.error.js +3 -3
  77. package/cjs/exception/http-errors/failed-dependency.error.js +3 -3
  78. package/cjs/exception/http-errors/forbidden.error.js +3 -3
  79. package/cjs/exception/http-errors/internal-server.error.js +3 -3
  80. package/cjs/exception/http-errors/method-not-allowed.error.js +3 -3
  81. package/cjs/exception/http-errors/not-acceptable.error.js +3 -3
  82. package/cjs/exception/http-errors/not-found.error.js +3 -3
  83. package/cjs/exception/{resource-errors → http-errors}/permission.error.js +2 -2
  84. package/cjs/exception/{resource-errors → http-errors}/resource-conflict.error.js +3 -3
  85. package/cjs/exception/{resource-errors → http-errors}/resource-not.available.error.js +5 -5
  86. package/cjs/exception/http-errors/unauthorized.error.js +3 -3
  87. package/cjs/exception/http-errors/unprocessable-entity.error.js +3 -3
  88. package/cjs/exception/index.js +4 -4
  89. package/cjs/exception/issue-severity.enum.js +1 -1
  90. package/cjs/exception/opra-exception.js +5 -16
  91. package/cjs/exception/opra-http-error.js +25 -0
  92. package/cjs/filter/antlr/OpraFilterLexer.js +259 -193
  93. package/cjs/filter/antlr/OpraFilterParser.js +137 -84
  94. package/cjs/filter/ast/expressions/arithmetic-expression.js +1 -1
  95. package/cjs/filter/ast/expressions/logical-expression.js +1 -3
  96. package/cjs/filter/ast/terms/number-literal.js +1 -3
  97. package/cjs/filter/ast/terms/time-literal.js +6 -4
  98. package/cjs/filter/build.js +1 -3
  99. package/cjs/filter/filter-rules.js +93 -0
  100. package/cjs/filter/filter-tree-visitor.js +4 -7
  101. package/cjs/filter/parse.js +2 -2
  102. package/cjs/filter/utils.js +1 -3
  103. package/cjs/helpers/function-utils.js +2 -11
  104. package/cjs/helpers/get-stack-filename.js +28 -4
  105. package/cjs/helpers/index.js +2 -2
  106. package/cjs/helpers/is-url-string.js +1 -2
  107. package/cjs/helpers/mixin-utils.js +5 -8
  108. package/cjs/helpers/monkey-patches.js +12 -0
  109. package/cjs/helpers/object-utils.js +4 -5
  110. package/cjs/helpers/parse-fields-projection.js +67 -0
  111. package/cjs/helpers/responsive-map.js +93 -117
  112. package/cjs/helpers/type-guards.js +22 -29
  113. package/cjs/http/enums/http-status-messages.js +63 -63
  114. package/cjs/http/enums/mime-types.enum.js +17 -0
  115. package/cjs/http/index.js +1 -2
  116. package/cjs/http/opra-url-path.js +14 -9
  117. package/cjs/http/opra-url.js +18 -15
  118. package/cjs/i18n/i18n.js +9 -5
  119. package/cjs/i18n/translate.js +2 -2
  120. package/cjs/index.js +1 -1
  121. package/cjs/schema/http/http-controller.interface.js +11 -0
  122. package/cjs/schema/http/http-operation.interface.js +7 -0
  123. package/cjs/schema/index.js +27 -2
  124. package/cjs/schema/type-guards.js +8 -30
  125. package/cjs/schema/value.interface.js +2 -0
  126. package/esm/document/api-document.js +112 -23
  127. package/esm/document/common/api-base.js +23 -0
  128. package/esm/document/common/data-type-map.js +62 -0
  129. package/esm/document/common/document-element.js +28 -0
  130. package/esm/document/common/document-init-context.js +65 -0
  131. package/esm/document/common/document-node.js +120 -0
  132. package/esm/document/common/opra-document-error.js +11 -0
  133. package/esm/document/common/value.js +30 -0
  134. package/esm/document/constants.js +12 -6
  135. package/esm/document/data-type/api-field.js +61 -0
  136. package/esm/document/data-type/complex-type-base.js +180 -0
  137. package/esm/document/data-type/complex-type.js +88 -11
  138. package/esm/document/data-type/data-type.js +32 -24
  139. package/esm/document/data-type/decorators/api-field-decorator.js +22 -0
  140. package/esm/document/data-type/decorators/complex-type.decorator.js +28 -0
  141. package/esm/document/data-type/decorators/simple-type.decorator.js +61 -0
  142. package/esm/document/data-type/enum-type.js +93 -36
  143. package/esm/document/data-type/extended-types/base64.type.js +22 -0
  144. package/esm/document/data-type/extended-types/date-string.type.js +41 -0
  145. package/esm/document/data-type/extended-types/date-time-string.type.js +44 -0
  146. package/esm/document/data-type/extended-types/date-time.type.js +55 -0
  147. package/esm/document/data-type/extended-types/date.type.js +52 -0
  148. package/esm/document/data-type/extended-types/email.type.js +77 -0
  149. package/esm/document/data-type/extended-types/field-path.type.js +50 -0
  150. package/esm/document/data-type/extended-types/filter.type.js +71 -0
  151. package/esm/document/data-type/extended-types/index.js +13 -0
  152. package/esm/document/data-type/extended-types/object-id.type.js +22 -0
  153. package/esm/document/{resource/types → data-type/extended-types}/operation-result.type.js +25 -14
  154. package/esm/document/data-type/extended-types/time.type.js +44 -0
  155. package/esm/document/data-type/extended-types/url.type.js +22 -0
  156. package/esm/document/data-type/extended-types/uuid.type.js +27 -0
  157. package/esm/document/data-type/mapped-type.js +76 -56
  158. package/esm/document/data-type/mixin-type.js +80 -24
  159. package/esm/document/data-type/omit-type.js +7 -0
  160. package/esm/document/data-type/partial-type.js +9 -0
  161. package/esm/document/data-type/pick-type.js +7 -0
  162. package/esm/document/data-type/primitive-types/any.type.js +22 -0
  163. package/esm/document/data-type/primitive-types/bigint.type.js +27 -0
  164. package/esm/document/data-type/primitive-types/boolean.type.js +22 -0
  165. package/esm/document/data-type/primitive-types/index.js +8 -0
  166. package/esm/document/data-type/primitive-types/integer.type.js +27 -0
  167. package/esm/document/data-type/{builtin → primitive-types}/null.type.js +11 -2
  168. package/esm/document/data-type/primitive-types/number.type.js +37 -0
  169. package/esm/document/data-type/{builtin → primitive-types}/object.type.js +7 -1
  170. package/esm/document/data-type/primitive-types/string.type.js +55 -0
  171. package/esm/document/data-type/required-type.js +9 -0
  172. package/esm/document/data-type/simple-type.js +92 -12
  173. package/esm/document/data-type/utils/create-mapped-class.js +50 -0
  174. package/esm/document/data-type/utils/get-is-inherited-predicate-fn.js +11 -0
  175. package/esm/document/{data-type/field-decorator.js → decorators/api-field-decorator.js} +5 -5
  176. package/esm/document/{data-type → decorators}/complex-type.decorator.js +12 -2
  177. package/esm/document/decorators/http-controller.decorator.js +112 -0
  178. package/esm/document/decorators/http-operation-entity.decorator.js +460 -0
  179. package/esm/document/decorators/http-operation.decorator.js +178 -0
  180. package/esm/document/decorators/simple-type.decorator.js +61 -0
  181. package/esm/document/factory/api-document.factory.js +174 -0
  182. package/esm/document/factory/data-type.factory.js +494 -0
  183. package/esm/document/factory/http-api.factory.js +311 -0
  184. package/esm/document/http/decorators/http-controller.decorator.js +112 -0
  185. package/esm/document/http/decorators/http-operation-entity.decorator.js +459 -0
  186. package/esm/document/http/decorators/http-operation.decorator.js +178 -0
  187. package/esm/document/http/http-api.js +36 -0
  188. package/esm/document/http/http-controller.js +142 -0
  189. package/esm/document/http/http-media-type.js +65 -0
  190. package/esm/document/http/http-multipart-field.js +29 -0
  191. package/esm/document/http/http-operation-response.js +38 -0
  192. package/esm/document/http/http-operation.js +90 -0
  193. package/esm/document/http/http-parameter.js +41 -0
  194. package/esm/document/http/http-request-body.js +21 -0
  195. package/esm/document/http/http-status-range.js +37 -0
  196. package/esm/document/index.js +34 -22
  197. package/esm/document/utils/inspect.util.js +3 -3
  198. package/esm/document/utils/parse-regexp.util.js +18 -0
  199. package/esm/exception/http-errors/bad-request.error.js +3 -3
  200. package/esm/exception/http-errors/conflict.error.js +3 -3
  201. package/esm/exception/http-errors/failed-dependency.error.js +3 -3
  202. package/esm/exception/http-errors/forbidden.error.js +3 -3
  203. package/esm/exception/http-errors/internal-server.error.js +3 -3
  204. package/esm/exception/http-errors/method-not-allowed.error.js +3 -3
  205. package/esm/exception/http-errors/not-acceptable.error.js +3 -3
  206. package/esm/exception/http-errors/not-found.error.js +3 -3
  207. package/esm/exception/{resource-errors → http-errors}/permission.error.js +2 -2
  208. package/esm/exception/{resource-errors → http-errors}/resource-conflict.error.js +3 -3
  209. package/esm/exception/{resource-errors → http-errors}/resource-not.available.error.js +5 -5
  210. package/esm/exception/http-errors/unauthorized.error.js +3 -3
  211. package/esm/exception/http-errors/unprocessable-entity.error.js +3 -3
  212. package/esm/exception/index.js +4 -4
  213. package/esm/exception/issue-severity.enum.js +1 -1
  214. package/esm/exception/opra-exception.js +5 -16
  215. package/esm/exception/opra-http-error.js +21 -0
  216. package/esm/filter/antlr/OpraFilterLexer.js +260 -194
  217. package/esm/filter/antlr/OpraFilterListener.js +1 -1
  218. package/esm/filter/antlr/OpraFilterParser.js +138 -85
  219. package/esm/filter/ast/expressions/arithmetic-expression.js +1 -1
  220. package/esm/filter/ast/expressions/logical-expression.js +1 -3
  221. package/esm/filter/ast/terms/number-literal.js +1 -3
  222. package/esm/filter/ast/terms/time-literal.js +6 -4
  223. package/esm/filter/build.js +2 -4
  224. package/esm/filter/filter-rules.js +89 -0
  225. package/esm/filter/filter-tree-visitor.js +4 -6
  226. package/esm/filter/parse.js +2 -2
  227. package/esm/filter/utils.js +1 -3
  228. package/esm/helpers/function-utils.js +1 -9
  229. package/esm/helpers/get-stack-filename.js +26 -3
  230. package/esm/helpers/index.js +2 -2
  231. package/esm/helpers/is-url-string.js +1 -2
  232. package/esm/helpers/mixin-utils.js +5 -8
  233. package/esm/helpers/monkey-patches.js +12 -0
  234. package/esm/helpers/object-utils.js +4 -5
  235. package/esm/helpers/parse-fields-projection.js +61 -0
  236. package/esm/helpers/responsive-map.js +93 -117
  237. package/esm/helpers/type-guards.js +22 -29
  238. package/esm/http/enums/http-status-messages.js +63 -63
  239. package/esm/http/enums/mime-types.enum.js +14 -0
  240. package/esm/http/index.js +1 -2
  241. package/esm/http/opra-url-path.js +14 -9
  242. package/esm/http/opra-url.js +18 -15
  243. package/esm/i18n/i18n.js +9 -5
  244. package/esm/i18n/translate.js +2 -2
  245. package/esm/index.js +1 -1
  246. package/esm/schema/http/http-controller.interface.js +8 -0
  247. package/esm/schema/http/http-operation.interface.js +4 -0
  248. package/esm/schema/index.js +27 -2
  249. package/esm/schema/type-guards.js +6 -24
  250. package/esm/schema/value.interface.js +1 -0
  251. package/package.json +14 -13
  252. package/types/document/api-document.d.ts +31 -51
  253. package/types/document/common/api-base.d.ts +17 -0
  254. package/types/document/common/data-type-map.d.ts +23 -0
  255. package/types/document/common/document-element.d.ts +23 -0
  256. package/types/document/common/document-init-context.d.ts +17 -0
  257. package/types/document/common/document-node.d.ts +65 -0
  258. package/types/document/common/opra-document-error.d.ts +12 -0
  259. package/types/document/common/value.d.ts +48 -0
  260. package/types/document/constants.d.ts +9 -3
  261. package/types/document/data-type/api-field.d.ts +65 -0
  262. package/types/document/data-type/complex-type-base.d.ts +80 -0
  263. package/types/document/data-type/complex-type.d.ts +61 -35
  264. package/types/document/data-type/data-type.d.ts +49 -46
  265. package/types/document/data-type/decorators/api-field-decorator.d.ts +5 -0
  266. package/types/document/data-type/decorators/complex-type.decorator.d.ts +2 -0
  267. package/types/document/data-type/decorators/simple-type.decorator.d.ts +20 -0
  268. package/types/document/data-type/enum-type.d.ts +59 -23
  269. package/types/document/data-type/extended-types/base64.type.d.ts +7 -0
  270. package/types/document/data-type/extended-types/date-string.type.d.ts +9 -0
  271. package/types/document/data-type/extended-types/date-time-string.type.d.ts +9 -0
  272. package/types/document/data-type/extended-types/date-time.type.d.ts +9 -0
  273. package/types/document/data-type/extended-types/date.type.d.ts +9 -0
  274. package/types/document/data-type/extended-types/email.type.d.ts +16 -0
  275. package/types/document/data-type/extended-types/field-path.type.d.ts +15 -0
  276. package/types/document/data-type/extended-types/filter.type.d.ts +16 -0
  277. package/types/document/data-type/extended-types/index.d.ts +13 -0
  278. package/types/document/data-type/extended-types/object-id.type.d.ts +7 -0
  279. package/types/document/{resource/types → data-type/extended-types}/operation-result.type.d.ts +7 -6
  280. package/types/document/data-type/extended-types/time.type.d.ts +9 -0
  281. package/types/document/data-type/extended-types/url.type.d.ts +7 -0
  282. package/types/document/data-type/extended-types/uuid.type.d.ts +8 -0
  283. package/types/document/data-type/mapped-type.d.ts +55 -44
  284. package/types/document/data-type/mixin-type.d.ts +65 -26
  285. package/types/document/data-type/omit-type.d.ts +15 -0
  286. package/types/document/data-type/partial-type.d.ts +28 -0
  287. package/types/document/data-type/pick-type.d.ts +16 -0
  288. package/types/document/data-type/primitive-types/any.type.d.ts +7 -0
  289. package/types/document/data-type/primitive-types/bigint.type.d.ts +8 -0
  290. package/types/document/data-type/primitive-types/boolean.type.d.ts +7 -0
  291. package/types/document/data-type/primitive-types/index.d.ts +8 -0
  292. package/types/document/data-type/primitive-types/integer.type.d.ts +8 -0
  293. package/types/document/data-type/primitive-types/null.type.d.ts +7 -0
  294. package/types/document/data-type/primitive-types/number.type.d.ts +9 -0
  295. package/types/document/data-type/primitive-types/object.type.d.ts +3 -0
  296. package/types/document/data-type/primitive-types/string.type.d.ts +11 -0
  297. package/types/document/data-type/required-type.d.ts +22 -0
  298. package/types/document/data-type/simple-type.d.ts +63 -24
  299. package/types/document/data-type/utils/create-mapped-class.d.ts +3 -0
  300. package/types/document/data-type/utils/get-is-inherited-predicate-fn.d.ts +1 -0
  301. package/types/document/decorators/api-field-decorator.d.ts +5 -0
  302. package/types/document/decorators/complex-type.decorator.d.ts +2 -0
  303. package/types/document/decorators/http-controller.decorator.d.ts +14 -0
  304. package/types/document/decorators/http-operation-entity.decorator.d.ts +100 -0
  305. package/types/document/decorators/http-operation.decorator.d.ts +30 -0
  306. package/types/document/decorators/simple-type.decorator.d.ts +20 -0
  307. package/types/document/factory/api-document.factory.d.ts +35 -0
  308. package/types/document/factory/data-type.factory.d.ts +103 -0
  309. package/types/document/factory/http-api.factory.d.ts +60 -0
  310. package/types/document/http/decorators/http-controller.decorator.d.ts +14 -0
  311. package/types/document/http/decorators/http-operation-entity.decorator.d.ts +100 -0
  312. package/types/document/http/decorators/http-operation.decorator.d.ts +30 -0
  313. package/types/document/http/http-api.d.ts +23 -0
  314. package/types/document/http/http-controller.d.ts +92 -0
  315. package/types/document/http/http-media-type.d.ts +59 -0
  316. package/types/document/http/http-multipart-field.d.ts +26 -0
  317. package/types/document/http/http-operation-response.d.ts +36 -0
  318. package/types/document/http/http-operation.d.ts +84 -0
  319. package/types/document/http/http-parameter.d.ts +50 -0
  320. package/types/document/http/http-request-body.d.ts +31 -0
  321. package/types/document/http/http-status-range.d.ts +14 -0
  322. package/types/document/index.d.ts +33 -22
  323. package/types/document/utils/parse-regexp.util.d.ts +4 -0
  324. package/types/exception/http-errors/bad-request.error.d.ts +2 -2
  325. package/types/exception/http-errors/conflict.error.d.ts +2 -2
  326. package/types/exception/http-errors/failed-dependency.error.d.ts +2 -2
  327. package/types/exception/http-errors/forbidden.error.d.ts +2 -2
  328. package/types/exception/http-errors/internal-server.error.d.ts +2 -2
  329. package/types/exception/http-errors/method-not-allowed.error.d.ts +2 -2
  330. package/types/exception/http-errors/not-acceptable.error.d.ts +2 -2
  331. package/types/exception/http-errors/not-found.error.d.ts +2 -2
  332. package/types/exception/{resource-errors → http-errors}/permission.error.d.ts +1 -1
  333. package/types/exception/http-errors/resource-conflict.error.d.ts +5 -0
  334. package/types/exception/{resource-errors → http-errors}/resource-not.available.error.d.ts +2 -2
  335. package/types/exception/http-errors/unauthorized.error.d.ts +2 -2
  336. package/types/exception/http-errors/unprocessable-entity.error.d.ts +2 -2
  337. package/types/exception/index.d.ts +4 -4
  338. package/types/exception/opra-exception.d.ts +1 -5
  339. package/types/exception/opra-http-error.d.ts +13 -0
  340. package/types/filter/antlr/OpraFilterLexer.d.ts +1 -1
  341. package/types/filter/antlr/OpraFilterListener.d.ts +2 -2
  342. package/types/filter/antlr/OpraFilterParser.d.ts +2 -2
  343. package/types/filter/antlr/OpraFilterVisitor.d.ts +1 -1
  344. package/types/filter/ast/terms/qualified-identifier.d.ts +1 -1
  345. package/types/filter/filter-rules.d.ts +24 -0
  346. package/types/filter/filter-tree-visitor.d.ts +1 -3
  347. package/types/helpers/function-utils.d.ts +2 -4
  348. package/types/helpers/get-stack-filename.d.ts +1 -0
  349. package/types/helpers/index.d.ts +2 -2
  350. package/types/helpers/monkey-patches.d.ts +0 -0
  351. package/types/helpers/parse-fields-projection.d.ts +11 -0
  352. package/types/helpers/responsive-map.d.ts +8 -4
  353. package/types/helpers/type-guards.d.ts +2 -2
  354. package/types/http/enums/http-status-messages.d.ts +63 -63
  355. package/types/http/enums/mime-types.enum.d.ts +12 -0
  356. package/types/http/index.d.ts +1 -2
  357. package/types/i18n/i18n.d.ts +2 -1
  358. package/types/schema/data-type/complex-type.interface.d.ts +3 -3
  359. package/types/schema/data-type/data-type.interface.d.ts +6 -0
  360. package/types/schema/data-type/enum-type.interface.d.ts +3 -4
  361. package/types/schema/data-type/field.interface.d.ts +2 -10
  362. package/types/schema/data-type/mapped-type.interface.d.ts +7 -3
  363. package/types/schema/data-type/mixin-type.interface.d.ts +2 -2
  364. package/types/schema/data-type/simple-type.interface.d.ts +35 -7
  365. package/types/schema/data-type-container.interface.d.ts +7 -0
  366. package/types/schema/document.interface.d.ts +55 -0
  367. package/types/schema/http/http-controller.interface.d.ts +24 -0
  368. package/types/schema/http/http-media-type.interface.d.ts +65 -0
  369. package/types/schema/http/http-multipart-field.interface.d.ts +7 -0
  370. package/types/schema/http/http-operation-response.interface.d.ts +24 -0
  371. package/types/schema/http/http-operation.interface.d.ts +23 -0
  372. package/types/schema/http/http-parameter.interface.d.ts +28 -0
  373. package/types/schema/http/http-request-body.interface.d.ts +29 -0
  374. package/types/schema/http/http-status-range.interface.d.ts +4 -0
  375. package/types/schema/index.d.ts +61 -2
  376. package/types/schema/type-guards.d.ts +2 -10
  377. package/types/schema/types.d.ts +3 -0
  378. package/types/schema/value.interface.d.ts +23 -0
  379. package/types/types.d.ts +1 -14
  380. package/cjs/document/data-type/builtin/any.type.js +0 -13
  381. package/cjs/document/data-type/builtin/approx-date.type.js +0 -21
  382. package/cjs/document/data-type/builtin/approx-datetime.type.js +0 -24
  383. package/cjs/document/data-type/builtin/bigint.type.js +0 -16
  384. package/cjs/document/data-type/builtin/date.type.js +0 -17
  385. package/cjs/document/data-type/builtin/datetime.type.js +0 -21
  386. package/cjs/document/data-type/builtin/email.type.js +0 -16
  387. package/cjs/document/data-type/builtin/index.js +0 -21
  388. package/cjs/document/data-type/builtin/integer.type.js +0 -16
  389. package/cjs/document/data-type/builtin/number.type.js +0 -16
  390. package/cjs/document/data-type/builtin/string.type.js +0 -16
  391. package/cjs/document/data-type/builtin/time.type.js +0 -23
  392. package/cjs/document/data-type/builtin/uuid.type.js +0 -16
  393. package/cjs/document/data-type/complex-type-class.js +0 -274
  394. package/cjs/document/data-type/enum-type-class.js +0 -39
  395. package/cjs/document/data-type/field-class.js +0 -67
  396. package/cjs/document/data-type/field.js +0 -25
  397. package/cjs/document/data-type/mapped-type-class.js +0 -53
  398. package/cjs/document/data-type/mixin-type-class.js +0 -38
  399. package/cjs/document/data-type/simple-type-class.js +0 -37
  400. package/cjs/document/data-type/simple-type.decorator.js +0 -20
  401. package/cjs/document/document-base.js +0 -24
  402. package/cjs/document/factory/api-document-factory.js +0 -262
  403. package/cjs/document/factory/type-document-factory.js +0 -326
  404. package/cjs/document/resource/action-decorator.js +0 -33
  405. package/cjs/document/resource/action.js +0 -34
  406. package/cjs/document/resource/collection-class.js +0 -257
  407. package/cjs/document/resource/collection-decorator.js +0 -211
  408. package/cjs/document/resource/collection.js +0 -25
  409. package/cjs/document/resource/container-class.js +0 -84
  410. package/cjs/document/resource/container-decorator.js +0 -24
  411. package/cjs/document/resource/container.js +0 -29
  412. package/cjs/document/resource/crud-operation-decorator.js +0 -28
  413. package/cjs/document/resource/crud-operation.js +0 -49
  414. package/cjs/document/resource/crud-resource.js +0 -34
  415. package/cjs/document/resource/endpoint.js +0 -59
  416. package/cjs/document/resource/enums/metadata-mode.enum.js +0 -19
  417. package/cjs/document/resource/parameter.js +0 -50
  418. package/cjs/document/resource/resource-decorator.js +0 -33
  419. package/cjs/document/resource/resource.js +0 -60
  420. package/cjs/document/resource/singleton-class.js +0 -83
  421. package/cjs/document/resource/singleton-decorator.js +0 -57
  422. package/cjs/document/resource/singleton.js +0 -25
  423. package/cjs/document/resource/storage-class.js +0 -18
  424. package/cjs/document/resource/storage-decorator.js +0 -70
  425. package/cjs/document/resource/storage.js +0 -25
  426. package/cjs/document/resource/types/operation-result.type.js +0 -45
  427. package/cjs/document/type-document.js +0 -204
  428. package/cjs/exception/wrap-exception.js +0 -43
  429. package/cjs/helpers/path-to-object-tree.js +0 -28
  430. package/cjs/schema/opra-schema.ns.js +0 -22
  431. package/cjs/schema/resource/collection.interface.js +0 -7
  432. package/cjs/schema/resource/container.interface.js +0 -7
  433. package/cjs/schema/resource/singleton.interface.js +0 -7
  434. package/cjs/schema/resource/storage.interface.js +0 -7
  435. package/esm/document/data-type/builtin/any.type.js +0 -10
  436. package/esm/document/data-type/builtin/approx-date.type.js +0 -18
  437. package/esm/document/data-type/builtin/approx-datetime.type.js +0 -21
  438. package/esm/document/data-type/builtin/base64.type.js +0 -13
  439. package/esm/document/data-type/builtin/bigint.type.js +0 -13
  440. package/esm/document/data-type/builtin/boolean.type.js +0 -13
  441. package/esm/document/data-type/builtin/date.type.js +0 -14
  442. package/esm/document/data-type/builtin/datetime.type.js +0 -18
  443. package/esm/document/data-type/builtin/email.type.js +0 -13
  444. package/esm/document/data-type/builtin/index.js +0 -18
  445. package/esm/document/data-type/builtin/integer.type.js +0 -13
  446. package/esm/document/data-type/builtin/number.type.js +0 -13
  447. package/esm/document/data-type/builtin/object-id.type.js +0 -13
  448. package/esm/document/data-type/builtin/string.type.js +0 -13
  449. package/esm/document/data-type/builtin/time.type.js +0 -20
  450. package/esm/document/data-type/builtin/url.type.js +0 -13
  451. package/esm/document/data-type/builtin/uuid.type.js +0 -13
  452. package/esm/document/data-type/complex-type-class.js +0 -270
  453. package/esm/document/data-type/enum-type-class.js +0 -35
  454. package/esm/document/data-type/field-class.js +0 -63
  455. package/esm/document/data-type/field.js +0 -21
  456. package/esm/document/data-type/mapped-type-class.js +0 -48
  457. package/esm/document/data-type/mixin-type-class.js +0 -34
  458. package/esm/document/data-type/simple-type-class.js +0 -33
  459. package/esm/document/data-type/simple-type.decorator.js +0 -15
  460. package/esm/document/document-base.js +0 -20
  461. package/esm/document/factory/api-document-factory.js +0 -258
  462. package/esm/document/factory/type-document-factory.js +0 -322
  463. package/esm/document/resource/action-decorator.js +0 -29
  464. package/esm/document/resource/action.js +0 -30
  465. package/esm/document/resource/collection-class.js +0 -253
  466. package/esm/document/resource/collection-decorator.js +0 -207
  467. package/esm/document/resource/collection.js +0 -21
  468. package/esm/document/resource/container-class.js +0 -80
  469. package/esm/document/resource/container-decorator.js +0 -20
  470. package/esm/document/resource/container.js +0 -25
  471. package/esm/document/resource/crud-operation-decorator.js +0 -24
  472. package/esm/document/resource/crud-operation.js +0 -45
  473. package/esm/document/resource/crud-resource.js +0 -30
  474. package/esm/document/resource/endpoint.js +0 -55
  475. package/esm/document/resource/enums/metadata-mode.enum.js +0 -16
  476. package/esm/document/resource/parameter.js +0 -46
  477. package/esm/document/resource/resource-decorator.js +0 -28
  478. package/esm/document/resource/resource.js +0 -56
  479. package/esm/document/resource/singleton-class.js +0 -79
  480. package/esm/document/resource/singleton-decorator.js +0 -53
  481. package/esm/document/resource/singleton.js +0 -21
  482. package/esm/document/resource/storage-class.js +0 -14
  483. package/esm/document/resource/storage-decorator.js +0 -66
  484. package/esm/document/resource/storage.js +0 -21
  485. package/esm/document/type-document.js +0 -200
  486. package/esm/exception/wrap-exception.js +0 -39
  487. package/esm/helpers/path-to-object-tree.js +0 -24
  488. package/esm/schema/opra-schema.ns.js +0 -19
  489. package/esm/schema/resource/collection.interface.js +0 -4
  490. package/esm/schema/resource/container.interface.js +0 -4
  491. package/esm/schema/resource/singleton.interface.js +0 -4
  492. package/esm/schema/resource/storage.interface.js +0 -4
  493. package/types/document/data-type/builtin/any.type.d.ts +0 -2
  494. package/types/document/data-type/builtin/approx-date.type.d.ts +0 -2
  495. package/types/document/data-type/builtin/approx-datetime.type.d.ts +0 -2
  496. package/types/document/data-type/builtin/base64.type.d.ts +0 -2
  497. package/types/document/data-type/builtin/bigint.type.d.ts +0 -2
  498. package/types/document/data-type/builtin/boolean.type.d.ts +0 -2
  499. package/types/document/data-type/builtin/date.type.d.ts +0 -2
  500. package/types/document/data-type/builtin/datetime.type.d.ts +0 -2
  501. package/types/document/data-type/builtin/email.type.d.ts +0 -2
  502. package/types/document/data-type/builtin/index.d.ts +0 -18
  503. package/types/document/data-type/builtin/integer.type.d.ts +0 -2
  504. package/types/document/data-type/builtin/null.type.d.ts +0 -2
  505. package/types/document/data-type/builtin/number.type.d.ts +0 -2
  506. package/types/document/data-type/builtin/object-id.type.d.ts +0 -2
  507. package/types/document/data-type/builtin/object.type.d.ts +0 -2
  508. package/types/document/data-type/builtin/string.type.d.ts +0 -2
  509. package/types/document/data-type/builtin/time.type.d.ts +0 -2
  510. package/types/document/data-type/builtin/url.type.d.ts +0 -2
  511. package/types/document/data-type/builtin/uuid.type.d.ts +0 -2
  512. package/types/document/data-type/complex-type-class.d.ts +0 -36
  513. package/types/document/data-type/complex-type.decorator.d.ts +0 -2
  514. package/types/document/data-type/enum-type-class.d.ts +0 -18
  515. package/types/document/data-type/field-class.d.ts +0 -31
  516. package/types/document/data-type/field-decorator.d.ts +0 -5
  517. package/types/document/data-type/field.d.ts +0 -46
  518. package/types/document/data-type/mapped-type-class.d.ts +0 -18
  519. package/types/document/data-type/mixin-type-class.d.ts +0 -12
  520. package/types/document/data-type/simple-type-class.d.ts +0 -19
  521. package/types/document/data-type/simple-type.decorator.d.ts +0 -2
  522. package/types/document/document-base.d.ts +0 -10
  523. package/types/document/factory/api-document-factory.d.ts +0 -49
  524. package/types/document/factory/type-document-factory.d.ts +0 -57
  525. package/types/document/interfaces/collection.interface.d.ts +0 -10
  526. package/types/document/interfaces/singleton.interface.d.ts +0 -7
  527. package/types/document/interfaces/storage.interface.d.ts +0 -8
  528. package/types/document/resource/action-decorator.d.ts +0 -8
  529. package/types/document/resource/action.d.ts +0 -30
  530. package/types/document/resource/collection-class.d.ts +0 -20
  531. package/types/document/resource/collection-decorator.d.ts +0 -204
  532. package/types/document/resource/collection.d.ts +0 -62
  533. package/types/document/resource/container-class.d.ts +0 -66
  534. package/types/document/resource/container-decorator.d.ts +0 -37
  535. package/types/document/resource/container.d.ts +0 -27
  536. package/types/document/resource/crud-operation-decorator.d.ts +0 -6
  537. package/types/document/resource/crud-operation.d.ts +0 -32
  538. package/types/document/resource/crud-resource.d.ts +0 -16
  539. package/types/document/resource/endpoint.d.ts +0 -32
  540. package/types/document/resource/enums/metadata-mode.enum.d.ts +0 -5
  541. package/types/document/resource/parameter.d.ts +0 -35
  542. package/types/document/resource/resource-decorator.d.ts +0 -40
  543. package/types/document/resource/resource.d.ts +0 -35
  544. package/types/document/resource/singleton-class.d.ts +0 -21
  545. package/types/document/resource/singleton-decorator.d.ts +0 -131
  546. package/types/document/resource/singleton.d.ts +0 -49
  547. package/types/document/resource/storage-class.d.ts +0 -17
  548. package/types/document/resource/storage-decorator.d.ts +0 -100
  549. package/types/document/resource/storage.d.ts +0 -39
  550. package/types/document/type-document.d.ts +0 -79
  551. package/types/exception/resource-errors/resource-conflict.error.d.ts +0 -5
  552. package/types/exception/wrap-exception.d.ts +0 -2
  553. package/types/helpers/path-to-object-tree.d.ts +0 -4
  554. package/types/schema/document/api-document.interface.d.ts +0 -11
  555. package/types/schema/document/document-base.interface.d.ts +0 -24
  556. package/types/schema/document/type-document.interface.d.ts +0 -6
  557. package/types/schema/opra-schema.ns.d.ts +0 -19
  558. package/types/schema/resource/action.interface.d.ts +0 -6
  559. package/types/schema/resource/collection.interface.d.ts +0 -55
  560. package/types/schema/resource/container.interface.d.ts +0 -10
  561. package/types/schema/resource/endpoint.interface.d.ts +0 -13
  562. package/types/schema/resource/resource.interface.d.ts +0 -15
  563. package/types/schema/resource/singleton.interface.d.ts +0 -25
  564. package/types/schema/resource/storage.interface.d.ts +0 -61
  565. /package/cjs/{document/interfaces/collection.interface.js → schema/data-type-container.interface.js} +0 -0
  566. /package/cjs/{document/interfaces/singleton.interface.js → schema/document.interface.js} +0 -0
  567. /package/cjs/{document/interfaces/storage.interface.js → schema/http/http-media-type.interface.js} +0 -0
  568. /package/cjs/schema/{document/api-document.interface.js → http/http-multipart-field.interface.js} +0 -0
  569. /package/cjs/schema/{document/document-base.interface.js → http/http-operation-response.interface.js} +0 -0
  570. /package/cjs/schema/{document/type-document.interface.js → http/http-parameter.interface.js} +0 -0
  571. /package/cjs/schema/{resource/action.interface.js → http/http-request-body.interface.js} +0 -0
  572. /package/cjs/schema/{resource/endpoint.interface.js → http/http-status-range.interface.js} +0 -0
  573. /package/cjs/schema/{resource/resource.interface.js → types.js} +0 -0
  574. /package/esm/{document/interfaces/collection.interface.js → schema/data-type-container.interface.js} +0 -0
  575. /package/esm/{document/interfaces/singleton.interface.js → schema/document.interface.js} +0 -0
  576. /package/esm/{document/interfaces/storage.interface.js → schema/http/http-media-type.interface.js} +0 -0
  577. /package/esm/schema/{document/api-document.interface.js → http/http-multipart-field.interface.js} +0 -0
  578. /package/esm/schema/{document/document-base.interface.js → http/http-operation-response.interface.js} +0 -0
  579. /package/esm/schema/{document/type-document.interface.js → http/http-parameter.interface.js} +0 -0
  580. /package/esm/schema/{resource/action.interface.js → http/http-request-body.interface.js} +0 -0
  581. /package/esm/schema/{resource/endpoint.interface.js → http/http-status-range.interface.js} +0 -0
  582. /package/esm/schema/{resource/resource.interface.js → types.js} +0 -0
@@ -9,7 +9,7 @@ class OpraFilterLexer extends antlr4_1.Lexer {
9
9
  this._interp = new antlr4_1.LexerATNSimulator(this, OpraFilterLexer._ATN, OpraFilterLexer.DecisionsToDFA, new antlr4_1.PredictionContextCache());
10
10
  }
11
11
  get grammarFileName() {
12
- return "OpraFilter.g4";
12
+ return 'OpraFilter.g4';
13
13
  }
14
14
  get literalNames() {
15
15
  return OpraFilterLexer.literalNames;
@@ -80,200 +80,266 @@ OpraFilterLexer.INTEGER = 41;
80
80
  OpraFilterLexer.STRING = 42;
81
81
  OpraFilterLexer.WHITESPACE = 43;
82
82
  OpraFilterLexer.EOF = antlr4_1.Token.EOF;
83
- OpraFilterLexer.channelNames = ["DEFAULT_TOKEN_CHANNEL", "HIDDEN"];
84
- OpraFilterLexer.literalNames = [null, "'('",
85
- "')'", "'not'",
86
- "'!'", "'.'",
87
- "'@'", "'['",
88
- "','", "']'",
89
- "'true'", "'false'",
90
- "'null'", "'Infinity'",
83
+ OpraFilterLexer.channelNames = ['DEFAULT_TOKEN_CHANNEL', 'HIDDEN'];
84
+ OpraFilterLexer.literalNames = [
85
+ null,
86
+ "'('",
87
+ "')'",
88
+ "'not'",
89
+ "'!'",
90
+ "'.'",
91
+ "'@'",
92
+ "'['",
93
+ "','",
94
+ "']'",
95
+ "'true'",
96
+ "'false'",
97
+ "'null'",
98
+ "'Infinity'",
91
99
  "'infinity'",
92
- "'+'", "'-'",
93
- "'*'", "'/'",
94
- "'<='", "'<'",
95
- "'>'", "'>='",
96
- "'='", "'!='",
97
- "'in'", "'!in'",
98
- "'like'", "'!like'",
99
- "'ilike'", "'!ilike'",
100
- "'and'", "'or'",
101
- "'&&'", "'||'"];
102
- OpraFilterLexer.symbolicNames = [null, null,
103
- null, null,
104
- null, null,
105
- null, null,
106
- null, null,
107
- null, null,
108
- null, null,
109
- null, null,
110
- null, null,
111
- null, null,
112
- null, null,
113
- null, null,
114
- null, null,
115
- null, null,
116
- null, null,
117
- null, null,
118
- null, null,
119
- null, "IDENTIFIER",
120
- "POLAR_OP",
121
- "DATE", "DATETIME",
122
- "TIME", "NUMBER",
123
- "INTEGER",
124
- "STRING", "WHITESPACE"];
125
- OpraFilterLexer.modeNames = ["DEFAULT_MODE",];
100
+ "'+'",
101
+ "'-'",
102
+ "'*'",
103
+ "'/'",
104
+ "'<='",
105
+ "'<'",
106
+ "'>'",
107
+ "'>='",
108
+ "'='",
109
+ "'!='",
110
+ "'in'",
111
+ "'!in'",
112
+ "'like'",
113
+ "'!like'",
114
+ "'ilike'",
115
+ "'!ilike'",
116
+ "'and'",
117
+ "'or'",
118
+ "'&&'",
119
+ "'||'",
120
+ ];
121
+ OpraFilterLexer.symbolicNames = [
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
+ 'IDENTIFIER',
158
+ 'POLAR_OP',
159
+ 'DATE',
160
+ 'DATETIME',
161
+ 'TIME',
162
+ 'NUMBER',
163
+ 'INTEGER',
164
+ 'STRING',
165
+ 'WHITESPACE',
166
+ ];
167
+ OpraFilterLexer.modeNames = ['DEFAULT_MODE'];
126
168
  OpraFilterLexer.ruleNames = [
127
- "T__0", "T__1", "T__2", "T__3", "T__4", "T__5", "T__6", "T__7", "T__8",
128
- "T__9", "T__10", "T__11", "T__12", "T__13", "T__14", "T__15", "T__16",
129
- "T__17", "T__18", "T__19", "T__20", "T__21", "T__22", "T__23", "T__24",
130
- "T__25", "T__26", "T__27", "T__28", "T__29", "T__30", "T__31", "T__32",
131
- "T__33", "IDENTIFIER", "POLAR_OP", "DATE", "DATETIME", "TIME", "NUMBER",
132
- "INTEGER", "STRING", "WHITESPACE", "DIGIT", "DATEFORMAT", "TIMEFORMAT",
133
- "TIMEZONEOFFSETFORMAT", "ESC", "UNICODE", "HEX",
169
+ 'T__0',
170
+ 'T__1',
171
+ 'T__2',
172
+ 'T__3',
173
+ 'T__4',
174
+ 'T__5',
175
+ 'T__6',
176
+ 'T__7',
177
+ 'T__8',
178
+ 'T__9',
179
+ 'T__10',
180
+ 'T__11',
181
+ 'T__12',
182
+ 'T__13',
183
+ 'T__14',
184
+ 'T__15',
185
+ 'T__16',
186
+ 'T__17',
187
+ 'T__18',
188
+ 'T__19',
189
+ 'T__20',
190
+ 'T__21',
191
+ 'T__22',
192
+ 'T__23',
193
+ 'T__24',
194
+ 'T__25',
195
+ 'T__26',
196
+ 'T__27',
197
+ 'T__28',
198
+ 'T__29',
199
+ 'T__30',
200
+ 'T__31',
201
+ 'T__32',
202
+ 'T__33',
203
+ 'IDENTIFIER',
204
+ 'POLAR_OP',
205
+ 'DATE',
206
+ 'DATETIME',
207
+ 'TIME',
208
+ 'NUMBER',
209
+ 'INTEGER',
210
+ 'STRING',
211
+ 'WHITESPACE',
212
+ 'DIGIT',
213
+ 'DATEFORMAT',
214
+ 'TIMEFORMAT',
215
+ 'TIMEZONEOFFSETFORMAT',
216
+ 'ESC',
217
+ 'UNICODE',
218
+ 'HEX',
219
+ ];
220
+ OpraFilterLexer._serializedATN = [
221
+ 4, 0, 43, 426, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7,
222
+ 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2,
223
+ 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24,
224
+ 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7,
225
+ 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40,
226
+ 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2,
227
+ 49, 7, 49, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1,
228
+ 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11,
229
+ 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1,
230
+ 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20,
231
+ 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1,
232
+ 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28,
233
+ 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1,
234
+ 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 5, 34, 225, 8, 34, 10, 34, 12, 34, 228, 9, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1,
235
+ 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 240, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1,
236
+ 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 256, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3,
237
+ 38, 266, 8, 38, 1, 39, 3, 39, 269, 8, 39, 1, 39, 4, 39, 272, 8, 39, 11, 39, 12, 39, 273, 1, 39, 1, 39, 5, 39, 278,
238
+ 8, 39, 10, 39, 12, 39, 281, 9, 39, 3, 39, 283, 8, 39, 1, 39, 1, 39, 3, 39, 287, 8, 39, 1, 39, 4, 39, 290, 8, 39, 11,
239
+ 39, 12, 39, 291, 3, 39, 294, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 4, 39, 300, 8, 39, 11, 39, 12, 39, 301, 3, 39, 304,
240
+ 8, 39, 1, 40, 3, 40, 307, 8, 40, 1, 40, 4, 40, 310, 8, 40, 11, 40, 12, 40, 311, 1, 40, 1, 40, 1, 40, 1, 40, 4, 40,
241
+ 318, 8, 40, 11, 40, 12, 40, 319, 3, 40, 322, 8, 40, 1, 41, 1, 41, 1, 41, 5, 41, 327, 8, 41, 10, 41, 12, 41, 330, 9,
242
+ 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 336, 8, 41, 10, 41, 12, 41, 339, 9, 41, 1, 41, 3, 41, 342, 8, 41, 1, 42, 4,
243
+ 42, 345, 8, 42, 11, 42, 12, 42, 346, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1,
244
+ 44, 1, 44, 3, 44, 362, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 371, 8, 44, 1, 45, 1, 45, 1,
245
+ 45, 1, 45, 3, 45, 377, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 4, 45, 389, 8,
246
+ 45, 11, 45, 12, 45, 390, 3, 45, 393, 8, 45, 3, 45, 395, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 400, 8, 46, 1, 46, 1, 46,
247
+ 1, 46, 3, 46, 405, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 410, 8, 46, 3, 46, 412, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47,
248
+ 417, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 0, 0, 50, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6,
249
+ 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21,
250
+ 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71,
251
+ 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 0, 99, 0, 1, 0,
252
+ 16, 4, 0, 36, 36, 65, 90, 95, 95, 97, 122, 5, 0, 36, 36, 48, 57, 65, 90, 95, 95, 97, 122, 2, 0, 43, 43, 45, 45, 1,
253
+ 0, 39, 39, 1, 0, 34, 34, 3, 0, 9, 10, 13, 13, 32, 32, 1, 0, 48, 57, 1, 0, 48, 48, 1, 0, 49, 57, 1, 0, 49, 49, 1, 0,
254
+ 48, 50, 1, 0, 49, 51, 1, 0, 48, 49, 1, 0, 48, 51, 1, 0, 48, 53, 3, 0, 48, 57, 65, 70, 97, 102, 453, 0, 1, 1, 0, 0,
255
+ 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0,
256
+ 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0,
257
+ 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0,
258
+ 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0,
259
+ 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0,
260
+ 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0,
261
+ 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 1,
262
+ 101, 1, 0, 0, 0, 3, 103, 1, 0, 0, 0, 5, 105, 1, 0, 0, 0, 7, 109, 1, 0, 0, 0, 9, 111, 1, 0, 0, 0, 11, 113, 1, 0, 0,
263
+ 0, 13, 115, 1, 0, 0, 0, 15, 117, 1, 0, 0, 0, 17, 119, 1, 0, 0, 0, 19, 121, 1, 0, 0, 0, 21, 126, 1, 0, 0, 0, 23, 132,
264
+ 1, 0, 0, 0, 25, 137, 1, 0, 0, 0, 27, 146, 1, 0, 0, 0, 29, 155, 1, 0, 0, 0, 31, 157, 1, 0, 0, 0, 33, 159, 1, 0, 0, 0,
265
+ 35, 161, 1, 0, 0, 0, 37, 163, 1, 0, 0, 0, 39, 166, 1, 0, 0, 0, 41, 168, 1, 0, 0, 0, 43, 170, 1, 0, 0, 0, 45, 173, 1,
266
+ 0, 0, 0, 47, 175, 1, 0, 0, 0, 49, 178, 1, 0, 0, 0, 51, 181, 1, 0, 0, 0, 53, 185, 1, 0, 0, 0, 55, 190, 1, 0, 0, 0,
267
+ 57, 196, 1, 0, 0, 0, 59, 202, 1, 0, 0, 0, 61, 209, 1, 0, 0, 0, 63, 213, 1, 0, 0, 0, 65, 216, 1, 0, 0, 0, 67, 219, 1,
268
+ 0, 0, 0, 69, 222, 1, 0, 0, 0, 71, 229, 1, 0, 0, 0, 73, 239, 1, 0, 0, 0, 75, 255, 1, 0, 0, 0, 77, 265, 1, 0, 0, 0,
269
+ 79, 303, 1, 0, 0, 0, 81, 321, 1, 0, 0, 0, 83, 341, 1, 0, 0, 0, 85, 344, 1, 0, 0, 0, 87, 350, 1, 0, 0, 0, 89, 352, 1,
270
+ 0, 0, 0, 91, 376, 1, 0, 0, 0, 93, 411, 1, 0, 0, 0, 95, 413, 1, 0, 0, 0, 97, 418, 1, 0, 0, 0, 99, 424, 1, 0, 0, 0,
271
+ 101, 102, 5, 40, 0, 0, 102, 2, 1, 0, 0, 0, 103, 104, 5, 41, 0, 0, 104, 4, 1, 0, 0, 0, 105, 106, 5, 110, 0, 0, 106,
272
+ 107, 5, 111, 0, 0, 107, 108, 5, 116, 0, 0, 108, 6, 1, 0, 0, 0, 109, 110, 5, 33, 0, 0, 110, 8, 1, 0, 0, 0, 111, 112,
273
+ 5, 46, 0, 0, 112, 10, 1, 0, 0, 0, 113, 114, 5, 64, 0, 0, 114, 12, 1, 0, 0, 0, 115, 116, 5, 91, 0, 0, 116, 14, 1, 0,
274
+ 0, 0, 117, 118, 5, 44, 0, 0, 118, 16, 1, 0, 0, 0, 119, 120, 5, 93, 0, 0, 120, 18, 1, 0, 0, 0, 121, 122, 5, 116, 0,
275
+ 0, 122, 123, 5, 114, 0, 0, 123, 124, 5, 117, 0, 0, 124, 125, 5, 101, 0, 0, 125, 20, 1, 0, 0, 0, 126, 127, 5, 102, 0,
276
+ 0, 127, 128, 5, 97, 0, 0, 128, 129, 5, 108, 0, 0, 129, 130, 5, 115, 0, 0, 130, 131, 5, 101, 0, 0, 131, 22, 1, 0, 0,
277
+ 0, 132, 133, 5, 110, 0, 0, 133, 134, 5, 117, 0, 0, 134, 135, 5, 108, 0, 0, 135, 136, 5, 108, 0, 0, 136, 24, 1, 0, 0,
278
+ 0, 137, 138, 5, 73, 0, 0, 138, 139, 5, 110, 0, 0, 139, 140, 5, 102, 0, 0, 140, 141, 5, 105, 0, 0, 141, 142, 5, 110,
279
+ 0, 0, 142, 143, 5, 105, 0, 0, 143, 144, 5, 116, 0, 0, 144, 145, 5, 121, 0, 0, 145, 26, 1, 0, 0, 0, 146, 147, 5, 105,
280
+ 0, 0, 147, 148, 5, 110, 0, 0, 148, 149, 5, 102, 0, 0, 149, 150, 5, 105, 0, 0, 150, 151, 5, 110, 0, 0, 151, 152, 5,
281
+ 105, 0, 0, 152, 153, 5, 116, 0, 0, 153, 154, 5, 121, 0, 0, 154, 28, 1, 0, 0, 0, 155, 156, 5, 43, 0, 0, 156, 30, 1,
282
+ 0, 0, 0, 157, 158, 5, 45, 0, 0, 158, 32, 1, 0, 0, 0, 159, 160, 5, 42, 0, 0, 160, 34, 1, 0, 0, 0, 161, 162, 5, 47, 0,
283
+ 0, 162, 36, 1, 0, 0, 0, 163, 164, 5, 60, 0, 0, 164, 165, 5, 61, 0, 0, 165, 38, 1, 0, 0, 0, 166, 167, 5, 60, 0, 0,
284
+ 167, 40, 1, 0, 0, 0, 168, 169, 5, 62, 0, 0, 169, 42, 1, 0, 0, 0, 170, 171, 5, 62, 0, 0, 171, 172, 5, 61, 0, 0, 172,
285
+ 44, 1, 0, 0, 0, 173, 174, 5, 61, 0, 0, 174, 46, 1, 0, 0, 0, 175, 176, 5, 33, 0, 0, 176, 177, 5, 61, 0, 0, 177, 48,
286
+ 1, 0, 0, 0, 178, 179, 5, 105, 0, 0, 179, 180, 5, 110, 0, 0, 180, 50, 1, 0, 0, 0, 181, 182, 5, 33, 0, 0, 182, 183, 5,
287
+ 105, 0, 0, 183, 184, 5, 110, 0, 0, 184, 52, 1, 0, 0, 0, 185, 186, 5, 108, 0, 0, 186, 187, 5, 105, 0, 0, 187, 188, 5,
288
+ 107, 0, 0, 188, 189, 5, 101, 0, 0, 189, 54, 1, 0, 0, 0, 190, 191, 5, 33, 0, 0, 191, 192, 5, 108, 0, 0, 192, 193, 5,
289
+ 105, 0, 0, 193, 194, 5, 107, 0, 0, 194, 195, 5, 101, 0, 0, 195, 56, 1, 0, 0, 0, 196, 197, 5, 105, 0, 0, 197, 198, 5,
290
+ 108, 0, 0, 198, 199, 5, 105, 0, 0, 199, 200, 5, 107, 0, 0, 200, 201, 5, 101, 0, 0, 201, 58, 1, 0, 0, 0, 202, 203, 5,
291
+ 33, 0, 0, 203, 204, 5, 105, 0, 0, 204, 205, 5, 108, 0, 0, 205, 206, 5, 105, 0, 0, 206, 207, 5, 107, 0, 0, 207, 208,
292
+ 5, 101, 0, 0, 208, 60, 1, 0, 0, 0, 209, 210, 5, 97, 0, 0, 210, 211, 5, 110, 0, 0, 211, 212, 5, 100, 0, 0, 212, 62,
293
+ 1, 0, 0, 0, 213, 214, 5, 111, 0, 0, 214, 215, 5, 114, 0, 0, 215, 64, 1, 0, 0, 0, 216, 217, 5, 38, 0, 0, 217, 218, 5,
294
+ 38, 0, 0, 218, 66, 1, 0, 0, 0, 219, 220, 5, 124, 0, 0, 220, 221, 5, 124, 0, 0, 221, 68, 1, 0, 0, 0, 222, 226, 7, 0,
295
+ 0, 0, 223, 225, 7, 1, 0, 0, 224, 223, 1, 0, 0, 0, 225, 228, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0,
296
+ 227, 70, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 229, 230, 7, 2, 0, 0, 230, 72, 1, 0, 0, 0, 231, 232, 5, 39, 0, 0, 232,
297
+ 233, 3, 89, 44, 0, 233, 234, 5, 39, 0, 0, 234, 240, 1, 0, 0, 0, 235, 236, 5, 34, 0, 0, 236, 237, 3, 89, 44, 0, 237,
298
+ 238, 5, 34, 0, 0, 238, 240, 1, 0, 0, 0, 239, 231, 1, 0, 0, 0, 239, 235, 1, 0, 0, 0, 240, 74, 1, 0, 0, 0, 241, 242,
299
+ 5, 39, 0, 0, 242, 243, 3, 89, 44, 0, 243, 244, 5, 84, 0, 0, 244, 245, 3, 91, 45, 0, 245, 246, 3, 93, 46, 0, 246,
300
+ 247, 5, 39, 0, 0, 247, 256, 1, 0, 0, 0, 248, 249, 5, 34, 0, 0, 249, 250, 3, 89, 44, 0, 250, 251, 5, 84, 0, 0, 251,
301
+ 252, 3, 91, 45, 0, 252, 253, 3, 93, 46, 0, 253, 254, 5, 34, 0, 0, 254, 256, 1, 0, 0, 0, 255, 241, 1, 0, 0, 0, 255,
302
+ 248, 1, 0, 0, 0, 256, 76, 1, 0, 0, 0, 257, 258, 5, 39, 0, 0, 258, 259, 3, 91, 45, 0, 259, 260, 5, 39, 0, 0, 260,
303
+ 266, 1, 0, 0, 0, 261, 262, 5, 34, 0, 0, 262, 263, 3, 91, 45, 0, 263, 264, 5, 34, 0, 0, 264, 266, 1, 0, 0, 0, 265,
304
+ 257, 1, 0, 0, 0, 265, 261, 1, 0, 0, 0, 266, 78, 1, 0, 0, 0, 267, 269, 3, 71, 35, 0, 268, 267, 1, 0, 0, 0, 268, 269,
305
+ 1, 0, 0, 0, 269, 271, 1, 0, 0, 0, 270, 272, 3, 87, 43, 0, 271, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 271, 1,
306
+ 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 282, 1, 0, 0, 0, 275, 279, 5, 46, 0, 0, 276, 278, 3, 87, 43, 0, 277, 276, 1, 0,
307
+ 0, 0, 278, 281, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 283, 1, 0, 0, 0, 281, 279, 1, 0, 0, 0,
308
+ 282, 275, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 293, 1, 0, 0, 0, 284, 286, 5, 69, 0, 0, 285, 287, 7, 2, 0, 0, 286,
309
+ 285, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 289, 1, 0, 0, 0, 288, 290, 3, 87, 43, 0, 289, 288, 1, 0, 0, 0, 290, 291,
310
+ 1, 0, 0, 0, 291, 289, 1, 0, 0, 0, 291, 292, 1, 0, 0, 0, 292, 294, 1, 0, 0, 0, 293, 284, 1, 0, 0, 0, 293, 294, 1, 0,
311
+ 0, 0, 294, 304, 1, 0, 0, 0, 295, 296, 5, 48, 0, 0, 296, 297, 5, 120, 0, 0, 297, 299, 1, 0, 0, 0, 298, 300, 3, 99,
312
+ 49, 0, 299, 298, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 304, 1, 0, 0, 0,
313
+ 303, 268, 1, 0, 0, 0, 303, 295, 1, 0, 0, 0, 304, 80, 1, 0, 0, 0, 305, 307, 3, 71, 35, 0, 306, 305, 1, 0, 0, 0, 306,
314
+ 307, 1, 0, 0, 0, 307, 309, 1, 0, 0, 0, 308, 310, 3, 87, 43, 0, 309, 308, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 309,
315
+ 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 322, 1, 0, 0, 0, 313, 314, 5, 48, 0, 0, 314, 315, 5, 120, 0, 0, 315, 317, 1,
316
+ 0, 0, 0, 316, 318, 3, 99, 49, 0, 317, 316, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 319, 320, 1, 0,
317
+ 0, 0, 320, 322, 1, 0, 0, 0, 321, 306, 1, 0, 0, 0, 321, 313, 1, 0, 0, 0, 322, 82, 1, 0, 0, 0, 323, 328, 5, 39, 0, 0,
318
+ 324, 327, 3, 95, 47, 0, 325, 327, 8, 3, 0, 0, 326, 324, 1, 0, 0, 0, 326, 325, 1, 0, 0, 0, 327, 330, 1, 0, 0, 0, 328,
319
+ 326, 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 331, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 331, 342, 5, 39, 0, 0, 332, 337,
320
+ 5, 34, 0, 0, 333, 336, 3, 95, 47, 0, 334, 336, 8, 4, 0, 0, 335, 333, 1, 0, 0, 0, 335, 334, 1, 0, 0, 0, 336, 339, 1,
321
+ 0, 0, 0, 337, 335, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 1, 0, 0, 0, 339, 337, 1, 0, 0, 0, 340, 342, 5, 34, 0,
322
+ 0, 341, 323, 1, 0, 0, 0, 341, 332, 1, 0, 0, 0, 342, 84, 1, 0, 0, 0, 343, 345, 7, 5, 0, 0, 344, 343, 1, 0, 0, 0, 345,
323
+ 346, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 349, 6, 42, 0, 0, 349, 86,
324
+ 1, 0, 0, 0, 350, 351, 7, 6, 0, 0, 351, 88, 1, 0, 0, 0, 352, 353, 7, 6, 0, 0, 353, 354, 7, 6, 0, 0, 354, 355, 7, 6,
325
+ 0, 0, 355, 356, 7, 6, 0, 0, 356, 361, 5, 45, 0, 0, 357, 358, 7, 7, 0, 0, 358, 362, 7, 8, 0, 0, 359, 360, 7, 9, 0, 0,
326
+ 360, 362, 7, 10, 0, 0, 361, 357, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 370, 5, 45, 0, 0, 364,
327
+ 365, 7, 11, 0, 0, 365, 371, 7, 7, 0, 0, 366, 367, 7, 10, 0, 0, 367, 371, 7, 8, 0, 0, 368, 369, 5, 51, 0, 0, 369,
328
+ 371, 5, 49, 0, 0, 370, 364, 1, 0, 0, 0, 370, 366, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 90, 1, 0, 0, 0, 372, 373,
329
+ 7, 12, 0, 0, 373, 377, 7, 6, 0, 0, 374, 375, 5, 50, 0, 0, 375, 377, 7, 13, 0, 0, 376, 372, 1, 0, 0, 0, 376, 374, 1,
330
+ 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 379, 5, 58, 0, 0, 379, 380, 7, 14, 0, 0, 380, 381, 7, 6, 0, 0, 381, 394, 1, 0,
331
+ 0, 0, 382, 383, 5, 58, 0, 0, 383, 384, 7, 14, 0, 0, 384, 385, 7, 6, 0, 0, 385, 392, 1, 0, 0, 0, 386, 388, 5, 46, 0,
332
+ 0, 387, 389, 7, 6, 0, 0, 388, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 388, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0,
333
+ 391, 393, 1, 0, 0, 0, 392, 386, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 395, 1, 0, 0, 0, 394, 382, 1, 0, 0, 0, 394,
334
+ 395, 1, 0, 0, 0, 395, 92, 1, 0, 0, 0, 396, 412, 5, 90, 0, 0, 397, 404, 7, 2, 0, 0, 398, 400, 7, 12, 0, 0, 399, 398,
335
+ 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 405, 7, 6, 0, 0, 402, 403, 5, 50, 0, 0, 403, 405, 7,
336
+ 13, 0, 0, 404, 399, 1, 0, 0, 0, 404, 402, 1, 0, 0, 0, 405, 409, 1, 0, 0, 0, 406, 407, 5, 58, 0, 0, 407, 408, 7, 14,
337
+ 0, 0, 408, 410, 7, 6, 0, 0, 409, 406, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 412, 1, 0, 0, 0, 411, 396, 1, 0, 0, 0,
338
+ 411, 397, 1, 0, 0, 0, 412, 94, 1, 0, 0, 0, 413, 416, 5, 92, 0, 0, 414, 417, 3, 97, 48, 0, 415, 417, 9, 0, 0, 0, 416,
339
+ 414, 1, 0, 0, 0, 416, 415, 1, 0, 0, 0, 417, 96, 1, 0, 0, 0, 418, 419, 5, 117, 0, 0, 419, 420, 3, 99, 49, 0, 420,
340
+ 421, 3, 99, 49, 0, 421, 422, 3, 99, 49, 0, 422, 423, 3, 99, 49, 0, 423, 98, 1, 0, 0, 0, 424, 425, 7, 15, 0, 0, 425,
341
+ 100, 1, 0, 0, 0, 35, 0, 226, 239, 255, 265, 268, 273, 279, 282, 286, 291, 293, 301, 303, 306, 311, 319, 321, 326,
342
+ 328, 335, 337, 341, 346, 361, 370, 376, 390, 392, 394, 399, 404, 409, 411, 416, 1, 0, 1, 0,
134
343
  ];
135
- OpraFilterLexer._serializedATN = [4, 0, 43, 426, 6, -1, 2, 0,
136
- 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9,
137
- 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7,
138
- 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23,
139
- 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2,
140
- 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38,
141
- 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7,
142
- 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2,
143
- 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9,
144
- 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1,
145
- 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13,
146
- 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1,
147
- 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25,
148
- 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1,
149
- 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30,
150
- 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 5, 34, 225, 8, 34, 10,
151
- 34, 12, 34, 228, 9, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36,
152
- 240, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1,
153
- 37, 1, 37, 3, 37, 256, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 266,
154
- 8, 38, 1, 39, 3, 39, 269, 8, 39, 1, 39, 4, 39, 272, 8, 39, 11, 39, 12, 39, 273, 1, 39, 1, 39, 5,
155
- 39, 278, 8, 39, 10, 39, 12, 39, 281, 9, 39, 3, 39, 283, 8, 39, 1, 39, 1, 39, 3, 39, 287, 8, 39,
156
- 1, 39, 4, 39, 290, 8, 39, 11, 39, 12, 39, 291, 3, 39, 294, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 4,
157
- 39, 300, 8, 39, 11, 39, 12, 39, 301, 3, 39, 304, 8, 39, 1, 40, 3, 40, 307, 8, 40, 1, 40, 4, 40,
158
- 310, 8, 40, 11, 40, 12, 40, 311, 1, 40, 1, 40, 1, 40, 1, 40, 4, 40, 318, 8, 40, 11, 40, 12, 40,
159
- 319, 3, 40, 322, 8, 40, 1, 41, 1, 41, 1, 41, 5, 41, 327, 8, 41, 10, 41, 12, 41, 330, 9, 41, 1, 41,
160
- 1, 41, 1, 41, 1, 41, 5, 41, 336, 8, 41, 10, 41, 12, 41, 339, 9, 41, 1, 41, 3, 41, 342, 8, 41, 1,
161
- 42, 4, 42, 345, 8, 42, 11, 42, 12, 42, 346, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44,
162
- 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 362, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1,
163
- 44, 3, 44, 371, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 377, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45,
164
- 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 4, 45, 389, 8, 45, 11, 45, 12, 45, 390, 3, 45, 393, 8,
165
- 45, 3, 45, 395, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 400, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 405, 8,
166
- 46, 1, 46, 1, 46, 1, 46, 3, 46, 410, 8, 46, 3, 46, 412, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47, 417, 8,
167
- 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 0, 0, 50, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11,
168
- 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18,
169
- 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30,
170
- 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42,
171
- 85, 43, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 0, 99, 0, 1, 0, 16, 4, 0, 36, 36, 65, 90, 95, 95, 97,
172
- 122, 5, 0, 36, 36, 48, 57, 65, 90, 95, 95, 97, 122, 2, 0, 43, 43, 45, 45, 1, 0, 39, 39, 1, 0, 34,
173
- 34, 3, 0, 9, 10, 13, 13, 32, 32, 1, 0, 48, 57, 1, 0, 48, 48, 1, 0, 49, 57, 1, 0, 49, 49, 1, 0, 48,
174
- 50, 1, 0, 49, 51, 1, 0, 48, 49, 1, 0, 48, 51, 1, 0, 48, 53, 3, 0, 48, 57, 65, 70, 97, 102, 453, 0,
175
- 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0,
176
- 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1,
177
- 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0,
178
- 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1,
179
- 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0,
180
- 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1,
181
- 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0,
182
- 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 1, 101, 1, 0, 0, 0, 3, 103,
183
- 1, 0, 0, 0, 5, 105, 1, 0, 0, 0, 7, 109, 1, 0, 0, 0, 9, 111, 1, 0, 0, 0, 11, 113, 1, 0, 0, 0, 13, 115,
184
- 1, 0, 0, 0, 15, 117, 1, 0, 0, 0, 17, 119, 1, 0, 0, 0, 19, 121, 1, 0, 0, 0, 21, 126, 1, 0, 0, 0, 23,
185
- 132, 1, 0, 0, 0, 25, 137, 1, 0, 0, 0, 27, 146, 1, 0, 0, 0, 29, 155, 1, 0, 0, 0, 31, 157, 1, 0, 0, 0,
186
- 33, 159, 1, 0, 0, 0, 35, 161, 1, 0, 0, 0, 37, 163, 1, 0, 0, 0, 39, 166, 1, 0, 0, 0, 41, 168, 1, 0,
187
- 0, 0, 43, 170, 1, 0, 0, 0, 45, 173, 1, 0, 0, 0, 47, 175, 1, 0, 0, 0, 49, 178, 1, 0, 0, 0, 51, 181,
188
- 1, 0, 0, 0, 53, 185, 1, 0, 0, 0, 55, 190, 1, 0, 0, 0, 57, 196, 1, 0, 0, 0, 59, 202, 1, 0, 0, 0, 61,
189
- 209, 1, 0, 0, 0, 63, 213, 1, 0, 0, 0, 65, 216, 1, 0, 0, 0, 67, 219, 1, 0, 0, 0, 69, 222, 1, 0, 0, 0,
190
- 71, 229, 1, 0, 0, 0, 73, 239, 1, 0, 0, 0, 75, 255, 1, 0, 0, 0, 77, 265, 1, 0, 0, 0, 79, 303, 1, 0,
191
- 0, 0, 81, 321, 1, 0, 0, 0, 83, 341, 1, 0, 0, 0, 85, 344, 1, 0, 0, 0, 87, 350, 1, 0, 0, 0, 89, 352,
192
- 1, 0, 0, 0, 91, 376, 1, 0, 0, 0, 93, 411, 1, 0, 0, 0, 95, 413, 1, 0, 0, 0, 97, 418, 1, 0, 0, 0, 99,
193
- 424, 1, 0, 0, 0, 101, 102, 5, 40, 0, 0, 102, 2, 1, 0, 0, 0, 103, 104, 5, 41, 0, 0, 104, 4, 1, 0, 0,
194
- 0, 105, 106, 5, 110, 0, 0, 106, 107, 5, 111, 0, 0, 107, 108, 5, 116, 0, 0, 108, 6, 1, 0, 0, 0, 109,
195
- 110, 5, 33, 0, 0, 110, 8, 1, 0, 0, 0, 111, 112, 5, 46, 0, 0, 112, 10, 1, 0, 0, 0, 113, 114, 5, 64,
196
- 0, 0, 114, 12, 1, 0, 0, 0, 115, 116, 5, 91, 0, 0, 116, 14, 1, 0, 0, 0, 117, 118, 5, 44, 0, 0, 118,
197
- 16, 1, 0, 0, 0, 119, 120, 5, 93, 0, 0, 120, 18, 1, 0, 0, 0, 121, 122, 5, 116, 0, 0, 122, 123, 5,
198
- 114, 0, 0, 123, 124, 5, 117, 0, 0, 124, 125, 5, 101, 0, 0, 125, 20, 1, 0, 0, 0, 126, 127, 5, 102,
199
- 0, 0, 127, 128, 5, 97, 0, 0, 128, 129, 5, 108, 0, 0, 129, 130, 5, 115, 0, 0, 130, 131, 5, 101,
200
- 0, 0, 131, 22, 1, 0, 0, 0, 132, 133, 5, 110, 0, 0, 133, 134, 5, 117, 0, 0, 134, 135, 5, 108, 0,
201
- 0, 135, 136, 5, 108, 0, 0, 136, 24, 1, 0, 0, 0, 137, 138, 5, 73, 0, 0, 138, 139, 5, 110, 0, 0, 139,
202
- 140, 5, 102, 0, 0, 140, 141, 5, 105, 0, 0, 141, 142, 5, 110, 0, 0, 142, 143, 5, 105, 0, 0, 143,
203
- 144, 5, 116, 0, 0, 144, 145, 5, 121, 0, 0, 145, 26, 1, 0, 0, 0, 146, 147, 5, 105, 0, 0, 147, 148,
204
- 5, 110, 0, 0, 148, 149, 5, 102, 0, 0, 149, 150, 5, 105, 0, 0, 150, 151, 5, 110, 0, 0, 151, 152,
205
- 5, 105, 0, 0, 152, 153, 5, 116, 0, 0, 153, 154, 5, 121, 0, 0, 154, 28, 1, 0, 0, 0, 155, 156, 5,
206
- 43, 0, 0, 156, 30, 1, 0, 0, 0, 157, 158, 5, 45, 0, 0, 158, 32, 1, 0, 0, 0, 159, 160, 5, 42, 0, 0,
207
- 160, 34, 1, 0, 0, 0, 161, 162, 5, 47, 0, 0, 162, 36, 1, 0, 0, 0, 163, 164, 5, 60, 0, 0, 164, 165,
208
- 5, 61, 0, 0, 165, 38, 1, 0, 0, 0, 166, 167, 5, 60, 0, 0, 167, 40, 1, 0, 0, 0, 168, 169, 5, 62, 0,
209
- 0, 169, 42, 1, 0, 0, 0, 170, 171, 5, 62, 0, 0, 171, 172, 5, 61, 0, 0, 172, 44, 1, 0, 0, 0, 173, 174,
210
- 5, 61, 0, 0, 174, 46, 1, 0, 0, 0, 175, 176, 5, 33, 0, 0, 176, 177, 5, 61, 0, 0, 177, 48, 1, 0, 0,
211
- 0, 178, 179, 5, 105, 0, 0, 179, 180, 5, 110, 0, 0, 180, 50, 1, 0, 0, 0, 181, 182, 5, 33, 0, 0, 182,
212
- 183, 5, 105, 0, 0, 183, 184, 5, 110, 0, 0, 184, 52, 1, 0, 0, 0, 185, 186, 5, 108, 0, 0, 186, 187,
213
- 5, 105, 0, 0, 187, 188, 5, 107, 0, 0, 188, 189, 5, 101, 0, 0, 189, 54, 1, 0, 0, 0, 190, 191, 5,
214
- 33, 0, 0, 191, 192, 5, 108, 0, 0, 192, 193, 5, 105, 0, 0, 193, 194, 5, 107, 0, 0, 194, 195, 5,
215
- 101, 0, 0, 195, 56, 1, 0, 0, 0, 196, 197, 5, 105, 0, 0, 197, 198, 5, 108, 0, 0, 198, 199, 5, 105,
216
- 0, 0, 199, 200, 5, 107, 0, 0, 200, 201, 5, 101, 0, 0, 201, 58, 1, 0, 0, 0, 202, 203, 5, 33, 0, 0,
217
- 203, 204, 5, 105, 0, 0, 204, 205, 5, 108, 0, 0, 205, 206, 5, 105, 0, 0, 206, 207, 5, 107, 0, 0,
218
- 207, 208, 5, 101, 0, 0, 208, 60, 1, 0, 0, 0, 209, 210, 5, 97, 0, 0, 210, 211, 5, 110, 0, 0, 211,
219
- 212, 5, 100, 0, 0, 212, 62, 1, 0, 0, 0, 213, 214, 5, 111, 0, 0, 214, 215, 5, 114, 0, 0, 215, 64,
220
- 1, 0, 0, 0, 216, 217, 5, 38, 0, 0, 217, 218, 5, 38, 0, 0, 218, 66, 1, 0, 0, 0, 219, 220, 5, 124,
221
- 0, 0, 220, 221, 5, 124, 0, 0, 221, 68, 1, 0, 0, 0, 222, 226, 7, 0, 0, 0, 223, 225, 7, 1, 0, 0, 224,
222
- 223, 1, 0, 0, 0, 225, 228, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0, 227, 70, 1, 0,
223
- 0, 0, 228, 226, 1, 0, 0, 0, 229, 230, 7, 2, 0, 0, 230, 72, 1, 0, 0, 0, 231, 232, 5, 39, 0, 0, 232,
224
- 233, 3, 89, 44, 0, 233, 234, 5, 39, 0, 0, 234, 240, 1, 0, 0, 0, 235, 236, 5, 34, 0, 0, 236, 237,
225
- 3, 89, 44, 0, 237, 238, 5, 34, 0, 0, 238, 240, 1, 0, 0, 0, 239, 231, 1, 0, 0, 0, 239, 235, 1, 0,
226
- 0, 0, 240, 74, 1, 0, 0, 0, 241, 242, 5, 39, 0, 0, 242, 243, 3, 89, 44, 0, 243, 244, 5, 84, 0, 0,
227
- 244, 245, 3, 91, 45, 0, 245, 246, 3, 93, 46, 0, 246, 247, 5, 39, 0, 0, 247, 256, 1, 0, 0, 0, 248,
228
- 249, 5, 34, 0, 0, 249, 250, 3, 89, 44, 0, 250, 251, 5, 84, 0, 0, 251, 252, 3, 91, 45, 0, 252, 253,
229
- 3, 93, 46, 0, 253, 254, 5, 34, 0, 0, 254, 256, 1, 0, 0, 0, 255, 241, 1, 0, 0, 0, 255, 248, 1, 0,
230
- 0, 0, 256, 76, 1, 0, 0, 0, 257, 258, 5, 39, 0, 0, 258, 259, 3, 91, 45, 0, 259, 260, 5, 39, 0, 0,
231
- 260, 266, 1, 0, 0, 0, 261, 262, 5, 34, 0, 0, 262, 263, 3, 91, 45, 0, 263, 264, 5, 34, 0, 0, 264,
232
- 266, 1, 0, 0, 0, 265, 257, 1, 0, 0, 0, 265, 261, 1, 0, 0, 0, 266, 78, 1, 0, 0, 0, 267, 269, 3, 71,
233
- 35, 0, 268, 267, 1, 0, 0, 0, 268, 269, 1, 0, 0, 0, 269, 271, 1, 0, 0, 0, 270, 272, 3, 87, 43, 0,
234
- 271, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 282,
235
- 1, 0, 0, 0, 275, 279, 5, 46, 0, 0, 276, 278, 3, 87, 43, 0, 277, 276, 1, 0, 0, 0, 278, 281, 1, 0,
236
- 0, 0, 279, 277, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 283, 1, 0, 0, 0, 281, 279, 1, 0, 0, 0, 282,
237
- 275, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 293, 1, 0, 0, 0, 284, 286, 5, 69, 0, 0, 285, 287, 7,
238
- 2, 0, 0, 286, 285, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 289, 1, 0, 0, 0, 288, 290, 3, 87, 43, 0,
239
- 289, 288, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 289, 1, 0, 0, 0, 291, 292, 1, 0, 0, 0, 292, 294,
240
- 1, 0, 0, 0, 293, 284, 1, 0, 0, 0, 293, 294, 1, 0, 0, 0, 294, 304, 1, 0, 0, 0, 295, 296, 5, 48, 0,
241
- 0, 296, 297, 5, 120, 0, 0, 297, 299, 1, 0, 0, 0, 298, 300, 3, 99, 49, 0, 299, 298, 1, 0, 0, 0, 300,
242
- 301, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 304, 1, 0, 0, 0, 303, 268, 1, 0,
243
- 0, 0, 303, 295, 1, 0, 0, 0, 304, 80, 1, 0, 0, 0, 305, 307, 3, 71, 35, 0, 306, 305, 1, 0, 0, 0, 306,
244
- 307, 1, 0, 0, 0, 307, 309, 1, 0, 0, 0, 308, 310, 3, 87, 43, 0, 309, 308, 1, 0, 0, 0, 310, 311, 1,
245
- 0, 0, 0, 311, 309, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 322, 1, 0, 0, 0, 313, 314, 5, 48, 0, 0,
246
- 314, 315, 5, 120, 0, 0, 315, 317, 1, 0, 0, 0, 316, 318, 3, 99, 49, 0, 317, 316, 1, 0, 0, 0, 318,
247
- 319, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 322, 1, 0, 0, 0, 321, 306, 1, 0,
248
- 0, 0, 321, 313, 1, 0, 0, 0, 322, 82, 1, 0, 0, 0, 323, 328, 5, 39, 0, 0, 324, 327, 3, 95, 47, 0, 325,
249
- 327, 8, 3, 0, 0, 326, 324, 1, 0, 0, 0, 326, 325, 1, 0, 0, 0, 327, 330, 1, 0, 0, 0, 328, 326, 1, 0,
250
- 0, 0, 328, 329, 1, 0, 0, 0, 329, 331, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 331, 342, 5, 39, 0, 0, 332,
251
- 337, 5, 34, 0, 0, 333, 336, 3, 95, 47, 0, 334, 336, 8, 4, 0, 0, 335, 333, 1, 0, 0, 0, 335, 334,
252
- 1, 0, 0, 0, 336, 339, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 1, 0, 0, 0,
253
- 339, 337, 1, 0, 0, 0, 340, 342, 5, 34, 0, 0, 341, 323, 1, 0, 0, 0, 341, 332, 1, 0, 0, 0, 342, 84,
254
- 1, 0, 0, 0, 343, 345, 7, 5, 0, 0, 344, 343, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0,
255
- 346, 347, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 349, 6, 42, 0, 0, 349, 86, 1, 0, 0, 0, 350, 351,
256
- 7, 6, 0, 0, 351, 88, 1, 0, 0, 0, 352, 353, 7, 6, 0, 0, 353, 354, 7, 6, 0, 0, 354, 355, 7, 6, 0, 0,
257
- 355, 356, 7, 6, 0, 0, 356, 361, 5, 45, 0, 0, 357, 358, 7, 7, 0, 0, 358, 362, 7, 8, 0, 0, 359, 360,
258
- 7, 9, 0, 0, 360, 362, 7, 10, 0, 0, 361, 357, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 362, 363, 1, 0, 0,
259
- 0, 363, 370, 5, 45, 0, 0, 364, 365, 7, 11, 0, 0, 365, 371, 7, 7, 0, 0, 366, 367, 7, 10, 0, 0, 367,
260
- 371, 7, 8, 0, 0, 368, 369, 5, 51, 0, 0, 369, 371, 5, 49, 0, 0, 370, 364, 1, 0, 0, 0, 370, 366, 1,
261
- 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 90, 1, 0, 0, 0, 372, 373, 7, 12, 0, 0, 373, 377, 7, 6, 0, 0, 374,
262
- 375, 5, 50, 0, 0, 375, 377, 7, 13, 0, 0, 376, 372, 1, 0, 0, 0, 376, 374, 1, 0, 0, 0, 377, 378, 1,
263
- 0, 0, 0, 378, 379, 5, 58, 0, 0, 379, 380, 7, 14, 0, 0, 380, 381, 7, 6, 0, 0, 381, 394, 1, 0, 0, 0,
264
- 382, 383, 5, 58, 0, 0, 383, 384, 7, 14, 0, 0, 384, 385, 7, 6, 0, 0, 385, 392, 1, 0, 0, 0, 386, 388,
265
- 5, 46, 0, 0, 387, 389, 7, 6, 0, 0, 388, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 388, 1, 0, 0,
266
- 0, 390, 391, 1, 0, 0, 0, 391, 393, 1, 0, 0, 0, 392, 386, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 395,
267
- 1, 0, 0, 0, 394, 382, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 92, 1, 0, 0, 0, 396, 412, 5, 90, 0, 0,
268
- 397, 404, 7, 2, 0, 0, 398, 400, 7, 12, 0, 0, 399, 398, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 401,
269
- 1, 0, 0, 0, 401, 405, 7, 6, 0, 0, 402, 403, 5, 50, 0, 0, 403, 405, 7, 13, 0, 0, 404, 399, 1, 0, 0,
270
- 0, 404, 402, 1, 0, 0, 0, 405, 409, 1, 0, 0, 0, 406, 407, 5, 58, 0, 0, 407, 408, 7, 14, 0, 0, 408,
271
- 410, 7, 6, 0, 0, 409, 406, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 412, 1, 0, 0, 0, 411, 396, 1, 0,
272
- 0, 0, 411, 397, 1, 0, 0, 0, 412, 94, 1, 0, 0, 0, 413, 416, 5, 92, 0, 0, 414, 417, 3, 97, 48, 0, 415,
273
- 417, 9, 0, 0, 0, 416, 414, 1, 0, 0, 0, 416, 415, 1, 0, 0, 0, 417, 96, 1, 0, 0, 0, 418, 419, 5, 117,
274
- 0, 0, 419, 420, 3, 99, 49, 0, 420, 421, 3, 99, 49, 0, 421, 422, 3, 99, 49, 0, 422, 423, 3, 99,
275
- 49, 0, 423, 98, 1, 0, 0, 0, 424, 425, 7, 15, 0, 0, 425, 100, 1, 0, 0, 0, 35, 0, 226, 239, 255, 265,
276
- 268, 273, 279, 282, 286, 291, 293, 301, 303, 306, 311, 319, 321, 326, 328, 335, 337, 341,
277
- 346, 361, 370, 376, 390, 392, 394, 399, 404, 409, 411, 416, 1, 0, 1, 0];
278
344
  OpraFilterLexer.DecisionsToDFA = OpraFilterLexer._ATN.decisionToState.map((ds, index) => new antlr4_1.DFA(ds, index));
279
345
  exports.default = OpraFilterLexer;