@markw65/prettier-plugin-monkeyc 1.0.50 → 1.0.51
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.
- package/README.md +1 -248
- package/build/prettier-plugin-monkeyc.cjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -101,251 +101,4 @@ The plugin is organized as follows:
|
|
|
101
101
|
|
|
102
102
|
## Release Notes
|
|
103
103
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
- Initial release
|
|
107
|
-
|
|
108
|
-
#### 1.0.1 - 1.0.7
|
|
109
|
-
|
|
110
|
-
- Minor tweaks for better consistency with Prettier for javascript
|
|
111
|
-
|
|
112
|
-
#### 1.0.8
|
|
113
|
-
|
|
114
|
-
- Fix some issues with the standard prettier options. Eg setting options.semi=false would have produced illegal MonkeyC, as would setting options.trailingComma=all
|
|
115
|
-
- Add a monkeyc-json parser, which just takes the AST (in JSON format) as input. This will allow us to build tools that use the plugin to parse MonkeyC, then change the AST in some way, and then print out the result.
|
|
116
|
-
|
|
117
|
-
#### 1.0.9
|
|
118
|
-
|
|
119
|
-
- Don't bundle prettier/standalone.js in the build, since we depend on prettier anyway. This halves the size of the bundle.
|
|
120
|
-
- Improve the monkeyc-json parser to allow passing the original source, followed by the json-ast, so that prettier can still inspect the original source when printing (it does this for comments, and for deciding when to leave blank lines between certain constructs).
|
|
121
|
-
|
|
122
|
-
#### 1.0.10
|
|
123
|
-
|
|
124
|
-
- Fixed the parser to allow import/using inside modules.
|
|
125
|
-
|
|
126
|
-
#### 1.0.11
|
|
127
|
-
|
|
128
|
-
- Fixed an issue parsing object literals whose keys were not PrimaryExpressions
|
|
129
|
-
|
|
130
|
-
#### 1.0.12
|
|
131
|
-
|
|
132
|
-
Fixed various parser issues:
|
|
133
|
-
|
|
134
|
-
- Allow space after `arg` in `catch ( arg ) {`
|
|
135
|
-
- Allow space after `,` in `for (i = 0 , j = 0; whatever; i++ , j++ ) {`
|
|
136
|
-
- Don't reuse ArrayLiteral for `new [ size ]` because it can
|
|
137
|
-
confuse the estree printer
|
|
138
|
-
- Ignore "@" at the beginning of an identifier (is this right? It doesn't
|
|
139
|
-
seem to do anything)
|
|
140
|
-
- Floating point literals need a digit after the point. Otherwise
|
|
141
|
-
`42.toChar()` gets misparsed by consuming `42.` as a float literal,
|
|
142
|
-
and then hitting a syntax error.
|
|
143
|
-
- Allow `static class Foo {}` (but ignore the static)
|
|
144
|
-
- Fixup reserved word lists
|
|
145
|
-
- Handle octal literals
|
|
146
|
-
- Parse `new [size]b`
|
|
147
|
-
|
|
148
|
-
#### 1.0.13
|
|
149
|
-
|
|
150
|
-
A few bug fixes and enhancements
|
|
151
|
-
|
|
152
|
-
- Bit of parser cleanup
|
|
153
|
-
- Let the parser ignore a missing ";" before a "}", so the printer can add it for us
|
|
154
|
-
- Allow any PrimaryExpression for arguments to attributes
|
|
155
|
-
- Don't let the printer change Floats to Numbers
|
|
156
|
-
- Fix the printer to correctly wrap the bodies of conditional and loop statements
|
|
157
|
-
|
|
158
|
-
#### 1.0.14
|
|
159
|
-
|
|
160
|
-
Accept and fix a few more illegal programs
|
|
161
|
-
|
|
162
|
-
- Allow an omitted semi-colon in more places (then add it in via the printer)
|
|
163
|
-
- Allow numbers outside the 32-bit range, and add an "l" suffix when printing them so the compiler will accept them.
|
|
164
|
-
|
|
165
|
-
#### 1.0.15
|
|
166
|
-
|
|
167
|
-
- Add loc field to nodes
|
|
168
|
-
- Fix a bug that dropped attributes on module declarations
|
|
169
|
-
|
|
170
|
-
#### 1.0.16
|
|
171
|
-
|
|
172
|
-
- Write a webpack plugin to add a fake module.exports header to build/prettier-plugin-monkeyc.cjs, so that typescript, and node properly recognize what's being exported.
|
|
173
|
-
|
|
174
|
-
#### 1.0.17
|
|
175
|
-
|
|
176
|
-
- As of sdk 4.1.3, some of the sample projects no longer build with type checking enabled.
|
|
177
|
-
- Drop -l option from tests
|
|
178
|
-
- Fix start/end locations for certain nodes
|
|
179
|
-
- When building chains of nodes via `reduce`, we were fixing start and end, but not the newly added loc.start/loc.end.
|
|
180
|
-
- Add an index.d.ts
|
|
181
|
-
- @markw65/monkeyc-optimizer is switching over to typescript, and needs some basic type declarations.
|
|
182
|
-
|
|
183
|
-
#### 1.0.18
|
|
184
|
-
|
|
185
|
-
- Make TypedIdentifier a union type between `Identifier` and `AsExpression`. The problem with the old way of doing it was that the identifier's location went from before the start of the identifier to after the end of the `as` expression, which was problematic when finding all references to the symbol, or renaming the symbol in vscode.
|
|
186
|
-
- Switch everything over to typescript. This found some bugs, and some dead code (where fields had been moved around, but there was still dead code looking at the old locations). It also creates better type exports for typescript projects that import this one.
|
|
187
|
-
|
|
188
|
-
#### 1.0.19
|
|
189
|
-
|
|
190
|
-
- Switch to using prettier, rather than prettier/standalone since we don't need to run in the browser, and @types/prettier is missing a lot of types for prettier/standalone.
|
|
191
|
-
|
|
192
|
-
#### 1.0.20
|
|
193
|
-
|
|
194
|
-
- Allow null for FunctionDeclaration.body
|
|
195
|
-
- Turn on stricter checking for typescript.
|
|
196
|
-
|
|
197
|
-
#### 1.0.21
|
|
198
|
-
|
|
199
|
-
- Stricter typechecking, and fix a declaration in estree-types
|
|
200
|
-
- Bump to latest versions of all npm packages
|
|
201
|
-
|
|
202
|
-
#### 1.0.22
|
|
203
|
-
|
|
204
|
-
- Fix a couple of estree-types declarations
|
|
205
|
-
- Fix parsing and printing of top level object literals
|
|
206
|
-
- Parenthesize various top level expressions so the Garmin parser can handle them
|
|
207
|
-
|
|
208
|
-
#### 1.0.23
|
|
209
|
-
|
|
210
|
-
- Don't allow comments on AttributeList nodes.
|
|
211
|
-
- They weren't handled, and that resulted in an assertion from Prettier
|
|
212
|
-
|
|
213
|
-
#### 1.0.24
|
|
214
|
-
|
|
215
|
-
- Add an Attributes node between the AttributeList and the Attribute[]
|
|
216
|
-
- This allows us to handle trailing comments on attributes better.
|
|
217
|
-
- Properly handle comments in the monkeyc-json parser.
|
|
218
|
-
- Drop comments unless we have the source code
|
|
219
|
-
- Drop prettier-ignore comments if we _do_ have the source code.
|
|
220
|
-
|
|
221
|
-
#### 1.0.25
|
|
222
|
-
|
|
223
|
-
- Fix some nits in estree-types.
|
|
224
|
-
|
|
225
|
-
#### 1.0.26
|
|
226
|
-
|
|
227
|
-
- Fix bug parsing case instanceof (it only allowed a plain identifier)
|
|
228
|
-
- Fix more estree types
|
|
229
|
-
|
|
230
|
-
#### 1.0.27
|
|
231
|
-
|
|
232
|
-
- More nits in estree-types.
|
|
233
|
-
|
|
234
|
-
#### 1.0.28
|
|
235
|
-
|
|
236
|
-
- More nits in estree-types.
|
|
237
|
-
|
|
238
|
-
#### 1.0.29
|
|
239
|
-
|
|
240
|
-
- Fix a bug where comments beginning `\s*::` on certain nodes could end up not being printed, and result in an error from prettier.
|
|
241
|
-
|
|
242
|
-
#### 1.0.30
|
|
243
|
-
|
|
244
|
-
- Parenthesize AsExpression when its a subexpression of LogicalExpression
|
|
245
|
-
- Export Expression from estree-types
|
|
246
|
-
|
|
247
|
-
#### 1.0.31
|
|
248
|
-
|
|
249
|
-
- Parenthesize AsExpression when its the test of a ConditionalExpression
|
|
250
|
-
|
|
251
|
-
#### 1.0.32
|
|
252
|
-
|
|
253
|
-
- Disambiguate the ? in `foo as Bar ? E1 : E2`
|
|
254
|
-
- Without this fix, it would be greedily parsed as `(foo as Bar?)`, and then the parser would trip over the remainder of the expression. This adds a lookahead, so the `?` is only included in the type if the rest of the expression doesn't parse as a ConditionalExpression.
|
|
255
|
-
|
|
256
|
-
#### 1.0.33
|
|
257
|
-
|
|
258
|
-
- Cleanup
|
|
259
|
-
|
|
260
|
-
- Use ConditionalExpressionTail in ConditionalExpression
|
|
261
|
-
- Fix more estree-types
|
|
262
|
-
|
|
263
|
-
- Api change
|
|
264
|
-
|
|
265
|
-
- Use BigInts for Longs
|
|
266
|
-
|
|
267
|
-
- Parser fix
|
|
268
|
-
- Allow `new arr[index](...args)`
|
|
269
|
-
- previously it would treat arr as a type, and create a SizedArrayExpression `new arr [index]`, and try to invoke that.
|
|
270
|
-
|
|
271
|
-
#### 1.0.34
|
|
272
|
-
|
|
273
|
-
- Parser fix
|
|
274
|
-
- Allow space to separate attributes (rather than requiring a comma)
|
|
275
|
-
|
|
276
|
-
#### 1.0.35
|
|
277
|
-
|
|
278
|
-
- Formatter fix
|
|
279
|
-
- Don't indent object types in typedef declarations [#1](https://github.com/markw65/prettier-plugin-monkeyc/issues/1)
|
|
280
|
-
|
|
281
|
-
- Parser fixes to match some [undocument monkeyc behavior](https://github.com/markw65/monkeyc-optimizer/issues/1)
|
|
282
|
-
- Allow '|' as well as 'or' in type unions
|
|
283
|
-
- Treat \<letter>, \" and \<space> as whitespace
|
|
284
|
-
- Treat \<newline> as <newline>
|
|
285
|
-
|
|
286
|
-
#### 1.0.36
|
|
287
|
-
|
|
288
|
-
- Upgrade to latest versions of all dependent packages
|
|
289
|
-
|
|
290
|
-
#### 1.0.37
|
|
291
|
-
|
|
292
|
-
- Tweaks to estree-types.ts to more accurately describe the AST
|
|
293
|
-
|
|
294
|
-
#### 1.0.38
|
|
295
|
-
|
|
296
|
-
- Turn off caching, reducing the parser's memory use by about 5x. This initially had very little effect on parsing speed for most code, but there were some pathalogical cases that were relying on caching. So I folled this up by a series of fixes to the grammar to reduce the amount of backtracking and reparsing. At the end of which, parsing was about twice as fast on average, and no slower worst case.
|
|
297
|
-
- Added tests that the location info was consistent, after accidentally breaking it with the backtracking fixes.
|
|
298
|
-
- Fix the layout of the generated .d.ts files
|
|
299
|
-
- Update the parser to handle the attribute fields in api.mir, so we can access things like minCiq version from the ast.
|
|
300
|
-
- Switch to my own build of prettier-plugin-pegjs, which can handle peggy's global initializer
|
|
301
|
-
|
|
302
|
-
#### 1.0.39
|
|
303
|
-
- Fix issues with NaN
|
|
304
|
-
- NaN was prettied to nan, even though the token is case sensitive
|
|
305
|
-
- NaN was serialized to null (default JSON.serialize behavior), so the optimizer converted NaN to null.
|
|
306
|
-
- Add support for parsing single expressions, rather than modules.
|
|
307
|
-
|
|
308
|
-
#### 1.0.40
|
|
309
|
-
|
|
310
|
-
- Fix an issue parsing Char literals
|
|
311
|
-
- Fix location info for parenthesized expressions
|
|
312
|
-
|
|
313
|
-
#### 1.0.41
|
|
314
|
-
|
|
315
|
-
- Fix LiteralIntegerRe to include negative numbers
|
|
316
|
-
- Round Float literals to 32 bits
|
|
317
|
-
- Properly parse "foo as Bar as Baz", without requiring parentheses "(foo as Bar) as Baz"
|
|
318
|
-
- In enums, allow whitespace between the initializer and the following comma
|
|
319
|
-
- Fix an issue where a number whose representation looked like an integer, and ended in capital D would be converted to a float.
|
|
320
|
-
- More precise typescript types for MemberExpressions
|
|
321
|
-
|
|
322
|
-
#### 1.0.42
|
|
323
|
-
|
|
324
|
-
- Add an "origins" array to BaseNode, to store inlining history.
|
|
325
|
-
- Ensure that MethodDefinition.params is never null.
|
|
326
|
-
|
|
327
|
-
#### 1.0.43
|
|
328
|
-
|
|
329
|
-
- Add an "original" field to Identifier, to indicate that this variable was renamed by the optimizer. The printer will display the name as a comment after each use.
|
|
330
|
-
#### 1.0.44
|
|
331
|
-
|
|
332
|
-
- Fix parsing of union expressions so that `Void` never includes the following types. This lets us parse `Method() as Void or xxx` the same way that Garmin does.
|
|
333
|
-
- Fix printing of nested Methods. If one Method's declaration contained another Method (eg as a parameter, or the return type), then the outer Method would be incorrectly terminated by a `;`
|
|
334
|
-
|
|
335
|
-
#### 1.0.45
|
|
336
|
-
- Fix some issues where the formatter didn't print comments attached to certain identifiers (eg the name in `module <name>`), resulting in an internal error.
|
|
337
|
-
|
|
338
|
-
#### 1.0.46
|
|
339
|
-
- Change the `type` of the project to `commonjs`, so it can be imported by typescript with `moduleResolution` set to `nodenext`
|
|
340
|
-
|
|
341
|
-
#### 1.0.47
|
|
342
|
-
- Add support for parsing (but not formatting) .mss files
|
|
343
|
-
- Fix a bug where Long hex and octal constants were stored as number rather than BigInt, possibly losing precision.
|
|
344
|
-
- Fix a formatting issue where Long hex and octal constants would be converted to decimal
|
|
345
|
-
- Upgrade all the dev dependencies, including typescript.
|
|
346
|
-
|
|
347
|
-
#### 1.0.48
|
|
348
|
-
- No changes in functionality, but switch from webpack to esbuild. I had been meaning to do that anyway, but webpack's minifier started breaking the code (the published 1.0.47 is unusable as a result).
|
|
349
|
-
|
|
350
|
-
#### 1.0.49
|
|
351
|
-
- No changes in functionality. esbuild was accidentally added as a dependency, rather than a dev dependency.
|
|
104
|
+
See [Change Log](CHANGELOG.md)
|
|
@@ -9,4 +9,4 @@
|
|
|
9
9
|
`,"\r","\u2028","\u2029"],!1,!1),l1=ge("end of line"),A1=C(`
|
|
10
10
|
`,!1),o1=C(`\r
|
|
11
11
|
`,!1),c1=C("\r",!1),E1=C("\u2028",!1),p1=C("\u2029",!1),C1=ge("comment"),F1=C("/*",!1),$u=C("*/",!1),B1=C("//",!1),g1=ge("identifier"),yu=C("@",!1),D1=C("$",!1),d1=C("_",!1),v1=C("\u200C",!1),$1=C("\u200D",!1),y1=ge("number"),h1=C("f",!0),m1=C("d",!0),hu=C("l",!0),oe=C(".",!1),mu=C("0",!1),x1=P([["0","9"]],!1,!1),b1=P([["1","9"]],!1,!1),S1=C("e",!0),T1=P(["+","-"],!1,!1),w1=C("0x",!0),N1=P([["0","9"],["a","f"]],!1,!0),P1=P([["0","7"]],!1,!1),k1=ge("string"),_e=C('"',!1),He=C("'",!1),xu=C("b",!1),L1=C("f",!1),I1=C("n",!1),O1=C("r",!1),M1=C("t",!1),U1=C("v",!1),W0=C("x",!1),K0=C("u",!1),j1=P([["a","z"],"\xB5",["\xDF","\xF6"],["\xF8","\xFF"],"\u0101","\u0103","\u0105","\u0107","\u0109","\u010B","\u010D","\u010F","\u0111","\u0113","\u0115","\u0117","\u0119","\u011B","\u011D","\u011F","\u0121","\u0123","\u0125","\u0127","\u0129","\u012B","\u012D","\u012F","\u0131","\u0133","\u0135",["\u0137","\u0138"],"\u013A","\u013C","\u013E","\u0140","\u0142","\u0144","\u0146",["\u0148","\u0149"],"\u014B","\u014D","\u014F","\u0151","\u0153","\u0155","\u0157","\u0159","\u015B","\u015D","\u015F","\u0161","\u0163","\u0165","\u0167","\u0169","\u016B","\u016D","\u016F","\u0171","\u0173","\u0175","\u0177","\u017A","\u017C",["\u017E","\u0180"],"\u0183","\u0185","\u0188",["\u018C","\u018D"],"\u0192","\u0195",["\u0199","\u019B"],"\u019E","\u01A1","\u01A3","\u01A5","\u01A8",["\u01AA","\u01AB"],"\u01AD","\u01B0","\u01B4","\u01B6",["\u01B9","\u01BA"],["\u01BD","\u01BF"],"\u01C6","\u01C9","\u01CC","\u01CE","\u01D0","\u01D2","\u01D4","\u01D6","\u01D8","\u01DA",["\u01DC","\u01DD"],"\u01DF","\u01E1","\u01E3","\u01E5","\u01E7","\u01E9","\u01EB","\u01ED",["\u01EF","\u01F0"],"\u01F3","\u01F5","\u01F9","\u01FB","\u01FD","\u01FF","\u0201","\u0203","\u0205","\u0207","\u0209","\u020B","\u020D","\u020F","\u0211","\u0213","\u0215","\u0217","\u0219","\u021B","\u021D","\u021F","\u0221","\u0223","\u0225","\u0227","\u0229","\u022B","\u022D","\u022F","\u0231",["\u0233","\u0239"],"\u023C",["\u023F","\u0240"],"\u0242","\u0247","\u0249","\u024B","\u024D",["\u024F","\u0293"],["\u0295","\u02AF"],"\u0371","\u0373","\u0377",["\u037B","\u037D"],"\u0390",["\u03AC","\u03CE"],["\u03D0","\u03D1"],["\u03D5","\u03D7"],"\u03D9","\u03DB","\u03DD","\u03DF","\u03E1","\u03E3","\u03E5","\u03E7","\u03E9","\u03EB","\u03ED",["\u03EF","\u03F3"],"\u03F5","\u03F8",["\u03FB","\u03FC"],["\u0430","\u045F"],"\u0461","\u0463","\u0465","\u0467","\u0469","\u046B","\u046D","\u046F","\u0471","\u0473","\u0475","\u0477","\u0479","\u047B","\u047D","\u047F","\u0481","\u048B","\u048D","\u048F","\u0491","\u0493","\u0495","\u0497","\u0499","\u049B","\u049D","\u049F","\u04A1","\u04A3","\u04A5","\u04A7","\u04A9","\u04AB","\u04AD","\u04AF","\u04B1","\u04B3","\u04B5","\u04B7","\u04B9","\u04BB","\u04BD","\u04BF","\u04C2","\u04C4","\u04C6","\u04C8","\u04CA","\u04CC",["\u04CE","\u04CF"],"\u04D1","\u04D3","\u04D5","\u04D7","\u04D9","\u04DB","\u04DD","\u04DF","\u04E1","\u04E3","\u04E5","\u04E7","\u04E9","\u04EB","\u04ED","\u04EF","\u04F1","\u04F3","\u04F5","\u04F7","\u04F9","\u04FB","\u04FD","\u04FF","\u0501","\u0503","\u0505","\u0507","\u0509","\u050B","\u050D","\u050F","\u0511","\u0513","\u0515","\u0517","\u0519","\u051B","\u051D","\u051F","\u0521","\u0523","\u0525","\u0527","\u0529","\u052B","\u052D","\u052F",["\u0560","\u0588"],["\u10D0","\u10FA"],["\u10FD","\u10FF"],["\u13F8","\u13FD"],["\u1C80","\u1C88"],["\u1D00","\u1D2B"],["\u1D6B","\u1D77"],["\u1D79","\u1D9A"],"\u1E01","\u1E03","\u1E05","\u1E07","\u1E09","\u1E0B","\u1E0D","\u1E0F","\u1E11","\u1E13","\u1E15","\u1E17","\u1E19","\u1E1B","\u1E1D","\u1E1F","\u1E21","\u1E23","\u1E25","\u1E27","\u1E29","\u1E2B","\u1E2D","\u1E2F","\u1E31","\u1E33","\u1E35","\u1E37","\u1E39","\u1E3B","\u1E3D","\u1E3F","\u1E41","\u1E43","\u1E45","\u1E47","\u1E49","\u1E4B","\u1E4D","\u1E4F","\u1E51","\u1E53","\u1E55","\u1E57","\u1E59","\u1E5B","\u1E5D","\u1E5F","\u1E61","\u1E63","\u1E65","\u1E67","\u1E69","\u1E6B","\u1E6D","\u1E6F","\u1E71","\u1E73","\u1E75","\u1E77","\u1E79","\u1E7B","\u1E7D","\u1E7F","\u1E81","\u1E83","\u1E85","\u1E87","\u1E89","\u1E8B","\u1E8D","\u1E8F","\u1E91","\u1E93",["\u1E95","\u1E9D"],"\u1E9F","\u1EA1","\u1EA3","\u1EA5","\u1EA7","\u1EA9","\u1EAB","\u1EAD","\u1EAF","\u1EB1","\u1EB3","\u1EB5","\u1EB7","\u1EB9","\u1EBB","\u1EBD","\u1EBF","\u1EC1","\u1EC3","\u1EC5","\u1EC7","\u1EC9","\u1ECB","\u1ECD","\u1ECF","\u1ED1","\u1ED3","\u1ED5","\u1ED7","\u1ED9","\u1EDB","\u1EDD","\u1EDF","\u1EE1","\u1EE3","\u1EE5","\u1EE7","\u1EE9","\u1EEB","\u1EED","\u1EEF","\u1EF1","\u1EF3","\u1EF5","\u1EF7","\u1EF9","\u1EFB","\u1EFD",["\u1EFF","\u1F07"],["\u1F10","\u1F15"],["\u1F20","\u1F27"],["\u1F30","\u1F37"],["\u1F40","\u1F45"],["\u1F50","\u1F57"],["\u1F60","\u1F67"],["\u1F70","\u1F7D"],["\u1F80","\u1F87"],["\u1F90","\u1F97"],["\u1FA0","\u1FA7"],["\u1FB0","\u1FB4"],["\u1FB6","\u1FB7"],"\u1FBE",["\u1FC2","\u1FC4"],["\u1FC6","\u1FC7"],["\u1FD0","\u1FD3"],["\u1FD6","\u1FD7"],["\u1FE0","\u1FE7"],["\u1FF2","\u1FF4"],["\u1FF6","\u1FF7"],"\u210A",["\u210E","\u210F"],"\u2113","\u212F","\u2134","\u2139",["\u213C","\u213D"],["\u2146","\u2149"],"\u214E","\u2184",["\u2C30","\u2C5E"],"\u2C61",["\u2C65","\u2C66"],"\u2C68","\u2C6A","\u2C6C","\u2C71",["\u2C73","\u2C74"],["\u2C76","\u2C7B"],"\u2C81","\u2C83","\u2C85","\u2C87","\u2C89","\u2C8B","\u2C8D","\u2C8F","\u2C91","\u2C93","\u2C95","\u2C97","\u2C99","\u2C9B","\u2C9D","\u2C9F","\u2CA1","\u2CA3","\u2CA5","\u2CA7","\u2CA9","\u2CAB","\u2CAD","\u2CAF","\u2CB1","\u2CB3","\u2CB5","\u2CB7","\u2CB9","\u2CBB","\u2CBD","\u2CBF","\u2CC1","\u2CC3","\u2CC5","\u2CC7","\u2CC9","\u2CCB","\u2CCD","\u2CCF","\u2CD1","\u2CD3","\u2CD5","\u2CD7","\u2CD9","\u2CDB","\u2CDD","\u2CDF","\u2CE1",["\u2CE3","\u2CE4"],"\u2CEC","\u2CEE","\u2CF3",["\u2D00","\u2D25"],"\u2D27","\u2D2D","\uA641","\uA643","\uA645","\uA647","\uA649","\uA64B","\uA64D","\uA64F","\uA651","\uA653","\uA655","\uA657","\uA659","\uA65B","\uA65D","\uA65F","\uA661","\uA663","\uA665","\uA667","\uA669","\uA66B","\uA66D","\uA681","\uA683","\uA685","\uA687","\uA689","\uA68B","\uA68D","\uA68F","\uA691","\uA693","\uA695","\uA697","\uA699","\uA69B","\uA723","\uA725","\uA727","\uA729","\uA72B","\uA72D",["\uA72F","\uA731"],"\uA733","\uA735","\uA737","\uA739","\uA73B","\uA73D","\uA73F","\uA741","\uA743","\uA745","\uA747","\uA749","\uA74B","\uA74D","\uA74F","\uA751","\uA753","\uA755","\uA757","\uA759","\uA75B","\uA75D","\uA75F","\uA761","\uA763","\uA765","\uA767","\uA769","\uA76B","\uA76D","\uA76F",["\uA771","\uA778"],"\uA77A","\uA77C","\uA77F","\uA781","\uA783","\uA785","\uA787","\uA78C","\uA78E","\uA791",["\uA793","\uA795"],"\uA797","\uA799","\uA79B","\uA79D","\uA79F","\uA7A1","\uA7A3","\uA7A5","\uA7A7","\uA7A9","\uA7AF","\uA7B5","\uA7B7","\uA7B9","\uA7FA",["\uAB30","\uAB5A"],["\uAB60","\uAB65"],["\uAB70","\uABBF"],["\uFB00","\uFB06"],["\uFB13","\uFB17"],["\uFF41","\uFF5A"]],!1,!1),z1=P([["\u02B0","\u02C1"],["\u02C6","\u02D1"],["\u02E0","\u02E4"],"\u02EC","\u02EE","\u0374","\u037A","\u0559","\u0640",["\u06E5","\u06E6"],["\u07F4","\u07F5"],"\u07FA","\u081A","\u0824","\u0828","\u0971","\u0E46","\u0EC6","\u10FC","\u17D7","\u1843","\u1AA7",["\u1C78","\u1C7D"],["\u1D2C","\u1D6A"],"\u1D78",["\u1D9B","\u1DBF"],"\u2071","\u207F",["\u2090","\u209C"],["\u2C7C","\u2C7D"],"\u2D6F","\u2E2F","\u3005",["\u3031","\u3035"],"\u303B",["\u309D","\u309E"],["\u30FC","\u30FE"],"\uA015",["\uA4F8","\uA4FD"],"\uA60C","\uA67F",["\uA69C","\uA69D"],["\uA717","\uA71F"],"\uA770","\uA788",["\uA7F8","\uA7F9"],"\uA9CF","\uA9E6","\uAA70","\uAADD",["\uAAF3","\uAAF4"],["\uAB5C","\uAB5F"],"\uFF70",["\uFF9E","\uFF9F"]],!1,!1),R1=P(["\xAA","\xBA","\u01BB",["\u01C0","\u01C3"],"\u0294",["\u05D0","\u05EA"],["\u05EF","\u05F2"],["\u0620","\u063F"],["\u0641","\u064A"],["\u066E","\u066F"],["\u0671","\u06D3"],"\u06D5",["\u06EE","\u06EF"],["\u06FA","\u06FC"],"\u06FF","\u0710",["\u0712","\u072F"],["\u074D","\u07A5"],"\u07B1",["\u07CA","\u07EA"],["\u0800","\u0815"],["\u0840","\u0858"],["\u0860","\u086A"],["\u08A0","\u08B4"],["\u08B6","\u08BD"],["\u0904","\u0939"],"\u093D","\u0950",["\u0958","\u0961"],["\u0972","\u0980"],["\u0985","\u098C"],["\u098F","\u0990"],["\u0993","\u09A8"],["\u09AA","\u09B0"],"\u09B2",["\u09B6","\u09B9"],"\u09BD","\u09CE",["\u09DC","\u09DD"],["\u09DF","\u09E1"],["\u09F0","\u09F1"],"\u09FC",["\u0A05","\u0A0A"],["\u0A0F","\u0A10"],["\u0A13","\u0A28"],["\u0A2A","\u0A30"],["\u0A32","\u0A33"],["\u0A35","\u0A36"],["\u0A38","\u0A39"],["\u0A59","\u0A5C"],"\u0A5E",["\u0A72","\u0A74"],["\u0A85","\u0A8D"],["\u0A8F","\u0A91"],["\u0A93","\u0AA8"],["\u0AAA","\u0AB0"],["\u0AB2","\u0AB3"],["\u0AB5","\u0AB9"],"\u0ABD","\u0AD0",["\u0AE0","\u0AE1"],"\u0AF9",["\u0B05","\u0B0C"],["\u0B0F","\u0B10"],["\u0B13","\u0B28"],["\u0B2A","\u0B30"],["\u0B32","\u0B33"],["\u0B35","\u0B39"],"\u0B3D",["\u0B5C","\u0B5D"],["\u0B5F","\u0B61"],"\u0B71","\u0B83",["\u0B85","\u0B8A"],["\u0B8E","\u0B90"],["\u0B92","\u0B95"],["\u0B99","\u0B9A"],"\u0B9C",["\u0B9E","\u0B9F"],["\u0BA3","\u0BA4"],["\u0BA8","\u0BAA"],["\u0BAE","\u0BB9"],"\u0BD0",["\u0C05","\u0C0C"],["\u0C0E","\u0C10"],["\u0C12","\u0C28"],["\u0C2A","\u0C39"],"\u0C3D",["\u0C58","\u0C5A"],["\u0C60","\u0C61"],"\u0C80",["\u0C85","\u0C8C"],["\u0C8E","\u0C90"],["\u0C92","\u0CA8"],["\u0CAA","\u0CB3"],["\u0CB5","\u0CB9"],"\u0CBD","\u0CDE",["\u0CE0","\u0CE1"],["\u0CF1","\u0CF2"],["\u0D05","\u0D0C"],["\u0D0E","\u0D10"],["\u0D12","\u0D3A"],"\u0D3D","\u0D4E",["\u0D54","\u0D56"],["\u0D5F","\u0D61"],["\u0D7A","\u0D7F"],["\u0D85","\u0D96"],["\u0D9A","\u0DB1"],["\u0DB3","\u0DBB"],"\u0DBD",["\u0DC0","\u0DC6"],["\u0E01","\u0E30"],["\u0E32","\u0E33"],["\u0E40","\u0E45"],["\u0E81","\u0E82"],"\u0E84",["\u0E87","\u0E88"],"\u0E8A","\u0E8D",["\u0E94","\u0E97"],["\u0E99","\u0E9F"],["\u0EA1","\u0EA3"],"\u0EA5","\u0EA7",["\u0EAA","\u0EAB"],["\u0EAD","\u0EB0"],["\u0EB2","\u0EB3"],"\u0EBD",["\u0EC0","\u0EC4"],["\u0EDC","\u0EDF"],"\u0F00",["\u0F40","\u0F47"],["\u0F49","\u0F6C"],["\u0F88","\u0F8C"],["\u1000","\u102A"],"\u103F",["\u1050","\u1055"],["\u105A","\u105D"],"\u1061",["\u1065","\u1066"],["\u106E","\u1070"],["\u1075","\u1081"],"\u108E",["\u1100","\u1248"],["\u124A","\u124D"],["\u1250","\u1256"],"\u1258",["\u125A","\u125D"],["\u1260","\u1288"],["\u128A","\u128D"],["\u1290","\u12B0"],["\u12B2","\u12B5"],["\u12B8","\u12BE"],"\u12C0",["\u12C2","\u12C5"],["\u12C8","\u12D6"],["\u12D8","\u1310"],["\u1312","\u1315"],["\u1318","\u135A"],["\u1380","\u138F"],["\u1401","\u166C"],["\u166F","\u167F"],["\u1681","\u169A"],["\u16A0","\u16EA"],["\u16F1","\u16F8"],["\u1700","\u170C"],["\u170E","\u1711"],["\u1720","\u1731"],["\u1740","\u1751"],["\u1760","\u176C"],["\u176E","\u1770"],["\u1780","\u17B3"],"\u17DC",["\u1820","\u1842"],["\u1844","\u1878"],["\u1880","\u1884"],["\u1887","\u18A8"],"\u18AA",["\u18B0","\u18F5"],["\u1900","\u191E"],["\u1950","\u196D"],["\u1970","\u1974"],["\u1980","\u19AB"],["\u19B0","\u19C9"],["\u1A00","\u1A16"],["\u1A20","\u1A54"],["\u1B05","\u1B33"],["\u1B45","\u1B4B"],["\u1B83","\u1BA0"],["\u1BAE","\u1BAF"],["\u1BBA","\u1BE5"],["\u1C00","\u1C23"],["\u1C4D","\u1C4F"],["\u1C5A","\u1C77"],["\u1CE9","\u1CEC"],["\u1CEE","\u1CF1"],["\u1CF5","\u1CF6"],["\u2135","\u2138"],["\u2D30","\u2D67"],["\u2D80","\u2D96"],["\u2DA0","\u2DA6"],["\u2DA8","\u2DAE"],["\u2DB0","\u2DB6"],["\u2DB8","\u2DBE"],["\u2DC0","\u2DC6"],["\u2DC8","\u2DCE"],["\u2DD0","\u2DD6"],["\u2DD8","\u2DDE"],"\u3006","\u303C",["\u3041","\u3096"],"\u309F",["\u30A1","\u30FA"],"\u30FF",["\u3105","\u312F"],["\u3131","\u318E"],["\u31A0","\u31BA"],["\u31F0","\u31FF"],["\u3400","\u4DB5"],["\u4E00","\u9FEF"],["\uA000","\uA014"],["\uA016","\uA48C"],["\uA4D0","\uA4F7"],["\uA500","\uA60B"],["\uA610","\uA61F"],["\uA62A","\uA62B"],"\uA66E",["\uA6A0","\uA6E5"],"\uA78F","\uA7F7",["\uA7FB","\uA801"],["\uA803","\uA805"],["\uA807","\uA80A"],["\uA80C","\uA822"],["\uA840","\uA873"],["\uA882","\uA8B3"],["\uA8F2","\uA8F7"],"\uA8FB",["\uA8FD","\uA8FE"],["\uA90A","\uA925"],["\uA930","\uA946"],["\uA960","\uA97C"],["\uA984","\uA9B2"],["\uA9E0","\uA9E4"],["\uA9E7","\uA9EF"],["\uA9FA","\uA9FE"],["\uAA00","\uAA28"],["\uAA40","\uAA42"],["\uAA44","\uAA4B"],["\uAA60","\uAA6F"],["\uAA71","\uAA76"],"\uAA7A",["\uAA7E","\uAAAF"],"\uAAB1",["\uAAB5","\uAAB6"],["\uAAB9","\uAABD"],"\uAAC0","\uAAC2",["\uAADB","\uAADC"],["\uAAE0","\uAAEA"],"\uAAF2",["\uAB01","\uAB06"],["\uAB09","\uAB0E"],["\uAB11","\uAB16"],["\uAB20","\uAB26"],["\uAB28","\uAB2E"],["\uABC0","\uABE2"],["\uAC00","\uD7A3"],["\uD7B0","\uD7C6"],["\uD7CB","\uD7FB"],["\uF900","\uFA6D"],["\uFA70","\uFAD9"],"\uFB1D",["\uFB1F","\uFB28"],["\uFB2A","\uFB36"],["\uFB38","\uFB3C"],"\uFB3E",["\uFB40","\uFB41"],["\uFB43","\uFB44"],["\uFB46","\uFBB1"],["\uFBD3","\uFD3D"],["\uFD50","\uFD8F"],["\uFD92","\uFDC7"],["\uFDF0","\uFDFB"],["\uFE70","\uFE74"],["\uFE76","\uFEFC"],["\uFF66","\uFF6F"],["\uFF71","\uFF9D"],["\uFFA0","\uFFBE"],["\uFFC2","\uFFC7"],["\uFFCA","\uFFCF"],["\uFFD2","\uFFD7"],["\uFFDA","\uFFDC"]],!1,!1),V1=P(["\u01C5","\u01C8","\u01CB","\u01F2",["\u1F88","\u1F8F"],["\u1F98","\u1F9F"],["\u1FA8","\u1FAF"],"\u1FBC","\u1FCC","\u1FFC"],!1,!1),q1=P([["A","Z"],["\xC0","\xD6"],["\xD8","\xDE"],"\u0100","\u0102","\u0104","\u0106","\u0108","\u010A","\u010C","\u010E","\u0110","\u0112","\u0114","\u0116","\u0118","\u011A","\u011C","\u011E","\u0120","\u0122","\u0124","\u0126","\u0128","\u012A","\u012C","\u012E","\u0130","\u0132","\u0134","\u0136","\u0139","\u013B","\u013D","\u013F","\u0141","\u0143","\u0145","\u0147","\u014A","\u014C","\u014E","\u0150","\u0152","\u0154","\u0156","\u0158","\u015A","\u015C","\u015E","\u0160","\u0162","\u0164","\u0166","\u0168","\u016A","\u016C","\u016E","\u0170","\u0172","\u0174","\u0176",["\u0178","\u0179"],"\u017B","\u017D",["\u0181","\u0182"],"\u0184",["\u0186","\u0187"],["\u0189","\u018B"],["\u018E","\u0191"],["\u0193","\u0194"],["\u0196","\u0198"],["\u019C","\u019D"],["\u019F","\u01A0"],"\u01A2","\u01A4",["\u01A6","\u01A7"],"\u01A9","\u01AC",["\u01AE","\u01AF"],["\u01B1","\u01B3"],"\u01B5",["\u01B7","\u01B8"],"\u01BC","\u01C4","\u01C7","\u01CA","\u01CD","\u01CF","\u01D1","\u01D3","\u01D5","\u01D7","\u01D9","\u01DB","\u01DE","\u01E0","\u01E2","\u01E4","\u01E6","\u01E8","\u01EA","\u01EC","\u01EE","\u01F1","\u01F4",["\u01F6","\u01F8"],"\u01FA","\u01FC","\u01FE","\u0200","\u0202","\u0204","\u0206","\u0208","\u020A","\u020C","\u020E","\u0210","\u0212","\u0214","\u0216","\u0218","\u021A","\u021C","\u021E","\u0220","\u0222","\u0224","\u0226","\u0228","\u022A","\u022C","\u022E","\u0230","\u0232",["\u023A","\u023B"],["\u023D","\u023E"],"\u0241",["\u0243","\u0246"],"\u0248","\u024A","\u024C","\u024E","\u0370","\u0372","\u0376","\u037F","\u0386",["\u0388","\u038A"],"\u038C",["\u038E","\u038F"],["\u0391","\u03A1"],["\u03A3","\u03AB"],"\u03CF",["\u03D2","\u03D4"],"\u03D8","\u03DA","\u03DC","\u03DE","\u03E0","\u03E2","\u03E4","\u03E6","\u03E8","\u03EA","\u03EC","\u03EE","\u03F4","\u03F7",["\u03F9","\u03FA"],["\u03FD","\u042F"],"\u0460","\u0462","\u0464","\u0466","\u0468","\u046A","\u046C","\u046E","\u0470","\u0472","\u0474","\u0476","\u0478","\u047A","\u047C","\u047E","\u0480","\u048A","\u048C","\u048E","\u0490","\u0492","\u0494","\u0496","\u0498","\u049A","\u049C","\u049E","\u04A0","\u04A2","\u04A4","\u04A6","\u04A8","\u04AA","\u04AC","\u04AE","\u04B0","\u04B2","\u04B4","\u04B6","\u04B8","\u04BA","\u04BC","\u04BE",["\u04C0","\u04C1"],"\u04C3","\u04C5","\u04C7","\u04C9","\u04CB","\u04CD","\u04D0","\u04D2","\u04D4","\u04D6","\u04D8","\u04DA","\u04DC","\u04DE","\u04E0","\u04E2","\u04E4","\u04E6","\u04E8","\u04EA","\u04EC","\u04EE","\u04F0","\u04F2","\u04F4","\u04F6","\u04F8","\u04FA","\u04FC","\u04FE","\u0500","\u0502","\u0504","\u0506","\u0508","\u050A","\u050C","\u050E","\u0510","\u0512","\u0514","\u0516","\u0518","\u051A","\u051C","\u051E","\u0520","\u0522","\u0524","\u0526","\u0528","\u052A","\u052C","\u052E",["\u0531","\u0556"],["\u10A0","\u10C5"],"\u10C7","\u10CD",["\u13A0","\u13F5"],["\u1C90","\u1CBA"],["\u1CBD","\u1CBF"],"\u1E00","\u1E02","\u1E04","\u1E06","\u1E08","\u1E0A","\u1E0C","\u1E0E","\u1E10","\u1E12","\u1E14","\u1E16","\u1E18","\u1E1A","\u1E1C","\u1E1E","\u1E20","\u1E22","\u1E24","\u1E26","\u1E28","\u1E2A","\u1E2C","\u1E2E","\u1E30","\u1E32","\u1E34","\u1E36","\u1E38","\u1E3A","\u1E3C","\u1E3E","\u1E40","\u1E42","\u1E44","\u1E46","\u1E48","\u1E4A","\u1E4C","\u1E4E","\u1E50","\u1E52","\u1E54","\u1E56","\u1E58","\u1E5A","\u1E5C","\u1E5E","\u1E60","\u1E62","\u1E64","\u1E66","\u1E68","\u1E6A","\u1E6C","\u1E6E","\u1E70","\u1E72","\u1E74","\u1E76","\u1E78","\u1E7A","\u1E7C","\u1E7E","\u1E80","\u1E82","\u1E84","\u1E86","\u1E88","\u1E8A","\u1E8C","\u1E8E","\u1E90","\u1E92","\u1E94","\u1E9E","\u1EA0","\u1EA2","\u1EA4","\u1EA6","\u1EA8","\u1EAA","\u1EAC","\u1EAE","\u1EB0","\u1EB2","\u1EB4","\u1EB6","\u1EB8","\u1EBA","\u1EBC","\u1EBE","\u1EC0","\u1EC2","\u1EC4","\u1EC6","\u1EC8","\u1ECA","\u1ECC","\u1ECE","\u1ED0","\u1ED2","\u1ED4","\u1ED6","\u1ED8","\u1EDA","\u1EDC","\u1EDE","\u1EE0","\u1EE2","\u1EE4","\u1EE6","\u1EE8","\u1EEA","\u1EEC","\u1EEE","\u1EF0","\u1EF2","\u1EF4","\u1EF6","\u1EF8","\u1EFA","\u1EFC","\u1EFE",["\u1F08","\u1F0F"],["\u1F18","\u1F1D"],["\u1F28","\u1F2F"],["\u1F38","\u1F3F"],["\u1F48","\u1F4D"],"\u1F59","\u1F5B","\u1F5D","\u1F5F",["\u1F68","\u1F6F"],["\u1FB8","\u1FBB"],["\u1FC8","\u1FCB"],["\u1FD8","\u1FDB"],["\u1FE8","\u1FEC"],["\u1FF8","\u1FFB"],"\u2102","\u2107",["\u210B","\u210D"],["\u2110","\u2112"],"\u2115",["\u2119","\u211D"],"\u2124","\u2126","\u2128",["\u212A","\u212D"],["\u2130","\u2133"],["\u213E","\u213F"],"\u2145","\u2183",["\u2C00","\u2C2E"],"\u2C60",["\u2C62","\u2C64"],"\u2C67","\u2C69","\u2C6B",["\u2C6D","\u2C70"],"\u2C72","\u2C75",["\u2C7E","\u2C80"],"\u2C82","\u2C84","\u2C86","\u2C88","\u2C8A","\u2C8C","\u2C8E","\u2C90","\u2C92","\u2C94","\u2C96","\u2C98","\u2C9A","\u2C9C","\u2C9E","\u2CA0","\u2CA2","\u2CA4","\u2CA6","\u2CA8","\u2CAA","\u2CAC","\u2CAE","\u2CB0","\u2CB2","\u2CB4","\u2CB6","\u2CB8","\u2CBA","\u2CBC","\u2CBE","\u2CC0","\u2CC2","\u2CC4","\u2CC6","\u2CC8","\u2CCA","\u2CCC","\u2CCE","\u2CD0","\u2CD2","\u2CD4","\u2CD6","\u2CD8","\u2CDA","\u2CDC","\u2CDE","\u2CE0","\u2CE2","\u2CEB","\u2CED","\u2CF2","\uA640","\uA642","\uA644","\uA646","\uA648","\uA64A","\uA64C","\uA64E","\uA650","\uA652","\uA654","\uA656","\uA658","\uA65A","\uA65C","\uA65E","\uA660","\uA662","\uA664","\uA666","\uA668","\uA66A","\uA66C","\uA680","\uA682","\uA684","\uA686","\uA688","\uA68A","\uA68C","\uA68E","\uA690","\uA692","\uA694","\uA696","\uA698","\uA69A","\uA722","\uA724","\uA726","\uA728","\uA72A","\uA72C","\uA72E","\uA732","\uA734","\uA736","\uA738","\uA73A","\uA73C","\uA73E","\uA740","\uA742","\uA744","\uA746","\uA748","\uA74A","\uA74C","\uA74E","\uA750","\uA752","\uA754","\uA756","\uA758","\uA75A","\uA75C","\uA75E","\uA760","\uA762","\uA764","\uA766","\uA768","\uA76A","\uA76C","\uA76E","\uA779","\uA77B",["\uA77D","\uA77E"],"\uA780","\uA782","\uA784","\uA786","\uA78B","\uA78D","\uA790","\uA792","\uA796","\uA798","\uA79A","\uA79C","\uA79E","\uA7A0","\uA7A2","\uA7A4","\uA7A6","\uA7A8",["\uA7AA","\uA7AE"],["\uA7B0","\uA7B4"],"\uA7B6","\uA7B8",["\uFF21","\uFF3A"]],!1,!1),W1=P(["\u0903","\u093B",["\u093E","\u0940"],["\u0949","\u094C"],["\u094E","\u094F"],["\u0982","\u0983"],["\u09BE","\u09C0"],["\u09C7","\u09C8"],["\u09CB","\u09CC"],"\u09D7","\u0A03",["\u0A3E","\u0A40"],"\u0A83",["\u0ABE","\u0AC0"],"\u0AC9",["\u0ACB","\u0ACC"],["\u0B02","\u0B03"],"\u0B3E","\u0B40",["\u0B47","\u0B48"],["\u0B4B","\u0B4C"],"\u0B57",["\u0BBE","\u0BBF"],["\u0BC1","\u0BC2"],["\u0BC6","\u0BC8"],["\u0BCA","\u0BCC"],"\u0BD7",["\u0C01","\u0C03"],["\u0C41","\u0C44"],["\u0C82","\u0C83"],"\u0CBE",["\u0CC0","\u0CC4"],["\u0CC7","\u0CC8"],["\u0CCA","\u0CCB"],["\u0CD5","\u0CD6"],["\u0D02","\u0D03"],["\u0D3E","\u0D40"],["\u0D46","\u0D48"],["\u0D4A","\u0D4C"],"\u0D57",["\u0D82","\u0D83"],["\u0DCF","\u0DD1"],["\u0DD8","\u0DDF"],["\u0DF2","\u0DF3"],["\u0F3E","\u0F3F"],"\u0F7F",["\u102B","\u102C"],"\u1031","\u1038",["\u103B","\u103C"],["\u1056","\u1057"],["\u1062","\u1064"],["\u1067","\u106D"],["\u1083","\u1084"],["\u1087","\u108C"],"\u108F",["\u109A","\u109C"],"\u17B6",["\u17BE","\u17C5"],["\u17C7","\u17C8"],["\u1923","\u1926"],["\u1929","\u192B"],["\u1930","\u1931"],["\u1933","\u1938"],["\u1A19","\u1A1A"],"\u1A55","\u1A57","\u1A61",["\u1A63","\u1A64"],["\u1A6D","\u1A72"],"\u1B04","\u1B35","\u1B3B",["\u1B3D","\u1B41"],["\u1B43","\u1B44"],"\u1B82","\u1BA1",["\u1BA6","\u1BA7"],"\u1BAA","\u1BE7",["\u1BEA","\u1BEC"],"\u1BEE",["\u1BF2","\u1BF3"],["\u1C24","\u1C2B"],["\u1C34","\u1C35"],"\u1CE1",["\u1CF2","\u1CF3"],"\u1CF7",["\u302E","\u302F"],["\uA823","\uA824"],"\uA827",["\uA880","\uA881"],["\uA8B4","\uA8C3"],["\uA952","\uA953"],"\uA983",["\uA9B4","\uA9B5"],["\uA9BA","\uA9BB"],["\uA9BD","\uA9C0"],["\uAA2F","\uAA30"],["\uAA33","\uAA34"],"\uAA4D","\uAA7B","\uAA7D","\uAAEB",["\uAAEE","\uAAEF"],"\uAAF5",["\uABE3","\uABE4"],["\uABE6","\uABE7"],["\uABE9","\uABEA"],"\uABEC"],!1,!1),K1=P([["\u0300","\u036F"],["\u0483","\u0487"],["\u0591","\u05BD"],"\u05BF",["\u05C1","\u05C2"],["\u05C4","\u05C5"],"\u05C7",["\u0610","\u061A"],["\u064B","\u065F"],"\u0670",["\u06D6","\u06DC"],["\u06DF","\u06E4"],["\u06E7","\u06E8"],["\u06EA","\u06ED"],"\u0711",["\u0730","\u074A"],["\u07A6","\u07B0"],["\u07EB","\u07F3"],"\u07FD",["\u0816","\u0819"],["\u081B","\u0823"],["\u0825","\u0827"],["\u0829","\u082D"],["\u0859","\u085B"],["\u08D3","\u08E1"],["\u08E3","\u0902"],"\u093A","\u093C",["\u0941","\u0948"],"\u094D",["\u0951","\u0957"],["\u0962","\u0963"],"\u0981","\u09BC",["\u09C1","\u09C4"],"\u09CD",["\u09E2","\u09E3"],"\u09FE",["\u0A01","\u0A02"],"\u0A3C",["\u0A41","\u0A42"],["\u0A47","\u0A48"],["\u0A4B","\u0A4D"],"\u0A51",["\u0A70","\u0A71"],"\u0A75",["\u0A81","\u0A82"],"\u0ABC",["\u0AC1","\u0AC5"],["\u0AC7","\u0AC8"],"\u0ACD",["\u0AE2","\u0AE3"],["\u0AFA","\u0AFF"],"\u0B01","\u0B3C","\u0B3F",["\u0B41","\u0B44"],"\u0B4D","\u0B56",["\u0B62","\u0B63"],"\u0B82","\u0BC0","\u0BCD","\u0C00","\u0C04",["\u0C3E","\u0C40"],["\u0C46","\u0C48"],["\u0C4A","\u0C4D"],["\u0C55","\u0C56"],["\u0C62","\u0C63"],"\u0C81","\u0CBC","\u0CBF","\u0CC6",["\u0CCC","\u0CCD"],["\u0CE2","\u0CE3"],["\u0D00","\u0D01"],["\u0D3B","\u0D3C"],["\u0D41","\u0D44"],"\u0D4D",["\u0D62","\u0D63"],"\u0DCA",["\u0DD2","\u0DD4"],"\u0DD6","\u0E31",["\u0E34","\u0E3A"],["\u0E47","\u0E4E"],"\u0EB1",["\u0EB4","\u0EB9"],["\u0EBB","\u0EBC"],["\u0EC8","\u0ECD"],["\u0F18","\u0F19"],"\u0F35","\u0F37","\u0F39",["\u0F71","\u0F7E"],["\u0F80","\u0F84"],["\u0F86","\u0F87"],["\u0F8D","\u0F97"],["\u0F99","\u0FBC"],"\u0FC6",["\u102D","\u1030"],["\u1032","\u1037"],["\u1039","\u103A"],["\u103D","\u103E"],["\u1058","\u1059"],["\u105E","\u1060"],["\u1071","\u1074"],"\u1082",["\u1085","\u1086"],"\u108D","\u109D",["\u135D","\u135F"],["\u1712","\u1714"],["\u1732","\u1734"],["\u1752","\u1753"],["\u1772","\u1773"],["\u17B4","\u17B5"],["\u17B7","\u17BD"],"\u17C6",["\u17C9","\u17D3"],"\u17DD",["\u180B","\u180D"],["\u1885","\u1886"],"\u18A9",["\u1920","\u1922"],["\u1927","\u1928"],"\u1932",["\u1939","\u193B"],["\u1A17","\u1A18"],"\u1A1B","\u1A56",["\u1A58","\u1A5E"],"\u1A60","\u1A62",["\u1A65","\u1A6C"],["\u1A73","\u1A7C"],"\u1A7F",["\u1AB0","\u1ABD"],["\u1B00","\u1B03"],"\u1B34",["\u1B36","\u1B3A"],"\u1B3C","\u1B42",["\u1B6B","\u1B73"],["\u1B80","\u1B81"],["\u1BA2","\u1BA5"],["\u1BA8","\u1BA9"],["\u1BAB","\u1BAD"],"\u1BE6",["\u1BE8","\u1BE9"],"\u1BED",["\u1BEF","\u1BF1"],["\u1C2C","\u1C33"],["\u1C36","\u1C37"],["\u1CD0","\u1CD2"],["\u1CD4","\u1CE0"],["\u1CE2","\u1CE8"],"\u1CED","\u1CF4",["\u1CF8","\u1CF9"],["\u1DC0","\u1DF9"],["\u1DFB","\u1DFF"],["\u20D0","\u20DC"],"\u20E1",["\u20E5","\u20F0"],["\u2CEF","\u2CF1"],"\u2D7F",["\u2DE0","\u2DFF"],["\u302A","\u302D"],["\u3099","\u309A"],"\uA66F",["\uA674","\uA67D"],["\uA69E","\uA69F"],["\uA6F0","\uA6F1"],"\uA802","\uA806","\uA80B",["\uA825","\uA826"],["\uA8C4","\uA8C5"],["\uA8E0","\uA8F1"],"\uA8FF",["\uA926","\uA92D"],["\uA947","\uA951"],["\uA980","\uA982"],"\uA9B3",["\uA9B6","\uA9B9"],"\uA9BC","\uA9E5",["\uAA29","\uAA2E"],["\uAA31","\uAA32"],["\uAA35","\uAA36"],"\uAA43","\uAA4C","\uAA7C","\uAAB0",["\uAAB2","\uAAB4"],["\uAAB7","\uAAB8"],["\uAABE","\uAABF"],"\uAAC1",["\uAAEC","\uAAED"],"\uAAF6","\uABE5","\uABE8","\uABED","\uFB1E",["\uFE00","\uFE0F"],["\uFE20","\uFE2F"]],!1,!1),_1=P([["0","9"],["\u0660","\u0669"],["\u06F0","\u06F9"],["\u07C0","\u07C9"],["\u0966","\u096F"],["\u09E6","\u09EF"],["\u0A66","\u0A6F"],["\u0AE6","\u0AEF"],["\u0B66","\u0B6F"],["\u0BE6","\u0BEF"],["\u0C66","\u0C6F"],["\u0CE6","\u0CEF"],["\u0D66","\u0D6F"],["\u0DE6","\u0DEF"],["\u0E50","\u0E59"],["\u0ED0","\u0ED9"],["\u0F20","\u0F29"],["\u1040","\u1049"],["\u1090","\u1099"],["\u17E0","\u17E9"],["\u1810","\u1819"],["\u1946","\u194F"],["\u19D0","\u19D9"],["\u1A80","\u1A89"],["\u1A90","\u1A99"],["\u1B50","\u1B59"],["\u1BB0","\u1BB9"],["\u1C40","\u1C49"],["\u1C50","\u1C59"],["\uA620","\uA629"],["\uA8D0","\uA8D9"],["\uA900","\uA909"],["\uA9D0","\uA9D9"],["\uA9F0","\uA9F9"],["\uAA50","\uAA59"],["\uABF0","\uABF9"],["\uFF10","\uFF19"]],!1,!1),H1=P([["\u16EE","\u16F0"],["\u2160","\u2182"],["\u2185","\u2188"],"\u3007",["\u3021","\u3029"],["\u3038","\u303A"],["\uA6E6","\uA6EF"]],!1,!1),Z1=P(["_",["\u203F","\u2040"],"\u2054",["\uFE33","\uFE34"],["\uFE4D","\uFE4F"],"\uFF3F"],!1,!1),G1=P([" ","\xA0","\u1680",["\u2000","\u200A"],"\u202F","\u205F","\u3000"],!1,!1),J1=C("and",!1),Y1=C("as",!1),X1=C("break",!1),Q1=C("case",!1),et=C("catch",!1),ut=C("class",!1),st=C("const",!1),rt=C("continue",!1),it=C("default",!1),tt=C("do",!1),ft=C("else",!1),at=C("enum",!1),nt=C("extends",!1),lt=C("false",!1),At=C("finally",!1),ot=C("for",!1),ct=C("function",!1),Et=C("has",!1),pt=C("if",!1),Ct=C("import",!1),Ft=C("instanceof",!1),Bt=C("interface",!1),gt=C("me",!1),Dt=C("module",!1),dt=C("native",!1),vt=C("NaN",!1),$t=C("new",!1),yt=C("null",!1),ht=C("or",!1),mt=C("return",!1),xt=C("self",!1),_0=C("static",!1),bt=C("super",!1),St=C("switch",!1),Tt=C("throw",!1),wt=C("true",!1),Nt=C("try",!1),Pt=C("typedef",!1),kt=C("using",!1),Lt=C("var",!1),It=C("while",!1),ue=C(";",!1),se=C("}",!1),R=C("(",!1),W=C(")",!1),Fe=C("[",!1),Be=C("]",!1),w=C(",",!1),re=C("{",!1),Ot=C("=>",!1),H0=C("+",!1),V=C("=",!1),Z0=C("-",!1),Mt=C("~",!1),Ut=C("!",!1),jt=C("*",!1),zt=C("/",!1),G0=C("%",!1),Rt=C("&",!1),Vt=C("<<",!1),qt=C(">>",!1),Wt=P(["+","="],!1,!1),bu=P(["-","="],!1,!1),Su=C("|",!1),Kt=C("^",!1),_t=C("<=",!1),Ht=C(">=",!1),Tu=C("<",!1),wu=C(">",!1),Zt=C("==",!1),Gt=C("!=",!1),Jt=C("&&",!1),Yt=C("||",!1),Nu=C("?",!1),Se=C(":",!1),Xt=P([";",")","}"],!1,!1),Qt=C("*=",!1),ef=C("/=",!1),uf=C("%=",!1),sf=C("+=",!1),rf=C("-=",!1),tf=C("<<=",!1),ff=C(">>=",!1),af=C("&=",!1),nf=C("^=",!1),lf=C("|=",!1),Af=C("++",!1),of=C("--",!1),cf=C("public",!1),Ef=C("protected",!1),pf=C("hidden",!1),Cf=C("private",!1),Ff=C("Void",!1),Bf=C("#",!1),gf=function(e){return e.comments=nu,e},Df=function(e){return e.comments=nu,e},df=function(e){Qr(e,!0)},vf=function(e){Qr(e,!1)},$f=function(e){return e},yf=function(e,r){return D({type:"Identifier",name:e+r.join("")})},hf=function(e){return e},mf=function(){return D({type:"Literal",value:null,raw:Y()})},xf=function(){return D({type:"Literal",value:NaN,raw:Y()})},bf=function(){return D({type:"Literal",value:!0,raw:Y()})},Sf=function(){return D({type:"Literal",value:!1,raw:Y()})},Tf=function(e){return D({type:"Literal",value:/l$/i.test(e)?BigInt.asIntN(64,BigInt(e.slice(0,-1))):/(\d+l?|d)$/i.test(e)?parseFloat(e):new Float32Array([parseFloat(e)])[0],raw:e})},wf=function(e,r){return D({type:"Literal",value:parseFloat(e),raw:e})},Nf=function(e){return D({type:"Literal",value:parseInt(e,10),raw:e})},Pf=function(e){return D({type:"Literal",value:/l$/i.test(e)?BigInt(e.slice(0,-1)):parseInt(e),raw:e})},kf=function(e){return D({type:"Literal",value:/l$/i.test(e)?BigInt("0o"+e.slice(1,-1)):parseInt(e.slice(1),8),raw:e})},Lf=function(e){return D({type:"Literal",value:e.join(""),raw:Y()})},If=function(e){return D({type:"Literal",value:e,raw:Y()})},Of=function(){return Y()},Mf=function(e){return e},Uf=function(){return Y()},jf=function(e){return e},zf=function(){return""},Rf=function(){return"\0"},Vf=function(){return"\b"},qf=function(){return"\f"},Wf=function(){return`
|
|
12
|
-
`},Kf=function(){return"\r"},_f=function(){return" "},Hf=function(){return"\v"},Zf=function(){return Y()},Gf=function(e){return String.fromCharCode(parseInt(e,16))},Jf=function(e){return String.fromCharCode(parseInt(e,16))},Yf=function(e){return D({type:"ThisExpression",text:e})},Xf=function(e,r){return D({type:"ArrayExpression",elements:U(e),byte:r})},Qf=function(e,r){return[e,...r]},ea=function(e){return D({type:"ObjectExpression",properties:U(e)})},ua=function(e,r){return[e,...r]},sa=function(e,r){return D({type:"Property",key:e,value:r,kind:"init"})},ra=function(e){return[e]},ia=function(e,r,t){return D({type:"SizedArrayExpression",size:r,byte:t,ts:e})},ta=function(e,r){return D({type:"NewExpression",callee:e,arguments:r})},J0=function(e,r){return D({property:r,computed:!0})},Y0=function(e,r){return D({property:r,computed:!1})},fa=function(e,r){return ze(e,r,(t,i)=>({...i,type:"MemberExpression",object:t}))},X0=function(e,r){return D({type:"CallExpression",arguments:r})},Q0=function(e,r){return D({type:"MemberExpression",property:r,computed:!0})},er=function(e,r){return D({type:"MemberExpression",property:r,computed:!1})},aa=function(e,r){return ze(e,r,(t,i)=>{let a={...i};return a[HA[i.type]]=t,a})},na=function(e){return U(e)},la=function(e,r){return[e,...r]},Aa=function(e,r){return D({type:"UnaryExpression",operator:e,argument:r,prefix:!0})},oa=function(e,r){return je(e,r)},ca=function(e,r){return je(e,r)},Ea=function(e,r){return je(e,r)},pa=function(e,r){return je(e,r)},Ca=function(e,r){return je(e,r)},Fa=function(e,r){return ui(e,r)},Ba=function(e,r){return ui(e,r)},ga=function(e,r){return r?D({type:"ConditionalExpression",test:e,consequent:r[0],alternate:r[1]}):e},Da=function(e,r,t){return{type:"AssignmentExpression",operator:r,left:e,right:t}},da=function(e,r){return{type:"UpdateExpression",operator:r,argument:e,prefix:!1}},va=function(e){return e},$a=function(e,r){return r.loc?r:D(r)},ya=function(e,r){return D({type:"UpdateExpression",operator:e,argument:r,prefix:!0})},ha=function(e,r){return D(r.length?{type:"SequenceExpression",expressions:[e,...r]}:e)},ma=function(e){return D({type:"BlockStatement",body:U(e)})},xa=function(e){return D({type:"ExpressionStatement",expression:e})},ba=function(e,r){return[e,...r]},Sa=function(e,r,t){return D({type:"VariableDeclaration",declarations:t,kind:r,attrs:e})},Ta=function(e,r){return[e,...r]},wa=function(e,r){return D({type:"VariableDeclarator",id:e,init:r})},Na=function(e){return e},Pa=function(e){return D({type:"ExpressionStatement",expression:e})},ka=function(e,r,t){return D({type:"IfStatement",test:e,consequent:r,alternate:t||null})},La=function(e,r){return D({type:"DoWhileStatement",body:e,test:r})},Ia=function(e,r){return D({type:"WhileStatement",test:e,body:r})},Oa=function(e){return D({type:"VariableDeclaration",declarations:e,kind:"var"})},Ma=function(e,r,t,i){return D({type:"ForStatement",init:e,test:r,update:t,body:i})},Ua=function(){return D({type:"ContinueStatement",label:null})},ja=function(e){return D({type:"ContinueStatement",label:e})},za=function(){return D({type:"BreakStatement",label:null})},Ra=function(e){return D({type:"BreakStatement",label:e})},Va=function(e){return D({type:"ReturnStatement",argument:e||null})},qa=function(e,r){return D({type:"SwitchStatement",discriminant:e,cases:r})},Wa=function(e,r,t){return[r].concat(U(t))},Ka=function(e,r){return U(e).concat(U(r))},_a=function(e,r){return[e,...r]},Ha=function(e){return D({type:"InstanceOfCase",id:e})},Za=function(e,r){return D({type:"SwitchCase",test:e,consequent:U(r)})},Ga=function(e){return D({type:"SwitchCase",test:null,consequent:U(e)})},Ja=function(e,r){return D({type:"LabeledStatement",label:e,body:r})},Ya=function(e){return D({type:"ThrowStatement",argument:e})},Xa=function(e,r,t){return D({type:"TryStatement",block:e,handler:r,finalizer:t})},Qa=function(e){return e.length==1?e[0]:D({type:"CatchClauses",catches:e})},en=function(e,r){return D({type:"CatchClause",param:e,body:r})},un=function(e,r){return r?D({type:"BinaryExpression",operator:r[0],left:e,right:r[1]}):e},sn=function(e){return e},rn=function(e){return D({type:"UnaryExpression",operator:":",argument:e,prefix:!0})},tn=function(e,r){return r?D({type:"CallExpression",callee:{...e.argument,name:":"+e.argument.name},arguments:[r]}):e},fn=function(e,r){return D({type:"AttributeList",attributes:e,access:r})},an=function(e){return D({type:"AttributeList",access:e})},nn=function(e,r){return D({type:"AttributeList",system:e,access:r})},ln=function(e){return Object.fromEntries(e.map(([r,t])=>[r,t.type==="Literal"?t.value:t]))},An=function(e,r){return D({type:"Attributes",elements:[e,...r]})},on=function(e,r){return[e,...r]},ur=function(e,r){return D({property:r,computed:!1})},cn=function(e,r){return ze(e,r,(t,i)=>({...i,type:"MemberExpression",object:t}))},En=function(e){return D({type:"ImportModule",id:e})},pn=function(e,r){return D({type:"Using",id:e,as:r})},Cn=function(e,r,t){return D({type:"ModuleDeclaration",body:t,id:r,attrs:e})},Fn=function(e,r,t,i){return D({type:"ClassDeclaration",id:r,superClass:t,body:i,attrs:e})},Bn=function(e){return D({type:"BlockStatement",body:e})},gn=function(e){return D({type:"ClassElement",item:e})},Dn=function(e,r,t){return D({type:"EnumDeclaration",id:r,body:t,attrs:e})},dn=function(e,r){return D({type:"EnumStringBody",members:[e,...r]})},vn=function(e,r,t){let i=t?D({type:"EnumStringMember",id:r,init:t}):r;return e&&(i.system=e),i},$n=function(e,r){return D({type:"TypedefDeclaration",id:e,ts:r})},yn=function(e,r,t,i){return null},hn=function(e,r,t,i,a){return D({type:"FunctionDeclaration",id:r,attrs:e,returnType:i,params:U(t),body:a})},mn=function(e,r){let t=D({type:"TypeSpecPart",name:e});return r&&(Array.isArray(r)?t.generics=r:t.callspec=r),t},xn=function(e){return D({...e})},bn=function(e,r){return D({type:"ObjectExpression",properties:[e,...r]})},Sn=function(e,r){return D({type:"TypeSpecPart",name:e,body:r})},Tn=function(e,r){return r?D({...e,nullable:!0}):e},wn=function(e,r){return D({type:"TypeSpecPart",name:e,callspec:r})},Nn=function(e,r){return[e,...r]},Pn=function(e,r){return D({type:"MethodDefinition",kind:"method",key:"",params:e||[],returnType:r})},kn=function(){return D({type:"TypeSpecList",ts:[D({type:"TypeSpecPart",name:"Void"})]})},Ln=function(e){return D({type:"TypeSpecPart",name:"Null"})},In=function(e,r){return r==null?r=[]:Array.isArray(r)||(r=[r]),D({type:"TypeSpecList",ts:[e,...r]})},On=function(e){return D({type:"UnaryExpression",argument:e,prefix:!0,operator:" as"})},Mn=function(e,r){return r?D({type:"BinaryExpression",operator:"as",left:e,right:r}):e},Un=function(e,r){return[e,...r]},jn=function(e){return D({type:"BlockStatement",body:U(e)})},zn=function(e){return D({type:"Program",body:U(e)})},Rn=function(e,r){return[e,...r]},Vn=function(e){return D({type:"BlockStatement",body:U(e)})},qn=function(e,r){return[e,...r]},Wn=function(e,r){return[e,...r]},Kn=function(e){return UA(U(e))},_n=function(e,r){return[e,...r]},Hn=function(e,r){return D({type:"ModuleDeclaration",body:r,id:e})},Zn=function(e){return D({type:"BlockStatement",body:U(e)})},Gn=function(e,r){return[e,...r]},Jn=function(e,r){return D({type:"VariableDeclaration",kind:"const",declarations:[D({type:"VariableDeclarator",kind:"const",id:e,init:r.value})]})},Yn=function(e){return!/[fdl]$/i.test(e)},Xn=function(e){let r=parseFloat(e)/100;return{value:{type:"Literal",value:r,raw:r.toString()},type:"Float"}},Qn=function(e){return{value:D({type:"Literal",value:parseInt(e,16),raw:"0x"+e}),type:"Number"}},el=function(e){return{value:e,type:"Symbol"}},ul=function(e){return{value:D({type:"UnaryExpression",prefix:!0,operator:":",argument:e.type==="Identifier"?e:e.property}),type:"Symbol"}},sl=function(e){return{value:e,type:"Number"}},rl=function(e){return{value:e,type:"String"}},il=function(e){return{value:e,type:"Boolean"}},tl=function(e){return{value:{type:"Literal",value:e.name,raw:JSON.stringify(e.name)}}},fl=function(e){return{value:e}},s=0,p=0,Ze=[{line:1,column:1}],ie=0,Pu=[],l=0,Ge;if("startRule"in g){if(!(g.startRule in y))throw new Error(`Can't start parsing from rule "`+g.startRule+'".');v=y[g.startRule]}function Y(){return n.substring(p,s)}function D2(){return p}function d2(){return{source:F,start:p,end:s}}function sr(){return Pe(p,s)}function v2(e,r){throw r=r!==void 0?r:Pe(p,s),ir([ge(e)],n.substring(p,s),r)}function $2(e,r){throw r=r!==void 0?r:Pe(p,s),ll(e,r)}function C(e,r){return{type:"literal",text:e,ignoreCase:r}}function P(e,r,t){return{type:"class",parts:e,inverted:r,ignoreCase:t}}function al(){return{type:"any"}}function nl(){return{type:"end"}}function ge(e){return{type:"other",description:e}}function rr(e){var r=Ze[e],t;if(r)return r;for(t=e-1;!Ze[t];)t--;for(r=Ze[t],r={line:r.line,column:r.column};t<e;)n.charCodeAt(t)===10?(r.line++,r.column=1):r.column++,t++;return Ze[e]=r,r}function Pe(e,r,t){var i=rr(e),a=rr(r),f={source:F,start:{offset:e,line:i.line,column:i.column},end:{offset:r,line:a.line,column:a.column}};return t&&F&&typeof F.offset=="function"&&(f.start=F.offset(f.start),f.end=F.offset(f.end)),f}function A(e){s<ie||(s>ie&&(ie=s,Pu=[]),Pu.push(e))}function ll(e,r){return new $e(e,null,null,r)}function ir(e,r,t){return new $e($e.buildMessage(e,r),e,r,t)}function tr(){var e,r,t,i;return e=s,r=c(),t=SA(),i=c(),p=e,e=gf(t),e}function Al(){var e,r,t,i;return e=s,r=c(),t=kA(),i=c(),p=e,e=Df(t),e}function De(){var e;return n.length>s?(e=n.charAt(s),s++):(e=u,l===0&&A(Qi)),e}function fr(){var e,r,t,i;return l++,n.charCodeAt(s)===9?(e=I,s++):(e=u,l===0&&A(u1)),e===u&&(n.charCodeAt(s)===11?(e=H,s++):(e=u,l===0&&A(s1)),e===u&&(n.charCodeAt(s)===12?(e=b,s++):(e=u,l===0&&A(r1)),e===u&&(n.charCodeAt(s)===32?(e=x,s++):(e=u,l===0&&A(i1)),e===u&&(n.charCodeAt(s)===160?(e=O,s++):(e=u,l===0&&A(t1)),e===u&&(n.charCodeAt(s)===65279?(e=me,s++):(e=u,l===0&&A(f1)),e===u&&(e=Ml(),e===u&&(e=s,n.charCodeAt(s)===92?(r=ae,s++):(r=u,l===0&&A(ne)),r!==u?(ki.test(n.charAt(s))?(t=n.charAt(s),s++):(t=u,l===0&&A(a1)),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,n.charCodeAt(s)===92?(r=ae,s++):(r=u,l===0&&A(ne)),r!==u?(t=s,l++,i=Je(),l--,i!==u?(s=t,t=void 0):t=u,t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u))))))))),l--,e===u&&(r=u,l===0&&A(e1)),e}function ke(){var e;return Li.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(n1)),e}function Je(){var e,r;return l++,n.charCodeAt(s)===10?(e=oi,s++):(e=u,l===0&&A(A1)),e===u&&(n.substr(s,2)===ys?(e=ys,s+=2):(e=u,l===0&&A(o1)),e===u&&(n.charCodeAt(s)===13?(e=ci,s++):(e=u,l===0&&A(c1)),e===u&&(n.charCodeAt(s)===8232?(e=Ei,s++):(e=u,l===0&&A(E1)),e===u&&(n.charCodeAt(s)===8233?(e=pi,s++):(e=u,l===0&&A(p1)))))),l--,e===u&&(r=u,l===0&&A(l1)),e}function ar(){var e,r;return l++,e=s,r=ol(),r===u&&(r=cl()),r!==u?e=n.substring(e,s):e=r,l--,e===u&&(r=u,l===0&&A(C1)),e}function ol(){var e,r,t,i,a,f,o;if(e=s,n.substr(s,2)===hs?(r=hs,s+=2):(r=u,l===0&&A(F1)),r!==u){for(t=s,i=[],a=s,f=s,l++,n.substr(s,2)===xe?(o=xe,s+=2):(o=u,l===0&&A($u)),l--,o===u?f=void 0:(s=f,f=u),f!==u?(o=De(),o!==u?(f=[f,o],a=f):(s=a,a=u)):(s=a,a=u);a!==u;)i.push(a),a=s,f=s,l++,n.substr(s,2)===xe?(o=xe,s+=2):(o=u,l===0&&A($u)),l--,o===u?f=void 0:(s=f,f=u),f!==u?(o=De(),o!==u?(f=[f,o],a=f):(s=a,a=u)):(s=a,a=u);t=n.substring(t,s),n.substr(s,2)===xe?(i=xe,s+=2):(i=u,l===0&&A($u)),i!==u?(p=e,e=df(t)):(s=e,e=u)}else s=e,e=u;return e}function cl(){var e,r,t,i,a,f,o;if(e=s,n.substr(s,2)===ms?(r=ms,s+=2):(r=u,l===0&&A(B1)),r!==u){for(t=s,i=[],a=s,f=s,l++,o=ke(),l--,o===u?f=void 0:(s=f,f=u),f!==u?(o=De(),o!==u?(f=[f,o],a=f):(s=a,a=u)):(s=a,a=u);a!==u;)i.push(a),a=s,f=s,l++,o=ke(),l--,o===u?f=void 0:(s=f,f=u),f!==u?(o=De(),o!==u?(f=[f,o],a=f):(s=a,a=u)):(s=a,a=u);t=n.substring(t,s),p=e,e=vf(t)}else s=e,e=u;return e}function L(){var e,r,t;return e=s,r=s,l++,t=Cl(),l--,t===u?r=void 0:(s=r,r=u),r!==u?(t=ce(),t!==u?(p=e,e=$f(t)):(s=e,e=u)):(s=e,e=u),e}function ce(){var e,r,t,i,a;if(l++,e=s,n.charCodeAt(s)===64?(r=Eu,s++):(r=u,l===0&&A(yu)),r===u&&(r=null),t=Le(),t!==u){for(i=[],a=h();a!==u;)i.push(a),a=h();p=e,e=yf(t,i)}else s=e,e=u;return l--,e===u&&(r=u,l===0&&A(g1)),e}function Le(){var e,r,t;return e=El(),e===u&&(n.charCodeAt(s)===36?(e=Ci,s++):(e=u,l===0&&A(D1)),e===u&&(n.charCodeAt(s)===95?(e=Fi,s++):(e=u,l===0&&A(d1)),e===u&&(e=s,n.charCodeAt(s)===92?(r=ae,s++):(r=u,l===0&&A(ne)),r!==u?(t=$r(),t!==u?(p=e,e=hf(t)):(s=e,e=u)):(s=e,e=u)))),e}function h(){var e;return e=Le(),e===u&&(e=pl(),e===u&&(e=Ll(),e===u&&(e=Ol(),e===u&&(n.charCodeAt(s)===8204?(e=Bi,s++):(e=u,l===0&&A(v1)),e===u&&(n.charCodeAt(s)===8205?(e=gi,s++):(e=u,l===0&&A($1))))))),e}function El(){var e;return e=Nl(),e===u&&(e=bl(),e===u&&(e=wl(),e===u&&(e=Sl(),e===u&&(e=Tl(),e===u&&(e=Il()))))),e}function pl(){var e;return e=kl(),e===u&&(e=Pl()),e}function Cl(){var e;return e=Fl(),e===u&&(e=lr(),e===u&&(e=Ar(),e===u&&(e=ku()))),e}function Fl(){var e;return e=yr(),e===u&&(e=de(),e===u&&(e=Ye(),e===u&&(e=Iu(),e===u&&(e=hr(),e===u&&(e=Ou(),e===u&&(e=Mu(),e===u&&(e=Xe(),e===u&&(e=Uu(),e===u&&(e=ju(),e===u&&(e=mr(),e===u&&(e=zu(),e===u&&(e=xr(),e===u&&(e=br(),e===u&&(e=Ru(),e===u&&(e=Qe(),e===u&&(e=eu(),e===u&&(e=Vu(),e===u&&(e=Ie(),e===u&&(e=Sr(),e===u&&(e=Tr(),e===u&&(e=Rl(),e===u&&(e=qu(),e===u&&(e=uu(),e===u&&(e=Wu(),e===u&&(e=wr(),e===u&&(e=Ku(),e===u&&(e=_u(),e===u&&(e=Hu(),e===u&&(e=Zu(),e===u&&(e=su(),e===u&&(e=ru()))))))))))))))))))))))))))))))),e}function nr(){var e;return e=lr(),e===u&&(e=Ar(),e===u&&(e=ku(),e===u&&(e=Bl(),e===u&&(e=Br())))),e}function lr(){var e,r;return e=s,r=ql(),r!==u&&(p=e,r=mf()),e=r,e}function Ar(){var e,r;return e=s,r=Vl(),r!==u&&(p=e,r=xf()),e=r,e}function ku(){var e,r;return e=s,r=Wl(),r!==u&&(p=e,r=bf()),e=r,e===u&&(e=s,r=Ul(),r!==u&&(p=e,r=Sf()),e=r),e}function Bl(){var e,r,t,i;return l++,e=s,r=Cr(),r!==u?(t=s,l++,i=Le(),i===u&&(i=K()),l--,i===u?t=void 0:(s=t,t=u),t!==u?e=r:(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=cr(),r!==u?(t=s,l++,i=Le(),i===u&&(i=K()),l--,i===u?t=void 0:(s=t,t=u),t!==u?e=r:(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=Fr(),r!==u?(t=s,l++,i=Le(),i===u&&(i=K()),l--,i===u?t=void 0:(s=t,t=u),t!==u?e=r:(s=e,e=u)):(s=e,e=u))),l--,e===u&&(r=u,l===0&&A(y1)),e}function or(){var e;return n.substr(s,1).toLowerCase()===xs?(e=n.charAt(s),s++):(e=u,l===0&&A(h1)),e===u&&(n.substr(s,1).toLowerCase()===Di?(e=n.charAt(s),s++):(e=u,l===0&&A(m1))),e}function cr(){var e,r,t,i,a,f,o,E,B,d;if(e=s,r=s,t=s,i=Er(),i!==u){if(n.substr(s,1).toLowerCase()===pu?(a=n.charAt(s),s++):(a=u,l===0&&A(hu)),a===u){if(a=s,f=s,o=s,n.charCodeAt(s)===46?(E=Ae,s++):(E=u,l===0&&A(oe)),E!==u){if(B=[],d=K(),d!==u)for(;d!==u;)B.push(d),d=K();else B=u;B!==u?(E=[E,B],o=E):(s=o,o=u)}else s=o,o=u;o===u&&(o=null),E=pr(),E===u&&(E=null),o=[o,E],f=o,o=or(),o===u&&(o=null),f=[f,o],a=f}a===u&&(a=null),i=[i,a],t=i}else s=t,t=u;if(t!==u?r=n.substring(r,s):r=t,r!==u&&(p=e,r=Tf(r)),e=r,e===u){if(e=s,r=s,t=s,n.charCodeAt(s)===46?(i=Ae,s++):(i=u,l===0&&A(oe)),i!==u){if(a=[],f=K(),f!==u)for(;f!==u;)a.push(f),f=K();else a=u;a!==u?(f=pr(),f===u&&(f=null),i=[i,a,f],t=i):(s=t,t=u)}else s=t,t=u;t!==u?r=n.substring(r,s):r=t,r!==u?(t=or(),t===u&&(t=null),p=e,e=wf(r,t)):(s=e,e=u)}return e}function Er(){var e,r,t,i,a;if(e=s,r=s,n.charCodeAt(s)===48?(t=Cu,s++):(t=u,l===0&&A(mu)),t!==u?(i=s,l++,a=Lu(),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r===u)if(r=s,t=Dl(),t!==u){for(i=[],a=K();a!==u;)i.push(a),a=K();t=[t,i],r=t}else s=r,r=u;return r!==u?e=n.substring(e,s):e=r,e}function gl(){var e,r;return e=s,r=Er(),r!==u&&(p=e,r=Nf(r)),e=r,e}function K(){var e;return Ii.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(x1)),e}function Dl(){var e;return Oi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(b1)),e}function pr(){var e,r,t;return e=s,r=dl(),r!==u?(t=vl(),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function dl(){var e;return n.substr(s,1).toLowerCase()===di?(e=n.charAt(s),s++):(e=u,l===0&&A(S1)),e}function vl(){var e,r,t,i;if(e=s,Mi.test(n.charAt(s))?(r=n.charAt(s),s++):(r=u,l===0&&A(T1)),r===u&&(r=null),t=[],i=K(),i!==u)for(;i!==u;)t.push(i),i=K();else t=u;return t!==u?(r=[r,t],e=r):(s=e,e=u),e}function Cr(){var e,r,t,i,a,f;if(e=s,r=s,t=s,n.substr(s,2).toLowerCase()===vi?(i=n.substr(s,2),s+=2):(i=u,l===0&&A(w1)),i!==u){if(a=[],f=te(),f!==u)for(;f!==u;)a.push(f),f=te();else a=u;a!==u?(n.substr(s,1).toLowerCase()===pu?(f=n.charAt(s),s++):(f=u,l===0&&A(hu)),f===u&&(f=null),i=[i,a,f],t=i):(s=t,t=u)}else s=t,t=u;return t!==u?r=n.substring(r,s):r=t,r!==u&&(p=e,r=Pf(r)),e=r,e}function te(){var e;return Ui.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(N1)),e}function Fr(){var e,r,t,i,a,f;if(e=s,r=s,t=s,n.charCodeAt(s)===48?(i=Cu,s++):(i=u,l===0&&A(mu)),i!==u){for(a=[],f=Lu();f!==u;)a.push(f),f=Lu();n.substr(s,1).toLowerCase()===pu?(f=n.charAt(s),s++):(f=u,l===0&&A(hu)),f===u&&(f=null),i=[i,a,f],t=i}else s=t,t=u;return t!==u?r=n.substring(r,s):r=t,r!==u&&(p=e,r=kf(r)),e=r,e}function Lu(){var e;return ji.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(P1)),e}function Br(){var e,r,t,i;if(l++,e=s,n.charCodeAt(s)===34?(r=qe,s++):(r=u,l===0&&A(_e)),r!==u){for(t=[],i=gr();i!==u;)t.push(i),i=gr();n.charCodeAt(s)===34?(i=qe,s++):(i=u,l===0&&A(_e)),i!==u?(p=e,e=Lf(t)):(s=e,e=u)}else s=e,e=u;return e===u&&(e=s,n.charCodeAt(s)===39?(r=We,s++):(r=u,l===0&&A(He)),r!==u?(t=$l(),t!==u?(n.charCodeAt(s)===39?(i=We,s++):(i=u,l===0&&A(He)),i!==u?(p=e,e=If(t)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)),l--,e===u&&(r=u,l===0&&A(k1)),e}function gr(){var e,r,t;return e=s,r=s,l++,n.charCodeAt(s)===34?(t=qe,s++):(t=u,l===0&&A(_e)),t===u&&(n.charCodeAt(s)===92?(t=ae,s++):(t=u,l===0&&A(ne)),t===u&&(t=ke())),l--,t===u?r=void 0:(s=r,r=u),r!==u?(t=De(),t!==u?(p=e,e=Of()):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,n.charCodeAt(s)===92?(r=ae,s++):(r=u,l===0&&A(ne)),r!==u?(t=dr(),t!==u?(p=e,e=Mf(t)):(s=e,e=u)):(s=e,e=u),e===u&&(e=Dr())),e}function $l(){var e,r,t;return e=s,r=s,l++,n.charCodeAt(s)===39?(t=We,s++):(t=u,l===0&&A(He)),t===u&&(n.charCodeAt(s)===92?(t=ae,s++):(t=u,l===0&&A(ne)),t===u&&(t=ke())),l--,t===u?r=void 0:(s=r,r=u),r!==u?(t=De(),t!==u?(p=e,e=Uf()):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,n.charCodeAt(s)===92?(r=ae,s++):(r=u,l===0&&A(ne)),r!==u?(t=dr(),t!==u?(p=e,e=jf(t)):(s=e,e=u)):(s=e,e=u),e===u&&(e=Dr())),e}function Dr(){var e,r,t;return e=s,n.charCodeAt(s)===92?(r=ae,s++):(r=u,l===0&&A(ne)),r!==u?(t=Je(),t!==u?(p=e,e=zf()):(s=e,e=u)):(s=e,e=u),e}function dr(){var e,r,t,i;return e=yl(),e===u&&(e=s,n.charCodeAt(s)===48?(r=Cu,s++):(r=u,l===0&&A(mu)),r!==u?(t=s,l++,i=K(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(p=e,e=Rf()):(s=e,e=u)):(s=e,e=u),e===u&&(e=xl(),e===u&&(e=$r()))),e}function yl(){var e;return e=vr(),e===u&&(e=hl()),e}function vr(){var e,r;return n.charCodeAt(s)===39?(e=We,s++):(e=u,l===0&&A(He)),e===u&&(n.charCodeAt(s)===34?(e=qe,s++):(e=u,l===0&&A(_e)),e===u&&(n.charCodeAt(s)===92?(e=ae,s++):(e=u,l===0&&A(ne)),e===u&&(e=s,n.charCodeAt(s)===98?(r=Fu,s++):(r=u,l===0&&A(xu)),r!==u&&(p=e,r=Vf()),e=r,e===u&&(e=s,n.charCodeAt(s)===102?(r=xs,s++):(r=u,l===0&&A(L1)),r!==u&&(p=e,r=qf()),e=r,e===u&&(e=s,n.charCodeAt(s)===110?(r=$i,s++):(r=u,l===0&&A(I1)),r!==u&&(p=e,r=Wf()),e=r,e===u&&(e=s,n.charCodeAt(s)===114?(r=yi,s++):(r=u,l===0&&A(O1)),r!==u&&(p=e,r=Kf()),e=r,e===u&&(e=s,n.charCodeAt(s)===116?(r=hi,s++):(r=u,l===0&&A(M1)),r!==u&&(p=e,r=_f()),e=r,e===u&&(e=s,n.charCodeAt(s)===118?(r=mi,s++):(r=u,l===0&&A(U1)),r!==u&&(p=e,r=Hf()),e=r)))))))),e}function hl(){var e,r,t;return e=s,r=s,l++,t=ml(),t===u&&(t=ke()),l--,t===u?r=void 0:(s=r,r=u),r!==u?(t=De(),t!==u?(p=e,e=Zf()):(s=e,e=u)):(s=e,e=u),e}function ml(){var e;return e=vr(),e===u&&(e=K(),e===u&&(n.charCodeAt(s)===120?(e=bs,s++):(e=u,l===0&&A(W0)),e===u&&(n.charCodeAt(s)===117?(e=Ss,s++):(e=u,l===0&&A(K0))))),e}function xl(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===120?(r=bs,s++):(r=u,l===0&&A(W0)),r!==u?(t=s,i=s,a=te(),a!==u?(f=te(),f!==u?(a=[a,f],i=a):(s=i,i=u)):(s=i,i=u),i!==u?t=n.substring(t,s):t=i,t!==u?(p=e,e=Gf(t)):(s=e,e=u)):(s=e,e=u),e}function $r(){var e,r,t,i,a,f,o,E;return e=s,n.charCodeAt(s)===117?(r=Ss,s++):(r=u,l===0&&A(K0)),r!==u?(t=s,i=s,a=te(),a!==u?(f=te(),f!==u?(o=te(),o!==u?(E=te(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u)):(s=i,i=u)):(s=i,i=u),i!==u?t=n.substring(t,s):t=i,t!==u?(p=e,e=Jf(t)):(s=e,e=u)):(s=e,e=u),e}function bl(){var e;return zi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(j1)),e}function Sl(){var e;return Ri.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(z1)),e}function Tl(){var e;return Vi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(R1)),e}function wl(){var e;return qi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(V1)),e}function Nl(){var e;return Wi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(q1)),e}function Pl(){var e;return Ki.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(W1)),e}function kl(){var e;return _i.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(K1)),e}function Ll(){var e;return Hi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(_1)),e}function Il(){var e;return Zi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(H1)),e}function Ol(){var e;return Gi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(Z1)),e}function Ml(){var e;return Ji.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(G1)),e}function yr(){var e,r,t,i;return e=s,n.substr(s,3)===Ts?(r=Ts,s+=3):(r=u,l===0&&A(J1)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function de(){var e,r,t,i;return e=s,n.substr(s,2)===ws?(r=ws,s+=2):(r=u,l===0&&A(Y1)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Ye(){var e,r,t,i;return e=s,n.substr(s,5)===Ns?(r=Ns,s+=5):(r=u,l===0&&A(X1)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Iu(){var e,r,t,i;return e=s,n.substr(s,4)===Ps?(r=Ps,s+=4):(r=u,l===0&&A(Q1)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function hr(){var e,r,t,i;return e=s,n.substr(s,5)===ks?(r=ks,s+=5):(r=u,l===0&&A(et)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Ou(){var e,r,t,i;return e=s,n.substr(s,5)===Ls?(r=Ls,s+=5):(r=u,l===0&&A(ut)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Mu(){var e,r,t,i;return e=s,n.substr(s,5)===Is?(r=Is,s+=5):(r=u,l===0&&A(st)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Xe(){var e,r,t,i;return e=s,n.substr(s,8)===Os?(r=Os,s+=8):(r=u,l===0&&A(rt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Uu(){var e,r,t,i;return e=s,n.substr(s,7)===Ms?(r=Ms,s+=7):(r=u,l===0&&A(it)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function ju(){var e,r,t,i;return e=s,n.substr(s,2)===Us?(r=Us,s+=2):(r=u,l===0&&A(tt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function mr(){var e,r,t,i;return e=s,n.substr(s,4)===js?(r=js,s+=4):(r=u,l===0&&A(ft)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function zu(){var e,r,t,i;return e=s,n.substr(s,4)===zs?(r=zs,s+=4):(r=u,l===0&&A(at)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function xr(){var e,r,t,i;return e=s,n.substr(s,7)===Rs?(r=Rs,s+=7):(r=u,l===0&&A(nt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Ul(){var e,r,t,i;return e=s,n.substr(s,5)===Vs?(r=Vs,s+=5):(r=u,l===0&&A(lt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function br(){var e,r,t,i;return e=s,n.substr(s,7)===qs?(r=qs,s+=7):(r=u,l===0&&A(At)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Ru(){var e,r,t,i;return e=s,n.substr(s,3)===Ws?(r=Ws,s+=3):(r=u,l===0&&A(ot)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Qe(){var e,r,t,i;return e=s,n.substr(s,8)===Ks?(r=Ks,s+=8):(r=u,l===0&&A(ct)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function eu(){var e,r,t,i;return e=s,n.substr(s,3)===_s?(r=_s,s+=3):(r=u,l===0&&A(Et)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Vu(){var e,r,t,i;return e=s,n.substr(s,2)===Hs?(r=Hs,s+=2):(r=u,l===0&&A(pt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function jl(){var e,r,t,i;return e=s,n.substr(s,6)===Zs?(r=Zs,s+=6):(r=u,l===0&&A(Ct)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Ie(){var e,r,t,i;return e=s,n.substr(s,10)===Gs?(r=Gs,s+=10):(r=u,l===0&&A(Ft)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Sr(){var e,r,t,i;return e=s,n.substr(s,9)===Js?(r=Js,s+=9):(r=u,l===0&&A(Bt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Tr(){var e,r,t,i;return e=s,n.substr(s,2)===Ys?(r=Ys,s+=2):(r=u,l===0&&A(gt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function zl(){var e,r,t,i;return e=s,n.substr(s,6)===Xs?(r=Xs,s+=6):(r=u,l===0&&A(Dt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Rl(){var e,r,t,i;return e=s,n.substr(s,6)===Qs?(r=Qs,s+=6):(r=u,l===0&&A(dt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Vl(){var e,r,t,i;return e=s,n.substr(s,3)===e0?(r=e0,s+=3):(r=u,l===0&&A(vt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function qu(){var e,r,t,i;return e=s,n.substr(s,3)===u0?(r=u0,s+=3):(r=u,l===0&&A($t)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function ql(){var e,r,t,i;return e=s,n.substr(s,4)===s0?(r=s0,s+=4):(r=u,l===0&&A(yt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function uu(){var e,r,t,i;return e=s,n.substr(s,2)===r0?(r=r0,s+=2):(r=u,l===0&&A(ht)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Wu(){var e,r,t,i;return e=s,n.substr(s,6)===i0?(r=i0,s+=6):(r=u,l===0&&A(mt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function wr(){var e,r,t,i;return e=s,n.substr(s,4)===t0?(r=t0,s+=4):(r=u,l===0&&A(xt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function y2(){var e,r,t,i;return e=s,n.substr(s,6)===Ke?(r=Ke,s+=6):(r=u,l===0&&A(_0)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function h2(){var e,r,t,i;return e=s,n.substr(s,5)===f0?(r=f0,s+=5):(r=u,l===0&&A(bt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Ku(){var e,r,t,i;return e=s,n.substr(s,6)===a0?(r=a0,s+=6):(r=u,l===0&&A(St)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function _u(){var e,r,t,i;return e=s,n.substr(s,5)===n0?(r=n0,s+=5):(r=u,l===0&&A(Tt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Wl(){var e,r,t,i;return e=s,n.substr(s,4)===l0?(r=l0,s+=4):(r=u,l===0&&A(wt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Hu(){var e,r,t,i;return e=s,n.substr(s,3)===A0?(r=A0,s+=3):(r=u,l===0&&A(Nt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Zu(){var e,r,t,i;return e=s,n.substr(s,7)===o0?(r=o0,s+=7):(r=u,l===0&&A(Pt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Kl(){var e,r,t,i;return e=s,n.substr(s,5)===c0?(r=c0,s+=5):(r=u,l===0&&A(kt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function su(){var e,r,t,i;return e=s,n.substr(s,3)===E0?(r=E0,s+=3):(r=u,l===0&&A(Lt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function ru(){var e,r,t,i;return e=s,n.substr(s,5)===p0?(r=p0,s+=5):(r=u,l===0&&A(It)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function c(){var e,r;for(e=[],r=fr(),r===u&&(r=Je(),r===u&&(r=ar()));r!==u;)e.push(r),r=fr(),r===u&&(r=Je(),r===u&&(r=ar()));return e}function _l(){var e;return e=Ye(),e===u&&(e=Iu(),e===u&&(e=Ou(),e===u&&(e=Mu(),e===u&&(e=Xe(),e===u&&(e=Uu(),e===u&&(e=ju(),e===u&&(e=zu(),e===u&&(e=Ru(),e===u&&(e=Qe(),e===u&&(e=Vu(),e===u&&(e=Wu(),e===u&&(e=Ku(),e===u&&(e=_u(),e===u&&(e=Hu(),e===u&&(e=Zu(),e===u&&(e=su(),e===u&&(e=ru()))))))))))))))))),e}function _(){var e,r,t,i;return e=s,r=c(),n.charCodeAt(s)===59?(t=X,s++):(t=u,l===0&&A(ue)),t===u&&(t=s,l++,n.charCodeAt(s)===125?(i=Q,s++):(i=u,l===0&&A(se)),i===u&&(i=_l()),l--,i!==u?(s=t,t=void 0):t=u),t!==u?(r=[r,t],e=r):(s=e,e=u),e}function Gu(){var e,r,t,i,a,f;return e=s,r=s,t=wr(),t===u&&(t=Tr()),t!==u?r=n.substring(r,s):r=t,r!==u&&(p=e,r=Yf(r)),e=r,e===u&&(e=L(),e===u&&(e=fu(),e===u&&(e=nr(),e===u&&(e=Hl(),e===u&&(e=Nr(),e===u&&(e=s,n.charCodeAt(s)===40?(r=j,s++):(r=u,l===0&&A(R)),r!==u?(t=c(),i=m(),i!==u?(a=c(),n.charCodeAt(s)===41?(f=q,s++):(f=u,l===0&&A(W)),f!==u?e=i:(s=e,e=u)):(s=e,e=u)):(s=e,e=u))))))),e}function Hl(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===91?(r=pe,s++):(r=u,l===0&&A(Fe)),r!==u?(t=c(),i=s,a=Zl(),a!==u?(f=c(),i=a):(s=i,i=u),i===u&&(i=null),n.charCodeAt(s)===93?(a=Ce,s++):(a=u,l===0&&A(Be)),a!==u?(n.charCodeAt(s)===98?(f=Fu,s++):(f=u,l===0&&A(xu)),f===u&&(f=null),p=e,e=Xf(i,f)):(s=e,e=u)):(s=e,e=u),e}function Zl(){var e,r,t,i,a,f,o,E;if(e=s,r=m(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=m(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=m(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(a=[a,f],i=a):(s=i,i=u),i===u&&(i=null),p=e,e=Qf(r,t)}else s=e,e=u;return e}function Nr(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u?(t=c(),i=s,a=Gl(),a!==u?(f=c(),i=a):(s=i,i=u),i===u&&(i=null),n.charCodeAt(s)===125?(a=Q,s++):(a=u,l===0&&A(se)),a!==u?(p=e,e=ea(i)):(s=e,e=u)):(s=e,e=u),e}function Gl(){var e,r,t,i,a,f,o,E;if(e=s,r=Ju(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=Ju(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=Ju(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(a=[a,f],i=a):(s=i,i=u),i===u&&(i=null),p=e,e=ua(r,t)}else s=e,e=u;return e}function Ju(){var e,r,t,i,a,f;return e=s,r=m(),r!==u?(t=c(),n.substr(s,2)===C0?(i=C0,s+=2):(i=u,l===0&&A(Ot)),i!==u?(a=c(),f=m(),f!==u?(p=e,e=sa(r,f)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function m2(){var e,r;return e=s,r=L(),r!==u&&(p=e,r=ra(r)),e=r,e}function Pr(){var e,r,t,i,a,f,o,E,B,d,$,k,S,M,Z;if(e=s,r=Gu(),r===u&&(r=s,t=qu(),t!==u?(i=s,a=c(),f=Me(),f!==u?i=f:(s=i,i=u),i===u&&(i=null),a=c(),n.charCodeAt(s)===91?(f=pe,s++):(f=u,l===0&&A(Fe)),f!==u?(o=c(),E=m(),E!==u?(B=c(),n.charCodeAt(s)===93?(d=Ce,s++):(d=u,l===0&&A(Be)),d!==u?(n.charCodeAt(s)===98?($=Fu,s++):($=u,l===0&&A(xu)),$===u&&($=null),k=s,l++,S=s,M=c(),n.charCodeAt(s)===40?(Z=j,s++):(Z=u,l===0&&A(R)),Z!==u?(M=[M,Z],S=M):(s=S,S=u),l--,S===u?k=void 0:(s=k,k=u),k!==u?(p=r,r=ia(i,E,$)):(s=r,r=u)):(s=r,r=u)):(s=r,r=u)):(s=r,r=u)):(s=r,r=u),r===u&&(r=s,t=qu(),t!==u?(i=c(),a=Pr(),a!==u?(f=c(),o=Xu(),o!==u?(p=r,r=ta(a,o)):(s=r,r=u)):(s=r,r=u)):(s=r,r=u))),r!==u){for(t=[],i=s,a=c(),f=s,n.charCodeAt(s)===91?(o=pe,s++):(o=u,l===0&&A(Fe)),o!==u?(E=c(),B=m(),B!==u?(d=c(),n.charCodeAt(s)===93?($=Ce,s++):($=u,l===0&&A(Be)),$!==u?(p=f,f=J0(r,B)):(s=f,f=u)):(s=f,f=u)):(s=f,f=u),f===u&&(f=s,n.charCodeAt(s)===46?(o=Ae,s++):(o=u,l===0&&A(oe)),o!==u?(E=c(),B=ce(),B!==u?(p=f,f=Y0(r,B)):(s=f,f=u)):(s=f,f=u)),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=s,n.charCodeAt(s)===91?(o=pe,s++):(o=u,l===0&&A(Fe)),o!==u?(E=c(),B=m(),B!==u?(d=c(),n.charCodeAt(s)===93?($=Ce,s++):($=u,l===0&&A(Be)),$!==u?(p=f,f=J0(r,B)):(s=f,f=u)):(s=f,f=u)):(s=f,f=u),f===u&&(f=s,n.charCodeAt(s)===46?(o=Ae,s++):(o=u,l===0&&A(oe)),o!==u?(E=c(),B=ce(),B!==u?(p=f,f=Y0(r,B)):(s=f,f=u)):(s=f,f=u)),f!==u?i=f:(s=i,i=u);p=e,e=fa(r,t)}else s=e,e=u;return e}function Yu(){var e,r,t,i,a,f,o,E,B,d,$;if(e=s,r=Pr(),r!==u){for(t=[],i=s,a=c(),f=s,o=Xu(),o!==u&&(p=f,o=X0(r,o)),f=o,f===u&&(f=s,n.charCodeAt(s)===91?(o=pe,s++):(o=u,l===0&&A(Fe)),o!==u?(E=c(),B=m(),B!==u?(d=c(),n.charCodeAt(s)===93?($=Ce,s++):($=u,l===0&&A(Be)),$!==u?(p=f,f=Q0(r,B)):(s=f,f=u)):(s=f,f=u)):(s=f,f=u),f===u&&(f=s,n.charCodeAt(s)===46?(o=Ae,s++):(o=u,l===0&&A(oe)),o!==u?(E=c(),B=ce(),B!==u?(p=f,f=er(r,B)):(s=f,f=u)):(s=f,f=u))),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=s,o=Xu(),o!==u&&(p=f,o=X0(r,o)),f=o,f===u&&(f=s,n.charCodeAt(s)===91?(o=pe,s++):(o=u,l===0&&A(Fe)),o!==u?(E=c(),B=m(),B!==u?(d=c(),n.charCodeAt(s)===93?($=Ce,s++):($=u,l===0&&A(Be)),$!==u?(p=f,f=Q0(r,B)):(s=f,f=u)):(s=f,f=u)):(s=f,f=u),f===u&&(f=s,n.charCodeAt(s)===46?(o=Ae,s++):(o=u,l===0&&A(oe)),o!==u?(E=c(),B=ce(),B!==u?(p=f,f=er(r,B)):(s=f,f=u)):(s=f,f=u))),f!==u?i=f:(s=i,i=u);p=e,e=aa(r,t)}else s=e,e=u;return e}function Xu(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===40?(r=j,s++):(r=u,l===0&&A(R)),r!==u?(t=c(),i=s,a=Jl(),a!==u?(f=c(),i=a):(s=i,i=u),i===u&&(i=null),n.charCodeAt(s)===41?(a=q,s++):(a=u,l===0&&A(W)),a!==u?(p=e,e=na(i)):(s=e,e=u)):(s=e,e=u),e}function Jl(){var e,r,t,i,a,f,o,E;if(e=s,r=m(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=m(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=m(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(a=[a,f],i=a):(s=i,i=u),i===u&&(i=null),p=e,e=la(r,t)}else s=e,e=u;return e}function kr(){var e,r,t,i;return e=Yu(),e===u&&(e=s,r=Yl(),r!==u?(t=c(),i=kr(),i!==u?(p=e,e=Aa(r,i)):(s=e,e=u)):(s=e,e=u)),e}function Yl(){var e,r,t,i,a;return e=s,r=s,n.charCodeAt(s)===43?(t=F0,s++):(t=u,l===0&&A(H0)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===45?(t=B0,s++):(t=u,l===0&&A(Z0)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(n.charCodeAt(s)===126?(e=xi,s++):(e=u,l===0&&A(Mt)),e===u&&(n.charCodeAt(s)===33?(e=bi,s++):(e=u,l===0&&A(Ut))))),e}function Te(){var e,r,t,i,a,f,o,E;if(e=s,r=kr(),r!==u){for(t=[],i=s,a=c(),f=s,o=de(),o!==u?f=n.substring(f,s):f=o,f!==u?(o=c(),E=ve(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=s,o=de(),o!==u?f=n.substring(f,s):f=o,f!==u?(o=c(),E=ve(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=oa(r,t)}else s=e,e=u;return e}function Xl(){var e,r,t,i,a,f,o,E;if(e=s,r=Te(),r!==u){for(t=[],i=s,a=c(),f=Lr(),f!==u?(o=c(),E=Te(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Lr(),f!==u?(o=c(),E=Te(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=ca(r,t)}else s=e,e=u;return e}function Lr(){var e,r,t,i,a;return e=s,r=s,n.charCodeAt(s)===42?(t=Si,s++):(t=u,l===0&&A(jt)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===47?(t=Ti,s++):(t=u,l===0&&A(zt)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===37?(t=g0,s++):(t=u,l===0&&A(G0)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===38?(t=wi,s++):(t=u,l===0&&A(Rt)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.substr(s,2)===D0?(t=D0,s+=2):(t=u,l===0&&A(Vt)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.substr(s,2)===d0?(t=d0,s+=2):(t=u,l===0&&A(qt)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r))))),e}function Qu(){var e,r,t,i,a,f,o,E;if(e=s,r=Xl(),r!==u){for(t=[],i=s,a=c(),f=s,o=Ie(),o!==u?f=n.substring(f,s):f=o,f===u&&(f=s,o=eu(),o!==u?f=n.substring(f,s):f=o),f!==u?(o=c(),E=Te(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=s,o=Ie(),o!==u?f=n.substring(f,s):f=o,f===u&&(f=s,o=eu(),o!==u?f=n.substring(f,s):f=o),f!==u?(o=c(),E=Te(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=Ea(r,t)}else s=e,e=u;return e}function es(){var e,r,t,i,a,f,o,E;if(e=s,r=Qu(),r!==u){for(t=[],i=s,a=c(),f=Ir(),f!==u?(o=c(),E=Qu(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Ir(),f!==u?(o=c(),E=Qu(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=pa(r,t)}else s=e,e=u;return e}function Ir(){var e,r,t,i,a;return e=s,r=s,n.charCodeAt(s)===43?(t=F0,s++):(t=u,l===0&&A(H0)),t!==u?(i=s,l++,Yi.test(n.charAt(s))?(a=n.charAt(s),s++):(a=u,l===0&&A(Wt)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===45?(t=B0,s++):(t=u,l===0&&A(Z0)),t!==u?(i=s,l++,vu.test(n.charAt(s))?(a=n.charAt(s),s++):(a=u,l===0&&A(bu)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===124?(t=Bu,s++):(t=u,l===0&&A(Su)),t!==u?(i=s,l++,vu.test(n.charAt(s))?(a=n.charAt(s),s++):(a=u,l===0&&A(bu)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===94?(t=Ni,s++):(t=u,l===0&&A(Kt)),t!==u?(i=s,l++,vu.test(n.charAt(s))?(a=n.charAt(s),s++):(a=u,l===0&&A(bu)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r))),e}function us(){var e,r,t,i,a,f,o,E;if(e=s,r=es(),r!==u){for(t=[],i=s,a=c(),f=Or(),f!==u?(o=c(),E=es(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Or(),f!==u?(o=c(),E=es(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=Ca(r,t)}else s=e,e=u;return e}function Or(){var e,r,t,i,a;return n.substr(s,2)===v0?(e=v0,s+=2):(e=u,l===0&&A(_t)),e===u&&(n.substr(s,2)===$0?(e=$0,s+=2):(e=u,l===0&&A(Ht)),e===u&&(e=s,r=s,n.charCodeAt(s)===60?(t=gu,s++):(t=u,l===0&&A(Tu)),t!==u?(i=s,l++,n.charCodeAt(s)===60?(a=gu,s++):(a=u,l===0&&A(Tu)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===62?(t=Du,s++):(t=u,l===0&&A(wu)),t!==u?(i=s,l++,n.charCodeAt(s)===62?(a=Du,s++):(a=u,l===0&&A(wu)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(n.substr(s,2)===y0?(e=y0,s+=2):(e=u,l===0&&A(Zt)),e===u&&(n.substr(s,2)===h0?(e=h0,s+=2):(e=u,l===0&&A(Gt)),e===u&&(e=s,r=eu(),r!==u?e=n.substring(e,s):e=r)))))),e}function ss(){var e,r,t,i,a,f,o,E;if(e=s,r=us(),r!==u){for(t=[],i=s,a=c(),f=Mr(),f!==u?(o=c(),E=us(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Mr(),f!==u?(o=c(),E=us(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=Fa(r,t)}else s=e,e=u;return e}function Mr(){var e,r;return n.substr(s,2)===m0?(e=m0,s+=2):(e=u,l===0&&A(Jt)),e===u&&(e=s,r=yr(),r!==u?e=n.substring(e,s):e=r),e}function Ql(){var e,r,t,i,a,f,o,E;if(e=s,r=ss(),r!==u){for(t=[],i=s,a=c(),f=Ur(),f!==u?(o=c(),E=ss(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Ur(),f!==u?(o=c(),E=ss(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=Ba(r,t)}else s=e,e=u;return e}function Ur(){var e,r;return n.substr(s,2)===x0?(e=x0,s+=2):(e=u,l===0&&A(Yt)),e===u&&(e=s,r=uu(),r!==u?e=n.substring(e,s):e=r),e}function m(){var e,r,t,i,a,f;return e=s,r=Ql(),r!==u?(t=s,i=c(),n.charCodeAt(s)===63?(a=du,s++):(a=u,l===0&&A(Nu)),a!==u?(f=jr(),f!==u?t=f:(s=t,t=u)):(s=t,t=u),t===u&&(t=null),p=e,e=ga(r,t)):(s=e,e=u),e}function jr(){var e,r,t,i,a,f,o;return e=s,r=c(),t=m(),t!==u?(i=c(),n.charCodeAt(s)===58?(a=be,s++):(a=u,l===0&&A(Se)),a!==u?(f=c(),o=m(),o!==u?e=[t,o]:(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function eA(){var e,r,t,i,a,f,o;return e=s,r=Yu(),r!==u?(t=c(),i=s,a=uA(),a!==u?(f=c(),o=m(),o!==u?(p=i,i=Da(r,a,o)):(s=i,i=u)):(s=i,i=u),i===u&&(i=s,a=zr(),a!==u&&(p=i,a=da(r,a)),i=a,i===u&&(i=s,a=s,l++,Xi.test(n.charAt(s))?(f=n.charAt(s),s++):(f=u,l===0&&A(Xt)),l--,f!==u?(s=a,a=void 0):a=u,a!==u&&(p=i,a=va(r)),i=a)),i!==u?(p=e,e=$a(r,i)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=zr(),r!==u?(t=c(),i=Yu(),i!==u?(p=e,e=ya(r,i)):(s=e,e=u)):(s=e,e=u)),e}function uA(){var e,r,t,i,a;return e=s,r=s,n.charCodeAt(s)===61?(t=z,s++):(t=u,l===0&&A(V)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(n.substr(s,2)===b0?(e=b0,s+=2):(e=u,l===0&&A(Qt)),e===u&&(n.substr(s,2)===S0?(e=S0,s+=2):(e=u,l===0&&A(ef)),e===u&&(n.substr(s,2)===T0?(e=T0,s+=2):(e=u,l===0&&A(uf)),e===u&&(n.substr(s,2)===w0?(e=w0,s+=2):(e=u,l===0&&A(sf)),e===u&&(n.substr(s,2)===N0?(e=N0,s+=2):(e=u,l===0&&A(rf)),e===u&&(n.substr(s,3)===P0?(e=P0,s+=3):(e=u,l===0&&A(tf)),e===u&&(n.substr(s,3)===k0?(e=k0,s+=3):(e=u,l===0&&A(ff)),e===u&&(n.substr(s,2)===L0?(e=L0,s+=2):(e=u,l===0&&A(af)),e===u&&(n.substr(s,2)===I0?(e=I0,s+=2):(e=u,l===0&&A(nf)),e===u&&(n.substr(s,2)===O0?(e=O0,s+=2):(e=u,l===0&&A(lf)))))))))))),e}function zr(){var e;return n.substr(s,2)===M0?(e=M0,s+=2):(e=u,l===0&&A(Af)),e===u&&(n.substr(s,2)===U0?(e=U0,s+=2):(e=u,l===0&&A(of))),e}function sA(){var e;return e=m(),e}function iu(){var e;return e=eA(),e===u&&(e=m()),e}function Rr(){var e,r,t,i,a,f,o,E;if(e=s,r=iu(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=iu(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=iu(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);p=e,e=ha(r,t)}else s=e,e=u;return e}function fe(){var e;return e=rA(),e===u&&(e=is(),e===u&&(e=tA(),e===u&&(e=fA(),e===u&&(e=aA(),e===u&&(e=nA(),e===u&&(e=lA(),e===u&&(e=AA(),e===u&&(e=CA(),e===u&&(e=oA(),e===u&&(e=FA(),e===u&&(e=BA()))))))))))),e}function tu(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u?(t=c(),i=s,a=rs(),a!==u?(f=c(),i=a):(s=i,i=u),i===u&&(i=null),n.charCodeAt(s)===125?(a=Q,s++):(a=u,l===0&&A(se)),a!==u?(p=e,e=ma(i)):(s=e,e=u)):(s=e,e=u),e}function rA(){var e,r,t;return e=tu(),e===u&&(e=s,r=Nr(),r!==u?(t=_(),t!==u?(p=e,e=xa(r)):(s=e,e=u)):(s=e,e=u)),e}function rs(){var e,r,t,i,a,f;if(e=s,r=fe(),r!==u){for(t=[],i=s,a=c(),f=fe(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=fe(),f!==u?i=f:(s=i,i=u);p=e,e=ba(r,t)}else s=e,e=u;return e}function is(){var e,r,t,i,a,f;return e=s,r=s,t=Oe(),t!==u?(i=c(),r=t):(s=r,r=u),r===u&&(r=null),t=s,i=su(),i!==u?t=n.substring(t,s):t=i,t===u&&(t=s,i=Mu(),i!==u?t=n.substring(t,s):t=i),t!==u?(i=c(),a=Vr(),a!==u?(f=_(),f!==u?(p=e,e=Sa(r,t,a)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function Vr(){var e,r,t,i,a,f,o,E;if(e=s,r=ts(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=ts(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=ts(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);p=e,e=Ta(r,t)}else s=e,e=u;return e}function ts(){var e,r,t,i,a;return e=s,r=au(),r!==u?(t=s,i=c(),a=iA(),a!==u?t=a:(s=t,t=u),t===u&&(t=null),p=e,e=wa(r,t)):(s=e,e=u),e}function iA(){var e,r,t,i,a;return e=s,n.charCodeAt(s)===61?(r=z,s++):(r=u,l===0&&A(V)),r!==u?(t=s,l++,n.charCodeAt(s)===61?(i=z,s++):(i=u,l===0&&A(V)),l--,i===u?t=void 0:(s=t,t=u),t!==u?(i=c(),a=m(),a!==u?(p=e,e=Na(a)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function tA(){var e,r,t,i;return e=s,r=s,l++,n.charCodeAt(s)===123?(t=ee,s++):(t=u,l===0&&A(re)),t===u&&(t=Qe()),l--,t===u?r=void 0:(s=r,r=u),r!==u?(t=iu(),t!==u?(i=_(),i!==u?(p=e,e=Pa(t)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function fA(){var e,r,t,i,a,f,o,E,B,d,$,k,S,M,Z;return e=s,r=Vu(),r!==u?(t=c(),n.charCodeAt(s)===40?(i=j,s++):(i=u,l===0&&A(R)),i!==u?(a=c(),f=m(),f!==u?(o=c(),n.charCodeAt(s)===41?(E=q,s++):(E=u,l===0&&A(W)),E!==u?(B=c(),d=fe(),d!==u?($=s,k=c(),S=mr(),S!==u?(M=c(),Z=fe(),Z!==u?$=Z:(s=$,$=u)):(s=$,$=u),$===u&&($=null),p=e,e=ka(f,d,$)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function aA(){var e,r,t,i,a,f,o,E,B,d,$,k,S,M,Z;return e=s,r=ju(),r!==u?(t=c(),i=fe(),i!==u?(a=c(),f=ru(),f!==u?(o=c(),n.charCodeAt(s)===40?(E=j,s++):(E=u,l===0&&A(R)),E!==u?(B=c(),d=m(),d!==u?($=c(),n.charCodeAt(s)===41?(k=q,s++):(k=u,l===0&&A(W)),k!==u?(S=_(),S!==u?(p=e,e=La(i,d)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=ru(),r!==u?(t=c(),n.charCodeAt(s)===40?(i=j,s++):(i=u,l===0&&A(R)),i!==u?(a=c(),f=m(),f!==u?(o=c(),n.charCodeAt(s)===41?(E=q,s++):(E=u,l===0&&A(W)),E!==u?(B=c(),d=fe(),d!==u?(p=e,e=Ia(f,d)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=Ru(),r!==u?(t=c(),n.charCodeAt(s)===40?(i=j,s++):(i=u,l===0&&A(R)),i!==u?(a=c(),f=s,o=s,E=Rr(),E!==u?o=E:(s=o,o=u),o===u&&(o=s,E=su(),E!==u?(B=c(),d=s,$=Vr(),$!==u&&(p=d,$=Oa($)),d=$,d!==u?o=d:(s=o,o=u)):(s=o,o=u)),o!==u?(E=c(),f=o):(s=f,f=u),f===u&&(f=null),n.charCodeAt(s)===59?(o=X,s++):(o=u,l===0&&A(ue)),o!==u?(E=c(),B=s,d=m(),d!==u?($=c(),B=d):(s=B,B=u),B===u&&(B=null),n.charCodeAt(s)===59?(d=X,s++):(d=u,l===0&&A(ue)),d!==u?($=c(),k=s,S=Rr(),S!==u?(M=c(),k=S):(s=k,k=u),k===u&&(k=null),n.charCodeAt(s)===41?(S=q,s++):(S=u,l===0&&A(W)),S!==u?(M=c(),Z=fe(),Z!==u?(p=e,e=Ma(f,B,k,Z)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u))),e}function nA(){var e,r,t,i,a;return e=s,r=Xe(),r!==u?(t=_(),t!==u?(p=e,e=Ua()):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=Xe(),r!==u?(t=c(),i=L(),i!==u?(a=_(),a!==u?(p=e,e=ja(i)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)),e}function lA(){var e,r,t,i,a;return e=s,r=Ye(),r!==u?(t=_(),t!==u?(p=e,e=za()):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=Ye(),r!==u?(t=c(),i=L(),i!==u?(a=_(),a!==u?(p=e,e=Ra(i)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)),e}function AA(){var e,r,t,i,a;return e=s,r=Wu(),r!==u?(t=s,i=c(),a=m(),a!==u?t=a:(s=t,t=u),t===u&&(t=null),i=_(),i!==u?(p=e,e=Va(t)):(s=e,e=u)):(s=e,e=u),e}function oA(){var e,r,t,i,a,f,o,E,B,d;return e=s,r=Ku(),r!==u?(t=c(),n.charCodeAt(s)===40?(i=j,s++):(i=u,l===0&&A(R)),i!==u?(a=c(),f=m(),f!==u?(o=c(),n.charCodeAt(s)===41?(E=q,s++):(E=u,l===0&&A(W)),E!==u?(B=c(),d=cA(),d!==u?(p=e,e=qa(f,d)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function cA(){var e,r,t,i,a,f,o,E,B,d;return e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u?(t=c(),i=s,a=qr(),a!==u?(f=c(),i=a):(s=i,i=u),i===u&&(i=null),a=s,f=pA(),f!==u?(o=c(),E=s,B=qr(),B!==u?(d=c(),E=B):(s=E,E=u),E===u&&(E=null),p=a,a=Wa(i,f,E)):(s=a,a=u),a===u&&(a=null),n.charCodeAt(s)===125?(f=Q,s++):(f=u,l===0&&A(se)),f!==u?(p=e,e=Ka(i,a)):(s=e,e=u)):(s=e,e=u),e}function qr(){var e,r,t,i,a,f;if(e=s,r=fs(),r!==u){for(t=[],i=s,a=c(),f=fs(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=fs(),f!==u?i=f:(s=i,i=u);p=e,e=_a(r,t)}else s=e,e=u;return e}function EA(){var e,r,t,i;return e=s,r=Ie(),r!==u?(t=c(),i=Ee(),i!==u?(p=e,e=Ha(i)):(s=e,e=u)):(s=e,e=u),e}function fs(){var e,r,t,i,a,f,o,E,B;return e=s,r=Iu(),r!==u?(t=c(),i=m(),i===u&&(i=EA()),i!==u?(a=c(),n.charCodeAt(s)===58?(f=be,s++):(f=u,l===0&&A(Se)),f!==u?(o=s,E=c(),B=rs(),B!==u?o=B:(s=o,o=u),o===u&&(o=null),p=e,e=Za(i,o)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function pA(){var e,r,t,i,a,f,o;return e=s,r=Uu(),r!==u?(t=c(),n.charCodeAt(s)===58?(i=be,s++):(i=u,l===0&&A(Se)),i!==u?(a=s,f=c(),o=rs(),o!==u?a=o:(s=a,a=u),a===u&&(a=null),p=e,e=Ga(a)):(s=e,e=u)):(s=e,e=u),e}function CA(){var e,r,t,i,a,f;return e=s,r=L(),r!==u?(t=c(),n.charCodeAt(s)===58?(i=be,s++):(i=u,l===0&&A(Se)),i!==u?(a=c(),f=fe(),f!==u?(p=e,e=Ja(r,f)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function FA(){var e,r,t,i,a;return e=s,r=_u(),r!==u?(t=c(),i=m(),i!==u?(a=_(),a!==u?(p=e,e=Ya(i)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function BA(){var e,r,t,i,a,f,o,E;return e=s,r=Hu(),r!==u?(t=c(),i=tu(),i!==u?(a=c(),f=gA(),f===u&&(f=null),o=c(),E=dA(),E===u&&(E=null),p=e,e=Xa(i,f,E)):(s=e,e=u)):(s=e,e=u),e}function gA(){var e,r,t,i,a;if(e=s,r=[],t=s,i=Wr(),i!==u?(a=c(),t=i):(s=t,t=u),t!==u)for(;t!==u;)r.push(t),t=s,i=Wr(),i!==u?(a=c(),t=i):(s=t,t=u);else r=u;return r!==u&&(p=e,r=Qa(r)),e=r,e}function Wr(){var e,r,t,i,a,f,o,E,B,d;return e=s,r=hr(),r!==u?(t=c(),n.charCodeAt(s)===40?(i=j,s++):(i=u,l===0&&A(R)),i!==u?(a=c(),f=DA(),f!==u?(o=c(),n.charCodeAt(s)===41?(E=q,s++):(E=u,l===0&&A(W)),E!==u?(B=c(),d=tu(),d!==u?(p=e,e=en(f,d)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function DA(){var e,r,t,i,a,f,o;return e=s,r=L(),r!==u?(t=s,i=c(),a=s,f=Ie(),f!==u?a=n.substring(a,s):a=f,a!==u?(f=c(),o=Ee(),o!==u?t=[a,o]:(s=t,t=u)):(s=t,t=u),t===u&&(t=null),p=e,e=un(r,t)):(s=e,e=u),e}function dA(){var e,r,t,i;return e=s,r=br(),r!==u?(t=c(),i=tu(),i!==u?(p=e,e=sn(i)):(s=e,e=u)):(s=e,e=u),e}function fu(){var e,r,t,i;return e=s,n.charCodeAt(s)===58?(r=be,s++):(r=u,l===0&&A(Se)),r!==u?(t=c(),i=L(),i!==u?(p=e,e=rn(i)):(s=e,e=u)):(s=e,e=u),e}function as(){var e,r,t,i,a,f,o,E,B;return e=s,r=fu(),r!==u?(t=s,i=c(),n.charCodeAt(s)===40?(a=j,s++):(a=u,l===0&&A(R)),a!==u?(f=c(),o=Gu(),o!==u?(E=c(),n.charCodeAt(s)===41?(B=q,s++):(B=u,l===0&&A(W)),B!==u?t=o:(s=t,t=u)):(s=t,t=u)):(s=t,t=u),t===u&&(t=null),p=e,e=tn(r,t)):(s=e,e=u),e}function Oe(){var e,r,t,i,a;return e=s,r=vA(),r!==u?(t=s,i=c(),a=ns(),a!==u?t=a:(s=t,t=u),t===u&&(t=null),p=e,e=fn(r,t)):(s=e,e=u),e===u&&(e=s,r=ns(),r!==u&&(p=e,r=an(r)),e=r,e===u&&(e=s,r=Kr(),r!==u?(t=s,i=c(),a=ns(),a!==u?t=a:(s=t,t=u),t===u&&(t=null),p=e,e=nn(r,t)):(s=e,e=u))),e}function Kr(){var e,r,t,i,a,f,o;if(e=s,n.charCodeAt(s)===91?(r=pe,s++):(r=u,l===0&&A(Fe)),r!==u){if(t=c(),i=[],a=s,f=_r(),f!==u?(o=c(),a=f):(s=a,a=u),a!==u)for(;a!==u;)i.push(a),a=s,f=_r(),f!==u?(o=c(),a=f):(s=a,a=u);else i=u;i!==u?(n.charCodeAt(s)===93?(a=Ce,s++):(a=u,l===0&&A(Be)),a!==u?(p=e,e=ln(i)):(s=e,e=u)):(s=e,e=u)}else s=e,e=u;return e}function _r(){var e,r,t,i,a,f,o,E,B;return e=s,n.charCodeAt(s)===64?(r=Eu,s++):(r=u,l===0&&A(yu)),r===u&&(r=null),t=s,i=ce(),i!==u?t=n.substring(t,s):t=i,t!==u?(i=c(),n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),a!==u?(f=c(),o=Gu(),o!==u?(E=c(),n.charCodeAt(s)===59?(B=X,s++):(B=u,l===0&&A(ue)),B!==u?e=[t,o]:(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function vA(){var e,r,t,i,a,f,o,E,B,d;if(e=s,n.charCodeAt(s)===40?(r=j,s++):(r=u,l===0&&A(R)),r!==u)if(t=c(),i=as(),i!==u){for(a=[],f=s,o=c(),E=s,n.charCodeAt(s)===44?(B=T,s++):(B=u,l===0&&A(w)),B!==u?(d=c(),B=[B,d],E=B):(s=E,E=u),E===u&&(E=null),B=as(),B!==u?f=B:(s=f,f=u);f!==u;)a.push(f),f=s,o=c(),E=s,n.charCodeAt(s)===44?(B=T,s++):(B=u,l===0&&A(w)),B!==u?(d=c(),B=[B,d],E=B):(s=E,E=u),E===u&&(E=null),B=as(),B!==u?f=B:(s=f,f=u);f=c(),n.charCodeAt(s)===41?(o=q,s++):(o=u,l===0&&A(W)),o!==u?(p=e,e=An(i,a)):(s=e,e=u)}else s=e,e=u;else s=e,e=u;return e}function ns(){var e,r,t,i,a,f,o;if(e=s,r=s,t=ls(),t!==u?r=n.substring(r,s):r=t,r!==u){for(t=[],i=s,a=c(),f=s,o=ls(),o!==u?f=n.substring(f,s):f=o,f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=s,o=ls(),o!==u?f=n.substring(f,s):f=o,f!==u?i=f:(s=i,i=u);p=e,e=on(r,t)}else s=e,e=u;return e}function Ee(){var e,r,t,i,a,f,o,E;if(e=s,r=L(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===46?(f=Ae,s++):(f=u,l===0&&A(oe)),f!==u?(o=c(),E=ce(),E!==u?(p=i,i=ur(r,E)):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===46?(f=Ae,s++):(f=u,l===0&&A(oe)),f!==u?(o=c(),E=ce(),E!==u?(p=i,i=ur(r,E)):(s=i,i=u)):(s=i,i=u);p=e,e=cn(r,t)}else s=e,e=u;return e}function $A(){var e,r,t,i,a,f,o,E,B;return e=s,r=jl(),r!==u?(t=c(),i=Ee(),i!==u?(a=_(),a!==u?(p=e,e=En(i)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=Kl(),r!==u?(t=c(),i=Ee(),i!==u?(a=s,f=c(),o=de(),o!==u?(E=c(),B=L(),B!==u?a=B:(s=a,a=u)):(s=a,a=u),a===u&&(a=null),f=_(),f!==u?(p=e,e=pn(i,a)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)),e}function yA(){var e,r,t,i,a,f,o;return e=s,r=s,t=Oe(),t!==u?(i=c(),r=t):(s=r,r=u),r===u&&(r=null),t=zl(),t!==u?(i=c(),a=L(),a!==u?(f=c(),o=wA(),o!==u?(p=e,e=Cn(r,a,o)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function Hr(){var e,r,t,i,a,f,o,E,B,d;return e=s,r=s,t=Oe(),t!==u?(i=c(),r=t):(s=r,r=u),r===u&&(r=null),t=Ou(),t!==u?(i=c(),a=L(),a!==u?(f=s,o=c(),E=xr(),E!==u?(B=c(),d=Ee(),d!==u?f=d:(s=f,f=u)):(s=f,f=u),f===u&&(f=null),o=c(),E=Zr(),E!==u?(p=e,e=Fn(r,a,f,E)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function Zr(){var e,r,t,i,a,f;if(e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u){for(t=[],i=s,a=c(),f=Gr(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Gr(),f!==u?i=f:(s=i,i=u);i=c(),n.charCodeAt(s)===125?(a=Q,s++):(a=u,l===0&&A(se)),a!==u?(p=e,e=Bn(t)):(s=e,e=u)}else s=e,e=u;return e}function Gr(){var e,r;return e=s,r=Jr(),r===u&&(r=As(),r===u&&(r=is(),r===u&&(r=Hr(),r===u&&(r=cs())))),r!==u&&(p=e,r=gn(r)),e=r,e}function ls(){var e,r,t,i;return e=s,n.substr(s,6)===j0?(r=j0,s+=6):(r=u,l===0&&A(cf)),r===u&&(n.substr(s,9)===z0?(r=z0,s+=9):(r=u,l===0&&A(Ef)),r===u&&(n.substr(s,6)===R0?(r=R0,s+=6):(r=u,l===0&&A(pf)),r===u&&(n.substr(s,7)===V0?(r=V0,s+=7):(r=u,l===0&&A(Cf)),r===u&&(n.substr(s,6)===Ke?(r=Ke,s+=6):(r=u,l===0&&A(_0)))))),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?e=r:(s=e,e=u)):(s=e,e=u),e}function As(){var e,r,t,i,a,f;return e=s,r=s,t=Oe(),t!==u?(i=c(),r=t):(s=r,r=u),r===u&&(r=null),t=zu(),t!==u?(i=s,a=c(),f=L(),f!==u?i=f:(s=i,i=u),i===u&&(i=null),a=c(),f=hA(),f!==u?(p=e,e=Dn(r,i,f)):(s=e,e=u)):(s=e,e=u),e}function hA(){var e,r,t,i,a,f,o,E,B,d,$;if(e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u)if(t=c(),i=os(),i!==u){for(a=c(),f=[],o=s,n.charCodeAt(s)===44?(E=T,s++):(E=u,l===0&&A(w)),E!==u?(B=c(),d=os(),d!==u?($=c(),o=d):(s=o,o=u)):(s=o,o=u);o!==u;)f.push(o),o=s,n.charCodeAt(s)===44?(E=T,s++):(E=u,l===0&&A(w)),E!==u?(B=c(),d=os(),d!==u?($=c(),o=d):(s=o,o=u)):(s=o,o=u);o=c(),E=s,n.charCodeAt(s)===44?(B=T,s++):(B=u,l===0&&A(w)),B!==u?(d=c(),B=[B,d],E=B):(s=E,E=u),E===u&&(E=null),n.charCodeAt(s)===125?(B=Q,s++):(B=u,l===0&&A(se)),B!==u?(p=e,e=dn(i,f)):(s=e,e=u)}else s=e,e=u;else s=e,e=u;return e}function os(){var e,r,t,i,a,f,o,E;return e=s,r=s,t=Kr(),t!==u?(i=c(),r=t):(s=r,r=u),r===u&&(r=null),t=L(),t!==u?(i=s,a=c(),n.charCodeAt(s)===61?(f=z,s++):(f=u,l===0&&A(V)),f!==u?(o=c(),E=m(),E!==u?i=E:(s=i,i=u)):(s=i,i=u),i===u&&(i=null),p=e,e=vn(r,t,i)):(s=e,e=u),e}function cs(){var e,r,t,i,a,f,o;return e=s,r=Zu(),r!==u?(t=c(),i=L(),i!==u?(a=c(),f=ps(),f!==u?(o=_(),o!==u?(p=e,e=$n(i,f)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function Jr(){var e,r,t,i,a,f,o,E,B,d,$,k,S,M;return e=s,r=s,t=Oe(),t!==u?(i=c(),r=t):(s=r,r=u),r===u&&(r=null),t=Qe(),t!==u?(i=c(),a=L(),a!==u?(f=c(),n.charCodeAt(s)===40?(o=j,s++):(o=u,l===0&&A(R)),o!==u?(E=c(),B=s,d=Xr(),d!==u?($=c(),B=d):(s=B,B=u),B===u&&(B=null),n.charCodeAt(s)===41?(d=q,s++):(d=u,l===0&&A(W)),d!==u?($=s,k=c(),S=ps(),S!==u?$=S:(s=$,$=u),$===u&&($=null),k=c(),S=bA(),S===u&&(S=s,n.charCodeAt(s)===59?(M=X,s++):(M=u,l===0&&A(ue)),M!==u&&(p=S,M=yn(r,a,B,$)),S=M),S!==u?(p=e,e=hn(r,a,B,$,S)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function Me(){var e,r,t,i,a,f,o,E,B,d;if(e=s,r=Ee(),r!==u?(t=s,i=c(),a=xA(),a===u&&(a=Yr()),a!==u?t=a:(s=t,t=u),t===u&&(t=null),p=e,e=mn(r,t)):(s=e,e=u),e===u&&(e=s,n.charCodeAt(s)===40?(r=j,s++):(r=u,l===0&&A(R)),r!==u?(t=c(),i=mA(),i!==u?(a=c(),n.charCodeAt(s)===41?(f=q,s++):(f=u,l===0&&A(W)),f!==u?(p=e,e=xn(i)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e===u)){if(e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u)if(t=c(),i=Es(),i!==u){for(a=[],f=s,o=c(),n.charCodeAt(s)===44?(E=T,s++):(E=u,l===0&&A(w)),E!==u?(B=c(),d=Es(),d!==u?f=d:(s=f,f=u)):(s=f,f=u);f!==u;)a.push(f),f=s,o=c(),n.charCodeAt(s)===44?(E=T,s++):(E=u,l===0&&A(w)),E!==u?(B=c(),d=Es(),d!==u?f=d:(s=f,f=u)):(s=f,f=u);f=c(),o=s,n.charCodeAt(s)===44?(E=T,s++):(E=u,l===0&&A(w)),E!==u?(B=c(),E=[E,B],o=E):(s=o,o=u),o===u&&(o=null),n.charCodeAt(s)===125?(E=Q,s++):(E=u,l===0&&A(se)),E!==u?(p=e,e=bn(i,a)):(s=e,e=u)}else s=e,e=u;else s=e,e=u;e===u&&(e=s,r=s,t=Sr(),t!==u?r=n.substring(r,s):r=t,r!==u?(t=c(),i=Zr(),i!==u?(p=e,e=Sn(r,i)):(s=e,e=u)):(s=e,e=u))}return e}function Es(){var e,r,t,i,a,f;return e=s,r=s,l++,t=s,i=fu(),i===u&&(i=nr()),i!==u?(a=c(),f=de(),f!==u?(i=[i,a,f],t=i):(s=t,t=u)):(s=t,t=u),l--,t!==u?(s=r,r=void 0):r=u,r!==u?(t=Te(),t!==u?e=t:(s=e,e=u)):(s=e,e=u),e}function x2(){var e,r,t,i,a;return e=s,r=Me(),r!==u?(t=s,i=c(),n.charCodeAt(s)===63?(a=du,s++):(a=u,l===0&&A(Nu)),a!==u?(i=[i,a],t=i):(s=t,t=u),t===u&&(t=null),p=e,e=Tn(r,t)):(s=e,e=u),e}function mA(){var e,r,t,i;return e=s,r=Ee(),r!==u?(t=c(),i=Yr(),i!==u?(p=e,e=wn(r,i)):(s=e,e=u)):(s=e,e=u),e}function xA(){var e,r,t,i,a,f,o,E,B,d,$;if(e=s,n.charCodeAt(s)===60?(r=gu,s++):(r=u,l===0&&A(Tu)),r!==u){if(t=c(),i=s,a=ve(),a!==u){for(f=[],o=s,E=c(),n.charCodeAt(s)===44?(B=T,s++):(B=u,l===0&&A(w)),B!==u?(d=c(),$=ve(),$!==u?o=$:(s=o,o=u)):(s=o,o=u);o!==u;)f.push(o),o=s,E=c(),n.charCodeAt(s)===44?(B=T,s++):(B=u,l===0&&A(w)),B!==u?(d=c(),$=ve(),$!==u?o=$:(s=o,o=u)):(s=o,o=u);p=i,i=Nn(a,f)}else s=i,i=u;i!==u?(a=c(),n.charCodeAt(s)===62?(f=Du,s++):(f=u,l===0&&A(wu)),f!==u?e=i:(s=e,e=u)):(s=e,e=u)}else s=e,e=u;return e}function Yr(){var e,r,t,i,a,f,o,E;return e=s,n.charCodeAt(s)===40?(r=j,s++):(r=u,l===0&&A(R)),r!==u?(t=c(),i=s,a=Xr(),a!==u?(f=c(),i=a):(s=i,i=u),i===u&&(i=null),n.charCodeAt(s)===41?(a=q,s++):(a=u,l===0&&A(W)),a!==u?(f=s,o=c(),E=ps(),E!==u?f=E:(s=f,f=u),f===u&&(f=null),p=e,e=Pn(i,f)):(s=e,e=u)):(s=e,e=u),e}function ve(){var e,r,t,i,a,f,o,E;if(e=s,n.substr(s,4)===q0?(r=q0,s+=4):(r=u,l===0&&A(Ff)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(p=e,e=kn()):(s=e,e=u)):(s=e,e=u),e===u)if(e=s,r=Me(),r!==u){if(t=s,i=c(),n.charCodeAt(s)===63?(a=du,s++):(a=u,l===0&&A(Nu)),a!==u?(f=s,l++,o=jr(),l--,o===u?f=void 0:(s=f,f=u),f!==u?(p=t,t=Ln(r)):(s=t,t=u)):(s=t,t=u),t===u)if(t=[],i=s,a=c(),f=uu(),f===u&&(n.charCodeAt(s)===124?(f=Bu,s++):(f=u,l===0&&A(Su))),f!==u?(o=c(),E=Me(),E!==u?i=E:(s=i,i=u)):(s=i,i=u),i!==u)for(;i!==u;)t.push(i),i=s,a=c(),f=uu(),f===u&&(n.charCodeAt(s)===124?(f=Bu,s++):(f=u,l===0&&A(Su))),f!==u?(o=c(),E=Me(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);else t=u;t===u&&(t=null),p=e,e=In(r,t)}else s=e,e=u;return e}function ps(){var e,r,t,i;return e=s,r=de(),r!==u?(t=c(),i=ve(),i!==u?(p=e,e=On(i)):(s=e,e=u)):(s=e,e=u),e}function au(){var e,r,t,i,a,f,o;return e=s,r=L(),r!==u?(t=s,i=c(),a=de(),a!==u?(f=c(),o=ve(),o!==u?t=o:(s=t,t=u)):(s=t,t=u),t===u&&(t=null),p=e,e=Mn(r,t)):(s=e,e=u),e}function Xr(){var e,r,t,i,a,f,o,E;if(e=s,r=au(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=au(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=au(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(a=[a,f],i=a):(s=i,i=u),i===u&&(i=null),p=e,e=Un(r,t)}else s=e,e=u;return e}function bA(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u?(t=c(),i=PA(),i===u&&(i=null),a=c(),n.charCodeAt(s)===125?(f=Q,s++):(f=u,l===0&&A(se)),f!==u?(p=e,e=jn(i)):(s=e,e=u)):(s=e,e=u),e}function SA(){var e,r;return e=s,r=TA(),r===u&&(r=null),p=e,r=zn(r),e=r,e}function TA(){var e,r,t,i,a,f;if(e=s,r=we(),r!==u){for(t=[],i=s,a=c(),f=we(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=we(),f!==u?i=f:(s=i,i=u);p=e,e=Rn(r,t)}else s=e,e=u;return e}function wA(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u?(t=c(),i=NA(),i===u&&(i=null),a=c(),n.charCodeAt(s)===125?(f=Q,s++):(f=u,l===0&&A(se)),f!==u?(p=e,e=Vn(i)):(s=e,e=u)):(s=e,e=u),e}function NA(){var e,r,t,i,a,f;if(e=s,r=we(),r!==u){for(t=[],i=s,a=c(),f=we(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=we(),f!==u?i=f:(s=i,i=u);p=e,e=qn(r,t)}else s=e,e=u;return e}function we(){var e;return e=Hr(),e===u&&(e=As(),e===u&&(e=Jr(),e===u&&(e=yA(),e===u&&(e=cs(),e===u&&(e=is(),e===u&&(e=$A())))))),e}function PA(){var e,r,t,i,a,f;if(e=s,r=Cs(),r!==u){for(t=[],i=s,a=c(),f=Cs(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Cs(),f!==u?i=f:(s=i,i=u);p=e,e=Wn(r,t)}else s=e,e=u;return e}function Cs(){var e;return e=fe(),e===u&&(e=As(),e===u&&(e=cs())),e}function kA(){var e,r;return e=s,r=LA(),r===u&&(r=null),p=e,r=Kn(r),e=r,e}function LA(){var e,r,t,i,a,f;if(e=s,r=Fs(),r!==u){for(t=[],i=s,a=c(),f=Fs(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Fs(),f!==u?i=f:(s=i,i=u);p=e,e=_n(r,t)}else s=e,e=u;return e}function Fs(){var e,r,t,i;return e=s,r=L(),r!==u?(t=c(),i=IA(),i!==u?(p=e,e=Hn(r,i)):(s=e,e=u)):(s=e,e=u),e}function IA(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u?(t=c(),i=OA(),i===u&&(i=null),a=c(),n.charCodeAt(s)===125?(f=Q,s++):(f=u,l===0&&A(se)),f!==u?(p=e,e=Zn(i)):(s=e,e=u)):(s=e,e=u),e}function OA(){var e,r,t,i,a,f;if(e=s,r=Bs(),r!==u){for(t=[],i=s,a=c(),f=Bs(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Bs(),f!==u?i=f:(s=i,i=u);p=e,e=Gn(r,t)}else s=e,e=u;return e}function Bs(){var e,r,t,i,a,f,o,E;return e=s,r=L(),r!==u?(t=c(),n.charCodeAt(s)===58?(i=be,s++):(i=u,l===0&&A(Se)),i!==u?(a=c(),f=MA(),f!==u?(o=c(),n.charCodeAt(s)===59?(E=X,s++):(E=u,l===0&&A(ue)),E!==u?(p=e,e=Jn(r,f)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function MA(){var e,r,t,i,a,f;if(e=s,r=s,t=cr(),t!==u?r=n.substring(r,s):r=t,r!==u?(p=s,t=Yn(r),t?t=void 0:t=u,t!==u?(i=c(),n.charCodeAt(s)===37?(a=g0,s++):(a=u,l===0&&A(G0)),a!==u?(p=e,e=Xn(r)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e===u){if(e=s,n.charCodeAt(s)===35?(r=Pi,s++):(r=u,l===0&&A(Bf)),r!==u){for(t=s,i=s,a=[],f=te();f!==u;)a.push(f),a.length>=6?f=u:f=te();a.length<6?(s=i,i=u):i=a,i!==u?t=n.substring(t,s):t=i,t!==u?(p=e,e=Qn(t)):(s=e,e=u)}else s=e,e=u;e===u&&(e=s,r=fu(),r!==u&&(p=e,r=el(r)),e=r,e===u&&(e=s,n.charCodeAt(s)===64?(r=Eu,s++):(r=u,l===0&&A(yu)),r!==u?(t=Ee(),t!==u?(p=e,e=ul(t)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=gl(),r===u&&(r=Cr(),r===u&&(r=Fr())),r!==u?(t=s,l++,i=s,a=c(),n.charCodeAt(s)===59?(f=X,s++):(f=u,l===0&&A(ue)),f!==u?(a=[a,f],i=a):(s=i,i=u),l--,i!==u?(s=t,t=void 0):t=u,t!==u?(p=e,e=sl(r)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=Br(),r!==u?(t=s,l++,i=s,a=c(),n.charCodeAt(s)===59?(f=X,s++):(f=u,l===0&&A(ue)),f!==u?(a=[a,f],i=a):(s=i,i=u),l--,i!==u?(s=t,t=void 0):t=u,t!==u?(p=e,e=rl(r)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=ku(),r!==u?(t=s,l++,i=s,a=c(),n.charCodeAt(s)===59?(f=X,s++):(f=u,l===0&&A(ue)),f!==u?(a=[a,f],i=a):(s=i,i=u),l--,i!==u?(s=t,t=void 0):t=u,t!==u?(p=e,e=il(r)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=L(),r!==u?(t=s,l++,i=s,a=c(),n.charCodeAt(s)===59?(f=X,s++):(f=u,l===0&&A(ue)),f!==u?(a=[a,f],i=a):(s=i,i=u),l--,i!==u?(s=t,t=void 0):t=u,t!==u?(p=e,e=tl(r)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=m(),r!==u&&(p=e,r=fl(r)),e=r)))))))}return e}let nu=[];function Qr(e,r){let t=sr();return nu.find(i=>i.start===t.start.offset)||nu.push({type:r?"MultiLine":"Line",value:e,start:t.start.offset,end:t.end.offset,loc:t}),Y}function D(e){var r=sr();return e.start=r.start.offset,e.end=r.end.offset,e.loc=r,e}function gs(e,r){return{type:"ModuleDeclaration",id:{type:"Identifier",name:e},body:{type:"BlockStatement",body:r}}}function Ue(e,r,t){let i={type:"MemberExpression",computed:!1,object:{type:"Identifier",name:"Toybox"},property:{type:"Identifier",name:r}};return e==="Using"&&t?{type:e,id:i,as:{type:"Identifier",name:t}}:{type:e,id:i}}function UA(e){let r=gs("Rez",[gs("Styles",e)]);return g.mss!==""&&(r=gs(g.mss,[r])),D({type:"Program",body:[Ue("ImportModule","Lang"),Ue("Using","WatchUi"),Ue("Using","WatchUi","Ui"),Ue("Using","Graphics"),Ue("Using","Graphics","Gfx"),r]})}if(Ge=v(),Ge!==u&&s===n.length)return Ge;throw Ge!==u&&s<n.length&&A(nl()),ir(Pu,ie<n.length?n.charAt(ie):null,ie<n.length?Pe(ie,ie+1):Pe(ie,ie))}var GA=KA(require("prettier"));var{doc:vs}=GA,{group:G,fill:w2,line:J,softline:ye,hardline:JA,indent:he,dedent:YA,join:Re}=vs.builders,Ve=/^-?(0x[0-9a-f]+|\d+)(l)?$/i,le,$s,Ne;function ou(n,g){if(Ne===void 0){let F=(v=>{let N=H=>H&&typeof H!="string"&&H.printers?.[v],I=N(g.plugins?.find(N));if(!I)throw new Error("Prettier setup failure!");return I})("estree"),y=v=>{Ne=null;let N,I,H;({print:le,preprocess:$s,canAttachComment:I,getVisitorKeys:H,...N}=v),Object.assign(cu.monkeyc,N,{print:eo,preprocess:XA,canAttachComment:b=>b.type!="AttributeList"&&(!I||I(b)),willPrintOwnComments:()=>!1})};typeof F=="function"?Ne=F().then(y):y(F)}return n}function XA(n,g){let u=$s?$s(n,g):n;return"then"in u?u.then(F=>Au(F,null,g)):Au(u,null,g)}function QA(n,g,u){let F=n.getValue();if(!F)return[];let y=[];return F.access&&(y=F.access.slice().sort().filter((v,N,I)=>!N||v!=I[N-1]).join(" ")+" "),F.attributes?[n.call(u,"attributes"),JA,y]:y}function eo(n,g,u){let F=n.getValue();if(!F)return"";if(typeof F=="string")return F;let y=v=>n;switch(F.type){case"Program":{let{semi:v,trailingComma:N}=g;g.semi=!0,g.trailingComma=="all"&&(g.trailingComma="es5");let I=le(n,g,u);return g.semi=v,g.trailingComma=N,I}case"ModuleDeclaration":{let v=G([G(["module",J,he(y(F).call(u,"id")),J]),y(F).call(u,"body")]);return F.attrs?[y(F).call(u,"attrs"),v]:v}case"TypedefDeclaration":return[G(["typedef",he(J),y(F).call(u,"id")]),y(F).call(u,"ts"),";"];case"Property":return G([G([n.call(u,"key"),J,"=>",J]),y(F).call(u,"value")]);case"ImportModule":return G(["import",J,n.call(u,"id"),";"]);case"Using":{let v=["using",J,n.call(u,"id")];return F.as!=null&&v.push(J,"as",J,y(F).call(u,"as")),v.push(";"),G(v)}case"Identifier":return F.original&&F.original!==F.name?`${F.name} /*>${F.original}<*/`:F.name;case"TypeSpecList":{let v=n.map(u,"ts");return v.length==2&&v[1]=="Null"?(v[1]="?",v):G(Re([" or",he(J)],v))}case"ParenthesizedExpression":return F.expression.type=="ObjectExpression"||!n.getParentNode()?n.call(u,"expression"):le(n,g,u);case"ObjectExpression":return le(n,g,u);case"TypeSpecPart":{let v=[F.name?n.call(u,"name"):""];if(F.body&&v.push(" ",YA(y(F).call(u,"body"))),F.generics){let N="generics"in F.generics.slice(-1)[0].ts.slice(-1)[0]?J:ye;v.push(G(["<",he([ye,Re([",",J],n.map(u,"generics"))]),N,">"]))}if(F.callspec){let N=g.semi;g.semi=!1,v.unshift("("),v.push(he([ye,n.call(u,"callspec")]),ye,")"),g.semi=N}return v.length==1?v[0]:v}case"ArrayExpression":return[le(n,g,u),F.byte||""];case"SizedArrayExpression":return G(["new ",F.ts?[y(F).call(u,"ts"),"generics"in F.ts?"":" "]:"","[",he(n.call(u,"size")),"]",F.byte||""]);case"VariableDeclaration":case"FunctionDeclaration":case"ClassDeclaration":{let v=le(n,g,u);return F.attrs?[y(F).call(u,"attrs"),v]:v}case"EnumDeclaration":{let v=["enum"];return F.id&&v.push(n.call(u,"id")),v=Re(" ",v),F.attrs&&(v=[y(F).call(u,"attrs"),v]),[v," ",y(F).call(u,"body")]}case"Attributes":return G(["(",he([ye,G(Re([",",ye],n.map(u,"elements")))]),ye,")"]);case"AttributeList":return QA(n,g,u);case"ClassElement":return n.call(u,"item");case"CatchClauses":return Re(" ",n.map(u,"catches"));case"ThisExpression":return F.text;case"InstanceOfCase":return["instanceof ",n.call(u,"id")];case"Literal":if(typeof F.value=="string")return F.raw;if(typeof F.value=="number"){if(F.value===Math.floor(F.value))if(Ve.test(F.raw)){if((F.value>4294967295||-F.value>4294967295)&&!/l$/i.test(F.raw||""))return F.raw.toLowerCase()+"l"}else{let v=vs.printer.printDocToString(le(n,g,u),g).formatted;return Ve.test(v)?`${v}${/d$/i.test(F.raw)?"d":"f"}`:v}else if(isNaN(F.value))return"NaN"}else if(typeof F.value=="bigint")return F.raw&&/l$/i.test(F.raw)?F.raw.toLowerCase():vs.printer.printDocToString(le(n,g,u),g).formatted+"l";break}return le(n,g,u)}var ri={"*":[0,0],"/":[0,0],"%":[0,0],"+":[10,10],"-":[10,10],"<<":[20,0],">>":[20,0],"<":[30,30],"<=":[30,30],">":[30,30],">=":[30,30],instanceof:[30,5],has:[99,5],as:[-1,99],"==":[40,30],"!=":[40,30],"&":[50,0],"^":[60,10],"|":[70,10]};function ds(n){if(n.type=="BlockStatement")return n;let g={type:"BlockStatement",body:[n]};return n.start!=null&&(g.start=n.start),n.end!=null&&(g.end=n.end),n.loc!=null&&(g.loc=n.loc),g}function Au(n,g,u){for(let[F,y]of Object.entries(n))y&&(Array.isArray(y)?y.forEach(v=>Au(v,null,u)):typeof y=="object"&&y.type&&(n[F]=Au(y,n,u)));switch(n.type){case"IfStatement":n.consequent=ds(n.consequent),n.alternate&&n.alternate.type!="IfStatement"&&(n.alternate=ds(n.alternate));break;case"WhileStatement":case"DoWhileStatement":case"ForStatement":n.body=ds(n.body);break}return g&&uo(n,g)?{type:"ParenthesizedExpression",expression:n,start:n.start,end:n.end,loc:n.loc}:n}function ii(n){switch(n.type){case"ThisExpression":case"Identifier":case"SizedArrayExpression":case"ArrayExpression":case"ObjectExpression":case"Literal":case"MemberExpression":case"NewExpression":case"CallExpression":case"UnaryExpression":case"ParenthesizedExpression":case"AssignmentExpression":case"UpdateExpression":return!0}return!1}function uo(n,g){if(g.type==="ExpressionStatement")return!ii(n)||n.type==="ObjectExpression";if(g.type=="BinaryExpression"&&g.operator=="as")return n==g.right?!1:!ii(n);if(n.type=="BinaryExpression"){switch(g.type){case"BinaryExpression":{let u=ri[n.operator],F=ri[g.operator];if(u&&F){let y=F[1]<u[1]||n==g.right&&F[1]==u[1],v=F[0]<u[0]||n==g.right&&F[0]==u[0];if(y&&!v)return!0}break}case"ConditionalExpression":return n.operator==="as"&&n===g.test;case"LogicalExpression":return n.operator==="as";case"MemberExpression":return n.operator==="as"&&n===g.object;case"NewExpression":case"CallExpression":return n.operator==="as"&&n===g.callee}return!1}return n.type=="NewExpression"?g.type=="MemberExpression":!1}var ti={};var ai=[{name:"monkeyc",extensions:[".mc"],parsers:["monkeyc"]}];function fi(n,g,u){let F={};return u||(u=g),u&&(u.filepath&&(F.grammarSource=u.filepath),u.mss!=null?(F.startRule="PersonalityStart",F.mss=u.mss):F.startRule=u.singleExpression?"SingleExpression":"Start"),si(n,F)}var ni={monkeyc:{parse:(n,g,u)=>Ne?Ne.then(()=>fi(n,g,u)):fi(n,g,u),astFormat:"monkeyc",locStart:n=>n.start||0,locEnd:n=>n.end||0,preprocess:ou},"monkeyc-json":{parse:n=>{let g=n.match(/^((.|[\r\n\u2028\u2029])*)(\r\n|[\n\r\u2028\u2029])(.+)$/),u=Ai(g?g[4]:n);return"comments"in u&&(!g||!g[1]||u.end&&g[1].length<u.end?delete u.comments:u.comments&&(u.comments=u.comments.filter(F=>!F.value.includes("prettier-ignore")))),u},astFormat:"monkeyc",locStart:n=>n.start||0,locEnd:n=>n.end||0,preprocess:ou}},so=new Set(["tokens","comments","parent","enclosingNode","precedingNode","followingNode"]),cu={monkeyc:{print(){throw"Something went wrong: printer not initialized!"},preprocess(){throw"Something went wrong: printer not initialized!"},getVisitorKeys(n){return Object.entries(n).filter(([g,u])=>!so.has(g)&&(u&&typeof u.type=="string"||Array.isArray(u)&&u.every(F=>F.type!=null))).map(([g])=>g)}}},li={singleExpression:{since:"",type:"boolean",category:"Special",default:!1,description:"Parse a single monkeyc expression, rather than a module."},mss:{since:"",type:"string",category:"Special",description:"Parse a .mss file, rather than a .mc file."}},ro={tabWidth:4};function io(n){return JSON.stringify(n,(g,u)=>g==="value"&&(typeof u=="bigint"||typeof u=="number"&&isNaN(u))?0:u)}function Ai(n){return JSON.parse(n,function(g,u){if(g==="value"&&u===0&&this.type==="Literal"&&typeof this.raw=="string"){if(this.raw==="NaN")return NaN;let F=this.raw.match(Ve);if(F&&(F[2]==="l"||F[2]==="L"))return BigInt(F[1])}return u})}var to={languages:ai,parsers:ni,printers:cu,options:li};0&&(module.exports={LiteralIntegerRe,defaultOptions,languages,mctree,options,parsers,printers,serializeMonkeyC,unserializeMonkeyC});
|
|
12
|
+
`},Kf=function(){return"\r"},_f=function(){return" "},Hf=function(){return"\v"},Zf=function(){return Y()},Gf=function(e){return String.fromCharCode(parseInt(e,16))},Jf=function(e){return String.fromCharCode(parseInt(e,16))},Yf=function(e){return D({type:"ThisExpression",text:e})},Xf=function(e,r){return D({type:"ArrayExpression",elements:U(e),byte:r})},Qf=function(e,r){return[e,...r]},ea=function(e){return D({type:"ObjectExpression",properties:U(e)})},ua=function(e,r){return[e,...r]},sa=function(e,r){return D({type:"Property",key:e,value:r,kind:"init"})},ra=function(e){return[e]},ia=function(e,r,t){return D({type:"SizedArrayExpression",size:r,byte:t,ts:e})},ta=function(e,r){return D({type:"NewExpression",callee:e,arguments:r})},J0=function(e,r){return D({property:r,computed:!0})},Y0=function(e,r){return D({property:r,computed:!1})},fa=function(e,r){return ze(e,r,(t,i)=>({...i,type:"MemberExpression",object:t}))},X0=function(e,r){return D({type:"CallExpression",arguments:r})},Q0=function(e,r){return D({type:"MemberExpression",property:r,computed:!0})},er=function(e,r){return D({type:"MemberExpression",property:r,computed:!1})},aa=function(e,r){return ze(e,r,(t,i)=>{let a={...i};return a[HA[i.type]]=t,a})},na=function(e){return U(e)},la=function(e,r){return[e,...r]},Aa=function(e,r){return D({type:"UnaryExpression",operator:e,argument:r,prefix:!0})},oa=function(e,r){return je(e,r)},ca=function(e,r){return je(e,r)},Ea=function(e,r){return je(e,r)},pa=function(e,r){return je(e,r)},Ca=function(e,r){return je(e,r)},Fa=function(e,r){return ui(e,r)},Ba=function(e,r){return ui(e,r)},ga=function(e,r){return r?D({type:"ConditionalExpression",test:e,consequent:r[0],alternate:r[1]}):e},Da=function(e,r,t){return{type:"AssignmentExpression",operator:r,left:e,right:t}},da=function(e,r){return{type:"UpdateExpression",operator:r,argument:e,prefix:!1}},va=function(e){return e},$a=function(e,r){return r.loc?r:D(r)},ya=function(e,r){return D({type:"UpdateExpression",operator:e,argument:r,prefix:!0})},ha=function(e,r){return D(r.length?{type:"SequenceExpression",expressions:[e,...r]}:e)},ma=function(e){return D({type:"BlockStatement",body:U(e)})},xa=function(e){return D({type:"ExpressionStatement",expression:e})},ba=function(e,r){return[e,...r]},Sa=function(e,r,t){return D({type:"VariableDeclaration",declarations:t,kind:r,attrs:e})},Ta=function(e,r){return[e,...r]},wa=function(e,r){return D({type:"VariableDeclarator",id:e,init:r})},Na=function(e){return e},Pa=function(e){return D({type:"ExpressionStatement",expression:e})},ka=function(e,r,t){return D({type:"IfStatement",test:e,consequent:r,alternate:t||null})},La=function(e,r){return D({type:"DoWhileStatement",body:e,test:r})},Ia=function(e,r){return D({type:"WhileStatement",test:e,body:r})},Oa=function(e){return D({type:"VariableDeclaration",declarations:e,kind:"var"})},Ma=function(e,r,t,i){return D({type:"ForStatement",init:e,test:r,update:t,body:i})},Ua=function(){return D({type:"ContinueStatement",label:null})},ja=function(e){return D({type:"ContinueStatement",label:e})},za=function(){return D({type:"BreakStatement",label:null})},Ra=function(e){return D({type:"BreakStatement",label:e})},Va=function(e){return D({type:"ReturnStatement",argument:e||null})},qa=function(e,r){return D({type:"SwitchStatement",discriminant:e,cases:r})},Wa=function(e,r,t){return[r].concat(U(t))},Ka=function(e,r){return U(e).concat(U(r))},_a=function(e,r){return[e,...r]},Ha=function(e){return D({type:"InstanceOfCase",id:e})},Za=function(e,r){return D({type:"SwitchCase",test:e,consequent:U(r)})},Ga=function(e){return D({type:"SwitchCase",test:null,consequent:U(e)})},Ja=function(e,r){return D({type:"LabeledStatement",label:e,body:r})},Ya=function(e){return D({type:"ThrowStatement",argument:e})},Xa=function(e,r,t){return D({type:"TryStatement",block:e,handler:r,finalizer:t})},Qa=function(e){return e.length==1?e[0]:D({type:"CatchClauses",catches:e})},en=function(e,r){return D({type:"CatchClause",param:e,body:r})},un=function(e,r){return r?D({type:"BinaryExpression",operator:r[0],left:e,right:r[1]}):e},sn=function(e){return e},rn=function(e){return D({type:"UnaryExpression",operator:":",argument:e,prefix:!0})},tn=function(e,r){return r?D({type:"CallExpression",callee:{...e.argument,name:":"+e.argument.name},arguments:[r]}):e},fn=function(e,r){return D({type:"AttributeList",attributes:e,access:r})},an=function(e){return D({type:"AttributeList",access:e})},nn=function(e,r){return D({type:"AttributeList",system:e,access:r})},ln=function(e){return Object.fromEntries(e.map(([r,t])=>[r,t.type==="Literal"?t.value:t]))},An=function(e,r){return D({type:"Attributes",elements:[e,...r]})},on=function(e,r){return[e,...r]},ur=function(e,r){return D({property:r,computed:!1})},cn=function(e,r){return ze(e,r,(t,i)=>({...i,type:"MemberExpression",object:t}))},En=function(e){return D({type:"ImportModule",id:e})},pn=function(e,r){return D({type:"Using",id:e,as:r})},Cn=function(e,r,t){return D({type:"ModuleDeclaration",body:t,id:r,attrs:e})},Fn=function(e,r,t,i){return D({type:"ClassDeclaration",id:r,superClass:t,body:i,attrs:e})},Bn=function(e){return D({type:"BlockStatement",body:e})},gn=function(e){return D({type:"ClassElement",item:e})},Dn=function(e,r,t){return D({type:"EnumDeclaration",id:r,body:t,attrs:e})},dn=function(e,r){return D({type:"EnumStringBody",members:[e,...r]})},vn=function(e,r,t){let i=t?D({type:"EnumStringMember",id:r,init:t}):r;return e&&(i.system=e),i},$n=function(e,r){return D({type:"TypedefDeclaration",id:e,ts:r})},yn=function(e,r,t,i){return null},hn=function(e,r,t,i,a){return D({type:"FunctionDeclaration",id:r,attrs:e,returnType:i,params:U(t),body:a})},mn=function(e,r){let t=D({type:"TypeSpecPart",name:e});return r&&(Array.isArray(r)?t.generics=r:t.callspec=r),t},xn=function(e){return D({...e})},bn=function(e,r){return D({type:"ObjectExpression",properties:[e,...r]})},Sn=function(e,r){return D({type:"TypeSpecPart",name:e,body:r})},Tn=function(e,r){return r?D({...e,nullable:!0}):e},wn=function(e,r){return D({type:"TypeSpecPart",name:e,callspec:r})},Nn=function(e,r){return[e,...r]},Pn=function(e,r){return D({type:"MethodDefinition",kind:"method",key:"",params:e||[],returnType:r})},kn=function(){return D({type:"TypeSpecList",ts:[D({type:"TypeSpecPart",name:"Void"})]})},Ln=function(e){return D({type:"TypeSpecPart",name:"Null"})},In=function(e,r){return r==null?r=[]:Array.isArray(r)||(r=[r]),D({type:"TypeSpecList",ts:[e,...r]})},On=function(e){return D({type:"UnaryExpression",argument:e,prefix:!0,operator:" as"})},Mn=function(e,r){return r?D({type:"BinaryExpression",operator:"as",left:e,right:r}):e},Un=function(e,r){return[e,...r]},jn=function(e){return D({type:"BlockStatement",body:U(e)})},zn=function(e){return D({type:"Program",body:U(e)})},Rn=function(e,r){return[e,...r]},Vn=function(e){return D({type:"BlockStatement",body:U(e)})},qn=function(e,r){return[e,...r]},Wn=function(e,r){return[e,...r]},Kn=function(e){return UA(U(e))},_n=function(e,r){return[e,...r]},Hn=function(e,r){return D({type:"ModuleDeclaration",body:r,id:e})},Zn=function(e){return D({type:"BlockStatement",body:U(e)})},Gn=function(e,r){return[e,...r]},Jn=function(e,r){return D({type:"VariableDeclaration",kind:"const",declarations:[D({type:"VariableDeclarator",kind:"const",id:e,init:r.value})]})},Yn=function(e){return!/[fdl]$/i.test(e)},Xn=function(e){let r=parseFloat(e)/100;return{value:{type:"Literal",value:r,raw:r.toString()},type:"Float"}},Qn=function(e){return{value:D({type:"Literal",value:parseInt(e,16),raw:"0x"+e}),type:"Number"}},el=function(e){return{value:e,type:"Symbol"}},ul=function(e){return{value:D({type:"UnaryExpression",prefix:!0,operator:":",argument:e.type==="Identifier"?e:e.property}),type:"Symbol"}},sl=function(e){return{value:e,type:"Number"}},rl=function(e){return{value:e,type:"String"}},il=function(e){return{value:e,type:"Boolean"}},tl=function(e){return{value:{type:"Literal",value:e.name,raw:JSON.stringify(e.name)}}},fl=function(e){return{value:e}},s=0,p=0,Ze=[{line:1,column:1}],ie=0,Pu=[],l=0,Ge;if("startRule"in g){if(!(g.startRule in y))throw new Error(`Can't start parsing from rule "`+g.startRule+'".');v=y[g.startRule]}function Y(){return n.substring(p,s)}function D2(){return p}function d2(){return{source:F,start:p,end:s}}function sr(){return Pe(p,s)}function v2(e,r){throw r=r!==void 0?r:Pe(p,s),ir([ge(e)],n.substring(p,s),r)}function $2(e,r){throw r=r!==void 0?r:Pe(p,s),ll(e,r)}function C(e,r){return{type:"literal",text:e,ignoreCase:r}}function P(e,r,t){return{type:"class",parts:e,inverted:r,ignoreCase:t}}function al(){return{type:"any"}}function nl(){return{type:"end"}}function ge(e){return{type:"other",description:e}}function rr(e){var r=Ze[e],t;if(r)return r;for(t=e-1;!Ze[t];)t--;for(r=Ze[t],r={line:r.line,column:r.column};t<e;)n.charCodeAt(t)===10?(r.line++,r.column=1):r.column++,t++;return Ze[e]=r,r}function Pe(e,r,t){var i=rr(e),a=rr(r),f={source:F,start:{offset:e,line:i.line,column:i.column},end:{offset:r,line:a.line,column:a.column}};return t&&F&&typeof F.offset=="function"&&(f.start=F.offset(f.start),f.end=F.offset(f.end)),f}function A(e){s<ie||(s>ie&&(ie=s,Pu=[]),Pu.push(e))}function ll(e,r){return new $e(e,null,null,r)}function ir(e,r,t){return new $e($e.buildMessage(e,r),e,r,t)}function tr(){var e,r,t,i;return e=s,r=c(),t=SA(),i=c(),p=e,e=gf(t),e}function Al(){var e,r,t,i;return e=s,r=c(),t=kA(),i=c(),p=e,e=Df(t),e}function De(){var e;return n.length>s?(e=n.charAt(s),s++):(e=u,l===0&&A(Qi)),e}function fr(){var e,r,t,i;return l++,n.charCodeAt(s)===9?(e=I,s++):(e=u,l===0&&A(u1)),e===u&&(n.charCodeAt(s)===11?(e=H,s++):(e=u,l===0&&A(s1)),e===u&&(n.charCodeAt(s)===12?(e=b,s++):(e=u,l===0&&A(r1)),e===u&&(n.charCodeAt(s)===32?(e=x,s++):(e=u,l===0&&A(i1)),e===u&&(n.charCodeAt(s)===160?(e=O,s++):(e=u,l===0&&A(t1)),e===u&&(n.charCodeAt(s)===65279?(e=me,s++):(e=u,l===0&&A(f1)),e===u&&(e=Ml(),e===u&&(e=s,n.charCodeAt(s)===92?(r=ae,s++):(r=u,l===0&&A(ne)),r!==u?(ki.test(n.charAt(s))?(t=n.charAt(s),s++):(t=u,l===0&&A(a1)),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,n.charCodeAt(s)===92?(r=ae,s++):(r=u,l===0&&A(ne)),r!==u?(t=s,l++,i=Je(),l--,i!==u?(s=t,t=void 0):t=u,t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u))))))))),l--,e===u&&(r=u,l===0&&A(e1)),e}function ke(){var e;return Li.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(n1)),e}function Je(){var e,r;return l++,n.charCodeAt(s)===10?(e=oi,s++):(e=u,l===0&&A(A1)),e===u&&(n.substr(s,2)===ys?(e=ys,s+=2):(e=u,l===0&&A(o1)),e===u&&(n.charCodeAt(s)===13?(e=ci,s++):(e=u,l===0&&A(c1)),e===u&&(n.charCodeAt(s)===8232?(e=Ei,s++):(e=u,l===0&&A(E1)),e===u&&(n.charCodeAt(s)===8233?(e=pi,s++):(e=u,l===0&&A(p1)))))),l--,e===u&&(r=u,l===0&&A(l1)),e}function ar(){var e,r;return l++,e=s,r=ol(),r===u&&(r=cl()),r!==u?e=n.substring(e,s):e=r,l--,e===u&&(r=u,l===0&&A(C1)),e}function ol(){var e,r,t,i,a,f,o;if(e=s,n.substr(s,2)===hs?(r=hs,s+=2):(r=u,l===0&&A(F1)),r!==u){for(t=s,i=[],a=s,f=s,l++,n.substr(s,2)===xe?(o=xe,s+=2):(o=u,l===0&&A($u)),l--,o===u?f=void 0:(s=f,f=u),f!==u?(o=De(),o!==u?(f=[f,o],a=f):(s=a,a=u)):(s=a,a=u);a!==u;)i.push(a),a=s,f=s,l++,n.substr(s,2)===xe?(o=xe,s+=2):(o=u,l===0&&A($u)),l--,o===u?f=void 0:(s=f,f=u),f!==u?(o=De(),o!==u?(f=[f,o],a=f):(s=a,a=u)):(s=a,a=u);t=n.substring(t,s),n.substr(s,2)===xe?(i=xe,s+=2):(i=u,l===0&&A($u)),i!==u?(p=e,e=df(t)):(s=e,e=u)}else s=e,e=u;return e}function cl(){var e,r,t,i,a,f,o;if(e=s,n.substr(s,2)===ms?(r=ms,s+=2):(r=u,l===0&&A(B1)),r!==u){for(t=s,i=[],a=s,f=s,l++,o=ke(),l--,o===u?f=void 0:(s=f,f=u),f!==u?(o=De(),o!==u?(f=[f,o],a=f):(s=a,a=u)):(s=a,a=u);a!==u;)i.push(a),a=s,f=s,l++,o=ke(),l--,o===u?f=void 0:(s=f,f=u),f!==u?(o=De(),o!==u?(f=[f,o],a=f):(s=a,a=u)):(s=a,a=u);t=n.substring(t,s),p=e,e=vf(t)}else s=e,e=u;return e}function L(){var e,r,t;return e=s,r=s,l++,t=Cl(),l--,t===u?r=void 0:(s=r,r=u),r!==u?(t=ce(),t!==u?(p=e,e=$f(t)):(s=e,e=u)):(s=e,e=u),e}function ce(){var e,r,t,i,a;if(l++,e=s,n.charCodeAt(s)===64?(r=Eu,s++):(r=u,l===0&&A(yu)),r===u&&(r=null),t=Le(),t!==u){for(i=[],a=h();a!==u;)i.push(a),a=h();p=e,e=yf(t,i)}else s=e,e=u;return l--,e===u&&(r=u,l===0&&A(g1)),e}function Le(){var e,r,t;return e=El(),e===u&&(n.charCodeAt(s)===36?(e=Ci,s++):(e=u,l===0&&A(D1)),e===u&&(n.charCodeAt(s)===95?(e=Fi,s++):(e=u,l===0&&A(d1)),e===u&&(e=s,n.charCodeAt(s)===92?(r=ae,s++):(r=u,l===0&&A(ne)),r!==u?(t=$r(),t!==u?(p=e,e=hf(t)):(s=e,e=u)):(s=e,e=u)))),e}function h(){var e;return e=Le(),e===u&&(e=pl(),e===u&&(e=Ll(),e===u&&(e=Ol(),e===u&&(n.charCodeAt(s)===8204?(e=Bi,s++):(e=u,l===0&&A(v1)),e===u&&(n.charCodeAt(s)===8205?(e=gi,s++):(e=u,l===0&&A($1))))))),e}function El(){var e;return e=Nl(),e===u&&(e=bl(),e===u&&(e=wl(),e===u&&(e=Sl(),e===u&&(e=Tl(),e===u&&(e=Il()))))),e}function pl(){var e;return e=kl(),e===u&&(e=Pl()),e}function Cl(){var e;return e=Fl(),e===u&&(e=lr(),e===u&&(e=Ar(),e===u&&(e=ku()))),e}function Fl(){var e;return e=yr(),e===u&&(e=de(),e===u&&(e=Ye(),e===u&&(e=Iu(),e===u&&(e=hr(),e===u&&(e=Ou(),e===u&&(e=Mu(),e===u&&(e=Xe(),e===u&&(e=Uu(),e===u&&(e=ju(),e===u&&(e=mr(),e===u&&(e=zu(),e===u&&(e=xr(),e===u&&(e=br(),e===u&&(e=Ru(),e===u&&(e=Qe(),e===u&&(e=eu(),e===u&&(e=Vu(),e===u&&(e=Ie(),e===u&&(e=Sr(),e===u&&(e=Tr(),e===u&&(e=Rl(),e===u&&(e=qu(),e===u&&(e=uu(),e===u&&(e=Wu(),e===u&&(e=wr(),e===u&&(e=Ku(),e===u&&(e=_u(),e===u&&(e=Hu(),e===u&&(e=Zu(),e===u&&(e=su(),e===u&&(e=ru()))))))))))))))))))))))))))))))),e}function nr(){var e;return e=lr(),e===u&&(e=Ar(),e===u&&(e=ku(),e===u&&(e=Bl(),e===u&&(e=Br())))),e}function lr(){var e,r;return e=s,r=ql(),r!==u&&(p=e,r=mf()),e=r,e}function Ar(){var e,r;return e=s,r=Vl(),r!==u&&(p=e,r=xf()),e=r,e}function ku(){var e,r;return e=s,r=Wl(),r!==u&&(p=e,r=bf()),e=r,e===u&&(e=s,r=Ul(),r!==u&&(p=e,r=Sf()),e=r),e}function Bl(){var e,r,t,i;return l++,e=s,r=Cr(),r!==u?(t=s,l++,i=Le(),i===u&&(i=K()),l--,i===u?t=void 0:(s=t,t=u),t!==u?e=r:(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=cr(),r!==u?(t=s,l++,i=Le(),i===u&&(i=K()),l--,i===u?t=void 0:(s=t,t=u),t!==u?e=r:(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=Fr(),r!==u?(t=s,l++,i=Le(),i===u&&(i=K()),l--,i===u?t=void 0:(s=t,t=u),t!==u?e=r:(s=e,e=u)):(s=e,e=u))),l--,e===u&&(r=u,l===0&&A(y1)),e}function or(){var e;return n.substr(s,1).toLowerCase()===xs?(e=n.charAt(s),s++):(e=u,l===0&&A(h1)),e===u&&(n.substr(s,1).toLowerCase()===Di?(e=n.charAt(s),s++):(e=u,l===0&&A(m1))),e}function cr(){var e,r,t,i,a,f,o,E,B,d;if(e=s,r=s,t=s,i=Er(),i!==u){if(n.substr(s,1).toLowerCase()===pu?(a=n.charAt(s),s++):(a=u,l===0&&A(hu)),a===u){if(a=s,f=s,o=s,n.charCodeAt(s)===46?(E=Ae,s++):(E=u,l===0&&A(oe)),E!==u){if(B=[],d=K(),d!==u)for(;d!==u;)B.push(d),d=K();else B=u;B!==u?(E=[E,B],o=E):(s=o,o=u)}else s=o,o=u;o===u&&(o=null),E=pr(),E===u&&(E=null),o=[o,E],f=o,o=or(),o===u&&(o=null),f=[f,o],a=f}a===u&&(a=null),i=[i,a],t=i}else s=t,t=u;if(t!==u?r=n.substring(r,s):r=t,r!==u&&(p=e,r=Tf(r)),e=r,e===u){if(e=s,r=s,t=s,n.charCodeAt(s)===46?(i=Ae,s++):(i=u,l===0&&A(oe)),i!==u){if(a=[],f=K(),f!==u)for(;f!==u;)a.push(f),f=K();else a=u;a!==u?(f=pr(),f===u&&(f=null),i=[i,a,f],t=i):(s=t,t=u)}else s=t,t=u;t!==u?r=n.substring(r,s):r=t,r!==u?(t=or(),t===u&&(t=null),p=e,e=wf(r,t)):(s=e,e=u)}return e}function Er(){var e,r,t,i,a;if(e=s,r=s,n.charCodeAt(s)===48?(t=Cu,s++):(t=u,l===0&&A(mu)),t!==u?(i=s,l++,a=Lu(),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r===u)if(r=s,t=Dl(),t!==u){for(i=[],a=K();a!==u;)i.push(a),a=K();t=[t,i],r=t}else s=r,r=u;return r!==u?e=n.substring(e,s):e=r,e}function gl(){var e,r;return e=s,r=Er(),r!==u&&(p=e,r=Nf(r)),e=r,e}function K(){var e;return Ii.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(x1)),e}function Dl(){var e;return Oi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(b1)),e}function pr(){var e,r,t;return e=s,r=dl(),r!==u?(t=vl(),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function dl(){var e;return n.substr(s,1).toLowerCase()===di?(e=n.charAt(s),s++):(e=u,l===0&&A(S1)),e}function vl(){var e,r,t,i;if(e=s,Mi.test(n.charAt(s))?(r=n.charAt(s),s++):(r=u,l===0&&A(T1)),r===u&&(r=null),t=[],i=K(),i!==u)for(;i!==u;)t.push(i),i=K();else t=u;return t!==u?(r=[r,t],e=r):(s=e,e=u),e}function Cr(){var e,r,t,i,a,f;if(e=s,r=s,t=s,n.substr(s,2).toLowerCase()===vi?(i=n.substr(s,2),s+=2):(i=u,l===0&&A(w1)),i!==u){if(a=[],f=te(),f!==u)for(;f!==u;)a.push(f),f=te();else a=u;a!==u?(n.substr(s,1).toLowerCase()===pu?(f=n.charAt(s),s++):(f=u,l===0&&A(hu)),f===u&&(f=null),i=[i,a,f],t=i):(s=t,t=u)}else s=t,t=u;return t!==u?r=n.substring(r,s):r=t,r!==u&&(p=e,r=Pf(r)),e=r,e}function te(){var e;return Ui.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(N1)),e}function Fr(){var e,r,t,i,a,f;if(e=s,r=s,t=s,n.charCodeAt(s)===48?(i=Cu,s++):(i=u,l===0&&A(mu)),i!==u){for(a=[],f=Lu();f!==u;)a.push(f),f=Lu();n.substr(s,1).toLowerCase()===pu?(f=n.charAt(s),s++):(f=u,l===0&&A(hu)),f===u&&(f=null),i=[i,a,f],t=i}else s=t,t=u;return t!==u?r=n.substring(r,s):r=t,r!==u&&(p=e,r=kf(r)),e=r,e}function Lu(){var e;return ji.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(P1)),e}function Br(){var e,r,t,i;if(l++,e=s,n.charCodeAt(s)===34?(r=qe,s++):(r=u,l===0&&A(_e)),r!==u){for(t=[],i=gr();i!==u;)t.push(i),i=gr();n.charCodeAt(s)===34?(i=qe,s++):(i=u,l===0&&A(_e)),i!==u?(p=e,e=Lf(t)):(s=e,e=u)}else s=e,e=u;return e===u&&(e=s,n.charCodeAt(s)===39?(r=We,s++):(r=u,l===0&&A(He)),r!==u?(t=$l(),t!==u?(n.charCodeAt(s)===39?(i=We,s++):(i=u,l===0&&A(He)),i!==u?(p=e,e=If(t)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)),l--,e===u&&(r=u,l===0&&A(k1)),e}function gr(){var e,r,t;return e=s,r=s,l++,n.charCodeAt(s)===34?(t=qe,s++):(t=u,l===0&&A(_e)),t===u&&(n.charCodeAt(s)===92?(t=ae,s++):(t=u,l===0&&A(ne)),t===u&&(t=ke())),l--,t===u?r=void 0:(s=r,r=u),r!==u?(t=De(),t!==u?(p=e,e=Of()):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,n.charCodeAt(s)===92?(r=ae,s++):(r=u,l===0&&A(ne)),r!==u?(t=dr(),t!==u?(p=e,e=Mf(t)):(s=e,e=u)):(s=e,e=u),e===u&&(e=Dr())),e}function $l(){var e,r,t;return e=s,r=s,l++,n.charCodeAt(s)===39?(t=We,s++):(t=u,l===0&&A(He)),t===u&&(n.charCodeAt(s)===92?(t=ae,s++):(t=u,l===0&&A(ne)),t===u&&(t=ke())),l--,t===u?r=void 0:(s=r,r=u),r!==u?(t=De(),t!==u?(p=e,e=Uf()):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,n.charCodeAt(s)===92?(r=ae,s++):(r=u,l===0&&A(ne)),r!==u?(t=dr(),t!==u?(p=e,e=jf(t)):(s=e,e=u)):(s=e,e=u),e===u&&(e=Dr())),e}function Dr(){var e,r,t;return e=s,n.charCodeAt(s)===92?(r=ae,s++):(r=u,l===0&&A(ne)),r!==u?(t=Je(),t!==u?(p=e,e=zf()):(s=e,e=u)):(s=e,e=u),e}function dr(){var e,r,t,i;return e=yl(),e===u&&(e=s,n.charCodeAt(s)===48?(r=Cu,s++):(r=u,l===0&&A(mu)),r!==u?(t=s,l++,i=K(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(p=e,e=Rf()):(s=e,e=u)):(s=e,e=u),e===u&&(e=xl(),e===u&&(e=$r()))),e}function yl(){var e;return e=vr(),e===u&&(e=hl()),e}function vr(){var e,r;return n.charCodeAt(s)===39?(e=We,s++):(e=u,l===0&&A(He)),e===u&&(n.charCodeAt(s)===34?(e=qe,s++):(e=u,l===0&&A(_e)),e===u&&(n.charCodeAt(s)===92?(e=ae,s++):(e=u,l===0&&A(ne)),e===u&&(e=s,n.charCodeAt(s)===98?(r=Fu,s++):(r=u,l===0&&A(xu)),r!==u&&(p=e,r=Vf()),e=r,e===u&&(e=s,n.charCodeAt(s)===102?(r=xs,s++):(r=u,l===0&&A(L1)),r!==u&&(p=e,r=qf()),e=r,e===u&&(e=s,n.charCodeAt(s)===110?(r=$i,s++):(r=u,l===0&&A(I1)),r!==u&&(p=e,r=Wf()),e=r,e===u&&(e=s,n.charCodeAt(s)===114?(r=yi,s++):(r=u,l===0&&A(O1)),r!==u&&(p=e,r=Kf()),e=r,e===u&&(e=s,n.charCodeAt(s)===116?(r=hi,s++):(r=u,l===0&&A(M1)),r!==u&&(p=e,r=_f()),e=r,e===u&&(e=s,n.charCodeAt(s)===118?(r=mi,s++):(r=u,l===0&&A(U1)),r!==u&&(p=e,r=Hf()),e=r)))))))),e}function hl(){var e,r,t;return e=s,r=s,l++,t=ml(),t===u&&(t=ke()),l--,t===u?r=void 0:(s=r,r=u),r!==u?(t=De(),t!==u?(p=e,e=Zf()):(s=e,e=u)):(s=e,e=u),e}function ml(){var e;return e=vr(),e===u&&(e=K(),e===u&&(n.charCodeAt(s)===120?(e=bs,s++):(e=u,l===0&&A(W0)),e===u&&(n.charCodeAt(s)===117?(e=Ss,s++):(e=u,l===0&&A(K0))))),e}function xl(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===120?(r=bs,s++):(r=u,l===0&&A(W0)),r!==u?(t=s,i=s,a=te(),a!==u?(f=te(),f!==u?(a=[a,f],i=a):(s=i,i=u)):(s=i,i=u),i!==u?t=n.substring(t,s):t=i,t!==u?(p=e,e=Gf(t)):(s=e,e=u)):(s=e,e=u),e}function $r(){var e,r,t,i,a,f,o,E;return e=s,n.charCodeAt(s)===117?(r=Ss,s++):(r=u,l===0&&A(K0)),r!==u?(t=s,i=s,a=te(),a!==u?(f=te(),f!==u?(o=te(),o!==u?(E=te(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u)):(s=i,i=u)):(s=i,i=u),i!==u?t=n.substring(t,s):t=i,t!==u?(p=e,e=Jf(t)):(s=e,e=u)):(s=e,e=u),e}function bl(){var e;return zi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(j1)),e}function Sl(){var e;return Ri.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(z1)),e}function Tl(){var e;return Vi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(R1)),e}function wl(){var e;return qi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(V1)),e}function Nl(){var e;return Wi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(q1)),e}function Pl(){var e;return Ki.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(W1)),e}function kl(){var e;return _i.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(K1)),e}function Ll(){var e;return Hi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(_1)),e}function Il(){var e;return Zi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(H1)),e}function Ol(){var e;return Gi.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(Z1)),e}function Ml(){var e;return Ji.test(n.charAt(s))?(e=n.charAt(s),s++):(e=u,l===0&&A(G1)),e}function yr(){var e,r,t,i;return e=s,n.substr(s,3)===Ts?(r=Ts,s+=3):(r=u,l===0&&A(J1)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function de(){var e,r,t,i;return e=s,n.substr(s,2)===ws?(r=ws,s+=2):(r=u,l===0&&A(Y1)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Ye(){var e,r,t,i;return e=s,n.substr(s,5)===Ns?(r=Ns,s+=5):(r=u,l===0&&A(X1)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Iu(){var e,r,t,i;return e=s,n.substr(s,4)===Ps?(r=Ps,s+=4):(r=u,l===0&&A(Q1)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function hr(){var e,r,t,i;return e=s,n.substr(s,5)===ks?(r=ks,s+=5):(r=u,l===0&&A(et)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Ou(){var e,r,t,i;return e=s,n.substr(s,5)===Ls?(r=Ls,s+=5):(r=u,l===0&&A(ut)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Mu(){var e,r,t,i;return e=s,n.substr(s,5)===Is?(r=Is,s+=5):(r=u,l===0&&A(st)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Xe(){var e,r,t,i;return e=s,n.substr(s,8)===Os?(r=Os,s+=8):(r=u,l===0&&A(rt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Uu(){var e,r,t,i;return e=s,n.substr(s,7)===Ms?(r=Ms,s+=7):(r=u,l===0&&A(it)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function ju(){var e,r,t,i;return e=s,n.substr(s,2)===Us?(r=Us,s+=2):(r=u,l===0&&A(tt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function mr(){var e,r,t,i;return e=s,n.substr(s,4)===js?(r=js,s+=4):(r=u,l===0&&A(ft)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function zu(){var e,r,t,i;return e=s,n.substr(s,4)===zs?(r=zs,s+=4):(r=u,l===0&&A(at)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function xr(){var e,r,t,i;return e=s,n.substr(s,7)===Rs?(r=Rs,s+=7):(r=u,l===0&&A(nt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Ul(){var e,r,t,i;return e=s,n.substr(s,5)===Vs?(r=Vs,s+=5):(r=u,l===0&&A(lt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function br(){var e,r,t,i;return e=s,n.substr(s,7)===qs?(r=qs,s+=7):(r=u,l===0&&A(At)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Ru(){var e,r,t,i;return e=s,n.substr(s,3)===Ws?(r=Ws,s+=3):(r=u,l===0&&A(ot)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Qe(){var e,r,t,i;return e=s,n.substr(s,8)===Ks?(r=Ks,s+=8):(r=u,l===0&&A(ct)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function eu(){var e,r,t,i;return e=s,n.substr(s,3)===_s?(r=_s,s+=3):(r=u,l===0&&A(Et)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Vu(){var e,r,t,i;return e=s,n.substr(s,2)===Hs?(r=Hs,s+=2):(r=u,l===0&&A(pt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function jl(){var e,r,t,i;return e=s,n.substr(s,6)===Zs?(r=Zs,s+=6):(r=u,l===0&&A(Ct)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Ie(){var e,r,t,i;return e=s,n.substr(s,10)===Gs?(r=Gs,s+=10):(r=u,l===0&&A(Ft)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Sr(){var e,r,t,i;return e=s,n.substr(s,9)===Js?(r=Js,s+=9):(r=u,l===0&&A(Bt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Tr(){var e,r,t,i;return e=s,n.substr(s,2)===Ys?(r=Ys,s+=2):(r=u,l===0&&A(gt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function zl(){var e,r,t,i;return e=s,n.substr(s,6)===Xs?(r=Xs,s+=6):(r=u,l===0&&A(Dt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Rl(){var e,r,t,i;return e=s,n.substr(s,6)===Qs?(r=Qs,s+=6):(r=u,l===0&&A(dt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Vl(){var e,r,t,i;return e=s,n.substr(s,3)===e0?(r=e0,s+=3):(r=u,l===0&&A(vt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function qu(){var e,r,t,i;return e=s,n.substr(s,3)===u0?(r=u0,s+=3):(r=u,l===0&&A($t)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function ql(){var e,r,t,i;return e=s,n.substr(s,4)===s0?(r=s0,s+=4):(r=u,l===0&&A(yt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function uu(){var e,r,t,i;return e=s,n.substr(s,2)===r0?(r=r0,s+=2):(r=u,l===0&&A(ht)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Wu(){var e,r,t,i;return e=s,n.substr(s,6)===i0?(r=i0,s+=6):(r=u,l===0&&A(mt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function wr(){var e,r,t,i;return e=s,n.substr(s,4)===t0?(r=t0,s+=4):(r=u,l===0&&A(xt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function y2(){var e,r,t,i;return e=s,n.substr(s,6)===Ke?(r=Ke,s+=6):(r=u,l===0&&A(_0)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function h2(){var e,r,t,i;return e=s,n.substr(s,5)===f0?(r=f0,s+=5):(r=u,l===0&&A(bt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Ku(){var e,r,t,i;return e=s,n.substr(s,6)===a0?(r=a0,s+=6):(r=u,l===0&&A(St)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function _u(){var e,r,t,i;return e=s,n.substr(s,5)===n0?(r=n0,s+=5):(r=u,l===0&&A(Tt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Wl(){var e,r,t,i;return e=s,n.substr(s,4)===l0?(r=l0,s+=4):(r=u,l===0&&A(wt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Hu(){var e,r,t,i;return e=s,n.substr(s,3)===A0?(r=A0,s+=3):(r=u,l===0&&A(Nt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Zu(){var e,r,t,i;return e=s,n.substr(s,7)===o0?(r=o0,s+=7):(r=u,l===0&&A(Pt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function Kl(){var e,r,t,i;return e=s,n.substr(s,5)===c0?(r=c0,s+=5):(r=u,l===0&&A(kt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function su(){var e,r,t,i;return e=s,n.substr(s,3)===E0?(r=E0,s+=3):(r=u,l===0&&A(Lt)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function ru(){var e,r,t,i;return e=s,n.substr(s,5)===p0?(r=p0,s+=5):(r=u,l===0&&A(It)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(r=[r,t],e=r):(s=e,e=u)):(s=e,e=u),e}function c(){var e,r;for(e=[],r=fr(),r===u&&(r=Je(),r===u&&(r=ar()));r!==u;)e.push(r),r=fr(),r===u&&(r=Je(),r===u&&(r=ar()));return e}function _l(){var e;return e=Ye(),e===u&&(e=Iu(),e===u&&(e=Ou(),e===u&&(e=Mu(),e===u&&(e=Xe(),e===u&&(e=Uu(),e===u&&(e=ju(),e===u&&(e=zu(),e===u&&(e=Ru(),e===u&&(e=Qe(),e===u&&(e=Vu(),e===u&&(e=Wu(),e===u&&(e=Ku(),e===u&&(e=_u(),e===u&&(e=Hu(),e===u&&(e=Zu(),e===u&&(e=su(),e===u&&(e=ru()))))))))))))))))),e}function _(){var e,r,t,i;return e=s,r=c(),n.charCodeAt(s)===59?(t=X,s++):(t=u,l===0&&A(ue)),t===u&&(t=s,l++,n.charCodeAt(s)===125?(i=Q,s++):(i=u,l===0&&A(se)),i===u&&(i=_l()),l--,i!==u?(s=t,t=void 0):t=u),t!==u?(r=[r,t],e=r):(s=e,e=u),e}function Gu(){var e,r,t,i,a,f;return e=s,r=s,t=wr(),t===u&&(t=Tr()),t!==u?r=n.substring(r,s):r=t,r!==u&&(p=e,r=Yf(r)),e=r,e===u&&(e=L(),e===u&&(e=fu(),e===u&&(e=nr(),e===u&&(e=Hl(),e===u&&(e=Nr(),e===u&&(e=s,n.charCodeAt(s)===40?(r=j,s++):(r=u,l===0&&A(R)),r!==u?(t=c(),i=m(),i!==u?(a=c(),n.charCodeAt(s)===41?(f=q,s++):(f=u,l===0&&A(W)),f!==u?e=i:(s=e,e=u)):(s=e,e=u)):(s=e,e=u))))))),e}function Hl(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===91?(r=pe,s++):(r=u,l===0&&A(Fe)),r!==u?(t=c(),i=s,a=Zl(),a!==u?(f=c(),i=a):(s=i,i=u),i===u&&(i=null),n.charCodeAt(s)===93?(a=Ce,s++):(a=u,l===0&&A(Be)),a!==u?(n.charCodeAt(s)===98?(f=Fu,s++):(f=u,l===0&&A(xu)),f===u&&(f=null),p=e,e=Xf(i,f)):(s=e,e=u)):(s=e,e=u),e}function Zl(){var e,r,t,i,a,f,o,E;if(e=s,r=m(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=m(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=m(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(a=[a,f],i=a):(s=i,i=u),i===u&&(i=null),p=e,e=Qf(r,t)}else s=e,e=u;return e}function Nr(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u?(t=c(),i=s,a=Gl(),a!==u?(f=c(),i=a):(s=i,i=u),i===u&&(i=null),n.charCodeAt(s)===125?(a=Q,s++):(a=u,l===0&&A(se)),a!==u?(p=e,e=ea(i)):(s=e,e=u)):(s=e,e=u),e}function Gl(){var e,r,t,i,a,f,o,E;if(e=s,r=Ju(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=Ju(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=Ju(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(a=[a,f],i=a):(s=i,i=u),i===u&&(i=null),p=e,e=ua(r,t)}else s=e,e=u;return e}function Ju(){var e,r,t,i,a,f;return e=s,r=m(),r!==u?(t=c(),n.substr(s,2)===C0?(i=C0,s+=2):(i=u,l===0&&A(Ot)),i!==u?(a=c(),f=m(),f!==u?(p=e,e=sa(r,f)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function m2(){var e,r;return e=s,r=L(),r!==u&&(p=e,r=ra(r)),e=r,e}function Pr(){var e,r,t,i,a,f,o,E,B,d,$,k,S,M,Z;if(e=s,r=Gu(),r===u&&(r=s,t=qu(),t!==u?(i=s,a=c(),f=Me(),f!==u?i=f:(s=i,i=u),i===u&&(i=null),a=c(),n.charCodeAt(s)===91?(f=pe,s++):(f=u,l===0&&A(Fe)),f!==u?(o=c(),E=m(),E!==u?(B=c(),n.charCodeAt(s)===93?(d=Ce,s++):(d=u,l===0&&A(Be)),d!==u?(n.charCodeAt(s)===98?($=Fu,s++):($=u,l===0&&A(xu)),$===u&&($=null),k=s,l++,S=s,M=c(),n.charCodeAt(s)===40?(Z=j,s++):(Z=u,l===0&&A(R)),Z!==u?(M=[M,Z],S=M):(s=S,S=u),l--,S===u?k=void 0:(s=k,k=u),k!==u?(p=r,r=ia(i,E,$)):(s=r,r=u)):(s=r,r=u)):(s=r,r=u)):(s=r,r=u)):(s=r,r=u),r===u&&(r=s,t=qu(),t!==u?(i=c(),a=Pr(),a!==u?(f=c(),o=Xu(),o!==u?(p=r,r=ta(a,o)):(s=r,r=u)):(s=r,r=u)):(s=r,r=u))),r!==u){for(t=[],i=s,a=c(),f=s,n.charCodeAt(s)===91?(o=pe,s++):(o=u,l===0&&A(Fe)),o!==u?(E=c(),B=m(),B!==u?(d=c(),n.charCodeAt(s)===93?($=Ce,s++):($=u,l===0&&A(Be)),$!==u?(p=f,f=J0(r,B)):(s=f,f=u)):(s=f,f=u)):(s=f,f=u),f===u&&(f=s,n.charCodeAt(s)===46?(o=Ae,s++):(o=u,l===0&&A(oe)),o!==u?(E=c(),B=ce(),B!==u?(p=f,f=Y0(r,B)):(s=f,f=u)):(s=f,f=u)),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=s,n.charCodeAt(s)===91?(o=pe,s++):(o=u,l===0&&A(Fe)),o!==u?(E=c(),B=m(),B!==u?(d=c(),n.charCodeAt(s)===93?($=Ce,s++):($=u,l===0&&A(Be)),$!==u?(p=f,f=J0(r,B)):(s=f,f=u)):(s=f,f=u)):(s=f,f=u),f===u&&(f=s,n.charCodeAt(s)===46?(o=Ae,s++):(o=u,l===0&&A(oe)),o!==u?(E=c(),B=ce(),B!==u?(p=f,f=Y0(r,B)):(s=f,f=u)):(s=f,f=u)),f!==u?i=f:(s=i,i=u);p=e,e=fa(r,t)}else s=e,e=u;return e}function Yu(){var e,r,t,i,a,f,o,E,B,d,$;if(e=s,r=Pr(),r!==u){for(t=[],i=s,a=c(),f=s,o=Xu(),o!==u&&(p=f,o=X0(r,o)),f=o,f===u&&(f=s,n.charCodeAt(s)===91?(o=pe,s++):(o=u,l===0&&A(Fe)),o!==u?(E=c(),B=m(),B!==u?(d=c(),n.charCodeAt(s)===93?($=Ce,s++):($=u,l===0&&A(Be)),$!==u?(p=f,f=Q0(r,B)):(s=f,f=u)):(s=f,f=u)):(s=f,f=u),f===u&&(f=s,n.charCodeAt(s)===46?(o=Ae,s++):(o=u,l===0&&A(oe)),o!==u?(E=c(),B=ce(),B!==u?(p=f,f=er(r,B)):(s=f,f=u)):(s=f,f=u))),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=s,o=Xu(),o!==u&&(p=f,o=X0(r,o)),f=o,f===u&&(f=s,n.charCodeAt(s)===91?(o=pe,s++):(o=u,l===0&&A(Fe)),o!==u?(E=c(),B=m(),B!==u?(d=c(),n.charCodeAt(s)===93?($=Ce,s++):($=u,l===0&&A(Be)),$!==u?(p=f,f=Q0(r,B)):(s=f,f=u)):(s=f,f=u)):(s=f,f=u),f===u&&(f=s,n.charCodeAt(s)===46?(o=Ae,s++):(o=u,l===0&&A(oe)),o!==u?(E=c(),B=ce(),B!==u?(p=f,f=er(r,B)):(s=f,f=u)):(s=f,f=u))),f!==u?i=f:(s=i,i=u);p=e,e=aa(r,t)}else s=e,e=u;return e}function Xu(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===40?(r=j,s++):(r=u,l===0&&A(R)),r!==u?(t=c(),i=s,a=Jl(),a!==u?(f=c(),i=a):(s=i,i=u),i===u&&(i=null),n.charCodeAt(s)===41?(a=q,s++):(a=u,l===0&&A(W)),a!==u?(p=e,e=na(i)):(s=e,e=u)):(s=e,e=u),e}function Jl(){var e,r,t,i,a,f,o,E;if(e=s,r=m(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=m(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=m(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(a=[a,f],i=a):(s=i,i=u),i===u&&(i=null),p=e,e=la(r,t)}else s=e,e=u;return e}function kr(){var e,r,t,i;return e=Yu(),e===u&&(e=s,r=Yl(),r!==u?(t=c(),i=kr(),i!==u?(p=e,e=Aa(r,i)):(s=e,e=u)):(s=e,e=u)),e}function Yl(){var e,r,t,i,a;return e=s,r=s,n.charCodeAt(s)===43?(t=F0,s++):(t=u,l===0&&A(H0)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===45?(t=B0,s++):(t=u,l===0&&A(Z0)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(n.charCodeAt(s)===126?(e=xi,s++):(e=u,l===0&&A(Mt)),e===u&&(n.charCodeAt(s)===33?(e=bi,s++):(e=u,l===0&&A(Ut))))),e}function Te(){var e,r,t,i,a,f,o,E;if(e=s,r=kr(),r!==u){for(t=[],i=s,a=c(),f=s,o=de(),o!==u?f=n.substring(f,s):f=o,f!==u?(o=c(),E=ve(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=s,o=de(),o!==u?f=n.substring(f,s):f=o,f!==u?(o=c(),E=ve(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=oa(r,t)}else s=e,e=u;return e}function Xl(){var e,r,t,i,a,f,o,E;if(e=s,r=Te(),r!==u){for(t=[],i=s,a=c(),f=Lr(),f!==u?(o=c(),E=Te(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Lr(),f!==u?(o=c(),E=Te(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=ca(r,t)}else s=e,e=u;return e}function Lr(){var e,r,t,i,a;return e=s,r=s,n.charCodeAt(s)===42?(t=Si,s++):(t=u,l===0&&A(jt)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===47?(t=Ti,s++):(t=u,l===0&&A(zt)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===37?(t=g0,s++):(t=u,l===0&&A(G0)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===38?(t=wi,s++):(t=u,l===0&&A(Rt)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.substr(s,2)===D0?(t=D0,s+=2):(t=u,l===0&&A(Vt)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.substr(s,2)===d0?(t=d0,s+=2):(t=u,l===0&&A(qt)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r))))),e}function Qu(){var e,r,t,i,a,f,o,E;if(e=s,r=Xl(),r!==u){for(t=[],i=s,a=c(),f=s,o=Ie(),o!==u?f=n.substring(f,s):f=o,f===u&&(f=s,o=eu(),o!==u?f=n.substring(f,s):f=o),f!==u?(o=c(),E=Te(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=s,o=Ie(),o!==u?f=n.substring(f,s):f=o,f===u&&(f=s,o=eu(),o!==u?f=n.substring(f,s):f=o),f!==u?(o=c(),E=Te(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=Ea(r,t)}else s=e,e=u;return e}function es(){var e,r,t,i,a,f,o,E;if(e=s,r=Qu(),r!==u){for(t=[],i=s,a=c(),f=Ir(),f!==u?(o=c(),E=Qu(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Ir(),f!==u?(o=c(),E=Qu(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=pa(r,t)}else s=e,e=u;return e}function Ir(){var e,r,t,i,a;return e=s,r=s,n.charCodeAt(s)===43?(t=F0,s++):(t=u,l===0&&A(H0)),t!==u?(i=s,l++,Yi.test(n.charAt(s))?(a=n.charAt(s),s++):(a=u,l===0&&A(Wt)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===45?(t=B0,s++):(t=u,l===0&&A(Z0)),t!==u?(i=s,l++,vu.test(n.charAt(s))?(a=n.charAt(s),s++):(a=u,l===0&&A(bu)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===124?(t=Bu,s++):(t=u,l===0&&A(Su)),t!==u?(i=s,l++,vu.test(n.charAt(s))?(a=n.charAt(s),s++):(a=u,l===0&&A(bu)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===94?(t=Ni,s++):(t=u,l===0&&A(Kt)),t!==u?(i=s,l++,vu.test(n.charAt(s))?(a=n.charAt(s),s++):(a=u,l===0&&A(bu)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r))),e}function us(){var e,r,t,i,a,f,o,E;if(e=s,r=es(),r!==u){for(t=[],i=s,a=c(),f=Or(),f!==u?(o=c(),E=es(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Or(),f!==u?(o=c(),E=es(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=Ca(r,t)}else s=e,e=u;return e}function Or(){var e,r,t,i,a;return n.substr(s,2)===v0?(e=v0,s+=2):(e=u,l===0&&A(_t)),e===u&&(n.substr(s,2)===$0?(e=$0,s+=2):(e=u,l===0&&A(Ht)),e===u&&(e=s,r=s,n.charCodeAt(s)===60?(t=gu,s++):(t=u,l===0&&A(Tu)),t!==u?(i=s,l++,n.charCodeAt(s)===60?(a=gu,s++):(a=u,l===0&&A(Tu)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(e=s,r=s,n.charCodeAt(s)===62?(t=Du,s++):(t=u,l===0&&A(wu)),t!==u?(i=s,l++,n.charCodeAt(s)===62?(a=Du,s++):(a=u,l===0&&A(wu)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(n.substr(s,2)===y0?(e=y0,s+=2):(e=u,l===0&&A(Zt)),e===u&&(n.substr(s,2)===h0?(e=h0,s+=2):(e=u,l===0&&A(Gt)),e===u&&(e=s,r=eu(),r!==u?e=n.substring(e,s):e=r)))))),e}function ss(){var e,r,t,i,a,f,o,E;if(e=s,r=us(),r!==u){for(t=[],i=s,a=c(),f=Mr(),f!==u?(o=c(),E=us(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Mr(),f!==u?(o=c(),E=us(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=Fa(r,t)}else s=e,e=u;return e}function Mr(){var e,r;return n.substr(s,2)===m0?(e=m0,s+=2):(e=u,l===0&&A(Jt)),e===u&&(e=s,r=yr(),r!==u?e=n.substring(e,s):e=r),e}function Ql(){var e,r,t,i,a,f,o,E;if(e=s,r=ss(),r!==u){for(t=[],i=s,a=c(),f=Ur(),f!==u?(o=c(),E=ss(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Ur(),f!==u?(o=c(),E=ss(),E!==u?(a=[a,f,o,E],i=a):(s=i,i=u)):(s=i,i=u);p=e,e=Ba(r,t)}else s=e,e=u;return e}function Ur(){var e,r;return n.substr(s,2)===x0?(e=x0,s+=2):(e=u,l===0&&A(Yt)),e===u&&(e=s,r=uu(),r!==u?e=n.substring(e,s):e=r),e}function m(){var e,r,t,i,a,f;return e=s,r=Ql(),r!==u?(t=s,i=c(),n.charCodeAt(s)===63?(a=du,s++):(a=u,l===0&&A(Nu)),a!==u?(f=jr(),f!==u?t=f:(s=t,t=u)):(s=t,t=u),t===u&&(t=null),p=e,e=ga(r,t)):(s=e,e=u),e}function jr(){var e,r,t,i,a,f,o;return e=s,r=c(),t=m(),t!==u?(i=c(),n.charCodeAt(s)===58?(a=be,s++):(a=u,l===0&&A(Se)),a!==u?(f=c(),o=m(),o!==u?e=[t,o]:(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function eA(){var e,r,t,i,a,f,o;return e=s,r=Yu(),r!==u?(t=c(),i=s,a=uA(),a!==u?(f=c(),o=m(),o!==u?(p=i,i=Da(r,a,o)):(s=i,i=u)):(s=i,i=u),i===u&&(i=s,a=zr(),a!==u&&(p=i,a=da(r,a)),i=a,i===u&&(i=s,a=s,l++,Xi.test(n.charAt(s))?(f=n.charAt(s),s++):(f=u,l===0&&A(Xt)),l--,f!==u?(s=a,a=void 0):a=u,a!==u&&(p=i,a=va(r)),i=a)),i!==u?(p=e,e=$a(r,i)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=zr(),r!==u?(t=c(),i=Yu(),i!==u?(p=e,e=ya(r,i)):(s=e,e=u)):(s=e,e=u)),e}function uA(){var e,r,t,i,a;return e=s,r=s,n.charCodeAt(s)===61?(t=z,s++):(t=u,l===0&&A(V)),t!==u?(i=s,l++,n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),l--,a===u?i=void 0:(s=i,i=u),i!==u?(t=[t,i],r=t):(s=r,r=u)):(s=r,r=u),r!==u?e=n.substring(e,s):e=r,e===u&&(n.substr(s,2)===b0?(e=b0,s+=2):(e=u,l===0&&A(Qt)),e===u&&(n.substr(s,2)===S0?(e=S0,s+=2):(e=u,l===0&&A(ef)),e===u&&(n.substr(s,2)===T0?(e=T0,s+=2):(e=u,l===0&&A(uf)),e===u&&(n.substr(s,2)===w0?(e=w0,s+=2):(e=u,l===0&&A(sf)),e===u&&(n.substr(s,2)===N0?(e=N0,s+=2):(e=u,l===0&&A(rf)),e===u&&(n.substr(s,3)===P0?(e=P0,s+=3):(e=u,l===0&&A(tf)),e===u&&(n.substr(s,3)===k0?(e=k0,s+=3):(e=u,l===0&&A(ff)),e===u&&(n.substr(s,2)===L0?(e=L0,s+=2):(e=u,l===0&&A(af)),e===u&&(n.substr(s,2)===I0?(e=I0,s+=2):(e=u,l===0&&A(nf)),e===u&&(n.substr(s,2)===O0?(e=O0,s+=2):(e=u,l===0&&A(lf)))))))))))),e}function zr(){var e;return n.substr(s,2)===M0?(e=M0,s+=2):(e=u,l===0&&A(Af)),e===u&&(n.substr(s,2)===U0?(e=U0,s+=2):(e=u,l===0&&A(of))),e}function sA(){var e;return e=m(),e}function iu(){var e;return e=eA(),e===u&&(e=m()),e}function Rr(){var e,r,t,i,a,f,o,E;if(e=s,r=iu(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=iu(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=iu(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);p=e,e=ha(r,t)}else s=e,e=u;return e}function fe(){var e;return e=rA(),e===u&&(e=is(),e===u&&(e=tA(),e===u&&(e=fA(),e===u&&(e=aA(),e===u&&(e=nA(),e===u&&(e=lA(),e===u&&(e=AA(),e===u&&(e=CA(),e===u&&(e=oA(),e===u&&(e=FA(),e===u&&(e=BA()))))))))))),e}function tu(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u?(t=c(),i=s,a=rs(),a!==u?(f=c(),i=a):(s=i,i=u),i===u&&(i=null),n.charCodeAt(s)===125?(a=Q,s++):(a=u,l===0&&A(se)),a!==u?(p=e,e=ma(i)):(s=e,e=u)):(s=e,e=u),e}function rA(){var e,r,t;return e=tu(),e===u&&(e=s,r=Nr(),r!==u?(t=_(),t!==u?(p=e,e=xa(r)):(s=e,e=u)):(s=e,e=u)),e}function rs(){var e,r,t,i,a,f;if(e=s,r=fe(),r!==u){for(t=[],i=s,a=c(),f=fe(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=fe(),f!==u?i=f:(s=i,i=u);p=e,e=ba(r,t)}else s=e,e=u;return e}function is(){var e,r,t,i,a,f;return e=s,r=s,t=Oe(),t!==u?(i=c(),r=t):(s=r,r=u),r===u&&(r=null),t=s,i=su(),i!==u?t=n.substring(t,s):t=i,t===u&&(t=s,i=Mu(),i!==u?t=n.substring(t,s):t=i),t!==u?(i=c(),a=Vr(),a!==u?(f=_(),f!==u?(p=e,e=Sa(r,t,a)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function Vr(){var e,r,t,i,a,f,o,E;if(e=s,r=ts(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=ts(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=ts(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);p=e,e=Ta(r,t)}else s=e,e=u;return e}function ts(){var e,r,t,i,a;return e=s,r=au(),r!==u?(t=s,i=c(),a=iA(),a!==u?t=a:(s=t,t=u),t===u&&(t=null),p=e,e=wa(r,t)):(s=e,e=u),e}function iA(){var e,r,t,i,a;return e=s,n.charCodeAt(s)===61?(r=z,s++):(r=u,l===0&&A(V)),r!==u?(t=s,l++,n.charCodeAt(s)===61?(i=z,s++):(i=u,l===0&&A(V)),l--,i===u?t=void 0:(s=t,t=u),t!==u?(i=c(),a=m(),a!==u?(p=e,e=Na(a)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function tA(){var e,r,t,i;return e=s,r=s,l++,n.charCodeAt(s)===123?(t=ee,s++):(t=u,l===0&&A(re)),t===u&&(t=Qe()),l--,t===u?r=void 0:(s=r,r=u),r!==u?(t=iu(),t!==u?(i=_(),i!==u?(p=e,e=Pa(t)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function fA(){var e,r,t,i,a,f,o,E,B,d,$,k,S,M,Z;return e=s,r=Vu(),r!==u?(t=c(),n.charCodeAt(s)===40?(i=j,s++):(i=u,l===0&&A(R)),i!==u?(a=c(),f=m(),f!==u?(o=c(),n.charCodeAt(s)===41?(E=q,s++):(E=u,l===0&&A(W)),E!==u?(B=c(),d=fe(),d!==u?($=s,k=c(),S=mr(),S!==u?(M=c(),Z=fe(),Z!==u?$=Z:(s=$,$=u)):(s=$,$=u),$===u&&($=null),p=e,e=ka(f,d,$)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function aA(){var e,r,t,i,a,f,o,E,B,d,$,k,S,M,Z;return e=s,r=ju(),r!==u?(t=c(),i=fe(),i!==u?(a=c(),f=ru(),f!==u?(o=c(),n.charCodeAt(s)===40?(E=j,s++):(E=u,l===0&&A(R)),E!==u?(B=c(),d=m(),d!==u?($=c(),n.charCodeAt(s)===41?(k=q,s++):(k=u,l===0&&A(W)),k!==u?(S=_(),S!==u?(p=e,e=La(i,d)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=ru(),r!==u?(t=c(),n.charCodeAt(s)===40?(i=j,s++):(i=u,l===0&&A(R)),i!==u?(a=c(),f=m(),f!==u?(o=c(),n.charCodeAt(s)===41?(E=q,s++):(E=u,l===0&&A(W)),E!==u?(B=c(),d=fe(),d!==u?(p=e,e=Ia(f,d)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=Ru(),r!==u?(t=c(),n.charCodeAt(s)===40?(i=j,s++):(i=u,l===0&&A(R)),i!==u?(a=c(),f=s,o=s,E=Rr(),E!==u?o=E:(s=o,o=u),o===u&&(o=s,E=su(),E!==u?(B=c(),d=s,$=Vr(),$!==u&&(p=d,$=Oa($)),d=$,d!==u?o=d:(s=o,o=u)):(s=o,o=u)),o!==u?(E=c(),f=o):(s=f,f=u),f===u&&(f=null),n.charCodeAt(s)===59?(o=X,s++):(o=u,l===0&&A(ue)),o!==u?(E=c(),B=s,d=m(),d!==u?($=c(),B=d):(s=B,B=u),B===u&&(B=null),n.charCodeAt(s)===59?(d=X,s++):(d=u,l===0&&A(ue)),d!==u?($=c(),k=s,S=Rr(),S!==u?(M=c(),k=S):(s=k,k=u),k===u&&(k=null),n.charCodeAt(s)===41?(S=q,s++):(S=u,l===0&&A(W)),S!==u?(M=c(),Z=fe(),Z!==u?(p=e,e=Ma(f,B,k,Z)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u))),e}function nA(){var e,r,t,i,a;return e=s,r=Xe(),r!==u?(t=_(),t!==u?(p=e,e=Ua()):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=Xe(),r!==u?(t=c(),i=L(),i!==u?(a=_(),a!==u?(p=e,e=ja(i)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)),e}function lA(){var e,r,t,i,a;return e=s,r=Ye(),r!==u?(t=_(),t!==u?(p=e,e=za()):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=Ye(),r!==u?(t=c(),i=L(),i!==u?(a=_(),a!==u?(p=e,e=Ra(i)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)),e}function AA(){var e,r,t,i,a;return e=s,r=Wu(),r!==u?(t=s,i=c(),a=m(),a!==u?t=a:(s=t,t=u),t===u&&(t=null),i=_(),i!==u?(p=e,e=Va(t)):(s=e,e=u)):(s=e,e=u),e}function oA(){var e,r,t,i,a,f,o,E,B,d;return e=s,r=Ku(),r!==u?(t=c(),n.charCodeAt(s)===40?(i=j,s++):(i=u,l===0&&A(R)),i!==u?(a=c(),f=m(),f!==u?(o=c(),n.charCodeAt(s)===41?(E=q,s++):(E=u,l===0&&A(W)),E!==u?(B=c(),d=cA(),d!==u?(p=e,e=qa(f,d)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function cA(){var e,r,t,i,a,f,o,E,B,d;return e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u?(t=c(),i=s,a=qr(),a!==u?(f=c(),i=a):(s=i,i=u),i===u&&(i=null),a=s,f=pA(),f!==u?(o=c(),E=s,B=qr(),B!==u?(d=c(),E=B):(s=E,E=u),E===u&&(E=null),p=a,a=Wa(i,f,E)):(s=a,a=u),a===u&&(a=null),n.charCodeAt(s)===125?(f=Q,s++):(f=u,l===0&&A(se)),f!==u?(p=e,e=Ka(i,a)):(s=e,e=u)):(s=e,e=u),e}function qr(){var e,r,t,i,a,f;if(e=s,r=fs(),r!==u){for(t=[],i=s,a=c(),f=fs(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=fs(),f!==u?i=f:(s=i,i=u);p=e,e=_a(r,t)}else s=e,e=u;return e}function EA(){var e,r,t,i;return e=s,r=Ie(),r!==u?(t=c(),i=Ee(),i!==u?(p=e,e=Ha(i)):(s=e,e=u)):(s=e,e=u),e}function fs(){var e,r,t,i,a,f,o,E,B;return e=s,r=Iu(),r!==u?(t=c(),i=m(),i===u&&(i=EA()),i!==u?(a=c(),n.charCodeAt(s)===58?(f=be,s++):(f=u,l===0&&A(Se)),f!==u?(o=s,E=c(),B=rs(),B!==u?o=B:(s=o,o=u),o===u&&(o=null),p=e,e=Za(i,o)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function pA(){var e,r,t,i,a,f,o;return e=s,r=Uu(),r!==u?(t=c(),n.charCodeAt(s)===58?(i=be,s++):(i=u,l===0&&A(Se)),i!==u?(a=s,f=c(),o=rs(),o!==u?a=o:(s=a,a=u),a===u&&(a=null),p=e,e=Ga(a)):(s=e,e=u)):(s=e,e=u),e}function CA(){var e,r,t,i,a,f;return e=s,r=L(),r!==u?(t=c(),n.charCodeAt(s)===58?(i=be,s++):(i=u,l===0&&A(Se)),i!==u?(a=c(),f=fe(),f!==u?(p=e,e=Ja(r,f)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function FA(){var e,r,t,i,a;return e=s,r=_u(),r!==u?(t=c(),i=m(),i!==u?(a=_(),a!==u?(p=e,e=Ya(i)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function BA(){var e,r,t,i,a,f,o,E;return e=s,r=Hu(),r!==u?(t=c(),i=tu(),i!==u?(a=c(),f=gA(),f===u&&(f=null),o=c(),E=dA(),E===u&&(E=null),p=e,e=Xa(i,f,E)):(s=e,e=u)):(s=e,e=u),e}function gA(){var e,r,t,i,a;if(e=s,r=[],t=s,i=Wr(),i!==u?(a=c(),t=i):(s=t,t=u),t!==u)for(;t!==u;)r.push(t),t=s,i=Wr(),i!==u?(a=c(),t=i):(s=t,t=u);else r=u;return r!==u&&(p=e,r=Qa(r)),e=r,e}function Wr(){var e,r,t,i,a,f,o,E,B,d;return e=s,r=hr(),r!==u?(t=c(),n.charCodeAt(s)===40?(i=j,s++):(i=u,l===0&&A(R)),i!==u?(a=c(),f=DA(),f!==u?(o=c(),n.charCodeAt(s)===41?(E=q,s++):(E=u,l===0&&A(W)),E!==u?(B=c(),d=tu(),d!==u?(p=e,e=en(f,d)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function DA(){var e,r,t,i,a,f,o;return e=s,r=L(),r!==u?(t=s,i=c(),a=s,f=Ie(),f!==u?a=n.substring(a,s):a=f,a!==u?(f=c(),o=Ee(),o!==u?t=[a,o]:(s=t,t=u)):(s=t,t=u),t===u&&(t=null),p=e,e=un(r,t)):(s=e,e=u),e}function dA(){var e,r,t,i;return e=s,r=br(),r!==u?(t=c(),i=tu(),i!==u?(p=e,e=sn(i)):(s=e,e=u)):(s=e,e=u),e}function fu(){var e,r,t,i;return e=s,n.charCodeAt(s)===58?(r=be,s++):(r=u,l===0&&A(Se)),r!==u?(t=c(),i=L(),i!==u?(p=e,e=rn(i)):(s=e,e=u)):(s=e,e=u),e}function as(){var e,r,t,i,a,f,o,E,B;return e=s,r=fu(),r!==u?(t=s,i=c(),n.charCodeAt(s)===40?(a=j,s++):(a=u,l===0&&A(R)),a!==u?(f=c(),o=Gu(),o!==u?(E=c(),n.charCodeAt(s)===41?(B=q,s++):(B=u,l===0&&A(W)),B!==u?t=o:(s=t,t=u)):(s=t,t=u)):(s=t,t=u),t===u&&(t=null),p=e,e=tn(r,t)):(s=e,e=u),e}function Oe(){var e,r,t,i,a;return e=s,r=vA(),r!==u?(t=s,i=c(),a=ns(),a!==u?t=a:(s=t,t=u),t===u&&(t=null),p=e,e=fn(r,t)):(s=e,e=u),e===u&&(e=s,r=ns(),r!==u&&(p=e,r=an(r)),e=r,e===u&&(e=s,r=Kr(),r!==u?(t=s,i=c(),a=ns(),a!==u?t=a:(s=t,t=u),t===u&&(t=null),p=e,e=nn(r,t)):(s=e,e=u))),e}function Kr(){var e,r,t,i,a,f,o;if(e=s,n.charCodeAt(s)===91?(r=pe,s++):(r=u,l===0&&A(Fe)),r!==u){if(t=c(),i=[],a=s,f=_r(),f!==u?(o=c(),a=f):(s=a,a=u),a!==u)for(;a!==u;)i.push(a),a=s,f=_r(),f!==u?(o=c(),a=f):(s=a,a=u);else i=u;i!==u?(n.charCodeAt(s)===93?(a=Ce,s++):(a=u,l===0&&A(Be)),a!==u?(p=e,e=ln(i)):(s=e,e=u)):(s=e,e=u)}else s=e,e=u;return e}function _r(){var e,r,t,i,a,f,o,E,B;return e=s,n.charCodeAt(s)===64?(r=Eu,s++):(r=u,l===0&&A(yu)),r===u&&(r=null),t=s,i=ce(),i!==u?t=n.substring(t,s):t=i,t!==u?(i=c(),n.charCodeAt(s)===61?(a=z,s++):(a=u,l===0&&A(V)),a!==u?(f=c(),o=Gu(),o!==u?(E=c(),n.charCodeAt(s)===59?(B=X,s++):(B=u,l===0&&A(ue)),B!==u?e=[t,o]:(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function vA(){var e,r,t,i,a,f,o,E,B,d;if(e=s,n.charCodeAt(s)===40?(r=j,s++):(r=u,l===0&&A(R)),r!==u)if(t=c(),i=as(),i!==u){for(a=[],f=s,o=c(),E=s,n.charCodeAt(s)===44?(B=T,s++):(B=u,l===0&&A(w)),B!==u?(d=c(),B=[B,d],E=B):(s=E,E=u),E===u&&(E=null),B=as(),B!==u?f=B:(s=f,f=u);f!==u;)a.push(f),f=s,o=c(),E=s,n.charCodeAt(s)===44?(B=T,s++):(B=u,l===0&&A(w)),B!==u?(d=c(),B=[B,d],E=B):(s=E,E=u),E===u&&(E=null),B=as(),B!==u?f=B:(s=f,f=u);f=c(),n.charCodeAt(s)===41?(o=q,s++):(o=u,l===0&&A(W)),o!==u?(p=e,e=An(i,a)):(s=e,e=u)}else s=e,e=u;else s=e,e=u;return e}function ns(){var e,r,t,i,a,f,o;if(e=s,r=s,t=ls(),t!==u?r=n.substring(r,s):r=t,r!==u){for(t=[],i=s,a=c(),f=s,o=ls(),o!==u?f=n.substring(f,s):f=o,f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=s,o=ls(),o!==u?f=n.substring(f,s):f=o,f!==u?i=f:(s=i,i=u);p=e,e=on(r,t)}else s=e,e=u;return e}function Ee(){var e,r,t,i,a,f,o,E;if(e=s,r=L(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===46?(f=Ae,s++):(f=u,l===0&&A(oe)),f!==u?(o=c(),E=ce(),E!==u?(p=i,i=ur(r,E)):(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===46?(f=Ae,s++):(f=u,l===0&&A(oe)),f!==u?(o=c(),E=ce(),E!==u?(p=i,i=ur(r,E)):(s=i,i=u)):(s=i,i=u);p=e,e=cn(r,t)}else s=e,e=u;return e}function $A(){var e,r,t,i,a,f,o,E,B;return e=s,r=jl(),r!==u?(t=c(),i=Ee(),i!==u?(a=_(),a!==u?(p=e,e=En(i)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=Kl(),r!==u?(t=c(),i=Ee(),i!==u?(a=s,f=c(),o=de(),o!==u?(E=c(),B=L(),B!==u?a=B:(s=a,a=u)):(s=a,a=u),a===u&&(a=null),f=_(),f!==u?(p=e,e=pn(i,a)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)),e}function yA(){var e,r,t,i,a,f,o;return e=s,r=s,t=Oe(),t!==u?(i=c(),r=t):(s=r,r=u),r===u&&(r=null),t=zl(),t!==u?(i=c(),a=L(),a!==u?(f=c(),o=wA(),o!==u?(p=e,e=Cn(r,a,o)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function Hr(){var e,r,t,i,a,f,o,E,B,d;return e=s,r=s,t=Oe(),t!==u?(i=c(),r=t):(s=r,r=u),r===u&&(r=null),t=Ou(),t!==u?(i=c(),a=L(),a!==u?(f=s,o=c(),E=xr(),E!==u?(B=c(),d=Ee(),d!==u?f=d:(s=f,f=u)):(s=f,f=u),f===u&&(f=null),o=c(),E=Zr(),E!==u?(p=e,e=Fn(r,a,f,E)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function Zr(){var e,r,t,i,a,f;if(e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u){for(t=[],i=s,a=c(),f=Gr(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Gr(),f!==u?i=f:(s=i,i=u);i=c(),n.charCodeAt(s)===125?(a=Q,s++):(a=u,l===0&&A(se)),a!==u?(p=e,e=Bn(t)):(s=e,e=u)}else s=e,e=u;return e}function Gr(){var e,r;return e=s,r=Jr(),r===u&&(r=As(),r===u&&(r=is(),r===u&&(r=Hr(),r===u&&(r=cs())))),r!==u&&(p=e,r=gn(r)),e=r,e}function ls(){var e,r,t,i;return e=s,n.substr(s,6)===j0?(r=j0,s+=6):(r=u,l===0&&A(cf)),r===u&&(n.substr(s,9)===z0?(r=z0,s+=9):(r=u,l===0&&A(Ef)),r===u&&(n.substr(s,6)===R0?(r=R0,s+=6):(r=u,l===0&&A(pf)),r===u&&(n.substr(s,7)===V0?(r=V0,s+=7):(r=u,l===0&&A(Cf)),r===u&&(n.substr(s,6)===Ke?(r=Ke,s+=6):(r=u,l===0&&A(_0)))))),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?e=r:(s=e,e=u)):(s=e,e=u),e}function As(){var e,r,t,i,a,f;return e=s,r=s,t=Oe(),t!==u?(i=c(),r=t):(s=r,r=u),r===u&&(r=null),t=zu(),t!==u?(i=s,a=c(),f=L(),f!==u?i=f:(s=i,i=u),i===u&&(i=null),a=c(),f=hA(),f!==u?(p=e,e=Dn(r,i,f)):(s=e,e=u)):(s=e,e=u),e}function hA(){var e,r,t,i,a,f,o,E,B,d,$;if(e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u)if(t=c(),i=os(),i!==u){for(a=c(),f=[],o=s,n.charCodeAt(s)===44?(E=T,s++):(E=u,l===0&&A(w)),E!==u?(B=c(),d=os(),d!==u?($=c(),o=d):(s=o,o=u)):(s=o,o=u);o!==u;)f.push(o),o=s,n.charCodeAt(s)===44?(E=T,s++):(E=u,l===0&&A(w)),E!==u?(B=c(),d=os(),d!==u?($=c(),o=d):(s=o,o=u)):(s=o,o=u);o=c(),E=s,n.charCodeAt(s)===44?(B=T,s++):(B=u,l===0&&A(w)),B!==u?(d=c(),B=[B,d],E=B):(s=E,E=u),E===u&&(E=null),n.charCodeAt(s)===125?(B=Q,s++):(B=u,l===0&&A(se)),B!==u?(p=e,e=dn(i,f)):(s=e,e=u)}else s=e,e=u;else s=e,e=u;return e}function os(){var e,r,t,i,a,f,o,E;return e=s,r=s,t=Kr(),t!==u?(i=c(),r=t):(s=r,r=u),r===u&&(r=null),t=L(),t!==u?(i=s,a=c(),n.charCodeAt(s)===61?(f=z,s++):(f=u,l===0&&A(V)),f!==u?(o=c(),E=m(),E!==u?i=E:(s=i,i=u)):(s=i,i=u),i===u&&(i=null),p=e,e=vn(r,t,i)):(s=e,e=u),e}function cs(){var e,r,t,i,a,f,o;return e=s,r=Zu(),r!==u?(t=c(),i=L(),i!==u?(a=c(),f=ps(),f!==u?(o=_(),o!==u?(p=e,e=$n(i,f)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function Jr(){var e,r,t,i,a,f,o,E,B,d,$,k,S,M;return e=s,r=s,t=Oe(),t!==u?(i=c(),r=t):(s=r,r=u),r===u&&(r=null),t=Qe(),t!==u?(i=c(),a=L(),a!==u?(f=c(),n.charCodeAt(s)===40?(o=j,s++):(o=u,l===0&&A(R)),o!==u?(E=c(),B=s,d=Xr(),d!==u?($=c(),B=d):(s=B,B=u),B===u&&(B=null),n.charCodeAt(s)===41?(d=q,s++):(d=u,l===0&&A(W)),d!==u?($=s,k=c(),S=ps(),S!==u?$=S:(s=$,$=u),$===u&&($=null),k=c(),S=bA(),S===u&&(S=s,n.charCodeAt(s)===59?(M=X,s++):(M=u,l===0&&A(ue)),M!==u&&(p=S,M=yn(r,a,B,$)),S=M),S!==u?(p=e,e=hn(r,a,B,$,S)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function Me(){var e,r,t,i,a,f,o,E,B,d;if(e=s,r=Ee(),r!==u?(t=s,i=c(),a=xA(),a===u&&(a=Yr()),a!==u?t=a:(s=t,t=u),t===u&&(t=null),p=e,e=mn(r,t)):(s=e,e=u),e===u&&(e=s,n.charCodeAt(s)===40?(r=j,s++):(r=u,l===0&&A(R)),r!==u?(t=c(),i=mA(),i!==u?(a=c(),n.charCodeAt(s)===41?(f=q,s++):(f=u,l===0&&A(W)),f!==u?(p=e,e=xn(i)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e===u)){if(e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u)if(t=c(),i=Es(),i!==u){for(a=[],f=s,o=c(),n.charCodeAt(s)===44?(E=T,s++):(E=u,l===0&&A(w)),E!==u?(B=c(),d=Es(),d!==u?f=d:(s=f,f=u)):(s=f,f=u);f!==u;)a.push(f),f=s,o=c(),n.charCodeAt(s)===44?(E=T,s++):(E=u,l===0&&A(w)),E!==u?(B=c(),d=Es(),d!==u?f=d:(s=f,f=u)):(s=f,f=u);f=c(),o=s,n.charCodeAt(s)===44?(E=T,s++):(E=u,l===0&&A(w)),E!==u?(B=c(),E=[E,B],o=E):(s=o,o=u),o===u&&(o=null),n.charCodeAt(s)===125?(E=Q,s++):(E=u,l===0&&A(se)),E!==u?(p=e,e=bn(i,a)):(s=e,e=u)}else s=e,e=u;else s=e,e=u;e===u&&(e=s,r=s,t=Sr(),t!==u?r=n.substring(r,s):r=t,r!==u?(t=c(),i=Zr(),i!==u?(p=e,e=Sn(r,i)):(s=e,e=u)):(s=e,e=u))}return e}function Es(){var e,r,t,i,a,f;return e=s,r=s,l++,t=s,i=fu(),i===u&&(i=nr()),i!==u?(a=c(),f=de(),f!==u?(i=[i,a,f],t=i):(s=t,t=u)):(s=t,t=u),l--,t!==u?(s=r,r=void 0):r=u,r!==u?(t=Te(),t!==u?e=t:(s=e,e=u)):(s=e,e=u),e}function x2(){var e,r,t,i,a;return e=s,r=Me(),r!==u?(t=s,i=c(),n.charCodeAt(s)===63?(a=du,s++):(a=u,l===0&&A(Nu)),a!==u?(i=[i,a],t=i):(s=t,t=u),t===u&&(t=null),p=e,e=Tn(r,t)):(s=e,e=u),e}function mA(){var e,r,t,i;return e=s,r=Ee(),r!==u?(t=c(),i=Yr(),i!==u?(p=e,e=wn(r,i)):(s=e,e=u)):(s=e,e=u),e}function xA(){var e,r,t,i,a,f,o,E,B,d,$;if(e=s,n.charCodeAt(s)===60?(r=gu,s++):(r=u,l===0&&A(Tu)),r!==u){if(t=c(),i=s,a=ve(),a!==u){for(f=[],o=s,E=c(),n.charCodeAt(s)===44?(B=T,s++):(B=u,l===0&&A(w)),B!==u?(d=c(),$=ve(),$!==u?o=$:(s=o,o=u)):(s=o,o=u);o!==u;)f.push(o),o=s,E=c(),n.charCodeAt(s)===44?(B=T,s++):(B=u,l===0&&A(w)),B!==u?(d=c(),$=ve(),$!==u?o=$:(s=o,o=u)):(s=o,o=u);p=i,i=Nn(a,f)}else s=i,i=u;i!==u?(a=c(),n.charCodeAt(s)===62?(f=Du,s++):(f=u,l===0&&A(wu)),f!==u?e=i:(s=e,e=u)):(s=e,e=u)}else s=e,e=u;return e}function Yr(){var e,r,t,i,a,f,o,E;return e=s,n.charCodeAt(s)===40?(r=j,s++):(r=u,l===0&&A(R)),r!==u?(t=c(),i=s,a=Xr(),a!==u?(f=c(),i=a):(s=i,i=u),i===u&&(i=null),n.charCodeAt(s)===41?(a=q,s++):(a=u,l===0&&A(W)),a!==u?(f=s,o=c(),E=ps(),E!==u?f=E:(s=f,f=u),f===u&&(f=null),p=e,e=Pn(i,f)):(s=e,e=u)):(s=e,e=u),e}function ve(){var e,r,t,i,a,f,o,E;if(e=s,n.substr(s,4)===q0?(r=q0,s+=4):(r=u,l===0&&A(Ff)),r!==u?(t=s,l++,i=h(),l--,i===u?t=void 0:(s=t,t=u),t!==u?(p=e,e=kn()):(s=e,e=u)):(s=e,e=u),e===u)if(e=s,r=Me(),r!==u){if(t=s,i=c(),n.charCodeAt(s)===63?(a=du,s++):(a=u,l===0&&A(Nu)),a!==u?(f=s,l++,o=jr(),l--,o===u?f=void 0:(s=f,f=u),f!==u?(p=t,t=Ln(r)):(s=t,t=u)):(s=t,t=u),t===u)if(t=[],i=s,a=c(),f=uu(),f===u&&(n.charCodeAt(s)===124?(f=Bu,s++):(f=u,l===0&&A(Su))),f!==u?(o=c(),E=Me(),E!==u?i=E:(s=i,i=u)):(s=i,i=u),i!==u)for(;i!==u;)t.push(i),i=s,a=c(),f=uu(),f===u&&(n.charCodeAt(s)===124?(f=Bu,s++):(f=u,l===0&&A(Su))),f!==u?(o=c(),E=Me(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);else t=u;t===u&&(t=null),p=e,e=In(r,t)}else s=e,e=u;return e}function ps(){var e,r,t,i;return e=s,r=de(),r!==u?(t=c(),i=ve(),i!==u?(p=e,e=On(i)):(s=e,e=u)):(s=e,e=u),e}function au(){var e,r,t,i,a,f,o;return e=s,r=L(),r!==u?(t=s,i=c(),a=de(),a!==u?(f=c(),o=ve(),o!==u?t=o:(s=t,t=u)):(s=t,t=u),t===u&&(t=null),p=e,e=Mn(r,t)):(s=e,e=u),e}function Xr(){var e,r,t,i,a,f,o,E;if(e=s,r=au(),r!==u){for(t=[],i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=au(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(o=c(),E=au(),E!==u?i=E:(s=i,i=u)):(s=i,i=u);i=s,a=c(),n.charCodeAt(s)===44?(f=T,s++):(f=u,l===0&&A(w)),f!==u?(a=[a,f],i=a):(s=i,i=u),i===u&&(i=null),p=e,e=Un(r,t)}else s=e,e=u;return e}function bA(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u?(t=c(),i=PA(),i===u&&(i=null),a=c(),n.charCodeAt(s)===125?(f=Q,s++):(f=u,l===0&&A(se)),f!==u?(p=e,e=jn(i)):(s=e,e=u)):(s=e,e=u),e}function SA(){var e,r;return e=s,r=TA(),r===u&&(r=null),p=e,r=zn(r),e=r,e}function TA(){var e,r,t,i,a,f;if(e=s,r=we(),r!==u){for(t=[],i=s,a=c(),f=we(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=we(),f!==u?i=f:(s=i,i=u);p=e,e=Rn(r,t)}else s=e,e=u;return e}function wA(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u?(t=c(),i=NA(),i===u&&(i=null),a=c(),n.charCodeAt(s)===125?(f=Q,s++):(f=u,l===0&&A(se)),f!==u?(p=e,e=Vn(i)):(s=e,e=u)):(s=e,e=u),e}function NA(){var e,r,t,i,a,f;if(e=s,r=we(),r!==u){for(t=[],i=s,a=c(),f=we(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=we(),f!==u?i=f:(s=i,i=u);p=e,e=qn(r,t)}else s=e,e=u;return e}function we(){var e;return e=Hr(),e===u&&(e=As(),e===u&&(e=Jr(),e===u&&(e=yA(),e===u&&(e=cs(),e===u&&(e=is(),e===u&&(e=$A())))))),e}function PA(){var e,r,t,i,a,f;if(e=s,r=Cs(),r!==u){for(t=[],i=s,a=c(),f=Cs(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Cs(),f!==u?i=f:(s=i,i=u);p=e,e=Wn(r,t)}else s=e,e=u;return e}function Cs(){var e;return e=fe(),e===u&&(e=As(),e===u&&(e=cs())),e}function kA(){var e,r;return e=s,r=LA(),r===u&&(r=null),p=e,r=Kn(r),e=r,e}function LA(){var e,r,t,i,a,f;if(e=s,r=Fs(),r!==u){for(t=[],i=s,a=c(),f=Fs(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Fs(),f!==u?i=f:(s=i,i=u);p=e,e=_n(r,t)}else s=e,e=u;return e}function Fs(){var e,r,t,i;return e=s,r=L(),r!==u?(t=c(),i=IA(),i!==u?(p=e,e=Hn(r,i)):(s=e,e=u)):(s=e,e=u),e}function IA(){var e,r,t,i,a,f;return e=s,n.charCodeAt(s)===123?(r=ee,s++):(r=u,l===0&&A(re)),r!==u?(t=c(),i=OA(),i===u&&(i=null),a=c(),n.charCodeAt(s)===125?(f=Q,s++):(f=u,l===0&&A(se)),f!==u?(p=e,e=Zn(i)):(s=e,e=u)):(s=e,e=u),e}function OA(){var e,r,t,i,a,f;if(e=s,r=Bs(),r!==u){for(t=[],i=s,a=c(),f=Bs(),f!==u?i=f:(s=i,i=u);i!==u;)t.push(i),i=s,a=c(),f=Bs(),f!==u?i=f:(s=i,i=u);p=e,e=Gn(r,t)}else s=e,e=u;return e}function Bs(){var e,r,t,i,a,f,o,E;return e=s,r=L(),r!==u?(t=c(),n.charCodeAt(s)===58?(i=be,s++):(i=u,l===0&&A(Se)),i!==u?(a=c(),f=MA(),f!==u?(o=c(),n.charCodeAt(s)===59?(E=X,s++):(E=u,l===0&&A(ue)),E!==u?(p=e,e=Jn(r,f)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e}function MA(){var e,r,t,i,a,f;if(e=s,r=s,t=cr(),t!==u?r=n.substring(r,s):r=t,r!==u?(p=s,t=Yn(r),t?t=void 0:t=u,t!==u?(i=c(),n.charCodeAt(s)===37?(a=g0,s++):(a=u,l===0&&A(G0)),a!==u?(p=e,e=Xn(r)):(s=e,e=u)):(s=e,e=u)):(s=e,e=u),e===u){if(e=s,n.charCodeAt(s)===35?(r=Pi,s++):(r=u,l===0&&A(Bf)),r!==u){for(t=s,i=s,a=[],f=te();f!==u;)a.push(f),a.length>=6?f=u:f=te();a.length<6?(s=i,i=u):i=a,i!==u?t=n.substring(t,s):t=i,t!==u?(p=e,e=Qn(t)):(s=e,e=u)}else s=e,e=u;e===u&&(e=s,r=fu(),r!==u&&(p=e,r=el(r)),e=r,e===u&&(e=s,n.charCodeAt(s)===64?(r=Eu,s++):(r=u,l===0&&A(yu)),r!==u?(t=Ee(),t!==u?(p=e,e=ul(t)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=gl(),r===u&&(r=Cr(),r===u&&(r=Fr())),r!==u?(t=s,l++,i=s,a=c(),n.charCodeAt(s)===59?(f=X,s++):(f=u,l===0&&A(ue)),f!==u?(a=[a,f],i=a):(s=i,i=u),l--,i!==u?(s=t,t=void 0):t=u,t!==u?(p=e,e=sl(r)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=Br(),r!==u?(t=s,l++,i=s,a=c(),n.charCodeAt(s)===59?(f=X,s++):(f=u,l===0&&A(ue)),f!==u?(a=[a,f],i=a):(s=i,i=u),l--,i!==u?(s=t,t=void 0):t=u,t!==u?(p=e,e=rl(r)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=ku(),r!==u?(t=s,l++,i=s,a=c(),n.charCodeAt(s)===59?(f=X,s++):(f=u,l===0&&A(ue)),f!==u?(a=[a,f],i=a):(s=i,i=u),l--,i!==u?(s=t,t=void 0):t=u,t!==u?(p=e,e=il(r)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=L(),r!==u?(t=s,l++,i=s,a=c(),n.charCodeAt(s)===59?(f=X,s++):(f=u,l===0&&A(ue)),f!==u?(a=[a,f],i=a):(s=i,i=u),l--,i!==u?(s=t,t=void 0):t=u,t!==u?(p=e,e=tl(r)):(s=e,e=u)):(s=e,e=u),e===u&&(e=s,r=m(),r!==u&&(p=e,r=fl(r)),e=r)))))))}return e}let nu=[];function Qr(e,r){let t=sr();return nu.find(i=>i.start===t.start.offset)||nu.push({type:r?"MultiLine":"Line",value:e,start:t.start.offset,end:t.end.offset,loc:t}),Y}function D(e){var r=sr();return e.start=r.start.offset,e.end=r.end.offset,e.loc=r,e}function gs(e,r){return{type:"ModuleDeclaration",id:{type:"Identifier",name:e},body:{type:"BlockStatement",body:r}}}function Ue(e,r,t){let i={type:"MemberExpression",computed:!1,object:{type:"Identifier",name:"Toybox"},property:{type:"Identifier",name:r}};return e==="Using"&&t?{type:e,id:i,as:{type:"Identifier",name:t}}:{type:e,id:i}}function UA(e){let r=gs("Rez",[gs("Styles",e)]);return g.mss!==""&&(r=gs(g.mss,[r])),D({type:"Program",body:[Ue("ImportModule","Lang"),Ue("Using","WatchUi"),Ue("Using","WatchUi","Ui"),Ue("Using","Graphics"),Ue("Using","Graphics","Gfx"),r]})}if(Ge=v(),Ge!==u&&s===n.length)return Ge;throw Ge!==u&&s<n.length&&A(nl()),ir(Pu,ie<n.length?n.charAt(ie):null,ie<n.length?Pe(ie,ie+1):Pe(ie,ie))}var GA=KA(require("prettier"));var{doc:vs}=GA,{group:G,fill:w2,line:J,softline:ye,hardline:JA,indent:he,dedent:YA,join:Re}=vs.builders,Ve=/^-?(0x[0-9a-f]+|\d+)(l)?$/i,le,$s,Ne;function ou(n,g){if(Ne===void 0){let F=(v=>{let N=H=>H&&typeof H!="string"&&H.printers?.[v],I=N(g.plugins?.find(N));if(!I)throw new Error("Prettier setup failure!");return I})("estree"),y=v=>{Ne=null;let N,I,H;({print:le,preprocess:$s,canAttachComment:I,getVisitorKeys:H,...N}=v),Object.assign(cu.monkeyc,N,{print:eo,preprocess:XA,canAttachComment:b=>b.type!="AttributeList"&&(!I||I(b)),willPrintOwnComments:()=>!1})};typeof F=="function"?Ne=F().then(y):y(F)}return n}function XA(n,g){let u=$s?$s(n,g):n;return"then"in u?u.then(F=>Au(F,null,g)):Au(u,null,g)}function QA(n,g,u){let F=n.getValue();if(!F)return[];let y=[];return F.access&&(y=F.access.slice().sort().filter((v,N,I)=>!N||v!=I[N-1]).join(" ")+" "),F.attributes?[n.call(u,"attributes"),JA,y]:y}function eo(n,g,u){let F=n.getValue();if(!F)return"";if(typeof F=="string")return F;let y=v=>n;switch(F.type){case"Program":{let{semi:v,trailingComma:N}=g;g.semi=!0,g.trailingComma=="all"&&(g.trailingComma="es5");let I=le(n,g,u);return g.semi=v,g.trailingComma=N,I}case"ModuleDeclaration":{let v=G([G(["module",J,he(y(F).call(u,"id")),J]),y(F).call(u,"body")]);return F.attrs?[y(F).call(u,"attrs"),v]:v}case"TypedefDeclaration":return[G(["typedef",he(J),y(F).call(u,"id")]),y(F).call(u,"ts"),";"];case"Property":return G([G([n.call(u,"key"),J,"=>",J]),y(F).call(u,"value")]);case"ImportModule":return G(["import",J,n.call(u,"id"),";"]);case"Using":{let v=["using",J,n.call(u,"id")];return F.as!=null&&v.push(J,"as",J,y(F).call(u,"as")),v.push(";"),G(v)}case"Identifier":return F.original&&F.original!==F.name?`${F.name} /*>${F.original}<*/`:F.name;case"TypeSpecList":{let v=n.map(u,"ts");return v.length==2&&v[1]=="Null"?(v[1]="?",v):G(Re([" or",he(J)],v))}case"ParenthesizedExpression":return F.expression.type=="ObjectExpression"||!n.getParentNode()?n.call(u,"expression"):le(n,g,u);case"ObjectExpression":return le(n,g,u);case"TypeSpecPart":{let v=[F.name?n.call(u,"name"):""];if(F.body&&v.push(" ",YA(y(F).call(u,"body"))),F.generics){let N="generics"in F.generics.slice(-1)[0].ts.slice(-1)[0]?J:ye;v.push(G(["<",he([ye,Re([",",J],n.map(u,"generics"))]),N,">"]))}if(F.callspec){let N=g.semi;g.semi=!1,v.unshift("("),v.push(he([ye,n.call(u,"callspec")]),ye,")"),g.semi=N}return v.length==1?v[0]:v}case"ArrayExpression":return[le(n,g,u),F.byte||""];case"SizedArrayExpression":return G(["new ",F.ts?[y(F).call(u,"ts"),"generics"in F.ts?"":" "]:"","[",he(n.call(u,"size")),"]",F.byte||""]);case"VariableDeclaration":case"FunctionDeclaration":case"ClassDeclaration":{let v=le(n,g,u);return F.attrs?[y(F).call(u,"attrs"),v]:v}case"EnumDeclaration":{let v=["enum"];return F.id&&v.push(n.call(u,"id")),v=Re(" ",v),F.attrs&&(v=[y(F).call(u,"attrs"),v]),[v," ",y(F).call(u,"body")]}case"Attributes":return G(["(",he([ye,G(Re([",",ye],n.map(u,"elements")))]),ye,")"]);case"AttributeList":return QA(n,g,u);case"ClassElement":return n.call(u,"item");case"CatchClauses":return Re(" ",n.map(u,"catches"));case"ThisExpression":return F.text;case"InstanceOfCase":return["instanceof ",n.call(u,"id")];case"Literal":if(typeof F.value=="string")return F.raw;if(typeof F.value=="number"){if(F.value===Math.floor(F.value))if(Ve.test(F.raw)){if((F.value>4294967295||-F.value>4294967295)&&!/l$/i.test(F.raw||""))return F.raw.toLowerCase()+"l"}else{let v=vs.printer.printDocToString(le(n,g,u),g).formatted;return Ve.test(v)?`${v}${/d$/i.test(F.raw)?"d":"f"}`:v}else if(isNaN(F.value))return"NaN"}else if(typeof F.value=="bigint")return F.raw&&/l$/i.test(F.raw)?F.raw.toLowerCase():vs.printer.printDocToString(le(n,g,u),g).formatted+"l";break}return le(n,g,u)}var ri={"*":[0,0],"/":[0,0],"%":[0,0],"+":[10,10],"-":[10,10],"<<":[20,0],">>":[20,0],"<":[30,30],"<=":[30,30],">":[30,30],">=":[30,30],instanceof:[30,5],has:[99,5],as:[-1,99],"==":[40,30],"!=":[40,30],"&":[50,0],"^":[60,10],"|":[70,10]};function ds(n){if(n.type=="BlockStatement")return n;let g={type:"BlockStatement",body:[n]};return n.start!=null&&(g.start=n.start),n.end!=null&&(g.end=n.end),n.loc!=null&&(g.loc=n.loc),g}function Au(n,g,u){for(let[F,y]of Object.entries(n))y&&(Array.isArray(y)?y.forEach(v=>Au(v,null,u)):typeof y=="object"&&y.type&&(n[F]=Au(y,n,u)));switch(n.type){case"IfStatement":n.consequent=ds(n.consequent),n.alternate&&n.alternate.type!="IfStatement"&&(n.alternate=ds(n.alternate));break;case"WhileStatement":case"DoWhileStatement":case"ForStatement":n.body=ds(n.body);break}return g&&uo(n,g)?{type:"ParenthesizedExpression",expression:n,start:n.start,end:n.end,loc:n.loc}:n}function ii(n){switch(n.type){case"ThisExpression":case"Identifier":case"SizedArrayExpression":case"ArrayExpression":case"ObjectExpression":case"Literal":case"MemberExpression":case"NewExpression":case"CallExpression":case"UnaryExpression":case"ParenthesizedExpression":case"AssignmentExpression":case"UpdateExpression":return!0}return!1}function uo(n,g){if(g.type==="ExpressionStatement")return!ii(n)||n.type==="ObjectExpression";if(g.type=="BinaryExpression"&&g.operator=="as")return n==g.right?!1:!ii(n);if(n.type=="BinaryExpression"){switch(g.type){case"BinaryExpression":{let u=ri[n.operator],F=ri[g.operator];if(u&&F){let y=F[1]<u[1]||n==g.right&&F[1]==u[1],v=F[0]<u[0]||n==g.right&&F[0]==u[0];if(y&&!v)return!0}break}case"ConditionalExpression":return n.operator==="as"&&n===g.test;case"LogicalExpression":return n.operator==="as";case"MemberExpression":return n.operator==="as"&&n===g.object;case"NewExpression":case"CallExpression":return n.operator==="as"&&n===g.callee}return!1}return n.type=="NewExpression"?g.type=="MemberExpression":!1}var ti={};var ai=[{name:"monkeyc",extensions:[".mc"],parsers:["monkeyc"]}];function fi(n,g,u){let F={};return u||(u=g),u&&(u.filepath&&(F.grammarSource=u.filepath),u.mss!=null?(F.startRule="PersonalityStart",F.mss=u.mss):F.startRule=u.singleExpression?"SingleExpression":"Start"),si(n,F)}var ni={monkeyc:{parse:(n,g,u)=>Ne?Ne.then(()=>fi(n,g,u)):fi(n,g,u),astFormat:"monkeyc",locStart:n=>n.start||0,locEnd:n=>n.end||0,preprocess:ou},"monkeyc-json":{parse:n=>{let g=n.match(/^((.|[\r\n\u2028\u2029])*)(\r\n|[\n\r\u2028\u2029])(.+)$/),u=Ai(g?g[4]:n);return"comments"in u&&(!g||!g[1]||u.end&&g[1].length<u.end?delete u.comments:u.comments&&(u.comments=u.comments.filter(F=>!F.value.includes("prettier-ignore")))),u},astFormat:"monkeyc",locStart:n=>n.start||0,locEnd:n=>n.end||0,preprocess:ou}},so=new Set(["tokens","comments","parent","enclosingNode","precedingNode","followingNode"]),cu={monkeyc:{print(){throw"Something went wrong: printer not initialized!"},preprocess(){throw"Something went wrong: printer not initialized!"},getVisitorKeys(n){return Object.entries(n).filter(([g,u])=>!so.has(g)&&(u&&typeof u.type=="string"||Array.isArray(u)&&u.every(F=>F&&typeof F.type=="string"))).map(([g])=>g)}}},li={singleExpression:{since:"",type:"boolean",category:"Special",default:!1,description:"Parse a single monkeyc expression, rather than a module."},mss:{since:"",type:"string",category:"Special",description:"Parse a .mss file, rather than a .mc file."}},ro={tabWidth:4};function io(n){return JSON.stringify(n,(g,u)=>g==="value"&&(typeof u=="bigint"||typeof u=="number"&&isNaN(u))?0:u)}function Ai(n){return JSON.parse(n,function(g,u){if(g==="value"&&u===0&&this.type==="Literal"&&typeof this.raw=="string"){if(this.raw==="NaN")return NaN;let F=this.raw.match(Ve);if(F&&(F[2]==="l"||F[2]==="L"))return BigInt(F[1])}return u})}var to={languages:ai,parsers:ni,printers:cu,options:li};0&&(module.exports={LiteralIntegerRe,defaultOptions,languages,mctree,options,parsers,printers,serializeMonkeyC,unserializeMonkeyC});
|
package/package.json
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"prepack": "npm run build-release"
|
|
25
25
|
},
|
|
26
26
|
"name": "@markw65/prettier-plugin-monkeyc",
|
|
27
|
-
"version": "1.0.
|
|
27
|
+
"version": "1.0.51",
|
|
28
28
|
"description": "A prettier plugin for Garmin monkey-c",
|
|
29
29
|
"main": "build/prettier-plugin-monkeyc.cjs",
|
|
30
30
|
"types": "build/prettier-plugin-monkeyc.d.ts",
|