diff options
Diffstat (limited to '')
5 files changed, 29071 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/CSCodeGenerator.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/CSCodeGenerator.cs new file mode 100644 index 0000000..142e791 --- /dev/null +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/CSCodeGenerator.cs | |||
@@ -0,0 +1,775 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System; | ||
29 | using System.IO; | ||
30 | using System.Collections.Generic; | ||
31 | using Tools; | ||
32 | |||
33 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | ||
34 | { | ||
35 | public class CSCodeGenerator | ||
36 | { | ||
37 | private SYMBOL m_astRoot = null; | ||
38 | private int m_braceCount; // for indentation | ||
39 | |||
40 | /// <summary> | ||
41 | /// Pass the new CodeGenerator a string containing the LSL source. | ||
42 | /// </summary> | ||
43 | /// <param name="script">String containing LSL source.</param> | ||
44 | public CSCodeGenerator(string script) | ||
45 | { | ||
46 | Parser p = new LSLSyntax(); | ||
47 | // Obviously this needs to be in a try/except block. | ||
48 | LSL2CSCodeTransformer codeTransformer = new LSL2CSCodeTransformer(p.Parse(script)); | ||
49 | m_astRoot = codeTransformer.Transform(); | ||
50 | } | ||
51 | |||
52 | /// <summary> | ||
53 | /// Pass the new CodeGenerator an abstract syntax tree. | ||
54 | /// </summary> | ||
55 | /// <param name="astRoot">The root node of the AST.</param> | ||
56 | public CSCodeGenerator(SYMBOL astRoot) | ||
57 | { | ||
58 | m_braceCount = 0; | ||
59 | m_astRoot = astRoot; | ||
60 | } | ||
61 | |||
62 | /// <summary> | ||
63 | /// Generate the code from the AST we have. | ||
64 | /// </summary> | ||
65 | /// <returns>String containing the generated C# code.</returns> | ||
66 | public string Generate() | ||
67 | { | ||
68 | string retstr = String.Empty; | ||
69 | |||
70 | // standard preamble | ||
71 | //retstr = "using OpenSim.Region.ScriptEngine.Common;\n"; | ||
72 | //retstr += "using System.Collections.Generic;\n\n"; | ||
73 | //retstr += "namespace SecondLife\n"; | ||
74 | //retstr += "{\n"; | ||
75 | //retstr += " public class Script : OpenSim.Region.ScriptEngine.Common\n"; | ||
76 | //retstr += " {\n"; | ||
77 | |||
78 | // here's the payload | ||
79 | m_braceCount += 2; | ||
80 | retstr += "\n"; | ||
81 | foreach (SYMBOL s in m_astRoot.kids) | ||
82 | retstr += GenerateNode(s); | ||
83 | |||
84 | // close braces! | ||
85 | //retstr += " }\n"; | ||
86 | //retstr += "}\n"; | ||
87 | m_braceCount -= 2; | ||
88 | |||
89 | return retstr; | ||
90 | } | ||
91 | |||
92 | /// <summary> | ||
93 | /// Recursively called to generate each type of node. Will generate this | ||
94 | /// node, then all it's children. | ||
95 | /// </summary> | ||
96 | /// <param name="s">The current node to generate code for.</param> | ||
97 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
98 | private string GenerateNode(SYMBOL s) | ||
99 | { | ||
100 | string retstr = String.Empty; | ||
101 | |||
102 | // make sure to put type lower in the inheritance hierarchy first | ||
103 | // ie: since IdentArgument and ExpressionArgument inherit from | ||
104 | // Argument, put IdentArgument and ExpressionArgument before Argument | ||
105 | if (s is GlobalFunctionDefinition) | ||
106 | retstr += GenerateGlobalFunctionDefinition((GlobalFunctionDefinition) s); | ||
107 | else if (s is GlobalVariableDeclaration) | ||
108 | retstr += GenerateGlobalVariableDeclaration((GlobalVariableDeclaration) s); | ||
109 | else if (s is State) | ||
110 | retstr += GenerateState((State) s); | ||
111 | else if (s is CompoundStatement) | ||
112 | retstr += GenerateCompoundStatement((CompoundStatement) s); | ||
113 | else if (s is Declaration) | ||
114 | retstr += GenerateDeclaration((Declaration) s); | ||
115 | else if (s is Statement) | ||
116 | retstr += GenerateStatement((Statement) s); | ||
117 | else if (s is ReturnStatement) | ||
118 | retstr += GenerateReturnStatement((ReturnStatement) s); | ||
119 | else if (s is StateChange) | ||
120 | retstr += GenerateStateChange((StateChange) s); | ||
121 | else if (s is IfStatement) | ||
122 | retstr += GenerateIfStatement((IfStatement) s); | ||
123 | else if (s is WhileStatement) | ||
124 | retstr += GenerateWhileStatement((WhileStatement) s); | ||
125 | else if (s is DoWhileStatement) | ||
126 | retstr += GenerateDoWhileStatement((DoWhileStatement) s); | ||
127 | else if (s is ForLoop) | ||
128 | retstr += GenerateForLoop((ForLoop) s); | ||
129 | else if (s is ArgumentList) | ||
130 | retstr += GenerateArgumentList((ArgumentList) s); | ||
131 | else if (s is Assignment) | ||
132 | retstr += GenerateAssignment((Assignment) s); | ||
133 | else if (s is BinaryExpression) | ||
134 | retstr += GenerateBinaryExpression((BinaryExpression) s); | ||
135 | else if (s is ParenthesisExpression) | ||
136 | retstr += GenerateParenthesisExpression((ParenthesisExpression) s); | ||
137 | else if (s is UnaryExpression) | ||
138 | retstr += GenerateUnaryExpression((UnaryExpression) s); | ||
139 | else if (s is IncrementDecrementExpression) | ||
140 | retstr += GenerateIncrementDecrementExpression((IncrementDecrementExpression) s); | ||
141 | else if (s is TypecastExpression) | ||
142 | retstr += GenerateTypecastExpression((TypecastExpression) s); | ||
143 | else if (s is FunctionCall) | ||
144 | retstr += GenerateFunctionCall((FunctionCall) s); | ||
145 | else if (s is VectorConstant) | ||
146 | retstr += GenerateVectorConstant((VectorConstant) s); | ||
147 | else if (s is RotationConstant) | ||
148 | retstr += GenerateRotationConstant((RotationConstant) s); | ||
149 | else if (s is ListConstant) | ||
150 | retstr += GenerateListConstant((ListConstant) s); | ||
151 | else if (s is Constant) | ||
152 | retstr += GenerateConstant((Constant) s); | ||
153 | else if (s is IdentDotExpression) | ||
154 | retstr += ((IdentDotExpression) s).Name + "." + ((IdentDotExpression) s).Member; | ||
155 | else if (s is IdentExpression) | ||
156 | retstr += ((IdentExpression) s).Name; | ||
157 | else if (s is IDENT) | ||
158 | retstr += ((TOKEN) s).yytext; | ||
159 | else | ||
160 | { | ||
161 | foreach (SYMBOL kid in s.kids) | ||
162 | retstr += GenerateNode(kid); | ||
163 | } | ||
164 | |||
165 | return retstr; | ||
166 | } | ||
167 | |||
168 | /// <summary> | ||
169 | /// Generates the code for a GlobalFunctionDefinition node. | ||
170 | /// </summary> | ||
171 | /// <param name="gf">The GlobalFunctionDefinition node.</param> | ||
172 | /// <returns>String containing C# code for GlobalFunctionDefinition gf.</returns> | ||
173 | private string GenerateGlobalFunctionDefinition(GlobalFunctionDefinition gf) | ||
174 | { | ||
175 | string retstr = String.Empty; | ||
176 | |||
177 | // we need to separate the argument declaration list from other kids | ||
178 | List<SYMBOL> argumentDeclarationListKids = new List<SYMBOL>(); | ||
179 | List<SYMBOL> remainingKids = new List<SYMBOL>(); | ||
180 | |||
181 | foreach (SYMBOL kid in gf.kids) | ||
182 | if (kid is ArgumentDeclarationList) | ||
183 | argumentDeclarationListKids.Add(kid); | ||
184 | else | ||
185 | remainingKids.Add(kid); | ||
186 | |||
187 | retstr += WriteIndented(String.Format("{0} {1}(", gf.ReturnType, gf.Name)); | ||
188 | |||
189 | // print the state arguments, if any | ||
190 | foreach (SYMBOL kid in argumentDeclarationListKids) | ||
191 | retstr += GenerateArgumentDeclarationList((ArgumentDeclarationList) kid); | ||
192 | |||
193 | retstr += ")\n"; | ||
194 | |||
195 | foreach (SYMBOL kid in remainingKids) | ||
196 | retstr += GenerateNode(kid); | ||
197 | |||
198 | return retstr; | ||
199 | } | ||
200 | |||
201 | /// <summary> | ||
202 | /// Generates the code for a GlobalVariableDeclaration node. | ||
203 | /// </summary> | ||
204 | /// <param name="gv">The GlobalVariableDeclaration node.</param> | ||
205 | /// <returns>String containing C# code for GlobalVariableDeclaration gv.</returns> | ||
206 | private string GenerateGlobalVariableDeclaration(GlobalVariableDeclaration gv) | ||
207 | { | ||
208 | string retstr = String.Empty; | ||
209 | |||
210 | foreach (SYMBOL s in gv.kids) | ||
211 | { | ||
212 | retstr += Indent(); | ||
213 | retstr += GenerateNode(s); | ||
214 | retstr += ";\n"; | ||
215 | } | ||
216 | |||
217 | return retstr; | ||
218 | } | ||
219 | |||
220 | /// <summary> | ||
221 | /// Generates the code for a State node. | ||
222 | /// </summary> | ||
223 | /// <param name="s">The State node.</param> | ||
224 | /// <returns>String containing C# code for State s.</returns> | ||
225 | private string GenerateState(State s) | ||
226 | { | ||
227 | string retstr = String.Empty; | ||
228 | |||
229 | foreach (SYMBOL kid in s.kids) | ||
230 | if (kid is StateEvent) | ||
231 | retstr += GenerateStateEvent((StateEvent) kid, s.Name); | ||
232 | else | ||
233 | retstr += String.Format("ERROR: State '{0}' contains a '{1}\n", s.Name, kid.GetType()); | ||
234 | |||
235 | return retstr; | ||
236 | } | ||
237 | |||
238 | /// <summary> | ||
239 | /// Generates the code for a StateEvent node. | ||
240 | /// </summary> | ||
241 | /// <param name="se">The StateEvent node.</param> | ||
242 | /// <param name="parentStateName">The name of the parent state.</param> | ||
243 | /// <returns>String containing C# code for StateEvent se.</returns> | ||
244 | private string GenerateStateEvent(StateEvent se, string parentStateName) | ||
245 | { | ||
246 | string retstr = String.Empty; | ||
247 | |||
248 | // we need to separate the argument declaration list from other kids | ||
249 | List<SYMBOL> argumentDeclarationListKids = new List<SYMBOL>(); | ||
250 | List<SYMBOL> remainingKids = new List<SYMBOL>(); | ||
251 | |||
252 | foreach (SYMBOL kid in se.kids) | ||
253 | if (kid is ArgumentDeclarationList) | ||
254 | argumentDeclarationListKids.Add(kid); | ||
255 | else | ||
256 | remainingKids.Add(kid); | ||
257 | |||
258 | // "state" (function) declaration | ||
259 | retstr += WriteIndented(String.Format("public void {0}_event_{1}(", parentStateName, se.Name)); | ||
260 | |||
261 | // print the state arguments, if any | ||
262 | foreach (SYMBOL kid in argumentDeclarationListKids) | ||
263 | retstr += GenerateArgumentDeclarationList((ArgumentDeclarationList) kid); | ||
264 | |||
265 | retstr += ")\n"; | ||
266 | |||
267 | foreach (SYMBOL kid in remainingKids) | ||
268 | retstr += GenerateNode(kid); | ||
269 | |||
270 | return retstr; | ||
271 | } | ||
272 | |||
273 | /// <summary> | ||
274 | /// Generates the code for an ArgumentDeclarationList node. | ||
275 | /// </summary> | ||
276 | /// <param name="adl">The ArgumentDeclarationList node.</param> | ||
277 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
278 | private string GenerateArgumentDeclarationList(ArgumentDeclarationList adl) | ||
279 | { | ||
280 | string retstr = String.Empty; | ||
281 | |||
282 | int comma = adl.kids.Count - 1; // tells us whether to print a comma | ||
283 | |||
284 | foreach (Declaration d in adl.kids) | ||
285 | { | ||
286 | retstr += String.Format("{0} {1}", d.Datatype, d.Id); | ||
287 | if (0 < comma--) | ||
288 | retstr += ", "; | ||
289 | } | ||
290 | |||
291 | return retstr; | ||
292 | } | ||
293 | |||
294 | /// <summary> | ||
295 | /// Generates the code for an ArgumentList node. | ||
296 | /// </summary> | ||
297 | /// <param name="al">The ArgumentList node.</param> | ||
298 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
299 | private string GenerateArgumentList(ArgumentList al) | ||
300 | { | ||
301 | string retstr = String.Empty; | ||
302 | |||
303 | int comma = al.kids.Count - 1; // tells us whether to print a comma | ||
304 | |||
305 | foreach (SYMBOL s in al.kids) | ||
306 | { | ||
307 | retstr += GenerateNode(s); | ||
308 | if (0 < comma--) | ||
309 | retstr += ", "; | ||
310 | } | ||
311 | |||
312 | return retstr; | ||
313 | } | ||
314 | |||
315 | /// <summary> | ||
316 | /// Generates the code for a CompoundStatement node. | ||
317 | /// </summary> | ||
318 | /// <param name="cs">The CompoundStatement node.</param> | ||
319 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
320 | private string GenerateCompoundStatement(CompoundStatement cs) | ||
321 | { | ||
322 | string retstr = String.Empty; | ||
323 | |||
324 | // opening brace | ||
325 | retstr += WriteIndentedLine("{"); | ||
326 | m_braceCount++; | ||
327 | |||
328 | foreach (SYMBOL kid in cs.kids) | ||
329 | retstr += GenerateNode(kid); | ||
330 | |||
331 | // closing brace | ||
332 | m_braceCount--; | ||
333 | retstr += WriteIndentedLine("}"); | ||
334 | |||
335 | return retstr; | ||
336 | } | ||
337 | |||
338 | /// <summary> | ||
339 | /// Generates the code for a Declaration node. | ||
340 | /// </summary> | ||
341 | /// <param name="d">The Declaration node.</param> | ||
342 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
343 | private string GenerateDeclaration(Declaration d) | ||
344 | { | ||
345 | return String.Format("{0} {1}", d.Datatype, d.Id); | ||
346 | } | ||
347 | |||
348 | /// <summary> | ||
349 | /// Generates the code for a Statement node. | ||
350 | /// </summary> | ||
351 | /// <param name="s">The Statement node.</param> | ||
352 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
353 | private string GenerateStatement(Statement s) | ||
354 | { | ||
355 | string retstr = String.Empty; | ||
356 | |||
357 | retstr += Indent(); | ||
358 | |||
359 | foreach (SYMBOL kid in s.kids) | ||
360 | retstr += GenerateNode(kid); | ||
361 | |||
362 | retstr += ";\n"; | ||
363 | |||
364 | return retstr; | ||
365 | } | ||
366 | |||
367 | /// <summary> | ||
368 | /// Generates the code for an Assignment node. | ||
369 | /// </summary> | ||
370 | /// <param name="a">The Assignment node.</param> | ||
371 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
372 | private string GenerateAssignment(Assignment a) | ||
373 | { | ||
374 | string retstr = String.Empty; | ||
375 | |||
376 | retstr += GenerateNode((SYMBOL) a.kids.Pop()); | ||
377 | retstr +=String.Format(" {0} ", a.AssignmentType); | ||
378 | foreach (SYMBOL kid in a.kids) | ||
379 | retstr += GenerateNode(kid); | ||
380 | |||
381 | return retstr; | ||
382 | } | ||
383 | |||
384 | /// <summary> | ||
385 | /// Generates the code for a ReturnStatement node. | ||
386 | /// </summary> | ||
387 | /// <param name="rs">The ReturnStatement node.</param> | ||
388 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
389 | private string GenerateReturnStatement(ReturnStatement rs) | ||
390 | { | ||
391 | string retstr = String.Empty; | ||
392 | |||
393 | retstr += "return "; | ||
394 | |||
395 | foreach (SYMBOL kid in rs.kids) | ||
396 | retstr += GenerateNode(kid); | ||
397 | |||
398 | return retstr; | ||
399 | } | ||
400 | |||
401 | /// <summary> | ||
402 | /// Generates the code for a IfStatement node. | ||
403 | /// </summary> | ||
404 | /// <param name="ifs">The IfStatement node.</param> | ||
405 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
406 | private string GenerateIfStatement(IfStatement ifs) | ||
407 | { | ||
408 | string retstr = String.Empty; | ||
409 | |||
410 | retstr += WriteIndented("if ("); | ||
411 | retstr += GenerateNode((SYMBOL) ifs.kids.Pop()); | ||
412 | retstr += ")\n"; | ||
413 | |||
414 | // CompoundStatement handles indentation itself but we need to do it | ||
415 | // otherwise. | ||
416 | bool indentHere = ifs.kids.Top is Statement; | ||
417 | if (indentHere) m_braceCount++; | ||
418 | retstr += GenerateNode((SYMBOL) ifs.kids.Pop()); | ||
419 | if (indentHere) m_braceCount--; | ||
420 | |||
421 | if (0 < ifs.kids.Count) // do it again for an else | ||
422 | { | ||
423 | retstr += WriteIndentedLine("else"); | ||
424 | |||
425 | indentHere = ifs.kids.Top is Statement; | ||
426 | if (indentHere) m_braceCount++; | ||
427 | retstr += GenerateNode((SYMBOL) ifs.kids.Pop()); | ||
428 | if (indentHere) m_braceCount--; | ||
429 | } | ||
430 | |||
431 | return retstr; | ||
432 | } | ||
433 | |||
434 | /// <summary> | ||
435 | /// Generates the code for a StateChange node. | ||
436 | /// </summary> | ||
437 | /// <param name="sc">The StateChange node.</param> | ||
438 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
439 | private string GenerateStateChange(StateChange sc) | ||
440 | { | ||
441 | return String.Format("state(\"{0}\")", sc.NewState); | ||
442 | } | ||
443 | |||
444 | /// <summary> | ||
445 | /// Generates the code for a WhileStatement node. | ||
446 | /// </summary> | ||
447 | /// <param name="ws">The WhileStatement node.</param> | ||
448 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
449 | private string GenerateWhileStatement(WhileStatement ws) | ||
450 | { | ||
451 | string retstr = String.Empty; | ||
452 | |||
453 | retstr += WriteIndented("while ("); | ||
454 | retstr += GenerateNode((SYMBOL) ws.kids.Pop()); | ||
455 | retstr += ")\n"; | ||
456 | |||
457 | // CompoundStatement handles indentation itself but we need to do it | ||
458 | // otherwise. | ||
459 | bool indentHere = ws.kids.Top is Statement; | ||
460 | if (indentHere) m_braceCount++; | ||
461 | retstr += GenerateNode((SYMBOL) ws.kids.Pop()); | ||
462 | if (indentHere) m_braceCount--; | ||
463 | |||
464 | return retstr; | ||
465 | } | ||
466 | |||
467 | /// <summary> | ||
468 | /// Generates the code for a DoWhileStatement node. | ||
469 | /// </summary> | ||
470 | /// <param name="dws">The DoWhileStatement node.</param> | ||
471 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
472 | private string GenerateDoWhileStatement(DoWhileStatement dws) | ||
473 | { | ||
474 | string retstr = String.Empty; | ||
475 | |||
476 | retstr += WriteIndentedLine("do"); | ||
477 | |||
478 | // CompoundStatement handles indentation itself but we need to do it | ||
479 | // otherwise. | ||
480 | bool indentHere = dws.kids.Top is Statement; | ||
481 | if (indentHere) m_braceCount++; | ||
482 | retstr += GenerateNode((SYMBOL) dws.kids.Pop()); | ||
483 | if (indentHere) m_braceCount--; | ||
484 | |||
485 | retstr += WriteIndented("while ("); | ||
486 | retstr += GenerateNode((SYMBOL) dws.kids.Pop()); | ||
487 | retstr += ");\n"; | ||
488 | |||
489 | return retstr; | ||
490 | } | ||
491 | |||
492 | /// <summary> | ||
493 | /// Generates the code for a ForLoop node. | ||
494 | /// </summary> | ||
495 | /// <param name="fl">The ForLoop node.</param> | ||
496 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
497 | private string GenerateForLoop(ForLoop fl) | ||
498 | { | ||
499 | string retstr = String.Empty; | ||
500 | |||
501 | retstr += WriteIndented("for ("); | ||
502 | |||
503 | // for ( x = 0 ; x < 10 ; x++ ) | ||
504 | // ^^^^^^^ | ||
505 | retstr += GenerateForLoopStatement((ForLoopStatement) fl.kids.Pop()); | ||
506 | retstr += "; "; | ||
507 | // for ( x = 0 ; x < 10 ; x++ ) | ||
508 | // ^^^^^^^^ | ||
509 | retstr += GenerateNode((SYMBOL) fl.kids.Pop()); | ||
510 | retstr += "; "; | ||
511 | // for ( x = 0 ; x < 10 ; x++ ) | ||
512 | // ^^^^^ | ||
513 | retstr += GenerateForLoopStatement((ForLoopStatement) fl.kids.Pop()); | ||
514 | retstr += ")\n"; | ||
515 | |||
516 | // CompoundStatement handles indentation itself but we need to do it | ||
517 | // otherwise. | ||
518 | bool indentHere = fl.kids.Top is Statement; | ||
519 | if (indentHere) m_braceCount++; | ||
520 | retstr += GenerateNode((SYMBOL) fl.kids.Pop()); | ||
521 | if (indentHere) m_braceCount--; | ||
522 | |||
523 | return retstr; | ||
524 | } | ||
525 | |||
526 | /// <summary> | ||
527 | /// Generates the code for a ForLoopStatement node. | ||
528 | /// </summary> | ||
529 | /// <param name="fls">The ForLoopStatement node.</param> | ||
530 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
531 | private string GenerateForLoopStatement(ForLoopStatement fls) | ||
532 | { | ||
533 | string retstr = String.Empty; | ||
534 | |||
535 | int comma = fls.kids.Count - 1; // tells us whether to print a comma | ||
536 | |||
537 | foreach (SYMBOL s in fls.kids) | ||
538 | { | ||
539 | retstr += GenerateNode(s); | ||
540 | if (0 < comma--) | ||
541 | retstr += ", "; | ||
542 | } | ||
543 | |||
544 | return retstr; | ||
545 | } | ||
546 | |||
547 | /// <summary> | ||
548 | /// Generates the code for a BinaryExpression node. | ||
549 | /// </summary> | ||
550 | /// <param name="be">The BinaryExpression node.</param> | ||
551 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
552 | private string GenerateBinaryExpression(BinaryExpression be) | ||
553 | { | ||
554 | string retstr = String.Empty; | ||
555 | |||
556 | retstr += GenerateNode((SYMBOL) be.kids.Pop()); | ||
557 | retstr += String.Format(" {0} ", be.ExpressionSymbol); | ||
558 | foreach (SYMBOL kid in be.kids) | ||
559 | retstr += GenerateNode(kid); | ||
560 | |||
561 | return retstr; | ||
562 | } | ||
563 | |||
564 | /// <summary> | ||
565 | /// Generates the code for a UnaryExpression node. | ||
566 | /// </summary> | ||
567 | /// <param name="ue">The UnaryExpression node.</param> | ||
568 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
569 | private string GenerateUnaryExpression(UnaryExpression ue) | ||
570 | { | ||
571 | string retstr = String.Empty; | ||
572 | |||
573 | retstr += ue.UnarySymbol; | ||
574 | retstr += GenerateNode((SYMBOL) ue.kids.Pop()); | ||
575 | |||
576 | return retstr; | ||
577 | } | ||
578 | |||
579 | /// <summary> | ||
580 | /// Generates the code for a ParenthesisExpression node. | ||
581 | /// </summary> | ||
582 | /// <param name="pe">The ParenthesisExpression node.</param> | ||
583 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
584 | private string GenerateParenthesisExpression(ParenthesisExpression pe) | ||
585 | { | ||
586 | string retstr = String.Empty; | ||
587 | |||
588 | retstr += "("; | ||
589 | foreach (SYMBOL kid in pe.kids) | ||
590 | retstr += GenerateNode(kid); | ||
591 | retstr += ")"; | ||
592 | |||
593 | return retstr; | ||
594 | } | ||
595 | |||
596 | /// <summary> | ||
597 | /// Generates the code for a IncrementDecrementExpression node. | ||
598 | /// </summary> | ||
599 | /// <param name="ide">The IncrementDecrementExpression node.</param> | ||
600 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
601 | private string GenerateIncrementDecrementExpression(IncrementDecrementExpression ide) | ||
602 | { | ||
603 | string retstr = String.Empty; | ||
604 | |||
605 | if (0 < ide.kids.Count) | ||
606 | { | ||
607 | IdentDotExpression dot = (IdentDotExpression) ide.kids.Top; | ||
608 | retstr += String.Format("{0}", ide.PostOperation ? dot.Name + "." + dot.Member + ide.Operation : ide.Operation + dot.Name + "." + dot.Member); | ||
609 | } | ||
610 | else | ||
611 | retstr += String.Format("{0}", ide.PostOperation ? ide.Name + ide.Operation : ide.Operation + ide.Name); | ||
612 | |||
613 | return retstr; | ||
614 | } | ||
615 | |||
616 | /// <summary> | ||
617 | /// Generates the code for a TypecastExpression node. | ||
618 | /// </summary> | ||
619 | /// <param name="te">The TypecastExpression node.</param> | ||
620 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
621 | private string GenerateTypecastExpression(TypecastExpression te) | ||
622 | { | ||
623 | string retstr = String.Empty; | ||
624 | |||
625 | // we wrap all typecasted statements in parentheses | ||
626 | retstr += String.Format("({0}) (", te.TypecastType); | ||
627 | retstr += GenerateNode((SYMBOL) te.kids.Pop()); | ||
628 | retstr += ")"; | ||
629 | |||
630 | return retstr; | ||
631 | } | ||
632 | |||
633 | /// <summary> | ||
634 | /// Generates the code for a FunctionCall node. | ||
635 | /// </summary> | ||
636 | /// <param name="fc">The FunctionCall node.</param> | ||
637 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
638 | private string GenerateFunctionCall(FunctionCall fc) | ||
639 | { | ||
640 | string retstr = String.Empty; | ||
641 | |||
642 | retstr += String.Format("{0}(", fc.Id); | ||
643 | |||
644 | foreach (SYMBOL kid in fc.kids) | ||
645 | retstr += GenerateNode(kid); | ||
646 | |||
647 | retstr += ")"; | ||
648 | |||
649 | return retstr; | ||
650 | } | ||
651 | |||
652 | /// <summary> | ||
653 | /// Generates the code for a Constant node. | ||
654 | /// </summary> | ||
655 | /// <param name="c">The Constant node.</param> | ||
656 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
657 | private string GenerateConstant(Constant c) | ||
658 | { | ||
659 | string retstr = String.Empty; | ||
660 | |||
661 | // Supprt LSL's weird acceptance of floats with no trailing digits | ||
662 | // after the period. Turn float x = 10.; into float x = 10.0; | ||
663 | if ("LSL_Types.LSLFloat" == c.Type) | ||
664 | { | ||
665 | int dotIndex = c.Value.IndexOf('.') + 1; | ||
666 | if (0 < dotIndex && (dotIndex == c.Value.Length || !Char.IsDigit(c.Value[dotIndex]))) | ||
667 | c.Value = c.Value.Insert(dotIndex, "0"); | ||
668 | } | ||
669 | |||
670 | // need to quote strings | ||
671 | if ("LSL_Types.LSLString" == c.Type) | ||
672 | retstr += "\""; | ||
673 | retstr += c.Value; | ||
674 | if ("LSL_Types.LSLString" == c.Type) | ||
675 | retstr += "\""; | ||
676 | |||
677 | return retstr; | ||
678 | } | ||
679 | |||
680 | /// <summary> | ||
681 | /// Generates the code for a VectorConstant node. | ||
682 | /// </summary> | ||
683 | /// <param name="vc">The VectorConstant node.</param> | ||
684 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
685 | private string GenerateVectorConstant(VectorConstant vc) | ||
686 | { | ||
687 | string retstr = String.Empty; | ||
688 | |||
689 | retstr += String.Format("new {0}(", vc.Type); | ||
690 | retstr += GenerateNode((SYMBOL) vc.kids.Pop()); | ||
691 | retstr += ", "; | ||
692 | retstr += GenerateNode((SYMBOL) vc.kids.Pop()); | ||
693 | retstr += ", "; | ||
694 | retstr += GenerateNode((SYMBOL) vc.kids.Pop()); | ||
695 | retstr += ")"; | ||
696 | |||
697 | return retstr; | ||
698 | } | ||
699 | |||
700 | /// <summary> | ||
701 | /// Generates the code for a RotationConstant node. | ||
702 | /// </summary> | ||
703 | /// <param name="rc">The RotationConstant node.</param> | ||
704 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
705 | private string GenerateRotationConstant(RotationConstant rc) | ||
706 | { | ||
707 | string retstr = String.Empty; | ||
708 | |||
709 | retstr += String.Format("new {0}(", rc.Type); | ||
710 | retstr += GenerateNode((SYMBOL) rc.kids.Pop()); | ||
711 | retstr += ", "; | ||
712 | retstr += GenerateNode((SYMBOL) rc.kids.Pop()); | ||
713 | retstr += ", "; | ||
714 | retstr += GenerateNode((SYMBOL) rc.kids.Pop()); | ||
715 | retstr += ", "; | ||
716 | retstr += GenerateNode((SYMBOL) rc.kids.Pop()); | ||
717 | retstr += ")"; | ||
718 | |||
719 | return retstr; | ||
720 | } | ||
721 | |||
722 | /// <summary> | ||
723 | /// Generates the code for a ListConstant node. | ||
724 | /// </summary> | ||
725 | /// <param name="lc">The ListConstant node.</param> | ||
726 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
727 | private string GenerateListConstant(ListConstant lc) | ||
728 | { | ||
729 | string retstr = String.Empty; | ||
730 | |||
731 | retstr += String.Format("new {0}(", lc.Type); | ||
732 | |||
733 | foreach (SYMBOL kid in lc.kids) | ||
734 | retstr += GenerateNode(kid); | ||
735 | |||
736 | retstr += ")"; | ||
737 | |||
738 | return retstr; | ||
739 | } | ||
740 | |||
741 | /// <summary> | ||
742 | /// Prints text correctly indented, followed by a newline. | ||
743 | /// </summary> | ||
744 | /// <param name="s">String of text to print.</param> | ||
745 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
746 | private string WriteIndentedLine(string s) | ||
747 | { | ||
748 | return WriteIndented(s) + "\n"; | ||
749 | } | ||
750 | |||
751 | /// <summary> | ||
752 | /// Prints text correctly indented. | ||
753 | /// </summary> | ||
754 | /// <param name="s">String of text to print.</param> | ||
755 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
756 | private string WriteIndented(string s) | ||
757 | { | ||
758 | return Indent() + s; | ||
759 | } | ||
760 | |||
761 | /// <summary> | ||
762 | /// Prints correct indentation. | ||
763 | /// </summary> | ||
764 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
765 | private string Indent() | ||
766 | { | ||
767 | string retstr = String.Empty; | ||
768 | |||
769 | for (int i = 0; i < m_braceCount; i++) | ||
770 | retstr += " "; | ||
771 | |||
772 | return retstr; | ||
773 | } | ||
774 | } | ||
775 | } | ||
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs index 0d3c8c6..022cae4 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs | |||
@@ -73,6 +73,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
73 | private string ScriptEnginesPath = "ScriptEngines"; | 73 | private string ScriptEnginesPath = "ScriptEngines"; |
74 | 74 | ||
75 | private static LSL2CSConverter LSL_Converter = new LSL2CSConverter(); | 75 | private static LSL2CSConverter LSL_Converter = new LSL2CSConverter(); |
76 | //private static CSCodeGenerator LSL_Converter; | ||
76 | private static CSharpCodeProvider CScodeProvider = new CSharpCodeProvider(); | 77 | private static CSharpCodeProvider CScodeProvider = new CSharpCodeProvider(); |
77 | private static VBCodeProvider VBcodeProvider = new VBCodeProvider(); | 78 | private static VBCodeProvider VBcodeProvider = new VBCodeProvider(); |
78 | private static JScriptCodeProvider JScodeProvider = new JScriptCodeProvider(); | 79 | private static JScriptCodeProvider JScodeProvider = new JScriptCodeProvider(); |
@@ -275,6 +276,8 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
275 | { | 276 | { |
276 | // Its LSL, convert it to C# | 277 | // Its LSL, convert it to C# |
277 | compileScript = LSL_Converter.Convert(Script); | 278 | compileScript = LSL_Converter.Convert(Script); |
279 | //LSL_Converter = new CSCodeGenerator(Script); | ||
280 | //compileScript = LSL_Converter.Generate(); | ||
278 | l = enumCompileType.cs; | 281 | l = enumCompileType.cs; |
279 | } | 282 | } |
280 | 283 | ||
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSCodeTransformer.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSCodeTransformer.cs new file mode 100644 index 0000000..db40ace --- /dev/null +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSCodeTransformer.cs | |||
@@ -0,0 +1,100 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using Tools; | ||
31 | |||
32 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | ||
33 | { | ||
34 | public class LSL2CSCodeTransformer | ||
35 | { | ||
36 | private SYMBOL m_astRoot = null; | ||
37 | private static Dictionary<string, string> m_datatypeLSL2OpenSim = new Dictionary<string, string>(); | ||
38 | |||
39 | /// <summary> | ||
40 | /// Pass the new CodeTranformer an abstract syntax tree. | ||
41 | /// </summary> | ||
42 | /// <param name="astRoot">The root node of the AST.</param> | ||
43 | public LSL2CSCodeTransformer(SYMBOL astRoot) | ||
44 | { | ||
45 | m_astRoot = astRoot; | ||
46 | |||
47 | // let's populate the dictionary | ||
48 | try | ||
49 | { | ||
50 | m_datatypeLSL2OpenSim.Add("integer", "LSL_Types.LSLInteger"); | ||
51 | m_datatypeLSL2OpenSim.Add("float", "LSL_Types.LSLFloat"); | ||
52 | //m_datatypeLSL2OpenSim.Add("key", "LSL_Types.key"); // key doesn't seem to be used | ||
53 | m_datatypeLSL2OpenSim.Add("key", "LSL_Types.LSLString"); | ||
54 | m_datatypeLSL2OpenSim.Add("string", "LSL_Types.LSLString"); | ||
55 | m_datatypeLSL2OpenSim.Add("vector", "LSL_Types.Vector3"); | ||
56 | m_datatypeLSL2OpenSim.Add("rotation", "LSL_Types.Quaternion"); | ||
57 | m_datatypeLSL2OpenSim.Add("list", "LSL_Types.list"); | ||
58 | } | ||
59 | catch | ||
60 | { | ||
61 | // temporary workaround since we are adding to a static datatype | ||
62 | } | ||
63 | } | ||
64 | |||
65 | /// <summary> | ||
66 | /// Transform the code in the AST we have. | ||
67 | /// </summary> | ||
68 | /// <returns>The root node of the transformed AST</returns> | ||
69 | public SYMBOL Transform() | ||
70 | { | ||
71 | foreach (SYMBOL s in m_astRoot.kids) | ||
72 | TransformNode(s); | ||
73 | |||
74 | return m_astRoot; | ||
75 | } | ||
76 | |||
77 | /// <summary> | ||
78 | /// Recursively called to transform each type of node. Will transform this | ||
79 | /// node, then all it's children. | ||
80 | /// </summary> | ||
81 | /// <param name="s">The current node to transform.</param> | ||
82 | private void TransformNode(SYMBOL s) | ||
83 | { | ||
84 | // make sure to put type lower in the inheritance hierarchy first | ||
85 | // ie: since IdentConstant and StringConstant inherit from Constant, | ||
86 | // put IdentConstant and StringConstant before Constant | ||
87 | if (s is Declaration) | ||
88 | ((Declaration) s).Datatype = m_datatypeLSL2OpenSim[((Declaration) s).Datatype]; | ||
89 | else if (s is Constant) | ||
90 | ((Constant) s).Type = m_datatypeLSL2OpenSim[((Constant) s).Type]; | ||
91 | else if (s is TypecastExpression) | ||
92 | ((TypecastExpression) s).TypecastType = m_datatypeLSL2OpenSim[((TypecastExpression) s).TypecastType]; | ||
93 | else if (s is GlobalFunctionDefinition && "void" != ((GlobalFunctionDefinition) s).ReturnType) // we don't need to translate "void" | ||
94 | ((GlobalFunctionDefinition) s).ReturnType = m_datatypeLSL2OpenSim[((GlobalFunctionDefinition) s).ReturnType]; | ||
95 | |||
96 | foreach (SYMBOL kid in s.kids) | ||
97 | TransformNode(kid); | ||
98 | } | ||
99 | } | ||
100 | } | ||
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs new file mode 100644 index 0000000..dfd802a --- /dev/null +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs | |||
@@ -0,0 +1,18686 @@ | |||
1 | using System;using Tools; | ||
2 | //%+STRING_CONSTANT+3 | ||
3 | public class STRING_CONSTANT : TOKEN{ | ||
4 | public override string yyname { get { return "STRING_CONSTANT"; }} | ||
5 | public override int yynum { get { return 3; }} | ||
6 | public STRING_CONSTANT(Lexer yyl):base(yyl){}} | ||
7 | //%INCREMENT+4 | ||
8 | public class INCREMENT : TOKEN{ public override string yyname { get { return "INCREMENT";}} | ||
9 | public override int yynum { get { return 4; }} | ||
10 | public INCREMENT(Lexer yyl):base(yyl) {}} | ||
11 | //%DECREMENT+5 | ||
12 | public class DECREMENT : TOKEN{ public override string yyname { get { return "DECREMENT";}} | ||
13 | public override int yynum { get { return 5; }} | ||
14 | public DECREMENT(Lexer yyl):base(yyl) {}} | ||
15 | //%PLUS_EQUALS+6 | ||
16 | public class PLUS_EQUALS : TOKEN{ public override string yyname { get { return "PLUS_EQUALS";}} | ||
17 | public override int yynum { get { return 6; }} | ||
18 | public PLUS_EQUALS(Lexer yyl):base(yyl) {}} | ||
19 | //%MINUS_EQUALS+7 | ||
20 | public class MINUS_EQUALS : TOKEN{ public override string yyname { get { return "MINUS_EQUALS";}} | ||
21 | public override int yynum { get { return 7; }} | ||
22 | public MINUS_EQUALS(Lexer yyl):base(yyl) {}} | ||
23 | //%STAR_EQUALS+8 | ||
24 | public class STAR_EQUALS : TOKEN{ public override string yyname { get { return "STAR_EQUALS";}} | ||
25 | public override int yynum { get { return 8; }} | ||
26 | public STAR_EQUALS(Lexer yyl):base(yyl) {}} | ||
27 | //%SLASH_EQUALS+9 | ||
28 | public class SLASH_EQUALS : TOKEN{ public override string yyname { get { return "SLASH_EQUALS";}} | ||
29 | public override int yynum { get { return 9; }} | ||
30 | public SLASH_EQUALS(Lexer yyl):base(yyl) {}} | ||
31 | //%PERCENT_EQUALS+10 | ||
32 | public class PERCENT_EQUALS : TOKEN{ public override string yyname { get { return "PERCENT_EQUALS";}} | ||
33 | public override int yynum { get { return 10; }} | ||
34 | public PERCENT_EQUALS(Lexer yyl):base(yyl) {}} | ||
35 | //%SEMICOLON+11 | ||
36 | public class SEMICOLON : TOKEN{ public override string yyname { get { return "SEMICOLON";}} | ||
37 | public override int yynum { get { return 11; }} | ||
38 | public SEMICOLON(Lexer yyl):base(yyl) {}} | ||
39 | //%LEFT_BRACE+12 | ||
40 | public class LEFT_BRACE : TOKEN{ public override string yyname { get { return "LEFT_BRACE";}} | ||
41 | public override int yynum { get { return 12; }} | ||
42 | public LEFT_BRACE(Lexer yyl):base(yyl) {}} | ||
43 | //%RIGHT_BRACE+13 | ||
44 | public class RIGHT_BRACE : TOKEN{ public override string yyname { get { return "RIGHT_BRACE";}} | ||
45 | public override int yynum { get { return 13; }} | ||
46 | public RIGHT_BRACE(Lexer yyl):base(yyl) {}} | ||
47 | //%COMMA+14 | ||
48 | public class COMMA : TOKEN{ public override string yyname { get { return "COMMA";}} | ||
49 | public override int yynum { get { return 14; }} | ||
50 | public COMMA(Lexer yyl):base(yyl) {}} | ||
51 | //%EQUALS+15 | ||
52 | public class EQUALS : TOKEN{ public override string yyname { get { return "EQUALS";}} | ||
53 | public override int yynum { get { return 15; }} | ||
54 | public EQUALS(Lexer yyl):base(yyl) {}} | ||
55 | //%LEFT_PAREN+16 | ||
56 | public class LEFT_PAREN : TOKEN{ public override string yyname { get { return "LEFT_PAREN";}} | ||
57 | public override int yynum { get { return 16; }} | ||
58 | public LEFT_PAREN(Lexer yyl):base(yyl) {}} | ||
59 | //%RIGHT_PAREN+17 | ||
60 | public class RIGHT_PAREN : TOKEN{ public override string yyname { get { return "RIGHT_PAREN";}} | ||
61 | public override int yynum { get { return 17; }} | ||
62 | public RIGHT_PAREN(Lexer yyl):base(yyl) {}} | ||
63 | //%PLUS+18 | ||
64 | public class PLUS : TOKEN{ public override string yyname { get { return "PLUS";}} | ||
65 | public override int yynum { get { return 18; }} | ||
66 | public PLUS(Lexer yyl):base(yyl) {}} | ||
67 | //%MINUS+19 | ||
68 | public class MINUS : TOKEN{ public override string yyname { get { return "MINUS";}} | ||
69 | public override int yynum { get { return 19; }} | ||
70 | public MINUS(Lexer yyl):base(yyl) {}} | ||
71 | //%STAR+20 | ||
72 | public class STAR : TOKEN{ public override string yyname { get { return "STAR";}} | ||
73 | public override int yynum { get { return 20; }} | ||
74 | public STAR(Lexer yyl):base(yyl) {}} | ||
75 | //%SLASH+21 | ||
76 | public class SLASH : TOKEN{ public override string yyname { get { return "SLASH";}} | ||
77 | public override int yynum { get { return 21; }} | ||
78 | public SLASH(Lexer yyl):base(yyl) {}} | ||
79 | //%PERCENT+22 | ||
80 | public class PERCENT : TOKEN{ public override string yyname { get { return "PERCENT";}} | ||
81 | public override int yynum { get { return 22; }} | ||
82 | public PERCENT(Lexer yyl):base(yyl) {}} | ||
83 | //%AT+23 | ||
84 | public class AT : TOKEN{ public override string yyname { get { return "AT";}} | ||
85 | public override int yynum { get { return 23; }} | ||
86 | public AT(Lexer yyl):base(yyl) {}} | ||
87 | //%PERIOD+24 | ||
88 | public class PERIOD : TOKEN{ public override string yyname { get { return "PERIOD";}} | ||
89 | public override int yynum { get { return 24; }} | ||
90 | public PERIOD(Lexer yyl):base(yyl) {}} | ||
91 | //%LEFT_ANGLE+25 | ||
92 | public class LEFT_ANGLE : TOKEN{ public override string yyname { get { return "LEFT_ANGLE";}} | ||
93 | public override int yynum { get { return 25; }} | ||
94 | public LEFT_ANGLE(Lexer yyl):base(yyl) {}} | ||
95 | //%RIGHT_ANGLE+26 | ||
96 | public class RIGHT_ANGLE : TOKEN{ public override string yyname { get { return "RIGHT_ANGLE";}} | ||
97 | public override int yynum { get { return 26; }} | ||
98 | public RIGHT_ANGLE(Lexer yyl):base(yyl) {}} | ||
99 | //%LEFT_BRACKET+27 | ||
100 | public class LEFT_BRACKET : TOKEN{ public override string yyname { get { return "LEFT_BRACKET";}} | ||
101 | public override int yynum { get { return 27; }} | ||
102 | public LEFT_BRACKET(Lexer yyl):base(yyl) {}} | ||
103 | //%RIGHT_BRACKET+28 | ||
104 | public class RIGHT_BRACKET : TOKEN{ public override string yyname { get { return "RIGHT_BRACKET";}} | ||
105 | public override int yynum { get { return 28; }} | ||
106 | public RIGHT_BRACKET(Lexer yyl):base(yyl) {}} | ||
107 | //%EQUALS_EQUALS+29 | ||
108 | public class EQUALS_EQUALS : TOKEN{ public override string yyname { get { return "EQUALS_EQUALS";}} | ||
109 | public override int yynum { get { return 29; }} | ||
110 | public EQUALS_EQUALS(Lexer yyl):base(yyl) {}} | ||
111 | //%EXCLAMATION_EQUALS+30 | ||
112 | public class EXCLAMATION_EQUALS : TOKEN{ public override string yyname { get { return "EXCLAMATION_EQUALS";}} | ||
113 | public override int yynum { get { return 30; }} | ||
114 | public EXCLAMATION_EQUALS(Lexer yyl):base(yyl) {}} | ||
115 | //%LESS_EQUALS+31 | ||
116 | public class LESS_EQUALS : TOKEN{ public override string yyname { get { return "LESS_EQUALS";}} | ||
117 | public override int yynum { get { return 31; }} | ||
118 | public LESS_EQUALS(Lexer yyl):base(yyl) {}} | ||
119 | //%GREATER_EQUALS+32 | ||
120 | public class GREATER_EQUALS : TOKEN{ public override string yyname { get { return "GREATER_EQUALS";}} | ||
121 | public override int yynum { get { return 32; }} | ||
122 | public GREATER_EQUALS(Lexer yyl):base(yyl) {}} | ||
123 | //%AMP+33 | ||
124 | public class AMP : TOKEN{ public override string yyname { get { return "AMP";}} | ||
125 | public override int yynum { get { return 33; }} | ||
126 | public AMP(Lexer yyl):base(yyl) {}} | ||
127 | //%STROKE+34 | ||
128 | public class STROKE : TOKEN{ public override string yyname { get { return "STROKE";}} | ||
129 | public override int yynum { get { return 34; }} | ||
130 | public STROKE(Lexer yyl):base(yyl) {}} | ||
131 | //%CARET+35 | ||
132 | public class CARET : TOKEN{ public override string yyname { get { return "CARET";}} | ||
133 | public override int yynum { get { return 35; }} | ||
134 | public CARET(Lexer yyl):base(yyl) {}} | ||
135 | //%TILDE+36 | ||
136 | public class TILDE : TOKEN{ public override string yyname { get { return "TILDE";}} | ||
137 | public override int yynum { get { return 36; }} | ||
138 | public TILDE(Lexer yyl):base(yyl) {}} | ||
139 | //%EXCLAMATION+37 | ||
140 | public class EXCLAMATION : TOKEN{ public override string yyname { get { return "EXCLAMATION";}} | ||
141 | public override int yynum { get { return 37; }} | ||
142 | public EXCLAMATION(Lexer yyl):base(yyl) {}} | ||
143 | //%AMP_AMP+38 | ||
144 | public class AMP_AMP : TOKEN{ public override string yyname { get { return "AMP_AMP";}} | ||
145 | public override int yynum { get { return 38; }} | ||
146 | public AMP_AMP(Lexer yyl):base(yyl) {}} | ||
147 | //%STROKE_STROKE+39 | ||
148 | public class STROKE_STROKE : TOKEN{ public override string yyname { get { return "STROKE_STROKE";}} | ||
149 | public override int yynum { get { return 39; }} | ||
150 | public STROKE_STROKE(Lexer yyl):base(yyl) {}} | ||
151 | //%LEFT_SHIFT+40 | ||
152 | public class LEFT_SHIFT : TOKEN{ public override string yyname { get { return "LEFT_SHIFT";}} | ||
153 | public override int yynum { get { return 40; }} | ||
154 | public LEFT_SHIFT(Lexer yyl):base(yyl) {}} | ||
155 | //%RIGHT_SHIFT+41 | ||
156 | public class RIGHT_SHIFT : TOKEN{ public override string yyname { get { return "RIGHT_SHIFT";}} | ||
157 | public override int yynum { get { return 41; }} | ||
158 | public RIGHT_SHIFT(Lexer yyl):base(yyl) {}} | ||
159 | //%IF+42 | ||
160 | public class IF : TOKEN{ public override string yyname { get { return "IF";}} | ||
161 | public override int yynum { get { return 42; }} | ||
162 | public IF(Lexer yyl):base(yyl) {}} | ||
163 | //%ELSE+43 | ||
164 | public class ELSE : TOKEN{ public override string yyname { get { return "ELSE";}} | ||
165 | public override int yynum { get { return 43; }} | ||
166 | public ELSE(Lexer yyl):base(yyl) {}} | ||
167 | //%DO+44 | ||
168 | public class DO : TOKEN{ public override string yyname { get { return "DO";}} | ||
169 | public override int yynum { get { return 44; }} | ||
170 | public DO(Lexer yyl):base(yyl) {}} | ||
171 | //%WHILE+45 | ||
172 | public class WHILE : TOKEN{ public override string yyname { get { return "WHILE";}} | ||
173 | public override int yynum { get { return 45; }} | ||
174 | public WHILE(Lexer yyl):base(yyl) {}} | ||
175 | //%FOR+46 | ||
176 | public class FOR : TOKEN{ public override string yyname { get { return "FOR";}} | ||
177 | public override int yynum { get { return 46; }} | ||
178 | public FOR(Lexer yyl):base(yyl) {}} | ||
179 | //%DEFAULT_STATE+47 | ||
180 | public class DEFAULT_STATE : TOKEN{ public override string yyname { get { return "DEFAULT_STATE";}} | ||
181 | public override int yynum { get { return 47; }} | ||
182 | public DEFAULT_STATE(Lexer yyl):base(yyl) {}} | ||
183 | //%STATE+48 | ||
184 | public class STATE : TOKEN{ public override string yyname { get { return "STATE";}} | ||
185 | public override int yynum { get { return 48; }} | ||
186 | public STATE(Lexer yyl):base(yyl) {}} | ||
187 | //%JUMP+49 | ||
188 | public class JUMP : TOKEN{ public override string yyname { get { return "JUMP";}} | ||
189 | public override int yynum { get { return 49; }} | ||
190 | public JUMP(Lexer yyl):base(yyl) {}} | ||
191 | //%RETURN+50 | ||
192 | public class RETURN : TOKEN{ public override string yyname { get { return "RETURN";}} | ||
193 | public override int yynum { get { return 50; }} | ||
194 | public RETURN(Lexer yyl):base(yyl) {}} | ||
195 | //%INTEGER_TYPE+51 | ||
196 | public class INTEGER_TYPE : TOKEN{ public override string yyname { get { return "INTEGER_TYPE";}} | ||
197 | public override int yynum { get { return 51; }} | ||
198 | public INTEGER_TYPE(Lexer yyl):base(yyl) {}} | ||
199 | //%FLOAT_TYPE+52 | ||
200 | public class FLOAT_TYPE : TOKEN{ public override string yyname { get { return "FLOAT_TYPE";}} | ||
201 | public override int yynum { get { return 52; }} | ||
202 | public FLOAT_TYPE(Lexer yyl):base(yyl) {}} | ||
203 | //%STRING_TYPE+53 | ||
204 | public class STRING_TYPE : TOKEN{ public override string yyname { get { return "STRING_TYPE";}} | ||
205 | public override int yynum { get { return 53; }} | ||
206 | public STRING_TYPE(Lexer yyl):base(yyl) {}} | ||
207 | //%KEY_TYPE+54 | ||
208 | public class KEY_TYPE : TOKEN{ public override string yyname { get { return "KEY_TYPE";}} | ||
209 | public override int yynum { get { return 54; }} | ||
210 | public KEY_TYPE(Lexer yyl):base(yyl) {}} | ||
211 | //%VECTOR_TYPE+55 | ||
212 | public class VECTOR_TYPE : TOKEN{ public override string yyname { get { return "VECTOR_TYPE";}} | ||
213 | public override int yynum { get { return 55; }} | ||
214 | public VECTOR_TYPE(Lexer yyl):base(yyl) {}} | ||
215 | //%ROTATION_TYPE+56 | ||
216 | public class ROTATION_TYPE : TOKEN{ public override string yyname { get { return "ROTATION_TYPE";}} | ||
217 | public override int yynum { get { return 56; }} | ||
218 | public ROTATION_TYPE(Lexer yyl):base(yyl) {}} | ||
219 | //%LIST_TYPE+57 | ||
220 | public class LIST_TYPE : TOKEN{ public override string yyname { get { return "LIST_TYPE";}} | ||
221 | public override int yynum { get { return 57; }} | ||
222 | public LIST_TYPE(Lexer yyl):base(yyl) {}} | ||
223 | //%AT_ROT_TARGET_EVENT+58 | ||
224 | public class AT_ROT_TARGET_EVENT : TOKEN{ public override string yyname { get { return "AT_ROT_TARGET_EVENT";}} | ||
225 | public override int yynum { get { return 58; }} | ||
226 | public AT_ROT_TARGET_EVENT(Lexer yyl):base(yyl) {}} | ||
227 | //%AT_TARGET_EVENT+59 | ||
228 | public class AT_TARGET_EVENT : TOKEN{ public override string yyname { get { return "AT_TARGET_EVENT";}} | ||
229 | public override int yynum { get { return 59; }} | ||
230 | public AT_TARGET_EVENT(Lexer yyl):base(yyl) {}} | ||
231 | //%ATTACH_EVENT+60 | ||
232 | public class ATTACH_EVENT : TOKEN{ public override string yyname { get { return "ATTACH_EVENT";}} | ||
233 | public override int yynum { get { return 60; }} | ||
234 | public ATTACH_EVENT(Lexer yyl):base(yyl) {}} | ||
235 | //%CHANGED_EVENT+61 | ||
236 | public class CHANGED_EVENT : TOKEN{ public override string yyname { get { return "CHANGED_EVENT";}} | ||
237 | public override int yynum { get { return 61; }} | ||
238 | public CHANGED_EVENT(Lexer yyl):base(yyl) {}} | ||
239 | //%COLLISION_EVENT+62 | ||
240 | public class COLLISION_EVENT : TOKEN{ public override string yyname { get { return "COLLISION_EVENT";}} | ||
241 | public override int yynum { get { return 62; }} | ||
242 | public COLLISION_EVENT(Lexer yyl):base(yyl) {}} | ||
243 | //%COLLISION_END_EVENT+63 | ||
244 | public class COLLISION_END_EVENT : TOKEN{ public override string yyname { get { return "COLLISION_END_EVENT";}} | ||
245 | public override int yynum { get { return 63; }} | ||
246 | public COLLISION_END_EVENT(Lexer yyl):base(yyl) {}} | ||
247 | //%COLLISION_START_EVENT+64 | ||
248 | public class COLLISION_START_EVENT : TOKEN{ public override string yyname { get { return "COLLISION_START_EVENT";}} | ||
249 | public override int yynum { get { return 64; }} | ||
250 | public COLLISION_START_EVENT(Lexer yyl):base(yyl) {}} | ||
251 | //%CONTROL_EVENT+65 | ||
252 | public class CONTROL_EVENT : TOKEN{ public override string yyname { get { return "CONTROL_EVENT";}} | ||
253 | public override int yynum { get { return 65; }} | ||
254 | public CONTROL_EVENT(Lexer yyl):base(yyl) {}} | ||
255 | //%DATASERVER_EVENT+66 | ||
256 | public class DATASERVER_EVENT : TOKEN{ public override string yyname { get { return "DATASERVER_EVENT";}} | ||
257 | public override int yynum { get { return 66; }} | ||
258 | public DATASERVER_EVENT(Lexer yyl):base(yyl) {}} | ||
259 | //%EMAIL_EVENT+67 | ||
260 | public class EMAIL_EVENT : TOKEN{ public override string yyname { get { return "EMAIL_EVENT";}} | ||
261 | public override int yynum { get { return 67; }} | ||
262 | public EMAIL_EVENT(Lexer yyl):base(yyl) {}} | ||
263 | //%HTTP_RESPONSE_EVENT+68 | ||
264 | public class HTTP_RESPONSE_EVENT : TOKEN{ public override string yyname { get { return "HTTP_RESPONSE_EVENT";}} | ||
265 | public override int yynum { get { return 68; }} | ||
266 | public HTTP_RESPONSE_EVENT(Lexer yyl):base(yyl) {}} | ||
267 | //%LAND_COLLISION_EVENT+69 | ||
268 | public class LAND_COLLISION_EVENT : TOKEN{ public override string yyname { get { return "LAND_COLLISION_EVENT";}} | ||
269 | public override int yynum { get { return 69; }} | ||
270 | public LAND_COLLISION_EVENT(Lexer yyl):base(yyl) {}} | ||
271 | //%LAND_COLLISION_END_EVENT+70 | ||
272 | public class LAND_COLLISION_END_EVENT : TOKEN{ public override string yyname { get { return "LAND_COLLISION_END_EVENT";}} | ||
273 | public override int yynum { get { return 70; }} | ||
274 | public LAND_COLLISION_END_EVENT(Lexer yyl):base(yyl) {}} | ||
275 | //%LAND_COLLISION_START_EVENT+71 | ||
276 | public class LAND_COLLISION_START_EVENT : TOKEN{ public override string yyname { get { return "LAND_COLLISION_START_EVENT";}} | ||
277 | public override int yynum { get { return 71; }} | ||
278 | public LAND_COLLISION_START_EVENT(Lexer yyl):base(yyl) {}} | ||
279 | //%LINK_MESSAGE_EVENT+72 | ||
280 | public class LINK_MESSAGE_EVENT : TOKEN{ public override string yyname { get { return "LINK_MESSAGE_EVENT";}} | ||
281 | public override int yynum { get { return 72; }} | ||
282 | public LINK_MESSAGE_EVENT(Lexer yyl):base(yyl) {}} | ||
283 | //%LISTEN_EVENT+73 | ||
284 | public class LISTEN_EVENT : TOKEN{ public override string yyname { get { return "LISTEN_EVENT";}} | ||
285 | public override int yynum { get { return 73; }} | ||
286 | public LISTEN_EVENT(Lexer yyl):base(yyl) {}} | ||
287 | //%MONEY_EVENT+74 | ||
288 | public class MONEY_EVENT : TOKEN{ public override string yyname { get { return "MONEY_EVENT";}} | ||
289 | public override int yynum { get { return 74; }} | ||
290 | public MONEY_EVENT(Lexer yyl):base(yyl) {}} | ||
291 | //%MOVING_END_EVENT+75 | ||
292 | public class MOVING_END_EVENT : TOKEN{ public override string yyname { get { return "MOVING_END_EVENT";}} | ||
293 | public override int yynum { get { return 75; }} | ||
294 | public MOVING_END_EVENT(Lexer yyl):base(yyl) {}} | ||
295 | //%MOVING_START_EVENT+76 | ||
296 | public class MOVING_START_EVENT : TOKEN{ public override string yyname { get { return "MOVING_START_EVENT";}} | ||
297 | public override int yynum { get { return 76; }} | ||
298 | public MOVING_START_EVENT(Lexer yyl):base(yyl) {}} | ||
299 | //%NO_SENSOR_EVENT+77 | ||
300 | public class NO_SENSOR_EVENT : TOKEN{ public override string yyname { get { return "NO_SENSOR_EVENT";}} | ||
301 | public override int yynum { get { return 77; }} | ||
302 | public NO_SENSOR_EVENT(Lexer yyl):base(yyl) {}} | ||
303 | //%NOT_AT_ROT_TARGET_EVENT+78 | ||
304 | public class NOT_AT_ROT_TARGET_EVENT : TOKEN{ public override string yyname { get { return "NOT_AT_ROT_TARGET_EVENT";}} | ||
305 | public override int yynum { get { return 78; }} | ||
306 | public NOT_AT_ROT_TARGET_EVENT(Lexer yyl):base(yyl) {}} | ||
307 | //%NOT_AT_TARGET_EVENT+79 | ||
308 | public class NOT_AT_TARGET_EVENT : TOKEN{ public override string yyname { get { return "NOT_AT_TARGET_EVENT";}} | ||
309 | public override int yynum { get { return 79; }} | ||
310 | public NOT_AT_TARGET_EVENT(Lexer yyl):base(yyl) {}} | ||
311 | //%OBJECT_REZ_EVENT+80 | ||
312 | public class OBJECT_REZ_EVENT : TOKEN{ public override string yyname { get { return "OBJECT_REZ_EVENT";}} | ||
313 | public override int yynum { get { return 80; }} | ||
314 | public OBJECT_REZ_EVENT(Lexer yyl):base(yyl) {}} | ||
315 | //%ON_REZ_EVENT+81 | ||
316 | public class ON_REZ_EVENT : TOKEN{ public override string yyname { get { return "ON_REZ_EVENT";}} | ||
317 | public override int yynum { get { return 81; }} | ||
318 | public ON_REZ_EVENT(Lexer yyl):base(yyl) {}} | ||
319 | //%REMOTE_DATA_EVENT+82 | ||
320 | public class REMOTE_DATA_EVENT : TOKEN{ public override string yyname { get { return "REMOTE_DATA_EVENT";}} | ||
321 | public override int yynum { get { return 82; }} | ||
322 | public REMOTE_DATA_EVENT(Lexer yyl):base(yyl) {}} | ||
323 | //%RUN_TIME_PERMISSIONS_EVENT+83 | ||
324 | public class RUN_TIME_PERMISSIONS_EVENT : TOKEN{ public override string yyname { get { return "RUN_TIME_PERMISSIONS_EVENT";}} | ||
325 | public override int yynum { get { return 83; }} | ||
326 | public RUN_TIME_PERMISSIONS_EVENT(Lexer yyl):base(yyl) {}} | ||
327 | //%SENSOR_EVENT+84 | ||
328 | public class SENSOR_EVENT : TOKEN{ public override string yyname { get { return "SENSOR_EVENT";}} | ||
329 | public override int yynum { get { return 84; }} | ||
330 | public SENSOR_EVENT(Lexer yyl):base(yyl) {}} | ||
331 | //%STATE_ENTRY_EVENT+85 | ||
332 | public class STATE_ENTRY_EVENT : TOKEN{ public override string yyname { get { return "STATE_ENTRY_EVENT";}} | ||
333 | public override int yynum { get { return 85; }} | ||
334 | public STATE_ENTRY_EVENT(Lexer yyl):base(yyl) {}} | ||
335 | //%STATE_EXIT_EVENT+86 | ||
336 | public class STATE_EXIT_EVENT : TOKEN{ public override string yyname { get { return "STATE_EXIT_EVENT";}} | ||
337 | public override int yynum { get { return 86; }} | ||
338 | public STATE_EXIT_EVENT(Lexer yyl):base(yyl) {}} | ||
339 | //%TIMER_EVENT+87 | ||
340 | public class TIMER_EVENT : TOKEN{ public override string yyname { get { return "TIMER_EVENT";}} | ||
341 | public override int yynum { get { return 87; }} | ||
342 | public TIMER_EVENT(Lexer yyl):base(yyl) {}} | ||
343 | //%TOUCH_EVENT+88 | ||
344 | public class TOUCH_EVENT : TOKEN{ public override string yyname { get { return "TOUCH_EVENT";}} | ||
345 | public override int yynum { get { return 88; }} | ||
346 | public TOUCH_EVENT(Lexer yyl):base(yyl) {}} | ||
347 | //%TOUCH_START_EVENT+89 | ||
348 | public class TOUCH_START_EVENT : TOKEN{ public override string yyname { get { return "TOUCH_START_EVENT";}} | ||
349 | public override int yynum { get { return 89; }} | ||
350 | public TOUCH_START_EVENT(Lexer yyl):base(yyl) {}} | ||
351 | //%TOUCH_END_EVENT+90 | ||
352 | public class TOUCH_END_EVENT : TOKEN{ public override string yyname { get { return "TOUCH_END_EVENT";}} | ||
353 | public override int yynum { get { return 90; }} | ||
354 | public TOUCH_END_EVENT(Lexer yyl):base(yyl) {}} | ||
355 | //%IDENT+91 | ||
356 | public class IDENT : TOKEN{ public override string yyname { get { return "IDENT";}} | ||
357 | public override int yynum { get { return 91; }} | ||
358 | public IDENT(Lexer yyl):base(yyl) {}} | ||
359 | //%INTEGER_CONSTANT+92 | ||
360 | public class INTEGER_CONSTANT : TOKEN{ public override string yyname { get { return "INTEGER_CONSTANT";}} | ||
361 | public override int yynum { get { return 92; }} | ||
362 | public INTEGER_CONSTANT(Lexer yyl):base(yyl) {}} | ||
363 | //%HEX_INTEGER_CONSTANT+93 | ||
364 | public class HEX_INTEGER_CONSTANT : TOKEN{ public override string yyname { get { return "HEX_INTEGER_CONSTANT";}} | ||
365 | public override int yynum { get { return 93; }} | ||
366 | public HEX_INTEGER_CONSTANT(Lexer yyl):base(yyl) {}} | ||
367 | //%FLOAT_CONSTANT+94 | ||
368 | public class FLOAT_CONSTANT : TOKEN{ public override string yyname { get { return "FLOAT_CONSTANT";}} | ||
369 | public override int yynum { get { return 94; }} | ||
370 | public FLOAT_CONSTANT(Lexer yyl):base(yyl) {}} | ||
371 | //%|LSLTokens | ||
372 | public class yyLSLTokens : YyLexer { | ||
373 | public yyLSLTokens(ErrorHandler eh):base(eh) { arr = new int[] { | ||
374 | 101,4,6,52,0, | ||
375 | 46,0,53,0,6, | ||
376 | 102,4,16,117,0, | ||
377 | 115,0,45,0,97, | ||
378 | 0,115,0,99,0, | ||
379 | 105,0,105,0,2, | ||
380 | 0,103,5,27,7, | ||
381 | 0,104,9,1,0, | ||
382 | 3,192,0,105,5, | ||
383 | 27,3,65,0,2, | ||
384 | 1,3,66,0,2, | ||
385 | 1,3,67,0,2, | ||
386 | 1,3,68,0,2, | ||
387 | 1,3,69,0,2, | ||
388 | 1,3,70,0,2, | ||
389 | 1,3,71,0,2, | ||
390 | 1,3,72,0,2, | ||
391 | 1,3,73,0,2, | ||
392 | 1,3,74,0,2, | ||
393 | 1,3,75,0,2, | ||
394 | 1,3,76,0,2, | ||
395 | 1,3,77,0,2, | ||
396 | 1,3,78,0,2, | ||
397 | 1,3,79,0,2, | ||
398 | 1,3,80,0,2, | ||
399 | 1,3,81,0,2, | ||
400 | 1,3,82,0,2, | ||
401 | 1,3,83,0,2, | ||
402 | 1,3,84,0,2, | ||
403 | 1,3,85,0,2, | ||
404 | 1,3,86,0,2, | ||
405 | 1,3,87,0,2, | ||
406 | 1,3,88,0,2, | ||
407 | 1,3,89,0,2, | ||
408 | 1,3,90,0,2, | ||
409 | 1,3,192,0,2, | ||
410 | 1,7,1,106,9, | ||
411 | 1,1,3,170,0, | ||
412 | 107,5,27,3,109, | ||
413 | 0,2,1,3,110, | ||
414 | 0,2,1,3,111, | ||
415 | 0,2,1,3,112, | ||
416 | 0,2,1,3,113, | ||
417 | 0,2,1,3,114, | ||
418 | 0,2,1,3,115, | ||
419 | 0,2,1,3,116, | ||
420 | 0,2,1,3,117, | ||
421 | 0,2,1,3,118, | ||
422 | 0,2,1,3,119, | ||
423 | 0,2,1,3,120, | ||
424 | 0,2,1,3,121, | ||
425 | 0,2,1,3,122, | ||
426 | 0,2,1,3,170, | ||
427 | 0,2,1,3,97, | ||
428 | 0,2,1,3,98, | ||
429 | 0,2,1,3,99, | ||
430 | 0,2,1,3,100, | ||
431 | 0,2,1,3,101, | ||
432 | 0,2,1,3,102, | ||
433 | 0,2,1,3,103, | ||
434 | 0,2,1,3,104, | ||
435 | 0,2,1,3,105, | ||
436 | 0,2,1,3,106, | ||
437 | 0,2,1,3,107, | ||
438 | 0,2,1,3,108, | ||
439 | 0,2,1,7,2, | ||
440 | 108,9,1,2,3, | ||
441 | 197,1,109,5,1, | ||
442 | 3,197,1,2,1, | ||
443 | 7,3,110,9,1, | ||
444 | 3,3,176,2,111, | ||
445 | 5,1,3,176,2, | ||
446 | 2,1,7,4,112, | ||
447 | 9,1,4,3,187, | ||
448 | 1,113,5,1,3, | ||
449 | 187,1,2,1,7, | ||
450 | 5,114,9,1,5, | ||
451 | 3,0,3,115,5, | ||
452 | 1,3,0,3,2, | ||
453 | 1,7,6,116,9, | ||
454 | 1,6,3,3,9, | ||
455 | 117,5,1,3,3, | ||
456 | 9,2,1,7,7, | ||
457 | 118,9,1,7,3, | ||
458 | 136,4,119,5,1, | ||
459 | 3,136,4,2,1, | ||
460 | 7,8,120,9,1, | ||
461 | 8,3,96,6,121, | ||
462 | 5,11,3,96,6, | ||
463 | 2,1,3,48,0, | ||
464 | 2,1,3,49,0, | ||
465 | 2,1,3,50,0, | ||
466 | 2,1,3,51,0, | ||
467 | 2,1,3,52,0, | ||
468 | 2,1,3,53,0, | ||
469 | 2,1,3,54,0, | ||
470 | 2,1,3,55,0, | ||
471 | 2,1,3,56,0, | ||
472 | 2,1,3,57,0, | ||
473 | 2,1,7,9,122, | ||
474 | 9,1,9,3,96, | ||
475 | 33,123,5,1,3, | ||
476 | 96,33,2,1,7, | ||
477 | 10,124,9,1,10, | ||
478 | 3,178,0,125,5, | ||
479 | 1,3,178,0,2, | ||
480 | 1,7,11,126,9, | ||
481 | 1,11,3,160,0, | ||
482 | 127,5,2,3,160, | ||
483 | 0,2,1,3,32, | ||
484 | 0,2,1,7,12, | ||
485 | 128,9,1,12,3, | ||
486 | 40,32,129,5,1, | ||
487 | 3,40,32,2,1, | ||
488 | 7,13,130,9,1, | ||
489 | 13,3,41,32,131, | ||
490 | 5,1,3,41,32, | ||
491 | 2,1,7,14,132, | ||
492 | 9,1,14,3,1, | ||
493 | 0,133,5,5,3, | ||
494 | 0,0,2,1,3, | ||
495 | 1,0,2,1,3, | ||
496 | 13,0,2,1,3, | ||
497 | 9,0,2,1,3, | ||
498 | 10,0,2,1,7, | ||
499 | 15,134,9,1,15, | ||
500 | 3,15,7,135,5, | ||
501 | 1,3,15,7,2, | ||
502 | 1,7,17,136,9, | ||
503 | 1,17,3,0,224, | ||
504 | 137,5,1,3,0, | ||
505 | 224,2,1,7,18, | ||
506 | 138,9,1,18,3, | ||
507 | 63,32,139,5,2, | ||
508 | 3,63,32,2,1, | ||
509 | 3,95,0,2,1, | ||
510 | 7,19,140,9,1, | ||
511 | 19,3,173,0,141, | ||
512 | 5,2,3,45,0, | ||
513 | 2,1,3,173,0, | ||
514 | 2,1,7,20,142, | ||
515 | 9,1,20,3,58, | ||
516 | 15,143,5,4,3, | ||
517 | 123,0,2,1,3, | ||
518 | 91,0,2,1,3, | ||
519 | 58,15,2,1,3, | ||
520 | 40,0,2,1,7, | ||
521 | 21,144,9,1,21, | ||
522 | 3,59,15,145,5, | ||
523 | 4,3,59,15,2, | ||
524 | 1,3,125,0,2, | ||
525 | 1,3,93,0,2, | ||
526 | 1,3,41,0,2, | ||
527 | 1,7,22,146,9, | ||
528 | 1,22,3,171,0, | ||
529 | 147,5,1,3,171, | ||
530 | 0,2,1,7,23, | ||
531 | 148,9,1,23,3, | ||
532 | 187,0,149,5,1, | ||
533 | 3,187,0,2,1, | ||
534 | 7,24,150,9,1, | ||
535 | 24,3,35,0,151, | ||
536 | 5,12,3,37,0, | ||
537 | 2,1,3,38,0, | ||
538 | 2,1,3,42,0, | ||
539 | 2,1,3,44,0, | ||
540 | 2,1,3,46,0, | ||
541 | 2,1,3,47,0, | ||
542 | 2,1,3,92,0, | ||
543 | 2,1,3,59,0, | ||
544 | 2,1,3,64,0, | ||
545 | 2,1,3,33,0, | ||
546 | 2,1,3,34,0, | ||
547 | 2,1,3,35,0, | ||
548 | 2,1,7,25,152, | ||
549 | 9,1,25,3,172, | ||
550 | 0,153,5,7,3, | ||
551 | 172,0,2,1,3, | ||
552 | 124,0,2,1,3, | ||
553 | 126,0,2,1,3, | ||
554 | 60,0,2,1,3, | ||
555 | 61,0,2,1,3, | ||
556 | 62,0,2,1,3, | ||
557 | 43,0,2,1,7, | ||
558 | 26,154,9,1,26, | ||
559 | 3,36,0,155,5, | ||
560 | 1,3,36,0,2, | ||
561 | 1,7,27,156,9, | ||
562 | 1,27,3,96,0, | ||
563 | 157,5,2,3,94, | ||
564 | 0,2,1,3,96, | ||
565 | 0,2,1,7,27, | ||
566 | 2,0,158,5,2, | ||
567 | 159,4,18,89,0, | ||
568 | 89,0,73,0,78, | ||
569 | 0,73,0,84,0, | ||
570 | 73,0,65,0,76, | ||
571 | 0,160,12,1,1092, | ||
572 | 161,5,91,3,9, | ||
573 | 0,162,12,1,39807, | ||
574 | 163,5,0,164,11, | ||
575 | 1,1069,0,165,4, | ||
576 | 0,1,-1,3,10, | ||
577 | 0,162,3,13,0, | ||
578 | 162,3,32,0,162, | ||
579 | 3,33,0,166,12, | ||
580 | 1,42720,167,5,1, | ||
581 | 3,61,0,168,12, | ||
582 | 1,42835,169,5,0, | ||
583 | 170,11,1,142,0, | ||
584 | 171,4,36,69,0, | ||
585 | 88,0,67,0,76, | ||
586 | 0,65,0,77,0, | ||
587 | 65,0,84,0,73, | ||
588 | 0,79,0,78,0, | ||
589 | 95,0,69,0,81, | ||
590 | 0,85,0,65,0, | ||
591 | 76,0,83,0,1, | ||
592 | -1,172,11,1,180, | ||
593 | 0,173,4,22,69, | ||
594 | 0,88,0,67,0, | ||
595 | 76,0,65,0,77, | ||
596 | 0,65,0,84,0, | ||
597 | 73,0,79,0,78, | ||
598 | 0,1,-1,3,34, | ||
599 | 0,174,12,1,42961, | ||
600 | 175,5,0,176,11, | ||
601 | 1,951,0,165,1, | ||
602 | -1,3,37,0,177, | ||
603 | 12,1,41031,178,5, | ||
604 | 1,3,61,0,179, | ||
605 | 12,1,41146,180,5, | ||
606 | 0,181,11,1,40, | ||
607 | 0,182,4,28,80, | ||
608 | 0,69,0,82,0, | ||
609 | 67,0,69,0,78, | ||
610 | 0,84,0,95,0, | ||
611 | 69,0,81,0,85, | ||
612 | 0,65,0,76,0, | ||
613 | 83,0,1,-1,183, | ||
614 | 11,1,101,0,184, | ||
615 | 4,14,80,0,69, | ||
616 | 0,82,0,67,0, | ||
617 | 69,0,78,0,84, | ||
618 | 0,1,-1,3,38, | ||
619 | 0,185,12,1,41272, | ||
620 | 186,5,1,3,38, | ||
621 | 0,187,12,1,41372, | ||
622 | 188,5,0,189,11, | ||
623 | 1,185,0,190,4, | ||
624 | 14,65,0,77,0, | ||
625 | 80,0,95,0,65, | ||
626 | 0,77,0,80,0, | ||
627 | 1,-1,191,11,1, | ||
628 | 160,0,192,4,6, | ||
629 | 65,0,77,0,80, | ||
630 | 0,1,-1,3,40, | ||
631 | 0,193,12,1,40544, | ||
632 | 194,5,0,195,11, | ||
633 | 1,71,0,196,4, | ||
634 | 20,76,0,69,0, | ||
635 | 70,0,84,0,95, | ||
636 | 0,80,0,65,0, | ||
637 | 82,0,69,0,78, | ||
638 | 0,1,-1,3,41, | ||
639 | 0,197,12,1,40908, | ||
640 | 198,5,0,199,11, | ||
641 | 1,76,0,200,4, | ||
642 | 22,82,0,73,0, | ||
643 | 71,0,72,0,84, | ||
644 | 0,95,0,80,0, | ||
645 | 65,0,82,0,69, | ||
646 | 0,78,0,1,-1, | ||
647 | 3,42,0,201,12, | ||
648 | 1,41513,202,5,1, | ||
649 | 3,61,0,203,12, | ||
650 | 1,41628,204,5,0, | ||
651 | 205,11,1,28,0, | ||
652 | 206,4,22,83,0, | ||
653 | 84,0,65,0,82, | ||
654 | 0,95,0,69,0, | ||
655 | 81,0,85,0,65, | ||
656 | 0,76,0,83,0, | ||
657 | 1,-1,207,11,1, | ||
658 | 91,0,208,4,8, | ||
659 | 83,0,84,0,65, | ||
660 | 0,82,0,1,-1, | ||
661 | 3,43,0,209,12, | ||
662 | 1,44409,210,5,2, | ||
663 | 3,61,0,211,12, | ||
664 | 1,44524,212,5,0, | ||
665 | 213,11,1,16,0, | ||
666 | 214,4,22,80,0, | ||
667 | 76,0,85,0,83, | ||
668 | 0,95,0,69,0, | ||
669 | 81,0,85,0,65, | ||
670 | 0,76,0,83,0, | ||
671 | 1,-1,3,43,0, | ||
672 | 215,12,1,44646,216, | ||
673 | 5,0,217,11,1, | ||
674 | 2,0,218,4,18, | ||
675 | 73,0,78,0,67, | ||
676 | 0,82,0,69,0, | ||
677 | 77,0,69,0,78, | ||
678 | 0,84,0,1,-1, | ||
679 | 219,11,1,81,0, | ||
680 | 220,4,8,80,0, | ||
681 | 76,0,85,0,83, | ||
682 | 0,1,-1,3,44, | ||
683 | 0,221,12,1,41754, | ||
684 | 222,5,0,223,11, | ||
685 | 1,61,0,224,4, | ||
686 | 10,67,0,79,0, | ||
687 | 77,0,77,0,65, | ||
688 | 0,1,-1,3,45, | ||
689 | 0,225,12,1,39939, | ||
690 | 226,5,17,3,45, | ||
691 | 0,227,12,1,40026, | ||
692 | 228,5,0,229,11, | ||
693 | 1,10,0,230,4, | ||
694 | 18,68,0,69,0, | ||
695 | 67,0,82,0,69, | ||
696 | 0,77,0,69,0, | ||
697 | 78,0,84,0,1, | ||
698 | -1,3,46,0,231, | ||
699 | 12,1,39479,232,5, | ||
700 | 14,3,48,0,233, | ||
701 | 12,1,39541,234,5, | ||
702 | 14,3,48,0,233, | ||
703 | 3,49,0,233,3, | ||
704 | 50,0,233,3,51, | ||
705 | 0,233,3,52,0, | ||
706 | 233,3,53,0,233, | ||
707 | 3,54,0,233,3, | ||
708 | 55,0,233,3,56, | ||
709 | 0,233,3,57,0, | ||
710 | 233,3,101,0,235, | ||
711 | 12,1,38959,236,5, | ||
712 | 12,3,43,0,237, | ||
713 | 12,1,1664,238,5, | ||
714 | 10,3,48,0,239, | ||
715 | 12,1,1726,240,5, | ||
716 | 12,3,48,0,239, | ||
717 | 3,49,0,239,3, | ||
718 | 50,0,239,3,51, | ||
719 | 0,239,3,52,0, | ||
720 | 239,3,53,0,239, | ||
721 | 3,54,0,239,3, | ||
722 | 55,0,239,3,56, | ||
723 | 0,239,3,57,0, | ||
724 | 239,3,102,0,241, | ||
725 | 12,1,1732,242,5, | ||
726 | 0,243,11,1,882, | ||
727 | 0,244,4,28,70, | ||
728 | 0,76,0,79,0, | ||
729 | 65,0,84,0,95, | ||
730 | 0,67,0,79,0, | ||
731 | 78,0,83,0,84, | ||
732 | 0,65,0,78,0, | ||
733 | 84,0,1,-1,3, | ||
734 | 70,0,241,245,11, | ||
735 | 1,882,0,244,1, | ||
736 | -1,3,49,0,239, | ||
737 | 3,50,0,239,3, | ||
738 | 51,0,239,3,52, | ||
739 | 0,239,3,53,0, | ||
740 | 239,3,54,0,239, | ||
741 | 3,55,0,239,3, | ||
742 | 56,0,239,3,57, | ||
743 | 0,239,0,165,1, | ||
744 | -1,3,45,0,237, | ||
745 | 3,48,0,239,3, | ||
746 | 49,0,239,3,50, | ||
747 | 0,239,3,51,0, | ||
748 | 239,3,52,0,239, | ||
749 | 3,53,0,239,3, | ||
750 | 54,0,239,3,55, | ||
751 | 0,239,3,56,0, | ||
752 | 239,3,57,0,239, | ||
753 | 0,165,1,-1,3, | ||
754 | 102,0,241,3,69, | ||
755 | 0,235,3,70,0, | ||
756 | 241,246,11,1,882, | ||
757 | 0,244,1,-1,3, | ||
758 | 49,0,233,3,50, | ||
759 | 0,233,3,51,0, | ||
760 | 233,3,52,0,233, | ||
761 | 3,53,0,233,3, | ||
762 | 54,0,233,3,55, | ||
763 | 0,233,3,56,0, | ||
764 | 233,3,57,0,233, | ||
765 | 3,101,0,235,3, | ||
766 | 102,0,241,3,69, | ||
767 | 0,235,3,70,0, | ||
768 | 241,247,11,1,882, | ||
769 | 0,244,1,-1,3, | ||
770 | 48,0,248,12,1, | ||
771 | 38954,249,5,17,3, | ||
772 | 120,0,250,12,1, | ||
773 | 39098,251,5,22,3, | ||
774 | 102,0,252,12,1, | ||
775 | 39099,253,5,22,3, | ||
776 | 102,0,252,3,48, | ||
777 | 0,252,3,49,0, | ||
778 | 252,3,50,0,252, | ||
779 | 3,51,0,252,3, | ||
780 | 52,0,252,3,53, | ||
781 | 0,252,3,54,0, | ||
782 | 252,3,55,0,252, | ||
783 | 3,56,0,252,3, | ||
784 | 57,0,252,3,97, | ||
785 | 0,252,3,98,0, | ||
786 | 252,3,99,0,252, | ||
787 | 3,100,0,252,3, | ||
788 | 101,0,252,3,65, | ||
789 | 0,252,3,66,0, | ||
790 | 252,3,67,0,252, | ||
791 | 3,68,0,252,3, | ||
792 | 69,0,252,3,70, | ||
793 | 0,252,254,11,1, | ||
794 | 855,0,255,4,40, | ||
795 | 72,0,69,0,88, | ||
796 | 0,95,0,73,0, | ||
797 | 78,0,84,0,69, | ||
798 | 0,71,0,69,0, | ||
799 | 82,0,95,0,67, | ||
800 | 0,79,0,78,0, | ||
801 | 83,0,84,0,65, | ||
802 | 0,78,0,84,0, | ||
803 | 1,-1,3,48,0, | ||
804 | 252,3,49,0,252, | ||
805 | 3,50,0,252,3, | ||
806 | 51,0,252,3,52, | ||
807 | 0,252,3,53,0, | ||
808 | 252,3,54,0,252, | ||
809 | 3,55,0,252,3, | ||
810 | 56,0,252,3,57, | ||
811 | 0,252,3,97,0, | ||
812 | 252,3,98,0,252, | ||
813 | 3,99,0,252,3, | ||
814 | 100,0,252,3,101, | ||
815 | 0,252,3,65,0, | ||
816 | 252,3,66,0,252, | ||
817 | 3,67,0,252,3, | ||
818 | 68,0,252,3,69, | ||
819 | 0,252,3,70,0, | ||
820 | 252,0,165,1,-1, | ||
821 | 3,48,0,256,12, | ||
822 | 1,39376,257,5,15, | ||
823 | 3,46,0,231,3, | ||
824 | 48,0,256,3,49, | ||
825 | 0,256,3,50,0, | ||
826 | 256,3,51,0,256, | ||
827 | 3,52,0,256,3, | ||
828 | 53,0,256,3,54, | ||
829 | 0,256,3,55,0, | ||
830 | 256,3,56,0,256, | ||
831 | 3,57,0,256,3, | ||
832 | 101,0,235,3,102, | ||
833 | 0,241,3,69,0, | ||
834 | 235,3,70,0,241, | ||
835 | 258,11,1,841,0, | ||
836 | 259,4,32,73,0, | ||
837 | 78,0,84,0,69, | ||
838 | 0,71,0,69,0, | ||
839 | 82,0,95,0,67, | ||
840 | 0,79,0,78,0, | ||
841 | 83,0,84,0,65, | ||
842 | 0,78,0,84,0, | ||
843 | 1,-1,3,49,0, | ||
844 | 256,3,50,0,256, | ||
845 | 3,88,0,250,3, | ||
846 | 52,0,256,3,53, | ||
847 | 0,256,3,51,0, | ||
848 | 256,3,55,0,256, | ||
849 | 3,56,0,256,3, | ||
850 | 54,0,256,3,46, | ||
851 | 0,231,3,57,0, | ||
852 | 256,3,101,0,235, | ||
853 | 3,102,0,241,3, | ||
854 | 69,0,235,3,70, | ||
855 | 0,241,260,11,1, | ||
856 | 841,0,259,1,-1, | ||
857 | 3,49,0,256,3, | ||
858 | 50,0,256,3,51, | ||
859 | 0,256,3,52,0, | ||
860 | 256,3,53,0,256, | ||
861 | 3,54,0,256,3, | ||
862 | 55,0,256,3,56, | ||
863 | 0,256,3,57,0, | ||
864 | 256,3,61,0,261, | ||
865 | 12,1,40174,262,5, | ||
866 | 0,263,11,1,22, | ||
867 | 0,264,4,24,77, | ||
868 | 0,73,0,78,0, | ||
869 | 85,0,83,0,95, | ||
870 | 0,69,0,81,0, | ||
871 | 85,0,65,0,76, | ||
872 | 0,83,0,1,-1, | ||
873 | 3,101,0,235,3, | ||
874 | 102,0,241,3,69, | ||
875 | 0,235,3,70,0, | ||
876 | 241,265,11,1,86, | ||
877 | 0,266,4,10,77, | ||
878 | 0,73,0,78,0, | ||
879 | 85,0,83,0,1, | ||
880 | -1,3,46,0,267, | ||
881 | 12,1,41875,268,5, | ||
882 | 14,3,48,0,233, | ||
883 | 3,49,0,233,3, | ||
884 | 50,0,233,3,51, | ||
885 | 0,233,3,52,0, | ||
886 | 233,3,53,0,233, | ||
887 | 3,54,0,233,3, | ||
888 | 55,0,233,3,56, | ||
889 | 0,233,3,57,0, | ||
890 | 233,3,101,0,235, | ||
891 | 3,102,0,241,3, | ||
892 | 69,0,235,3,70, | ||
893 | 0,241,269,11,1, | ||
894 | 111,0,270,4,12, | ||
895 | 80,0,69,0,82, | ||
896 | 0,73,0,79,0, | ||
897 | 68,0,1,-1,3, | ||
898 | 47,0,271,12,1, | ||
899 | 41996,272,5,2,3, | ||
900 | 47,0,273,12,1, | ||
901 | 42100,274,5,118,3, | ||
902 | 1,0,275,12,1, | ||
903 | 42101,276,5,118,3, | ||
904 | 1,0,275,3,9, | ||
905 | 0,275,3,96,33, | ||
906 | 275,3,13,0,275, | ||
907 | 3,0,3,275,3, | ||
908 | 32,0,275,3,33, | ||
909 | 0,275,3,34,0, | ||
910 | 275,3,35,0,275, | ||
911 | 3,36,0,275,3, | ||
912 | 37,0,275,3,38, | ||
913 | 0,275,3,40,0, | ||
914 | 275,3,41,0,275, | ||
915 | 3,42,0,275,3, | ||
916 | 43,0,275,3,44, | ||
917 | 0,275,3,45,0, | ||
918 | 275,3,46,0,275, | ||
919 | 3,47,0,275,3, | ||
920 | 3,9,275,3,49, | ||
921 | 0,275,3,50,0, | ||
922 | 275,3,48,0,275, | ||
923 | 3,52,0,275,3, | ||
924 | 53,0,275,3,51, | ||
925 | 0,275,3,55,0, | ||
926 | 275,3,56,0,275, | ||
927 | 3,54,0,275,3, | ||
928 | 59,0,275,3,57, | ||
929 | 0,275,3,61,0, | ||
930 | 275,3,62,0,275, | ||
931 | 3,60,0,275,3, | ||
932 | 64,0,275,3,65, | ||
933 | 0,275,3,66,0, | ||
934 | 275,3,67,0,275, | ||
935 | 3,68,0,275,3, | ||
936 | 69,0,275,3,70, | ||
937 | 0,275,3,71,0, | ||
938 | 275,3,72,0,275, | ||
939 | 3,73,0,275,3, | ||
940 | 74,0,275,3,75, | ||
941 | 0,275,3,76,0, | ||
942 | 275,3,77,0,275, | ||
943 | 3,78,0,275,3, | ||
944 | 79,0,275,3,80, | ||
945 | 0,275,3,81,0, | ||
946 | 275,3,82,0,275, | ||
947 | 3,83,0,275,3, | ||
948 | 84,0,275,3,85, | ||
949 | 0,275,3,86,0, | ||
950 | 275,3,87,0,275, | ||
951 | 3,88,0,275,3, | ||
952 | 89,0,275,3,90, | ||
953 | 0,275,3,91,0, | ||
954 | 275,3,92,0,275, | ||
955 | 3,93,0,275,3, | ||
956 | 94,0,275,3,95, | ||
957 | 0,275,3,96,0, | ||
958 | 275,3,97,0,275, | ||
959 | 3,98,0,275,3, | ||
960 | 99,0,275,3,100, | ||
961 | 0,275,3,101,0, | ||
962 | 275,3,102,0,275, | ||
963 | 3,103,0,275,3, | ||
964 | 104,0,275,3,105, | ||
965 | 0,275,3,106,0, | ||
966 | 275,3,107,0,275, | ||
967 | 3,15,7,275,3, | ||
968 | 109,0,275,3,110, | ||
969 | 0,275,3,111,0, | ||
970 | 275,3,112,0,275, | ||
971 | 3,113,0,275,3, | ||
972 | 114,0,275,3,115, | ||
973 | 0,275,3,116,0, | ||
974 | 275,3,117,0,275, | ||
975 | 3,118,0,275,3, | ||
976 | 119,0,275,3,120, | ||
977 | 0,275,3,121,0, | ||
978 | 275,3,122,0,275, | ||
979 | 3,108,0,275,3, | ||
980 | 124,0,275,3,125, | ||
981 | 0,275,3,96,6, | ||
982 | 275,3,123,0,275, | ||
983 | 3,126,0,275,3, | ||
984 | 58,15,275,3,59, | ||
985 | 15,275,3,136,4, | ||
986 | 275,3,160,0,275, | ||
987 | 3,170,0,275,3, | ||
988 | 171,0,275,3,172, | ||
989 | 0,275,3,173,0, | ||
990 | 275,3,178,0,275, | ||
991 | 3,176,2,275,3, | ||
992 | 187,0,275,3,187, | ||
993 | 1,275,3,192,0, | ||
994 | 275,3,41,32,275, | ||
995 | 3,197,1,275,3, | ||
996 | 0,224,275,3,40, | ||
997 | 32,275,3,63,32, | ||
998 | 275,277,11,1,1073, | ||
999 | 0,165,1,-1,3, | ||
1000 | 9,0,275,3,96, | ||
1001 | 33,275,3,13,0, | ||
1002 | 275,3,0,3,275, | ||
1003 | 3,32,0,275,3, | ||
1004 | 33,0,275,3,34, | ||
1005 | 0,275,3,35,0, | ||
1006 | 275,3,36,0,275, | ||
1007 | 3,37,0,275,3, | ||
1008 | 38,0,275,3,40, | ||
1009 | 0,275,3,41,0, | ||
1010 | 275,3,42,0,275, | ||
1011 | 3,43,0,275,3, | ||
1012 | 44,0,275,3,45, | ||
1013 | 0,275,3,46,0, | ||
1014 | 275,3,47,0,275, | ||
1015 | 3,3,9,275,3, | ||
1016 | 49,0,275,3,50, | ||
1017 | 0,275,3,48,0, | ||
1018 | 275,3,52,0,275, | ||
1019 | 3,53,0,275,3, | ||
1020 | 51,0,275,3,55, | ||
1021 | 0,275,3,56,0, | ||
1022 | 275,3,54,0,275, | ||
1023 | 3,59,0,275,3, | ||
1024 | 57,0,275,3,61, | ||
1025 | 0,275,3,62,0, | ||
1026 | 275,3,60,0,275, | ||
1027 | 3,64,0,275,3, | ||
1028 | 65,0,275,3,66, | ||
1029 | 0,275,3,67,0, | ||
1030 | 275,3,68,0,275, | ||
1031 | 3,69,0,275,3, | ||
1032 | 70,0,275,3,71, | ||
1033 | 0,275,3,72,0, | ||
1034 | 275,3,73,0,275, | ||
1035 | 3,74,0,275,3, | ||
1036 | 75,0,275,3,76, | ||
1037 | 0,275,3,77,0, | ||
1038 | 275,3,78,0,275, | ||
1039 | 3,79,0,275,3, | ||
1040 | 80,0,275,3,81, | ||
1041 | 0,275,3,82,0, | ||
1042 | 275,3,83,0,275, | ||
1043 | 3,84,0,275,3, | ||
1044 | 85,0,275,3,86, | ||
1045 | 0,275,3,87,0, | ||
1046 | 275,3,88,0,275, | ||
1047 | 3,89,0,275,3, | ||
1048 | 90,0,275,3,91, | ||
1049 | 0,275,3,92,0, | ||
1050 | 275,3,93,0,275, | ||
1051 | 3,94,0,275,3, | ||
1052 | 95,0,275,3,96, | ||
1053 | 0,275,3,97,0, | ||
1054 | 275,3,98,0,275, | ||
1055 | 3,99,0,275,3, | ||
1056 | 100,0,275,3,101, | ||
1057 | 0,275,3,102,0, | ||
1058 | 275,3,103,0,275, | ||
1059 | 3,104,0,275,3, | ||
1060 | 105,0,275,3,106, | ||
1061 | 0,275,3,107,0, | ||
1062 | 275,3,15,7,275, | ||
1063 | 3,109,0,275,3, | ||
1064 | 110,0,275,3,111, | ||
1065 | 0,275,3,112,0, | ||
1066 | 275,3,113,0,275, | ||
1067 | 3,114,0,275,3, | ||
1068 | 115,0,275,3,116, | ||
1069 | 0,275,3,117,0, | ||
1070 | 275,3,118,0,275, | ||
1071 | 3,119,0,275,3, | ||
1072 | 120,0,275,3,121, | ||
1073 | 0,275,3,122,0, | ||
1074 | 275,3,108,0,275, | ||
1075 | 3,124,0,275,3, | ||
1076 | 125,0,275,3,96, | ||
1077 | 6,275,3,123,0, | ||
1078 | 275,3,126,0,275, | ||
1079 | 3,58,15,275,3, | ||
1080 | 59,15,275,3,136, | ||
1081 | 4,275,3,160,0, | ||
1082 | 275,3,170,0,275, | ||
1083 | 3,171,0,275,3, | ||
1084 | 172,0,275,3,173, | ||
1085 | 0,275,3,178,0, | ||
1086 | 275,3,176,2,275, | ||
1087 | 3,187,0,275,3, | ||
1088 | 187,1,275,3,192, | ||
1089 | 0,275,3,41,32, | ||
1090 | 275,3,197,1,275, | ||
1091 | 3,0,224,275,3, | ||
1092 | 40,32,275,3,63, | ||
1093 | 32,275,278,11,1, | ||
1094 | 1073,0,165,1,-1, | ||
1095 | 3,61,0,279,12, | ||
1096 | 1,42351,280,5,0, | ||
1097 | 281,11,1,34,0, | ||
1098 | 282,4,24,83,0, | ||
1099 | 76,0,65,0,83, | ||
1100 | 0,72,0,95,0, | ||
1101 | 69,0,81,0,85, | ||
1102 | 0,65,0,76,0, | ||
1103 | 83,0,1,-1,283, | ||
1104 | 11,1,96,0,284, | ||
1105 | 4,10,83,0,76, | ||
1106 | 0,65,0,83,0, | ||
1107 | 72,0,1,-1,3, | ||
1108 | 48,0,248,3,49, | ||
1109 | 0,256,3,50,0, | ||
1110 | 256,3,51,0,256, | ||
1111 | 3,52,0,256,3, | ||
1112 | 53,0,256,3,54, | ||
1113 | 0,256,3,55,0, | ||
1114 | 256,3,56,0,256, | ||
1115 | 3,57,0,256,3, | ||
1116 | 59,0,285,12,1, | ||
1117 | 42478,286,5,0,287, | ||
1118 | 11,1,46,0,288, | ||
1119 | 4,18,83,0,69, | ||
1120 | 0,77,0,73,0, | ||
1121 | 67,0,79,0,76, | ||
1122 | 0,79,0,78,0, | ||
1123 | 1,-1,3,60,0, | ||
1124 | 289,12,1,43446,290, | ||
1125 | 5,2,3,60,0, | ||
1126 | 291,12,1,43560,292, | ||
1127 | 5,0,293,11,1, | ||
1128 | 197,0,294,4,20, | ||
1129 | 76,0,69,0,70, | ||
1130 | 0,84,0,95,0, | ||
1131 | 83,0,72,0,73, | ||
1132 | 0,70,0,84,0, | ||
1133 | 1,-1,3,61,0, | ||
1134 | 295,12,1,43681,296, | ||
1135 | 5,0,297,11,1, | ||
1136 | 148,0,298,4,22, | ||
1137 | 76,0,69,0,83, | ||
1138 | 0,83,0,95,0, | ||
1139 | 69,0,81,0,85, | ||
1140 | 0,65,0,76,0, | ||
1141 | 83,0,1,-1,299, | ||
1142 | 11,1,116,0,300, | ||
1143 | 4,20,76,0,69, | ||
1144 | 0,70,0,84,0, | ||
1145 | 95,0,65,0,78, | ||
1146 | 0,71,0,76,0, | ||
1147 | 69,0,1,-1,3, | ||
1148 | 61,0,301,12,1, | ||
1149 | 43807,302,5,1,3, | ||
1150 | 61,0,303,12,1, | ||
1151 | 43922,304,5,0,305, | ||
1152 | 11,1,136,0,306, | ||
1153 | 4,26,69,0,81, | ||
1154 | 0,85,0,65,0, | ||
1155 | 76,0,83,0,95, | ||
1156 | 0,69,0,81,0, | ||
1157 | 85,0,65,0,76, | ||
1158 | 0,83,0,1,-1, | ||
1159 | 307,11,1,66,0, | ||
1160 | 308,4,12,69,0, | ||
1161 | 81,0,85,0,65, | ||
1162 | 0,76,0,83,0, | ||
1163 | 1,-1,3,62,0, | ||
1164 | 309,12,1,44048,310, | ||
1165 | 5,2,3,61,0, | ||
1166 | 311,12,1,44163,312, | ||
1167 | 5,0,313,11,1, | ||
1168 | 154,0,314,4,28, | ||
1169 | 71,0,82,0,69, | ||
1170 | 0,65,0,84,0, | ||
1171 | 69,0,82,0,95, | ||
1172 | 0,69,0,81,0, | ||
1173 | 85,0,65,0,76, | ||
1174 | 0,83,0,1,-1, | ||
1175 | 3,62,0,315,12, | ||
1176 | 1,44284,316,5,0, | ||
1177 | 317,11,1,203,0, | ||
1178 | 318,4,22,82,0, | ||
1179 | 73,0,71,0,72, | ||
1180 | 0,84,0,95,0, | ||
1181 | 83,0,72,0,73, | ||
1182 | 0,70,0,84,0, | ||
1183 | 1,-1,319,11,1, | ||
1184 | 121,0,320,4,22, | ||
1185 | 82,0,73,0,71, | ||
1186 | 0,72,0,84,0, | ||
1187 | 95,0,65,0,78, | ||
1188 | 0,71,0,76,0, | ||
1189 | 69,0,1,-1,3, | ||
1190 | 64,0,321,12,1, | ||
1191 | 42599,322,5,0,323, | ||
1192 | 11,1,106,0,324, | ||
1193 | 4,4,65,0,84, | ||
1194 | 0,1,-1,3,65, | ||
1195 | 0,325,12,1,1093, | ||
1196 | 326,5,63,3,109, | ||
1197 | 0,327,12,1,1094, | ||
1198 | 328,5,63,3,109, | ||
1199 | 0,327,3,110,0, | ||
1200 | 327,3,111,0,327, | ||
1201 | 3,112,0,327,3, | ||
1202 | 113,0,327,3,114, | ||
1203 | 0,327,3,115,0, | ||
1204 | 327,3,116,0,327, | ||
1205 | 3,117,0,327,3, | ||
1206 | 118,0,327,3,119, | ||
1207 | 0,327,3,120,0, | ||
1208 | 327,3,121,0,327, | ||
1209 | 3,122,0,327,3, | ||
1210 | 48,0,327,3,49, | ||
1211 | 0,327,3,50,0, | ||
1212 | 327,3,51,0,327, | ||
1213 | 3,52,0,327,3, | ||
1214 | 53,0,327,3,54, | ||
1215 | 0,327,3,55,0, | ||
1216 | 327,3,56,0,327, | ||
1217 | 3,57,0,327,3, | ||
1218 | 65,0,327,3,66, | ||
1219 | 0,327,3,67,0, | ||
1220 | 327,3,68,0,327, | ||
1221 | 3,69,0,327,3, | ||
1222 | 70,0,327,3,71, | ||
1223 | 0,327,3,72,0, | ||
1224 | 327,3,73,0,327, | ||
1225 | 3,74,0,327,3, | ||
1226 | 75,0,327,3,76, | ||
1227 | 0,327,3,77,0, | ||
1228 | 327,3,78,0,327, | ||
1229 | 3,79,0,327,3, | ||
1230 | 80,0,327,3,81, | ||
1231 | 0,327,3,82,0, | ||
1232 | 327,3,83,0,327, | ||
1233 | 3,84,0,327,3, | ||
1234 | 85,0,327,3,86, | ||
1235 | 0,327,3,87,0, | ||
1236 | 327,3,88,0,327, | ||
1237 | 3,89,0,327,3, | ||
1238 | 90,0,327,3,95, | ||
1239 | 0,327,3,97,0, | ||
1240 | 327,3,98,0,327, | ||
1241 | 3,99,0,327,3, | ||
1242 | 100,0,327,3,101, | ||
1243 | 0,327,3,102,0, | ||
1244 | 327,3,103,0,327, | ||
1245 | 3,104,0,327,3, | ||
1246 | 105,0,327,3,106, | ||
1247 | 0,327,3,107,0, | ||
1248 | 327,3,108,0,327, | ||
1249 | 329,11,1,829,0, | ||
1250 | 330,4,10,73,0, | ||
1251 | 68,0,69,0,78, | ||
1252 | 0,84,0,1,-1, | ||
1253 | 3,110,0,327,3, | ||
1254 | 111,0,327,3,112, | ||
1255 | 0,327,3,113,0, | ||
1256 | 327,3,114,0,327, | ||
1257 | 3,115,0,327,3, | ||
1258 | 116,0,327,3,117, | ||
1259 | 0,327,3,118,0, | ||
1260 | 327,3,119,0,327, | ||
1261 | 3,120,0,327,3, | ||
1262 | 121,0,327,3,122, | ||
1263 | 0,327,3,48,0, | ||
1264 | 327,3,49,0,327, | ||
1265 | 3,50,0,327,3, | ||
1266 | 51,0,327,3,52, | ||
1267 | 0,327,3,53,0, | ||
1268 | 327,3,54,0,327, | ||
1269 | 3,55,0,327,3, | ||
1270 | 56,0,327,3,57, | ||
1271 | 0,327,3,65,0, | ||
1272 | 327,3,66,0,327, | ||
1273 | 3,67,0,327,3, | ||
1274 | 68,0,327,3,69, | ||
1275 | 0,327,3,70,0, | ||
1276 | 327,3,71,0,327, | ||
1277 | 3,72,0,327,3, | ||
1278 | 73,0,327,3,74, | ||
1279 | 0,327,3,75,0, | ||
1280 | 327,3,76,0,327, | ||
1281 | 3,77,0,327,3, | ||
1282 | 78,0,327,3,79, | ||
1283 | 0,327,3,80,0, | ||
1284 | 327,3,81,0,327, | ||
1285 | 3,82,0,327,3, | ||
1286 | 83,0,327,3,84, | ||
1287 | 0,327,3,85,0, | ||
1288 | 327,3,86,0,327, | ||
1289 | 3,87,0,327,3, | ||
1290 | 88,0,327,3,89, | ||
1291 | 0,327,3,90,0, | ||
1292 | 327,3,95,0,327, | ||
1293 | 3,97,0,327,3, | ||
1294 | 98,0,327,3,99, | ||
1295 | 0,327,3,100,0, | ||
1296 | 327,3,101,0,327, | ||
1297 | 3,102,0,327,3, | ||
1298 | 103,0,327,3,104, | ||
1299 | 0,327,3,105,0, | ||
1300 | 327,3,106,0,327, | ||
1301 | 3,107,0,327,3, | ||
1302 | 108,0,327,331,11, | ||
1303 | 1,829,0,330,1, | ||
1304 | -1,3,66,0,325, | ||
1305 | 3,67,0,325,3, | ||
1306 | 68,0,325,3,69, | ||
1307 | 0,332,12,1,1337, | ||
1308 | 333,5,65,3,109, | ||
1309 | 0,327,3,110,0, | ||
1310 | 327,3,111,0,327, | ||
1311 | 3,112,0,327,3, | ||
1312 | 113,0,327,3,114, | ||
1313 | 0,327,3,115,0, | ||
1314 | 327,3,116,0,327, | ||
1315 | 3,117,0,327,3, | ||
1316 | 118,0,327,3,119, | ||
1317 | 0,327,3,120,0, | ||
1318 | 327,3,121,0,327, | ||
1319 | 3,122,0,327,3, | ||
1320 | 43,0,237,3,45, | ||
1321 | 0,237,3,48,0, | ||
1322 | 334,12,1,1399,335, | ||
1323 | 5,63,3,109,0, | ||
1324 | 327,3,110,0,327, | ||
1325 | 3,111,0,327,3, | ||
1326 | 112,0,327,3,113, | ||
1327 | 0,327,3,114,0, | ||
1328 | 327,3,115,0,327, | ||
1329 | 3,116,0,327,3, | ||
1330 | 117,0,327,3,118, | ||
1331 | 0,327,3,119,0, | ||
1332 | 327,3,120,0,327, | ||
1333 | 3,121,0,327,3, | ||
1334 | 122,0,327,3,48, | ||
1335 | 0,334,3,49,0, | ||
1336 | 334,3,50,0,334, | ||
1337 | 3,51,0,334,3, | ||
1338 | 52,0,334,3,53, | ||
1339 | 0,334,3,54,0, | ||
1340 | 334,3,55,0,334, | ||
1341 | 3,56,0,334,3, | ||
1342 | 57,0,334,3,65, | ||
1343 | 0,327,3,66,0, | ||
1344 | 327,3,67,0,327, | ||
1345 | 3,68,0,327,3, | ||
1346 | 69,0,327,3,70, | ||
1347 | 0,336,12,1,1405, | ||
1348 | 337,5,63,3,109, | ||
1349 | 0,327,3,110,0, | ||
1350 | 327,3,111,0,327, | ||
1351 | 3,112,0,327,3, | ||
1352 | 113,0,327,3,114, | ||
1353 | 0,327,3,115,0, | ||
1354 | 327,3,116,0,327, | ||
1355 | 3,117,0,327,3, | ||
1356 | 118,0,327,3,119, | ||
1357 | 0,327,3,120,0, | ||
1358 | 327,3,121,0,327, | ||
1359 | 3,122,0,327,3, | ||
1360 | 48,0,327,3,49, | ||
1361 | 0,327,3,50,0, | ||
1362 | 327,3,51,0,327, | ||
1363 | 3,52,0,327,3, | ||
1364 | 53,0,327,3,54, | ||
1365 | 0,327,3,55,0, | ||
1366 | 327,3,56,0,327, | ||
1367 | 3,57,0,327,3, | ||
1368 | 65,0,327,3,66, | ||
1369 | 0,327,3,67,0, | ||
1370 | 327,3,68,0,327, | ||
1371 | 3,69,0,327,3, | ||
1372 | 70,0,327,3,71, | ||
1373 | 0,327,3,72,0, | ||
1374 | 327,3,73,0,327, | ||
1375 | 3,74,0,327,3, | ||
1376 | 75,0,327,3,76, | ||
1377 | 0,327,3,77,0, | ||
1378 | 327,3,78,0,327, | ||
1379 | 3,79,0,327,3, | ||
1380 | 80,0,327,3,81, | ||
1381 | 0,327,3,82,0, | ||
1382 | 327,3,83,0,327, | ||
1383 | 3,84,0,327,3, | ||
1384 | 85,0,327,3,86, | ||
1385 | 0,327,3,87,0, | ||
1386 | 327,3,88,0,327, | ||
1387 | 3,89,0,327,3, | ||
1388 | 90,0,327,3,95, | ||
1389 | 0,327,3,97,0, | ||
1390 | 327,3,98,0,327, | ||
1391 | 3,99,0,327,3, | ||
1392 | 100,0,327,3,101, | ||
1393 | 0,327,3,102,0, | ||
1394 | 327,3,103,0,327, | ||
1395 | 3,104,0,327,3, | ||
1396 | 105,0,327,3,106, | ||
1397 | 0,327,3,107,0, | ||
1398 | 327,3,108,0,327, | ||
1399 | 338,11,1,829,0, | ||
1400 | 330,1,-1,3,71, | ||
1401 | 0,327,3,72,0, | ||
1402 | 327,3,73,0,327, | ||
1403 | 3,74,0,327,3, | ||
1404 | 75,0,327,3,76, | ||
1405 | 0,327,3,77,0, | ||
1406 | 327,3,78,0,327, | ||
1407 | 3,79,0,327,3, | ||
1408 | 80,0,327,3,81, | ||
1409 | 0,327,3,82,0, | ||
1410 | 327,3,83,0,327, | ||
1411 | 3,84,0,327,3, | ||
1412 | 85,0,327,3,86, | ||
1413 | 0,327,3,87,0, | ||
1414 | 327,3,88,0,327, | ||
1415 | 3,89,0,327,3, | ||
1416 | 90,0,327,3,95, | ||
1417 | 0,327,3,97,0, | ||
1418 | 327,3,98,0,327, | ||
1419 | 3,99,0,327,3, | ||
1420 | 100,0,327,3,101, | ||
1421 | 0,327,3,102,0, | ||
1422 | 336,3,103,0,327, | ||
1423 | 3,104,0,327,3, | ||
1424 | 105,0,327,3,106, | ||
1425 | 0,327,3,107,0, | ||
1426 | 327,3,108,0,327, | ||
1427 | 339,11,1,829,0, | ||
1428 | 330,1,-1,3,49, | ||
1429 | 0,334,3,50,0, | ||
1430 | 334,3,51,0,334, | ||
1431 | 3,52,0,334,3, | ||
1432 | 53,0,334,3,54, | ||
1433 | 0,334,3,55,0, | ||
1434 | 334,3,56,0,334, | ||
1435 | 3,57,0,334,3, | ||
1436 | 65,0,327,3,66, | ||
1437 | 0,327,3,67,0, | ||
1438 | 327,3,68,0,327, | ||
1439 | 3,69,0,327,3, | ||
1440 | 70,0,327,3,71, | ||
1441 | 0,327,3,72,0, | ||
1442 | 327,3,73,0,327, | ||
1443 | 3,74,0,327,3, | ||
1444 | 75,0,327,3,76, | ||
1445 | 0,327,3,77,0, | ||
1446 | 327,3,78,0,327, | ||
1447 | 3,79,0,327,3, | ||
1448 | 80,0,327,3,81, | ||
1449 | 0,327,3,82,0, | ||
1450 | 327,3,83,0,327, | ||
1451 | 3,84,0,327,3, | ||
1452 | 85,0,327,3,86, | ||
1453 | 0,327,3,87,0, | ||
1454 | 327,3,88,0,327, | ||
1455 | 3,89,0,327,3, | ||
1456 | 90,0,327,3,95, | ||
1457 | 0,327,3,97,0, | ||
1458 | 327,3,98,0,327, | ||
1459 | 3,99,0,327,3, | ||
1460 | 100,0,327,3,101, | ||
1461 | 0,327,3,102,0, | ||
1462 | 327,3,103,0,327, | ||
1463 | 3,104,0,327,3, | ||
1464 | 105,0,327,3,106, | ||
1465 | 0,327,3,107,0, | ||
1466 | 327,3,108,0,327, | ||
1467 | 340,11,1,829,0, | ||
1468 | 330,1,-1,3,70, | ||
1469 | 0,341,12,1,2058, | ||
1470 | 342,5,63,3,109, | ||
1471 | 0,327,3,110,0, | ||
1472 | 327,3,111,0,327, | ||
1473 | 3,112,0,327,3, | ||
1474 | 113,0,327,3,114, | ||
1475 | 0,327,3,115,0, | ||
1476 | 327,3,116,0,327, | ||
1477 | 3,117,0,327,3, | ||
1478 | 118,0,327,3,119, | ||
1479 | 0,327,3,120,0, | ||
1480 | 327,3,121,0,327, | ||
1481 | 3,122,0,327,3, | ||
1482 | 48,0,327,3,49, | ||
1483 | 0,327,3,50,0, | ||
1484 | 327,3,51,0,327, | ||
1485 | 3,52,0,327,3, | ||
1486 | 53,0,327,3,54, | ||
1487 | 0,327,3,55,0, | ||
1488 | 327,3,56,0,327, | ||
1489 | 3,57,0,327,3, | ||
1490 | 65,0,327,3,66, | ||
1491 | 0,327,3,67,0, | ||
1492 | 327,3,68,0,327, | ||
1493 | 3,69,0,327,3, | ||
1494 | 70,0,327,3,71, | ||
1495 | 0,327,3,72,0, | ||
1496 | 327,3,73,0,327, | ||
1497 | 3,74,0,327,3, | ||
1498 | 75,0,327,3,76, | ||
1499 | 0,327,3,77,0, | ||
1500 | 327,3,78,0,327, | ||
1501 | 3,79,0,327,3, | ||
1502 | 80,0,327,3,81, | ||
1503 | 0,327,3,82,0, | ||
1504 | 327,3,83,0,327, | ||
1505 | 3,84,0,327,3, | ||
1506 | 85,0,327,3,86, | ||
1507 | 0,327,3,87,0, | ||
1508 | 327,3,88,0,327, | ||
1509 | 3,89,0,327,3, | ||
1510 | 90,0,327,3,95, | ||
1511 | 0,327,3,97,0, | ||
1512 | 327,3,98,0,327, | ||
1513 | 3,99,0,327,3, | ||
1514 | 100,0,327,3,101, | ||
1515 | 0,327,3,102,0, | ||
1516 | 327,3,103,0,327, | ||
1517 | 3,104,0,327,3, | ||
1518 | 105,0,327,3,106, | ||
1519 | 0,327,3,107,0, | ||
1520 | 327,3,108,0,327, | ||
1521 | 343,11,1,829,0, | ||
1522 | 330,1,-1,3,71, | ||
1523 | 0,325,3,72,0, | ||
1524 | 325,3,73,0,325, | ||
1525 | 3,74,0,325,3, | ||
1526 | 75,0,325,3,76, | ||
1527 | 0,325,3,77,0, | ||
1528 | 325,3,78,0,325, | ||
1529 | 3,79,0,325,3, | ||
1530 | 80,0,325,3,81, | ||
1531 | 0,325,3,82,0, | ||
1532 | 325,3,83,0,325, | ||
1533 | 3,84,0,325,3, | ||
1534 | 85,0,325,3,86, | ||
1535 | 0,325,3,87,0, | ||
1536 | 325,3,88,0,325, | ||
1537 | 3,89,0,325,3, | ||
1538 | 90,0,325,3,91, | ||
1539 | 0,344,12,1,40422, | ||
1540 | 345,5,0,346,11, | ||
1541 | 1,126,0,347,4, | ||
1542 | 24,76,0,69,0, | ||
1543 | 70,0,84,0,95, | ||
1544 | 0,66,0,82,0, | ||
1545 | 65,0,67,0,75, | ||
1546 | 0,69,0,84,0, | ||
1547 | 1,-1,3,93,0, | ||
1548 | 348,12,1,40787,349, | ||
1549 | 5,0,350,11,1, | ||
1550 | 131,0,351,4,26, | ||
1551 | 82,0,73,0,71, | ||
1552 | 0,72,0,84,0, | ||
1553 | 95,0,66,0,82, | ||
1554 | 0,65,0,67,0, | ||
1555 | 75,0,69,0,84, | ||
1556 | 0,1,-1,3,94, | ||
1557 | 0,352,12,1,44771, | ||
1558 | 353,5,0,354,11, | ||
1559 | 1,170,0,355,4, | ||
1560 | 10,67,0,65,0, | ||
1561 | 82,0,69,0,84, | ||
1562 | 0,1,-1,3,95, | ||
1563 | 0,325,3,97,0, | ||
1564 | 356,12,1,20935,357, | ||
1565 | 5,63,3,109,0, | ||
1566 | 327,3,110,0,327, | ||
1567 | 3,111,0,327,3, | ||
1568 | 112,0,327,3,113, | ||
1569 | 0,327,3,114,0, | ||
1570 | 327,3,115,0,327, | ||
1571 | 3,116,0,358,12, | ||
1572 | 1,20970,359,5,63, | ||
1573 | 3,109,0,327,3, | ||
1574 | 110,0,327,3,111, | ||
1575 | 0,327,3,112,0, | ||
1576 | 327,3,113,0,327, | ||
1577 | 3,114,0,327,3, | ||
1578 | 115,0,327,3,116, | ||
1579 | 0,360,12,1,21005, | ||
1580 | 361,5,63,3,109, | ||
1581 | 0,327,3,110,0, | ||
1582 | 327,3,111,0,327, | ||
1583 | 3,112,0,327,3, | ||
1584 | 113,0,327,3,114, | ||
1585 | 0,327,3,115,0, | ||
1586 | 327,3,116,0,327, | ||
1587 | 3,117,0,327,3, | ||
1588 | 118,0,327,3,119, | ||
1589 | 0,327,3,120,0, | ||
1590 | 327,3,121,0,327, | ||
1591 | 3,122,0,327,3, | ||
1592 | 48,0,327,3,49, | ||
1593 | 0,327,3,50,0, | ||
1594 | 327,3,51,0,327, | ||
1595 | 3,52,0,327,3, | ||
1596 | 53,0,327,3,54, | ||
1597 | 0,327,3,55,0, | ||
1598 | 327,3,56,0,327, | ||
1599 | 3,57,0,327,3, | ||
1600 | 65,0,327,3,66, | ||
1601 | 0,327,3,67,0, | ||
1602 | 327,3,68,0,327, | ||
1603 | 3,69,0,327,3, | ||
1604 | 70,0,327,3,71, | ||
1605 | 0,327,3,72,0, | ||
1606 | 327,3,73,0,327, | ||
1607 | 3,74,0,327,3, | ||
1608 | 75,0,327,3,76, | ||
1609 | 0,327,3,77,0, | ||
1610 | 327,3,78,0,327, | ||
1611 | 3,79,0,327,3, | ||
1612 | 80,0,327,3,81, | ||
1613 | 0,327,3,82,0, | ||
1614 | 327,3,83,0,327, | ||
1615 | 3,84,0,327,3, | ||
1616 | 85,0,327,3,86, | ||
1617 | 0,327,3,87,0, | ||
1618 | 327,3,88,0,327, | ||
1619 | 3,89,0,327,3, | ||
1620 | 90,0,327,3,95, | ||
1621 | 0,327,3,97,0, | ||
1622 | 362,12,1,21048,363, | ||
1623 | 5,63,3,109,0, | ||
1624 | 327,3,110,0,327, | ||
1625 | 3,111,0,327,3, | ||
1626 | 112,0,327,3,113, | ||
1627 | 0,327,3,114,0, | ||
1628 | 327,3,115,0,327, | ||
1629 | 3,116,0,327,3, | ||
1630 | 117,0,327,3,118, | ||
1631 | 0,327,3,119,0, | ||
1632 | 327,3,120,0,327, | ||
1633 | 3,121,0,327,3, | ||
1634 | 122,0,327,3,48, | ||
1635 | 0,327,3,49,0, | ||
1636 | 327,3,50,0,327, | ||
1637 | 3,51,0,327,3, | ||
1638 | 52,0,327,3,53, | ||
1639 | 0,327,3,54,0, | ||
1640 | 327,3,55,0,327, | ||
1641 | 3,56,0,327,3, | ||
1642 | 57,0,327,3,65, | ||
1643 | 0,327,3,66,0, | ||
1644 | 327,3,67,0,327, | ||
1645 | 3,68,0,327,3, | ||
1646 | 69,0,327,3,70, | ||
1647 | 0,327,3,71,0, | ||
1648 | 327,3,72,0,327, | ||
1649 | 3,73,0,327,3, | ||
1650 | 74,0,327,3,75, | ||
1651 | 0,327,3,76,0, | ||
1652 | 327,3,77,0,327, | ||
1653 | 3,78,0,327,3, | ||
1654 | 79,0,327,3,80, | ||
1655 | 0,327,3,81,0, | ||
1656 | 327,3,82,0,327, | ||
1657 | 3,83,0,327,3, | ||
1658 | 84,0,327,3,85, | ||
1659 | 0,327,3,86,0, | ||
1660 | 327,3,87,0,327, | ||
1661 | 3,88,0,327,3, | ||
1662 | 89,0,327,3,90, | ||
1663 | 0,327,3,95,0, | ||
1664 | 327,3,97,0,327, | ||
1665 | 3,98,0,327,3, | ||
1666 | 99,0,364,12,1, | ||
1667 | 21093,365,5,63,3, | ||
1668 | 109,0,327,3,110, | ||
1669 | 0,327,3,111,0, | ||
1670 | 327,3,112,0,327, | ||
1671 | 3,113,0,327,3, | ||
1672 | 114,0,327,3,115, | ||
1673 | 0,327,3,116,0, | ||
1674 | 327,3,117,0,327, | ||
1675 | 3,118,0,327,3, | ||
1676 | 119,0,327,3,120, | ||
1677 | 0,327,3,121,0, | ||
1678 | 327,3,122,0,327, | ||
1679 | 3,48,0,327,3, | ||
1680 | 49,0,327,3,50, | ||
1681 | 0,327,3,51,0, | ||
1682 | 327,3,52,0,327, | ||
1683 | 3,53,0,327,3, | ||
1684 | 54,0,327,3,55, | ||
1685 | 0,327,3,56,0, | ||
1686 | 327,3,57,0,327, | ||
1687 | 3,65,0,327,3, | ||
1688 | 66,0,327,3,67, | ||
1689 | 0,327,3,68,0, | ||
1690 | 327,3,69,0,327, | ||
1691 | 3,70,0,327,3, | ||
1692 | 71,0,327,3,72, | ||
1693 | 0,327,3,73,0, | ||
1694 | 327,3,74,0,327, | ||
1695 | 3,75,0,327,3, | ||
1696 | 76,0,327,3,77, | ||
1697 | 0,327,3,78,0, | ||
1698 | 327,3,79,0,327, | ||
1699 | 3,80,0,327,3, | ||
1700 | 81,0,327,3,82, | ||
1701 | 0,327,3,83,0, | ||
1702 | 327,3,84,0,327, | ||
1703 | 3,85,0,327,3, | ||
1704 | 86,0,327,3,87, | ||
1705 | 0,327,3,88,0, | ||
1706 | 327,3,89,0,327, | ||
1707 | 3,90,0,327,3, | ||
1708 | 95,0,327,3,97, | ||
1709 | 0,327,3,98,0, | ||
1710 | 327,3,99,0,327, | ||
1711 | 3,100,0,327,3, | ||
1712 | 101,0,327,3,102, | ||
1713 | 0,327,3,103,0, | ||
1714 | 327,3,104,0,366, | ||
1715 | 12,1,21143,367,5, | ||
1716 | 63,3,109,0,327, | ||
1717 | 3,110,0,327,3, | ||
1718 | 111,0,327,3,112, | ||
1719 | 0,327,3,113,0, | ||
1720 | 327,3,114,0,327, | ||
1721 | 3,115,0,327,3, | ||
1722 | 116,0,327,3,117, | ||
1723 | 0,327,3,118,0, | ||
1724 | 327,3,119,0,327, | ||
1725 | 3,120,0,327,3, | ||
1726 | 121,0,327,3,122, | ||
1727 | 0,327,3,48,0, | ||
1728 | 327,3,49,0,327, | ||
1729 | 3,50,0,327,3, | ||
1730 | 51,0,327,3,52, | ||
1731 | 0,327,3,53,0, | ||
1732 | 327,3,54,0,327, | ||
1733 | 3,55,0,327,3, | ||
1734 | 56,0,327,3,57, | ||
1735 | 0,327,3,65,0, | ||
1736 | 327,3,66,0,327, | ||
1737 | 3,67,0,327,3, | ||
1738 | 68,0,327,3,69, | ||
1739 | 0,327,3,70,0, | ||
1740 | 327,3,71,0,327, | ||
1741 | 3,72,0,327,3, | ||
1742 | 73,0,327,3,74, | ||
1743 | 0,327,3,75,0, | ||
1744 | 327,3,76,0,327, | ||
1745 | 3,77,0,327,3, | ||
1746 | 78,0,327,3,79, | ||
1747 | 0,327,3,80,0, | ||
1748 | 327,3,81,0,327, | ||
1749 | 3,82,0,327,3, | ||
1750 | 83,0,327,3,84, | ||
1751 | 0,327,3,85,0, | ||
1752 | 327,3,86,0,327, | ||
1753 | 3,87,0,327,3, | ||
1754 | 88,0,327,3,89, | ||
1755 | 0,327,3,90,0, | ||
1756 | 327,3,95,0,327, | ||
1757 | 3,97,0,327,3, | ||
1758 | 98,0,327,3,99, | ||
1759 | 0,327,3,100,0, | ||
1760 | 327,3,101,0,327, | ||
1761 | 3,102,0,327,3, | ||
1762 | 103,0,327,3,104, | ||
1763 | 0,327,3,105,0, | ||
1764 | 327,3,106,0,327, | ||
1765 | 3,107,0,327,3, | ||
1766 | 108,0,327,368,11, | ||
1767 | 1,380,0,369,4, | ||
1768 | 24,65,0,84,0, | ||
1769 | 84,0,65,0,67, | ||
1770 | 0,72,0,95,0, | ||
1771 | 69,0,86,0,69, | ||
1772 | 0,78,0,84,0, | ||
1773 | 1,-1,3,105,0, | ||
1774 | 327,3,106,0,327, | ||
1775 | 3,107,0,327,3, | ||
1776 | 108,0,327,370,11, | ||
1777 | 1,829,0,330,1, | ||
1778 | -1,3,100,0,327, | ||
1779 | 3,101,0,327,3, | ||
1780 | 102,0,327,3,103, | ||
1781 | 0,327,3,104,0, | ||
1782 | 327,3,105,0,327, | ||
1783 | 3,106,0,327,3, | ||
1784 | 107,0,327,3,108, | ||
1785 | 0,327,371,11,1, | ||
1786 | 829,0,330,1,-1, | ||
1787 | 3,98,0,327,3, | ||
1788 | 99,0,327,3,100, | ||
1789 | 0,327,3,101,0, | ||
1790 | 327,3,102,0,327, | ||
1791 | 3,103,0,327,3, | ||
1792 | 104,0,327,3,105, | ||
1793 | 0,327,3,106,0, | ||
1794 | 327,3,107,0,327, | ||
1795 | 3,108,0,327,372, | ||
1796 | 11,1,829,0,330, | ||
1797 | 1,-1,3,117,0, | ||
1798 | 327,3,118,0,327, | ||
1799 | 3,119,0,327,3, | ||
1800 | 120,0,327,3,121, | ||
1801 | 0,327,3,122,0, | ||
1802 | 327,3,48,0,327, | ||
1803 | 3,49,0,327,3, | ||
1804 | 50,0,327,3,51, | ||
1805 | 0,327,3,52,0, | ||
1806 | 327,3,53,0,327, | ||
1807 | 3,54,0,327,3, | ||
1808 | 55,0,327,3,56, | ||
1809 | 0,327,3,57,0, | ||
1810 | 327,3,65,0,327, | ||
1811 | 3,66,0,327,3, | ||
1812 | 67,0,327,3,68, | ||
1813 | 0,327,3,69,0, | ||
1814 | 327,3,70,0,327, | ||
1815 | 3,71,0,327,3, | ||
1816 | 72,0,327,3,73, | ||
1817 | 0,327,3,74,0, | ||
1818 | 327,3,75,0,327, | ||
1819 | 3,76,0,327,3, | ||
1820 | 77,0,327,3,78, | ||
1821 | 0,327,3,79,0, | ||
1822 | 327,3,80,0,327, | ||
1823 | 3,81,0,327,3, | ||
1824 | 82,0,327,3,83, | ||
1825 | 0,327,3,84,0, | ||
1826 | 327,3,85,0,327, | ||
1827 | 3,86,0,327,3, | ||
1828 | 87,0,327,3,88, | ||
1829 | 0,327,3,89,0, | ||
1830 | 327,3,90,0,327, | ||
1831 | 3,95,0,373,12, | ||
1832 | 1,21536,374,5,63, | ||
1833 | 3,109,0,327,3, | ||
1834 | 110,0,327,3,111, | ||
1835 | 0,327,3,112,0, | ||
1836 | 327,3,113,0,327, | ||
1837 | 3,114,0,375,12, | ||
1838 | 1,21569,376,5,63, | ||
1839 | 3,109,0,327,3, | ||
1840 | 110,0,327,3,111, | ||
1841 | 0,377,12,1,21599, | ||
1842 | 378,5,63,3,109, | ||
1843 | 0,327,3,110,0, | ||
1844 | 327,3,111,0,327, | ||
1845 | 3,112,0,327,3, | ||
1846 | 113,0,327,3,114, | ||
1847 | 0,327,3,115,0, | ||
1848 | 327,3,116,0,379, | ||
1849 | 12,1,21634,380,5, | ||
1850 | 63,3,109,0,327, | ||
1851 | 3,110,0,327,3, | ||
1852 | 111,0,327,3,112, | ||
1853 | 0,327,3,113,0, | ||
1854 | 327,3,114,0,327, | ||
1855 | 3,115,0,327,3, | ||
1856 | 116,0,327,3,117, | ||
1857 | 0,327,3,118,0, | ||
1858 | 327,3,119,0,327, | ||
1859 | 3,120,0,327,3, | ||
1860 | 121,0,327,3,122, | ||
1861 | 0,327,3,48,0, | ||
1862 | 327,3,49,0,327, | ||
1863 | 3,50,0,327,3, | ||
1864 | 51,0,327,3,52, | ||
1865 | 0,327,3,53,0, | ||
1866 | 327,3,54,0,327, | ||
1867 | 3,55,0,327,3, | ||
1868 | 56,0,327,3,57, | ||
1869 | 0,327,3,65,0, | ||
1870 | 327,3,66,0,327, | ||
1871 | 3,67,0,327,3, | ||
1872 | 68,0,327,3,69, | ||
1873 | 0,327,3,70,0, | ||
1874 | 327,3,71,0,327, | ||
1875 | 3,72,0,327,3, | ||
1876 | 73,0,327,3,74, | ||
1877 | 0,327,3,75,0, | ||
1878 | 327,3,76,0,327, | ||
1879 | 3,77,0,327,3, | ||
1880 | 78,0,327,3,79, | ||
1881 | 0,327,3,80,0, | ||
1882 | 327,3,81,0,327, | ||
1883 | 3,82,0,327,3, | ||
1884 | 83,0,327,3,84, | ||
1885 | 0,327,3,85,0, | ||
1886 | 327,3,86,0,327, | ||
1887 | 3,87,0,327,3, | ||
1888 | 88,0,327,3,89, | ||
1889 | 0,327,3,90,0, | ||
1890 | 327,3,95,0,381, | ||
1891 | 12,1,21720,382,5, | ||
1892 | 63,3,109,0,327, | ||
1893 | 3,110,0,327,3, | ||
1894 | 111,0,327,3,112, | ||
1895 | 0,327,3,113,0, | ||
1896 | 327,3,114,0,327, | ||
1897 | 3,115,0,327,3, | ||
1898 | 116,0,383,12,1, | ||
1899 | 21755,384,5,63,3, | ||
1900 | 109,0,327,3,110, | ||
1901 | 0,327,3,111,0, | ||
1902 | 327,3,112,0,327, | ||
1903 | 3,113,0,327,3, | ||
1904 | 114,0,327,3,115, | ||
1905 | 0,327,3,116,0, | ||
1906 | 327,3,117,0,327, | ||
1907 | 3,118,0,327,3, | ||
1908 | 119,0,327,3,120, | ||
1909 | 0,327,3,121,0, | ||
1910 | 327,3,122,0,327, | ||
1911 | 3,48,0,327,3, | ||
1912 | 49,0,327,3,50, | ||
1913 | 0,327,3,51,0, | ||
1914 | 327,3,52,0,327, | ||
1915 | 3,53,0,327,3, | ||
1916 | 54,0,327,3,55, | ||
1917 | 0,327,3,56,0, | ||
1918 | 327,3,57,0,327, | ||
1919 | 3,65,0,327,3, | ||
1920 | 66,0,327,3,67, | ||
1921 | 0,327,3,68,0, | ||
1922 | 327,3,69,0,327, | ||
1923 | 3,70,0,327,3, | ||
1924 | 71,0,327,3,72, | ||
1925 | 0,327,3,73,0, | ||
1926 | 327,3,74,0,327, | ||
1927 | 3,75,0,327,3, | ||
1928 | 76,0,327,3,77, | ||
1929 | 0,327,3,78,0, | ||
1930 | 327,3,79,0,327, | ||
1931 | 3,80,0,327,3, | ||
1932 | 81,0,327,3,82, | ||
1933 | 0,327,3,83,0, | ||
1934 | 327,3,84,0,327, | ||
1935 | 3,85,0,327,3, | ||
1936 | 86,0,327,3,87, | ||
1937 | 0,327,3,88,0, | ||
1938 | 327,3,89,0,327, | ||
1939 | 3,90,0,327,3, | ||
1940 | 95,0,327,3,97, | ||
1941 | 0,385,12,1,21798, | ||
1942 | 386,5,63,3,109, | ||
1943 | 0,327,3,110,0, | ||
1944 | 327,3,111,0,327, | ||
1945 | 3,112,0,327,3, | ||
1946 | 113,0,327,3,114, | ||
1947 | 0,387,12,1,21831, | ||
1948 | 388,5,63,3,109, | ||
1949 | 0,327,3,110,0, | ||
1950 | 327,3,111,0,327, | ||
1951 | 3,112,0,327,3, | ||
1952 | 113,0,327,3,114, | ||
1953 | 0,327,3,115,0, | ||
1954 | 327,3,116,0,327, | ||
1955 | 3,117,0,327,3, | ||
1956 | 118,0,327,3,119, | ||
1957 | 0,327,3,120,0, | ||
1958 | 327,3,121,0,327, | ||
1959 | 3,122,0,327,3, | ||
1960 | 48,0,327,3,49, | ||
1961 | 0,327,3,50,0, | ||
1962 | 327,3,51,0,327, | ||
1963 | 3,52,0,327,3, | ||
1964 | 53,0,327,3,54, | ||
1965 | 0,327,3,55,0, | ||
1966 | 327,3,56,0,327, | ||
1967 | 3,57,0,327,3, | ||
1968 | 65,0,327,3,66, | ||
1969 | 0,327,3,67,0, | ||
1970 | 327,3,68,0,327, | ||
1971 | 3,69,0,327,3, | ||
1972 | 70,0,327,3,71, | ||
1973 | 0,327,3,72,0, | ||
1974 | 327,3,73,0,327, | ||
1975 | 3,74,0,327,3, | ||
1976 | 75,0,327,3,76, | ||
1977 | 0,327,3,77,0, | ||
1978 | 327,3,78,0,327, | ||
1979 | 3,79,0,327,3, | ||
1980 | 80,0,327,3,81, | ||
1981 | 0,327,3,82,0, | ||
1982 | 327,3,83,0,327, | ||
1983 | 3,84,0,327,3, | ||
1984 | 85,0,327,3,86, | ||
1985 | 0,327,3,87,0, | ||
1986 | 327,3,88,0,327, | ||
1987 | 3,89,0,327,3, | ||
1988 | 90,0,327,3,95, | ||
1989 | 0,327,3,97,0, | ||
1990 | 327,3,98,0,327, | ||
1991 | 3,99,0,327,3, | ||
1992 | 100,0,327,3,101, | ||
1993 | 0,327,3,102,0, | ||
1994 | 327,3,103,0,389, | ||
1995 | 12,1,21880,390,5, | ||
1996 | 63,3,109,0,327, | ||
1997 | 3,110,0,327,3, | ||
1998 | 111,0,327,3,112, | ||
1999 | 0,327,3,113,0, | ||
2000 | 327,3,114,0,327, | ||
2001 | 3,115,0,327,3, | ||
2002 | 116,0,327,3,117, | ||
2003 | 0,327,3,118,0, | ||
2004 | 327,3,119,0,327, | ||
2005 | 3,120,0,327,3, | ||
2006 | 121,0,327,3,122, | ||
2007 | 0,327,3,48,0, | ||
2008 | 327,3,49,0,327, | ||
2009 | 3,50,0,327,3, | ||
2010 | 51,0,327,3,52, | ||
2011 | 0,327,3,53,0, | ||
2012 | 327,3,54,0,327, | ||
2013 | 3,55,0,327,3, | ||
2014 | 56,0,327,3,57, | ||
2015 | 0,327,3,65,0, | ||
2016 | 327,3,66,0,327, | ||
2017 | 3,67,0,327,3, | ||
2018 | 68,0,327,3,69, | ||
2019 | 0,327,3,70,0, | ||
2020 | 327,3,71,0,327, | ||
2021 | 3,72,0,327,3, | ||
2022 | 73,0,327,3,74, | ||
2023 | 0,327,3,75,0, | ||
2024 | 327,3,76,0,327, | ||
2025 | 3,77,0,327,3, | ||
2026 | 78,0,327,3,79, | ||
2027 | 0,327,3,80,0, | ||
2028 | 327,3,81,0,327, | ||
2029 | 3,82,0,327,3, | ||
2030 | 83,0,327,3,84, | ||
2031 | 0,327,3,85,0, | ||
2032 | 327,3,86,0,327, | ||
2033 | 3,87,0,327,3, | ||
2034 | 88,0,327,3,89, | ||
2035 | 0,327,3,90,0, | ||
2036 | 327,3,95,0,327, | ||
2037 | 3,97,0,327,3, | ||
2038 | 98,0,327,3,99, | ||
2039 | 0,327,3,100,0, | ||
2040 | 327,3,101,0,391, | ||
2041 | 12,1,21927,392,5, | ||
2042 | 63,3,109,0,327, | ||
2043 | 3,110,0,327,3, | ||
2044 | 111,0,327,3,112, | ||
2045 | 0,327,3,113,0, | ||
2046 | 327,3,114,0,327, | ||
2047 | 3,115,0,327,3, | ||
2048 | 116,0,393,12,1, | ||
2049 | 21962,394,5,63,3, | ||
2050 | 109,0,327,3,110, | ||
2051 | 0,327,3,111,0, | ||
2052 | 327,3,112,0,327, | ||
2053 | 3,113,0,327,3, | ||
2054 | 114,0,327,3,115, | ||
2055 | 0,327,3,116,0, | ||
2056 | 327,3,117,0,327, | ||
2057 | 3,118,0,327,3, | ||
2058 | 119,0,327,3,120, | ||
2059 | 0,327,3,121,0, | ||
2060 | 327,3,122,0,327, | ||
2061 | 3,48,0,327,3, | ||
2062 | 49,0,327,3,50, | ||
2063 | 0,327,3,51,0, | ||
2064 | 327,3,52,0,327, | ||
2065 | 3,53,0,327,3, | ||
2066 | 54,0,327,3,55, | ||
2067 | 0,327,3,56,0, | ||
2068 | 327,3,57,0,327, | ||
2069 | 3,65,0,327,3, | ||
2070 | 66,0,327,3,67, | ||
2071 | 0,327,3,68,0, | ||
2072 | 327,3,69,0,327, | ||
2073 | 3,70,0,327,3, | ||
2074 | 71,0,327,3,72, | ||
2075 | 0,327,3,73,0, | ||
2076 | 327,3,74,0,327, | ||
2077 | 3,75,0,327,3, | ||
2078 | 76,0,327,3,77, | ||
2079 | 0,327,3,78,0, | ||
2080 | 327,3,79,0,327, | ||
2081 | 3,80,0,327,3, | ||
2082 | 81,0,327,3,82, | ||
2083 | 0,327,3,83,0, | ||
2084 | 327,3,84,0,327, | ||
2085 | 3,85,0,327,3, | ||
2086 | 86,0,327,3,87, | ||
2087 | 0,327,3,88,0, | ||
2088 | 327,3,89,0,327, | ||
2089 | 3,90,0,327,3, | ||
2090 | 95,0,327,3,97, | ||
2091 | 0,327,3,98,0, | ||
2092 | 327,3,99,0,327, | ||
2093 | 3,100,0,327,3, | ||
2094 | 101,0,327,3,102, | ||
2095 | 0,327,3,103,0, | ||
2096 | 327,3,104,0,327, | ||
2097 | 3,105,0,327,3, | ||
2098 | 106,0,327,3,107, | ||
2099 | 0,327,3,108,0, | ||
2100 | 327,395,11,1,350, | ||
2101 | 0,396,4,38,65, | ||
2102 | 0,84,0,95,0, | ||
2103 | 82,0,79,0,84, | ||
2104 | 0,95,0,84,0, | ||
2105 | 65,0,82,0,71, | ||
2106 | 0,69,0,84,0, | ||
2107 | 95,0,69,0,86, | ||
2108 | 0,69,0,78,0, | ||
2109 | 84,0,1,-1,3, | ||
2110 | 117,0,327,3,118, | ||
2111 | 0,327,3,119,0, | ||
2112 | 327,3,120,0,327, | ||
2113 | 3,121,0,327,3, | ||
2114 | 122,0,327,3,48, | ||
2115 | 0,327,3,49,0, | ||
2116 | 327,3,50,0,327, | ||
2117 | 3,51,0,327,3, | ||
2118 | 52,0,327,3,53, | ||
2119 | 0,327,3,54,0, | ||
2120 | 327,3,55,0,327, | ||
2121 | 3,56,0,327,3, | ||
2122 | 57,0,327,3,65, | ||
2123 | 0,327,3,66,0, | ||
2124 | 327,3,67,0,327, | ||
2125 | 3,68,0,327,3, | ||
2126 | 69,0,327,3,70, | ||
2127 | 0,327,3,71,0, | ||
2128 | 327,3,72,0,327, | ||
2129 | 3,73,0,327,3, | ||
2130 | 74,0,327,3,75, | ||
2131 | 0,327,3,76,0, | ||
2132 | 327,3,77,0,327, | ||
2133 | 3,78,0,327,3, | ||
2134 | 79,0,327,3,80, | ||
2135 | 0,327,3,81,0, | ||
2136 | 327,3,82,0,327, | ||
2137 | 3,83,0,327,3, | ||
2138 | 84,0,327,3,85, | ||
2139 | 0,327,3,86,0, | ||
2140 | 327,3,87,0,327, | ||
2141 | 3,88,0,327,3, | ||
2142 | 89,0,327,3,90, | ||
2143 | 0,327,3,95,0, | ||
2144 | 327,3,97,0,327, | ||
2145 | 3,98,0,327,3, | ||
2146 | 99,0,327,3,100, | ||
2147 | 0,327,3,101,0, | ||
2148 | 327,3,102,0,327, | ||
2149 | 3,103,0,327,3, | ||
2150 | 104,0,327,3,105, | ||
2151 | 0,327,3,106,0, | ||
2152 | 327,3,107,0,327, | ||
2153 | 3,108,0,327,397, | ||
2154 | 11,1,829,0,330, | ||
2155 | 1,-1,3,102,0, | ||
2156 | 327,3,103,0,327, | ||
2157 | 3,104,0,327,3, | ||
2158 | 105,0,327,3,106, | ||
2159 | 0,327,3,107,0, | ||
2160 | 327,3,108,0,327, | ||
2161 | 398,11,1,829,0, | ||
2162 | 330,1,-1,3,104, | ||
2163 | 0,327,3,105,0, | ||
2164 | 327,3,106,0,327, | ||
2165 | 3,107,0,327,3, | ||
2166 | 108,0,327,399,11, | ||
2167 | 1,829,0,330,1, | ||
2168 | -1,3,115,0,327, | ||
2169 | 3,116,0,327,3, | ||
2170 | 117,0,327,3,118, | ||
2171 | 0,327,3,119,0, | ||
2172 | 327,3,120,0,327, | ||
2173 | 3,121,0,327,3, | ||
2174 | 122,0,327,3,48, | ||
2175 | 0,327,3,49,0, | ||
2176 | 327,3,50,0,327, | ||
2177 | 3,51,0,327,3, | ||
2178 | 52,0,327,3,53, | ||
2179 | 0,327,3,54,0, | ||
2180 | 327,3,55,0,327, | ||
2181 | 3,56,0,327,3, | ||
2182 | 57,0,327,3,65, | ||
2183 | 0,327,3,66,0, | ||
2184 | 327,3,67,0,327, | ||
2185 | 3,68,0,327,3, | ||
2186 | 69,0,327,3,70, | ||
2187 | 0,327,3,71,0, | ||
2188 | 327,3,72,0,327, | ||
2189 | 3,73,0,327,3, | ||
2190 | 74,0,327,3,75, | ||
2191 | 0,327,3,76,0, | ||
2192 | 327,3,77,0,327, | ||
2193 | 3,78,0,327,3, | ||
2194 | 79,0,327,3,80, | ||
2195 | 0,327,3,81,0, | ||
2196 | 327,3,82,0,327, | ||
2197 | 3,83,0,327,3, | ||
2198 | 84,0,327,3,85, | ||
2199 | 0,327,3,86,0, | ||
2200 | 327,3,87,0,327, | ||
2201 | 3,88,0,327,3, | ||
2202 | 89,0,327,3,90, | ||
2203 | 0,327,3,95,0, | ||
2204 | 327,3,97,0,327, | ||
2205 | 3,98,0,327,3, | ||
2206 | 99,0,327,3,100, | ||
2207 | 0,327,3,101,0, | ||
2208 | 327,3,102,0,327, | ||
2209 | 3,103,0,327,3, | ||
2210 | 104,0,327,3,105, | ||
2211 | 0,327,3,106,0, | ||
2212 | 327,3,107,0,327, | ||
2213 | 3,108,0,327,400, | ||
2214 | 11,1,829,0,330, | ||
2215 | 1,-1,3,98,0, | ||
2216 | 327,3,99,0,327, | ||
2217 | 3,100,0,327,3, | ||
2218 | 101,0,327,3,102, | ||
2219 | 0,327,3,103,0, | ||
2220 | 327,3,104,0,327, | ||
2221 | 3,105,0,327,3, | ||
2222 | 106,0,327,3,107, | ||
2223 | 0,327,3,108,0, | ||
2224 | 327,401,11,1,829, | ||
2225 | 0,330,1,-1,3, | ||
2226 | 117,0,327,3,118, | ||
2227 | 0,327,3,119,0, | ||
2228 | 327,3,120,0,327, | ||
2229 | 3,121,0,327,3, | ||
2230 | 122,0,327,3,48, | ||
2231 | 0,327,3,49,0, | ||
2232 | 327,3,50,0,327, | ||
2233 | 3,51,0,327,3, | ||
2234 | 52,0,327,3,53, | ||
2235 | 0,327,3,54,0, | ||
2236 | 327,3,55,0,327, | ||
2237 | 3,56,0,327,3, | ||
2238 | 57,0,327,3,65, | ||
2239 | 0,327,3,66,0, | ||
2240 | 327,3,67,0,327, | ||
2241 | 3,68,0,327,3, | ||
2242 | 69,0,327,3,70, | ||
2243 | 0,327,3,71,0, | ||
2244 | 327,3,72,0,327, | ||
2245 | 3,73,0,327,3, | ||
2246 | 74,0,327,3,75, | ||
2247 | 0,327,3,76,0, | ||
2248 | 327,3,77,0,327, | ||
2249 | 3,78,0,327,3, | ||
2250 | 79,0,327,3,80, | ||
2251 | 0,327,3,81,0, | ||
2252 | 327,3,82,0,327, | ||
2253 | 3,83,0,327,3, | ||
2254 | 84,0,327,3,85, | ||
2255 | 0,327,3,86,0, | ||
2256 | 327,3,87,0,327, | ||
2257 | 3,88,0,327,3, | ||
2258 | 89,0,327,3,90, | ||
2259 | 0,327,3,95,0, | ||
2260 | 327,3,97,0,327, | ||
2261 | 3,98,0,327,3, | ||
2262 | 99,0,327,3,100, | ||
2263 | 0,327,3,101,0, | ||
2264 | 327,3,102,0,327, | ||
2265 | 3,103,0,327,3, | ||
2266 | 104,0,327,3,105, | ||
2267 | 0,327,3,106,0, | ||
2268 | 327,3,107,0,327, | ||
2269 | 3,108,0,327,402, | ||
2270 | 11,1,829,0,330, | ||
2271 | 1,-1,3,97,0, | ||
2272 | 327,3,98,0,327, | ||
2273 | 3,99,0,327,3, | ||
2274 | 100,0,327,3,101, | ||
2275 | 0,327,3,102,0, | ||
2276 | 327,3,103,0,327, | ||
2277 | 3,104,0,327,3, | ||
2278 | 105,0,327,3,106, | ||
2279 | 0,327,3,107,0, | ||
2280 | 327,3,108,0,327, | ||
2281 | 403,11,1,829,0, | ||
2282 | 330,1,-1,3,117, | ||
2283 | 0,327,3,118,0, | ||
2284 | 327,3,119,0,327, | ||
2285 | 3,120,0,327,3, | ||
2286 | 121,0,327,3,122, | ||
2287 | 0,327,3,48,0, | ||
2288 | 327,3,49,0,327, | ||
2289 | 3,50,0,327,3, | ||
2290 | 51,0,327,3,52, | ||
2291 | 0,327,3,53,0, | ||
2292 | 327,3,54,0,327, | ||
2293 | 3,55,0,327,3, | ||
2294 | 56,0,327,3,57, | ||
2295 | 0,327,3,65,0, | ||
2296 | 327,3,66,0,327, | ||
2297 | 3,67,0,327,3, | ||
2298 | 68,0,327,3,69, | ||
2299 | 0,327,3,70,0, | ||
2300 | 327,3,71,0,327, | ||
2301 | 3,72,0,327,3, | ||
2302 | 73,0,327,3,74, | ||
2303 | 0,327,3,75,0, | ||
2304 | 327,3,76,0,327, | ||
2305 | 3,77,0,327,3, | ||
2306 | 78,0,327,3,79, | ||
2307 | 0,327,3,80,0, | ||
2308 | 327,3,81,0,327, | ||
2309 | 3,82,0,327,3, | ||
2310 | 83,0,327,3,84, | ||
2311 | 0,327,3,85,0, | ||
2312 | 327,3,86,0,327, | ||
2313 | 3,87,0,327,3, | ||
2314 | 88,0,327,3,89, | ||
2315 | 0,327,3,90,0, | ||
2316 | 327,3,95,0,327, | ||
2317 | 3,97,0,327,3, | ||
2318 | 98,0,327,3,99, | ||
2319 | 0,327,3,100,0, | ||
2320 | 327,3,101,0,327, | ||
2321 | 3,102,0,327,3, | ||
2322 | 103,0,327,3,104, | ||
2323 | 0,327,3,105,0, | ||
2324 | 327,3,106,0,327, | ||
2325 | 3,107,0,327,3, | ||
2326 | 108,0,327,404,11, | ||
2327 | 1,829,0,330,1, | ||
2328 | -1,3,112,0,327, | ||
2329 | 3,113,0,327,3, | ||
2330 | 114,0,327,3,115, | ||
2331 | 0,327,3,116,0, | ||
2332 | 327,3,117,0,327, | ||
2333 | 3,118,0,327,3, | ||
2334 | 119,0,327,3,120, | ||
2335 | 0,327,3,121,0, | ||
2336 | 327,3,122,0,327, | ||
2337 | 3,48,0,327,3, | ||
2338 | 49,0,327,3,50, | ||
2339 | 0,327,3,51,0, | ||
2340 | 327,3,52,0,327, | ||
2341 | 3,53,0,327,3, | ||
2342 | 54,0,327,3,55, | ||
2343 | 0,327,3,56,0, | ||
2344 | 327,3,57,0,327, | ||
2345 | 3,65,0,327,3, | ||
2346 | 66,0,327,3,67, | ||
2347 | 0,327,3,68,0, | ||
2348 | 327,3,69,0,327, | ||
2349 | 3,70,0,327,3, | ||
2350 | 71,0,327,3,72, | ||
2351 | 0,327,3,73,0, | ||
2352 | 327,3,74,0,327, | ||
2353 | 3,75,0,327,3, | ||
2354 | 76,0,327,3,77, | ||
2355 | 0,327,3,78,0, | ||
2356 | 327,3,79,0,327, | ||
2357 | 3,80,0,327,3, | ||
2358 | 81,0,327,3,82, | ||
2359 | 0,327,3,83,0, | ||
2360 | 327,3,84,0,327, | ||
2361 | 3,85,0,327,3, | ||
2362 | 86,0,327,3,87, | ||
2363 | 0,327,3,88,0, | ||
2364 | 327,3,89,0,327, | ||
2365 | 3,90,0,327,3, | ||
2366 | 95,0,327,3,97, | ||
2367 | 0,327,3,98,0, | ||
2368 | 327,3,99,0,327, | ||
2369 | 3,100,0,327,3, | ||
2370 | 101,0,327,3,102, | ||
2371 | 0,327,3,103,0, | ||
2372 | 327,3,104,0,327, | ||
2373 | 3,105,0,327,3, | ||
2374 | 106,0,327,3,107, | ||
2375 | 0,327,3,108,0, | ||
2376 | 327,405,11,1,829, | ||
2377 | 0,330,1,-1,3, | ||
2378 | 115,0,327,3,116, | ||
2379 | 0,406,12,1,22771, | ||
2380 | 407,5,63,3,109, | ||
2381 | 0,327,3,110,0, | ||
2382 | 327,3,111,0,327, | ||
2383 | 3,112,0,327,3, | ||
2384 | 113,0,327,3,114, | ||
2385 | 0,327,3,115,0, | ||
2386 | 327,3,116,0,327, | ||
2387 | 3,117,0,327,3, | ||
2388 | 118,0,327,3,119, | ||
2389 | 0,327,3,120,0, | ||
2390 | 327,3,121,0,327, | ||
2391 | 3,122,0,327,3, | ||
2392 | 48,0,327,3,49, | ||
2393 | 0,327,3,50,0, | ||
2394 | 327,3,51,0,327, | ||
2395 | 3,52,0,327,3, | ||
2396 | 53,0,327,3,54, | ||
2397 | 0,327,3,55,0, | ||
2398 | 327,3,56,0,327, | ||
2399 | 3,57,0,327,3, | ||
2400 | 65,0,327,3,66, | ||
2401 | 0,327,3,67,0, | ||
2402 | 327,3,68,0,327, | ||
2403 | 3,69,0,327,3, | ||
2404 | 70,0,327,3,71, | ||
2405 | 0,327,3,72,0, | ||
2406 | 327,3,73,0,327, | ||
2407 | 3,74,0,327,3, | ||
2408 | 75,0,327,3,76, | ||
2409 | 0,327,3,77,0, | ||
2410 | 327,3,78,0,327, | ||
2411 | 3,79,0,327,3, | ||
2412 | 80,0,327,3,81, | ||
2413 | 0,327,3,82,0, | ||
2414 | 327,3,83,0,327, | ||
2415 | 3,84,0,327,3, | ||
2416 | 85,0,327,3,86, | ||
2417 | 0,327,3,87,0, | ||
2418 | 327,3,88,0,327, | ||
2419 | 3,89,0,327,3, | ||
2420 | 90,0,327,3,95, | ||
2421 | 0,327,3,97,0, | ||
2422 | 408,12,1,22814,409, | ||
2423 | 5,63,3,109,0, | ||
2424 | 327,3,110,0,327, | ||
2425 | 3,111,0,327,3, | ||
2426 | 112,0,327,3,113, | ||
2427 | 0,327,3,114,0, | ||
2428 | 410,12,1,22847,411, | ||
2429 | 5,63,3,109,0, | ||
2430 | 327,3,110,0,327, | ||
2431 | 3,111,0,327,3, | ||
2432 | 112,0,327,3,113, | ||
2433 | 0,327,3,114,0, | ||
2434 | 327,3,115,0,327, | ||
2435 | 3,116,0,327,3, | ||
2436 | 117,0,327,3,118, | ||
2437 | 0,327,3,119,0, | ||
2438 | 327,3,120,0,327, | ||
2439 | 3,121,0,327,3, | ||
2440 | 122,0,327,3,48, | ||
2441 | 0,327,3,49,0, | ||
2442 | 327,3,50,0,327, | ||
2443 | 3,51,0,327,3, | ||
2444 | 52,0,327,3,53, | ||
2445 | 0,327,3,54,0, | ||
2446 | 327,3,55,0,327, | ||
2447 | 3,56,0,327,3, | ||
2448 | 57,0,327,3,65, | ||
2449 | 0,327,3,66,0, | ||
2450 | 327,3,67,0,327, | ||
2451 | 3,68,0,327,3, | ||
2452 | 69,0,327,3,70, | ||
2453 | 0,327,3,71,0, | ||
2454 | 327,3,72,0,327, | ||
2455 | 3,73,0,327,3, | ||
2456 | 74,0,327,3,75, | ||
2457 | 0,327,3,76,0, | ||
2458 | 327,3,77,0,327, | ||
2459 | 3,78,0,327,3, | ||
2460 | 79,0,327,3,80, | ||
2461 | 0,327,3,81,0, | ||
2462 | 327,3,82,0,327, | ||
2463 | 3,83,0,327,3, | ||
2464 | 84,0,327,3,85, | ||
2465 | 0,327,3,86,0, | ||
2466 | 327,3,87,0,327, | ||
2467 | 3,88,0,327,3, | ||
2468 | 89,0,327,3,90, | ||
2469 | 0,327,3,95,0, | ||
2470 | 327,3,97,0,327, | ||
2471 | 3,98,0,327,3, | ||
2472 | 99,0,327,3,100, | ||
2473 | 0,327,3,101,0, | ||
2474 | 327,3,102,0,327, | ||
2475 | 3,103,0,412,12, | ||
2476 | 1,22896,413,5,63, | ||
2477 | 3,109,0,327,3, | ||
2478 | 110,0,327,3,111, | ||
2479 | 0,327,3,112,0, | ||
2480 | 327,3,113,0,327, | ||
2481 | 3,114,0,327,3, | ||
2482 | 115,0,327,3,116, | ||
2483 | 0,327,3,117,0, | ||
2484 | 327,3,118,0,327, | ||
2485 | 3,119,0,327,3, | ||
2486 | 120,0,327,3,121, | ||
2487 | 0,327,3,122,0, | ||
2488 | 327,3,48,0,327, | ||
2489 | 3,49,0,327,3, | ||
2490 | 50,0,327,3,51, | ||
2491 | 0,327,3,52,0, | ||
2492 | 327,3,53,0,327, | ||
2493 | 3,54,0,327,3, | ||
2494 | 55,0,327,3,56, | ||
2495 | 0,327,3,57,0, | ||
2496 | 327,3,65,0,327, | ||
2497 | 3,66,0,327,3, | ||
2498 | 67,0,327,3,68, | ||
2499 | 0,327,3,69,0, | ||
2500 | 327,3,70,0,327, | ||
2501 | 3,71,0,327,3, | ||
2502 | 72,0,327,3,73, | ||
2503 | 0,327,3,74,0, | ||
2504 | 327,3,75,0,327, | ||
2505 | 3,76,0,327,3, | ||
2506 | 77,0,327,3,78, | ||
2507 | 0,327,3,79,0, | ||
2508 | 327,3,80,0,327, | ||
2509 | 3,81,0,327,3, | ||
2510 | 82,0,327,3,83, | ||
2511 | 0,327,3,84,0, | ||
2512 | 327,3,85,0,327, | ||
2513 | 3,86,0,327,3, | ||
2514 | 87,0,327,3,88, | ||
2515 | 0,327,3,89,0, | ||
2516 | 327,3,90,0,327, | ||
2517 | 3,95,0,327,3, | ||
2518 | 97,0,327,3,98, | ||
2519 | 0,327,3,99,0, | ||
2520 | 327,3,100,0,327, | ||
2521 | 3,101,0,414,12, | ||
2522 | 1,22943,415,5,63, | ||
2523 | 3,109,0,327,3, | ||
2524 | 110,0,327,3,111, | ||
2525 | 0,327,3,112,0, | ||
2526 | 327,3,113,0,327, | ||
2527 | 3,114,0,327,3, | ||
2528 | 115,0,327,3,116, | ||
2529 | 0,416,12,1,22978, | ||
2530 | 417,5,63,3,109, | ||
2531 | 0,327,3,110,0, | ||
2532 | 327,3,111,0,327, | ||
2533 | 3,112,0,327,3, | ||
2534 | 113,0,327,3,114, | ||
2535 | 0,327,3,115,0, | ||
2536 | 327,3,116,0,327, | ||
2537 | 3,117,0,327,3, | ||
2538 | 118,0,327,3,119, | ||
2539 | 0,327,3,120,0, | ||
2540 | 327,3,121,0,327, | ||
2541 | 3,122,0,327,3, | ||
2542 | 48,0,327,3,49, | ||
2543 | 0,327,3,50,0, | ||
2544 | 327,3,51,0,327, | ||
2545 | 3,52,0,327,3, | ||
2546 | 53,0,327,3,54, | ||
2547 | 0,327,3,55,0, | ||
2548 | 327,3,56,0,327, | ||
2549 | 3,57,0,327,3, | ||
2550 | 65,0,327,3,66, | ||
2551 | 0,327,3,67,0, | ||
2552 | 327,3,68,0,327, | ||
2553 | 3,69,0,327,3, | ||
2554 | 70,0,327,3,71, | ||
2555 | 0,327,3,72,0, | ||
2556 | 327,3,73,0,327, | ||
2557 | 3,74,0,327,3, | ||
2558 | 75,0,327,3,76, | ||
2559 | 0,327,3,77,0, | ||
2560 | 327,3,78,0,327, | ||
2561 | 3,79,0,327,3, | ||
2562 | 80,0,327,3,81, | ||
2563 | 0,327,3,82,0, | ||
2564 | 327,3,83,0,327, | ||
2565 | 3,84,0,327,3, | ||
2566 | 85,0,327,3,86, | ||
2567 | 0,327,3,87,0, | ||
2568 | 327,3,88,0,327, | ||
2569 | 3,89,0,327,3, | ||
2570 | 90,0,327,3,95, | ||
2571 | 0,327,3,97,0, | ||
2572 | 327,3,98,0,327, | ||
2573 | 3,99,0,327,3, | ||
2574 | 100,0,327,3,101, | ||
2575 | 0,327,3,102,0, | ||
2576 | 327,3,103,0,327, | ||
2577 | 3,104,0,327,3, | ||
2578 | 105,0,327,3,106, | ||
2579 | 0,327,3,107,0, | ||
2580 | 327,3,108,0,327, | ||
2581 | 418,11,1,367,0, | ||
2582 | 419,4,30,65,0, | ||
2583 | 84,0,95,0,84, | ||
2584 | 0,65,0,82,0, | ||
2585 | 71,0,69,0,84, | ||
2586 | 0,95,0,69,0, | ||
2587 | 86,0,69,0,78, | ||
2588 | 0,84,0,1,-1, | ||
2589 | 3,117,0,327,3, | ||
2590 | 118,0,327,3,119, | ||
2591 | 0,327,3,120,0, | ||
2592 | 327,3,121,0,327, | ||
2593 | 3,122,0,327,3, | ||
2594 | 48,0,327,3,49, | ||
2595 | 0,327,3,50,0, | ||
2596 | 327,3,51,0,327, | ||
2597 | 3,52,0,327,3, | ||
2598 | 53,0,327,3,54, | ||
2599 | 0,327,3,55,0, | ||
2600 | 327,3,56,0,327, | ||
2601 | 3,57,0,327,3, | ||
2602 | 65,0,327,3,66, | ||
2603 | 0,327,3,67,0, | ||
2604 | 327,3,68,0,327, | ||
2605 | 3,69,0,327,3, | ||
2606 | 70,0,327,3,71, | ||
2607 | 0,327,3,72,0, | ||
2608 | 327,3,73,0,327, | ||
2609 | 3,74,0,327,3, | ||
2610 | 75,0,327,3,76, | ||
2611 | 0,327,3,77,0, | ||
2612 | 327,3,78,0,327, | ||
2613 | 3,79,0,327,3, | ||
2614 | 80,0,327,3,81, | ||
2615 | 0,327,3,82,0, | ||
2616 | 327,3,83,0,327, | ||
2617 | 3,84,0,327,3, | ||
2618 | 85,0,327,3,86, | ||
2619 | 0,327,3,87,0, | ||
2620 | 327,3,88,0,327, | ||
2621 | 3,89,0,327,3, | ||
2622 | 90,0,327,3,95, | ||
2623 | 0,327,3,97,0, | ||
2624 | 327,3,98,0,327, | ||
2625 | 3,99,0,327,3, | ||
2626 | 100,0,327,3,101, | ||
2627 | 0,327,3,102,0, | ||
2628 | 327,3,103,0,327, | ||
2629 | 3,104,0,327,3, | ||
2630 | 105,0,327,3,106, | ||
2631 | 0,327,3,107,0, | ||
2632 | 327,3,108,0,327, | ||
2633 | 420,11,1,829,0, | ||
2634 | 330,1,-1,3,102, | ||
2635 | 0,327,3,103,0, | ||
2636 | 327,3,104,0,327, | ||
2637 | 3,105,0,327,3, | ||
2638 | 106,0,327,3,107, | ||
2639 | 0,327,3,108,0, | ||
2640 | 327,421,11,1,829, | ||
2641 | 0,330,1,-1,3, | ||
2642 | 104,0,327,3,105, | ||
2643 | 0,327,3,106,0, | ||
2644 | 327,3,107,0,327, | ||
2645 | 3,108,0,327,422, | ||
2646 | 11,1,829,0,330, | ||
2647 | 1,-1,3,115,0, | ||
2648 | 327,3,116,0,327, | ||
2649 | 3,117,0,327,3, | ||
2650 | 118,0,327,3,119, | ||
2651 | 0,327,3,120,0, | ||
2652 | 327,3,121,0,327, | ||
2653 | 3,122,0,327,3, | ||
2654 | 48,0,327,3,49, | ||
2655 | 0,327,3,50,0, | ||
2656 | 327,3,51,0,327, | ||
2657 | 3,52,0,327,3, | ||
2658 | 53,0,327,3,54, | ||
2659 | 0,327,3,55,0, | ||
2660 | 327,3,56,0,327, | ||
2661 | 3,57,0,327,3, | ||
2662 | 65,0,327,3,66, | ||
2663 | 0,327,3,67,0, | ||
2664 | 327,3,68,0,327, | ||
2665 | 3,69,0,327,3, | ||
2666 | 70,0,327,3,71, | ||
2667 | 0,327,3,72,0, | ||
2668 | 327,3,73,0,327, | ||
2669 | 3,74,0,327,3, | ||
2670 | 75,0,327,3,76, | ||
2671 | 0,327,3,77,0, | ||
2672 | 327,3,78,0,327, | ||
2673 | 3,79,0,327,3, | ||
2674 | 80,0,327,3,81, | ||
2675 | 0,327,3,82,0, | ||
2676 | 327,3,83,0,327, | ||
2677 | 3,84,0,327,3, | ||
2678 | 85,0,327,3,86, | ||
2679 | 0,327,3,87,0, | ||
2680 | 327,3,88,0,327, | ||
2681 | 3,89,0,327,3, | ||
2682 | 90,0,327,3,95, | ||
2683 | 0,327,3,97,0, | ||
2684 | 327,3,98,0,327, | ||
2685 | 3,99,0,327,3, | ||
2686 | 100,0,327,3,101, | ||
2687 | 0,327,3,102,0, | ||
2688 | 327,3,103,0,327, | ||
2689 | 3,104,0,327,3, | ||
2690 | 105,0,327,3,106, | ||
2691 | 0,327,3,107,0, | ||
2692 | 327,3,108,0,327, | ||
2693 | 423,11,1,829,0, | ||
2694 | 330,1,-1,3,98, | ||
2695 | 0,327,3,99,0, | ||
2696 | 327,3,100,0,327, | ||
2697 | 3,101,0,327,3, | ||
2698 | 102,0,327,3,103, | ||
2699 | 0,327,3,104,0, | ||
2700 | 327,3,105,0,327, | ||
2701 | 3,106,0,327,3, | ||
2702 | 107,0,327,3,108, | ||
2703 | 0,327,424,11,1, | ||
2704 | 829,0,330,1,-1, | ||
2705 | 3,117,0,327,3, | ||
2706 | 118,0,327,3,119, | ||
2707 | 0,327,3,120,0, | ||
2708 | 327,3,121,0,327, | ||
2709 | 3,122,0,327,3, | ||
2710 | 48,0,327,3,49, | ||
2711 | 0,327,3,50,0, | ||
2712 | 327,3,51,0,327, | ||
2713 | 3,52,0,327,3, | ||
2714 | 53,0,327,3,54, | ||
2715 | 0,327,3,55,0, | ||
2716 | 327,3,56,0,327, | ||
2717 | 3,57,0,327,3, | ||
2718 | 65,0,327,3,66, | ||
2719 | 0,327,3,67,0, | ||
2720 | 327,3,68,0,327, | ||
2721 | 3,69,0,327,3, | ||
2722 | 70,0,327,3,71, | ||
2723 | 0,327,3,72,0, | ||
2724 | 327,3,73,0,327, | ||
2725 | 3,74,0,327,3, | ||
2726 | 75,0,327,3,76, | ||
2727 | 0,327,3,77,0, | ||
2728 | 327,3,78,0,327, | ||
2729 | 3,79,0,327,3, | ||
2730 | 80,0,327,3,81, | ||
2731 | 0,327,3,82,0, | ||
2732 | 327,3,83,0,327, | ||
2733 | 3,84,0,327,3, | ||
2734 | 85,0,327,3,86, | ||
2735 | 0,327,3,87,0, | ||
2736 | 327,3,88,0,327, | ||
2737 | 3,89,0,327,3, | ||
2738 | 90,0,327,3,95, | ||
2739 | 0,327,3,97,0, | ||
2740 | 327,3,98,0,327, | ||
2741 | 3,99,0,327,3, | ||
2742 | 100,0,327,3,101, | ||
2743 | 0,327,3,102,0, | ||
2744 | 327,3,103,0,327, | ||
2745 | 3,104,0,327,3, | ||
2746 | 105,0,327,3,106, | ||
2747 | 0,327,3,107,0, | ||
2748 | 327,3,108,0,327, | ||
2749 | 425,11,1,829,0, | ||
2750 | 330,1,-1,3,97, | ||
2751 | 0,327,3,98,0, | ||
2752 | 327,3,99,0,327, | ||
2753 | 3,100,0,327,3, | ||
2754 | 101,0,327,3,102, | ||
2755 | 0,327,3,103,0, | ||
2756 | 327,3,104,0,327, | ||
2757 | 3,105,0,327,3, | ||
2758 | 106,0,327,3,107, | ||
2759 | 0,327,3,108,0, | ||
2760 | 327,426,11,1,829, | ||
2761 | 0,330,1,-1,3, | ||
2762 | 117,0,327,3,118, | ||
2763 | 0,327,3,119,0, | ||
2764 | 327,3,120,0,327, | ||
2765 | 3,121,0,327,3, | ||
2766 | 122,0,327,3,48, | ||
2767 | 0,327,3,49,0, | ||
2768 | 327,3,50,0,327, | ||
2769 | 3,51,0,327,3, | ||
2770 | 52,0,327,3,53, | ||
2771 | 0,327,3,54,0, | ||
2772 | 327,3,55,0,327, | ||
2773 | 3,56,0,327,3, | ||
2774 | 57,0,327,3,65, | ||
2775 | 0,327,3,66,0, | ||
2776 | 327,3,67,0,327, | ||
2777 | 3,68,0,327,3, | ||
2778 | 69,0,327,3,70, | ||
2779 | 0,327,3,71,0, | ||
2780 | 327,3,72,0,327, | ||
2781 | 3,73,0,327,3, | ||
2782 | 74,0,327,3,75, | ||
2783 | 0,327,3,76,0, | ||
2784 | 327,3,77,0,327, | ||
2785 | 3,78,0,327,3, | ||
2786 | 79,0,327,3,80, | ||
2787 | 0,327,3,81,0, | ||
2788 | 327,3,82,0,327, | ||
2789 | 3,83,0,327,3, | ||
2790 | 84,0,327,3,85, | ||
2791 | 0,327,3,86,0, | ||
2792 | 327,3,87,0,327, | ||
2793 | 3,88,0,327,3, | ||
2794 | 89,0,327,3,90, | ||
2795 | 0,327,3,95,0, | ||
2796 | 327,3,97,0,327, | ||
2797 | 3,98,0,327,3, | ||
2798 | 99,0,327,3,100, | ||
2799 | 0,327,3,101,0, | ||
2800 | 327,3,102,0,327, | ||
2801 | 3,103,0,327,3, | ||
2802 | 104,0,327,3,105, | ||
2803 | 0,327,3,106,0, | ||
2804 | 327,3,107,0,327, | ||
2805 | 3,108,0,327,427, | ||
2806 | 11,1,829,0,330, | ||
2807 | 1,-1,3,98,0, | ||
2808 | 325,3,99,0,428, | ||
2809 | 12,1,23697,429,5, | ||
2810 | 63,3,109,0,327, | ||
2811 | 3,110,0,327,3, | ||
2812 | 111,0,430,12,1, | ||
2813 | 23727,431,5,63,3, | ||
2814 | 109,0,327,3,110, | ||
2815 | 0,432,12,1,23756, | ||
2816 | 433,5,63,3,109, | ||
2817 | 0,327,3,110,0, | ||
2818 | 327,3,111,0,327, | ||
2819 | 3,112,0,327,3, | ||
2820 | 113,0,327,3,114, | ||
2821 | 0,327,3,115,0, | ||
2822 | 327,3,116,0,434, | ||
2823 | 12,1,23791,435,5, | ||
2824 | 63,3,109,0,327, | ||
2825 | 3,110,0,327,3, | ||
2826 | 111,0,327,3,112, | ||
2827 | 0,327,3,113,0, | ||
2828 | 327,3,114,0,436, | ||
2829 | 12,1,23824,437,5, | ||
2830 | 63,3,109,0,327, | ||
2831 | 3,110,0,327,3, | ||
2832 | 111,0,438,12,1, | ||
2833 | 23854,439,5,63,3, | ||
2834 | 109,0,327,3,110, | ||
2835 | 0,327,3,111,0, | ||
2836 | 327,3,112,0,327, | ||
2837 | 3,113,0,327,3, | ||
2838 | 114,0,327,3,115, | ||
2839 | 0,327,3,116,0, | ||
2840 | 327,3,117,0,327, | ||
2841 | 3,118,0,327,3, | ||
2842 | 119,0,327,3,120, | ||
2843 | 0,327,3,121,0, | ||
2844 | 327,3,122,0,327, | ||
2845 | 3,48,0,327,3, | ||
2846 | 49,0,327,3,50, | ||
2847 | 0,327,3,51,0, | ||
2848 | 327,3,52,0,327, | ||
2849 | 3,53,0,327,3, | ||
2850 | 54,0,327,3,55, | ||
2851 | 0,327,3,56,0, | ||
2852 | 327,3,57,0,327, | ||
2853 | 3,65,0,327,3, | ||
2854 | 66,0,327,3,67, | ||
2855 | 0,327,3,68,0, | ||
2856 | 327,3,69,0,327, | ||
2857 | 3,70,0,327,3, | ||
2858 | 71,0,327,3,72, | ||
2859 | 0,327,3,73,0, | ||
2860 | 327,3,74,0,327, | ||
2861 | 3,75,0,327,3, | ||
2862 | 76,0,327,3,77, | ||
2863 | 0,327,3,78,0, | ||
2864 | 327,3,79,0,327, | ||
2865 | 3,80,0,327,3, | ||
2866 | 81,0,327,3,82, | ||
2867 | 0,327,3,83,0, | ||
2868 | 327,3,84,0,327, | ||
2869 | 3,85,0,327,3, | ||
2870 | 86,0,327,3,87, | ||
2871 | 0,327,3,88,0, | ||
2872 | 327,3,89,0,327, | ||
2873 | 3,90,0,327,3, | ||
2874 | 95,0,327,3,97, | ||
2875 | 0,327,3,98,0, | ||
2876 | 327,3,99,0,327, | ||
2877 | 3,100,0,327,3, | ||
2878 | 101,0,327,3,102, | ||
2879 | 0,327,3,103,0, | ||
2880 | 327,3,104,0,327, | ||
2881 | 3,105,0,327,3, | ||
2882 | 106,0,327,3,107, | ||
2883 | 0,327,3,108,0, | ||
2884 | 440,12,1,23908,441, | ||
2885 | 5,63,3,109,0, | ||
2886 | 327,3,110,0,327, | ||
2887 | 3,111,0,327,3, | ||
2888 | 112,0,327,3,113, | ||
2889 | 0,327,3,114,0, | ||
2890 | 327,3,115,0,327, | ||
2891 | 3,116,0,327,3, | ||
2892 | 117,0,327,3,118, | ||
2893 | 0,327,3,119,0, | ||
2894 | 327,3,120,0,327, | ||
2895 | 3,121,0,327,3, | ||
2896 | 122,0,327,3,48, | ||
2897 | 0,327,3,49,0, | ||
2898 | 327,3,50,0,327, | ||
2899 | 3,51,0,327,3, | ||
2900 | 52,0,327,3,53, | ||
2901 | 0,327,3,54,0, | ||
2902 | 327,3,55,0,327, | ||
2903 | 3,56,0,327,3, | ||
2904 | 57,0,327,3,65, | ||
2905 | 0,327,3,66,0, | ||
2906 | 327,3,67,0,327, | ||
2907 | 3,68,0,327,3, | ||
2908 | 69,0,327,3,70, | ||
2909 | 0,327,3,71,0, | ||
2910 | 327,3,72,0,327, | ||
2911 | 3,73,0,327,3, | ||
2912 | 74,0,327,3,75, | ||
2913 | 0,327,3,76,0, | ||
2914 | 327,3,77,0,327, | ||
2915 | 3,78,0,327,3, | ||
2916 | 79,0,327,3,80, | ||
2917 | 0,327,3,81,0, | ||
2918 | 327,3,82,0,327, | ||
2919 | 3,83,0,327,3, | ||
2920 | 84,0,327,3,85, | ||
2921 | 0,327,3,86,0, | ||
2922 | 327,3,87,0,327, | ||
2923 | 3,88,0,327,3, | ||
2924 | 89,0,327,3,90, | ||
2925 | 0,327,3,95,0, | ||
2926 | 327,3,97,0,327, | ||
2927 | 3,98,0,327,3, | ||
2928 | 99,0,327,3,100, | ||
2929 | 0,327,3,101,0, | ||
2930 | 327,3,102,0,327, | ||
2931 | 3,103,0,327,3, | ||
2932 | 104,0,327,3,105, | ||
2933 | 0,327,3,106,0, | ||
2934 | 327,3,107,0,327, | ||
2935 | 3,108,0,327,442, | ||
2936 | 11,1,450,0,443, | ||
2937 | 4,26,67,0,79, | ||
2938 | 0,78,0,84,0, | ||
2939 | 82,0,79,0,76, | ||
2940 | 0,95,0,69,0, | ||
2941 | 86,0,69,0,78, | ||
2942 | 0,84,0,1,-1, | ||
2943 | 444,11,1,829,0, | ||
2944 | 330,1,-1,3,112, | ||
2945 | 0,327,3,113,0, | ||
2946 | 327,3,114,0,327, | ||
2947 | 3,115,0,327,3, | ||
2948 | 116,0,327,3,117, | ||
2949 | 0,327,3,118,0, | ||
2950 | 327,3,119,0,327, | ||
2951 | 3,120,0,327,3, | ||
2952 | 121,0,327,3,122, | ||
2953 | 0,327,3,48,0, | ||
2954 | 327,3,49,0,327, | ||
2955 | 3,50,0,327,3, | ||
2956 | 51,0,327,3,52, | ||
2957 | 0,327,3,53,0, | ||
2958 | 327,3,54,0,327, | ||
2959 | 3,55,0,327,3, | ||
2960 | 56,0,327,3,57, | ||
2961 | 0,327,3,65,0, | ||
2962 | 327,3,66,0,327, | ||
2963 | 3,67,0,327,3, | ||
2964 | 68,0,327,3,69, | ||
2965 | 0,327,3,70,0, | ||
2966 | 327,3,71,0,327, | ||
2967 | 3,72,0,327,3, | ||
2968 | 73,0,327,3,74, | ||
2969 | 0,327,3,75,0, | ||
2970 | 327,3,76,0,327, | ||
2971 | 3,77,0,327,3, | ||
2972 | 78,0,327,3,79, | ||
2973 | 0,327,3,80,0, | ||
2974 | 327,3,81,0,327, | ||
2975 | 3,82,0,327,3, | ||
2976 | 83,0,327,3,84, | ||
2977 | 0,327,3,85,0, | ||
2978 | 327,3,86,0,327, | ||
2979 | 3,87,0,327,3, | ||
2980 | 88,0,327,3,89, | ||
2981 | 0,327,3,90,0, | ||
2982 | 327,3,95,0,327, | ||
2983 | 3,97,0,327,3, | ||
2984 | 98,0,327,3,99, | ||
2985 | 0,327,3,100,0, | ||
2986 | 327,3,101,0,327, | ||
2987 | 3,102,0,327,3, | ||
2988 | 103,0,327,3,104, | ||
2989 | 0,327,3,105,0, | ||
2990 | 327,3,106,0,327, | ||
2991 | 3,107,0,327,3, | ||
2992 | 108,0,327,445,11, | ||
2993 | 1,829,0,330,1, | ||
2994 | -1,3,115,0,327, | ||
2995 | 3,116,0,327,3, | ||
2996 | 117,0,327,3,118, | ||
2997 | 0,327,3,119,0, | ||
2998 | 327,3,120,0,327, | ||
2999 | 3,121,0,327,3, | ||
3000 | 122,0,327,3,48, | ||
3001 | 0,327,3,49,0, | ||
3002 | 327,3,50,0,327, | ||
3003 | 3,51,0,327,3, | ||
3004 | 52,0,327,3,53, | ||
3005 | 0,327,3,54,0, | ||
3006 | 327,3,55,0,327, | ||
3007 | 3,56,0,327,3, | ||
3008 | 57,0,327,3,65, | ||
3009 | 0,327,3,66,0, | ||
3010 | 327,3,67,0,327, | ||
3011 | 3,68,0,327,3, | ||
3012 | 69,0,327,3,70, | ||
3013 | 0,327,3,71,0, | ||
3014 | 327,3,72,0,327, | ||
3015 | 3,73,0,327,3, | ||
3016 | 74,0,327,3,75, | ||
3017 | 0,327,3,76,0, | ||
3018 | 327,3,77,0,327, | ||
3019 | 3,78,0,327,3, | ||
3020 | 79,0,327,3,80, | ||
3021 | 0,327,3,81,0, | ||
3022 | 327,3,82,0,327, | ||
3023 | 3,83,0,327,3, | ||
3024 | 84,0,327,3,85, | ||
3025 | 0,327,3,86,0, | ||
3026 | 327,3,87,0,327, | ||
3027 | 3,88,0,327,3, | ||
3028 | 89,0,327,3,90, | ||
3029 | 0,327,3,95,0, | ||
3030 | 327,3,97,0,327, | ||
3031 | 3,98,0,327,3, | ||
3032 | 99,0,327,3,100, | ||
3033 | 0,327,3,101,0, | ||
3034 | 327,3,102,0,327, | ||
3035 | 3,103,0,327,3, | ||
3036 | 104,0,327,3,105, | ||
3037 | 0,327,3,106,0, | ||
3038 | 327,3,107,0,327, | ||
3039 | 3,108,0,327,446, | ||
3040 | 11,1,829,0,330, | ||
3041 | 1,-1,3,117,0, | ||
3042 | 327,3,118,0,327, | ||
3043 | 3,119,0,327,3, | ||
3044 | 120,0,327,3,121, | ||
3045 | 0,327,3,122,0, | ||
3046 | 327,3,48,0,327, | ||
3047 | 3,49,0,327,3, | ||
3048 | 50,0,327,3,51, | ||
3049 | 0,327,3,52,0, | ||
3050 | 327,3,53,0,327, | ||
3051 | 3,54,0,327,3, | ||
3052 | 55,0,327,3,56, | ||
3053 | 0,327,3,57,0, | ||
3054 | 327,3,65,0,327, | ||
3055 | 3,66,0,327,3, | ||
3056 | 67,0,327,3,68, | ||
3057 | 0,327,3,69,0, | ||
3058 | 327,3,70,0,327, | ||
3059 | 3,71,0,327,3, | ||
3060 | 72,0,327,3,73, | ||
3061 | 0,327,3,74,0, | ||
3062 | 327,3,75,0,327, | ||
3063 | 3,76,0,327,3, | ||
3064 | 77,0,327,3,78, | ||
3065 | 0,327,3,79,0, | ||
3066 | 327,3,80,0,327, | ||
3067 | 3,81,0,327,3, | ||
3068 | 82,0,327,3,83, | ||
3069 | 0,327,3,84,0, | ||
3070 | 327,3,85,0,327, | ||
3071 | 3,86,0,327,3, | ||
3072 | 87,0,327,3,88, | ||
3073 | 0,327,3,89,0, | ||
3074 | 327,3,90,0,327, | ||
3075 | 3,95,0,327,3, | ||
3076 | 97,0,327,3,98, | ||
3077 | 0,327,3,99,0, | ||
3078 | 327,3,100,0,327, | ||
3079 | 3,101,0,327,3, | ||
3080 | 102,0,327,3,103, | ||
3081 | 0,327,3,104,0, | ||
3082 | 327,3,105,0,327, | ||
3083 | 3,106,0,327,3, | ||
3084 | 107,0,327,3,108, | ||
3085 | 0,327,447,11,1, | ||
3086 | 829,0,330,1,-1, | ||
3087 | 3,111,0,327,3, | ||
3088 | 112,0,327,3,113, | ||
3089 | 0,327,3,114,0, | ||
3090 | 327,3,115,0,327, | ||
3091 | 3,116,0,327,3, | ||
3092 | 117,0,327,3,118, | ||
3093 | 0,327,3,119,0, | ||
3094 | 327,3,120,0,327, | ||
3095 | 3,121,0,327,3, | ||
3096 | 122,0,327,3,48, | ||
3097 | 0,327,3,49,0, | ||
3098 | 327,3,50,0,327, | ||
3099 | 3,51,0,327,3, | ||
3100 | 52,0,327,3,53, | ||
3101 | 0,327,3,54,0, | ||
3102 | 327,3,55,0,327, | ||
3103 | 3,56,0,327,3, | ||
3104 | 57,0,327,3,65, | ||
3105 | 0,327,3,66,0, | ||
3106 | 327,3,67,0,327, | ||
3107 | 3,68,0,327,3, | ||
3108 | 69,0,327,3,70, | ||
3109 | 0,327,3,71,0, | ||
3110 | 327,3,72,0,327, | ||
3111 | 3,73,0,327,3, | ||
3112 | 74,0,327,3,75, | ||
3113 | 0,327,3,76,0, | ||
3114 | 327,3,77,0,327, | ||
3115 | 3,78,0,327,3, | ||
3116 | 79,0,327,3,80, | ||
3117 | 0,327,3,81,0, | ||
3118 | 327,3,82,0,327, | ||
3119 | 3,83,0,327,3, | ||
3120 | 84,0,327,3,85, | ||
3121 | 0,327,3,86,0, | ||
3122 | 327,3,87,0,327, | ||
3123 | 3,88,0,327,3, | ||
3124 | 89,0,327,3,90, | ||
3125 | 0,327,3,95,0, | ||
3126 | 327,3,97,0,327, | ||
3127 | 3,98,0,327,3, | ||
3128 | 99,0,327,3,100, | ||
3129 | 0,327,3,101,0, | ||
3130 | 327,3,102,0,327, | ||
3131 | 3,103,0,327,3, | ||
3132 | 104,0,327,3,105, | ||
3133 | 0,327,3,106,0, | ||
3134 | 327,3,107,0,327, | ||
3135 | 3,108,0,448,12, | ||
3136 | 1,24381,449,5,63, | ||
3137 | 3,109,0,327,3, | ||
3138 | 110,0,327,3,111, | ||
3139 | 0,327,3,112,0, | ||
3140 | 327,3,113,0,327, | ||
3141 | 3,114,0,327,3, | ||
3142 | 115,0,327,3,116, | ||
3143 | 0,327,3,117,0, | ||
3144 | 327,3,118,0,327, | ||
3145 | 3,119,0,327,3, | ||
3146 | 120,0,327,3,121, | ||
3147 | 0,327,3,122,0, | ||
3148 | 327,3,48,0,327, | ||
3149 | 3,49,0,327,3, | ||
3150 | 50,0,327,3,51, | ||
3151 | 0,327,3,52,0, | ||
3152 | 327,3,53,0,327, | ||
3153 | 3,54,0,327,3, | ||
3154 | 55,0,327,3,56, | ||
3155 | 0,327,3,57,0, | ||
3156 | 327,3,65,0,327, | ||
3157 | 3,66,0,327,3, | ||
3158 | 67,0,327,3,68, | ||
3159 | 0,327,3,69,0, | ||
3160 | 327,3,70,0,327, | ||
3161 | 3,71,0,327,3, | ||
3162 | 72,0,327,3,73, | ||
3163 | 0,327,3,74,0, | ||
3164 | 327,3,75,0,327, | ||
3165 | 3,76,0,327,3, | ||
3166 | 77,0,327,3,78, | ||
3167 | 0,327,3,79,0, | ||
3168 | 327,3,80,0,327, | ||
3169 | 3,81,0,327,3, | ||
3170 | 82,0,327,3,83, | ||
3171 | 0,327,3,84,0, | ||
3172 | 327,3,85,0,327, | ||
3173 | 3,86,0,327,3, | ||
3174 | 87,0,327,3,88, | ||
3175 | 0,327,3,89,0, | ||
3176 | 327,3,90,0,327, | ||
3177 | 3,95,0,327,3, | ||
3178 | 97,0,327,3,98, | ||
3179 | 0,327,3,99,0, | ||
3180 | 327,3,100,0,327, | ||
3181 | 3,101,0,327,3, | ||
3182 | 102,0,327,3,103, | ||
3183 | 0,327,3,104,0, | ||
3184 | 327,3,105,0,327, | ||
3185 | 3,106,0,327,3, | ||
3186 | 107,0,327,3,108, | ||
3187 | 0,450,12,1,24435, | ||
3188 | 451,5,63,3,109, | ||
3189 | 0,327,3,110,0, | ||
3190 | 327,3,111,0,327, | ||
3191 | 3,112,0,327,3, | ||
3192 | 113,0,327,3,114, | ||
3193 | 0,327,3,115,0, | ||
3194 | 327,3,116,0,327, | ||
3195 | 3,117,0,327,3, | ||
3196 | 118,0,327,3,119, | ||
3197 | 0,327,3,120,0, | ||
3198 | 327,3,121,0,327, | ||
3199 | 3,122,0,327,3, | ||
3200 | 48,0,327,3,49, | ||
3201 | 0,327,3,50,0, | ||
3202 | 327,3,51,0,327, | ||
3203 | 3,52,0,327,3, | ||
3204 | 53,0,327,3,54, | ||
3205 | 0,327,3,55,0, | ||
3206 | 327,3,56,0,327, | ||
3207 | 3,57,0,327,3, | ||
3208 | 65,0,327,3,66, | ||
3209 | 0,327,3,67,0, | ||
3210 | 327,3,68,0,327, | ||
3211 | 3,69,0,327,3, | ||
3212 | 70,0,327,3,71, | ||
3213 | 0,327,3,72,0, | ||
3214 | 327,3,73,0,327, | ||
3215 | 3,74,0,327,3, | ||
3216 | 75,0,327,3,76, | ||
3217 | 0,327,3,77,0, | ||
3218 | 327,3,78,0,327, | ||
3219 | 3,79,0,327,3, | ||
3220 | 80,0,327,3,81, | ||
3221 | 0,327,3,82,0, | ||
3222 | 327,3,83,0,327, | ||
3223 | 3,84,0,327,3, | ||
3224 | 85,0,327,3,86, | ||
3225 | 0,327,3,87,0, | ||
3226 | 327,3,88,0,327, | ||
3227 | 3,89,0,327,3, | ||
3228 | 90,0,327,3,95, | ||
3229 | 0,327,3,97,0, | ||
3230 | 327,3,98,0,327, | ||
3231 | 3,99,0,327,3, | ||
3232 | 100,0,327,3,101, | ||
3233 | 0,327,3,102,0, | ||
3234 | 327,3,103,0,327, | ||
3235 | 3,104,0,327,3, | ||
3236 | 105,0,452,12,1, | ||
3237 | 24486,453,5,63,3, | ||
3238 | 109,0,327,3,110, | ||
3239 | 0,327,3,111,0, | ||
3240 | 327,3,112,0,327, | ||
3241 | 3,113,0,327,3, | ||
3242 | 114,0,327,3,115, | ||
3243 | 0,454,12,1,24520, | ||
3244 | 455,5,63,3,109, | ||
3245 | 0,327,3,110,0, | ||
3246 | 327,3,111,0,327, | ||
3247 | 3,112,0,327,3, | ||
3248 | 113,0,327,3,114, | ||
3249 | 0,327,3,115,0, | ||
3250 | 327,3,116,0,327, | ||
3251 | 3,117,0,327,3, | ||
3252 | 118,0,327,3,119, | ||
3253 | 0,327,3,120,0, | ||
3254 | 327,3,121,0,327, | ||
3255 | 3,122,0,327,3, | ||
3256 | 48,0,327,3,49, | ||
3257 | 0,327,3,50,0, | ||
3258 | 327,3,51,0,327, | ||
3259 | 3,52,0,327,3, | ||
3260 | 53,0,327,3,54, | ||
3261 | 0,327,3,55,0, | ||
3262 | 327,3,56,0,327, | ||
3263 | 3,57,0,327,3, | ||
3264 | 65,0,327,3,66, | ||
3265 | 0,327,3,67,0, | ||
3266 | 327,3,68,0,327, | ||
3267 | 3,69,0,327,3, | ||
3268 | 70,0,327,3,71, | ||
3269 | 0,327,3,72,0, | ||
3270 | 327,3,73,0,327, | ||
3271 | 3,74,0,327,3, | ||
3272 | 75,0,327,3,76, | ||
3273 | 0,327,3,77,0, | ||
3274 | 327,3,78,0,327, | ||
3275 | 3,79,0,327,3, | ||
3276 | 80,0,327,3,81, | ||
3277 | 0,327,3,82,0, | ||
3278 | 327,3,83,0,327, | ||
3279 | 3,84,0,327,3, | ||
3280 | 85,0,327,3,86, | ||
3281 | 0,327,3,87,0, | ||
3282 | 327,3,88,0,327, | ||
3283 | 3,89,0,327,3, | ||
3284 | 90,0,327,3,95, | ||
3285 | 0,327,3,97,0, | ||
3286 | 327,3,98,0,327, | ||
3287 | 3,99,0,327,3, | ||
3288 | 100,0,327,3,101, | ||
3289 | 0,327,3,102,0, | ||
3290 | 327,3,103,0,327, | ||
3291 | 3,104,0,327,3, | ||
3292 | 105,0,456,12,1, | ||
3293 | 24571,457,5,63,3, | ||
3294 | 109,0,327,3,110, | ||
3295 | 0,327,3,111,0, | ||
3296 | 458,12,1,24601,459, | ||
3297 | 5,63,3,109,0, | ||
3298 | 327,3,110,0,460, | ||
3299 | 12,1,24630,461,5, | ||
3300 | 63,3,109,0,327, | ||
3301 | 3,110,0,327,3, | ||
3302 | 111,0,327,3,112, | ||
3303 | 0,327,3,113,0, | ||
3304 | 327,3,114,0,327, | ||
3305 | 3,115,0,327,3, | ||
3306 | 116,0,327,3,117, | ||
3307 | 0,327,3,118,0, | ||
3308 | 327,3,119,0,327, | ||
3309 | 3,120,0,327,3, | ||
3310 | 121,0,327,3,122, | ||
3311 | 0,327,3,48,0, | ||
3312 | 327,3,49,0,327, | ||
3313 | 3,50,0,327,3, | ||
3314 | 51,0,327,3,52, | ||
3315 | 0,327,3,53,0, | ||
3316 | 327,3,54,0,327, | ||
3317 | 3,55,0,327,3, | ||
3318 | 56,0,327,3,57, | ||
3319 | 0,327,3,65,0, | ||
3320 | 327,3,66,0,327, | ||
3321 | 3,67,0,327,3, | ||
3322 | 68,0,327,3,69, | ||
3323 | 0,327,3,70,0, | ||
3324 | 327,3,71,0,327, | ||
3325 | 3,72,0,327,3, | ||
3326 | 73,0,327,3,74, | ||
3327 | 0,327,3,75,0, | ||
3328 | 327,3,76,0,327, | ||
3329 | 3,77,0,327,3, | ||
3330 | 78,0,327,3,79, | ||
3331 | 0,327,3,80,0, | ||
3332 | 327,3,81,0,327, | ||
3333 | 3,82,0,327,3, | ||
3334 | 83,0,327,3,84, | ||
3335 | 0,327,3,85,0, | ||
3336 | 327,3,86,0,327, | ||
3337 | 3,87,0,327,3, | ||
3338 | 88,0,327,3,89, | ||
3339 | 0,327,3,90,0, | ||
3340 | 327,3,95,0,462, | ||
3341 | 12,1,24716,463,5, | ||
3342 | 63,3,109,0,327, | ||
3343 | 3,110,0,327,3, | ||
3344 | 111,0,327,3,112, | ||
3345 | 0,327,3,113,0, | ||
3346 | 327,3,114,0,327, | ||
3347 | 3,115,0,464,12, | ||
3348 | 1,24750,465,5,63, | ||
3349 | 3,109,0,327,3, | ||
3350 | 110,0,327,3,111, | ||
3351 | 0,327,3,112,0, | ||
3352 | 327,3,113,0,327, | ||
3353 | 3,114,0,327,3, | ||
3354 | 115,0,327,3,116, | ||
3355 | 0,466,12,1,24785, | ||
3356 | 467,5,63,3,109, | ||
3357 | 0,327,3,110,0, | ||
3358 | 327,3,111,0,327, | ||
3359 | 3,112,0,327,3, | ||
3360 | 113,0,327,3,114, | ||
3361 | 0,327,3,115,0, | ||
3362 | 327,3,116,0,327, | ||
3363 | 3,117,0,327,3, | ||
3364 | 118,0,327,3,119, | ||
3365 | 0,327,3,120,0, | ||
3366 | 327,3,121,0,327, | ||
3367 | 3,122,0,327,3, | ||
3368 | 48,0,327,3,49, | ||
3369 | 0,327,3,50,0, | ||
3370 | 327,3,51,0,327, | ||
3371 | 3,52,0,327,3, | ||
3372 | 53,0,327,3,54, | ||
3373 | 0,327,3,55,0, | ||
3374 | 327,3,56,0,327, | ||
3375 | 3,57,0,327,3, | ||
3376 | 65,0,327,3,66, | ||
3377 | 0,327,3,67,0, | ||
3378 | 327,3,68,0,327, | ||
3379 | 3,69,0,327,3, | ||
3380 | 70,0,327,3,71, | ||
3381 | 0,327,3,72,0, | ||
3382 | 327,3,73,0,327, | ||
3383 | 3,74,0,327,3, | ||
3384 | 75,0,327,3,76, | ||
3385 | 0,327,3,77,0, | ||
3386 | 327,3,78,0,327, | ||
3387 | 3,79,0,327,3, | ||
3388 | 80,0,327,3,81, | ||
3389 | 0,327,3,82,0, | ||
3390 | 327,3,83,0,327, | ||
3391 | 3,84,0,327,3, | ||
3392 | 85,0,327,3,86, | ||
3393 | 0,327,3,87,0, | ||
3394 | 327,3,88,0,327, | ||
3395 | 3,89,0,327,3, | ||
3396 | 90,0,327,3,95, | ||
3397 | 0,327,3,97,0, | ||
3398 | 468,12,1,24828,469, | ||
3399 | 5,63,3,109,0, | ||
3400 | 327,3,110,0,327, | ||
3401 | 3,111,0,327,3, | ||
3402 | 112,0,327,3,113, | ||
3403 | 0,327,3,114,0, | ||
3404 | 470,12,1,24861,471, | ||
3405 | 5,63,3,109,0, | ||
3406 | 327,3,110,0,327, | ||
3407 | 3,111,0,327,3, | ||
3408 | 112,0,327,3,113, | ||
3409 | 0,327,3,114,0, | ||
3410 | 327,3,115,0,327, | ||
3411 | 3,116,0,472,12, | ||
3412 | 1,24896,473,5,63, | ||
3413 | 3,109,0,327,3, | ||
3414 | 110,0,327,3,111, | ||
3415 | 0,327,3,112,0, | ||
3416 | 327,3,113,0,327, | ||
3417 | 3,114,0,327,3, | ||
3418 | 115,0,327,3,116, | ||
3419 | 0,327,3,117,0, | ||
3420 | 327,3,118,0,327, | ||
3421 | 3,119,0,327,3, | ||
3422 | 120,0,327,3,121, | ||
3423 | 0,327,3,122,0, | ||
3424 | 327,3,48,0,327, | ||
3425 | 3,49,0,327,3, | ||
3426 | 50,0,327,3,51, | ||
3427 | 0,327,3,52,0, | ||
3428 | 327,3,53,0,327, | ||
3429 | 3,54,0,327,3, | ||
3430 | 55,0,327,3,56, | ||
3431 | 0,327,3,57,0, | ||
3432 | 327,3,65,0,327, | ||
3433 | 3,66,0,327,3, | ||
3434 | 67,0,327,3,68, | ||
3435 | 0,327,3,69,0, | ||
3436 | 327,3,70,0,327, | ||
3437 | 3,71,0,327,3, | ||
3438 | 72,0,327,3,73, | ||
3439 | 0,327,3,74,0, | ||
3440 | 327,3,75,0,327, | ||
3441 | 3,76,0,327,3, | ||
3442 | 77,0,327,3,78, | ||
3443 | 0,327,3,79,0, | ||
3444 | 327,3,80,0,327, | ||
3445 | 3,81,0,327,3, | ||
3446 | 82,0,327,3,83, | ||
3447 | 0,327,3,84,0, | ||
3448 | 327,3,85,0,327, | ||
3449 | 3,86,0,327,3, | ||
3450 | 87,0,327,3,88, | ||
3451 | 0,327,3,89,0, | ||
3452 | 327,3,90,0,327, | ||
3453 | 3,95,0,327,3, | ||
3454 | 97,0,327,3,98, | ||
3455 | 0,327,3,99,0, | ||
3456 | 327,3,100,0,327, | ||
3457 | 3,101,0,327,3, | ||
3458 | 102,0,327,3,103, | ||
3459 | 0,327,3,104,0, | ||
3460 | 327,3,105,0,327, | ||
3461 | 3,106,0,327,3, | ||
3462 | 107,0,327,3,108, | ||
3463 | 0,327,474,11,1, | ||
3464 | 431,0,475,4,42, | ||
3465 | 67,0,79,0,76, | ||
3466 | 0,76,0,73,0, | ||
3467 | 83,0,73,0,79, | ||
3468 | 0,78,0,95,0, | ||
3469 | 83,0,84,0,65, | ||
3470 | 0,82,0,84,0, | ||
3471 | 95,0,69,0,86, | ||
3472 | 0,69,0,78,0, | ||
3473 | 84,0,1,-1,3, | ||
3474 | 117,0,327,3,118, | ||
3475 | 0,327,3,119,0, | ||
3476 | 327,3,120,0,327, | ||
3477 | 3,121,0,327,3, | ||
3478 | 122,0,327,3,48, | ||
3479 | 0,327,3,49,0, | ||
3480 | 327,3,50,0,327, | ||
3481 | 3,51,0,327,3, | ||
3482 | 52,0,327,3,53, | ||
3483 | 0,327,3,54,0, | ||
3484 | 327,3,55,0,327, | ||
3485 | 3,56,0,327,3, | ||
3486 | 57,0,327,3,65, | ||
3487 | 0,327,3,66,0, | ||
3488 | 327,3,67,0,327, | ||
3489 | 3,68,0,327,3, | ||
3490 | 69,0,327,3,70, | ||
3491 | 0,327,3,71,0, | ||
3492 | 327,3,72,0,327, | ||
3493 | 3,73,0,327,3, | ||
3494 | 74,0,327,3,75, | ||
3495 | 0,327,3,76,0, | ||
3496 | 327,3,77,0,327, | ||
3497 | 3,78,0,327,3, | ||
3498 | 79,0,327,3,80, | ||
3499 | 0,327,3,81,0, | ||
3500 | 327,3,82,0,327, | ||
3501 | 3,83,0,327,3, | ||
3502 | 84,0,327,3,85, | ||
3503 | 0,327,3,86,0, | ||
3504 | 327,3,87,0,327, | ||
3505 | 3,88,0,327,3, | ||
3506 | 89,0,327,3,90, | ||
3507 | 0,327,3,95,0, | ||
3508 | 327,3,97,0,327, | ||
3509 | 3,98,0,327,3, | ||
3510 | 99,0,327,3,100, | ||
3511 | 0,327,3,101,0, | ||
3512 | 327,3,102,0,327, | ||
3513 | 3,103,0,327,3, | ||
3514 | 104,0,327,3,105, | ||
3515 | 0,327,3,106,0, | ||
3516 | 327,3,107,0,327, | ||
3517 | 3,108,0,327,476, | ||
3518 | 11,1,829,0,330, | ||
3519 | 1,-1,3,115,0, | ||
3520 | 327,3,116,0,327, | ||
3521 | 3,117,0,327,3, | ||
3522 | 118,0,327,3,119, | ||
3523 | 0,327,3,120,0, | ||
3524 | 327,3,121,0,327, | ||
3525 | 3,122,0,327,3, | ||
3526 | 48,0,327,3,49, | ||
3527 | 0,327,3,50,0, | ||
3528 | 327,3,51,0,327, | ||
3529 | 3,52,0,327,3, | ||
3530 | 53,0,327,3,54, | ||
3531 | 0,327,3,55,0, | ||
3532 | 327,3,56,0,327, | ||
3533 | 3,57,0,327,3, | ||
3534 | 65,0,327,3,66, | ||
3535 | 0,327,3,67,0, | ||
3536 | 327,3,68,0,327, | ||
3537 | 3,69,0,327,3, | ||
3538 | 70,0,327,3,71, | ||
3539 | 0,327,3,72,0, | ||
3540 | 327,3,73,0,327, | ||
3541 | 3,74,0,327,3, | ||
3542 | 75,0,327,3,76, | ||
3543 | 0,327,3,77,0, | ||
3544 | 327,3,78,0,327, | ||
3545 | 3,79,0,327,3, | ||
3546 | 80,0,327,3,81, | ||
3547 | 0,327,3,82,0, | ||
3548 | 327,3,83,0,327, | ||
3549 | 3,84,0,327,3, | ||
3550 | 85,0,327,3,86, | ||
3551 | 0,327,3,87,0, | ||
3552 | 327,3,88,0,327, | ||
3553 | 3,89,0,327,3, | ||
3554 | 90,0,327,3,95, | ||
3555 | 0,327,3,97,0, | ||
3556 | 327,3,98,0,327, | ||
3557 | 3,99,0,327,3, | ||
3558 | 100,0,327,3,101, | ||
3559 | 0,327,3,102,0, | ||
3560 | 327,3,103,0,327, | ||
3561 | 3,104,0,327,3, | ||
3562 | 105,0,327,3,106, | ||
3563 | 0,327,3,107,0, | ||
3564 | 327,3,108,0,327, | ||
3565 | 477,11,1,829,0, | ||
3566 | 330,1,-1,3,98, | ||
3567 | 0,327,3,99,0, | ||
3568 | 327,3,100,0,327, | ||
3569 | 3,101,0,327,3, | ||
3570 | 102,0,327,3,103, | ||
3571 | 0,327,3,104,0, | ||
3572 | 327,3,105,0,327, | ||
3573 | 3,106,0,327,3, | ||
3574 | 107,0,327,3,108, | ||
3575 | 0,327,478,11,1, | ||
3576 | 829,0,330,1,-1, | ||
3577 | 3,117,0,327,3, | ||
3578 | 118,0,327,3,119, | ||
3579 | 0,327,3,120,0, | ||
3580 | 327,3,121,0,327, | ||
3581 | 3,122,0,327,3, | ||
3582 | 48,0,327,3,49, | ||
3583 | 0,327,3,50,0, | ||
3584 | 327,3,51,0,327, | ||
3585 | 3,52,0,327,3, | ||
3586 | 53,0,327,3,54, | ||
3587 | 0,327,3,55,0, | ||
3588 | 327,3,56,0,327, | ||
3589 | 3,57,0,327,3, | ||
3590 | 65,0,327,3,66, | ||
3591 | 0,327,3,67,0, | ||
3592 | 327,3,68,0,327, | ||
3593 | 3,69,0,327,3, | ||
3594 | 70,0,327,3,71, | ||
3595 | 0,327,3,72,0, | ||
3596 | 327,3,73,0,327, | ||
3597 | 3,74,0,327,3, | ||
3598 | 75,0,327,3,76, | ||
3599 | 0,327,3,77,0, | ||
3600 | 327,3,78,0,327, | ||
3601 | 3,79,0,327,3, | ||
3602 | 80,0,327,3,81, | ||
3603 | 0,327,3,82,0, | ||
3604 | 327,3,83,0,327, | ||
3605 | 3,84,0,327,3, | ||
3606 | 85,0,327,3,86, | ||
3607 | 0,327,3,87,0, | ||
3608 | 327,3,88,0,327, | ||
3609 | 3,89,0,327,3, | ||
3610 | 90,0,327,3,95, | ||
3611 | 0,327,3,97,0, | ||
3612 | 327,3,98,0,327, | ||
3613 | 3,99,0,327,3, | ||
3614 | 100,0,327,3,101, | ||
3615 | 0,327,3,102,0, | ||
3616 | 327,3,103,0,327, | ||
3617 | 3,104,0,327,3, | ||
3618 | 105,0,327,3,106, | ||
3619 | 0,327,3,107,0, | ||
3620 | 327,3,108,0,327, | ||
3621 | 479,11,1,829,0, | ||
3622 | 330,1,-1,3,116, | ||
3623 | 0,327,3,117,0, | ||
3624 | 327,3,118,0,327, | ||
3625 | 3,119,0,327,3, | ||
3626 | 120,0,327,3,121, | ||
3627 | 0,327,3,122,0, | ||
3628 | 327,3,48,0,327, | ||
3629 | 3,49,0,327,3, | ||
3630 | 50,0,327,3,51, | ||
3631 | 0,327,3,52,0, | ||
3632 | 327,3,53,0,327, | ||
3633 | 3,54,0,327,3, | ||
3634 | 55,0,327,3,56, | ||
3635 | 0,327,3,57,0, | ||
3636 | 327,3,65,0,327, | ||
3637 | 3,66,0,327,3, | ||
3638 | 67,0,327,3,68, | ||
3639 | 0,327,3,69,0, | ||
3640 | 327,3,70,0,327, | ||
3641 | 3,71,0,327,3, | ||
3642 | 72,0,327,3,73, | ||
3643 | 0,327,3,74,0, | ||
3644 | 327,3,75,0,327, | ||
3645 | 3,76,0,327,3, | ||
3646 | 77,0,327,3,78, | ||
3647 | 0,327,3,79,0, | ||
3648 | 327,3,80,0,327, | ||
3649 | 3,81,0,327,3, | ||
3650 | 82,0,327,3,83, | ||
3651 | 0,327,3,84,0, | ||
3652 | 327,3,85,0,327, | ||
3653 | 3,86,0,327,3, | ||
3654 | 87,0,327,3,88, | ||
3655 | 0,327,3,89,0, | ||
3656 | 327,3,90,0,327, | ||
3657 | 3,95,0,327,3, | ||
3658 | 97,0,327,3,98, | ||
3659 | 0,327,3,99,0, | ||
3660 | 327,3,100,0,327, | ||
3661 | 3,101,0,480,12, | ||
3662 | 1,25363,481,5,63, | ||
3663 | 3,109,0,327,3, | ||
3664 | 110,0,482,12,1, | ||
3665 | 25392,483,5,63,3, | ||
3666 | 109,0,327,3,110, | ||
3667 | 0,327,3,111,0, | ||
3668 | 327,3,112,0,327, | ||
3669 | 3,113,0,327,3, | ||
3670 | 114,0,327,3,115, | ||
3671 | 0,327,3,116,0, | ||
3672 | 327,3,117,0,327, | ||
3673 | 3,118,0,327,3, | ||
3674 | 119,0,327,3,120, | ||
3675 | 0,327,3,121,0, | ||
3676 | 327,3,122,0,327, | ||
3677 | 3,48,0,327,3, | ||
3678 | 49,0,327,3,50, | ||
3679 | 0,327,3,51,0, | ||
3680 | 327,3,52,0,327, | ||
3681 | 3,53,0,327,3, | ||
3682 | 54,0,327,3,55, | ||
3683 | 0,327,3,56,0, | ||
3684 | 327,3,57,0,327, | ||
3685 | 3,65,0,327,3, | ||
3686 | 66,0,327,3,67, | ||
3687 | 0,327,3,68,0, | ||
3688 | 327,3,69,0,327, | ||
3689 | 3,70,0,327,3, | ||
3690 | 71,0,327,3,72, | ||
3691 | 0,327,3,73,0, | ||
3692 | 327,3,74,0,327, | ||
3693 | 3,75,0,327,3, | ||
3694 | 76,0,327,3,77, | ||
3695 | 0,327,3,78,0, | ||
3696 | 327,3,79,0,327, | ||
3697 | 3,80,0,327,3, | ||
3698 | 81,0,327,3,82, | ||
3699 | 0,327,3,83,0, | ||
3700 | 327,3,84,0,327, | ||
3701 | 3,85,0,327,3, | ||
3702 | 86,0,327,3,87, | ||
3703 | 0,327,3,88,0, | ||
3704 | 327,3,89,0,327, | ||
3705 | 3,90,0,327,3, | ||
3706 | 95,0,327,3,97, | ||
3707 | 0,327,3,98,0, | ||
3708 | 327,3,99,0,327, | ||
3709 | 3,100,0,484,12, | ||
3710 | 1,25438,485,5,63, | ||
3711 | 3,109,0,327,3, | ||
3712 | 110,0,327,3,111, | ||
3713 | 0,327,3,112,0, | ||
3714 | 327,3,113,0,327, | ||
3715 | 3,114,0,327,3, | ||
3716 | 115,0,327,3,116, | ||
3717 | 0,327,3,117,0, | ||
3718 | 327,3,118,0,327, | ||
3719 | 3,119,0,327,3, | ||
3720 | 120,0,327,3,121, | ||
3721 | 0,327,3,122,0, | ||
3722 | 327,3,48,0,327, | ||
3723 | 3,49,0,327,3, | ||
3724 | 50,0,327,3,51, | ||
3725 | 0,327,3,52,0, | ||
3726 | 327,3,53,0,327, | ||
3727 | 3,54,0,327,3, | ||
3728 | 55,0,327,3,56, | ||
3729 | 0,327,3,57,0, | ||
3730 | 327,3,65,0,327, | ||
3731 | 3,66,0,327,3, | ||
3732 | 67,0,327,3,68, | ||
3733 | 0,327,3,69,0, | ||
3734 | 327,3,70,0,327, | ||
3735 | 3,71,0,327,3, | ||
3736 | 72,0,327,3,73, | ||
3737 | 0,327,3,74,0, | ||
3738 | 327,3,75,0,327, | ||
3739 | 3,76,0,327,3, | ||
3740 | 77,0,327,3,78, | ||
3741 | 0,327,3,79,0, | ||
3742 | 327,3,80,0,327, | ||
3743 | 3,81,0,327,3, | ||
3744 | 82,0,327,3,83, | ||
3745 | 0,327,3,84,0, | ||
3746 | 327,3,85,0,327, | ||
3747 | 3,86,0,327,3, | ||
3748 | 87,0,327,3,88, | ||
3749 | 0,327,3,89,0, | ||
3750 | 327,3,90,0,327, | ||
3751 | 3,95,0,327,3, | ||
3752 | 97,0,327,3,98, | ||
3753 | 0,327,3,99,0, | ||
3754 | 327,3,100,0,327, | ||
3755 | 3,101,0,327,3, | ||
3756 | 102,0,327,3,103, | ||
3757 | 0,327,3,104,0, | ||
3758 | 327,3,105,0,327, | ||
3759 | 3,106,0,327,3, | ||
3760 | 107,0,327,3,108, | ||
3761 | 0,327,486,11,1, | ||
3762 | 414,0,487,4,38, | ||
3763 | 67,0,79,0,76, | ||
3764 | 0,76,0,73,0, | ||
3765 | 83,0,73,0,79, | ||
3766 | 0,78,0,95,0, | ||
3767 | 69,0,78,0,68, | ||
3768 | 0,95,0,69,0, | ||
3769 | 86,0,69,0,78, | ||
3770 | 0,84,0,1,-1, | ||
3771 | 3,101,0,327,3, | ||
3772 | 102,0,327,3,103, | ||
3773 | 0,327,3,104,0, | ||
3774 | 327,3,105,0,327, | ||
3775 | 3,106,0,327,3, | ||
3776 | 107,0,327,3,108, | ||
3777 | 0,327,488,11,1, | ||
3778 | 829,0,330,1,-1, | ||
3779 | 3,111,0,327,3, | ||
3780 | 112,0,327,3,113, | ||
3781 | 0,327,3,114,0, | ||
3782 | 327,3,115,0,327, | ||
3783 | 3,116,0,327,3, | ||
3784 | 117,0,327,3,118, | ||
3785 | 0,327,3,119,0, | ||
3786 | 327,3,120,0,327, | ||
3787 | 3,121,0,327,3, | ||
3788 | 122,0,327,3,48, | ||
3789 | 0,327,3,49,0, | ||
3790 | 327,3,50,0,327, | ||
3791 | 3,51,0,327,3, | ||
3792 | 52,0,327,3,53, | ||
3793 | 0,327,3,54,0, | ||
3794 | 327,3,55,0,327, | ||
3795 | 3,56,0,327,3, | ||
3796 | 57,0,327,3,65, | ||
3797 | 0,327,3,66,0, | ||
3798 | 327,3,67,0,327, | ||
3799 | 3,68,0,327,3, | ||
3800 | 69,0,327,3,70, | ||
3801 | 0,327,3,71,0, | ||
3802 | 327,3,72,0,327, | ||
3803 | 3,73,0,327,3, | ||
3804 | 74,0,327,3,75, | ||
3805 | 0,327,3,76,0, | ||
3806 | 327,3,77,0,327, | ||
3807 | 3,78,0,327,3, | ||
3808 | 79,0,327,3,80, | ||
3809 | 0,327,3,81,0, | ||
3810 | 327,3,82,0,327, | ||
3811 | 3,83,0,327,3, | ||
3812 | 84,0,327,3,85, | ||
3813 | 0,327,3,86,0, | ||
3814 | 327,3,87,0,327, | ||
3815 | 3,88,0,327,3, | ||
3816 | 89,0,327,3,90, | ||
3817 | 0,327,3,95,0, | ||
3818 | 327,3,97,0,327, | ||
3819 | 3,98,0,327,3, | ||
3820 | 99,0,327,3,100, | ||
3821 | 0,327,3,101,0, | ||
3822 | 327,3,102,0,327, | ||
3823 | 3,103,0,327,3, | ||
3824 | 104,0,327,3,105, | ||
3825 | 0,327,3,106,0, | ||
3826 | 327,3,107,0,327, | ||
3827 | 3,108,0,327,489, | ||
3828 | 11,1,829,0,330, | ||
3829 | 1,-1,3,102,0, | ||
3830 | 327,3,103,0,327, | ||
3831 | 3,104,0,327,3, | ||
3832 | 105,0,327,3,106, | ||
3833 | 0,327,3,107,0, | ||
3834 | 327,3,108,0,327, | ||
3835 | 490,11,1,829,0, | ||
3836 | 330,1,-1,3,97, | ||
3837 | 0,327,3,98,0, | ||
3838 | 327,3,99,0,327, | ||
3839 | 3,100,0,327,3, | ||
3840 | 101,0,327,3,102, | ||
3841 | 0,327,3,103,0, | ||
3842 | 327,3,104,0,327, | ||
3843 | 3,105,0,327,3, | ||
3844 | 106,0,327,3,107, | ||
3845 | 0,327,3,108,0, | ||
3846 | 327,491,11,1,401, | ||
3847 | 0,492,4,30,67, | ||
3848 | 0,79,0,76,0, | ||
3849 | 76,0,73,0,83, | ||
3850 | 0,73,0,79,0, | ||
3851 | 78,0,95,0,69, | ||
3852 | 0,86,0,69,0, | ||
3853 | 78,0,84,0,1, | ||
3854 | -1,3,111,0,327, | ||
3855 | 3,112,0,327,3, | ||
3856 | 113,0,327,3,114, | ||
3857 | 0,327,3,115,0, | ||
3858 | 327,3,116,0,327, | ||
3859 | 3,117,0,327,3, | ||
3860 | 118,0,327,3,119, | ||
3861 | 0,327,3,120,0, | ||
3862 | 327,3,121,0,327, | ||
3863 | 3,122,0,327,3, | ||
3864 | 48,0,327,3,49, | ||
3865 | 0,327,3,50,0, | ||
3866 | 327,3,51,0,327, | ||
3867 | 3,52,0,327,3, | ||
3868 | 53,0,327,3,54, | ||
3869 | 0,327,3,55,0, | ||
3870 | 327,3,56,0,327, | ||
3871 | 3,57,0,327,3, | ||
3872 | 65,0,327,3,66, | ||
3873 | 0,327,3,67,0, | ||
3874 | 327,3,68,0,327, | ||
3875 | 3,69,0,327,3, | ||
3876 | 70,0,327,3,71, | ||
3877 | 0,327,3,72,0, | ||
3878 | 327,3,73,0,327, | ||
3879 | 3,74,0,327,3, | ||
3880 | 75,0,327,3,76, | ||
3881 | 0,327,3,77,0, | ||
3882 | 327,3,78,0,327, | ||
3883 | 3,79,0,327,3, | ||
3884 | 80,0,327,3,81, | ||
3885 | 0,327,3,82,0, | ||
3886 | 327,3,83,0,327, | ||
3887 | 3,84,0,327,3, | ||
3888 | 85,0,327,3,86, | ||
3889 | 0,327,3,87,0, | ||
3890 | 327,3,88,0,327, | ||
3891 | 3,89,0,327,3, | ||
3892 | 90,0,327,3,95, | ||
3893 | 0,327,3,97,0, | ||
3894 | 327,3,98,0,327, | ||
3895 | 3,99,0,327,3, | ||
3896 | 100,0,327,3,101, | ||
3897 | 0,327,3,102,0, | ||
3898 | 327,3,103,0,327, | ||
3899 | 3,104,0,327,3, | ||
3900 | 105,0,327,3,106, | ||
3901 | 0,327,3,107,0, | ||
3902 | 327,3,108,0,327, | ||
3903 | 493,11,1,829,0, | ||
3904 | 330,1,-1,3,112, | ||
3905 | 0,327,3,113,0, | ||
3906 | 327,3,114,0,327, | ||
3907 | 3,115,0,327,3, | ||
3908 | 116,0,327,3,117, | ||
3909 | 0,327,3,118,0, | ||
3910 | 327,3,119,0,327, | ||
3911 | 3,120,0,327,3, | ||
3912 | 121,0,327,3,122, | ||
3913 | 0,327,3,48,0, | ||
3914 | 327,3,49,0,327, | ||
3915 | 3,50,0,327,3, | ||
3916 | 51,0,327,3,52, | ||
3917 | 0,327,3,53,0, | ||
3918 | 327,3,54,0,327, | ||
3919 | 3,55,0,327,3, | ||
3920 | 56,0,327,3,57, | ||
3921 | 0,327,3,65,0, | ||
3922 | 327,3,66,0,327, | ||
3923 | 3,67,0,327,3, | ||
3924 | 68,0,327,3,69, | ||
3925 | 0,327,3,70,0, | ||
3926 | 327,3,71,0,327, | ||
3927 | 3,72,0,327,3, | ||
3928 | 73,0,327,3,74, | ||
3929 | 0,327,3,75,0, | ||
3930 | 327,3,76,0,327, | ||
3931 | 3,77,0,327,3, | ||
3932 | 78,0,327,3,79, | ||
3933 | 0,327,3,80,0, | ||
3934 | 327,3,81,0,327, | ||
3935 | 3,82,0,327,3, | ||
3936 | 83,0,327,3,84, | ||
3937 | 0,327,3,85,0, | ||
3938 | 327,3,86,0,327, | ||
3939 | 3,87,0,327,3, | ||
3940 | 88,0,327,3,89, | ||
3941 | 0,327,3,90,0, | ||
3942 | 327,3,95,0,327, | ||
3943 | 3,97,0,327,3, | ||
3944 | 98,0,327,3,99, | ||
3945 | 0,327,3,100,0, | ||
3946 | 327,3,101,0,327, | ||
3947 | 3,102,0,327,3, | ||
3948 | 103,0,327,3,104, | ||
3949 | 0,327,3,105,0, | ||
3950 | 327,3,106,0,327, | ||
3951 | 3,107,0,327,3, | ||
3952 | 108,0,327,494,11, | ||
3953 | 1,829,0,330,1, | ||
3954 | -1,3,106,0,327, | ||
3955 | 3,107,0,327,3, | ||
3956 | 108,0,327,495,11, | ||
3957 | 1,829,0,330,1, | ||
3958 | -1,3,116,0,327, | ||
3959 | 3,117,0,327,3, | ||
3960 | 118,0,327,3,119, | ||
3961 | 0,327,3,120,0, | ||
3962 | 327,3,121,0,327, | ||
3963 | 3,122,0,327,3, | ||
3964 | 48,0,327,3,49, | ||
3965 | 0,327,3,50,0, | ||
3966 | 327,3,51,0,327, | ||
3967 | 3,52,0,327,3, | ||
3968 | 53,0,327,3,54, | ||
3969 | 0,327,3,55,0, | ||
3970 | 327,3,56,0,327, | ||
3971 | 3,57,0,327,3, | ||
3972 | 65,0,327,3,66, | ||
3973 | 0,327,3,67,0, | ||
3974 | 327,3,68,0,327, | ||
3975 | 3,69,0,327,3, | ||
3976 | 70,0,327,3,71, | ||
3977 | 0,327,3,72,0, | ||
3978 | 327,3,73,0,327, | ||
3979 | 3,74,0,327,3, | ||
3980 | 75,0,327,3,76, | ||
3981 | 0,327,3,77,0, | ||
3982 | 327,3,78,0,327, | ||
3983 | 3,79,0,327,3, | ||
3984 | 80,0,327,3,81, | ||
3985 | 0,327,3,82,0, | ||
3986 | 327,3,83,0,327, | ||
3987 | 3,84,0,327,3, | ||
3988 | 85,0,327,3,86, | ||
3989 | 0,327,3,87,0, | ||
3990 | 327,3,88,0,327, | ||
3991 | 3,89,0,327,3, | ||
3992 | 90,0,327,3,95, | ||
3993 | 0,327,3,97,0, | ||
3994 | 327,3,98,0,327, | ||
3995 | 3,99,0,327,3, | ||
3996 | 100,0,327,3,101, | ||
3997 | 0,327,3,102,0, | ||
3998 | 327,3,103,0,327, | ||
3999 | 3,104,0,327,3, | ||
4000 | 105,0,327,3,106, | ||
4001 | 0,327,3,107,0, | ||
4002 | 327,3,108,0,327, | ||
4003 | 496,11,1,829,0, | ||
4004 | 330,1,-1,3,106, | ||
4005 | 0,327,3,107,0, | ||
4006 | 327,3,108,0,327, | ||
4007 | 497,11,1,829,0, | ||
4008 | 330,1,-1,498,11, | ||
4009 | 1,829,0,330,1, | ||
4010 | -1,499,11,1,829, | ||
4011 | 0,330,1,-1,3, | ||
4012 | 112,0,327,3,113, | ||
4013 | 0,327,3,114,0, | ||
4014 | 327,3,115,0,327, | ||
4015 | 3,116,0,327,3, | ||
4016 | 117,0,327,3,118, | ||
4017 | 0,327,3,119,0, | ||
4018 | 327,3,120,0,327, | ||
4019 | 3,121,0,327,3, | ||
4020 | 122,0,327,3,48, | ||
4021 | 0,327,3,49,0, | ||
4022 | 327,3,50,0,327, | ||
4023 | 3,51,0,327,3, | ||
4024 | 52,0,327,3,53, | ||
4025 | 0,327,3,54,0, | ||
4026 | 327,3,55,0,327, | ||
4027 | 3,56,0,327,3, | ||
4028 | 57,0,327,3,65, | ||
4029 | 0,327,3,66,0, | ||
4030 | 327,3,67,0,327, | ||
4031 | 3,68,0,327,3, | ||
4032 | 69,0,327,3,70, | ||
4033 | 0,327,3,71,0, | ||
4034 | 327,3,72,0,327, | ||
4035 | 3,73,0,327,3, | ||
4036 | 74,0,327,3,75, | ||
4037 | 0,327,3,76,0, | ||
4038 | 327,3,77,0,327, | ||
4039 | 3,78,0,327,3, | ||
4040 | 79,0,327,3,80, | ||
4041 | 0,327,3,81,0, | ||
4042 | 327,3,82,0,327, | ||
4043 | 3,83,0,327,3, | ||
4044 | 84,0,327,3,85, | ||
4045 | 0,327,3,86,0, | ||
4046 | 327,3,87,0,327, | ||
4047 | 3,88,0,327,3, | ||
4048 | 89,0,327,3,90, | ||
4049 | 0,327,3,95,0, | ||
4050 | 327,3,97,0,327, | ||
4051 | 3,98,0,327,3, | ||
4052 | 99,0,327,3,100, | ||
4053 | 0,327,3,101,0, | ||
4054 | 327,3,102,0,327, | ||
4055 | 3,103,0,327,3, | ||
4056 | 104,0,500,12,1, | ||
4057 | 26387,501,5,63,3, | ||
4058 | 109,0,327,3,110, | ||
4059 | 0,327,3,111,0, | ||
4060 | 327,3,112,0,327, | ||
4061 | 3,113,0,327,3, | ||
4062 | 114,0,327,3,115, | ||
4063 | 0,327,3,116,0, | ||
4064 | 327,3,117,0,327, | ||
4065 | 3,118,0,327,3, | ||
4066 | 119,0,327,3,120, | ||
4067 | 0,327,3,121,0, | ||
4068 | 327,3,122,0,327, | ||
4069 | 3,48,0,327,3, | ||
4070 | 49,0,327,3,50, | ||
4071 | 0,327,3,51,0, | ||
4072 | 327,3,52,0,327, | ||
4073 | 3,53,0,327,3, | ||
4074 | 54,0,327,3,55, | ||
4075 | 0,327,3,56,0, | ||
4076 | 327,3,57,0,327, | ||
4077 | 3,65,0,327,3, | ||
4078 | 66,0,327,3,67, | ||
4079 | 0,327,3,68,0, | ||
4080 | 327,3,69,0,327, | ||
4081 | 3,70,0,327,3, | ||
4082 | 71,0,327,3,72, | ||
4083 | 0,327,3,73,0, | ||
4084 | 327,3,74,0,327, | ||
4085 | 3,75,0,327,3, | ||
4086 | 76,0,327,3,77, | ||
4087 | 0,327,3,78,0, | ||
4088 | 327,3,79,0,327, | ||
4089 | 3,80,0,327,3, | ||
4090 | 81,0,327,3,82, | ||
4091 | 0,327,3,83,0, | ||
4092 | 327,3,84,0,327, | ||
4093 | 3,85,0,327,3, | ||
4094 | 86,0,327,3,87, | ||
4095 | 0,327,3,88,0, | ||
4096 | 327,3,89,0,327, | ||
4097 | 3,90,0,327,3, | ||
4098 | 95,0,327,3,97, | ||
4099 | 0,502,12,1,26430, | ||
4100 | 503,5,63,3,109, | ||
4101 | 0,327,3,110,0, | ||
4102 | 504,12,1,26459,505, | ||
4103 | 5,63,3,109,0, | ||
4104 | 327,3,110,0,327, | ||
4105 | 3,111,0,327,3, | ||
4106 | 112,0,327,3,113, | ||
4107 | 0,327,3,114,0, | ||
4108 | 327,3,115,0,327, | ||
4109 | 3,116,0,327,3, | ||
4110 | 117,0,327,3,118, | ||
4111 | 0,327,3,119,0, | ||
4112 | 327,3,120,0,327, | ||
4113 | 3,121,0,327,3, | ||
4114 | 122,0,327,3,48, | ||
4115 | 0,327,3,49,0, | ||
4116 | 327,3,50,0,327, | ||
4117 | 3,51,0,327,3, | ||
4118 | 52,0,327,3,53, | ||
4119 | 0,327,3,54,0, | ||
4120 | 327,3,55,0,327, | ||
4121 | 3,56,0,327,3, | ||
4122 | 57,0,327,3,65, | ||
4123 | 0,327,3,66,0, | ||
4124 | 327,3,67,0,327, | ||
4125 | 3,68,0,327,3, | ||
4126 | 69,0,327,3,70, | ||
4127 | 0,327,3,71,0, | ||
4128 | 327,3,72,0,327, | ||
4129 | 3,73,0,327,3, | ||
4130 | 74,0,327,3,75, | ||
4131 | 0,327,3,76,0, | ||
4132 | 327,3,77,0,327, | ||
4133 | 3,78,0,327,3, | ||
4134 | 79,0,327,3,80, | ||
4135 | 0,327,3,81,0, | ||
4136 | 327,3,82,0,327, | ||
4137 | 3,83,0,327,3, | ||
4138 | 84,0,327,3,85, | ||
4139 | 0,327,3,86,0, | ||
4140 | 327,3,87,0,327, | ||
4141 | 3,88,0,327,3, | ||
4142 | 89,0,327,3,90, | ||
4143 | 0,327,3,95,0, | ||
4144 | 327,3,97,0,327, | ||
4145 | 3,98,0,327,3, | ||
4146 | 99,0,327,3,100, | ||
4147 | 0,327,3,101,0, | ||
4148 | 327,3,102,0,327, | ||
4149 | 3,103,0,506,12, | ||
4150 | 1,26508,507,5,63, | ||
4151 | 3,109,0,327,3, | ||
4152 | 110,0,327,3,111, | ||
4153 | 0,327,3,112,0, | ||
4154 | 327,3,113,0,327, | ||
4155 | 3,114,0,327,3, | ||
4156 | 115,0,327,3,116, | ||
4157 | 0,327,3,117,0, | ||
4158 | 327,3,118,0,327, | ||
4159 | 3,119,0,327,3, | ||
4160 | 120,0,327,3,121, | ||
4161 | 0,327,3,122,0, | ||
4162 | 327,3,48,0,327, | ||
4163 | 3,49,0,327,3, | ||
4164 | 50,0,327,3,51, | ||
4165 | 0,327,3,52,0, | ||
4166 | 327,3,53,0,327, | ||
4167 | 3,54,0,327,3, | ||
4168 | 55,0,327,3,56, | ||
4169 | 0,327,3,57,0, | ||
4170 | 327,3,65,0,327, | ||
4171 | 3,66,0,327,3, | ||
4172 | 67,0,327,3,68, | ||
4173 | 0,327,3,69,0, | ||
4174 | 327,3,70,0,327, | ||
4175 | 3,71,0,327,3, | ||
4176 | 72,0,327,3,73, | ||
4177 | 0,327,3,74,0, | ||
4178 | 327,3,75,0,327, | ||
4179 | 3,76,0,327,3, | ||
4180 | 77,0,327,3,78, | ||
4181 | 0,327,3,79,0, | ||
4182 | 327,3,80,0,327, | ||
4183 | 3,81,0,327,3, | ||
4184 | 82,0,327,3,83, | ||
4185 | 0,327,3,84,0, | ||
4186 | 327,3,85,0,327, | ||
4187 | 3,86,0,327,3, | ||
4188 | 87,0,327,3,88, | ||
4189 | 0,327,3,89,0, | ||
4190 | 327,3,90,0,327, | ||
4191 | 3,95,0,327,3, | ||
4192 | 97,0,327,3,98, | ||
4193 | 0,327,3,99,0, | ||
4194 | 327,3,100,0,327, | ||
4195 | 3,101,0,508,12, | ||
4196 | 1,26555,509,5,63, | ||
4197 | 3,109,0,327,3, | ||
4198 | 110,0,327,3,111, | ||
4199 | 0,327,3,112,0, | ||
4200 | 327,3,113,0,327, | ||
4201 | 3,114,0,327,3, | ||
4202 | 115,0,327,3,116, | ||
4203 | 0,327,3,117,0, | ||
4204 | 327,3,118,0,327, | ||
4205 | 3,119,0,327,3, | ||
4206 | 120,0,327,3,121, | ||
4207 | 0,327,3,122,0, | ||
4208 | 327,3,48,0,327, | ||
4209 | 3,49,0,327,3, | ||
4210 | 50,0,327,3,51, | ||
4211 | 0,327,3,52,0, | ||
4212 | 327,3,53,0,327, | ||
4213 | 3,54,0,327,3, | ||
4214 | 55,0,327,3,56, | ||
4215 | 0,327,3,57,0, | ||
4216 | 327,3,65,0,327, | ||
4217 | 3,66,0,327,3, | ||
4218 | 67,0,327,3,68, | ||
4219 | 0,327,3,69,0, | ||
4220 | 327,3,70,0,327, | ||
4221 | 3,71,0,327,3, | ||
4222 | 72,0,327,3,73, | ||
4223 | 0,327,3,74,0, | ||
4224 | 327,3,75,0,327, | ||
4225 | 3,76,0,327,3, | ||
4226 | 77,0,327,3,78, | ||
4227 | 0,327,3,79,0, | ||
4228 | 327,3,80,0,327, | ||
4229 | 3,81,0,327,3, | ||
4230 | 82,0,327,3,83, | ||
4231 | 0,327,3,84,0, | ||
4232 | 327,3,85,0,327, | ||
4233 | 3,86,0,327,3, | ||
4234 | 87,0,327,3,88, | ||
4235 | 0,327,3,89,0, | ||
4236 | 327,3,90,0,327, | ||
4237 | 3,95,0,327,3, | ||
4238 | 97,0,327,3,98, | ||
4239 | 0,327,3,99,0, | ||
4240 | 327,3,100,0,510, | ||
4241 | 12,1,26601,511,5, | ||
4242 | 63,3,109,0,327, | ||
4243 | 3,110,0,327,3, | ||
4244 | 111,0,327,3,112, | ||
4245 | 0,327,3,113,0, | ||
4246 | 327,3,114,0,327, | ||
4247 | 3,115,0,327,3, | ||
4248 | 116,0,327,3,117, | ||
4249 | 0,327,3,118,0, | ||
4250 | 327,3,119,0,327, | ||
4251 | 3,120,0,327,3, | ||
4252 | 121,0,327,3,122, | ||
4253 | 0,327,3,48,0, | ||
4254 | 327,3,49,0,327, | ||
4255 | 3,50,0,327,3, | ||
4256 | 51,0,327,3,52, | ||
4257 | 0,327,3,53,0, | ||
4258 | 327,3,54,0,327, | ||
4259 | 3,55,0,327,3, | ||
4260 | 56,0,327,3,57, | ||
4261 | 0,327,3,65,0, | ||
4262 | 327,3,66,0,327, | ||
4263 | 3,67,0,327,3, | ||
4264 | 68,0,327,3,69, | ||
4265 | 0,327,3,70,0, | ||
4266 | 327,3,71,0,327, | ||
4267 | 3,72,0,327,3, | ||
4268 | 73,0,327,3,74, | ||
4269 | 0,327,3,75,0, | ||
4270 | 327,3,76,0,327, | ||
4271 | 3,77,0,327,3, | ||
4272 | 78,0,327,3,79, | ||
4273 | 0,327,3,80,0, | ||
4274 | 327,3,81,0,327, | ||
4275 | 3,82,0,327,3, | ||
4276 | 83,0,327,3,84, | ||
4277 | 0,327,3,85,0, | ||
4278 | 327,3,86,0,327, | ||
4279 | 3,87,0,327,3, | ||
4280 | 88,0,327,3,89, | ||
4281 | 0,327,3,90,0, | ||
4282 | 327,3,95,0,327, | ||
4283 | 3,97,0,327,3, | ||
4284 | 98,0,327,3,99, | ||
4285 | 0,327,3,100,0, | ||
4286 | 327,3,101,0,327, | ||
4287 | 3,102,0,327,3, | ||
4288 | 103,0,327,3,104, | ||
4289 | 0,327,3,105,0, | ||
4290 | 327,3,106,0,327, | ||
4291 | 3,107,0,327,3, | ||
4292 | 108,0,327,512,11, | ||
4293 | 1,390,0,513,4, | ||
4294 | 26,67,0,72,0, | ||
4295 | 65,0,78,0,71, | ||
4296 | 0,69,0,68,0, | ||
4297 | 95,0,69,0,86, | ||
4298 | 0,69,0,78,0, | ||
4299 | 84,0,1,-1,3, | ||
4300 | 101,0,327,3,102, | ||
4301 | 0,327,3,103,0, | ||
4302 | 327,3,104,0,327, | ||
4303 | 3,105,0,327,3, | ||
4304 | 106,0,327,3,107, | ||
4305 | 0,327,3,108,0, | ||
4306 | 327,514,11,1,829, | ||
4307 | 0,330,1,-1,3, | ||
4308 | 102,0,327,3,103, | ||
4309 | 0,327,3,104,0, | ||
4310 | 327,3,105,0,327, | ||
4311 | 3,106,0,327,3, | ||
4312 | 107,0,327,3,108, | ||
4313 | 0,327,515,11,1, | ||
4314 | 829,0,330,1,-1, | ||
4315 | 3,104,0,327,3, | ||
4316 | 105,0,327,3,106, | ||
4317 | 0,327,3,107,0, | ||
4318 | 327,3,108,0,327, | ||
4319 | 516,11,1,829,0, | ||
4320 | 330,1,-1,3,111, | ||
4321 | 0,327,3,112,0, | ||
4322 | 327,3,113,0,327, | ||
4323 | 3,114,0,327,3, | ||
4324 | 115,0,327,3,116, | ||
4325 | 0,327,3,117,0, | ||
4326 | 327,3,118,0,327, | ||
4327 | 3,119,0,327,3, | ||
4328 | 120,0,327,3,121, | ||
4329 | 0,327,3,122,0, | ||
4330 | 327,3,48,0,327, | ||
4331 | 3,49,0,327,3, | ||
4332 | 50,0,327,3,51, | ||
4333 | 0,327,3,52,0, | ||
4334 | 327,3,53,0,327, | ||
4335 | 3,54,0,327,3, | ||
4336 | 55,0,327,3,56, | ||
4337 | 0,327,3,57,0, | ||
4338 | 327,3,65,0,327, | ||
4339 | 3,66,0,327,3, | ||
4340 | 67,0,327,3,68, | ||
4341 | 0,327,3,69,0, | ||
4342 | 327,3,70,0,327, | ||
4343 | 3,71,0,327,3, | ||
4344 | 72,0,327,3,73, | ||
4345 | 0,327,3,74,0, | ||
4346 | 327,3,75,0,327, | ||
4347 | 3,76,0,327,3, | ||
4348 | 77,0,327,3,78, | ||
4349 | 0,327,3,79,0, | ||
4350 | 327,3,80,0,327, | ||
4351 | 3,81,0,327,3, | ||
4352 | 82,0,327,3,83, | ||
4353 | 0,327,3,84,0, | ||
4354 | 327,3,85,0,327, | ||
4355 | 3,86,0,327,3, | ||
4356 | 87,0,327,3,88, | ||
4357 | 0,327,3,89,0, | ||
4358 | 327,3,90,0,327, | ||
4359 | 3,95,0,327,3, | ||
4360 | 97,0,327,3,98, | ||
4361 | 0,327,3,99,0, | ||
4362 | 327,3,100,0,327, | ||
4363 | 3,101,0,327,3, | ||
4364 | 102,0,327,3,103, | ||
4365 | 0,327,3,104,0, | ||
4366 | 327,3,105,0,327, | ||
4367 | 3,106,0,327,3, | ||
4368 | 107,0,327,3,108, | ||
4369 | 0,327,517,11,1, | ||
4370 | 829,0,330,1,-1, | ||
4371 | 3,98,0,327,3, | ||
4372 | 99,0,327,3,100, | ||
4373 | 0,327,3,101,0, | ||
4374 | 327,3,102,0,327, | ||
4375 | 3,103,0,327,3, | ||
4376 | 104,0,327,3,105, | ||
4377 | 0,327,3,106,0, | ||
4378 | 327,3,107,0,327, | ||
4379 | 3,108,0,327,518, | ||
4380 | 11,1,829,0,330, | ||
4381 | 1,-1,3,105,0, | ||
4382 | 327,3,106,0,327, | ||
4383 | 3,107,0,327,3, | ||
4384 | 108,0,327,519,11, | ||
4385 | 1,829,0,330,1, | ||
4386 | -1,3,100,0,520, | ||
4387 | 12,1,27178,521,5, | ||
4388 | 63,3,109,0,327, | ||
4389 | 3,110,0,327,3, | ||
4390 | 111,0,522,12,1, | ||
4391 | 27208,523,5,63,3, | ||
4392 | 109,0,327,3,110, | ||
4393 | 0,327,3,111,0, | ||
4394 | 327,3,112,0,327, | ||
4395 | 3,113,0,327,3, | ||
4396 | 114,0,327,3,115, | ||
4397 | 0,327,3,116,0, | ||
4398 | 327,3,117,0,327, | ||
4399 | 3,118,0,327,3, | ||
4400 | 119,0,327,3,120, | ||
4401 | 0,327,3,121,0, | ||
4402 | 327,3,122,0,327, | ||
4403 | 3,48,0,327,3, | ||
4404 | 49,0,327,3,50, | ||
4405 | 0,327,3,51,0, | ||
4406 | 327,3,52,0,327, | ||
4407 | 3,53,0,327,3, | ||
4408 | 54,0,327,3,55, | ||
4409 | 0,327,3,56,0, | ||
4410 | 327,3,57,0,327, | ||
4411 | 3,65,0,327,3, | ||
4412 | 66,0,327,3,67, | ||
4413 | 0,327,3,68,0, | ||
4414 | 327,3,69,0,327, | ||
4415 | 3,70,0,327,3, | ||
4416 | 71,0,327,3,72, | ||
4417 | 0,327,3,73,0, | ||
4418 | 327,3,74,0,327, | ||
4419 | 3,75,0,327,3, | ||
4420 | 76,0,327,3,77, | ||
4421 | 0,327,3,78,0, | ||
4422 | 327,3,79,0,327, | ||
4423 | 3,80,0,327,3, | ||
4424 | 81,0,327,3,82, | ||
4425 | 0,327,3,83,0, | ||
4426 | 327,3,84,0,327, | ||
4427 | 3,85,0,327,3, | ||
4428 | 86,0,327,3,87, | ||
4429 | 0,327,3,88,0, | ||
4430 | 327,3,89,0,327, | ||
4431 | 3,90,0,327,3, | ||
4432 | 95,0,327,3,97, | ||
4433 | 0,327,3,98,0, | ||
4434 | 327,3,99,0,327, | ||
4435 | 3,100,0,327,3, | ||
4436 | 101,0,327,3,102, | ||
4437 | 0,327,3,103,0, | ||
4438 | 327,3,104,0,327, | ||
4439 | 3,105,0,327,3, | ||
4440 | 106,0,327,3,107, | ||
4441 | 0,327,3,108,0, | ||
4442 | 327,524,11,1,223, | ||
4443 | 0,525,4,4,68, | ||
4444 | 0,79,0,1,-1, | ||
4445 | 3,112,0,327,3, | ||
4446 | 113,0,327,3,114, | ||
4447 | 0,327,3,115,0, | ||
4448 | 327,3,116,0,327, | ||
4449 | 3,117,0,327,3, | ||
4450 | 118,0,327,3,119, | ||
4451 | 0,327,3,120,0, | ||
4452 | 327,3,121,0,327, | ||
4453 | 3,122,0,327,3, | ||
4454 | 48,0,327,3,49, | ||
4455 | 0,327,3,50,0, | ||
4456 | 327,3,51,0,327, | ||
4457 | 3,52,0,327,3, | ||
4458 | 53,0,327,3,54, | ||
4459 | 0,327,3,55,0, | ||
4460 | 327,3,56,0,327, | ||
4461 | 3,57,0,327,3, | ||
4462 | 65,0,327,3,66, | ||
4463 | 0,327,3,67,0, | ||
4464 | 327,3,68,0,327, | ||
4465 | 3,69,0,327,3, | ||
4466 | 70,0,327,3,71, | ||
4467 | 0,327,3,72,0, | ||
4468 | 327,3,73,0,327, | ||
4469 | 3,74,0,327,3, | ||
4470 | 75,0,327,3,76, | ||
4471 | 0,327,3,77,0, | ||
4472 | 327,3,78,0,327, | ||
4473 | 3,79,0,327,3, | ||
4474 | 80,0,327,3,81, | ||
4475 | 0,327,3,82,0, | ||
4476 | 327,3,83,0,327, | ||
4477 | 3,84,0,327,3, | ||
4478 | 85,0,327,3,86, | ||
4479 | 0,327,3,87,0, | ||
4480 | 327,3,88,0,327, | ||
4481 | 3,89,0,327,3, | ||
4482 | 90,0,327,3,95, | ||
4483 | 0,327,3,97,0, | ||
4484 | 526,12,1,27341,527, | ||
4485 | 5,63,3,109,0, | ||
4486 | 327,3,110,0,327, | ||
4487 | 3,111,0,327,3, | ||
4488 | 112,0,327,3,113, | ||
4489 | 0,327,3,114,0, | ||
4490 | 327,3,115,0,327, | ||
4491 | 3,116,0,528,12, | ||
4492 | 1,27376,529,5,63, | ||
4493 | 3,109,0,327,3, | ||
4494 | 110,0,327,3,111, | ||
4495 | 0,327,3,112,0, | ||
4496 | 327,3,113,0,327, | ||
4497 | 3,114,0,327,3, | ||
4498 | 115,0,327,3,116, | ||
4499 | 0,327,3,117,0, | ||
4500 | 327,3,118,0,327, | ||
4501 | 3,119,0,327,3, | ||
4502 | 120,0,327,3,121, | ||
4503 | 0,327,3,122,0, | ||
4504 | 327,3,48,0,327, | ||
4505 | 3,49,0,327,3, | ||
4506 | 50,0,327,3,51, | ||
4507 | 0,327,3,52,0, | ||
4508 | 327,3,53,0,327, | ||
4509 | 3,54,0,327,3, | ||
4510 | 55,0,327,3,56, | ||
4511 | 0,327,3,57,0, | ||
4512 | 327,3,65,0,327, | ||
4513 | 3,66,0,327,3, | ||
4514 | 67,0,327,3,68, | ||
4515 | 0,327,3,69,0, | ||
4516 | 327,3,70,0,327, | ||
4517 | 3,71,0,327,3, | ||
4518 | 72,0,327,3,73, | ||
4519 | 0,327,3,74,0, | ||
4520 | 327,3,75,0,327, | ||
4521 | 3,76,0,327,3, | ||
4522 | 77,0,327,3,78, | ||
4523 | 0,327,3,79,0, | ||
4524 | 327,3,80,0,327, | ||
4525 | 3,81,0,327,3, | ||
4526 | 82,0,327,3,83, | ||
4527 | 0,327,3,84,0, | ||
4528 | 327,3,85,0,327, | ||
4529 | 3,86,0,327,3, | ||
4530 | 87,0,327,3,88, | ||
4531 | 0,327,3,89,0, | ||
4532 | 327,3,90,0,327, | ||
4533 | 3,95,0,327,3, | ||
4534 | 97,0,530,12,1, | ||
4535 | 27419,531,5,63,3, | ||
4536 | 109,0,327,3,110, | ||
4537 | 0,327,3,111,0, | ||
4538 | 327,3,112,0,327, | ||
4539 | 3,113,0,327,3, | ||
4540 | 114,0,327,3,115, | ||
4541 | 0,532,12,1,27453, | ||
4542 | 533,5,63,3,109, | ||
4543 | 0,327,3,110,0, | ||
4544 | 327,3,111,0,327, | ||
4545 | 3,112,0,327,3, | ||
4546 | 113,0,327,3,114, | ||
4547 | 0,327,3,115,0, | ||
4548 | 327,3,116,0,327, | ||
4549 | 3,117,0,327,3, | ||
4550 | 118,0,327,3,119, | ||
4551 | 0,327,3,120,0, | ||
4552 | 327,3,121,0,327, | ||
4553 | 3,122,0,327,3, | ||
4554 | 48,0,327,3,49, | ||
4555 | 0,327,3,50,0, | ||
4556 | 327,3,51,0,327, | ||
4557 | 3,52,0,327,3, | ||
4558 | 53,0,327,3,54, | ||
4559 | 0,327,3,55,0, | ||
4560 | 327,3,56,0,327, | ||
4561 | 3,57,0,327,3, | ||
4562 | 65,0,327,3,66, | ||
4563 | 0,327,3,67,0, | ||
4564 | 327,3,68,0,327, | ||
4565 | 3,69,0,327,3, | ||
4566 | 70,0,327,3,71, | ||
4567 | 0,327,3,72,0, | ||
4568 | 327,3,73,0,327, | ||
4569 | 3,74,0,327,3, | ||
4570 | 75,0,327,3,76, | ||
4571 | 0,327,3,77,0, | ||
4572 | 327,3,78,0,327, | ||
4573 | 3,79,0,327,3, | ||
4574 | 80,0,327,3,81, | ||
4575 | 0,327,3,82,0, | ||
4576 | 327,3,83,0,327, | ||
4577 | 3,84,0,327,3, | ||
4578 | 85,0,327,3,86, | ||
4579 | 0,327,3,87,0, | ||
4580 | 327,3,88,0,327, | ||
4581 | 3,89,0,327,3, | ||
4582 | 90,0,327,3,95, | ||
4583 | 0,327,3,97,0, | ||
4584 | 327,3,98,0,327, | ||
4585 | 3,99,0,327,3, | ||
4586 | 100,0,327,3,101, | ||
4587 | 0,534,12,1,27500, | ||
4588 | 535,5,63,3,109, | ||
4589 | 0,327,3,110,0, | ||
4590 | 327,3,111,0,327, | ||
4591 | 3,112,0,327,3, | ||
4592 | 113,0,327,3,114, | ||
4593 | 0,536,12,1,27533, | ||
4594 | 537,5,63,3,109, | ||
4595 | 0,327,3,110,0, | ||
4596 | 327,3,111,0,327, | ||
4597 | 3,112,0,327,3, | ||
4598 | 113,0,327,3,114, | ||
4599 | 0,327,3,115,0, | ||
4600 | 327,3,116,0,327, | ||
4601 | 3,117,0,327,3, | ||
4602 | 118,0,538,12,1, | ||
4603 | 27570,539,5,63,3, | ||
4604 | 109,0,327,3,110, | ||
4605 | 0,327,3,111,0, | ||
4606 | 327,3,112,0,327, | ||
4607 | 3,113,0,327,3, | ||
4608 | 114,0,327,3,115, | ||
4609 | 0,327,3,116,0, | ||
4610 | 327,3,117,0,327, | ||
4611 | 3,118,0,327,3, | ||
4612 | 119,0,327,3,120, | ||
4613 | 0,327,3,121,0, | ||
4614 | 327,3,122,0,327, | ||
4615 | 3,48,0,327,3, | ||
4616 | 49,0,327,3,50, | ||
4617 | 0,327,3,51,0, | ||
4618 | 327,3,52,0,327, | ||
4619 | 3,53,0,327,3, | ||
4620 | 54,0,327,3,55, | ||
4621 | 0,327,3,56,0, | ||
4622 | 327,3,57,0,327, | ||
4623 | 3,65,0,327,3, | ||
4624 | 66,0,327,3,67, | ||
4625 | 0,327,3,68,0, | ||
4626 | 327,3,69,0,327, | ||
4627 | 3,70,0,327,3, | ||
4628 | 71,0,327,3,72, | ||
4629 | 0,327,3,73,0, | ||
4630 | 327,3,74,0,327, | ||
4631 | 3,75,0,327,3, | ||
4632 | 76,0,327,3,77, | ||
4633 | 0,327,3,78,0, | ||
4634 | 327,3,79,0,327, | ||
4635 | 3,80,0,327,3, | ||
4636 | 81,0,327,3,82, | ||
4637 | 0,327,3,83,0, | ||
4638 | 327,3,84,0,327, | ||
4639 | 3,85,0,327,3, | ||
4640 | 86,0,327,3,87, | ||
4641 | 0,327,3,88,0, | ||
4642 | 327,3,89,0,327, | ||
4643 | 3,90,0,327,3, | ||
4644 | 95,0,327,3,97, | ||
4645 | 0,327,3,98,0, | ||
4646 | 327,3,99,0,327, | ||
4647 | 3,100,0,327,3, | ||
4648 | 101,0,540,12,1, | ||
4649 | 27617,541,5,63,3, | ||
4650 | 109,0,327,3,110, | ||
4651 | 0,327,3,111,0, | ||
4652 | 327,3,112,0,327, | ||
4653 | 3,113,0,327,3, | ||
4654 | 114,0,542,12,1, | ||
4655 | 27650,543,5,63,3, | ||
4656 | 109,0,327,3,110, | ||
4657 | 0,327,3,111,0, | ||
4658 | 327,3,112,0,327, | ||
4659 | 3,113,0,327,3, | ||
4660 | 114,0,327,3,115, | ||
4661 | 0,327,3,116,0, | ||
4662 | 327,3,117,0,327, | ||
4663 | 3,118,0,327,3, | ||
4664 | 119,0,327,3,120, | ||
4665 | 0,327,3,121,0, | ||
4666 | 327,3,122,0,327, | ||
4667 | 3,48,0,327,3, | ||
4668 | 49,0,327,3,50, | ||
4669 | 0,327,3,51,0, | ||
4670 | 327,3,52,0,327, | ||
4671 | 3,53,0,327,3, | ||
4672 | 54,0,327,3,55, | ||
4673 | 0,327,3,56,0, | ||
4674 | 327,3,57,0,327, | ||
4675 | 3,65,0,327,3, | ||
4676 | 66,0,327,3,67, | ||
4677 | 0,327,3,68,0, | ||
4678 | 327,3,69,0,327, | ||
4679 | 3,70,0,327,3, | ||
4680 | 71,0,327,3,72, | ||
4681 | 0,327,3,73,0, | ||
4682 | 327,3,74,0,327, | ||
4683 | 3,75,0,327,3, | ||
4684 | 76,0,327,3,77, | ||
4685 | 0,327,3,78,0, | ||
4686 | 327,3,79,0,327, | ||
4687 | 3,80,0,327,3, | ||
4688 | 81,0,327,3,82, | ||
4689 | 0,327,3,83,0, | ||
4690 | 327,3,84,0,327, | ||
4691 | 3,85,0,327,3, | ||
4692 | 86,0,327,3,87, | ||
4693 | 0,327,3,88,0, | ||
4694 | 327,3,89,0,327, | ||
4695 | 3,90,0,327,3, | ||
4696 | 95,0,327,3,97, | ||
4697 | 0,327,3,98,0, | ||
4698 | 327,3,99,0,327, | ||
4699 | 3,100,0,327,3, | ||
4700 | 101,0,327,3,102, | ||
4701 | 0,327,3,103,0, | ||
4702 | 327,3,104,0,327, | ||
4703 | 3,105,0,327,3, | ||
4704 | 106,0,327,3,107, | ||
4705 | 0,327,3,108,0, | ||
4706 | 327,544,11,1,461, | ||
4707 | 0,545,4,32,68, | ||
4708 | 0,65,0,84,0, | ||
4709 | 65,0,83,0,69, | ||
4710 | 0,82,0,86,0, | ||
4711 | 69,0,82,0,95, | ||
4712 | 0,69,0,86,0, | ||
4713 | 69,0,78,0,84, | ||
4714 | 0,1,-1,3,115, | ||
4715 | 0,327,3,116,0, | ||
4716 | 327,3,117,0,327, | ||
4717 | 3,118,0,327,3, | ||
4718 | 119,0,327,3,120, | ||
4719 | 0,327,3,121,0, | ||
4720 | 327,3,122,0,327, | ||
4721 | 3,48,0,327,3, | ||
4722 | 49,0,327,3,50, | ||
4723 | 0,327,3,51,0, | ||
4724 | 327,3,52,0,327, | ||
4725 | 3,53,0,327,3, | ||
4726 | 54,0,327,3,55, | ||
4727 | 0,327,3,56,0, | ||
4728 | 327,3,57,0,327, | ||
4729 | 3,65,0,327,3, | ||
4730 | 66,0,327,3,67, | ||
4731 | 0,327,3,68,0, | ||
4732 | 327,3,69,0,327, | ||
4733 | 3,70,0,327,3, | ||
4734 | 71,0,327,3,72, | ||
4735 | 0,327,3,73,0, | ||
4736 | 327,3,74,0,327, | ||
4737 | 3,75,0,327,3, | ||
4738 | 76,0,327,3,77, | ||
4739 | 0,327,3,78,0, | ||
4740 | 327,3,79,0,327, | ||
4741 | 3,80,0,327,3, | ||
4742 | 81,0,327,3,82, | ||
4743 | 0,327,3,83,0, | ||
4744 | 327,3,84,0,327, | ||
4745 | 3,85,0,327,3, | ||
4746 | 86,0,327,3,87, | ||
4747 | 0,327,3,88,0, | ||
4748 | 327,3,89,0,327, | ||
4749 | 3,90,0,327,3, | ||
4750 | 95,0,327,3,97, | ||
4751 | 0,327,3,98,0, | ||
4752 | 327,3,99,0,327, | ||
4753 | 3,100,0,327,3, | ||
4754 | 101,0,327,3,102, | ||
4755 | 0,327,3,103,0, | ||
4756 | 327,3,104,0,327, | ||
4757 | 3,105,0,327,3, | ||
4758 | 106,0,327,3,107, | ||
4759 | 0,327,3,108,0, | ||
4760 | 327,546,11,1,829, | ||
4761 | 0,330,1,-1,3, | ||
4762 | 102,0,327,3,103, | ||
4763 | 0,327,3,104,0, | ||
4764 | 327,3,105,0,327, | ||
4765 | 3,106,0,327,3, | ||
4766 | 107,0,327,3,108, | ||
4767 | 0,327,547,11,1, | ||
4768 | 829,0,330,1,-1, | ||
4769 | 3,119,0,327,3, | ||
4770 | 120,0,327,3,121, | ||
4771 | 0,327,3,122,0, | ||
4772 | 327,3,48,0,327, | ||
4773 | 3,49,0,327,3, | ||
4774 | 50,0,327,3,51, | ||
4775 | 0,327,3,52,0, | ||
4776 | 327,3,53,0,327, | ||
4777 | 3,54,0,327,3, | ||
4778 | 55,0,327,3,56, | ||
4779 | 0,327,3,57,0, | ||
4780 | 327,3,65,0,327, | ||
4781 | 3,66,0,327,3, | ||
4782 | 67,0,327,3,68, | ||
4783 | 0,327,3,69,0, | ||
4784 | 327,3,70,0,327, | ||
4785 | 3,71,0,327,3, | ||
4786 | 72,0,327,3,73, | ||
4787 | 0,327,3,74,0, | ||
4788 | 327,3,75,0,327, | ||
4789 | 3,76,0,327,3, | ||
4790 | 77,0,327,3,78, | ||
4791 | 0,327,3,79,0, | ||
4792 | 327,3,80,0,327, | ||
4793 | 3,81,0,327,3, | ||
4794 | 82,0,327,3,83, | ||
4795 | 0,327,3,84,0, | ||
4796 | 327,3,85,0,327, | ||
4797 | 3,86,0,327,3, | ||
4798 | 87,0,327,3,88, | ||
4799 | 0,327,3,89,0, | ||
4800 | 327,3,90,0,327, | ||
4801 | 3,95,0,327,3, | ||
4802 | 97,0,327,3,98, | ||
4803 | 0,327,3,99,0, | ||
4804 | 327,3,100,0,327, | ||
4805 | 3,101,0,327,3, | ||
4806 | 102,0,327,3,103, | ||
4807 | 0,327,3,104,0, | ||
4808 | 327,3,105,0,327, | ||
4809 | 3,106,0,327,3, | ||
4810 | 107,0,327,3,108, | ||
4811 | 0,327,548,11,1, | ||
4812 | 829,0,330,1,-1, | ||
4813 | 3,115,0,327,3, | ||
4814 | 116,0,327,3,117, | ||
4815 | 0,327,3,118,0, | ||
4816 | 327,3,119,0,327, | ||
4817 | 3,120,0,327,3, | ||
4818 | 121,0,327,3,122, | ||
4819 | 0,327,3,48,0, | ||
4820 | 327,3,49,0,327, | ||
4821 | 3,50,0,327,3, | ||
4822 | 51,0,327,3,52, | ||
4823 | 0,327,3,53,0, | ||
4824 | 327,3,54,0,327, | ||
4825 | 3,55,0,327,3, | ||
4826 | 56,0,327,3,57, | ||
4827 | 0,327,3,65,0, | ||
4828 | 327,3,66,0,327, | ||
4829 | 3,67,0,327,3, | ||
4830 | 68,0,327,3,69, | ||
4831 | 0,327,3,70,0, | ||
4832 | 327,3,71,0,327, | ||
4833 | 3,72,0,327,3, | ||
4834 | 73,0,327,3,74, | ||
4835 | 0,327,3,75,0, | ||
4836 | 327,3,76,0,327, | ||
4837 | 3,77,0,327,3, | ||
4838 | 78,0,327,3,79, | ||
4839 | 0,327,3,80,0, | ||
4840 | 327,3,81,0,327, | ||
4841 | 3,82,0,327,3, | ||
4842 | 83,0,327,3,84, | ||
4843 | 0,327,3,85,0, | ||
4844 | 327,3,86,0,327, | ||
4845 | 3,87,0,327,3, | ||
4846 | 88,0,327,3,89, | ||
4847 | 0,327,3,90,0, | ||
4848 | 327,3,95,0,327, | ||
4849 | 3,97,0,327,3, | ||
4850 | 98,0,327,3,99, | ||
4851 | 0,327,3,100,0, | ||
4852 | 327,3,101,0,327, | ||
4853 | 3,102,0,327,3, | ||
4854 | 103,0,327,3,104, | ||
4855 | 0,327,3,105,0, | ||
4856 | 327,3,106,0,327, | ||
4857 | 3,107,0,327,3, | ||
4858 | 108,0,327,549,11, | ||
4859 | 1,829,0,330,1, | ||
4860 | -1,3,102,0,327, | ||
4861 | 3,103,0,327,3, | ||
4862 | 104,0,327,3,105, | ||
4863 | 0,327,3,106,0, | ||
4864 | 327,3,107,0,327, | ||
4865 | 3,108,0,327,550, | ||
4866 | 11,1,829,0,330, | ||
4867 | 1,-1,3,116,0, | ||
4868 | 327,3,117,0,327, | ||
4869 | 3,118,0,327,3, | ||
4870 | 119,0,327,3,120, | ||
4871 | 0,327,3,121,0, | ||
4872 | 327,3,122,0,327, | ||
4873 | 3,48,0,327,3, | ||
4874 | 49,0,327,3,50, | ||
4875 | 0,327,3,51,0, | ||
4876 | 327,3,52,0,327, | ||
4877 | 3,53,0,327,3, | ||
4878 | 54,0,327,3,55, | ||
4879 | 0,327,3,56,0, | ||
4880 | 327,3,57,0,327, | ||
4881 | 3,65,0,327,3, | ||
4882 | 66,0,327,3,67, | ||
4883 | 0,327,3,68,0, | ||
4884 | 327,3,69,0,327, | ||
4885 | 3,70,0,327,3, | ||
4886 | 71,0,327,3,72, | ||
4887 | 0,327,3,73,0, | ||
4888 | 327,3,74,0,327, | ||
4889 | 3,75,0,327,3, | ||
4890 | 76,0,327,3,77, | ||
4891 | 0,327,3,78,0, | ||
4892 | 327,3,79,0,327, | ||
4893 | 3,80,0,327,3, | ||
4894 | 81,0,327,3,82, | ||
4895 | 0,327,3,83,0, | ||
4896 | 327,3,84,0,327, | ||
4897 | 3,85,0,327,3, | ||
4898 | 86,0,327,3,87, | ||
4899 | 0,327,3,88,0, | ||
4900 | 327,3,89,0,327, | ||
4901 | 3,90,0,327,3, | ||
4902 | 95,0,327,3,97, | ||
4903 | 0,327,3,98,0, | ||
4904 | 327,3,99,0,327, | ||
4905 | 3,100,0,327,3, | ||
4906 | 101,0,327,3,102, | ||
4907 | 0,327,3,103,0, | ||
4908 | 327,3,104,0,327, | ||
4909 | 3,105,0,327,3, | ||
4910 | 106,0,327,3,107, | ||
4911 | 0,327,3,108,0, | ||
4912 | 327,551,11,1,829, | ||
4913 | 0,330,1,-1,3, | ||
4914 | 98,0,327,3,99, | ||
4915 | 0,327,3,100,0, | ||
4916 | 327,3,101,0,327, | ||
4917 | 3,102,0,327,3, | ||
4918 | 103,0,327,3,104, | ||
4919 | 0,327,3,105,0, | ||
4920 | 327,3,106,0,327, | ||
4921 | 3,107,0,327,3, | ||
4922 | 108,0,327,552,11, | ||
4923 | 1,829,0,330,1, | ||
4924 | -1,3,117,0,327, | ||
4925 | 3,118,0,327,3, | ||
4926 | 119,0,327,3,120, | ||
4927 | 0,327,3,121,0, | ||
4928 | 327,3,122,0,327, | ||
4929 | 3,48,0,327,3, | ||
4930 | 49,0,327,3,50, | ||
4931 | 0,327,3,51,0, | ||
4932 | 327,3,52,0,327, | ||
4933 | 3,53,0,327,3, | ||
4934 | 54,0,327,3,55, | ||
4935 | 0,327,3,56,0, | ||
4936 | 327,3,57,0,327, | ||
4937 | 3,65,0,327,3, | ||
4938 | 66,0,327,3,67, | ||
4939 | 0,327,3,68,0, | ||
4940 | 327,3,69,0,327, | ||
4941 | 3,70,0,327,3, | ||
4942 | 71,0,327,3,72, | ||
4943 | 0,327,3,73,0, | ||
4944 | 327,3,74,0,327, | ||
4945 | 3,75,0,327,3, | ||
4946 | 76,0,327,3,77, | ||
4947 | 0,327,3,78,0, | ||
4948 | 327,3,79,0,327, | ||
4949 | 3,80,0,327,3, | ||
4950 | 81,0,327,3,82, | ||
4951 | 0,327,3,83,0, | ||
4952 | 327,3,84,0,327, | ||
4953 | 3,85,0,327,3, | ||
4954 | 86,0,327,3,87, | ||
4955 | 0,327,3,88,0, | ||
4956 | 327,3,89,0,327, | ||
4957 | 3,90,0,327,3, | ||
4958 | 95,0,327,3,97, | ||
4959 | 0,327,3,98,0, | ||
4960 | 327,3,99,0,327, | ||
4961 | 3,100,0,327,3, | ||
4962 | 101,0,327,3,102, | ||
4963 | 0,327,3,103,0, | ||
4964 | 327,3,104,0,327, | ||
4965 | 3,105,0,327,3, | ||
4966 | 106,0,327,3,107, | ||
4967 | 0,327,3,108,0, | ||
4968 | 327,553,11,1,829, | ||
4969 | 0,330,1,-1,3, | ||
4970 | 98,0,327,3,99, | ||
4971 | 0,327,3,100,0, | ||
4972 | 327,3,101,0,554, | ||
4973 | 12,1,28425,555,5, | ||
4974 | 63,3,109,0,327, | ||
4975 | 3,110,0,327,3, | ||
4976 | 111,0,327,3,112, | ||
4977 | 0,327,3,113,0, | ||
4978 | 327,3,114,0,327, | ||
4979 | 3,115,0,327,3, | ||
4980 | 116,0,327,3,117, | ||
4981 | 0,327,3,118,0, | ||
4982 | 327,3,119,0,327, | ||
4983 | 3,120,0,327,3, | ||
4984 | 121,0,327,3,122, | ||
4985 | 0,327,3,48,0, | ||
4986 | 327,3,49,0,327, | ||
4987 | 3,50,0,327,3, | ||
4988 | 51,0,327,3,52, | ||
4989 | 0,327,3,53,0, | ||
4990 | 327,3,54,0,327, | ||
4991 | 3,55,0,327,3, | ||
4992 | 56,0,327,3,57, | ||
4993 | 0,327,3,65,0, | ||
4994 | 327,3,66,0,327, | ||
4995 | 3,67,0,327,3, | ||
4996 | 68,0,327,3,69, | ||
4997 | 0,327,3,70,0, | ||
4998 | 327,3,71,0,327, | ||
4999 | 3,72,0,327,3, | ||
5000 | 73,0,327,3,74, | ||
5001 | 0,327,3,75,0, | ||
5002 | 327,3,76,0,327, | ||
5003 | 3,77,0,327,3, | ||
5004 | 78,0,327,3,79, | ||
5005 | 0,327,3,80,0, | ||
5006 | 327,3,81,0,327, | ||
5007 | 3,82,0,327,3, | ||
5008 | 83,0,327,3,84, | ||
5009 | 0,327,3,85,0, | ||
5010 | 327,3,86,0,327, | ||
5011 | 3,87,0,327,3, | ||
5012 | 88,0,327,3,89, | ||
5013 | 0,327,3,90,0, | ||
5014 | 327,3,95,0,327, | ||
5015 | 3,97,0,327,3, | ||
5016 | 98,0,327,3,99, | ||
5017 | 0,327,3,100,0, | ||
5018 | 327,3,101,0,327, | ||
5019 | 3,102,0,556,12, | ||
5020 | 1,28473,557,5,63, | ||
5021 | 3,109,0,327,3, | ||
5022 | 110,0,327,3,111, | ||
5023 | 0,327,3,112,0, | ||
5024 | 327,3,113,0,327, | ||
5025 | 3,114,0,327,3, | ||
5026 | 115,0,327,3,116, | ||
5027 | 0,327,3,117,0, | ||
5028 | 327,3,118,0,327, | ||
5029 | 3,119,0,327,3, | ||
5030 | 120,0,327,3,121, | ||
5031 | 0,327,3,122,0, | ||
5032 | 327,3,48,0,327, | ||
5033 | 3,49,0,327,3, | ||
5034 | 50,0,327,3,51, | ||
5035 | 0,327,3,52,0, | ||
5036 | 327,3,53,0,327, | ||
5037 | 3,54,0,327,3, | ||
5038 | 55,0,327,3,56, | ||
5039 | 0,327,3,57,0, | ||
5040 | 327,3,65,0,327, | ||
5041 | 3,66,0,327,3, | ||
5042 | 67,0,327,3,68, | ||
5043 | 0,327,3,69,0, | ||
5044 | 327,3,70,0,327, | ||
5045 | 3,71,0,327,3, | ||
5046 | 72,0,327,3,73, | ||
5047 | 0,327,3,74,0, | ||
5048 | 327,3,75,0,327, | ||
5049 | 3,76,0,327,3, | ||
5050 | 77,0,327,3,78, | ||
5051 | 0,327,3,79,0, | ||
5052 | 327,3,80,0,327, | ||
5053 | 3,81,0,327,3, | ||
5054 | 82,0,327,3,83, | ||
5055 | 0,327,3,84,0, | ||
5056 | 327,3,85,0,327, | ||
5057 | 3,86,0,327,3, | ||
5058 | 87,0,327,3,88, | ||
5059 | 0,327,3,89,0, | ||
5060 | 327,3,90,0,327, | ||
5061 | 3,95,0,327,3, | ||
5062 | 97,0,558,12,1, | ||
5063 | 28516,559,5,63,3, | ||
5064 | 109,0,327,3,110, | ||
5065 | 0,327,3,111,0, | ||
5066 | 327,3,112,0,327, | ||
5067 | 3,113,0,327,3, | ||
5068 | 114,0,327,3,115, | ||
5069 | 0,327,3,116,0, | ||
5070 | 327,3,117,0,560, | ||
5071 | 12,1,28552,561,5, | ||
5072 | 63,3,109,0,327, | ||
5073 | 3,110,0,327,3, | ||
5074 | 111,0,327,3,112, | ||
5075 | 0,327,3,113,0, | ||
5076 | 327,3,114,0,327, | ||
5077 | 3,115,0,327,3, | ||
5078 | 116,0,327,3,117, | ||
5079 | 0,327,3,118,0, | ||
5080 | 327,3,119,0,327, | ||
5081 | 3,120,0,327,3, | ||
5082 | 121,0,327,3,122, | ||
5083 | 0,327,3,48,0, | ||
5084 | 327,3,49,0,327, | ||
5085 | 3,50,0,327,3, | ||
5086 | 51,0,327,3,52, | ||
5087 | 0,327,3,53,0, | ||
5088 | 327,3,54,0,327, | ||
5089 | 3,55,0,327,3, | ||
5090 | 56,0,327,3,57, | ||
5091 | 0,327,3,65,0, | ||
5092 | 327,3,66,0,327, | ||
5093 | 3,67,0,327,3, | ||
5094 | 68,0,327,3,69, | ||
5095 | 0,327,3,70,0, | ||
5096 | 327,3,71,0,327, | ||
5097 | 3,72,0,327,3, | ||
5098 | 73,0,327,3,74, | ||
5099 | 0,327,3,75,0, | ||
5100 | 327,3,76,0,327, | ||
5101 | 3,77,0,327,3, | ||
5102 | 78,0,327,3,79, | ||
5103 | 0,327,3,80,0, | ||
5104 | 327,3,81,0,327, | ||
5105 | 3,82,0,327,3, | ||
5106 | 83,0,327,3,84, | ||
5107 | 0,327,3,85,0, | ||
5108 | 327,3,86,0,327, | ||
5109 | 3,87,0,327,3, | ||
5110 | 88,0,327,3,89, | ||
5111 | 0,327,3,90,0, | ||
5112 | 327,3,95,0,327, | ||
5113 | 3,97,0,327,3, | ||
5114 | 98,0,327,3,99, | ||
5115 | 0,327,3,100,0, | ||
5116 | 327,3,101,0,327, | ||
5117 | 3,102,0,327,3, | ||
5118 | 103,0,327,3,104, | ||
5119 | 0,327,3,105,0, | ||
5120 | 327,3,106,0,327, | ||
5121 | 3,107,0,327,3, | ||
5122 | 108,0,562,12,1, | ||
5123 | 28606,563,5,63,3, | ||
5124 | 109,0,327,3,110, | ||
5125 | 0,327,3,111,0, | ||
5126 | 327,3,112,0,327, | ||
5127 | 3,113,0,327,3, | ||
5128 | 114,0,327,3,115, | ||
5129 | 0,327,3,116,0, | ||
5130 | 564,12,1,28641,565, | ||
5131 | 5,63,3,109,0, | ||
5132 | 327,3,110,0,327, | ||
5133 | 3,111,0,327,3, | ||
5134 | 112,0,327,3,113, | ||
5135 | 0,327,3,114,0, | ||
5136 | 327,3,115,0,327, | ||
5137 | 3,116,0,327,3, | ||
5138 | 117,0,327,3,118, | ||
5139 | 0,327,3,119,0, | ||
5140 | 327,3,120,0,327, | ||
5141 | 3,121,0,327,3, | ||
5142 | 122,0,327,3,48, | ||
5143 | 0,327,3,49,0, | ||
5144 | 327,3,50,0,327, | ||
5145 | 3,51,0,327,3, | ||
5146 | 52,0,327,3,53, | ||
5147 | 0,327,3,54,0, | ||
5148 | 327,3,55,0,327, | ||
5149 | 3,56,0,327,3, | ||
5150 | 57,0,327,3,65, | ||
5151 | 0,327,3,66,0, | ||
5152 | 327,3,67,0,327, | ||
5153 | 3,68,0,327,3, | ||
5154 | 69,0,327,3,70, | ||
5155 | 0,327,3,71,0, | ||
5156 | 327,3,72,0,327, | ||
5157 | 3,73,0,327,3, | ||
5158 | 74,0,327,3,75, | ||
5159 | 0,327,3,76,0, | ||
5160 | 327,3,77,0,327, | ||
5161 | 3,78,0,327,3, | ||
5162 | 79,0,327,3,80, | ||
5163 | 0,327,3,81,0, | ||
5164 | 327,3,82,0,327, | ||
5165 | 3,83,0,327,3, | ||
5166 | 84,0,327,3,85, | ||
5167 | 0,327,3,86,0, | ||
5168 | 327,3,87,0,327, | ||
5169 | 3,88,0,327,3, | ||
5170 | 89,0,327,3,90, | ||
5171 | 0,327,3,95,0, | ||
5172 | 327,3,97,0,327, | ||
5173 | 3,98,0,327,3, | ||
5174 | 99,0,327,3,100, | ||
5175 | 0,327,3,101,0, | ||
5176 | 327,3,102,0,327, | ||
5177 | 3,103,0,327,3, | ||
5178 | 104,0,327,3,105, | ||
5179 | 0,327,3,106,0, | ||
5180 | 327,3,107,0,327, | ||
5181 | 3,108,0,327,566, | ||
5182 | 11,1,245,0,567, | ||
5183 | 4,26,68,0,69, | ||
5184 | 0,70,0,65,0, | ||
5185 | 85,0,76,0,84, | ||
5186 | 0,95,0,83,0, | ||
5187 | 84,0,65,0,84, | ||
5188 | 0,69,0,1,-1, | ||
5189 | 3,117,0,327,3, | ||
5190 | 118,0,327,3,119, | ||
5191 | 0,327,3,120,0, | ||
5192 | 327,3,121,0,327, | ||
5193 | 3,122,0,327,3, | ||
5194 | 48,0,327,3,49, | ||
5195 | 0,327,3,50,0, | ||
5196 | 327,3,51,0,327, | ||
5197 | 3,52,0,327,3, | ||
5198 | 53,0,327,3,54, | ||
5199 | 0,327,3,55,0, | ||
5200 | 327,3,56,0,327, | ||
5201 | 3,57,0,327,3, | ||
5202 | 65,0,327,3,66, | ||
5203 | 0,327,3,67,0, | ||
5204 | 327,3,68,0,327, | ||
5205 | 3,69,0,327,3, | ||
5206 | 70,0,327,3,71, | ||
5207 | 0,327,3,72,0, | ||
5208 | 327,3,73,0,327, | ||
5209 | 3,74,0,327,3, | ||
5210 | 75,0,327,3,76, | ||
5211 | 0,327,3,77,0, | ||
5212 | 327,3,78,0,327, | ||
5213 | 3,79,0,327,3, | ||
5214 | 80,0,327,3,81, | ||
5215 | 0,327,3,82,0, | ||
5216 | 327,3,83,0,327, | ||
5217 | 3,84,0,327,3, | ||
5218 | 85,0,327,3,86, | ||
5219 | 0,327,3,87,0, | ||
5220 | 327,3,88,0,327, | ||
5221 | 3,89,0,327,3, | ||
5222 | 90,0,327,3,95, | ||
5223 | 0,327,3,97,0, | ||
5224 | 327,3,98,0,327, | ||
5225 | 3,99,0,327,3, | ||
5226 | 100,0,327,3,101, | ||
5227 | 0,327,3,102,0, | ||
5228 | 327,3,103,0,327, | ||
5229 | 3,104,0,327,3, | ||
5230 | 105,0,327,3,106, | ||
5231 | 0,327,3,107,0, | ||
5232 | 327,3,108,0,327, | ||
5233 | 568,11,1,829,0, | ||
5234 | 330,1,-1,569,11, | ||
5235 | 1,829,0,330,1, | ||
5236 | -1,3,118,0,327, | ||
5237 | 3,119,0,327,3, | ||
5238 | 120,0,327,3,121, | ||
5239 | 0,327,3,122,0, | ||
5240 | 327,3,48,0,327, | ||
5241 | 3,49,0,327,3, | ||
5242 | 50,0,327,3,51, | ||
5243 | 0,327,3,52,0, | ||
5244 | 327,3,53,0,327, | ||
5245 | 3,54,0,327,3, | ||
5246 | 55,0,327,3,56, | ||
5247 | 0,327,3,57,0, | ||
5248 | 327,3,65,0,327, | ||
5249 | 3,66,0,327,3, | ||
5250 | 67,0,327,3,68, | ||
5251 | 0,327,3,69,0, | ||
5252 | 327,3,70,0,327, | ||
5253 | 3,71,0,327,3, | ||
5254 | 72,0,327,3,73, | ||
5255 | 0,327,3,74,0, | ||
5256 | 327,3,75,0,327, | ||
5257 | 3,76,0,327,3, | ||
5258 | 77,0,327,3,78, | ||
5259 | 0,327,3,79,0, | ||
5260 | 327,3,80,0,327, | ||
5261 | 3,81,0,327,3, | ||
5262 | 82,0,327,3,83, | ||
5263 | 0,327,3,84,0, | ||
5264 | 327,3,85,0,327, | ||
5265 | 3,86,0,327,3, | ||
5266 | 87,0,327,3,88, | ||
5267 | 0,327,3,89,0, | ||
5268 | 327,3,90,0,327, | ||
5269 | 3,95,0,327,3, | ||
5270 | 97,0,327,3,98, | ||
5271 | 0,327,3,99,0, | ||
5272 | 327,3,100,0,327, | ||
5273 | 3,101,0,327,3, | ||
5274 | 102,0,327,3,103, | ||
5275 | 0,327,3,104,0, | ||
5276 | 327,3,105,0,327, | ||
5277 | 3,106,0,327,3, | ||
5278 | 107,0,327,3,108, | ||
5279 | 0,327,570,11,1, | ||
5280 | 829,0,330,1,-1, | ||
5281 | 3,98,0,327,3, | ||
5282 | 99,0,327,3,100, | ||
5283 | 0,327,3,101,0, | ||
5284 | 327,3,102,0,327, | ||
5285 | 3,103,0,327,3, | ||
5286 | 104,0,327,3,105, | ||
5287 | 0,327,3,106,0, | ||
5288 | 327,3,107,0,327, | ||
5289 | 3,108,0,327,571, | ||
5290 | 11,1,829,0,330, | ||
5291 | 1,-1,3,103,0, | ||
5292 | 327,3,104,0,327, | ||
5293 | 3,105,0,327,3, | ||
5294 | 106,0,327,3,107, | ||
5295 | 0,327,3,108,0, | ||
5296 | 327,572,11,1,829, | ||
5297 | 0,330,1,-1,3, | ||
5298 | 102,0,327,3,103, | ||
5299 | 0,327,3,104,0, | ||
5300 | 327,3,105,0,327, | ||
5301 | 3,106,0,327,3, | ||
5302 | 107,0,327,3,108, | ||
5303 | 0,327,573,11,1, | ||
5304 | 829,0,330,1,-1, | ||
5305 | 3,101,0,574,12, | ||
5306 | 1,29219,575,5,65, | ||
5307 | 3,109,0,576,12, | ||
5308 | 1,29247,577,5,63, | ||
5309 | 3,109,0,327,3, | ||
5310 | 110,0,327,3,111, | ||
5311 | 0,327,3,112,0, | ||
5312 | 327,3,113,0,327, | ||
5313 | 3,114,0,327,3, | ||
5314 | 115,0,327,3,116, | ||
5315 | 0,327,3,117,0, | ||
5316 | 327,3,118,0,327, | ||
5317 | 3,119,0,327,3, | ||
5318 | 120,0,327,3,121, | ||
5319 | 0,327,3,122,0, | ||
5320 | 327,3,48,0,327, | ||
5321 | 3,49,0,327,3, | ||
5322 | 50,0,327,3,51, | ||
5323 | 0,327,3,52,0, | ||
5324 | 327,3,53,0,327, | ||
5325 | 3,54,0,327,3, | ||
5326 | 55,0,327,3,56, | ||
5327 | 0,327,3,57,0, | ||
5328 | 327,3,65,0,327, | ||
5329 | 3,66,0,327,3, | ||
5330 | 67,0,327,3,68, | ||
5331 | 0,327,3,69,0, | ||
5332 | 327,3,70,0,327, | ||
5333 | 3,71,0,327,3, | ||
5334 | 72,0,327,3,73, | ||
5335 | 0,327,3,74,0, | ||
5336 | 327,3,75,0,327, | ||
5337 | 3,76,0,327,3, | ||
5338 | 77,0,327,3,78, | ||
5339 | 0,327,3,79,0, | ||
5340 | 327,3,80,0,327, | ||
5341 | 3,81,0,327,3, | ||
5342 | 82,0,327,3,83, | ||
5343 | 0,327,3,84,0, | ||
5344 | 327,3,85,0,327, | ||
5345 | 3,86,0,327,3, | ||
5346 | 87,0,327,3,88, | ||
5347 | 0,327,3,89,0, | ||
5348 | 327,3,90,0,327, | ||
5349 | 3,95,0,327,3, | ||
5350 | 97,0,578,12,1, | ||
5351 | 29290,579,5,63,3, | ||
5352 | 109,0,327,3,110, | ||
5353 | 0,327,3,111,0, | ||
5354 | 327,3,112,0,327, | ||
5355 | 3,113,0,327,3, | ||
5356 | 114,0,327,3,115, | ||
5357 | 0,327,3,116,0, | ||
5358 | 327,3,117,0,327, | ||
5359 | 3,118,0,327,3, | ||
5360 | 119,0,327,3,120, | ||
5361 | 0,327,3,121,0, | ||
5362 | 327,3,122,0,327, | ||
5363 | 3,48,0,327,3, | ||
5364 | 49,0,327,3,50, | ||
5365 | 0,327,3,51,0, | ||
5366 | 327,3,52,0,327, | ||
5367 | 3,53,0,327,3, | ||
5368 | 54,0,327,3,55, | ||
5369 | 0,327,3,56,0, | ||
5370 | 327,3,57,0,327, | ||
5371 | 3,65,0,327,3, | ||
5372 | 66,0,327,3,67, | ||
5373 | 0,327,3,68,0, | ||
5374 | 327,3,69,0,327, | ||
5375 | 3,70,0,327,3, | ||
5376 | 71,0,327,3,72, | ||
5377 | 0,327,3,73,0, | ||
5378 | 327,3,74,0,327, | ||
5379 | 3,75,0,327,3, | ||
5380 | 76,0,327,3,77, | ||
5381 | 0,327,3,78,0, | ||
5382 | 327,3,79,0,327, | ||
5383 | 3,80,0,327,3, | ||
5384 | 81,0,327,3,82, | ||
5385 | 0,327,3,83,0, | ||
5386 | 327,3,84,0,327, | ||
5387 | 3,85,0,327,3, | ||
5388 | 86,0,327,3,87, | ||
5389 | 0,327,3,88,0, | ||
5390 | 327,3,89,0,327, | ||
5391 | 3,90,0,327,3, | ||
5392 | 95,0,327,3,97, | ||
5393 | 0,327,3,98,0, | ||
5394 | 327,3,99,0,327, | ||
5395 | 3,100,0,327,3, | ||
5396 | 101,0,327,3,102, | ||
5397 | 0,327,3,103,0, | ||
5398 | 327,3,104,0,327, | ||
5399 | 3,105,0,580,12, | ||
5400 | 1,29341,581,5,63, | ||
5401 | 3,109,0,327,3, | ||
5402 | 110,0,327,3,111, | ||
5403 | 0,327,3,112,0, | ||
5404 | 327,3,113,0,327, | ||
5405 | 3,114,0,327,3, | ||
5406 | 115,0,327,3,116, | ||
5407 | 0,327,3,117,0, | ||
5408 | 327,3,118,0,327, | ||
5409 | 3,119,0,327,3, | ||
5410 | 120,0,327,3,121, | ||
5411 | 0,327,3,122,0, | ||
5412 | 327,3,48,0,327, | ||
5413 | 3,49,0,327,3, | ||
5414 | 50,0,327,3,51, | ||
5415 | 0,327,3,52,0, | ||
5416 | 327,3,53,0,327, | ||
5417 | 3,54,0,327,3, | ||
5418 | 55,0,327,3,56, | ||
5419 | 0,327,3,57,0, | ||
5420 | 327,3,65,0,327, | ||
5421 | 3,66,0,327,3, | ||
5422 | 67,0,327,3,68, | ||
5423 | 0,327,3,69,0, | ||
5424 | 327,3,70,0,327, | ||
5425 | 3,71,0,327,3, | ||
5426 | 72,0,327,3,73, | ||
5427 | 0,327,3,74,0, | ||
5428 | 327,3,75,0,327, | ||
5429 | 3,76,0,327,3, | ||
5430 | 77,0,327,3,78, | ||
5431 | 0,327,3,79,0, | ||
5432 | 327,3,80,0,327, | ||
5433 | 3,81,0,327,3, | ||
5434 | 82,0,327,3,83, | ||
5435 | 0,327,3,84,0, | ||
5436 | 327,3,85,0,327, | ||
5437 | 3,86,0,327,3, | ||
5438 | 87,0,327,3,88, | ||
5439 | 0,327,3,89,0, | ||
5440 | 327,3,90,0,327, | ||
5441 | 3,95,0,327,3, | ||
5442 | 97,0,327,3,98, | ||
5443 | 0,327,3,99,0, | ||
5444 | 327,3,100,0,327, | ||
5445 | 3,101,0,327,3, | ||
5446 | 102,0,327,3,103, | ||
5447 | 0,327,3,104,0, | ||
5448 | 327,3,105,0,327, | ||
5449 | 3,106,0,327,3, | ||
5450 | 107,0,327,3,108, | ||
5451 | 0,582,12,1,29395, | ||
5452 | 583,5,63,3,109, | ||
5453 | 0,327,3,110,0, | ||
5454 | 327,3,111,0,327, | ||
5455 | 3,112,0,327,3, | ||
5456 | 113,0,327,3,114, | ||
5457 | 0,327,3,115,0, | ||
5458 | 327,3,116,0,327, | ||
5459 | 3,117,0,327,3, | ||
5460 | 118,0,327,3,119, | ||
5461 | 0,327,3,120,0, | ||
5462 | 327,3,121,0,327, | ||
5463 | 3,122,0,327,3, | ||
5464 | 48,0,327,3,49, | ||
5465 | 0,327,3,50,0, | ||
5466 | 327,3,51,0,327, | ||
5467 | 3,52,0,327,3, | ||
5468 | 53,0,327,3,54, | ||
5469 | 0,327,3,55,0, | ||
5470 | 327,3,56,0,327, | ||
5471 | 3,57,0,327,3, | ||
5472 | 65,0,327,3,66, | ||
5473 | 0,327,3,67,0, | ||
5474 | 327,3,68,0,327, | ||
5475 | 3,69,0,327,3, | ||
5476 | 70,0,327,3,71, | ||
5477 | 0,327,3,72,0, | ||
5478 | 327,3,73,0,327, | ||
5479 | 3,74,0,327,3, | ||
5480 | 75,0,327,3,76, | ||
5481 | 0,327,3,77,0, | ||
5482 | 327,3,78,0,327, | ||
5483 | 3,79,0,327,3, | ||
5484 | 80,0,327,3,81, | ||
5485 | 0,327,3,82,0, | ||
5486 | 327,3,83,0,327, | ||
5487 | 3,84,0,327,3, | ||
5488 | 85,0,327,3,86, | ||
5489 | 0,327,3,87,0, | ||
5490 | 327,3,88,0,327, | ||
5491 | 3,89,0,327,3, | ||
5492 | 90,0,327,3,95, | ||
5493 | 0,327,3,97,0, | ||
5494 | 327,3,98,0,327, | ||
5495 | 3,99,0,327,3, | ||
5496 | 100,0,327,3,101, | ||
5497 | 0,327,3,102,0, | ||
5498 | 327,3,103,0,327, | ||
5499 | 3,104,0,327,3, | ||
5500 | 105,0,327,3,106, | ||
5501 | 0,327,3,107,0, | ||
5502 | 327,3,108,0,327, | ||
5503 | 584,11,1,475,0, | ||
5504 | 585,4,22,69,0, | ||
5505 | 77,0,65,0,73, | ||
5506 | 0,76,0,95,0, | ||
5507 | 69,0,86,0,69, | ||
5508 | 0,78,0,84,0, | ||
5509 | 1,-1,586,11,1, | ||
5510 | 829,0,330,1,-1, | ||
5511 | 3,106,0,327,3, | ||
5512 | 107,0,327,3,108, | ||
5513 | 0,327,587,11,1, | ||
5514 | 829,0,330,1,-1, | ||
5515 | 3,98,0,327,3, | ||
5516 | 99,0,327,3,100, | ||
5517 | 0,327,3,101,0, | ||
5518 | 327,3,102,0,327, | ||
5519 | 3,103,0,327,3, | ||
5520 | 104,0,327,3,105, | ||
5521 | 0,327,3,106,0, | ||
5522 | 327,3,107,0,327, | ||
5523 | 3,108,0,327,588, | ||
5524 | 11,1,829,0,330, | ||
5525 | 1,-1,3,110,0, | ||
5526 | 327,3,111,0,327, | ||
5527 | 3,112,0,327,3, | ||
5528 | 113,0,327,3,114, | ||
5529 | 0,327,3,115,0, | ||
5530 | 327,3,116,0,327, | ||
5531 | 3,117,0,327,3, | ||
5532 | 118,0,327,3,119, | ||
5533 | 0,327,3,120,0, | ||
5534 | 327,3,121,0,327, | ||
5535 | 3,122,0,327,3, | ||
5536 | 43,0,237,3,45, | ||
5537 | 0,237,3,48,0, | ||
5538 | 334,3,49,0,334, | ||
5539 | 3,50,0,334,3, | ||
5540 | 51,0,334,3,52, | ||
5541 | 0,334,3,53,0, | ||
5542 | 334,3,54,0,334, | ||
5543 | 3,55,0,334,3, | ||
5544 | 56,0,334,3,57, | ||
5545 | 0,334,3,65,0, | ||
5546 | 327,3,66,0,327, | ||
5547 | 3,67,0,327,3, | ||
5548 | 68,0,327,3,69, | ||
5549 | 0,327,3,70,0, | ||
5550 | 327,3,71,0,327, | ||
5551 | 3,72,0,327,3, | ||
5552 | 73,0,327,3,74, | ||
5553 | 0,327,3,75,0, | ||
5554 | 327,3,76,0,327, | ||
5555 | 3,77,0,327,3, | ||
5556 | 78,0,327,3,79, | ||
5557 | 0,327,3,80,0, | ||
5558 | 327,3,81,0,327, | ||
5559 | 3,82,0,327,3, | ||
5560 | 83,0,327,3,84, | ||
5561 | 0,327,3,85,0, | ||
5562 | 327,3,86,0,327, | ||
5563 | 3,87,0,327,3, | ||
5564 | 88,0,327,3,89, | ||
5565 | 0,327,3,90,0, | ||
5566 | 327,3,95,0,327, | ||
5567 | 3,97,0,327,3, | ||
5568 | 98,0,327,3,99, | ||
5569 | 0,327,3,100,0, | ||
5570 | 327,3,101,0,327, | ||
5571 | 3,102,0,327,3, | ||
5572 | 103,0,327,3,104, | ||
5573 | 0,327,3,105,0, | ||
5574 | 327,3,106,0,327, | ||
5575 | 3,107,0,327,3, | ||
5576 | 108,0,589,12,1, | ||
5577 | 29753,590,5,63,3, | ||
5578 | 109,0,327,3,110, | ||
5579 | 0,327,3,111,0, | ||
5580 | 327,3,112,0,327, | ||
5581 | 3,113,0,327,3, | ||
5582 | 114,0,327,3,115, | ||
5583 | 0,591,12,1,29787, | ||
5584 | 592,5,63,3,109, | ||
5585 | 0,327,3,110,0, | ||
5586 | 327,3,111,0,327, | ||
5587 | 3,112,0,327,3, | ||
5588 | 113,0,327,3,114, | ||
5589 | 0,327,3,115,0, | ||
5590 | 327,3,116,0,327, | ||
5591 | 3,117,0,327,3, | ||
5592 | 118,0,327,3,119, | ||
5593 | 0,327,3,120,0, | ||
5594 | 327,3,121,0,327, | ||
5595 | 3,122,0,327,3, | ||
5596 | 48,0,327,3,49, | ||
5597 | 0,327,3,50,0, | ||
5598 | 327,3,51,0,327, | ||
5599 | 3,52,0,327,3, | ||
5600 | 53,0,327,3,54, | ||
5601 | 0,327,3,55,0, | ||
5602 | 327,3,56,0,327, | ||
5603 | 3,57,0,327,3, | ||
5604 | 65,0,327,3,66, | ||
5605 | 0,327,3,67,0, | ||
5606 | 327,3,68,0,327, | ||
5607 | 3,69,0,327,3, | ||
5608 | 70,0,327,3,71, | ||
5609 | 0,327,3,72,0, | ||
5610 | 327,3,73,0,327, | ||
5611 | 3,74,0,327,3, | ||
5612 | 75,0,327,3,76, | ||
5613 | 0,327,3,77,0, | ||
5614 | 327,3,78,0,327, | ||
5615 | 3,79,0,327,3, | ||
5616 | 80,0,327,3,81, | ||
5617 | 0,327,3,82,0, | ||
5618 | 327,3,83,0,327, | ||
5619 | 3,84,0,327,3, | ||
5620 | 85,0,327,3,86, | ||
5621 | 0,327,3,87,0, | ||
5622 | 327,3,88,0,327, | ||
5623 | 3,89,0,327,3, | ||
5624 | 90,0,327,3,95, | ||
5625 | 0,327,3,97,0, | ||
5626 | 327,3,98,0,327, | ||
5627 | 3,99,0,327,3, | ||
5628 | 100,0,327,3,101, | ||
5629 | 0,593,12,1,29834, | ||
5630 | 594,5,63,3,109, | ||
5631 | 0,327,3,110,0, | ||
5632 | 327,3,111,0,327, | ||
5633 | 3,112,0,327,3, | ||
5634 | 113,0,327,3,114, | ||
5635 | 0,327,3,115,0, | ||
5636 | 327,3,116,0,327, | ||
5637 | 3,117,0,327,3, | ||
5638 | 118,0,327,3,119, | ||
5639 | 0,327,3,120,0, | ||
5640 | 327,3,121,0,327, | ||
5641 | 3,122,0,327,3, | ||
5642 | 48,0,327,3,49, | ||
5643 | 0,327,3,50,0, | ||
5644 | 327,3,51,0,327, | ||
5645 | 3,52,0,327,3, | ||
5646 | 53,0,327,3,54, | ||
5647 | 0,327,3,55,0, | ||
5648 | 327,3,56,0,327, | ||
5649 | 3,57,0,327,3, | ||
5650 | 65,0,327,3,66, | ||
5651 | 0,327,3,67,0, | ||
5652 | 327,3,68,0,327, | ||
5653 | 3,69,0,327,3, | ||
5654 | 70,0,327,3,71, | ||
5655 | 0,327,3,72,0, | ||
5656 | 327,3,73,0,327, | ||
5657 | 3,74,0,327,3, | ||
5658 | 75,0,327,3,76, | ||
5659 | 0,327,3,77,0, | ||
5660 | 327,3,78,0,327, | ||
5661 | 3,79,0,327,3, | ||
5662 | 80,0,327,3,81, | ||
5663 | 0,327,3,82,0, | ||
5664 | 327,3,83,0,327, | ||
5665 | 3,84,0,327,3, | ||
5666 | 85,0,327,3,86, | ||
5667 | 0,327,3,87,0, | ||
5668 | 327,3,88,0,327, | ||
5669 | 3,89,0,327,3, | ||
5670 | 90,0,327,3,95, | ||
5671 | 0,327,3,97,0, | ||
5672 | 327,3,98,0,327, | ||
5673 | 3,99,0,327,3, | ||
5674 | 100,0,327,3,101, | ||
5675 | 0,327,3,102,0, | ||
5676 | 327,3,103,0,327, | ||
5677 | 3,104,0,327,3, | ||
5678 | 105,0,327,3,106, | ||
5679 | 0,327,3,107,0, | ||
5680 | 327,3,108,0,327, | ||
5681 | 595,11,1,215,0, | ||
5682 | 596,4,8,69,0, | ||
5683 | 76,0,83,0,69, | ||
5684 | 0,1,-1,3,102, | ||
5685 | 0,327,3,103,0, | ||
5686 | 327,3,104,0,327, | ||
5687 | 3,105,0,327,3, | ||
5688 | 106,0,327,3,107, | ||
5689 | 0,327,3,108,0, | ||
5690 | 327,597,11,1,829, | ||
5691 | 0,330,1,-1,3, | ||
5692 | 116,0,327,3,117, | ||
5693 | 0,327,3,118,0, | ||
5694 | 327,3,119,0,327, | ||
5695 | 3,120,0,327,3, | ||
5696 | 121,0,327,3,122, | ||
5697 | 0,327,3,48,0, | ||
5698 | 327,3,49,0,327, | ||
5699 | 3,50,0,327,3, | ||
5700 | 51,0,327,3,52, | ||
5701 | 0,327,3,53,0, | ||
5702 | 327,3,54,0,327, | ||
5703 | 3,55,0,327,3, | ||
5704 | 56,0,327,3,57, | ||
5705 | 0,327,3,65,0, | ||
5706 | 327,3,66,0,327, | ||
5707 | 3,67,0,327,3, | ||
5708 | 68,0,327,3,69, | ||
5709 | 0,327,3,70,0, | ||
5710 | 327,3,71,0,327, | ||
5711 | 3,72,0,327,3, | ||
5712 | 73,0,327,3,74, | ||
5713 | 0,327,3,75,0, | ||
5714 | 327,3,76,0,327, | ||
5715 | 3,77,0,327,3, | ||
5716 | 78,0,327,3,79, | ||
5717 | 0,327,3,80,0, | ||
5718 | 327,3,81,0,327, | ||
5719 | 3,82,0,327,3, | ||
5720 | 83,0,327,3,84, | ||
5721 | 0,327,3,85,0, | ||
5722 | 327,3,86,0,327, | ||
5723 | 3,87,0,327,3, | ||
5724 | 88,0,327,3,89, | ||
5725 | 0,327,3,90,0, | ||
5726 | 327,3,95,0,327, | ||
5727 | 3,97,0,327,3, | ||
5728 | 98,0,327,3,99, | ||
5729 | 0,327,3,100,0, | ||
5730 | 327,3,101,0,327, | ||
5731 | 3,102,0,327,3, | ||
5732 | 103,0,327,3,104, | ||
5733 | 0,327,3,105,0, | ||
5734 | 327,3,106,0,327, | ||
5735 | 3,107,0,327,3, | ||
5736 | 108,0,327,598,11, | ||
5737 | 1,829,0,330,1, | ||
5738 | -1,599,11,1,829, | ||
5739 | 0,330,1,-1,3, | ||
5740 | 102,0,600,12,1, | ||
5741 | 30180,601,5,63,3, | ||
5742 | 109,0,327,3,110, | ||
5743 | 0,327,3,111,0, | ||
5744 | 602,12,1,30210,603, | ||
5745 | 5,63,3,109,0, | ||
5746 | 327,3,110,0,327, | ||
5747 | 3,111,0,327,3, | ||
5748 | 112,0,327,3,113, | ||
5749 | 0,327,3,114,0, | ||
5750 | 604,12,1,30243,605, | ||
5751 | 5,63,3,109,0, | ||
5752 | 327,3,110,0,327, | ||
5753 | 3,111,0,327,3, | ||
5754 | 112,0,327,3,113, | ||
5755 | 0,327,3,114,0, | ||
5756 | 327,3,115,0,327, | ||
5757 | 3,116,0,327,3, | ||
5758 | 117,0,327,3,118, | ||
5759 | 0,327,3,119,0, | ||
5760 | 327,3,120,0,327, | ||
5761 | 3,121,0,327,3, | ||
5762 | 122,0,327,3,48, | ||
5763 | 0,327,3,49,0, | ||
5764 | 327,3,50,0,327, | ||
5765 | 3,51,0,327,3, | ||
5766 | 52,0,327,3,53, | ||
5767 | 0,327,3,54,0, | ||
5768 | 327,3,55,0,327, | ||
5769 | 3,56,0,327,3, | ||
5770 | 57,0,327,3,65, | ||
5771 | 0,327,3,66,0, | ||
5772 | 327,3,67,0,327, | ||
5773 | 3,68,0,327,3, | ||
5774 | 69,0,327,3,70, | ||
5775 | 0,327,3,71,0, | ||
5776 | 327,3,72,0,327, | ||
5777 | 3,73,0,327,3, | ||
5778 | 74,0,327,3,75, | ||
5779 | 0,327,3,76,0, | ||
5780 | 327,3,77,0,327, | ||
5781 | 3,78,0,327,3, | ||
5782 | 79,0,327,3,80, | ||
5783 | 0,327,3,81,0, | ||
5784 | 327,3,82,0,327, | ||
5785 | 3,83,0,327,3, | ||
5786 | 84,0,327,3,85, | ||
5787 | 0,327,3,86,0, | ||
5788 | 327,3,87,0,327, | ||
5789 | 3,88,0,327,3, | ||
5790 | 89,0,327,3,90, | ||
5791 | 0,327,3,95,0, | ||
5792 | 327,3,97,0,327, | ||
5793 | 3,98,0,327,3, | ||
5794 | 99,0,327,3,100, | ||
5795 | 0,327,3,101,0, | ||
5796 | 327,3,102,0,327, | ||
5797 | 3,103,0,327,3, | ||
5798 | 104,0,327,3,105, | ||
5799 | 0,327,3,106,0, | ||
5800 | 327,3,107,0,327, | ||
5801 | 3,108,0,327,606, | ||
5802 | 11,1,238,0,607, | ||
5803 | 4,6,70,0,79, | ||
5804 | 0,82,0,1,-1, | ||
5805 | 3,115,0,327,3, | ||
5806 | 116,0,327,3,117, | ||
5807 | 0,327,3,118,0, | ||
5808 | 327,3,119,0,327, | ||
5809 | 3,120,0,327,3, | ||
5810 | 121,0,327,3,122, | ||
5811 | 0,327,3,48,0, | ||
5812 | 327,3,49,0,327, | ||
5813 | 3,50,0,327,3, | ||
5814 | 51,0,327,3,52, | ||
5815 | 0,327,3,53,0, | ||
5816 | 327,3,54,0,327, | ||
5817 | 3,55,0,327,3, | ||
5818 | 56,0,327,3,57, | ||
5819 | 0,327,3,65,0, | ||
5820 | 327,3,66,0,327, | ||
5821 | 3,67,0,327,3, | ||
5822 | 68,0,327,3,69, | ||
5823 | 0,327,3,70,0, | ||
5824 | 327,3,71,0,327, | ||
5825 | 3,72,0,327,3, | ||
5826 | 73,0,327,3,74, | ||
5827 | 0,327,3,75,0, | ||
5828 | 327,3,76,0,327, | ||
5829 | 3,77,0,327,3, | ||
5830 | 78,0,327,3,79, | ||
5831 | 0,327,3,80,0, | ||
5832 | 327,3,81,0,327, | ||
5833 | 3,82,0,327,3, | ||
5834 | 83,0,327,3,84, | ||
5835 | 0,327,3,85,0, | ||
5836 | 327,3,86,0,327, | ||
5837 | 3,87,0,327,3, | ||
5838 | 88,0,327,3,89, | ||
5839 | 0,327,3,90,0, | ||
5840 | 327,3,95,0,327, | ||
5841 | 3,97,0,327,3, | ||
5842 | 98,0,327,3,99, | ||
5843 | 0,327,3,100,0, | ||
5844 | 327,3,101,0,327, | ||
5845 | 3,102,0,327,3, | ||
5846 | 103,0,327,3,104, | ||
5847 | 0,327,3,105,0, | ||
5848 | 327,3,106,0,327, | ||
5849 | 3,107,0,327,3, | ||
5850 | 108,0,327,608,11, | ||
5851 | 1,829,0,330,1, | ||
5852 | -1,3,112,0,327, | ||
5853 | 3,113,0,327,3, | ||
5854 | 114,0,327,3,115, | ||
5855 | 0,327,3,116,0, | ||
5856 | 327,3,117,0,327, | ||
5857 | 3,118,0,327,3, | ||
5858 | 119,0,327,3,120, | ||
5859 | 0,327,3,121,0, | ||
5860 | 327,3,122,0,327, | ||
5861 | 3,48,0,327,3, | ||
5862 | 49,0,327,3,50, | ||
5863 | 0,327,3,51,0, | ||
5864 | 327,3,52,0,327, | ||
5865 | 3,53,0,327,3, | ||
5866 | 54,0,327,3,55, | ||
5867 | 0,327,3,56,0, | ||
5868 | 327,3,57,0,327, | ||
5869 | 3,65,0,327,3, | ||
5870 | 66,0,327,3,67, | ||
5871 | 0,327,3,68,0, | ||
5872 | 327,3,69,0,327, | ||
5873 | 3,70,0,327,3, | ||
5874 | 71,0,327,3,72, | ||
5875 | 0,327,3,73,0, | ||
5876 | 327,3,74,0,327, | ||
5877 | 3,75,0,327,3, | ||
5878 | 76,0,327,3,77, | ||
5879 | 0,327,3,78,0, | ||
5880 | 327,3,79,0,327, | ||
5881 | 3,80,0,327,3, | ||
5882 | 81,0,327,3,82, | ||
5883 | 0,327,3,83,0, | ||
5884 | 327,3,84,0,327, | ||
5885 | 3,85,0,327,3, | ||
5886 | 86,0,327,3,87, | ||
5887 | 0,327,3,88,0, | ||
5888 | 327,3,89,0,327, | ||
5889 | 3,90,0,327,3, | ||
5890 | 95,0,327,3,97, | ||
5891 | 0,327,3,98,0, | ||
5892 | 327,3,99,0,327, | ||
5893 | 3,100,0,327,3, | ||
5894 | 101,0,327,3,102, | ||
5895 | 0,327,3,103,0, | ||
5896 | 327,3,104,0,327, | ||
5897 | 3,105,0,327,3, | ||
5898 | 106,0,327,3,107, | ||
5899 | 0,327,3,108,0, | ||
5900 | 609,12,1,30474,610, | ||
5901 | 5,63,3,109,0, | ||
5902 | 327,3,110,0,327, | ||
5903 | 3,111,0,611,12, | ||
5904 | 1,30504,612,5,63, | ||
5905 | 3,109,0,327,3, | ||
5906 | 110,0,327,3,111, | ||
5907 | 0,327,3,112,0, | ||
5908 | 327,3,113,0,327, | ||
5909 | 3,114,0,327,3, | ||
5910 | 115,0,327,3,116, | ||
5911 | 0,327,3,117,0, | ||
5912 | 327,3,118,0,327, | ||
5913 | 3,119,0,327,3, | ||
5914 | 120,0,327,3,121, | ||
5915 | 0,327,3,122,0, | ||
5916 | 327,3,48,0,327, | ||
5917 | 3,49,0,327,3, | ||
5918 | 50,0,327,3,51, | ||
5919 | 0,327,3,52,0, | ||
5920 | 327,3,53,0,327, | ||
5921 | 3,54,0,327,3, | ||
5922 | 55,0,327,3,56, | ||
5923 | 0,327,3,57,0, | ||
5924 | 327,3,65,0,327, | ||
5925 | 3,66,0,327,3, | ||
5926 | 67,0,327,3,68, | ||
5927 | 0,327,3,69,0, | ||
5928 | 327,3,70,0,327, | ||
5929 | 3,71,0,327,3, | ||
5930 | 72,0,327,3,73, | ||
5931 | 0,327,3,74,0, | ||
5932 | 327,3,75,0,327, | ||
5933 | 3,76,0,327,3, | ||
5934 | 77,0,327,3,78, | ||
5935 | 0,327,3,79,0, | ||
5936 | 327,3,80,0,327, | ||
5937 | 3,81,0,327,3, | ||
5938 | 82,0,327,3,83, | ||
5939 | 0,327,3,84,0, | ||
5940 | 327,3,85,0,327, | ||
5941 | 3,86,0,327,3, | ||
5942 | 87,0,327,3,88, | ||
5943 | 0,327,3,89,0, | ||
5944 | 327,3,90,0,327, | ||
5945 | 3,95,0,327,3, | ||
5946 | 97,0,613,12,1, | ||
5947 | 30547,614,5,63,3, | ||
5948 | 109,0,327,3,110, | ||
5949 | 0,327,3,111,0, | ||
5950 | 327,3,112,0,327, | ||
5951 | 3,113,0,327,3, | ||
5952 | 114,0,327,3,115, | ||
5953 | 0,327,3,116,0, | ||
5954 | 615,12,1,30582,616, | ||
5955 | 5,63,3,109,0, | ||
5956 | 327,3,110,0,327, | ||
5957 | 3,111,0,327,3, | ||
5958 | 112,0,327,3,113, | ||
5959 | 0,327,3,114,0, | ||
5960 | 327,3,115,0,327, | ||
5961 | 3,116,0,327,3, | ||
5962 | 117,0,327,3,118, | ||
5963 | 0,327,3,119,0, | ||
5964 | 327,3,120,0,327, | ||
5965 | 3,121,0,327,3, | ||
5966 | 122,0,327,3,48, | ||
5967 | 0,327,3,49,0, | ||
5968 | 327,3,50,0,327, | ||
5969 | 3,51,0,327,3, | ||
5970 | 52,0,327,3,53, | ||
5971 | 0,327,3,54,0, | ||
5972 | 327,3,55,0,327, | ||
5973 | 3,56,0,327,3, | ||
5974 | 57,0,327,3,65, | ||
5975 | 0,327,3,66,0, | ||
5976 | 327,3,67,0,327, | ||
5977 | 3,68,0,327,3, | ||
5978 | 69,0,327,3,70, | ||
5979 | 0,327,3,71,0, | ||
5980 | 327,3,72,0,327, | ||
5981 | 3,73,0,327,3, | ||
5982 | 74,0,327,3,75, | ||
5983 | 0,327,3,76,0, | ||
5984 | 327,3,77,0,327, | ||
5985 | 3,78,0,327,3, | ||
5986 | 79,0,327,3,80, | ||
5987 | 0,327,3,81,0, | ||
5988 | 327,3,82,0,327, | ||
5989 | 3,83,0,327,3, | ||
5990 | 84,0,327,3,85, | ||
5991 | 0,327,3,86,0, | ||
5992 | 327,3,87,0,327, | ||
5993 | 3,88,0,327,3, | ||
5994 | 89,0,327,3,90, | ||
5995 | 0,327,3,95,0, | ||
5996 | 327,3,97,0,327, | ||
5997 | 3,98,0,327,3, | ||
5998 | 99,0,327,3,100, | ||
5999 | 0,327,3,101,0, | ||
6000 | 327,3,102,0,327, | ||
6001 | 3,103,0,327,3, | ||
6002 | 104,0,327,3,105, | ||
6003 | 0,327,3,106,0, | ||
6004 | 327,3,107,0,327, | ||
6005 | 3,108,0,327,617, | ||
6006 | 11,1,294,0,618, | ||
6007 | 4,20,70,0,76, | ||
6008 | 0,79,0,65,0, | ||
6009 | 84,0,95,0,84, | ||
6010 | 0,89,0,80,0, | ||
6011 | 69,0,1,-1,3, | ||
6012 | 117,0,327,3,118, | ||
6013 | 0,327,3,119,0, | ||
6014 | 327,3,120,0,327, | ||
6015 | 3,121,0,327,3, | ||
6016 | 122,0,327,3,48, | ||
6017 | 0,327,3,49,0, | ||
6018 | 327,3,50,0,327, | ||
6019 | 3,51,0,327,3, | ||
6020 | 52,0,327,3,53, | ||
6021 | 0,327,3,54,0, | ||
6022 | 327,3,55,0,327, | ||
6023 | 3,56,0,327,3, | ||
6024 | 57,0,327,3,65, | ||
6025 | 0,327,3,66,0, | ||
6026 | 327,3,67,0,327, | ||
6027 | 3,68,0,327,3, | ||
6028 | 69,0,327,3,70, | ||
6029 | 0,327,3,71,0, | ||
6030 | 327,3,72,0,327, | ||
6031 | 3,73,0,327,3, | ||
6032 | 74,0,327,3,75, | ||
6033 | 0,327,3,76,0, | ||
6034 | 327,3,77,0,327, | ||
6035 | 3,78,0,327,3, | ||
6036 | 79,0,327,3,80, | ||
6037 | 0,327,3,81,0, | ||
6038 | 327,3,82,0,327, | ||
6039 | 3,83,0,327,3, | ||
6040 | 84,0,327,3,85, | ||
6041 | 0,327,3,86,0, | ||
6042 | 327,3,87,0,327, | ||
6043 | 3,88,0,327,3, | ||
6044 | 89,0,327,3,90, | ||
6045 | 0,327,3,95,0, | ||
6046 | 327,3,97,0,327, | ||
6047 | 3,98,0,327,3, | ||
6048 | 99,0,327,3,100, | ||
6049 | 0,327,3,101,0, | ||
6050 | 327,3,102,0,327, | ||
6051 | 3,103,0,327,3, | ||
6052 | 104,0,327,3,105, | ||
6053 | 0,327,3,106,0, | ||
6054 | 327,3,107,0,327, | ||
6055 | 3,108,0,327,619, | ||
6056 | 11,1,829,0,330, | ||
6057 | 1,-1,3,98,0, | ||
6058 | 327,3,99,0,327, | ||
6059 | 3,100,0,327,3, | ||
6060 | 101,0,327,3,102, | ||
6061 | 0,327,3,103,0, | ||
6062 | 327,3,104,0,327, | ||
6063 | 3,105,0,327,3, | ||
6064 | 106,0,327,3,107, | ||
6065 | 0,327,3,108,0, | ||
6066 | 327,620,11,1,829, | ||
6067 | 0,330,1,-1,3, | ||
6068 | 112,0,327,3,113, | ||
6069 | 0,327,3,114,0, | ||
6070 | 327,3,115,0,327, | ||
6071 | 3,116,0,327,3, | ||
6072 | 117,0,327,3,118, | ||
6073 | 0,327,3,119,0, | ||
6074 | 327,3,120,0,327, | ||
6075 | 3,121,0,327,3, | ||
6076 | 122,0,327,3,48, | ||
6077 | 0,327,3,49,0, | ||
6078 | 327,3,50,0,327, | ||
6079 | 3,51,0,327,3, | ||
6080 | 52,0,327,3,53, | ||
6081 | 0,327,3,54,0, | ||
6082 | 327,3,55,0,327, | ||
6083 | 3,56,0,327,3, | ||
6084 | 57,0,327,3,65, | ||
6085 | 0,327,3,66,0, | ||
6086 | 327,3,67,0,327, | ||
6087 | 3,68,0,327,3, | ||
6088 | 69,0,327,3,70, | ||
6089 | 0,327,3,71,0, | ||
6090 | 327,3,72,0,327, | ||
6091 | 3,73,0,327,3, | ||
6092 | 74,0,327,3,75, | ||
6093 | 0,327,3,76,0, | ||
6094 | 327,3,77,0,327, | ||
6095 | 3,78,0,327,3, | ||
6096 | 79,0,327,3,80, | ||
6097 | 0,327,3,81,0, | ||
6098 | 327,3,82,0,327, | ||
6099 | 3,83,0,327,3, | ||
6100 | 84,0,327,3,85, | ||
6101 | 0,327,3,86,0, | ||
6102 | 327,3,87,0,327, | ||
6103 | 3,88,0,327,3, | ||
6104 | 89,0,327,3,90, | ||
6105 | 0,327,3,95,0, | ||
6106 | 327,3,97,0,327, | ||
6107 | 3,98,0,327,3, | ||
6108 | 99,0,327,3,100, | ||
6109 | 0,327,3,101,0, | ||
6110 | 327,3,102,0,327, | ||
6111 | 3,103,0,327,3, | ||
6112 | 104,0,327,3,105, | ||
6113 | 0,327,3,106,0, | ||
6114 | 327,3,107,0,327, | ||
6115 | 3,108,0,327,621, | ||
6116 | 11,1,829,0,330, | ||
6117 | 1,-1,622,11,1, | ||
6118 | 829,0,330,1,-1, | ||
6119 | 3,103,0,325,3, | ||
6120 | 104,0,623,12,1, | ||
6121 | 31022,624,5,63,3, | ||
6122 | 109,0,327,3,110, | ||
6123 | 0,327,3,111,0, | ||
6124 | 327,3,112,0,327, | ||
6125 | 3,113,0,327,3, | ||
6126 | 114,0,327,3,115, | ||
6127 | 0,327,3,116,0, | ||
6128 | 625,12,1,31057,626, | ||
6129 | 5,63,3,109,0, | ||
6130 | 327,3,110,0,327, | ||
6131 | 3,111,0,327,3, | ||
6132 | 112,0,327,3,113, | ||
6133 | 0,327,3,114,0, | ||
6134 | 327,3,115,0,327, | ||
6135 | 3,116,0,627,12, | ||
6136 | 1,31092,628,5,63, | ||
6137 | 3,109,0,327,3, | ||
6138 | 110,0,327,3,111, | ||
6139 | 0,327,3,112,0, | ||
6140 | 629,12,1,31123,630, | ||
6141 | 5,63,3,109,0, | ||
6142 | 327,3,110,0,327, | ||
6143 | 3,111,0,327,3, | ||
6144 | 112,0,327,3,113, | ||
6145 | 0,327,3,114,0, | ||
6146 | 327,3,115,0,327, | ||
6147 | 3,116,0,327,3, | ||
6148 | 117,0,327,3,118, | ||
6149 | 0,327,3,119,0, | ||
6150 | 327,3,120,0,327, | ||
6151 | 3,121,0,327,3, | ||
6152 | 122,0,327,3,48, | ||
6153 | 0,327,3,49,0, | ||
6154 | 327,3,50,0,327, | ||
6155 | 3,51,0,327,3, | ||
6156 | 52,0,327,3,53, | ||
6157 | 0,327,3,54,0, | ||
6158 | 327,3,55,0,327, | ||
6159 | 3,56,0,327,3, | ||
6160 | 57,0,327,3,65, | ||
6161 | 0,327,3,66,0, | ||
6162 | 327,3,67,0,327, | ||
6163 | 3,68,0,327,3, | ||
6164 | 69,0,327,3,70, | ||
6165 | 0,327,3,71,0, | ||
6166 | 327,3,72,0,327, | ||
6167 | 3,73,0,327,3, | ||
6168 | 74,0,327,3,75, | ||
6169 | 0,327,3,76,0, | ||
6170 | 327,3,77,0,327, | ||
6171 | 3,78,0,327,3, | ||
6172 | 79,0,327,3,80, | ||
6173 | 0,327,3,81,0, | ||
6174 | 327,3,82,0,327, | ||
6175 | 3,83,0,327,3, | ||
6176 | 84,0,327,3,85, | ||
6177 | 0,327,3,86,0, | ||
6178 | 327,3,87,0,327, | ||
6179 | 3,88,0,327,3, | ||
6180 | 89,0,327,3,90, | ||
6181 | 0,327,3,95,0, | ||
6182 | 631,12,1,31209,632, | ||
6183 | 5,63,3,109,0, | ||
6184 | 327,3,110,0,327, | ||
6185 | 3,111,0,327,3, | ||
6186 | 112,0,327,3,113, | ||
6187 | 0,327,3,114,0, | ||
6188 | 633,12,1,31242,634, | ||
6189 | 5,63,3,109,0, | ||
6190 | 327,3,110,0,327, | ||
6191 | 3,111,0,327,3, | ||
6192 | 112,0,327,3,113, | ||
6193 | 0,327,3,114,0, | ||
6194 | 327,3,115,0,327, | ||
6195 | 3,116,0,327,3, | ||
6196 | 117,0,327,3,118, | ||
6197 | 0,327,3,119,0, | ||
6198 | 327,3,120,0,327, | ||
6199 | 3,121,0,327,3, | ||
6200 | 122,0,327,3,48, | ||
6201 | 0,327,3,49,0, | ||
6202 | 327,3,50,0,327, | ||
6203 | 3,51,0,327,3, | ||
6204 | 52,0,327,3,53, | ||
6205 | 0,327,3,54,0, | ||
6206 | 327,3,55,0,327, | ||
6207 | 3,56,0,327,3, | ||
6208 | 57,0,327,3,65, | ||
6209 | 0,327,3,66,0, | ||
6210 | 327,3,67,0,327, | ||
6211 | 3,68,0,327,3, | ||
6212 | 69,0,327,3,70, | ||
6213 | 0,327,3,71,0, | ||
6214 | 327,3,72,0,327, | ||
6215 | 3,73,0,327,3, | ||
6216 | 74,0,327,3,75, | ||
6217 | 0,327,3,76,0, | ||
6218 | 327,3,77,0,327, | ||
6219 | 3,78,0,327,3, | ||
6220 | 79,0,327,3,80, | ||
6221 | 0,327,3,81,0, | ||
6222 | 327,3,82,0,327, | ||
6223 | 3,83,0,327,3, | ||
6224 | 84,0,327,3,85, | ||
6225 | 0,327,3,86,0, | ||
6226 | 327,3,87,0,327, | ||
6227 | 3,88,0,327,3, | ||
6228 | 89,0,327,3,90, | ||
6229 | 0,327,3,95,0, | ||
6230 | 327,3,97,0,327, | ||
6231 | 3,98,0,327,3, | ||
6232 | 99,0,327,3,100, | ||
6233 | 0,327,3,101,0, | ||
6234 | 635,12,1,31289,636, | ||
6235 | 5,63,3,109,0, | ||
6236 | 327,3,110,0,327, | ||
6237 | 3,111,0,327,3, | ||
6238 | 112,0,327,3,113, | ||
6239 | 0,327,3,114,0, | ||
6240 | 327,3,115,0,637, | ||
6241 | 12,1,31323,638,5, | ||
6242 | 63,3,109,0,327, | ||
6243 | 3,110,0,327,3, | ||
6244 | 111,0,327,3,112, | ||
6245 | 0,639,12,1,31354, | ||
6246 | 640,5,63,3,109, | ||
6247 | 0,327,3,110,0, | ||
6248 | 327,3,111,0,641, | ||
6249 | 12,1,31384,642,5, | ||
6250 | 63,3,109,0,327, | ||
6251 | 3,110,0,643,12, | ||
6252 | 1,31413,644,5,63, | ||
6253 | 3,109,0,327,3, | ||
6254 | 110,0,327,3,111, | ||
6255 | 0,327,3,112,0, | ||
6256 | 327,3,113,0,327, | ||
6257 | 3,114,0,327,3, | ||
6258 | 115,0,645,12,1, | ||
6259 | 31447,646,5,63,3, | ||
6260 | 109,0,327,3,110, | ||
6261 | 0,327,3,111,0, | ||
6262 | 327,3,112,0,327, | ||
6263 | 3,113,0,327,3, | ||
6264 | 114,0,327,3,115, | ||
6265 | 0,327,3,116,0, | ||
6266 | 327,3,117,0,327, | ||
6267 | 3,118,0,327,3, | ||
6268 | 119,0,327,3,120, | ||
6269 | 0,327,3,121,0, | ||
6270 | 327,3,122,0,327, | ||
6271 | 3,48,0,327,3, | ||
6272 | 49,0,327,3,50, | ||
6273 | 0,327,3,51,0, | ||
6274 | 327,3,52,0,327, | ||
6275 | 3,53,0,327,3, | ||
6276 | 54,0,327,3,55, | ||
6277 | 0,327,3,56,0, | ||
6278 | 327,3,57,0,327, | ||
6279 | 3,65,0,327,3, | ||
6280 | 66,0,327,3,67, | ||
6281 | 0,327,3,68,0, | ||
6282 | 327,3,69,0,327, | ||
6283 | 3,70,0,327,3, | ||
6284 | 71,0,327,3,72, | ||
6285 | 0,327,3,73,0, | ||
6286 | 327,3,74,0,327, | ||
6287 | 3,75,0,327,3, | ||
6288 | 76,0,327,3,77, | ||
6289 | 0,327,3,78,0, | ||
6290 | 327,3,79,0,327, | ||
6291 | 3,80,0,327,3, | ||
6292 | 81,0,327,3,82, | ||
6293 | 0,327,3,83,0, | ||
6294 | 327,3,84,0,327, | ||
6295 | 3,85,0,327,3, | ||
6296 | 86,0,327,3,87, | ||
6297 | 0,327,3,88,0, | ||
6298 | 327,3,89,0,327, | ||
6299 | 3,90,0,327,3, | ||
6300 | 95,0,327,3,97, | ||
6301 | 0,327,3,98,0, | ||
6302 | 327,3,99,0,327, | ||
6303 | 3,100,0,327,3, | ||
6304 | 101,0,647,12,1, | ||
6305 | 31494,648,5,63,3, | ||
6306 | 109,0,327,3,110, | ||
6307 | 0,327,3,111,0, | ||
6308 | 327,3,112,0,327, | ||
6309 | 3,113,0,327,3, | ||
6310 | 114,0,327,3,115, | ||
6311 | 0,327,3,116,0, | ||
6312 | 327,3,117,0,327, | ||
6313 | 3,118,0,327,3, | ||
6314 | 119,0,327,3,120, | ||
6315 | 0,327,3,121,0, | ||
6316 | 327,3,122,0,327, | ||
6317 | 3,48,0,327,3, | ||
6318 | 49,0,327,3,50, | ||
6319 | 0,327,3,51,0, | ||
6320 | 327,3,52,0,327, | ||
6321 | 3,53,0,327,3, | ||
6322 | 54,0,327,3,55, | ||
6323 | 0,327,3,56,0, | ||
6324 | 327,3,57,0,327, | ||
6325 | 3,65,0,327,3, | ||
6326 | 66,0,327,3,67, | ||
6327 | 0,327,3,68,0, | ||
6328 | 327,3,69,0,327, | ||
6329 | 3,70,0,327,3, | ||
6330 | 71,0,327,3,72, | ||
6331 | 0,327,3,73,0, | ||
6332 | 327,3,74,0,327, | ||
6333 | 3,75,0,327,3, | ||
6334 | 76,0,327,3,77, | ||
6335 | 0,327,3,78,0, | ||
6336 | 327,3,79,0,327, | ||
6337 | 3,80,0,327,3, | ||
6338 | 81,0,327,3,82, | ||
6339 | 0,327,3,83,0, | ||
6340 | 327,3,84,0,327, | ||
6341 | 3,85,0,327,3, | ||
6342 | 86,0,327,3,87, | ||
6343 | 0,327,3,88,0, | ||
6344 | 327,3,89,0,327, | ||
6345 | 3,90,0,327,3, | ||
6346 | 95,0,327,3,97, | ||
6347 | 0,327,3,98,0, | ||
6348 | 327,3,99,0,327, | ||
6349 | 3,100,0,327,3, | ||
6350 | 101,0,327,3,102, | ||
6351 | 0,327,3,103,0, | ||
6352 | 327,3,104,0,327, | ||
6353 | 3,105,0,327,3, | ||
6354 | 106,0,327,3,107, | ||
6355 | 0,327,3,108,0, | ||
6356 | 327,649,11,1,484, | ||
6357 | 0,650,4,38,72, | ||
6358 | 0,84,0,84,0, | ||
6359 | 80,0,95,0,82, | ||
6360 | 0,69,0,83,0, | ||
6361 | 80,0,79,0,78, | ||
6362 | 0,83,0,69,0, | ||
6363 | 95,0,69,0,86, | ||
6364 | 0,69,0,78,0, | ||
6365 | 84,0,1,-1,3, | ||
6366 | 102,0,327,3,103, | ||
6367 | 0,327,3,104,0, | ||
6368 | 327,3,105,0,327, | ||
6369 | 3,106,0,327,3, | ||
6370 | 107,0,327,3,108, | ||
6371 | 0,327,651,11,1, | ||
6372 | 829,0,330,1,-1, | ||
6373 | 3,116,0,327,3, | ||
6374 | 117,0,327,3,118, | ||
6375 | 0,327,3,119,0, | ||
6376 | 327,3,120,0,327, | ||
6377 | 3,121,0,327,3, | ||
6378 | 122,0,327,3,48, | ||
6379 | 0,327,3,49,0, | ||
6380 | 327,3,50,0,327, | ||
6381 | 3,51,0,327,3, | ||
6382 | 52,0,327,3,53, | ||
6383 | 0,327,3,54,0, | ||
6384 | 327,3,55,0,327, | ||
6385 | 3,56,0,327,3, | ||
6386 | 57,0,327,3,65, | ||
6387 | 0,327,3,66,0, | ||
6388 | 327,3,67,0,327, | ||
6389 | 3,68,0,327,3, | ||
6390 | 69,0,327,3,70, | ||
6391 | 0,327,3,71,0, | ||
6392 | 327,3,72,0,327, | ||
6393 | 3,73,0,327,3, | ||
6394 | 74,0,327,3,75, | ||
6395 | 0,327,3,76,0, | ||
6396 | 327,3,77,0,327, | ||
6397 | 3,78,0,327,3, | ||
6398 | 79,0,327,3,80, | ||
6399 | 0,327,3,81,0, | ||
6400 | 327,3,82,0,327, | ||
6401 | 3,83,0,327,3, | ||
6402 | 84,0,327,3,85, | ||
6403 | 0,327,3,86,0, | ||
6404 | 327,3,87,0,327, | ||
6405 | 3,88,0,327,3, | ||
6406 | 89,0,327,3,90, | ||
6407 | 0,327,3,95,0, | ||
6408 | 327,3,97,0,327, | ||
6409 | 3,98,0,327,3, | ||
6410 | 99,0,327,3,100, | ||
6411 | 0,327,3,101,0, | ||
6412 | 327,3,102,0,327, | ||
6413 | 3,103,0,327,3, | ||
6414 | 104,0,327,3,105, | ||
6415 | 0,327,3,106,0, | ||
6416 | 327,3,107,0,327, | ||
6417 | 3,108,0,327,652, | ||
6418 | 11,1,829,0,330, | ||
6419 | 1,-1,3,111,0, | ||
6420 | 327,3,112,0,327, | ||
6421 | 3,113,0,327,3, | ||
6422 | 114,0,327,3,115, | ||
6423 | 0,327,3,116,0, | ||
6424 | 327,3,117,0,327, | ||
6425 | 3,118,0,327,3, | ||
6426 | 119,0,327,3,120, | ||
6427 | 0,327,3,121,0, | ||
6428 | 327,3,122,0,327, | ||
6429 | 3,48,0,327,3, | ||
6430 | 49,0,327,3,50, | ||
6431 | 0,327,3,51,0, | ||
6432 | 327,3,52,0,327, | ||
6433 | 3,53,0,327,3, | ||
6434 | 54,0,327,3,55, | ||
6435 | 0,327,3,56,0, | ||
6436 | 327,3,57,0,327, | ||
6437 | 3,65,0,327,3, | ||
6438 | 66,0,327,3,67, | ||
6439 | 0,327,3,68,0, | ||
6440 | 327,3,69,0,327, | ||
6441 | 3,70,0,327,3, | ||
6442 | 71,0,327,3,72, | ||
6443 | 0,327,3,73,0, | ||
6444 | 327,3,74,0,327, | ||
6445 | 3,75,0,327,3, | ||
6446 | 76,0,327,3,77, | ||
6447 | 0,327,3,78,0, | ||
6448 | 327,3,79,0,327, | ||
6449 | 3,80,0,327,3, | ||
6450 | 81,0,327,3,82, | ||
6451 | 0,327,3,83,0, | ||
6452 | 327,3,84,0,327, | ||
6453 | 3,85,0,327,3, | ||
6454 | 86,0,327,3,87, | ||
6455 | 0,327,3,88,0, | ||
6456 | 327,3,89,0,327, | ||
6457 | 3,90,0,327,3, | ||
6458 | 95,0,327,3,97, | ||
6459 | 0,327,3,98,0, | ||
6460 | 327,3,99,0,327, | ||
6461 | 3,100,0,327,3, | ||
6462 | 101,0,327,3,102, | ||
6463 | 0,327,3,103,0, | ||
6464 | 327,3,104,0,327, | ||
6465 | 3,105,0,327,3, | ||
6466 | 106,0,327,3,107, | ||
6467 | 0,327,3,108,0, | ||
6468 | 327,653,11,1,829, | ||
6469 | 0,330,1,-1,3, | ||
6470 | 112,0,327,3,113, | ||
6471 | 0,327,3,114,0, | ||
6472 | 327,3,115,0,327, | ||
6473 | 3,116,0,327,3, | ||
6474 | 117,0,327,3,118, | ||
6475 | 0,327,3,119,0, | ||
6476 | 327,3,120,0,327, | ||
6477 | 3,121,0,327,3, | ||
6478 | 122,0,327,3,48, | ||
6479 | 0,327,3,49,0, | ||
6480 | 327,3,50,0,327, | ||
6481 | 3,51,0,327,3, | ||
6482 | 52,0,327,3,53, | ||
6483 | 0,327,3,54,0, | ||
6484 | 327,3,55,0,327, | ||
6485 | 3,56,0,327,3, | ||
6486 | 57,0,327,3,65, | ||
6487 | 0,327,3,66,0, | ||
6488 | 327,3,67,0,327, | ||
6489 | 3,68,0,327,3, | ||
6490 | 69,0,327,3,70, | ||
6491 | 0,327,3,71,0, | ||
6492 | 327,3,72,0,327, | ||
6493 | 3,73,0,327,3, | ||
6494 | 74,0,327,3,75, | ||
6495 | 0,327,3,76,0, | ||
6496 | 327,3,77,0,327, | ||
6497 | 3,78,0,327,3, | ||
6498 | 79,0,327,3,80, | ||
6499 | 0,327,3,81,0, | ||
6500 | 327,3,82,0,327, | ||
6501 | 3,83,0,327,3, | ||
6502 | 84,0,327,3,85, | ||
6503 | 0,327,3,86,0, | ||
6504 | 327,3,87,0,327, | ||
6505 | 3,88,0,327,3, | ||
6506 | 89,0,327,3,90, | ||
6507 | 0,327,3,95,0, | ||
6508 | 327,3,97,0,327, | ||
6509 | 3,98,0,327,3, | ||
6510 | 99,0,327,3,100, | ||
6511 | 0,327,3,101,0, | ||
6512 | 327,3,102,0,327, | ||
6513 | 3,103,0,327,3, | ||
6514 | 104,0,327,3,105, | ||
6515 | 0,327,3,106,0, | ||
6516 | 327,3,107,0,327, | ||
6517 | 3,108,0,327,654, | ||
6518 | 11,1,829,0,330, | ||
6519 | 1,-1,3,113,0, | ||
6520 | 327,3,114,0,327, | ||
6521 | 3,115,0,327,3, | ||
6522 | 116,0,327,3,117, | ||
6523 | 0,327,3,118,0, | ||
6524 | 327,3,119,0,327, | ||
6525 | 3,120,0,327,3, | ||
6526 | 121,0,327,3,122, | ||
6527 | 0,327,3,48,0, | ||
6528 | 327,3,49,0,327, | ||
6529 | 3,50,0,327,3, | ||
6530 | 51,0,327,3,52, | ||
6531 | 0,327,3,53,0, | ||
6532 | 327,3,54,0,327, | ||
6533 | 3,55,0,327,3, | ||
6534 | 56,0,327,3,57, | ||
6535 | 0,327,3,65,0, | ||
6536 | 327,3,66,0,327, | ||
6537 | 3,67,0,327,3, | ||
6538 | 68,0,327,3,69, | ||
6539 | 0,327,3,70,0, | ||
6540 | 327,3,71,0,327, | ||
6541 | 3,72,0,327,3, | ||
6542 | 73,0,327,3,74, | ||
6543 | 0,327,3,75,0, | ||
6544 | 327,3,76,0,327, | ||
6545 | 3,77,0,327,3, | ||
6546 | 78,0,327,3,79, | ||
6547 | 0,327,3,80,0, | ||
6548 | 327,3,81,0,327, | ||
6549 | 3,82,0,327,3, | ||
6550 | 83,0,327,3,84, | ||
6551 | 0,327,3,85,0, | ||
6552 | 327,3,86,0,327, | ||
6553 | 3,87,0,327,3, | ||
6554 | 88,0,327,3,89, | ||
6555 | 0,327,3,90,0, | ||
6556 | 327,3,95,0,327, | ||
6557 | 3,97,0,327,3, | ||
6558 | 98,0,327,3,99, | ||
6559 | 0,327,3,100,0, | ||
6560 | 327,3,101,0,327, | ||
6561 | 3,102,0,327,3, | ||
6562 | 103,0,327,3,104, | ||
6563 | 0,327,3,105,0, | ||
6564 | 327,3,106,0,327, | ||
6565 | 3,107,0,327,3, | ||
6566 | 108,0,327,655,11, | ||
6567 | 1,829,0,330,1, | ||
6568 | -1,3,116,0,327, | ||
6569 | 3,117,0,327,3, | ||
6570 | 118,0,327,3,119, | ||
6571 | 0,327,3,120,0, | ||
6572 | 327,3,121,0,327, | ||
6573 | 3,122,0,327,3, | ||
6574 | 48,0,327,3,49, | ||
6575 | 0,327,3,50,0, | ||
6576 | 327,3,51,0,327, | ||
6577 | 3,52,0,327,3, | ||
6578 | 53,0,327,3,54, | ||
6579 | 0,327,3,55,0, | ||
6580 | 327,3,56,0,327, | ||
6581 | 3,57,0,327,3, | ||
6582 | 65,0,327,3,66, | ||
6583 | 0,327,3,67,0, | ||
6584 | 327,3,68,0,327, | ||
6585 | 3,69,0,327,3, | ||
6586 | 70,0,327,3,71, | ||
6587 | 0,327,3,72,0, | ||
6588 | 327,3,73,0,327, | ||
6589 | 3,74,0,327,3, | ||
6590 | 75,0,327,3,76, | ||
6591 | 0,327,3,77,0, | ||
6592 | 327,3,78,0,327, | ||
6593 | 3,79,0,327,3, | ||
6594 | 80,0,327,3,81, | ||
6595 | 0,327,3,82,0, | ||
6596 | 327,3,83,0,327, | ||
6597 | 3,84,0,327,3, | ||
6598 | 85,0,327,3,86, | ||
6599 | 0,327,3,87,0, | ||
6600 | 327,3,88,0,327, | ||
6601 | 3,89,0,327,3, | ||
6602 | 90,0,327,3,95, | ||
6603 | 0,327,3,97,0, | ||
6604 | 327,3,98,0,327, | ||
6605 | 3,99,0,327,3, | ||
6606 | 100,0,327,3,101, | ||
6607 | 0,327,3,102,0, | ||
6608 | 327,3,103,0,327, | ||
6609 | 3,104,0,327,3, | ||
6610 | 105,0,327,3,106, | ||
6611 | 0,327,3,107,0, | ||
6612 | 327,3,108,0,327, | ||
6613 | 656,11,1,829,0, | ||
6614 | 330,1,-1,3,102, | ||
6615 | 0,327,3,103,0, | ||
6616 | 327,3,104,0,327, | ||
6617 | 3,105,0,327,3, | ||
6618 | 106,0,327,3,107, | ||
6619 | 0,327,3,108,0, | ||
6620 | 327,657,11,1,829, | ||
6621 | 0,330,1,-1,3, | ||
6622 | 115,0,327,3,116, | ||
6623 | 0,327,3,117,0, | ||
6624 | 327,3,118,0,327, | ||
6625 | 3,119,0,327,3, | ||
6626 | 120,0,327,3,121, | ||
6627 | 0,327,3,122,0, | ||
6628 | 327,3,48,0,327, | ||
6629 | 3,49,0,327,3, | ||
6630 | 50,0,327,3,51, | ||
6631 | 0,327,3,52,0, | ||
6632 | 327,3,53,0,327, | ||
6633 | 3,54,0,327,3, | ||
6634 | 55,0,327,3,56, | ||
6635 | 0,327,3,57,0, | ||
6636 | 327,3,65,0,327, | ||
6637 | 3,66,0,327,3, | ||
6638 | 67,0,327,3,68, | ||
6639 | 0,327,3,69,0, | ||
6640 | 327,3,70,0,327, | ||
6641 | 3,71,0,327,3, | ||
6642 | 72,0,327,3,73, | ||
6643 | 0,327,3,74,0, | ||
6644 | 327,3,75,0,327, | ||
6645 | 3,76,0,327,3, | ||
6646 | 77,0,327,3,78, | ||
6647 | 0,327,3,79,0, | ||
6648 | 327,3,80,0,327, | ||
6649 | 3,81,0,327,3, | ||
6650 | 82,0,327,3,83, | ||
6651 | 0,327,3,84,0, | ||
6652 | 327,3,85,0,327, | ||
6653 | 3,86,0,327,3, | ||
6654 | 87,0,327,3,88, | ||
6655 | 0,327,3,89,0, | ||
6656 | 327,3,90,0,327, | ||
6657 | 3,95,0,327,3, | ||
6658 | 97,0,327,3,98, | ||
6659 | 0,327,3,99,0, | ||
6660 | 327,3,100,0,327, | ||
6661 | 3,101,0,327,3, | ||
6662 | 102,0,327,3,103, | ||
6663 | 0,327,3,104,0, | ||
6664 | 327,3,105,0,327, | ||
6665 | 3,106,0,327,3, | ||
6666 | 107,0,327,3,108, | ||
6667 | 0,327,658,11,1, | ||
6668 | 829,0,330,1,-1, | ||
6669 | 3,97,0,327,3, | ||
6670 | 98,0,327,3,99, | ||
6671 | 0,327,3,100,0, | ||
6672 | 327,3,101,0,327, | ||
6673 | 3,102,0,327,3, | ||
6674 | 103,0,327,3,104, | ||
6675 | 0,327,3,105,0, | ||
6676 | 327,3,106,0,327, | ||
6677 | 3,107,0,327,3, | ||
6678 | 108,0,327,659,11, | ||
6679 | 1,829,0,330,1, | ||
6680 | -1,3,113,0,327, | ||
6681 | 3,114,0,327,3, | ||
6682 | 115,0,327,3,116, | ||
6683 | 0,327,3,117,0, | ||
6684 | 327,3,118,0,327, | ||
6685 | 3,119,0,327,3, | ||
6686 | 120,0,327,3,121, | ||
6687 | 0,327,3,122,0, | ||
6688 | 327,3,48,0,327, | ||
6689 | 3,49,0,327,3, | ||
6690 | 50,0,327,3,51, | ||
6691 | 0,327,3,52,0, | ||
6692 | 327,3,53,0,327, | ||
6693 | 3,54,0,327,3, | ||
6694 | 55,0,327,3,56, | ||
6695 | 0,327,3,57,0, | ||
6696 | 327,3,65,0,327, | ||
6697 | 3,66,0,327,3, | ||
6698 | 67,0,327,3,68, | ||
6699 | 0,327,3,69,0, | ||
6700 | 327,3,70,0,327, | ||
6701 | 3,71,0,327,3, | ||
6702 | 72,0,327,3,73, | ||
6703 | 0,327,3,74,0, | ||
6704 | 327,3,75,0,327, | ||
6705 | 3,76,0,327,3, | ||
6706 | 77,0,327,3,78, | ||
6707 | 0,327,3,79,0, | ||
6708 | 327,3,80,0,327, | ||
6709 | 3,81,0,327,3, | ||
6710 | 82,0,327,3,83, | ||
6711 | 0,327,3,84,0, | ||
6712 | 327,3,85,0,327, | ||
6713 | 3,86,0,327,3, | ||
6714 | 87,0,327,3,88, | ||
6715 | 0,327,3,89,0, | ||
6716 | 327,3,90,0,327, | ||
6717 | 3,95,0,327,3, | ||
6718 | 97,0,327,3,98, | ||
6719 | 0,327,3,99,0, | ||
6720 | 327,3,100,0,327, | ||
6721 | 3,101,0,327,3, | ||
6722 | 102,0,327,3,103, | ||
6723 | 0,327,3,104,0, | ||
6724 | 327,3,105,0,327, | ||
6725 | 3,106,0,327,3, | ||
6726 | 107,0,327,3,108, | ||
6727 | 0,327,660,11,1, | ||
6728 | 829,0,330,1,-1, | ||
6729 | 3,117,0,327,3, | ||
6730 | 118,0,327,3,119, | ||
6731 | 0,327,3,120,0, | ||
6732 | 327,3,121,0,327, | ||
6733 | 3,122,0,327,3, | ||
6734 | 48,0,327,3,49, | ||
6735 | 0,327,3,50,0, | ||
6736 | 327,3,51,0,327, | ||
6737 | 3,52,0,327,3, | ||
6738 | 53,0,327,3,54, | ||
6739 | 0,327,3,55,0, | ||
6740 | 327,3,56,0,327, | ||
6741 | 3,57,0,327,3, | ||
6742 | 65,0,327,3,66, | ||
6743 | 0,327,3,67,0, | ||
6744 | 327,3,68,0,327, | ||
6745 | 3,69,0,327,3, | ||
6746 | 70,0,327,3,71, | ||
6747 | 0,327,3,72,0, | ||
6748 | 327,3,73,0,327, | ||
6749 | 3,74,0,327,3, | ||
6750 | 75,0,327,3,76, | ||
6751 | 0,327,3,77,0, | ||
6752 | 327,3,78,0,327, | ||
6753 | 3,79,0,327,3, | ||
6754 | 80,0,327,3,81, | ||
6755 | 0,327,3,82,0, | ||
6756 | 327,3,83,0,327, | ||
6757 | 3,84,0,327,3, | ||
6758 | 85,0,327,3,86, | ||
6759 | 0,327,3,87,0, | ||
6760 | 327,3,88,0,327, | ||
6761 | 3,89,0,327,3, | ||
6762 | 90,0,327,3,95, | ||
6763 | 0,327,3,97,0, | ||
6764 | 327,3,98,0,327, | ||
6765 | 3,99,0,327,3, | ||
6766 | 100,0,327,3,101, | ||
6767 | 0,327,3,102,0, | ||
6768 | 327,3,103,0,327, | ||
6769 | 3,104,0,327,3, | ||
6770 | 105,0,327,3,106, | ||
6771 | 0,327,3,107,0, | ||
6772 | 327,3,108,0,327, | ||
6773 | 661,11,1,829,0, | ||
6774 | 330,1,-1,3,117, | ||
6775 | 0,327,3,118,0, | ||
6776 | 327,3,119,0,327, | ||
6777 | 3,120,0,327,3, | ||
6778 | 121,0,327,3,122, | ||
6779 | 0,327,3,48,0, | ||
6780 | 327,3,49,0,327, | ||
6781 | 3,50,0,327,3, | ||
6782 | 51,0,327,3,52, | ||
6783 | 0,327,3,53,0, | ||
6784 | 327,3,54,0,327, | ||
6785 | 3,55,0,327,3, | ||
6786 | 56,0,327,3,57, | ||
6787 | 0,327,3,65,0, | ||
6788 | 327,3,66,0,327, | ||
6789 | 3,67,0,327,3, | ||
6790 | 68,0,327,3,69, | ||
6791 | 0,327,3,70,0, | ||
6792 | 327,3,71,0,327, | ||
6793 | 3,72,0,327,3, | ||
6794 | 73,0,327,3,74, | ||
6795 | 0,327,3,75,0, | ||
6796 | 327,3,76,0,327, | ||
6797 | 3,77,0,327,3, | ||
6798 | 78,0,327,3,79, | ||
6799 | 0,327,3,80,0, | ||
6800 | 327,3,81,0,327, | ||
6801 | 3,82,0,327,3, | ||
6802 | 83,0,327,3,84, | ||
6803 | 0,327,3,85,0, | ||
6804 | 327,3,86,0,327, | ||
6805 | 3,87,0,327,3, | ||
6806 | 88,0,327,3,89, | ||
6807 | 0,327,3,90,0, | ||
6808 | 327,3,95,0,327, | ||
6809 | 3,97,0,327,3, | ||
6810 | 98,0,327,3,99, | ||
6811 | 0,327,3,100,0, | ||
6812 | 327,3,101,0,327, | ||
6813 | 3,102,0,327,3, | ||
6814 | 103,0,327,3,104, | ||
6815 | 0,327,3,105,0, | ||
6816 | 327,3,106,0,327, | ||
6817 | 3,107,0,327,3, | ||
6818 | 108,0,327,662,11, | ||
6819 | 1,829,0,330,1, | ||
6820 | -1,3,105,0,663, | ||
6821 | 12,1,32583,664,5, | ||
6822 | 63,3,109,0,327, | ||
6823 | 3,110,0,665,12, | ||
6824 | 1,32612,666,5,63, | ||
6825 | 3,109,0,327,3, | ||
6826 | 110,0,327,3,111, | ||
6827 | 0,327,3,112,0, | ||
6828 | 327,3,113,0,327, | ||
6829 | 3,114,0,327,3, | ||
6830 | 115,0,327,3,116, | ||
6831 | 0,667,12,1,32647, | ||
6832 | 668,5,63,3,109, | ||
6833 | 0,327,3,110,0, | ||
6834 | 327,3,111,0,327, | ||
6835 | 3,112,0,327,3, | ||
6836 | 113,0,327,3,114, | ||
6837 | 0,327,3,115,0, | ||
6838 | 327,3,116,0,327, | ||
6839 | 3,117,0,327,3, | ||
6840 | 118,0,327,3,119, | ||
6841 | 0,327,3,120,0, | ||
6842 | 327,3,121,0,327, | ||
6843 | 3,122,0,327,3, | ||
6844 | 48,0,327,3,49, | ||
6845 | 0,327,3,50,0, | ||
6846 | 327,3,51,0,327, | ||
6847 | 3,52,0,327,3, | ||
6848 | 53,0,327,3,54, | ||
6849 | 0,327,3,55,0, | ||
6850 | 327,3,56,0,327, | ||
6851 | 3,57,0,327,3, | ||
6852 | 65,0,327,3,66, | ||
6853 | 0,327,3,67,0, | ||
6854 | 327,3,68,0,327, | ||
6855 | 3,69,0,327,3, | ||
6856 | 70,0,327,3,71, | ||
6857 | 0,327,3,72,0, | ||
6858 | 327,3,73,0,327, | ||
6859 | 3,74,0,327,3, | ||
6860 | 75,0,327,3,76, | ||
6861 | 0,327,3,77,0, | ||
6862 | 327,3,78,0,327, | ||
6863 | 3,79,0,327,3, | ||
6864 | 80,0,327,3,81, | ||
6865 | 0,327,3,82,0, | ||
6866 | 327,3,83,0,327, | ||
6867 | 3,84,0,327,3, | ||
6868 | 85,0,327,3,86, | ||
6869 | 0,327,3,87,0, | ||
6870 | 327,3,88,0,327, | ||
6871 | 3,89,0,327,3, | ||
6872 | 90,0,327,3,95, | ||
6873 | 0,327,3,97,0, | ||
6874 | 327,3,98,0,327, | ||
6875 | 3,99,0,327,3, | ||
6876 | 100,0,327,3,101, | ||
6877 | 0,669,12,1,32694, | ||
6878 | 670,5,63,3,109, | ||
6879 | 0,327,3,110,0, | ||
6880 | 327,3,111,0,327, | ||
6881 | 3,112,0,327,3, | ||
6882 | 113,0,327,3,114, | ||
6883 | 0,327,3,115,0, | ||
6884 | 327,3,116,0,327, | ||
6885 | 3,117,0,327,3, | ||
6886 | 118,0,327,3,119, | ||
6887 | 0,327,3,120,0, | ||
6888 | 327,3,121,0,327, | ||
6889 | 3,122,0,327,3, | ||
6890 | 48,0,327,3,49, | ||
6891 | 0,327,3,50,0, | ||
6892 | 327,3,51,0,327, | ||
6893 | 3,52,0,327,3, | ||
6894 | 53,0,327,3,54, | ||
6895 | 0,327,3,55,0, | ||
6896 | 327,3,56,0,327, | ||
6897 | 3,57,0,327,3, | ||
6898 | 65,0,327,3,66, | ||
6899 | 0,327,3,67,0, | ||
6900 | 327,3,68,0,327, | ||
6901 | 3,69,0,327,3, | ||
6902 | 70,0,327,3,71, | ||
6903 | 0,327,3,72,0, | ||
6904 | 327,3,73,0,327, | ||
6905 | 3,74,0,327,3, | ||
6906 | 75,0,327,3,76, | ||
6907 | 0,327,3,77,0, | ||
6908 | 327,3,78,0,327, | ||
6909 | 3,79,0,327,3, | ||
6910 | 80,0,327,3,81, | ||
6911 | 0,327,3,82,0, | ||
6912 | 327,3,83,0,327, | ||
6913 | 3,84,0,327,3, | ||
6914 | 85,0,327,3,86, | ||
6915 | 0,327,3,87,0, | ||
6916 | 327,3,88,0,327, | ||
6917 | 3,89,0,327,3, | ||
6918 | 90,0,327,3,95, | ||
6919 | 0,327,3,97,0, | ||
6920 | 327,3,98,0,327, | ||
6921 | 3,99,0,327,3, | ||
6922 | 100,0,327,3,101, | ||
6923 | 0,327,3,102,0, | ||
6924 | 327,3,103,0,671, | ||
6925 | 12,1,32743,672,5, | ||
6926 | 63,3,109,0,327, | ||
6927 | 3,110,0,327,3, | ||
6928 | 111,0,327,3,112, | ||
6929 | 0,327,3,113,0, | ||
6930 | 327,3,114,0,327, | ||
6931 | 3,115,0,327,3, | ||
6932 | 116,0,327,3,117, | ||
6933 | 0,327,3,118,0, | ||
6934 | 327,3,119,0,327, | ||
6935 | 3,120,0,327,3, | ||
6936 | 121,0,327,3,122, | ||
6937 | 0,327,3,48,0, | ||
6938 | 327,3,49,0,327, | ||
6939 | 3,50,0,327,3, | ||
6940 | 51,0,327,3,52, | ||
6941 | 0,327,3,53,0, | ||
6942 | 327,3,54,0,327, | ||
6943 | 3,55,0,327,3, | ||
6944 | 56,0,327,3,57, | ||
6945 | 0,327,3,65,0, | ||
6946 | 327,3,66,0,327, | ||
6947 | 3,67,0,327,3, | ||
6948 | 68,0,327,3,69, | ||
6949 | 0,327,3,70,0, | ||
6950 | 327,3,71,0,327, | ||
6951 | 3,72,0,327,3, | ||
6952 | 73,0,327,3,74, | ||
6953 | 0,327,3,75,0, | ||
6954 | 327,3,76,0,327, | ||
6955 | 3,77,0,327,3, | ||
6956 | 78,0,327,3,79, | ||
6957 | 0,327,3,80,0, | ||
6958 | 327,3,81,0,327, | ||
6959 | 3,82,0,327,3, | ||
6960 | 83,0,327,3,84, | ||
6961 | 0,327,3,85,0, | ||
6962 | 327,3,86,0,327, | ||
6963 | 3,87,0,327,3, | ||
6964 | 88,0,327,3,89, | ||
6965 | 0,327,3,90,0, | ||
6966 | 327,3,95,0,327, | ||
6967 | 3,97,0,327,3, | ||
6968 | 98,0,327,3,99, | ||
6969 | 0,327,3,100,0, | ||
6970 | 327,3,101,0,673, | ||
6971 | 12,1,32790,674,5, | ||
6972 | 63,3,109,0,327, | ||
6973 | 3,110,0,327,3, | ||
6974 | 111,0,327,3,112, | ||
6975 | 0,327,3,113,0, | ||
6976 | 327,3,114,0,675, | ||
6977 | 12,1,32823,676,5, | ||
6978 | 63,3,109,0,327, | ||
6979 | 3,110,0,327,3, | ||
6980 | 111,0,327,3,112, | ||
6981 | 0,327,3,113,0, | ||
6982 | 327,3,114,0,327, | ||
6983 | 3,115,0,327,3, | ||
6984 | 116,0,327,3,117, | ||
6985 | 0,327,3,118,0, | ||
6986 | 327,3,119,0,327, | ||
6987 | 3,120,0,327,3, | ||
6988 | 121,0,327,3,122, | ||
6989 | 0,327,3,48,0, | ||
6990 | 327,3,49,0,327, | ||
6991 | 3,50,0,327,3, | ||
6992 | 51,0,327,3,52, | ||
6993 | 0,327,3,53,0, | ||
6994 | 327,3,54,0,327, | ||
6995 | 3,55,0,327,3, | ||
6996 | 56,0,327,3,57, | ||
6997 | 0,327,3,65,0, | ||
6998 | 327,3,66,0,327, | ||
6999 | 3,67,0,327,3, | ||
7000 | 68,0,327,3,69, | ||
7001 | 0,327,3,70,0, | ||
7002 | 327,3,71,0,327, | ||
7003 | 3,72,0,327,3, | ||
7004 | 73,0,327,3,74, | ||
7005 | 0,327,3,75,0, | ||
7006 | 327,3,76,0,327, | ||
7007 | 3,77,0,327,3, | ||
7008 | 78,0,327,3,79, | ||
7009 | 0,327,3,80,0, | ||
7010 | 327,3,81,0,327, | ||
7011 | 3,82,0,327,3, | ||
7012 | 83,0,327,3,84, | ||
7013 | 0,327,3,85,0, | ||
7014 | 327,3,86,0,327, | ||
7015 | 3,87,0,327,3, | ||
7016 | 88,0,327,3,89, | ||
7017 | 0,327,3,90,0, | ||
7018 | 327,3,95,0,327, | ||
7019 | 3,97,0,327,3, | ||
7020 | 98,0,327,3,99, | ||
7021 | 0,327,3,100,0, | ||
7022 | 327,3,101,0,327, | ||
7023 | 3,102,0,327,3, | ||
7024 | 103,0,327,3,104, | ||
7025 | 0,327,3,105,0, | ||
7026 | 327,3,106,0,327, | ||
7027 | 3,107,0,327,3, | ||
7028 | 108,0,327,677,11, | ||
7029 | 1,283,0,678,4, | ||
7030 | 24,73,0,78,0, | ||
7031 | 84,0,69,0,71, | ||
7032 | 0,69,0,82,0, | ||
7033 | 95,0,84,0,89, | ||
7034 | 0,80,0,69,0, | ||
7035 | 1,-1,3,115,0, | ||
7036 | 327,3,116,0,327, | ||
7037 | 3,117,0,327,3, | ||
7038 | 118,0,327,3,119, | ||
7039 | 0,327,3,120,0, | ||
7040 | 327,3,121,0,327, | ||
7041 | 3,122,0,327,3, | ||
7042 | 48,0,327,3,49, | ||
7043 | 0,327,3,50,0, | ||
7044 | 327,3,51,0,327, | ||
7045 | 3,52,0,327,3, | ||
7046 | 53,0,327,3,54, | ||
7047 | 0,327,3,55,0, | ||
7048 | 327,3,56,0,327, | ||
7049 | 3,57,0,327,3, | ||
7050 | 65,0,327,3,66, | ||
7051 | 0,327,3,67,0, | ||
7052 | 327,3,68,0,327, | ||
7053 | 3,69,0,327,3, | ||
7054 | 70,0,327,3,71, | ||
7055 | 0,327,3,72,0, | ||
7056 | 327,3,73,0,327, | ||
7057 | 3,74,0,327,3, | ||
7058 | 75,0,327,3,76, | ||
7059 | 0,327,3,77,0, | ||
7060 | 327,3,78,0,327, | ||
7061 | 3,79,0,327,3, | ||
7062 | 80,0,327,3,81, | ||
7063 | 0,327,3,82,0, | ||
7064 | 327,3,83,0,327, | ||
7065 | 3,84,0,327,3, | ||
7066 | 85,0,327,3,86, | ||
7067 | 0,327,3,87,0, | ||
7068 | 327,3,88,0,327, | ||
7069 | 3,89,0,327,3, | ||
7070 | 90,0,327,3,95, | ||
7071 | 0,327,3,97,0, | ||
7072 | 327,3,98,0,327, | ||
7073 | 3,99,0,327,3, | ||
7074 | 100,0,327,3,101, | ||
7075 | 0,327,3,102,0, | ||
7076 | 327,3,103,0,327, | ||
7077 | 3,104,0,327,3, | ||
7078 | 105,0,327,3,106, | ||
7079 | 0,327,3,107,0, | ||
7080 | 327,3,108,0,327, | ||
7081 | 679,11,1,829,0, | ||
7082 | 330,1,-1,3,102, | ||
7083 | 0,327,3,103,0, | ||
7084 | 327,3,104,0,327, | ||
7085 | 3,105,0,327,3, | ||
7086 | 106,0,327,3,107, | ||
7087 | 0,327,3,108,0, | ||
7088 | 327,680,11,1,829, | ||
7089 | 0,330,1,-1,3, | ||
7090 | 104,0,327,3,105, | ||
7091 | 0,327,3,106,0, | ||
7092 | 327,3,107,0,327, | ||
7093 | 3,108,0,327,681, | ||
7094 | 11,1,829,0,330, | ||
7095 | 1,-1,3,102,0, | ||
7096 | 327,3,103,0,327, | ||
7097 | 3,104,0,327,3, | ||
7098 | 105,0,327,3,106, | ||
7099 | 0,327,3,107,0, | ||
7100 | 327,3,108,0,327, | ||
7101 | 682,11,1,829,0, | ||
7102 | 330,1,-1,3,117, | ||
7103 | 0,327,3,118,0, | ||
7104 | 327,3,119,0,327, | ||
7105 | 3,120,0,327,3, | ||
7106 | 121,0,327,3,122, | ||
7107 | 0,327,3,48,0, | ||
7108 | 327,3,49,0,327, | ||
7109 | 3,50,0,327,3, | ||
7110 | 51,0,327,3,52, | ||
7111 | 0,327,3,53,0, | ||
7112 | 327,3,54,0,327, | ||
7113 | 3,55,0,327,3, | ||
7114 | 56,0,327,3,57, | ||
7115 | 0,327,3,65,0, | ||
7116 | 327,3,66,0,327, | ||
7117 | 3,67,0,327,3, | ||
7118 | 68,0,327,3,69, | ||
7119 | 0,327,3,70,0, | ||
7120 | 327,3,71,0,327, | ||
7121 | 3,72,0,327,3, | ||
7122 | 73,0,327,3,74, | ||
7123 | 0,327,3,75,0, | ||
7124 | 327,3,76,0,327, | ||
7125 | 3,77,0,327,3, | ||
7126 | 78,0,327,3,79, | ||
7127 | 0,327,3,80,0, | ||
7128 | 327,3,81,0,327, | ||
7129 | 3,82,0,327,3, | ||
7130 | 83,0,327,3,84, | ||
7131 | 0,327,3,85,0, | ||
7132 | 327,3,86,0,327, | ||
7133 | 3,87,0,327,3, | ||
7134 | 88,0,327,3,89, | ||
7135 | 0,327,3,90,0, | ||
7136 | 327,3,95,0,327, | ||
7137 | 3,97,0,327,3, | ||
7138 | 98,0,327,3,99, | ||
7139 | 0,327,3,100,0, | ||
7140 | 327,3,101,0,327, | ||
7141 | 3,102,0,327,3, | ||
7142 | 103,0,327,3,104, | ||
7143 | 0,327,3,105,0, | ||
7144 | 327,3,106,0,327, | ||
7145 | 3,107,0,327,3, | ||
7146 | 108,0,327,683,11, | ||
7147 | 1,829,0,330,1, | ||
7148 | -1,3,111,0,327, | ||
7149 | 3,112,0,327,3, | ||
7150 | 113,0,327,3,114, | ||
7151 | 0,327,3,115,0, | ||
7152 | 327,3,116,0,327, | ||
7153 | 3,117,0,327,3, | ||
7154 | 118,0,327,3,119, | ||
7155 | 0,327,3,120,0, | ||
7156 | 327,3,121,0,327, | ||
7157 | 3,122,0,327,3, | ||
7158 | 48,0,327,3,49, | ||
7159 | 0,327,3,50,0, | ||
7160 | 327,3,51,0,327, | ||
7161 | 3,52,0,327,3, | ||
7162 | 53,0,327,3,54, | ||
7163 | 0,327,3,55,0, | ||
7164 | 327,3,56,0,327, | ||
7165 | 3,57,0,327,3, | ||
7166 | 65,0,327,3,66, | ||
7167 | 0,327,3,67,0, | ||
7168 | 327,3,68,0,327, | ||
7169 | 3,69,0,327,3, | ||
7170 | 70,0,327,3,71, | ||
7171 | 0,327,3,72,0, | ||
7172 | 327,3,73,0,327, | ||
7173 | 3,74,0,327,3, | ||
7174 | 75,0,327,3,76, | ||
7175 | 0,327,3,77,0, | ||
7176 | 327,3,78,0,327, | ||
7177 | 3,79,0,327,3, | ||
7178 | 80,0,327,3,81, | ||
7179 | 0,327,3,82,0, | ||
7180 | 327,3,83,0,327, | ||
7181 | 3,84,0,327,3, | ||
7182 | 85,0,327,3,86, | ||
7183 | 0,327,3,87,0, | ||
7184 | 327,3,88,0,327, | ||
7185 | 3,89,0,327,3, | ||
7186 | 90,0,327,3,95, | ||
7187 | 0,327,3,97,0, | ||
7188 | 327,3,98,0,327, | ||
7189 | 3,99,0,327,3, | ||
7190 | 100,0,327,3,101, | ||
7191 | 0,327,3,102,0, | ||
7192 | 684,12,1,33351,685, | ||
7193 | 5,63,3,109,0, | ||
7194 | 327,3,110,0,327, | ||
7195 | 3,111,0,327,3, | ||
7196 | 112,0,327,3,113, | ||
7197 | 0,327,3,114,0, | ||
7198 | 327,3,115,0,327, | ||
7199 | 3,116,0,327,3, | ||
7200 | 117,0,327,3,118, | ||
7201 | 0,327,3,119,0, | ||
7202 | 327,3,120,0,327, | ||
7203 | 3,121,0,327,3, | ||
7204 | 122,0,327,3,48, | ||
7205 | 0,327,3,49,0, | ||
7206 | 327,3,50,0,327, | ||
7207 | 3,51,0,327,3, | ||
7208 | 52,0,327,3,53, | ||
7209 | 0,327,3,54,0, | ||
7210 | 327,3,55,0,327, | ||
7211 | 3,56,0,327,3, | ||
7212 | 57,0,327,3,65, | ||
7213 | 0,327,3,66,0, | ||
7214 | 327,3,67,0,327, | ||
7215 | 3,68,0,327,3, | ||
7216 | 69,0,327,3,70, | ||
7217 | 0,327,3,71,0, | ||
7218 | 327,3,72,0,327, | ||
7219 | 3,73,0,327,3, | ||
7220 | 74,0,327,3,75, | ||
7221 | 0,327,3,76,0, | ||
7222 | 327,3,77,0,327, | ||
7223 | 3,78,0,327,3, | ||
7224 | 79,0,327,3,80, | ||
7225 | 0,327,3,81,0, | ||
7226 | 327,3,82,0,327, | ||
7227 | 3,83,0,327,3, | ||
7228 | 84,0,327,3,85, | ||
7229 | 0,327,3,86,0, | ||
7230 | 327,3,87,0,327, | ||
7231 | 3,88,0,327,3, | ||
7232 | 89,0,327,3,90, | ||
7233 | 0,327,3,95,0, | ||
7234 | 327,3,97,0,327, | ||
7235 | 3,98,0,327,3, | ||
7236 | 99,0,327,3,100, | ||
7237 | 0,327,3,101,0, | ||
7238 | 327,3,102,0,327, | ||
7239 | 3,103,0,327,3, | ||
7240 | 104,0,327,3,105, | ||
7241 | 0,327,3,106,0, | ||
7242 | 327,3,107,0,327, | ||
7243 | 3,108,0,327,686, | ||
7244 | 11,1,209,0,687, | ||
7245 | 4,4,73,0,70, | ||
7246 | 0,1,-1,3,103, | ||
7247 | 0,327,3,104,0, | ||
7248 | 327,3,105,0,327, | ||
7249 | 3,106,0,327,3, | ||
7250 | 107,0,327,3,108, | ||
7251 | 0,327,688,11,1, | ||
7252 | 829,0,330,1,-1, | ||
7253 | 3,106,0,689,12, | ||
7254 | 1,33544,690,5,63, | ||
7255 | 3,109,0,327,3, | ||
7256 | 110,0,327,3,111, | ||
7257 | 0,327,3,112,0, | ||
7258 | 327,3,113,0,327, | ||
7259 | 3,114,0,327,3, | ||
7260 | 115,0,327,3,116, | ||
7261 | 0,327,3,117,0, | ||
7262 | 691,12,1,33580,692, | ||
7263 | 5,63,3,109,0, | ||
7264 | 693,12,1,33608,694, | ||
7265 | 5,63,3,109,0, | ||
7266 | 327,3,110,0,327, | ||
7267 | 3,111,0,327,3, | ||
7268 | 112,0,695,12,1, | ||
7269 | 33639,696,5,63,3, | ||
7270 | 109,0,327,3,110, | ||
7271 | 0,327,3,111,0, | ||
7272 | 327,3,112,0,327, | ||
7273 | 3,113,0,327,3, | ||
7274 | 114,0,327,3,115, | ||
7275 | 0,327,3,116,0, | ||
7276 | 327,3,117,0,327, | ||
7277 | 3,118,0,327,3, | ||
7278 | 119,0,327,3,120, | ||
7279 | 0,327,3,121,0, | ||
7280 | 327,3,122,0,327, | ||
7281 | 3,48,0,327,3, | ||
7282 | 49,0,327,3,50, | ||
7283 | 0,327,3,51,0, | ||
7284 | 327,3,52,0,327, | ||
7285 | 3,53,0,327,3, | ||
7286 | 54,0,327,3,55, | ||
7287 | 0,327,3,56,0, | ||
7288 | 327,3,57,0,327, | ||
7289 | 3,65,0,327,3, | ||
7290 | 66,0,327,3,67, | ||
7291 | 0,327,3,68,0, | ||
7292 | 327,3,69,0,327, | ||
7293 | 3,70,0,327,3, | ||
7294 | 71,0,327,3,72, | ||
7295 | 0,327,3,73,0, | ||
7296 | 327,3,74,0,327, | ||
7297 | 3,75,0,327,3, | ||
7298 | 76,0,327,3,77, | ||
7299 | 0,327,3,78,0, | ||
7300 | 327,3,79,0,327, | ||
7301 | 3,80,0,327,3, | ||
7302 | 81,0,327,3,82, | ||
7303 | 0,327,3,83,0, | ||
7304 | 327,3,84,0,327, | ||
7305 | 3,85,0,327,3, | ||
7306 | 86,0,327,3,87, | ||
7307 | 0,327,3,88,0, | ||
7308 | 327,3,89,0,327, | ||
7309 | 3,90,0,327,3, | ||
7310 | 95,0,327,3,97, | ||
7311 | 0,327,3,98,0, | ||
7312 | 327,3,99,0,327, | ||
7313 | 3,100,0,327,3, | ||
7314 | 101,0,327,3,102, | ||
7315 | 0,327,3,103,0, | ||
7316 | 327,3,104,0,327, | ||
7317 | 3,105,0,327,3, | ||
7318 | 106,0,327,3,107, | ||
7319 | 0,327,3,108,0, | ||
7320 | 327,697,11,1,265, | ||
7321 | 0,698,4,8,74, | ||
7322 | 0,85,0,77,0, | ||
7323 | 80,0,1,-1,3, | ||
7324 | 113,0,327,3,114, | ||
7325 | 0,327,3,115,0, | ||
7326 | 327,3,116,0,327, | ||
7327 | 3,117,0,327,3, | ||
7328 | 118,0,327,3,119, | ||
7329 | 0,327,3,120,0, | ||
7330 | 327,3,121,0,327, | ||
7331 | 3,122,0,327,3, | ||
7332 | 48,0,327,3,49, | ||
7333 | 0,327,3,50,0, | ||
7334 | 327,3,51,0,327, | ||
7335 | 3,52,0,327,3, | ||
7336 | 53,0,327,3,54, | ||
7337 | 0,327,3,55,0, | ||
7338 | 327,3,56,0,327, | ||
7339 | 3,57,0,327,3, | ||
7340 | 65,0,327,3,66, | ||
7341 | 0,327,3,67,0, | ||
7342 | 327,3,68,0,327, | ||
7343 | 3,69,0,327,3, | ||
7344 | 70,0,327,3,71, | ||
7345 | 0,327,3,72,0, | ||
7346 | 327,3,73,0,327, | ||
7347 | 3,74,0,327,3, | ||
7348 | 75,0,327,3,76, | ||
7349 | 0,327,3,77,0, | ||
7350 | 327,3,78,0,327, | ||
7351 | 3,79,0,327,3, | ||
7352 | 80,0,327,3,81, | ||
7353 | 0,327,3,82,0, | ||
7354 | 327,3,83,0,327, | ||
7355 | 3,84,0,327,3, | ||
7356 | 85,0,327,3,86, | ||
7357 | 0,327,3,87,0, | ||
7358 | 327,3,88,0,327, | ||
7359 | 3,89,0,327,3, | ||
7360 | 90,0,327,3,95, | ||
7361 | 0,327,3,97,0, | ||
7362 | 327,3,98,0,327, | ||
7363 | 3,99,0,327,3, | ||
7364 | 100,0,327,3,101, | ||
7365 | 0,327,3,102,0, | ||
7366 | 327,3,103,0,327, | ||
7367 | 3,104,0,327,3, | ||
7368 | 105,0,327,3,106, | ||
7369 | 0,327,3,107,0, | ||
7370 | 327,3,108,0,327, | ||
7371 | 699,11,1,829,0, | ||
7372 | 330,1,-1,3,110, | ||
7373 | 0,327,3,111,0, | ||
7374 | 327,3,112,0,327, | ||
7375 | 3,113,0,327,3, | ||
7376 | 114,0,327,3,115, | ||
7377 | 0,327,3,116,0, | ||
7378 | 327,3,117,0,327, | ||
7379 | 3,118,0,327,3, | ||
7380 | 119,0,327,3,120, | ||
7381 | 0,327,3,121,0, | ||
7382 | 327,3,122,0,327, | ||
7383 | 3,48,0,327,3, | ||
7384 | 49,0,327,3,50, | ||
7385 | 0,327,3,51,0, | ||
7386 | 327,3,52,0,327, | ||
7387 | 3,53,0,327,3, | ||
7388 | 54,0,327,3,55, | ||
7389 | 0,327,3,56,0, | ||
7390 | 327,3,57,0,327, | ||
7391 | 3,65,0,327,3, | ||
7392 | 66,0,327,3,67, | ||
7393 | 0,327,3,68,0, | ||
7394 | 327,3,69,0,327, | ||
7395 | 3,70,0,327,3, | ||
7396 | 71,0,327,3,72, | ||
7397 | 0,327,3,73,0, | ||
7398 | 327,3,74,0,327, | ||
7399 | 3,75,0,327,3, | ||
7400 | 76,0,327,3,77, | ||
7401 | 0,327,3,78,0, | ||
7402 | 327,3,79,0,327, | ||
7403 | 3,80,0,327,3, | ||
7404 | 81,0,327,3,82, | ||
7405 | 0,327,3,83,0, | ||
7406 | 327,3,84,0,327, | ||
7407 | 3,85,0,327,3, | ||
7408 | 86,0,327,3,87, | ||
7409 | 0,327,3,88,0, | ||
7410 | 327,3,89,0,327, | ||
7411 | 3,90,0,327,3, | ||
7412 | 95,0,327,3,97, | ||
7413 | 0,327,3,98,0, | ||
7414 | 327,3,99,0,327, | ||
7415 | 3,100,0,327,3, | ||
7416 | 101,0,327,3,102, | ||
7417 | 0,327,3,103,0, | ||
7418 | 327,3,104,0,327, | ||
7419 | 3,105,0,327,3, | ||
7420 | 106,0,327,3,107, | ||
7421 | 0,327,3,108,0, | ||
7422 | 327,700,11,1,829, | ||
7423 | 0,330,1,-1,3, | ||
7424 | 118,0,327,3,119, | ||
7425 | 0,327,3,120,0, | ||
7426 | 327,3,121,0,327, | ||
7427 | 3,122,0,327,3, | ||
7428 | 48,0,327,3,49, | ||
7429 | 0,327,3,50,0, | ||
7430 | 327,3,51,0,327, | ||
7431 | 3,52,0,327,3, | ||
7432 | 53,0,327,3,54, | ||
7433 | 0,327,3,55,0, | ||
7434 | 327,3,56,0,327, | ||
7435 | 3,57,0,327,3, | ||
7436 | 65,0,327,3,66, | ||
7437 | 0,327,3,67,0, | ||
7438 | 327,3,68,0,327, | ||
7439 | 3,69,0,327,3, | ||
7440 | 70,0,327,3,71, | ||
7441 | 0,327,3,72,0, | ||
7442 | 327,3,73,0,327, | ||
7443 | 3,74,0,327,3, | ||
7444 | 75,0,327,3,76, | ||
7445 | 0,327,3,77,0, | ||
7446 | 327,3,78,0,327, | ||
7447 | 3,79,0,327,3, | ||
7448 | 80,0,327,3,81, | ||
7449 | 0,327,3,82,0, | ||
7450 | 327,3,83,0,327, | ||
7451 | 3,84,0,327,3, | ||
7452 | 85,0,327,3,86, | ||
7453 | 0,327,3,87,0, | ||
7454 | 327,3,88,0,327, | ||
7455 | 3,89,0,327,3, | ||
7456 | 90,0,327,3,95, | ||
7457 | 0,327,3,97,0, | ||
7458 | 327,3,98,0,327, | ||
7459 | 3,99,0,327,3, | ||
7460 | 100,0,327,3,101, | ||
7461 | 0,327,3,102,0, | ||
7462 | 327,3,103,0,327, | ||
7463 | 3,104,0,327,3, | ||
7464 | 105,0,327,3,106, | ||
7465 | 0,327,3,107,0, | ||
7466 | 327,3,108,0,327, | ||
7467 | 701,11,1,829,0, | ||
7468 | 330,1,-1,3,107, | ||
7469 | 0,702,12,1,34025, | ||
7470 | 703,5,63,3,109, | ||
7471 | 0,327,3,110,0, | ||
7472 | 327,3,111,0,327, | ||
7473 | 3,112,0,327,3, | ||
7474 | 113,0,327,3,114, | ||
7475 | 0,327,3,115,0, | ||
7476 | 327,3,116,0,327, | ||
7477 | 3,117,0,327,3, | ||
7478 | 118,0,327,3,119, | ||
7479 | 0,327,3,120,0, | ||
7480 | 327,3,121,0,327, | ||
7481 | 3,122,0,327,3, | ||
7482 | 48,0,327,3,49, | ||
7483 | 0,327,3,50,0, | ||
7484 | 327,3,51,0,327, | ||
7485 | 3,52,0,327,3, | ||
7486 | 53,0,327,3,54, | ||
7487 | 0,327,3,55,0, | ||
7488 | 327,3,56,0,327, | ||
7489 | 3,57,0,327,3, | ||
7490 | 65,0,327,3,66, | ||
7491 | 0,327,3,67,0, | ||
7492 | 327,3,68,0,327, | ||
7493 | 3,69,0,327,3, | ||
7494 | 70,0,327,3,71, | ||
7495 | 0,327,3,72,0, | ||
7496 | 327,3,73,0,327, | ||
7497 | 3,74,0,327,3, | ||
7498 | 75,0,327,3,76, | ||
7499 | 0,327,3,77,0, | ||
7500 | 327,3,78,0,327, | ||
7501 | 3,79,0,327,3, | ||
7502 | 80,0,327,3,81, | ||
7503 | 0,327,3,82,0, | ||
7504 | 327,3,83,0,327, | ||
7505 | 3,84,0,327,3, | ||
7506 | 85,0,327,3,86, | ||
7507 | 0,327,3,87,0, | ||
7508 | 327,3,88,0,327, | ||
7509 | 3,89,0,327,3, | ||
7510 | 90,0,327,3,95, | ||
7511 | 0,327,3,97,0, | ||
7512 | 327,3,98,0,327, | ||
7513 | 3,99,0,327,3, | ||
7514 | 100,0,327,3,101, | ||
7515 | 0,704,12,1,34072, | ||
7516 | 705,5,63,3,109, | ||
7517 | 0,327,3,110,0, | ||
7518 | 327,3,111,0,327, | ||
7519 | 3,112,0,327,3, | ||
7520 | 113,0,327,3,114, | ||
7521 | 0,327,3,115,0, | ||
7522 | 327,3,116,0,327, | ||
7523 | 3,117,0,327,3, | ||
7524 | 118,0,327,3,119, | ||
7525 | 0,327,3,120,0, | ||
7526 | 327,3,121,0,706, | ||
7527 | 12,1,34112,707,5, | ||
7528 | 63,3,109,0,327, | ||
7529 | 3,110,0,327,3, | ||
7530 | 111,0,327,3,112, | ||
7531 | 0,327,3,113,0, | ||
7532 | 327,3,114,0,327, | ||
7533 | 3,115,0,327,3, | ||
7534 | 116,0,327,3,117, | ||
7535 | 0,327,3,118,0, | ||
7536 | 327,3,119,0,327, | ||
7537 | 3,120,0,327,3, | ||
7538 | 121,0,327,3,122, | ||
7539 | 0,327,3,48,0, | ||
7540 | 327,3,49,0,327, | ||
7541 | 3,50,0,327,3, | ||
7542 | 51,0,327,3,52, | ||
7543 | 0,327,3,53,0, | ||
7544 | 327,3,54,0,327, | ||
7545 | 3,55,0,327,3, | ||
7546 | 56,0,327,3,57, | ||
7547 | 0,327,3,65,0, | ||
7548 | 327,3,66,0,327, | ||
7549 | 3,67,0,327,3, | ||
7550 | 68,0,327,3,69, | ||
7551 | 0,327,3,70,0, | ||
7552 | 327,3,71,0,327, | ||
7553 | 3,72,0,327,3, | ||
7554 | 73,0,327,3,74, | ||
7555 | 0,327,3,75,0, | ||
7556 | 327,3,76,0,327, | ||
7557 | 3,77,0,327,3, | ||
7558 | 78,0,327,3,79, | ||
7559 | 0,327,3,80,0, | ||
7560 | 327,3,81,0,327, | ||
7561 | 3,82,0,327,3, | ||
7562 | 83,0,327,3,84, | ||
7563 | 0,327,3,85,0, | ||
7564 | 327,3,86,0,327, | ||
7565 | 3,87,0,327,3, | ||
7566 | 88,0,327,3,89, | ||
7567 | 0,327,3,90,0, | ||
7568 | 327,3,95,0,327, | ||
7569 | 3,97,0,327,3, | ||
7570 | 98,0,327,3,99, | ||
7571 | 0,327,3,100,0, | ||
7572 | 327,3,101,0,327, | ||
7573 | 3,102,0,327,3, | ||
7574 | 103,0,327,3,104, | ||
7575 | 0,327,3,105,0, | ||
7576 | 327,3,106,0,327, | ||
7577 | 3,107,0,327,3, | ||
7578 | 108,0,327,708,11, | ||
7579 | 1,313,0,709,4, | ||
7580 | 16,75,0,69,0, | ||
7581 | 89,0,95,0,84, | ||
7582 | 0,89,0,80,0, | ||
7583 | 69,0,1,-1,3, | ||
7584 | 122,0,327,3,48, | ||
7585 | 0,327,3,49,0, | ||
7586 | 327,3,50,0,327, | ||
7587 | 3,51,0,327,3, | ||
7588 | 52,0,327,3,53, | ||
7589 | 0,327,3,54,0, | ||
7590 | 327,3,55,0,327, | ||
7591 | 3,56,0,327,3, | ||
7592 | 57,0,327,3,65, | ||
7593 | 0,327,3,66,0, | ||
7594 | 327,3,67,0,327, | ||
7595 | 3,68,0,327,3, | ||
7596 | 69,0,327,3,70, | ||
7597 | 0,327,3,71,0, | ||
7598 | 327,3,72,0,327, | ||
7599 | 3,73,0,327,3, | ||
7600 | 74,0,327,3,75, | ||
7601 | 0,327,3,76,0, | ||
7602 | 327,3,77,0,327, | ||
7603 | 3,78,0,327,3, | ||
7604 | 79,0,327,3,80, | ||
7605 | 0,327,3,81,0, | ||
7606 | 327,3,82,0,327, | ||
7607 | 3,83,0,327,3, | ||
7608 | 84,0,327,3,85, | ||
7609 | 0,327,3,86,0, | ||
7610 | 327,3,87,0,327, | ||
7611 | 3,88,0,327,3, | ||
7612 | 89,0,327,3,90, | ||
7613 | 0,327,3,95,0, | ||
7614 | 327,3,97,0,327, | ||
7615 | 3,98,0,327,3, | ||
7616 | 99,0,327,3,100, | ||
7617 | 0,327,3,101,0, | ||
7618 | 327,3,102,0,327, | ||
7619 | 3,103,0,327,3, | ||
7620 | 104,0,327,3,105, | ||
7621 | 0,327,3,106,0, | ||
7622 | 327,3,107,0,327, | ||
7623 | 3,108,0,327,710, | ||
7624 | 11,1,829,0,330, | ||
7625 | 1,-1,3,102,0, | ||
7626 | 327,3,103,0,327, | ||
7627 | 3,104,0,327,3, | ||
7628 | 105,0,327,3,106, | ||
7629 | 0,327,3,107,0, | ||
7630 | 327,3,108,0,327, | ||
7631 | 711,11,1,829,0, | ||
7632 | 330,1,-1,3,108, | ||
7633 | 0,712,12,1,34386, | ||
7634 | 713,5,63,3,109, | ||
7635 | 0,327,3,110,0, | ||
7636 | 327,3,111,0,327, | ||
7637 | 3,112,0,327,3, | ||
7638 | 113,0,327,3,114, | ||
7639 | 0,327,3,115,0, | ||
7640 | 327,3,116,0,327, | ||
7641 | 3,117,0,327,3, | ||
7642 | 118,0,327,3,119, | ||
7643 | 0,327,3,120,0, | ||
7644 | 327,3,121,0,327, | ||
7645 | 3,122,0,327,3, | ||
7646 | 48,0,327,3,49, | ||
7647 | 0,327,3,50,0, | ||
7648 | 327,3,51,0,327, | ||
7649 | 3,52,0,327,3, | ||
7650 | 53,0,327,3,54, | ||
7651 | 0,327,3,55,0, | ||
7652 | 327,3,56,0,327, | ||
7653 | 3,57,0,327,3, | ||
7654 | 65,0,327,3,66, | ||
7655 | 0,327,3,67,0, | ||
7656 | 327,3,68,0,327, | ||
7657 | 3,69,0,327,3, | ||
7658 | 70,0,327,3,71, | ||
7659 | 0,327,3,72,0, | ||
7660 | 327,3,73,0,327, | ||
7661 | 3,74,0,327,3, | ||
7662 | 75,0,327,3,76, | ||
7663 | 0,327,3,77,0, | ||
7664 | 327,3,78,0,327, | ||
7665 | 3,79,0,327,3, | ||
7666 | 80,0,327,3,81, | ||
7667 | 0,327,3,82,0, | ||
7668 | 327,3,83,0,327, | ||
7669 | 3,84,0,327,3, | ||
7670 | 85,0,327,3,86, | ||
7671 | 0,327,3,87,0, | ||
7672 | 327,3,88,0,327, | ||
7673 | 3,89,0,327,3, | ||
7674 | 90,0,327,3,95, | ||
7675 | 0,327,3,97,0, | ||
7676 | 714,12,1,34429,715, | ||
7677 | 5,63,3,109,0, | ||
7678 | 327,3,110,0,716, | ||
7679 | 12,1,34458,717,5, | ||
7680 | 63,3,109,0,327, | ||
7681 | 3,110,0,327,3, | ||
7682 | 111,0,327,3,112, | ||
7683 | 0,327,3,113,0, | ||
7684 | 327,3,114,0,327, | ||
7685 | 3,115,0,327,3, | ||
7686 | 116,0,327,3,117, | ||
7687 | 0,327,3,118,0, | ||
7688 | 327,3,119,0,327, | ||
7689 | 3,120,0,327,3, | ||
7690 | 121,0,327,3,122, | ||
7691 | 0,327,3,48,0, | ||
7692 | 327,3,49,0,327, | ||
7693 | 3,50,0,327,3, | ||
7694 | 51,0,327,3,52, | ||
7695 | 0,327,3,53,0, | ||
7696 | 327,3,54,0,327, | ||
7697 | 3,55,0,327,3, | ||
7698 | 56,0,327,3,57, | ||
7699 | 0,327,3,65,0, | ||
7700 | 327,3,66,0,327, | ||
7701 | 3,67,0,327,3, | ||
7702 | 68,0,327,3,69, | ||
7703 | 0,327,3,70,0, | ||
7704 | 327,3,71,0,327, | ||
7705 | 3,72,0,327,3, | ||
7706 | 73,0,327,3,74, | ||
7707 | 0,327,3,75,0, | ||
7708 | 327,3,76,0,327, | ||
7709 | 3,77,0,327,3, | ||
7710 | 78,0,327,3,79, | ||
7711 | 0,327,3,80,0, | ||
7712 | 327,3,81,0,327, | ||
7713 | 3,82,0,327,3, | ||
7714 | 83,0,327,3,84, | ||
7715 | 0,327,3,85,0, | ||
7716 | 327,3,86,0,327, | ||
7717 | 3,87,0,327,3, | ||
7718 | 88,0,327,3,89, | ||
7719 | 0,327,3,90,0, | ||
7720 | 327,3,95,0,327, | ||
7721 | 3,97,0,327,3, | ||
7722 | 98,0,327,3,99, | ||
7723 | 0,327,3,100,0, | ||
7724 | 718,12,1,34504,719, | ||
7725 | 5,63,3,109,0, | ||
7726 | 327,3,110,0,327, | ||
7727 | 3,111,0,327,3, | ||
7728 | 112,0,327,3,113, | ||
7729 | 0,327,3,114,0, | ||
7730 | 327,3,115,0,327, | ||
7731 | 3,116,0,327,3, | ||
7732 | 117,0,327,3,118, | ||
7733 | 0,327,3,119,0, | ||
7734 | 327,3,120,0,327, | ||
7735 | 3,121,0,327,3, | ||
7736 | 122,0,327,3,48, | ||
7737 | 0,327,3,49,0, | ||
7738 | 327,3,50,0,327, | ||
7739 | 3,51,0,327,3, | ||
7740 | 52,0,327,3,53, | ||
7741 | 0,327,3,54,0, | ||
7742 | 327,3,55,0,327, | ||
7743 | 3,56,0,327,3, | ||
7744 | 57,0,327,3,65, | ||
7745 | 0,327,3,66,0, | ||
7746 | 327,3,67,0,327, | ||
7747 | 3,68,0,327,3, | ||
7748 | 69,0,327,3,70, | ||
7749 | 0,327,3,71,0, | ||
7750 | 327,3,72,0,327, | ||
7751 | 3,73,0,327,3, | ||
7752 | 74,0,327,3,75, | ||
7753 | 0,327,3,76,0, | ||
7754 | 327,3,77,0,327, | ||
7755 | 3,78,0,327,3, | ||
7756 | 79,0,327,3,80, | ||
7757 | 0,327,3,81,0, | ||
7758 | 327,3,82,0,327, | ||
7759 | 3,83,0,327,3, | ||
7760 | 84,0,327,3,85, | ||
7761 | 0,327,3,86,0, | ||
7762 | 327,3,87,0,327, | ||
7763 | 3,88,0,327,3, | ||
7764 | 89,0,327,3,90, | ||
7765 | 0,327,3,95,0, | ||
7766 | 720,12,1,34590,721, | ||
7767 | 5,63,3,109,0, | ||
7768 | 327,3,110,0,327, | ||
7769 | 3,111,0,327,3, | ||
7770 | 112,0,327,3,113, | ||
7771 | 0,327,3,114,0, | ||
7772 | 327,3,115,0,327, | ||
7773 | 3,116,0,327,3, | ||
7774 | 117,0,327,3,118, | ||
7775 | 0,327,3,119,0, | ||
7776 | 327,3,120,0,327, | ||
7777 | 3,121,0,327,3, | ||
7778 | 122,0,327,3,48, | ||
7779 | 0,327,3,49,0, | ||
7780 | 327,3,50,0,327, | ||
7781 | 3,51,0,327,3, | ||
7782 | 52,0,327,3,53, | ||
7783 | 0,327,3,54,0, | ||
7784 | 327,3,55,0,327, | ||
7785 | 3,56,0,327,3, | ||
7786 | 57,0,327,3,65, | ||
7787 | 0,327,3,66,0, | ||
7788 | 327,3,67,0,327, | ||
7789 | 3,68,0,327,3, | ||
7790 | 69,0,327,3,70, | ||
7791 | 0,327,3,71,0, | ||
7792 | 327,3,72,0,327, | ||
7793 | 3,73,0,327,3, | ||
7794 | 74,0,327,3,75, | ||
7795 | 0,327,3,76,0, | ||
7796 | 327,3,77,0,327, | ||
7797 | 3,78,0,327,3, | ||
7798 | 79,0,327,3,80, | ||
7799 | 0,327,3,81,0, | ||
7800 | 327,3,82,0,327, | ||
7801 | 3,83,0,327,3, | ||
7802 | 84,0,327,3,85, | ||
7803 | 0,327,3,86,0, | ||
7804 | 327,3,87,0,327, | ||
7805 | 3,88,0,327,3, | ||
7806 | 89,0,327,3,90, | ||
7807 | 0,327,3,95,0, | ||
7808 | 327,3,97,0,327, | ||
7809 | 3,98,0,327,3, | ||
7810 | 99,0,722,12,1, | ||
7811 | 34635,723,5,63,3, | ||
7812 | 109,0,327,3,110, | ||
7813 | 0,327,3,111,0, | ||
7814 | 724,12,1,34665,725, | ||
7815 | 5,63,3,109,0, | ||
7816 | 327,3,110,0,327, | ||
7817 | 3,111,0,327,3, | ||
7818 | 112,0,327,3,113, | ||
7819 | 0,327,3,114,0, | ||
7820 | 327,3,115,0,327, | ||
7821 | 3,116,0,327,3, | ||
7822 | 117,0,327,3,118, | ||
7823 | 0,327,3,119,0, | ||
7824 | 327,3,120,0,327, | ||
7825 | 3,121,0,327,3, | ||
7826 | 122,0,327,3,48, | ||
7827 | 0,327,3,49,0, | ||
7828 | 327,3,50,0,327, | ||
7829 | 3,51,0,327,3, | ||
7830 | 52,0,327,3,53, | ||
7831 | 0,327,3,54,0, | ||
7832 | 327,3,55,0,327, | ||
7833 | 3,56,0,327,3, | ||
7834 | 57,0,327,3,65, | ||
7835 | 0,327,3,66,0, | ||
7836 | 327,3,67,0,327, | ||
7837 | 3,68,0,327,3, | ||
7838 | 69,0,327,3,70, | ||
7839 | 0,327,3,71,0, | ||
7840 | 327,3,72,0,327, | ||
7841 | 3,73,0,327,3, | ||
7842 | 74,0,327,3,75, | ||
7843 | 0,327,3,76,0, | ||
7844 | 327,3,77,0,327, | ||
7845 | 3,78,0,327,3, | ||
7846 | 79,0,327,3,80, | ||
7847 | 0,327,3,81,0, | ||
7848 | 327,3,82,0,327, | ||
7849 | 3,83,0,327,3, | ||
7850 | 84,0,327,3,85, | ||
7851 | 0,327,3,86,0, | ||
7852 | 327,3,87,0,327, | ||
7853 | 3,88,0,327,3, | ||
7854 | 89,0,327,3,90, | ||
7855 | 0,327,3,95,0, | ||
7856 | 327,3,97,0,327, | ||
7857 | 3,98,0,327,3, | ||
7858 | 99,0,327,3,100, | ||
7859 | 0,327,3,101,0, | ||
7860 | 327,3,102,0,327, | ||
7861 | 3,103,0,327,3, | ||
7862 | 104,0,327,3,105, | ||
7863 | 0,327,3,106,0, | ||
7864 | 327,3,107,0,327, | ||
7865 | 3,108,0,726,12, | ||
7866 | 1,34719,727,5,63, | ||
7867 | 3,109,0,327,3, | ||
7868 | 110,0,327,3,111, | ||
7869 | 0,327,3,112,0, | ||
7870 | 327,3,113,0,327, | ||
7871 | 3,114,0,327,3, | ||
7872 | 115,0,327,3,116, | ||
7873 | 0,327,3,117,0, | ||
7874 | 327,3,118,0,327, | ||
7875 | 3,119,0,327,3, | ||
7876 | 120,0,327,3,121, | ||
7877 | 0,327,3,122,0, | ||
7878 | 327,3,48,0,327, | ||
7879 | 3,49,0,327,3, | ||
7880 | 50,0,327,3,51, | ||
7881 | 0,327,3,52,0, | ||
7882 | 327,3,53,0,327, | ||
7883 | 3,54,0,327,3, | ||
7884 | 55,0,327,3,56, | ||
7885 | 0,327,3,57,0, | ||
7886 | 327,3,65,0,327, | ||
7887 | 3,66,0,327,3, | ||
7888 | 67,0,327,3,68, | ||
7889 | 0,327,3,69,0, | ||
7890 | 327,3,70,0,327, | ||
7891 | 3,71,0,327,3, | ||
7892 | 72,0,327,3,73, | ||
7893 | 0,327,3,74,0, | ||
7894 | 327,3,75,0,327, | ||
7895 | 3,76,0,327,3, | ||
7896 | 77,0,327,3,78, | ||
7897 | 0,327,3,79,0, | ||
7898 | 327,3,80,0,327, | ||
7899 | 3,81,0,327,3, | ||
7900 | 82,0,327,3,83, | ||
7901 | 0,327,3,84,0, | ||
7902 | 327,3,85,0,327, | ||
7903 | 3,86,0,327,3, | ||
7904 | 87,0,327,3,88, | ||
7905 | 0,327,3,89,0, | ||
7906 | 327,3,90,0,327, | ||
7907 | 3,95,0,327,3, | ||
7908 | 97,0,327,3,98, | ||
7909 | 0,327,3,99,0, | ||
7910 | 327,3,100,0,327, | ||
7911 | 3,101,0,327,3, | ||
7912 | 102,0,327,3,103, | ||
7913 | 0,327,3,104,0, | ||
7914 | 327,3,105,0,327, | ||
7915 | 3,106,0,327,3, | ||
7916 | 107,0,327,3,108, | ||
7917 | 0,728,12,1,34773, | ||
7918 | 729,5,63,3,109, | ||
7919 | 0,327,3,110,0, | ||
7920 | 327,3,111,0,327, | ||
7921 | 3,112,0,327,3, | ||
7922 | 113,0,327,3,114, | ||
7923 | 0,327,3,115,0, | ||
7924 | 327,3,116,0,327, | ||
7925 | 3,117,0,327,3, | ||
7926 | 118,0,327,3,119, | ||
7927 | 0,327,3,120,0, | ||
7928 | 327,3,121,0,327, | ||
7929 | 3,122,0,327,3, | ||
7930 | 48,0,327,3,49, | ||
7931 | 0,327,3,50,0, | ||
7932 | 327,3,51,0,327, | ||
7933 | 3,52,0,327,3, | ||
7934 | 53,0,327,3,54, | ||
7935 | 0,327,3,55,0, | ||
7936 | 327,3,56,0,327, | ||
7937 | 3,57,0,327,3, | ||
7938 | 65,0,327,3,66, | ||
7939 | 0,327,3,67,0, | ||
7940 | 327,3,68,0,327, | ||
7941 | 3,69,0,327,3, | ||
7942 | 70,0,327,3,71, | ||
7943 | 0,327,3,72,0, | ||
7944 | 327,3,73,0,327, | ||
7945 | 3,74,0,327,3, | ||
7946 | 75,0,327,3,76, | ||
7947 | 0,327,3,77,0, | ||
7948 | 327,3,78,0,327, | ||
7949 | 3,79,0,327,3, | ||
7950 | 80,0,327,3,81, | ||
7951 | 0,327,3,82,0, | ||
7952 | 327,3,83,0,327, | ||
7953 | 3,84,0,327,3, | ||
7954 | 85,0,327,3,86, | ||
7955 | 0,327,3,87,0, | ||
7956 | 327,3,88,0,327, | ||
7957 | 3,89,0,327,3, | ||
7958 | 90,0,327,3,95, | ||
7959 | 0,327,3,97,0, | ||
7960 | 327,3,98,0,327, | ||
7961 | 3,99,0,327,3, | ||
7962 | 100,0,327,3,101, | ||
7963 | 0,327,3,102,0, | ||
7964 | 327,3,103,0,327, | ||
7965 | 3,104,0,327,3, | ||
7966 | 105,0,730,12,1, | ||
7967 | 34824,731,5,63,3, | ||
7968 | 109,0,327,3,110, | ||
7969 | 0,327,3,111,0, | ||
7970 | 327,3,112,0,327, | ||
7971 | 3,113,0,327,3, | ||
7972 | 114,0,327,3,115, | ||
7973 | 0,732,12,1,34858, | ||
7974 | 733,5,63,3,109, | ||
7975 | 0,327,3,110,0, | ||
7976 | 327,3,111,0,327, | ||
7977 | 3,112,0,327,3, | ||
7978 | 113,0,327,3,114, | ||
7979 | 0,327,3,115,0, | ||
7980 | 327,3,116,0,327, | ||
7981 | 3,117,0,327,3, | ||
7982 | 118,0,327,3,119, | ||
7983 | 0,327,3,120,0, | ||
7984 | 327,3,121,0,327, | ||
7985 | 3,122,0,327,3, | ||
7986 | 48,0,327,3,49, | ||
7987 | 0,327,3,50,0, | ||
7988 | 327,3,51,0,327, | ||
7989 | 3,52,0,327,3, | ||
7990 | 53,0,327,3,54, | ||
7991 | 0,327,3,55,0, | ||
7992 | 327,3,56,0,327, | ||
7993 | 3,57,0,327,3, | ||
7994 | 65,0,327,3,66, | ||
7995 | 0,327,3,67,0, | ||
7996 | 327,3,68,0,327, | ||
7997 | 3,69,0,327,3, | ||
7998 | 70,0,327,3,71, | ||
7999 | 0,327,3,72,0, | ||
8000 | 327,3,73,0,327, | ||
8001 | 3,74,0,327,3, | ||
8002 | 75,0,327,3,76, | ||
8003 | 0,327,3,77,0, | ||
8004 | 327,3,78,0,327, | ||
8005 | 3,79,0,327,3, | ||
8006 | 80,0,327,3,81, | ||
8007 | 0,327,3,82,0, | ||
8008 | 327,3,83,0,327, | ||
8009 | 3,84,0,327,3, | ||
8010 | 85,0,327,3,86, | ||
8011 | 0,327,3,87,0, | ||
8012 | 327,3,88,0,327, | ||
8013 | 3,89,0,327,3, | ||
8014 | 90,0,327,3,95, | ||
8015 | 0,327,3,97,0, | ||
8016 | 327,3,98,0,327, | ||
8017 | 3,99,0,327,3, | ||
8018 | 100,0,327,3,101, | ||
8019 | 0,327,3,102,0, | ||
8020 | 327,3,103,0,327, | ||
8021 | 3,104,0,327,3, | ||
8022 | 105,0,734,12,1, | ||
8023 | 34909,735,5,63,3, | ||
8024 | 109,0,327,3,110, | ||
8025 | 0,327,3,111,0, | ||
8026 | 736,12,1,34939,737, | ||
8027 | 5,63,3,109,0, | ||
8028 | 327,3,110,0,738, | ||
8029 | 12,1,34968,739,5, | ||
8030 | 63,3,109,0,327, | ||
8031 | 3,110,0,327,3, | ||
8032 | 111,0,327,3,112, | ||
8033 | 0,327,3,113,0, | ||
8034 | 327,3,114,0,327, | ||
8035 | 3,115,0,327,3, | ||
8036 | 116,0,327,3,117, | ||
8037 | 0,327,3,118,0, | ||
8038 | 327,3,119,0,327, | ||
8039 | 3,120,0,327,3, | ||
8040 | 121,0,327,3,122, | ||
8041 | 0,327,3,48,0, | ||
8042 | 327,3,49,0,327, | ||
8043 | 3,50,0,327,3, | ||
8044 | 51,0,327,3,52, | ||
8045 | 0,327,3,53,0, | ||
8046 | 327,3,54,0,327, | ||
8047 | 3,55,0,327,3, | ||
8048 | 56,0,327,3,57, | ||
8049 | 0,327,3,65,0, | ||
8050 | 327,3,66,0,327, | ||
8051 | 3,67,0,327,3, | ||
8052 | 68,0,327,3,69, | ||
8053 | 0,327,3,70,0, | ||
8054 | 327,3,71,0,327, | ||
8055 | 3,72,0,327,3, | ||
8056 | 73,0,327,3,74, | ||
8057 | 0,327,3,75,0, | ||
8058 | 327,3,76,0,327, | ||
8059 | 3,77,0,327,3, | ||
8060 | 78,0,327,3,79, | ||
8061 | 0,327,3,80,0, | ||
8062 | 327,3,81,0,327, | ||
8063 | 3,82,0,327,3, | ||
8064 | 83,0,327,3,84, | ||
8065 | 0,327,3,85,0, | ||
8066 | 327,3,86,0,327, | ||
8067 | 3,87,0,327,3, | ||
8068 | 88,0,327,3,89, | ||
8069 | 0,327,3,90,0, | ||
8070 | 327,3,95,0,740, | ||
8071 | 12,1,35054,741,5, | ||
8072 | 63,3,109,0,327, | ||
8073 | 3,110,0,327,3, | ||
8074 | 111,0,327,3,112, | ||
8075 | 0,327,3,113,0, | ||
8076 | 327,3,114,0,327, | ||
8077 | 3,115,0,742,12, | ||
8078 | 1,35088,743,5,63, | ||
8079 | 3,109,0,327,3, | ||
8080 | 110,0,327,3,111, | ||
8081 | 0,327,3,112,0, | ||
8082 | 327,3,113,0,327, | ||
8083 | 3,114,0,327,3, | ||
8084 | 115,0,327,3,116, | ||
8085 | 0,744,12,1,35123, | ||
8086 | 745,5,63,3,109, | ||
8087 | 0,327,3,110,0, | ||
8088 | 327,3,111,0,327, | ||
8089 | 3,112,0,327,3, | ||
8090 | 113,0,327,3,114, | ||
8091 | 0,327,3,115,0, | ||
8092 | 327,3,116,0,327, | ||
8093 | 3,117,0,327,3, | ||
8094 | 118,0,327,3,119, | ||
8095 | 0,327,3,120,0, | ||
8096 | 327,3,121,0,327, | ||
8097 | 3,122,0,327,3, | ||
8098 | 48,0,327,3,49, | ||
8099 | 0,327,3,50,0, | ||
8100 | 327,3,51,0,327, | ||
8101 | 3,52,0,327,3, | ||
8102 | 53,0,327,3,54, | ||
8103 | 0,327,3,55,0, | ||
8104 | 327,3,56,0,327, | ||
8105 | 3,57,0,327,3, | ||
8106 | 65,0,327,3,66, | ||
8107 | 0,327,3,67,0, | ||
8108 | 327,3,68,0,327, | ||
8109 | 3,69,0,327,3, | ||
8110 | 70,0,327,3,71, | ||
8111 | 0,327,3,72,0, | ||
8112 | 327,3,73,0,327, | ||
8113 | 3,74,0,327,3, | ||
8114 | 75,0,327,3,76, | ||
8115 | 0,327,3,77,0, | ||
8116 | 327,3,78,0,327, | ||
8117 | 3,79,0,327,3, | ||
8118 | 80,0,327,3,81, | ||
8119 | 0,327,3,82,0, | ||
8120 | 327,3,83,0,327, | ||
8121 | 3,84,0,327,3, | ||
8122 | 85,0,327,3,86, | ||
8123 | 0,327,3,87,0, | ||
8124 | 327,3,88,0,327, | ||
8125 | 3,89,0,327,3, | ||
8126 | 90,0,327,3,95, | ||
8127 | 0,327,3,97,0, | ||
8128 | 746,12,1,35166,747, | ||
8129 | 5,63,3,109,0, | ||
8130 | 327,3,110,0,327, | ||
8131 | 3,111,0,327,3, | ||
8132 | 112,0,327,3,113, | ||
8133 | 0,327,3,114,0, | ||
8134 | 748,12,1,35199,749, | ||
8135 | 5,63,3,109,0, | ||
8136 | 327,3,110,0,327, | ||
8137 | 3,111,0,327,3, | ||
8138 | 112,0,327,3,113, | ||
8139 | 0,327,3,114,0, | ||
8140 | 327,3,115,0,327, | ||
8141 | 3,116,0,750,12, | ||
8142 | 1,35234,751,5,63, | ||
8143 | 3,109,0,327,3, | ||
8144 | 110,0,327,3,111, | ||
8145 | 0,327,3,112,0, | ||
8146 | 327,3,113,0,327, | ||
8147 | 3,114,0,327,3, | ||
8148 | 115,0,327,3,116, | ||
8149 | 0,327,3,117,0, | ||
8150 | 327,3,118,0,327, | ||
8151 | 3,119,0,327,3, | ||
8152 | 120,0,327,3,121, | ||
8153 | 0,327,3,122,0, | ||
8154 | 327,3,48,0,327, | ||
8155 | 3,49,0,327,3, | ||
8156 | 50,0,327,3,51, | ||
8157 | 0,327,3,52,0, | ||
8158 | 327,3,53,0,327, | ||
8159 | 3,54,0,327,3, | ||
8160 | 55,0,327,3,56, | ||
8161 | 0,327,3,57,0, | ||
8162 | 327,3,65,0,327, | ||
8163 | 3,66,0,327,3, | ||
8164 | 67,0,327,3,68, | ||
8165 | 0,327,3,69,0, | ||
8166 | 327,3,70,0,327, | ||
8167 | 3,71,0,327,3, | ||
8168 | 72,0,327,3,73, | ||
8169 | 0,327,3,74,0, | ||
8170 | 327,3,75,0,327, | ||
8171 | 3,76,0,327,3, | ||
8172 | 77,0,327,3,78, | ||
8173 | 0,327,3,79,0, | ||
8174 | 327,3,80,0,327, | ||
8175 | 3,81,0,327,3, | ||
8176 | 82,0,327,3,83, | ||
8177 | 0,327,3,84,0, | ||
8178 | 327,3,85,0,327, | ||
8179 | 3,86,0,327,3, | ||
8180 | 87,0,327,3,88, | ||
8181 | 0,327,3,89,0, | ||
8182 | 327,3,90,0,327, | ||
8183 | 3,95,0,327,3, | ||
8184 | 97,0,327,3,98, | ||
8185 | 0,327,3,99,0, | ||
8186 | 327,3,100,0,327, | ||
8187 | 3,101,0,327,3, | ||
8188 | 102,0,327,3,103, | ||
8189 | 0,327,3,104,0, | ||
8190 | 327,3,105,0,327, | ||
8191 | 3,106,0,327,3, | ||
8192 | 107,0,327,3,108, | ||
8193 | 0,327,752,11,1, | ||
8194 | 541,0,753,4,52, | ||
8195 | 76,0,65,0,78, | ||
8196 | 0,68,0,95,0, | ||
8197 | 67,0,79,0,76, | ||
8198 | 0,76,0,73,0, | ||
8199 | 83,0,73,0,79, | ||
8200 | 0,78,0,95,0, | ||
8201 | 83,0,84,0,65, | ||
8202 | 0,82,0,84,0, | ||
8203 | 95,0,69,0,86, | ||
8204 | 0,69,0,78,0, | ||
8205 | 84,0,1,-1,3, | ||
8206 | 117,0,327,3,118, | ||
8207 | 0,327,3,119,0, | ||
8208 | 327,3,120,0,327, | ||
8209 | 3,121,0,327,3, | ||
8210 | 122,0,327,3,48, | ||
8211 | 0,327,3,49,0, | ||
8212 | 327,3,50,0,327, | ||
8213 | 3,51,0,327,3, | ||
8214 | 52,0,327,3,53, | ||
8215 | 0,327,3,54,0, | ||
8216 | 327,3,55,0,327, | ||
8217 | 3,56,0,327,3, | ||
8218 | 57,0,327,3,65, | ||
8219 | 0,327,3,66,0, | ||
8220 | 327,3,67,0,327, | ||
8221 | 3,68,0,327,3, | ||
8222 | 69,0,327,3,70, | ||
8223 | 0,327,3,71,0, | ||
8224 | 327,3,72,0,327, | ||
8225 | 3,73,0,327,3, | ||
8226 | 74,0,327,3,75, | ||
8227 | 0,327,3,76,0, | ||
8228 | 327,3,77,0,327, | ||
8229 | 3,78,0,327,3, | ||
8230 | 79,0,327,3,80, | ||
8231 | 0,327,3,81,0, | ||
8232 | 327,3,82,0,327, | ||
8233 | 3,83,0,327,3, | ||
8234 | 84,0,327,3,85, | ||
8235 | 0,327,3,86,0, | ||
8236 | 327,3,87,0,327, | ||
8237 | 3,88,0,327,3, | ||
8238 | 89,0,327,3,90, | ||
8239 | 0,327,3,95,0, | ||
8240 | 327,3,97,0,327, | ||
8241 | 3,98,0,327,3, | ||
8242 | 99,0,327,3,100, | ||
8243 | 0,327,3,101,0, | ||
8244 | 327,3,102,0,327, | ||
8245 | 3,103,0,327,3, | ||
8246 | 104,0,327,3,105, | ||
8247 | 0,327,3,106,0, | ||
8248 | 327,3,107,0,327, | ||
8249 | 3,108,0,327,754, | ||
8250 | 11,1,829,0,330, | ||
8251 | 1,-1,3,115,0, | ||
8252 | 327,3,116,0,327, | ||
8253 | 3,117,0,327,3, | ||
8254 | 118,0,327,3,119, | ||
8255 | 0,327,3,120,0, | ||
8256 | 327,3,121,0,327, | ||
8257 | 3,122,0,327,3, | ||
8258 | 48,0,327,3,49, | ||
8259 | 0,327,3,50,0, | ||
8260 | 327,3,51,0,327, | ||
8261 | 3,52,0,327,3, | ||
8262 | 53,0,327,3,54, | ||
8263 | 0,327,3,55,0, | ||
8264 | 327,3,56,0,327, | ||
8265 | 3,57,0,327,3, | ||
8266 | 65,0,327,3,66, | ||
8267 | 0,327,3,67,0, | ||
8268 | 327,3,68,0,327, | ||
8269 | 3,69,0,327,3, | ||
8270 | 70,0,327,3,71, | ||
8271 | 0,327,3,72,0, | ||
8272 | 327,3,73,0,327, | ||
8273 | 3,74,0,327,3, | ||
8274 | 75,0,327,3,76, | ||
8275 | 0,327,3,77,0, | ||
8276 | 327,3,78,0,327, | ||
8277 | 3,79,0,327,3, | ||
8278 | 80,0,327,3,81, | ||
8279 | 0,327,3,82,0, | ||
8280 | 327,3,83,0,327, | ||
8281 | 3,84,0,327,3, | ||
8282 | 85,0,327,3,86, | ||
8283 | 0,327,3,87,0, | ||
8284 | 327,3,88,0,327, | ||
8285 | 3,89,0,327,3, | ||
8286 | 90,0,327,3,95, | ||
8287 | 0,327,3,97,0, | ||
8288 | 327,3,98,0,327, | ||
8289 | 3,99,0,327,3, | ||
8290 | 100,0,327,3,101, | ||
8291 | 0,327,3,102,0, | ||
8292 | 327,3,103,0,327, | ||
8293 | 3,104,0,327,3, | ||
8294 | 105,0,327,3,106, | ||
8295 | 0,327,3,107,0, | ||
8296 | 327,3,108,0,327, | ||
8297 | 755,11,1,829,0, | ||
8298 | 330,1,-1,3,98, | ||
8299 | 0,327,3,99,0, | ||
8300 | 327,3,100,0,327, | ||
8301 | 3,101,0,327,3, | ||
8302 | 102,0,327,3,103, | ||
8303 | 0,327,3,104,0, | ||
8304 | 327,3,105,0,327, | ||
8305 | 3,106,0,327,3, | ||
8306 | 107,0,327,3,108, | ||
8307 | 0,327,756,11,1, | ||
8308 | 829,0,330,1,-1, | ||
8309 | 3,117,0,327,3, | ||
8310 | 118,0,327,3,119, | ||
8311 | 0,327,3,120,0, | ||
8312 | 327,3,121,0,327, | ||
8313 | 3,122,0,327,3, | ||
8314 | 48,0,327,3,49, | ||
8315 | 0,327,3,50,0, | ||
8316 | 327,3,51,0,327, | ||
8317 | 3,52,0,327,3, | ||
8318 | 53,0,327,3,54, | ||
8319 | 0,327,3,55,0, | ||
8320 | 327,3,56,0,327, | ||
8321 | 3,57,0,327,3, | ||
8322 | 65,0,327,3,66, | ||
8323 | 0,327,3,67,0, | ||
8324 | 327,3,68,0,327, | ||
8325 | 3,69,0,327,3, | ||
8326 | 70,0,327,3,71, | ||
8327 | 0,327,3,72,0, | ||
8328 | 327,3,73,0,327, | ||
8329 | 3,74,0,327,3, | ||
8330 | 75,0,327,3,76, | ||
8331 | 0,327,3,77,0, | ||
8332 | 327,3,78,0,327, | ||
8333 | 3,79,0,327,3, | ||
8334 | 80,0,327,3,81, | ||
8335 | 0,327,3,82,0, | ||
8336 | 327,3,83,0,327, | ||
8337 | 3,84,0,327,3, | ||
8338 | 85,0,327,3,86, | ||
8339 | 0,327,3,87,0, | ||
8340 | 327,3,88,0,327, | ||
8341 | 3,89,0,327,3, | ||
8342 | 90,0,327,3,95, | ||
8343 | 0,327,3,97,0, | ||
8344 | 327,3,98,0,327, | ||
8345 | 3,99,0,327,3, | ||
8346 | 100,0,327,3,101, | ||
8347 | 0,327,3,102,0, | ||
8348 | 327,3,103,0,327, | ||
8349 | 3,104,0,327,3, | ||
8350 | 105,0,327,3,106, | ||
8351 | 0,327,3,107,0, | ||
8352 | 327,3,108,0,327, | ||
8353 | 757,11,1,829,0, | ||
8354 | 330,1,-1,3,116, | ||
8355 | 0,327,3,117,0, | ||
8356 | 327,3,118,0,327, | ||
8357 | 3,119,0,327,3, | ||
8358 | 120,0,327,3,121, | ||
8359 | 0,327,3,122,0, | ||
8360 | 327,3,48,0,327, | ||
8361 | 3,49,0,327,3, | ||
8362 | 50,0,327,3,51, | ||
8363 | 0,327,3,52,0, | ||
8364 | 327,3,53,0,327, | ||
8365 | 3,54,0,327,3, | ||
8366 | 55,0,327,3,56, | ||
8367 | 0,327,3,57,0, | ||
8368 | 327,3,65,0,327, | ||
8369 | 3,66,0,327,3, | ||
8370 | 67,0,327,3,68, | ||
8371 | 0,327,3,69,0, | ||
8372 | 327,3,70,0,327, | ||
8373 | 3,71,0,327,3, | ||
8374 | 72,0,327,3,73, | ||
8375 | 0,327,3,74,0, | ||
8376 | 327,3,75,0,327, | ||
8377 | 3,76,0,327,3, | ||
8378 | 77,0,327,3,78, | ||
8379 | 0,327,3,79,0, | ||
8380 | 327,3,80,0,327, | ||
8381 | 3,81,0,327,3, | ||
8382 | 82,0,327,3,83, | ||
8383 | 0,327,3,84,0, | ||
8384 | 327,3,85,0,327, | ||
8385 | 3,86,0,327,3, | ||
8386 | 87,0,327,3,88, | ||
8387 | 0,327,3,89,0, | ||
8388 | 327,3,90,0,327, | ||
8389 | 3,95,0,327,3, | ||
8390 | 97,0,327,3,98, | ||
8391 | 0,327,3,99,0, | ||
8392 | 327,3,100,0,327, | ||
8393 | 3,101,0,758,12, | ||
8394 | 1,35701,759,5,63, | ||
8395 | 3,109,0,327,3, | ||
8396 | 110,0,760,12,1, | ||
8397 | 35730,761,5,63,3, | ||
8398 | 109,0,327,3,110, | ||
8399 | 0,327,3,111,0, | ||
8400 | 327,3,112,0,327, | ||
8401 | 3,113,0,327,3, | ||
8402 | 114,0,327,3,115, | ||
8403 | 0,327,3,116,0, | ||
8404 | 327,3,117,0,327, | ||
8405 | 3,118,0,327,3, | ||
8406 | 119,0,327,3,120, | ||
8407 | 0,327,3,121,0, | ||
8408 | 327,3,122,0,327, | ||
8409 | 3,48,0,327,3, | ||
8410 | 49,0,327,3,50, | ||
8411 | 0,327,3,51,0, | ||
8412 | 327,3,52,0,327, | ||
8413 | 3,53,0,327,3, | ||
8414 | 54,0,327,3,55, | ||
8415 | 0,327,3,56,0, | ||
8416 | 327,3,57,0,327, | ||
8417 | 3,65,0,327,3, | ||
8418 | 66,0,327,3,67, | ||
8419 | 0,327,3,68,0, | ||
8420 | 327,3,69,0,327, | ||
8421 | 3,70,0,327,3, | ||
8422 | 71,0,327,3,72, | ||
8423 | 0,327,3,73,0, | ||
8424 | 327,3,74,0,327, | ||
8425 | 3,75,0,327,3, | ||
8426 | 76,0,327,3,77, | ||
8427 | 0,327,3,78,0, | ||
8428 | 327,3,79,0,327, | ||
8429 | 3,80,0,327,3, | ||
8430 | 81,0,327,3,82, | ||
8431 | 0,327,3,83,0, | ||
8432 | 327,3,84,0,327, | ||
8433 | 3,85,0,327,3, | ||
8434 | 86,0,327,3,87, | ||
8435 | 0,327,3,88,0, | ||
8436 | 327,3,89,0,327, | ||
8437 | 3,90,0,327,3, | ||
8438 | 95,0,327,3,97, | ||
8439 | 0,327,3,98,0, | ||
8440 | 327,3,99,0,327, | ||
8441 | 3,100,0,762,12, | ||
8442 | 1,35776,763,5,63, | ||
8443 | 3,109,0,327,3, | ||
8444 | 110,0,327,3,111, | ||
8445 | 0,327,3,112,0, | ||
8446 | 327,3,113,0,327, | ||
8447 | 3,114,0,327,3, | ||
8448 | 115,0,327,3,116, | ||
8449 | 0,327,3,117,0, | ||
8450 | 327,3,118,0,327, | ||
8451 | 3,119,0,327,3, | ||
8452 | 120,0,327,3,121, | ||
8453 | 0,327,3,122,0, | ||
8454 | 327,3,48,0,327, | ||
8455 | 3,49,0,327,3, | ||
8456 | 50,0,327,3,51, | ||
8457 | 0,327,3,52,0, | ||
8458 | 327,3,53,0,327, | ||
8459 | 3,54,0,327,3, | ||
8460 | 55,0,327,3,56, | ||
8461 | 0,327,3,57,0, | ||
8462 | 327,3,65,0,327, | ||
8463 | 3,66,0,327,3, | ||
8464 | 67,0,327,3,68, | ||
8465 | 0,327,3,69,0, | ||
8466 | 327,3,70,0,327, | ||
8467 | 3,71,0,327,3, | ||
8468 | 72,0,327,3,73, | ||
8469 | 0,327,3,74,0, | ||
8470 | 327,3,75,0,327, | ||
8471 | 3,76,0,327,3, | ||
8472 | 77,0,327,3,78, | ||
8473 | 0,327,3,79,0, | ||
8474 | 327,3,80,0,327, | ||
8475 | 3,81,0,327,3, | ||
8476 | 82,0,327,3,83, | ||
8477 | 0,327,3,84,0, | ||
8478 | 327,3,85,0,327, | ||
8479 | 3,86,0,327,3, | ||
8480 | 87,0,327,3,88, | ||
8481 | 0,327,3,89,0, | ||
8482 | 327,3,90,0,327, | ||
8483 | 3,95,0,327,3, | ||
8484 | 97,0,327,3,98, | ||
8485 | 0,327,3,99,0, | ||
8486 | 327,3,100,0,327, | ||
8487 | 3,101,0,327,3, | ||
8488 | 102,0,327,3,103, | ||
8489 | 0,327,3,104,0, | ||
8490 | 327,3,105,0,327, | ||
8491 | 3,106,0,327,3, | ||
8492 | 107,0,327,3,108, | ||
8493 | 0,327,764,11,1, | ||
8494 | 519,0,765,4,48, | ||
8495 | 76,0,65,0,78, | ||
8496 | 0,68,0,95,0, | ||
8497 | 67,0,79,0,76, | ||
8498 | 0,76,0,73,0, | ||
8499 | 83,0,73,0,79, | ||
8500 | 0,78,0,95,0, | ||
8501 | 69,0,78,0,68, | ||
8502 | 0,95,0,69,0, | ||
8503 | 86,0,69,0,78, | ||
8504 | 0,84,0,1,-1, | ||
8505 | 3,101,0,327,3, | ||
8506 | 102,0,327,3,103, | ||
8507 | 0,327,3,104,0, | ||
8508 | 327,3,105,0,327, | ||
8509 | 3,106,0,327,3, | ||
8510 | 107,0,327,3,108, | ||
8511 | 0,327,766,11,1, | ||
8512 | 829,0,330,1,-1, | ||
8513 | 3,111,0,327,3, | ||
8514 | 112,0,327,3,113, | ||
8515 | 0,327,3,114,0, | ||
8516 | 327,3,115,0,327, | ||
8517 | 3,116,0,327,3, | ||
8518 | 117,0,327,3,118, | ||
8519 | 0,327,3,119,0, | ||
8520 | 327,3,120,0,327, | ||
8521 | 3,121,0,327,3, | ||
8522 | 122,0,327,3,48, | ||
8523 | 0,327,3,49,0, | ||
8524 | 327,3,50,0,327, | ||
8525 | 3,51,0,327,3, | ||
8526 | 52,0,327,3,53, | ||
8527 | 0,327,3,54,0, | ||
8528 | 327,3,55,0,327, | ||
8529 | 3,56,0,327,3, | ||
8530 | 57,0,327,3,65, | ||
8531 | 0,327,3,66,0, | ||
8532 | 327,3,67,0,327, | ||
8533 | 3,68,0,327,3, | ||
8534 | 69,0,327,3,70, | ||
8535 | 0,327,3,71,0, | ||
8536 | 327,3,72,0,327, | ||
8537 | 3,73,0,327,3, | ||
8538 | 74,0,327,3,75, | ||
8539 | 0,327,3,76,0, | ||
8540 | 327,3,77,0,327, | ||
8541 | 3,78,0,327,3, | ||
8542 | 79,0,327,3,80, | ||
8543 | 0,327,3,81,0, | ||
8544 | 327,3,82,0,327, | ||
8545 | 3,83,0,327,3, | ||
8546 | 84,0,327,3,85, | ||
8547 | 0,327,3,86,0, | ||
8548 | 327,3,87,0,327, | ||
8549 | 3,88,0,327,3, | ||
8550 | 89,0,327,3,90, | ||
8551 | 0,327,3,95,0, | ||
8552 | 327,3,97,0,327, | ||
8553 | 3,98,0,327,3, | ||
8554 | 99,0,327,3,100, | ||
8555 | 0,327,3,101,0, | ||
8556 | 327,3,102,0,327, | ||
8557 | 3,103,0,327,3, | ||
8558 | 104,0,327,3,105, | ||
8559 | 0,327,3,106,0, | ||
8560 | 327,3,107,0,327, | ||
8561 | 3,108,0,327,767, | ||
8562 | 11,1,829,0,330, | ||
8563 | 1,-1,3,102,0, | ||
8564 | 327,3,103,0,327, | ||
8565 | 3,104,0,327,3, | ||
8566 | 105,0,327,3,106, | ||
8567 | 0,327,3,107,0, | ||
8568 | 327,3,108,0,327, | ||
8569 | 768,11,1,829,0, | ||
8570 | 330,1,-1,3,97, | ||
8571 | 0,327,3,98,0, | ||
8572 | 327,3,99,0,327, | ||
8573 | 3,100,0,327,3, | ||
8574 | 101,0,327,3,102, | ||
8575 | 0,327,3,103,0, | ||
8576 | 327,3,104,0,327, | ||
8577 | 3,105,0,327,3, | ||
8578 | 106,0,327,3,107, | ||
8579 | 0,327,3,108,0, | ||
8580 | 327,769,11,1,501, | ||
8581 | 0,770,4,40,76, | ||
8582 | 0,65,0,78,0, | ||
8583 | 68,0,95,0,67, | ||
8584 | 0,79,0,76,0, | ||
8585 | 76,0,73,0,83, | ||
8586 | 0,73,0,79,0, | ||
8587 | 78,0,95,0,69, | ||
8588 | 0,86,0,69,0, | ||
8589 | 78,0,84,0,1, | ||
8590 | -1,3,111,0,327, | ||
8591 | 3,112,0,327,3, | ||
8592 | 113,0,327,3,114, | ||
8593 | 0,327,3,115,0, | ||
8594 | 327,3,116,0,327, | ||
8595 | 3,117,0,327,3, | ||
8596 | 118,0,327,3,119, | ||
8597 | 0,327,3,120,0, | ||
8598 | 327,3,121,0,327, | ||
8599 | 3,122,0,327,3, | ||
8600 | 48,0,327,3,49, | ||
8601 | 0,327,3,50,0, | ||
8602 | 327,3,51,0,327, | ||
8603 | 3,52,0,327,3, | ||
8604 | 53,0,327,3,54, | ||
8605 | 0,327,3,55,0, | ||
8606 | 327,3,56,0,327, | ||
8607 | 3,57,0,327,3, | ||
8608 | 65,0,327,3,66, | ||
8609 | 0,327,3,67,0, | ||
8610 | 327,3,68,0,327, | ||
8611 | 3,69,0,327,3, | ||
8612 | 70,0,327,3,71, | ||
8613 | 0,327,3,72,0, | ||
8614 | 327,3,73,0,327, | ||
8615 | 3,74,0,327,3, | ||
8616 | 75,0,327,3,76, | ||
8617 | 0,327,3,77,0, | ||
8618 | 327,3,78,0,327, | ||
8619 | 3,79,0,327,3, | ||
8620 | 80,0,327,3,81, | ||
8621 | 0,327,3,82,0, | ||
8622 | 327,3,83,0,327, | ||
8623 | 3,84,0,327,3, | ||
8624 | 85,0,327,3,86, | ||
8625 | 0,327,3,87,0, | ||
8626 | 327,3,88,0,327, | ||
8627 | 3,89,0,327,3, | ||
8628 | 90,0,327,3,95, | ||
8629 | 0,327,3,97,0, | ||
8630 | 327,3,98,0,327, | ||
8631 | 3,99,0,327,3, | ||
8632 | 100,0,327,3,101, | ||
8633 | 0,327,3,102,0, | ||
8634 | 327,3,103,0,327, | ||
8635 | 3,104,0,327,3, | ||
8636 | 105,0,327,3,106, | ||
8637 | 0,327,3,107,0, | ||
8638 | 327,3,108,0,327, | ||
8639 | 771,11,1,829,0, | ||
8640 | 330,1,-1,3,112, | ||
8641 | 0,327,3,113,0, | ||
8642 | 327,3,114,0,327, | ||
8643 | 3,115,0,327,3, | ||
8644 | 116,0,327,3,117, | ||
8645 | 0,327,3,118,0, | ||
8646 | 327,3,119,0,327, | ||
8647 | 3,120,0,327,3, | ||
8648 | 121,0,327,3,122, | ||
8649 | 0,327,3,48,0, | ||
8650 | 327,3,49,0,327, | ||
8651 | 3,50,0,327,3, | ||
8652 | 51,0,327,3,52, | ||
8653 | 0,327,3,53,0, | ||
8654 | 327,3,54,0,327, | ||
8655 | 3,55,0,327,3, | ||
8656 | 56,0,327,3,57, | ||
8657 | 0,327,3,65,0, | ||
8658 | 327,3,66,0,327, | ||
8659 | 3,67,0,327,3, | ||
8660 | 68,0,327,3,69, | ||
8661 | 0,327,3,70,0, | ||
8662 | 327,3,71,0,327, | ||
8663 | 3,72,0,327,3, | ||
8664 | 73,0,327,3,74, | ||
8665 | 0,327,3,75,0, | ||
8666 | 327,3,76,0,327, | ||
8667 | 3,77,0,327,3, | ||
8668 | 78,0,327,3,79, | ||
8669 | 0,327,3,80,0, | ||
8670 | 327,3,81,0,327, | ||
8671 | 3,82,0,327,3, | ||
8672 | 83,0,327,3,84, | ||
8673 | 0,327,3,85,0, | ||
8674 | 327,3,86,0,327, | ||
8675 | 3,87,0,327,3, | ||
8676 | 88,0,327,3,89, | ||
8677 | 0,327,3,90,0, | ||
8678 | 327,3,95,0,327, | ||
8679 | 3,97,0,327,3, | ||
8680 | 98,0,327,3,99, | ||
8681 | 0,327,3,100,0, | ||
8682 | 327,3,101,0,327, | ||
8683 | 3,102,0,327,3, | ||
8684 | 103,0,327,3,104, | ||
8685 | 0,327,3,105,0, | ||
8686 | 327,3,106,0,327, | ||
8687 | 3,107,0,327,3, | ||
8688 | 108,0,327,772,11, | ||
8689 | 1,829,0,330,1, | ||
8690 | -1,3,106,0,327, | ||
8691 | 3,107,0,327,3, | ||
8692 | 108,0,327,773,11, | ||
8693 | 1,829,0,330,1, | ||
8694 | -1,3,116,0,327, | ||
8695 | 3,117,0,327,3, | ||
8696 | 118,0,327,3,119, | ||
8697 | 0,327,3,120,0, | ||
8698 | 327,3,121,0,327, | ||
8699 | 3,122,0,327,3, | ||
8700 | 48,0,327,3,49, | ||
8701 | 0,327,3,50,0, | ||
8702 | 327,3,51,0,327, | ||
8703 | 3,52,0,327,3, | ||
8704 | 53,0,327,3,54, | ||
8705 | 0,327,3,55,0, | ||
8706 | 327,3,56,0,327, | ||
8707 | 3,57,0,327,3, | ||
8708 | 65,0,327,3,66, | ||
8709 | 0,327,3,67,0, | ||
8710 | 327,3,68,0,327, | ||
8711 | 3,69,0,327,3, | ||
8712 | 70,0,327,3,71, | ||
8713 | 0,327,3,72,0, | ||
8714 | 327,3,73,0,327, | ||
8715 | 3,74,0,327,3, | ||
8716 | 75,0,327,3,76, | ||
8717 | 0,327,3,77,0, | ||
8718 | 327,3,78,0,327, | ||
8719 | 3,79,0,327,3, | ||
8720 | 80,0,327,3,81, | ||
8721 | 0,327,3,82,0, | ||
8722 | 327,3,83,0,327, | ||
8723 | 3,84,0,327,3, | ||
8724 | 85,0,327,3,86, | ||
8725 | 0,327,3,87,0, | ||
8726 | 327,3,88,0,327, | ||
8727 | 3,89,0,327,3, | ||
8728 | 90,0,327,3,95, | ||
8729 | 0,327,3,97,0, | ||
8730 | 327,3,98,0,327, | ||
8731 | 3,99,0,327,3, | ||
8732 | 100,0,327,3,101, | ||
8733 | 0,327,3,102,0, | ||
8734 | 327,3,103,0,327, | ||
8735 | 3,104,0,327,3, | ||
8736 | 105,0,327,3,106, | ||
8737 | 0,327,3,107,0, | ||
8738 | 327,3,108,0,327, | ||
8739 | 774,11,1,829,0, | ||
8740 | 330,1,-1,3,106, | ||
8741 | 0,327,3,107,0, | ||
8742 | 327,3,108,0,327, | ||
8743 | 775,11,1,829,0, | ||
8744 | 330,1,-1,776,11, | ||
8745 | 1,829,0,330,1, | ||
8746 | -1,777,11,1,829, | ||
8747 | 0,330,1,-1,3, | ||
8748 | 112,0,327,3,113, | ||
8749 | 0,327,3,114,0, | ||
8750 | 327,3,115,0,327, | ||
8751 | 3,116,0,327,3, | ||
8752 | 117,0,327,3,118, | ||
8753 | 0,327,3,119,0, | ||
8754 | 327,3,120,0,327, | ||
8755 | 3,121,0,327,3, | ||
8756 | 122,0,327,3,48, | ||
8757 | 0,327,3,49,0, | ||
8758 | 327,3,50,0,327, | ||
8759 | 3,51,0,327,3, | ||
8760 | 52,0,327,3,53, | ||
8761 | 0,327,3,54,0, | ||
8762 | 327,3,55,0,327, | ||
8763 | 3,56,0,327,3, | ||
8764 | 57,0,327,3,65, | ||
8765 | 0,327,3,66,0, | ||
8766 | 327,3,67,0,327, | ||
8767 | 3,68,0,327,3, | ||
8768 | 69,0,327,3,70, | ||
8769 | 0,327,3,71,0, | ||
8770 | 327,3,72,0,327, | ||
8771 | 3,73,0,327,3, | ||
8772 | 74,0,327,3,75, | ||
8773 | 0,327,3,76,0, | ||
8774 | 327,3,77,0,327, | ||
8775 | 3,78,0,327,3, | ||
8776 | 79,0,327,3,80, | ||
8777 | 0,327,3,81,0, | ||
8778 | 327,3,82,0,327, | ||
8779 | 3,83,0,327,3, | ||
8780 | 84,0,327,3,85, | ||
8781 | 0,327,3,86,0, | ||
8782 | 327,3,87,0,327, | ||
8783 | 3,88,0,327,3, | ||
8784 | 89,0,327,3,90, | ||
8785 | 0,327,3,95,0, | ||
8786 | 327,3,97,0,327, | ||
8787 | 3,98,0,327,3, | ||
8788 | 99,0,327,3,100, | ||
8789 | 0,327,3,101,0, | ||
8790 | 327,3,102,0,327, | ||
8791 | 3,103,0,327,3, | ||
8792 | 104,0,327,3,105, | ||
8793 | 0,327,3,106,0, | ||
8794 | 327,3,107,0,327, | ||
8795 | 3,108,0,327,778, | ||
8796 | 11,1,829,0,330, | ||
8797 | 1,-1,3,100,0, | ||
8798 | 327,3,101,0,327, | ||
8799 | 3,102,0,327,3, | ||
8800 | 103,0,327,3,104, | ||
8801 | 0,327,3,105,0, | ||
8802 | 327,3,106,0,327, | ||
8803 | 3,107,0,327,3, | ||
8804 | 108,0,327,779,11, | ||
8805 | 1,829,0,330,1, | ||
8806 | -1,3,97,0,327, | ||
8807 | 3,98,0,327,3, | ||
8808 | 99,0,327,3,100, | ||
8809 | 0,327,3,101,0, | ||
8810 | 327,3,102,0,327, | ||
8811 | 3,103,0,327,3, | ||
8812 | 104,0,327,3,105, | ||
8813 | 0,327,3,106,0, | ||
8814 | 327,3,107,0,327, | ||
8815 | 3,108,0,327,780, | ||
8816 | 11,1,829,0,330, | ||
8817 | 1,-1,3,101,0, | ||
8818 | 327,3,102,0,327, | ||
8819 | 3,103,0,327,3, | ||
8820 | 104,0,327,3,105, | ||
8821 | 0,327,3,106,0, | ||
8822 | 327,3,107,0,327, | ||
8823 | 3,108,0,327,781, | ||
8824 | 11,1,829,0,330, | ||
8825 | 1,-1,3,111,0, | ||
8826 | 327,3,112,0,327, | ||
8827 | 3,113,0,327,3, | ||
8828 | 114,0,327,3,115, | ||
8829 | 0,327,3,116,0, | ||
8830 | 327,3,117,0,327, | ||
8831 | 3,118,0,327,3, | ||
8832 | 119,0,327,3,120, | ||
8833 | 0,327,3,121,0, | ||
8834 | 327,3,122,0,327, | ||
8835 | 3,48,0,327,3, | ||
8836 | 49,0,327,3,50, | ||
8837 | 0,327,3,51,0, | ||
8838 | 327,3,52,0,327, | ||
8839 | 3,53,0,327,3, | ||
8840 | 54,0,327,3,55, | ||
8841 | 0,327,3,56,0, | ||
8842 | 327,3,57,0,327, | ||
8843 | 3,65,0,327,3, | ||
8844 | 66,0,327,3,67, | ||
8845 | 0,327,3,68,0, | ||
8846 | 327,3,69,0,327, | ||
8847 | 3,70,0,327,3, | ||
8848 | 71,0,327,3,72, | ||
8849 | 0,327,3,73,0, | ||
8850 | 327,3,74,0,327, | ||
8851 | 3,75,0,327,3, | ||
8852 | 76,0,327,3,77, | ||
8853 | 0,327,3,78,0, | ||
8854 | 327,3,79,0,327, | ||
8855 | 3,80,0,327,3, | ||
8856 | 81,0,327,3,82, | ||
8857 | 0,327,3,83,0, | ||
8858 | 327,3,84,0,327, | ||
8859 | 3,85,0,327,3, | ||
8860 | 86,0,327,3,87, | ||
8861 | 0,327,3,88,0, | ||
8862 | 327,3,89,0,327, | ||
8863 | 3,90,0,327,3, | ||
8864 | 95,0,327,3,97, | ||
8865 | 0,327,3,98,0, | ||
8866 | 327,3,99,0,327, | ||
8867 | 3,100,0,327,3, | ||
8868 | 101,0,327,3,102, | ||
8869 | 0,327,3,103,0, | ||
8870 | 327,3,104,0,327, | ||
8871 | 3,105,0,327,3, | ||
8872 | 106,0,327,3,107, | ||
8873 | 0,327,3,108,0, | ||
8874 | 327,782,11,1,829, | ||
8875 | 0,330,1,-1,3, | ||
8876 | 98,0,327,3,99, | ||
8877 | 0,327,3,100,0, | ||
8878 | 327,3,101,0,327, | ||
8879 | 3,102,0,327,3, | ||
8880 | 103,0,327,3,104, | ||
8881 | 0,327,3,105,0, | ||
8882 | 783,12,1,37077,784, | ||
8883 | 5,63,3,109,0, | ||
8884 | 327,3,110,0,785, | ||
8885 | 12,1,37106,786,5, | ||
8886 | 63,3,109,0,327, | ||
8887 | 3,110,0,327,3, | ||
8888 | 111,0,327,3,112, | ||
8889 | 0,327,3,113,0, | ||
8890 | 327,3,114,0,327, | ||
8891 | 3,115,0,327,3, | ||
8892 | 116,0,327,3,117, | ||
8893 | 0,327,3,118,0, | ||
8894 | 327,3,119,0,327, | ||
8895 | 3,120,0,327,3, | ||
8896 | 121,0,327,3,122, | ||
8897 | 0,327,3,48,0, | ||
8898 | 327,3,49,0,327, | ||
8899 | 3,50,0,327,3, | ||
8900 | 51,0,327,3,52, | ||
8901 | 0,327,3,53,0, | ||
8902 | 327,3,54,0,327, | ||
8903 | 3,55,0,327,3, | ||
8904 | 56,0,327,3,57, | ||
8905 | 0,327,3,65,0, | ||
8906 | 327,3,66,0,327, | ||
8907 | 3,67,0,327,3, | ||
8908 | 68,0,327,3,69, | ||
8909 | 0,327,3,70,0, | ||
8910 | 327,3,71,0,327, | ||
8911 | 3,72,0,327,3, | ||
8912 | 73,0,327,3,74, | ||
8913 | 0,327,3,75,0, | ||
8914 | 327,3,76,0,327, | ||
8915 | 3,77,0,327,3, | ||
8916 | 78,0,327,3,79, | ||
8917 | 0,327,3,80,0, | ||
8918 | 327,3,81,0,327, | ||
8919 | 3,82,0,327,3, | ||
8920 | 83,0,327,3,84, | ||
8921 | 0,327,3,85,0, | ||
8922 | 327,3,86,0,327, | ||
8923 | 3,87,0,327,3, | ||
8924 | 88,0,327,3,89, | ||
8925 | 0,327,3,90,0, | ||
8926 | 327,3,95,0,327, | ||
8927 | 3,97,0,327,3, | ||
8928 | 98,0,327,3,99, | ||
8929 | 0,327,3,100,0, | ||
8930 | 327,3,101,0,327, | ||
8931 | 3,102,0,327,3, | ||
8932 | 103,0,327,3,104, | ||
8933 | 0,327,3,105,0, | ||
8934 | 327,3,106,0,327, | ||
8935 | 3,107,0,787,12, | ||
8936 | 1,37159,788,5,63, | ||
8937 | 3,109,0,327,3, | ||
8938 | 110,0,327,3,111, | ||
8939 | 0,327,3,112,0, | ||
8940 | 327,3,113,0,327, | ||
8941 | 3,114,0,327,3, | ||
8942 | 115,0,327,3,116, | ||
8943 | 0,327,3,117,0, | ||
8944 | 327,3,118,0,327, | ||
8945 | 3,119,0,327,3, | ||
8946 | 120,0,327,3,121, | ||
8947 | 0,327,3,122,0, | ||
8948 | 327,3,48,0,327, | ||
8949 | 3,49,0,327,3, | ||
8950 | 50,0,327,3,51, | ||
8951 | 0,327,3,52,0, | ||
8952 | 327,3,53,0,327, | ||
8953 | 3,54,0,327,3, | ||
8954 | 55,0,327,3,56, | ||
8955 | 0,327,3,57,0, | ||
8956 | 327,3,65,0,327, | ||
8957 | 3,66,0,327,3, | ||
8958 | 67,0,327,3,68, | ||
8959 | 0,327,3,69,0, | ||
8960 | 327,3,70,0,327, | ||
8961 | 3,71,0,327,3, | ||
8962 | 72,0,327,3,73, | ||
8963 | 0,327,3,74,0, | ||
8964 | 327,3,75,0,327, | ||
8965 | 3,76,0,327,3, | ||
8966 | 77,0,327,3,78, | ||
8967 | 0,327,3,79,0, | ||
8968 | 327,3,80,0,327, | ||
8969 | 3,81,0,327,3, | ||
8970 | 82,0,327,3,83, | ||
8971 | 0,327,3,84,0, | ||
8972 | 327,3,85,0,327, | ||
8973 | 3,86,0,327,3, | ||
8974 | 87,0,327,3,88, | ||
8975 | 0,327,3,89,0, | ||
8976 | 327,3,90,0,327, | ||
8977 | 3,95,0,789,12, | ||
8978 | 1,37245,790,5,63, | ||
8979 | 3,109,0,791,12, | ||
8980 | 1,37273,792,5,63, | ||
8981 | 3,109,0,327,3, | ||
8982 | 110,0,327,3,111, | ||
8983 | 0,327,3,112,0, | ||
8984 | 327,3,113,0,327, | ||
8985 | 3,114,0,327,3, | ||
8986 | 115,0,327,3,116, | ||
8987 | 0,327,3,117,0, | ||
8988 | 327,3,118,0,327, | ||
8989 | 3,119,0,327,3, | ||
8990 | 120,0,327,3,121, | ||
8991 | 0,327,3,122,0, | ||
8992 | 327,3,48,0,327, | ||
8993 | 3,49,0,327,3, | ||
8994 | 50,0,327,3,51, | ||
8995 | 0,327,3,52,0, | ||
8996 | 327,3,53,0,327, | ||
8997 | 3,54,0,327,3, | ||
8998 | 55,0,327,3,56, | ||
8999 | 0,327,3,57,0, | ||
9000 | 327,3,65,0,327, | ||
9001 | 3,66,0,327,3, | ||
9002 | 67,0,327,3,68, | ||
9003 | 0,327,3,69,0, | ||
9004 | 327,3,70,0,327, | ||
9005 | 3,71,0,327,3, | ||
9006 | 72,0,327,3,73, | ||
9007 | 0,327,3,74,0, | ||
9008 | 327,3,75,0,327, | ||
9009 | 3,76,0,327,3, | ||
9010 | 77,0,327,3,78, | ||
9011 | 0,327,3,79,0, | ||
9012 | 327,3,80,0,327, | ||
9013 | 3,81,0,327,3, | ||
9014 | 82,0,327,3,83, | ||
9015 | 0,327,3,84,0, | ||
9016 | 327,3,85,0,327, | ||
9017 | 3,86,0,327,3, | ||
9018 | 87,0,327,3,88, | ||
9019 | 0,327,3,89,0, | ||
9020 | 327,3,90,0,327, | ||
9021 | 3,95,0,327,3, | ||
9022 | 97,0,327,3,98, | ||
9023 | 0,327,3,99,0, | ||
9024 | 327,3,100,0,327, | ||
9025 | 3,101,0,793,12, | ||
9026 | 1,37320,794,5,63, | ||
9027 | 3,109,0,327,3, | ||
9028 | 110,0,327,3,111, | ||
9029 | 0,327,3,112,0, | ||
9030 | 327,3,113,0,327, | ||
9031 | 3,114,0,327,3, | ||
9032 | 115,0,795,12,1, | ||
9033 | 37354,796,5,63,3, | ||
9034 | 109,0,327,3,110, | ||
9035 | 0,327,3,111,0, | ||
9036 | 327,3,112,0,327, | ||
9037 | 3,113,0,327,3, | ||
9038 | 114,0,327,3,115, | ||
9039 | 0,797,12,1,37388, | ||
9040 | 798,5,63,3,109, | ||
9041 | 0,327,3,110,0, | ||
9042 | 327,3,111,0,327, | ||
9043 | 3,112,0,327,3, | ||
9044 | 113,0,327,3,114, | ||
9045 | 0,327,3,115,0, | ||
9046 | 327,3,116,0,327, | ||
9047 | 3,117,0,327,3, | ||
9048 | 118,0,327,3,119, | ||
9049 | 0,327,3,120,0, | ||
9050 | 327,3,121,0,327, | ||
9051 | 3,122,0,327,3, | ||
9052 | 48,0,327,3,49, | ||
9053 | 0,327,3,50,0, | ||
9054 | 327,3,51,0,327, | ||
9055 | 3,52,0,327,3, | ||
9056 | 53,0,327,3,54, | ||
9057 | 0,327,3,55,0, | ||
9058 | 327,3,56,0,327, | ||
9059 | 3,57,0,327,3, | ||
9060 | 65,0,327,3,66, | ||
9061 | 0,327,3,67,0, | ||
9062 | 327,3,68,0,327, | ||
9063 | 3,69,0,327,3, | ||
9064 | 70,0,327,3,71, | ||
9065 | 0,327,3,72,0, | ||
9066 | 327,3,73,0,327, | ||
9067 | 3,74,0,327,3, | ||
9068 | 75,0,327,3,76, | ||
9069 | 0,327,3,77,0, | ||
9070 | 327,3,78,0,327, | ||
9071 | 3,79,0,327,3, | ||
9072 | 80,0,327,3,81, | ||
9073 | 0,327,3,82,0, | ||
9074 | 327,3,83,0,327, | ||
9075 | 3,84,0,327,3, | ||
9076 | 85,0,327,3,86, | ||
9077 | 0,327,3,87,0, | ||
9078 | 327,3,88,0,327, | ||
9079 | 3,89,0,327,3, | ||
9080 | 90,0,327,3,95, | ||
9081 | 0,327,3,97,0, | ||
9082 | 799,12,1,37431,800, | ||
9083 | 5,63,3,109,0, | ||
9084 | 327,3,110,0,327, | ||
9085 | 3,111,0,327,3, | ||
9086 | 112,0,327,3,113, | ||
9087 | 0,327,3,114,0, | ||
9088 | 327,3,115,0,327, | ||
9089 | 3,116,0,327,3, | ||
9090 | 117,0,327,3,118, | ||
9091 | 0,327,3,119,0, | ||
9092 | 327,3,120,0,327, | ||
9093 | 3,121,0,327,3, | ||
9094 | 122,0,327,3,48, | ||
9095 | 0,327,3,49,0, | ||
9096 | 327,3,50,0,327, | ||
9097 | 3,51,0,327,3, | ||
9098 | 52,0,327,3,53, | ||
9099 | 0,327,3,54,0, | ||
9100 | 327,3,55,0,327, | ||
9101 | 3,56,0,327,3, | ||
9102 | 57,0,327,3,65, | ||
9103 | 0,327,3,66,0, | ||
9104 | 327,3,67,0,327, | ||
9105 | 3,68,0,327,3, | ||
9106 | 69,0,327,3,70, | ||
9107 | 0,327,3,71,0, | ||
9108 | 327,3,72,0,327, | ||
9109 | 3,73,0,327,3, | ||
9110 | 74,0,327,3,75, | ||
9111 | 0,327,3,76,0, | ||
9112 | 327,3,77,0,327, | ||
9113 | 3,78,0,327,3, | ||
9114 | 79,0,327,3,80, | ||
9115 | 0,327,3,81,0, | ||
9116 | 327,3,82,0,327, | ||
9117 | 3,83,0,327,3, | ||
9118 | 84,0,327,3,85, | ||
9119 | 0,327,3,86,0, | ||
9120 | 327,3,87,0,327, | ||
9121 | 3,88,0,327,3, | ||
9122 | 89,0,327,3,90, | ||
9123 | 0,327,3,95,0, | ||
9124 | 327,3,97,0,327, | ||
9125 | 3,98,0,327,3, | ||
9126 | 99,0,327,3,100, | ||
9127 | 0,327,3,101,0, | ||
9128 | 327,3,102,0,327, | ||
9129 | 3,103,0,801,12, | ||
9130 | 1,37480,802,5,63, | ||
9131 | 3,109,0,327,3, | ||
9132 | 110,0,327,3,111, | ||
9133 | 0,327,3,112,0, | ||
9134 | 327,3,113,0,327, | ||
9135 | 3,114,0,327,3, | ||
9136 | 115,0,327,3,116, | ||
9137 | 0,327,3,117,0, | ||
9138 | 327,3,118,0,327, | ||
9139 | 3,119,0,327,3, | ||
9140 | 120,0,327,3,121, | ||
9141 | 0,327,3,122,0, | ||
9142 | 327,3,48,0,327, | ||
9143 | 3,49,0,327,3, | ||
9144 | 50,0,327,3,51, | ||
9145 | 0,327,3,52,0, | ||
9146 | 327,3,53,0,327, | ||
9147 | 3,54,0,327,3, | ||
9148 | 55,0,327,3,56, | ||
9149 | 0,327,3,57,0, | ||
9150 | 327,3,65,0,327, | ||
9151 | 3,66,0,327,3, | ||
9152 | 67,0,327,3,68, | ||
9153 | 0,327,3,69,0, | ||
9154 | 327,3,70,0,327, | ||
9155 | 3,71,0,327,3, | ||
9156 | 72,0,327,3,73, | ||
9157 | 0,327,3,74,0, | ||
9158 | 327,3,75,0,327, | ||
9159 | 3,76,0,327,3, | ||
9160 | 77,0,327,3,78, | ||
9161 | 0,327,3,79,0, | ||
9162 | 327,3,80,0,327, | ||
9163 | 3,81,0,327,3, | ||
9164 | 82,0,327,3,83, | ||
9165 | 0,327,3,84,0, | ||
9166 | 327,3,85,0,327, | ||
9167 | 3,86,0,327,3, | ||
9168 | 87,0,327,3,88, | ||
9169 | 0,327,3,89,0, | ||
9170 | 327,3,90,0,327, | ||
9171 | 3,95,0,327,3, | ||
9172 | 97,0,327,3,98, | ||
9173 | 0,327,3,99,0, | ||
9174 | 327,3,100,0,327, | ||
9175 | 3,101,0,803,12, | ||
9176 | 1,37527,804,5,63, | ||
9177 | 3,109,0,327,3, | ||
9178 | 110,0,327,3,111, | ||
9179 | 0,327,3,112,0, | ||
9180 | 327,3,113,0,327, | ||
9181 | 3,114,0,327,3, | ||
9182 | 115,0,327,3,116, | ||
9183 | 0,327,3,117,0, | ||
9184 | 327,3,118,0,327, | ||
9185 | 3,119,0,327,3, | ||
9186 | 120,0,327,3,121, | ||
9187 | 0,327,3,122,0, | ||
9188 | 327,3,48,0,327, | ||
9189 | 3,49,0,327,3, | ||
9190 | 50,0,327,3,51, | ||
9191 | 0,327,3,52,0, | ||
9192 | 327,3,53,0,327, | ||
9193 | 3,54,0,327,3, | ||
9194 | 55,0,327,3,56, | ||
9195 | 0,327,3,57,0, | ||
9196 | 327,3,65,0,327, | ||
9197 | 3,66,0,327,3, | ||
9198 | 67,0,327,3,68, | ||
9199 | 0,327,3,69,0, | ||
9200 | 327,3,70,0,327, | ||
9201 | 3,71,0,327,3, | ||
9202 | 72,0,327,3,73, | ||
9203 | 0,327,3,74,0, | ||
9204 | 327,3,75,0,327, | ||
9205 | 3,76,0,327,3, | ||
9206 | 77,0,327,3,78, | ||
9207 | 0,327,3,79,0, | ||
9208 | 327,3,80,0,327, | ||
9209 | 3,81,0,327,3, | ||
9210 | 82,0,327,3,83, | ||
9211 | 0,327,3,84,0, | ||
9212 | 327,3,85,0,327, | ||
9213 | 3,86,0,327,3, | ||
9214 | 87,0,327,3,88, | ||
9215 | 0,327,3,89,0, | ||
9216 | 327,3,90,0,327, | ||
9217 | 3,95,0,327,3, | ||
9218 | 97,0,327,3,98, | ||
9219 | 0,327,3,99,0, | ||
9220 | 327,3,100,0,327, | ||
9221 | 3,101,0,327,3, | ||
9222 | 102,0,327,3,103, | ||
9223 | 0,327,3,104,0, | ||
9224 | 327,3,105,0,327, | ||
9225 | 3,106,0,327,3, | ||
9226 | 107,0,327,3,108, | ||
9227 | 0,327,805,11,1, | ||
9228 | 565,0,806,4,36, | ||
9229 | 76,0,73,0,78, | ||
9230 | 0,75,0,95,0, | ||
9231 | 77,0,69,0,83, | ||
9232 | 0,83,0,65,0, | ||
9233 | 71,0,69,0,95, | ||
9234 | 0,69,0,86,0, | ||
9235 | 69,0,78,0,84, | ||
9236 | 0,1,-1,3,102, | ||
9237 | 0,327,3,103,0, | ||
9238 | 327,3,104,0,327, | ||
9239 | 3,105,0,327,3, | ||
9240 | 106,0,327,3,107, | ||
9241 | 0,327,3,108,0, | ||
9242 | 327,807,11,1,829, | ||
9243 | 0,330,1,-1,3, | ||
9244 | 104,0,327,3,105, | ||
9245 | 0,327,3,106,0, | ||
9246 | 327,3,107,0,327, | ||
9247 | 3,108,0,327,808, | ||
9248 | 11,1,829,0,330, | ||
9249 | 1,-1,3,98,0, | ||
9250 | 327,3,99,0,327, | ||
9251 | 3,100,0,327,3, | ||
9252 | 101,0,327,3,102, | ||
9253 | 0,327,3,103,0, | ||
9254 | 327,3,104,0,327, | ||
9255 | 3,105,0,327,3, | ||
9256 | 106,0,327,3,107, | ||
9257 | 0,327,3,108,0, | ||
9258 | 327,809,11,1,829, | ||
9259 | 0,330,1,-1,3, | ||
9260 | 116,0,327,3,117, | ||
9261 | 0,327,3,118,0, | ||
9262 | 327,3,119,0,327, | ||
9263 | 3,120,0,327,3, | ||
9264 | 121,0,327,3,122, | ||
9265 | 0,327,3,48,0, | ||
9266 | 327,3,49,0,327, | ||
9267 | 3,50,0,327,3, | ||
9268 | 51,0,327,3,52, | ||
9269 | 0,327,3,53,0, | ||
9270 | 327,3,54,0,327, | ||
9271 | 3,55,0,327,3, | ||
9272 | 56,0,327,3,57, | ||
9273 | 0,327,3,65,0, | ||
9274 | 327,3,66,0,327, | ||
9275 | 3,67,0,327,3, | ||
9276 | 68,0,327,3,69, | ||
9277 | 0,327,3,70,0, | ||
9278 | 327,3,71,0,327, | ||
9279 | 3,72,0,327,3, | ||
9280 | 73,0,327,3,74, | ||
9281 | 0,327,3,75,0, | ||
9282 | 327,3,76,0,327, | ||
9283 | 3,77,0,327,3, | ||
9284 | 78,0,327,3,79, | ||
9285 | 0,327,3,80,0, | ||
9286 | 327,3,81,0,327, | ||
9287 | 3,82,0,327,3, | ||
9288 | 83,0,327,3,84, | ||
9289 | 0,327,3,85,0, | ||
9290 | 327,3,86,0,327, | ||
9291 | 3,87,0,327,3, | ||
9292 | 88,0,327,3,89, | ||
9293 | 0,327,3,90,0, | ||
9294 | 327,3,95,0,327, | ||
9295 | 3,97,0,327,3, | ||
9296 | 98,0,327,3,99, | ||
9297 | 0,327,3,100,0, | ||
9298 | 327,3,101,0,327, | ||
9299 | 3,102,0,327,3, | ||
9300 | 103,0,327,3,104, | ||
9301 | 0,327,3,105,0, | ||
9302 | 327,3,106,0,327, | ||
9303 | 3,107,0,327,3, | ||
9304 | 108,0,327,810,11, | ||
9305 | 1,829,0,330,1, | ||
9306 | -1,3,116,0,327, | ||
9307 | 3,117,0,327,3, | ||
9308 | 118,0,327,3,119, | ||
9309 | 0,327,3,120,0, | ||
9310 | 327,3,121,0,327, | ||
9311 | 3,122,0,327,3, | ||
9312 | 48,0,327,3,49, | ||
9313 | 0,327,3,50,0, | ||
9314 | 327,3,51,0,327, | ||
9315 | 3,52,0,327,3, | ||
9316 | 53,0,327,3,54, | ||
9317 | 0,327,3,55,0, | ||
9318 | 327,3,56,0,327, | ||
9319 | 3,57,0,327,3, | ||
9320 | 65,0,327,3,66, | ||
9321 | 0,327,3,67,0, | ||
9322 | 327,3,68,0,327, | ||
9323 | 3,69,0,327,3, | ||
9324 | 70,0,327,3,71, | ||
9325 | 0,327,3,72,0, | ||
9326 | 327,3,73,0,327, | ||
9327 | 3,74,0,327,3, | ||
9328 | 75,0,327,3,76, | ||
9329 | 0,327,3,77,0, | ||
9330 | 327,3,78,0,327, | ||
9331 | 3,79,0,327,3, | ||
9332 | 80,0,327,3,81, | ||
9333 | 0,327,3,82,0, | ||
9334 | 327,3,83,0,327, | ||
9335 | 3,84,0,327,3, | ||
9336 | 85,0,327,3,86, | ||
9337 | 0,327,3,87,0, | ||
9338 | 327,3,88,0,327, | ||
9339 | 3,89,0,327,3, | ||
9340 | 90,0,327,3,95, | ||
9341 | 0,327,3,97,0, | ||
9342 | 327,3,98,0,327, | ||
9343 | 3,99,0,327,3, | ||
9344 | 100,0,327,3,101, | ||
9345 | 0,327,3,102,0, | ||
9346 | 327,3,103,0,327, | ||
9347 | 3,104,0,327,3, | ||
9348 | 105,0,327,3,106, | ||
9349 | 0,327,3,107,0, | ||
9350 | 327,3,108,0,327, | ||
9351 | 811,11,1,829,0, | ||
9352 | 330,1,-1,3,102, | ||
9353 | 0,327,3,103,0, | ||
9354 | 327,3,104,0,327, | ||
9355 | 3,105,0,327,3, | ||
9356 | 106,0,327,3,107, | ||
9357 | 0,327,3,108,0, | ||
9358 | 327,812,11,1,829, | ||
9359 | 0,330,1,-1,3, | ||
9360 | 110,0,327,3,111, | ||
9361 | 0,327,3,112,0, | ||
9362 | 327,3,113,0,327, | ||
9363 | 3,114,0,327,3, | ||
9364 | 115,0,327,3,116, | ||
9365 | 0,327,3,117,0, | ||
9366 | 327,3,118,0,327, | ||
9367 | 3,119,0,327,3, | ||
9368 | 120,0,327,3,121, | ||
9369 | 0,327,3,122,0, | ||
9370 | 327,3,48,0,327, | ||
9371 | 3,49,0,327,3, | ||
9372 | 50,0,327,3,51, | ||
9373 | 0,327,3,52,0, | ||
9374 | 327,3,53,0,327, | ||
9375 | 3,54,0,327,3, | ||
9376 | 55,0,327,3,56, | ||
9377 | 0,327,3,57,0, | ||
9378 | 327,3,65,0,327, | ||
9379 | 3,66,0,327,3, | ||
9380 | 67,0,327,3,68, | ||
9381 | 0,327,3,69,0, | ||
9382 | 327,3,70,0,327, | ||
9383 | 3,71,0,327,3, | ||
9384 | 72,0,327,3,73, | ||
9385 | 0,327,3,74,0, | ||
9386 | 327,3,75,0,327, | ||
9387 | 3,76,0,327,3, | ||
9388 | 77,0,327,3,78, | ||
9389 | 0,327,3,79,0, | ||
9390 | 327,3,80,0,327, | ||
9391 | 3,81,0,327,3, | ||
9392 | 82,0,327,3,83, | ||
9393 | 0,327,3,84,0, | ||
9394 | 327,3,85,0,327, | ||
9395 | 3,86,0,327,3, | ||
9396 | 87,0,327,3,88, | ||
9397 | 0,327,3,89,0, | ||
9398 | 327,3,90,0,327, | ||
9399 | 3,95,0,327,3, | ||
9400 | 97,0,327,3,98, | ||
9401 | 0,327,3,99,0, | ||
9402 | 327,3,100,0,327, | ||
9403 | 3,101,0,327,3, | ||
9404 | 102,0,327,3,103, | ||
9405 | 0,327,3,104,0, | ||
9406 | 327,3,105,0,327, | ||
9407 | 3,106,0,327,3, | ||
9408 | 107,0,327,3,108, | ||
9409 | 0,327,813,11,1, | ||
9410 | 829,0,330,1,-1, | ||
9411 | 3,97,0,327,3, | ||
9412 | 98,0,327,3,99, | ||
9413 | 0,327,3,100,0, | ||
9414 | 327,3,101,0,327, | ||
9415 | 3,102,0,327,3, | ||
9416 | 103,0,327,3,104, | ||
9417 | 0,327,3,105,0, | ||
9418 | 327,3,106,0,327, | ||
9419 | 3,107,0,327,3, | ||
9420 | 108,0,327,814,11, | ||
9421 | 1,829,0,330,1, | ||
9422 | -1,3,108,0,327, | ||
9423 | 815,11,1,829,0, | ||
9424 | 330,1,-1,3,111, | ||
9425 | 0,327,3,112,0, | ||
9426 | 327,3,113,0,327, | ||
9427 | 3,114,0,327,3, | ||
9428 | 115,0,816,12,1, | ||
9429 | 38311,817,5,63,3, | ||
9430 | 109,0,327,3,110, | ||
9431 | 0,327,3,111,0, | ||
9432 | 327,3,112,0,327, | ||
9433 | 3,113,0,327,3, | ||
9434 | 114,0,327,3,115, | ||
9435 | 0,327,3,116,0, | ||
9436 | 818,12,1,38346,819, | ||
9437 | 5,63,3,109,0, | ||
9438 | 327,3,110,0,327, | ||
9439 | 3,111,0,327,3, | ||
9440 | 112,0,327,3,113, | ||
9441 | 0,327,3,114,0, | ||
9442 | 327,3,115,0,327, | ||
9443 | 3,116,0,327,3, | ||
9444 | 117,0,327,3,118, | ||
9445 | 0,327,3,119,0, | ||
9446 | 327,3,120,0,327, | ||
9447 | 3,121,0,327,3, | ||
9448 | 122,0,327,3,48, | ||
9449 | 0,327,3,49,0, | ||
9450 | 327,3,50,0,327, | ||
9451 | 3,51,0,327,3, | ||
9452 | 52,0,327,3,53, | ||
9453 | 0,327,3,54,0, | ||
9454 | 327,3,55,0,327, | ||
9455 | 3,56,0,327,3, | ||
9456 | 57,0,327,3,65, | ||
9457 | 0,327,3,66,0, | ||
9458 | 327,3,67,0,327, | ||
9459 | 3,68,0,327,3, | ||
9460 | 69,0,327,3,70, | ||
9461 | 0,327,3,71,0, | ||
9462 | 327,3,72,0,327, | ||
9463 | 3,73,0,327,3, | ||
9464 | 74,0,327,3,75, | ||
9465 | 0,327,3,76,0, | ||
9466 | 327,3,77,0,327, | ||
9467 | 3,78,0,327,3, | ||
9468 | 79,0,327,3,80, | ||
9469 | 0,327,3,81,0, | ||
9470 | 327,3,82,0,327, | ||
9471 | 3,83,0,327,3, | ||
9472 | 84,0,327,3,85, | ||
9473 | 0,327,3,86,0, | ||
9474 | 327,3,87,0,327, | ||
9475 | 3,88,0,327,3, | ||
9476 | 89,0,327,3,90, | ||
9477 | 0,327,3,95,0, | ||
9478 | 327,3,97,0,327, | ||
9479 | 3,98,0,327,3, | ||
9480 | 99,0,327,3,100, | ||
9481 | 0,327,3,101,0, | ||
9482 | 820,12,1,38393,821, | ||
9483 | 5,63,3,109,0, | ||
9484 | 327,3,110,0,822, | ||
9485 | 12,1,38422,823,5, | ||
9486 | 63,3,109,0,327, | ||
9487 | 3,110,0,327,3, | ||
9488 | 111,0,327,3,112, | ||
9489 | 0,327,3,113,0, | ||
9490 | 327,3,114,0,327, | ||
9491 | 3,115,0,327,3, | ||
9492 | 116,0,327,3,117, | ||
9493 | 0,327,3,118,0, | ||
9494 | 327,3,119,0,327, | ||
9495 | 3,120,0,327,3, | ||
9496 | 121,0,327,3,122, | ||
9497 | 0,327,3,48,0, | ||
9498 | 327,3,49,0,327, | ||
9499 | 3,50,0,327,3, | ||
9500 | 51,0,327,3,52, | ||
9501 | 0,327,3,53,0, | ||
9502 | 327,3,54,0,327, | ||
9503 | 3,55,0,327,3, | ||
9504 | 56,0,327,3,57, | ||
9505 | 0,327,3,65,0, | ||
9506 | 327,3,66,0,327, | ||
9507 | 3,67,0,327,3, | ||
9508 | 68,0,327,3,69, | ||
9509 | 0,327,3,70,0, | ||
9510 | 327,3,71,0,327, | ||
9511 | 3,72,0,327,3, | ||
9512 | 73,0,327,3,74, | ||
9513 | 0,327,3,75,0, | ||
9514 | 327,3,76,0,327, | ||
9515 | 3,77,0,327,3, | ||
9516 | 78,0,327,3,79, | ||
9517 | 0,327,3,80,0, | ||
9518 | 327,3,81,0,327, | ||
9519 | 3,82,0,327,3, | ||
9520 | 83,0,327,3,84, | ||
9521 | 0,327,3,85,0, | ||
9522 | 327,3,86,0,327, | ||
9523 | 3,87,0,327,3, | ||
9524 | 88,0,327,3,89, | ||
9525 | 0,327,3,90,0, | ||
9526 | 327,3,95,0,327, | ||
9527 | 3,97,0,327,3, | ||
9528 | 98,0,327,3,99, | ||
9529 | 0,327,3,100,0, | ||
9530 | 327,3,101,0,327, | ||
9531 | 3,102,0,327,3, | ||
9532 | 103,0,327,3,104, | ||
9533 | 0,327,3,105,0, | ||
9534 | 327,3,106,0,327, | ||
9535 | 3,107,0,327,3, | ||
9536 | 108,0,327,824,11, | ||
9537 | 1,581,0,825,4, | ||
9538 | 24,76,0,73,0, | ||
9539 | 83,0,84,0,69, | ||
9540 | 0,78,0,95,0, | ||
9541 | 69,0,86,0,69, | ||
9542 | 0,78,0,84,0, | ||
9543 | 1,-1,3,111,0, | ||
9544 | 327,3,112,0,327, | ||
9545 | 3,113,0,327,3, | ||
9546 | 114,0,327,3,115, | ||
9547 | 0,327,3,116,0, | ||
9548 | 327,3,117,0,327, | ||
9549 | 3,118,0,327,3, | ||
9550 | 119,0,327,3,120, | ||
9551 | 0,327,3,121,0, | ||
9552 | 327,3,122,0,327, | ||
9553 | 3,48,0,327,3, | ||
9554 | 49,0,327,3,50, | ||
9555 | 0,327,3,51,0, | ||
9556 | 327,3,52,0,327, | ||
9557 | 3,53,0,327,3, | ||
9558 | 54,0,327,3,55, | ||
9559 | 0,327,3,56,0, | ||
9560 | 327,3,57,0,327, | ||
9561 | 3,65,0,327,3, | ||
9562 | 66,0,327,3,67, | ||
9563 | 0,327,3,68,0, | ||
9564 | 327,3,69,0,327, | ||
9565 | 3,70,0,327,3, | ||
9566 | 71,0,327,3,72, | ||
9567 | 0,327,3,73,0, | ||
9568 | 327,3,74,0,327, | ||
9569 | 3,75,0,327,3, | ||
9570 | 76,0,327,3,77, | ||
9571 | 0,327,3,78,0, | ||
9572 | 327,3,79,0,327, | ||
9573 | 3,80,0,327,3, | ||
9574 | 81,0,327,3,82, | ||
9575 | 0,327,3,83,0, | ||
9576 | 327,3,84,0,327, | ||
9577 | 3,85,0,327,3, | ||
9578 | 86,0,327,3,87, | ||
9579 | 0,327,3,88,0, | ||
9580 | 327,3,89,0,327, | ||
9581 | 3,90,0,327,3, | ||
9582 | 95,0,327,3,97, | ||
9583 | 0,327,3,98,0, | ||
9584 | 327,3,99,0,327, | ||
9585 | 3,100,0,327,3, | ||
9586 | 101,0,327,3,102, | ||
9587 | 0,327,3,103,0, | ||
9588 | 327,3,104,0,327, | ||
9589 | 3,105,0,327,3, | ||
9590 | 106,0,327,3,107, | ||
9591 | 0,327,3,108,0, | ||
9592 | 327,826,11,1,829, | ||
9593 | 0,330,1,-1,3, | ||
9594 | 102,0,327,3,103, | ||
9595 | 0,327,3,104,0, | ||
9596 | 327,3,105,0,327, | ||
9597 | 3,106,0,327,3, | ||
9598 | 107,0,327,3,108, | ||
9599 | 0,327,827,11,1, | ||
9600 | 342,0,828,4,18, | ||
9601 | 76,0,73,0,83, | ||
9602 | 0,84,0,95,0, | ||
9603 | 84,0,89,0,80, | ||
9604 | 0,69,0,1,-1, | ||
9605 | 3,117,0,327,3, | ||
9606 | 118,0,327,3,119, | ||
9607 | 0,327,3,120,0, | ||
9608 | 327,3,121,0,327, | ||
9609 | 3,122,0,327,3, | ||
9610 | 48,0,327,3,49, | ||
9611 | 0,327,3,50,0, | ||
9612 | 327,3,51,0,327, | ||
9613 | 3,52,0,327,3, | ||
9614 | 53,0,327,3,54, | ||
9615 | 0,327,3,55,0, | ||
9616 | 327,3,56,0,327, | ||
9617 | 3,57,0,327,3, | ||
9618 | 65,0,327,3,66, | ||
9619 | 0,327,3,67,0, | ||
9620 | 327,3,68,0,327, | ||
9621 | 3,69,0,327,3, | ||
9622 | 70,0,327,3,71, | ||
9623 | 0,327,3,72,0, | ||
9624 | 327,3,73,0,327, | ||
9625 | 3,74,0,327,3, | ||
9626 | 75,0,327,3,76, | ||
9627 | 0,327,3,77,0, | ||
9628 | 327,3,78,0,327, | ||
9629 | 3,79,0,327,3, | ||
9630 | 80,0,327,3,81, | ||
9631 | 0,327,3,82,0, | ||
9632 | 327,3,83,0,327, | ||
9633 | 3,84,0,327,3, | ||
9634 | 85,0,327,3,86, | ||
9635 | 0,327,3,87,0, | ||
9636 | 327,3,88,0,327, | ||
9637 | 3,89,0,327,3, | ||
9638 | 90,0,327,3,95, | ||
9639 | 0,327,3,97,0, | ||
9640 | 327,3,98,0,327, | ||
9641 | 3,99,0,327,3, | ||
9642 | 100,0,327,3,101, | ||
9643 | 0,327,3,102,0, | ||
9644 | 327,3,103,0,327, | ||
9645 | 3,104,0,327,3, | ||
9646 | 105,0,327,3,106, | ||
9647 | 0,327,3,107,0, | ||
9648 | 327,3,108,0,327, | ||
9649 | 829,11,1,829,0, | ||
9650 | 330,1,-1,3,116, | ||
9651 | 0,327,3,117,0, | ||
9652 | 327,3,118,0,327, | ||
9653 | 3,119,0,327,3, | ||
9654 | 120,0,327,3,121, | ||
9655 | 0,327,3,122,0, | ||
9656 | 327,3,48,0,327, | ||
9657 | 3,49,0,327,3, | ||
9658 | 50,0,327,3,51, | ||
9659 | 0,327,3,52,0, | ||
9660 | 327,3,53,0,327, | ||
9661 | 3,54,0,327,3, | ||
9662 | 55,0,327,3,56, | ||
9663 | 0,327,3,57,0, | ||
9664 | 327,3,65,0,327, | ||
9665 | 3,66,0,327,3, | ||
9666 | 67,0,327,3,68, | ||
9667 | 0,327,3,69,0, | ||
9668 | 327,3,70,0,327, | ||
9669 | 3,71,0,327,3, | ||
9670 | 72,0,327,3,73, | ||
9671 | 0,327,3,74,0, | ||
9672 | 327,3,75,0,327, | ||
9673 | 3,76,0,327,3, | ||
9674 | 77,0,327,3,78, | ||
9675 | 0,327,3,79,0, | ||
9676 | 327,3,80,0,327, | ||
9677 | 3,81,0,327,3, | ||
9678 | 82,0,327,3,83, | ||
9679 | 0,327,3,84,0, | ||
9680 | 327,3,85,0,327, | ||
9681 | 3,86,0,327,3, | ||
9682 | 87,0,327,3,88, | ||
9683 | 0,327,3,89,0, | ||
9684 | 327,3,90,0,327, | ||
9685 | 3,95,0,327,3, | ||
9686 | 97,0,327,3,98, | ||
9687 | 0,327,3,99,0, | ||
9688 | 327,3,100,0,327, | ||
9689 | 3,101,0,327,3, | ||
9690 | 102,0,327,3,103, | ||
9691 | 0,327,3,104,0, | ||
9692 | 327,3,105,0,327, | ||
9693 | 3,106,0,327,3, | ||
9694 | 107,0,327,3,108, | ||
9695 | 0,327,830,11,1, | ||
9696 | 829,0,330,1,-1, | ||
9697 | 3,106,0,327,3, | ||
9698 | 107,0,327,3,108, | ||
9699 | 0,327,831,11,1, | ||
9700 | 829,0,330,1,-1, | ||
9701 | 3,109,0,832,12, | ||
9702 | 1,2200,833,5,63, | ||
9703 | 3,109,0,327,3, | ||
9704 | 110,0,327,3,111, | ||
9705 | 0,834,12,1,2230, | ||
9706 | 835,5,63,3,109, | ||
9707 | 0,327,3,110,0, | ||
9708 | 836,12,1,2259,837, | ||
9709 | 5,63,3,109,0, | ||
9710 | 327,3,110,0,327, | ||
9711 | 3,111,0,327,3, | ||
9712 | 112,0,327,3,113, | ||
9713 | 0,327,3,114,0, | ||
9714 | 327,3,115,0,327, | ||
9715 | 3,116,0,327,3, | ||
9716 | 117,0,327,3,118, | ||
9717 | 0,327,3,119,0, | ||
9718 | 327,3,120,0,327, | ||
9719 | 3,121,0,327,3, | ||
9720 | 122,0,327,3,48, | ||
9721 | 0,327,3,49,0, | ||
9722 | 327,3,50,0,327, | ||
9723 | 3,51,0,327,3, | ||
9724 | 52,0,327,3,53, | ||
9725 | 0,327,3,54,0, | ||
9726 | 327,3,55,0,327, | ||
9727 | 3,56,0,327,3, | ||
9728 | 57,0,327,3,65, | ||
9729 | 0,327,3,66,0, | ||
9730 | 327,3,67,0,327, | ||
9731 | 3,68,0,327,3, | ||
9732 | 69,0,327,3,70, | ||
9733 | 0,327,3,71,0, | ||
9734 | 327,3,72,0,327, | ||
9735 | 3,73,0,327,3, | ||
9736 | 74,0,327,3,75, | ||
9737 | 0,327,3,76,0, | ||
9738 | 327,3,77,0,327, | ||
9739 | 3,78,0,327,3, | ||
9740 | 79,0,327,3,80, | ||
9741 | 0,327,3,81,0, | ||
9742 | 327,3,82,0,327, | ||
9743 | 3,83,0,327,3, | ||
9744 | 84,0,327,3,85, | ||
9745 | 0,327,3,86,0, | ||
9746 | 327,3,87,0,327, | ||
9747 | 3,88,0,327,3, | ||
9748 | 89,0,327,3,90, | ||
9749 | 0,327,3,95,0, | ||
9750 | 327,3,97,0,327, | ||
9751 | 3,98,0,327,3, | ||
9752 | 99,0,327,3,100, | ||
9753 | 0,327,3,101,0, | ||
9754 | 838,12,1,2306,839, | ||
9755 | 5,63,3,109,0, | ||
9756 | 327,3,110,0,327, | ||
9757 | 3,111,0,327,3, | ||
9758 | 112,0,327,3,113, | ||
9759 | 0,327,3,114,0, | ||
9760 | 327,3,115,0,327, | ||
9761 | 3,116,0,327,3, | ||
9762 | 117,0,327,3,118, | ||
9763 | 0,327,3,119,0, | ||
9764 | 327,3,120,0,327, | ||
9765 | 3,121,0,840,12, | ||
9766 | 1,2346,841,5,63, | ||
9767 | 3,109,0,327,3, | ||
9768 | 110,0,327,3,111, | ||
9769 | 0,327,3,112,0, | ||
9770 | 327,3,113,0,327, | ||
9771 | 3,114,0,327,3, | ||
9772 | 115,0,327,3,116, | ||
9773 | 0,327,3,117,0, | ||
9774 | 327,3,118,0,327, | ||
9775 | 3,119,0,327,3, | ||
9776 | 120,0,327,3,121, | ||
9777 | 0,327,3,122,0, | ||
9778 | 327,3,48,0,327, | ||
9779 | 3,49,0,327,3, | ||
9780 | 50,0,327,3,51, | ||
9781 | 0,327,3,52,0, | ||
9782 | 327,3,53,0,327, | ||
9783 | 3,54,0,327,3, | ||
9784 | 55,0,327,3,56, | ||
9785 | 0,327,3,57,0, | ||
9786 | 327,3,65,0,327, | ||
9787 | 3,66,0,327,3, | ||
9788 | 67,0,327,3,68, | ||
9789 | 0,327,3,69,0, | ||
9790 | 327,3,70,0,327, | ||
9791 | 3,71,0,327,3, | ||
9792 | 72,0,327,3,73, | ||
9793 | 0,327,3,74,0, | ||
9794 | 327,3,75,0,327, | ||
9795 | 3,76,0,327,3, | ||
9796 | 77,0,327,3,78, | ||
9797 | 0,327,3,79,0, | ||
9798 | 327,3,80,0,327, | ||
9799 | 3,81,0,327,3, | ||
9800 | 82,0,327,3,83, | ||
9801 | 0,327,3,84,0, | ||
9802 | 327,3,85,0,327, | ||
9803 | 3,86,0,327,3, | ||
9804 | 87,0,327,3,88, | ||
9805 | 0,327,3,89,0, | ||
9806 | 327,3,90,0,327, | ||
9807 | 3,95,0,327,3, | ||
9808 | 97,0,327,3,98, | ||
9809 | 0,327,3,99,0, | ||
9810 | 327,3,100,0,327, | ||
9811 | 3,101,0,327,3, | ||
9812 | 102,0,327,3,103, | ||
9813 | 0,327,3,104,0, | ||
9814 | 327,3,105,0,327, | ||
9815 | 3,106,0,327,3, | ||
9816 | 107,0,327,3,108, | ||
9817 | 0,327,842,11,1, | ||
9818 | 591,0,843,4,22, | ||
9819 | 77,0,79,0,78, | ||
9820 | 0,69,0,89,0, | ||
9821 | 95,0,69,0,86, | ||
9822 | 0,69,0,78,0, | ||
9823 | 84,0,1,-1,3, | ||
9824 | 122,0,327,3,48, | ||
9825 | 0,327,3,49,0, | ||
9826 | 327,3,50,0,327, | ||
9827 | 3,51,0,327,3, | ||
9828 | 52,0,327,3,53, | ||
9829 | 0,327,3,54,0, | ||
9830 | 327,3,55,0,327, | ||
9831 | 3,56,0,327,3, | ||
9832 | 57,0,327,3,65, | ||
9833 | 0,327,3,66,0, | ||
9834 | 327,3,67,0,327, | ||
9835 | 3,68,0,327,3, | ||
9836 | 69,0,327,3,70, | ||
9837 | 0,327,3,71,0, | ||
9838 | 327,3,72,0,327, | ||
9839 | 3,73,0,327,3, | ||
9840 | 74,0,327,3,75, | ||
9841 | 0,327,3,76,0, | ||
9842 | 327,3,77,0,327, | ||
9843 | 3,78,0,327,3, | ||
9844 | 79,0,327,3,80, | ||
9845 | 0,327,3,81,0, | ||
9846 | 327,3,82,0,327, | ||
9847 | 3,83,0,327,3, | ||
9848 | 84,0,327,3,85, | ||
9849 | 0,327,3,86,0, | ||
9850 | 327,3,87,0,327, | ||
9851 | 3,88,0,327,3, | ||
9852 | 89,0,327,3,90, | ||
9853 | 0,327,3,95,0, | ||
9854 | 327,3,97,0,327, | ||
9855 | 3,98,0,327,3, | ||
9856 | 99,0,327,3,100, | ||
9857 | 0,327,3,101,0, | ||
9858 | 327,3,102,0,327, | ||
9859 | 3,103,0,327,3, | ||
9860 | 104,0,327,3,105, | ||
9861 | 0,327,3,106,0, | ||
9862 | 327,3,107,0,327, | ||
9863 | 3,108,0,327,844, | ||
9864 | 11,1,829,0,330, | ||
9865 | 1,-1,3,102,0, | ||
9866 | 327,3,103,0,327, | ||
9867 | 3,104,0,327,3, | ||
9868 | 105,0,327,3,106, | ||
9869 | 0,327,3,107,0, | ||
9870 | 327,3,108,0,327, | ||
9871 | 845,11,1,829,0, | ||
9872 | 330,1,-1,3,111, | ||
9873 | 0,327,3,112,0, | ||
9874 | 327,3,113,0,327, | ||
9875 | 3,114,0,327,3, | ||
9876 | 115,0,327,3,116, | ||
9877 | 0,327,3,117,0, | ||
9878 | 327,3,118,0,846, | ||
9879 | 12,1,2627,847,5, | ||
9880 | 63,3,109,0,327, | ||
9881 | 3,110,0,327,3, | ||
9882 | 111,0,327,3,112, | ||
9883 | 0,327,3,113,0, | ||
9884 | 327,3,114,0,327, | ||
9885 | 3,115,0,327,3, | ||
9886 | 116,0,327,3,117, | ||
9887 | 0,327,3,118,0, | ||
9888 | 327,3,119,0,327, | ||
9889 | 3,120,0,327,3, | ||
9890 | 121,0,327,3,122, | ||
9891 | 0,327,3,48,0, | ||
9892 | 327,3,49,0,327, | ||
9893 | 3,50,0,327,3, | ||
9894 | 51,0,327,3,52, | ||
9895 | 0,327,3,53,0, | ||
9896 | 327,3,54,0,327, | ||
9897 | 3,55,0,327,3, | ||
9898 | 56,0,327,3,57, | ||
9899 | 0,327,3,65,0, | ||
9900 | 327,3,66,0,327, | ||
9901 | 3,67,0,327,3, | ||
9902 | 68,0,327,3,69, | ||
9903 | 0,327,3,70,0, | ||
9904 | 327,3,71,0,327, | ||
9905 | 3,72,0,327,3, | ||
9906 | 73,0,327,3,74, | ||
9907 | 0,327,3,75,0, | ||
9908 | 327,3,76,0,327, | ||
9909 | 3,77,0,327,3, | ||
9910 | 78,0,327,3,79, | ||
9911 | 0,327,3,80,0, | ||
9912 | 327,3,81,0,327, | ||
9913 | 3,82,0,327,3, | ||
9914 | 83,0,327,3,84, | ||
9915 | 0,327,3,85,0, | ||
9916 | 327,3,86,0,327, | ||
9917 | 3,87,0,327,3, | ||
9918 | 88,0,327,3,89, | ||
9919 | 0,327,3,90,0, | ||
9920 | 327,3,95,0,327, | ||
9921 | 3,97,0,327,3, | ||
9922 | 98,0,327,3,99, | ||
9923 | 0,327,3,100,0, | ||
9924 | 327,3,101,0,327, | ||
9925 | 3,102,0,327,3, | ||
9926 | 103,0,327,3,104, | ||
9927 | 0,327,3,105,0, | ||
9928 | 848,12,1,2678,849, | ||
9929 | 5,63,3,109,0, | ||
9930 | 327,3,110,0,850, | ||
9931 | 12,1,2707,851,5, | ||
9932 | 63,3,109,0,327, | ||
9933 | 3,110,0,327,3, | ||
9934 | 111,0,327,3,112, | ||
9935 | 0,327,3,113,0, | ||
9936 | 327,3,114,0,327, | ||
9937 | 3,115,0,327,3, | ||
9938 | 116,0,327,3,117, | ||
9939 | 0,327,3,118,0, | ||
9940 | 327,3,119,0,327, | ||
9941 | 3,120,0,327,3, | ||
9942 | 121,0,327,3,122, | ||
9943 | 0,327,3,48,0, | ||
9944 | 327,3,49,0,327, | ||
9945 | 3,50,0,327,3, | ||
9946 | 51,0,327,3,52, | ||
9947 | 0,327,3,53,0, | ||
9948 | 327,3,54,0,327, | ||
9949 | 3,55,0,327,3, | ||
9950 | 56,0,327,3,57, | ||
9951 | 0,327,3,65,0, | ||
9952 | 327,3,66,0,327, | ||
9953 | 3,67,0,327,3, | ||
9954 | 68,0,327,3,69, | ||
9955 | 0,327,3,70,0, | ||
9956 | 327,3,71,0,327, | ||
9957 | 3,72,0,327,3, | ||
9958 | 73,0,327,3,74, | ||
9959 | 0,327,3,75,0, | ||
9960 | 327,3,76,0,327, | ||
9961 | 3,77,0,327,3, | ||
9962 | 78,0,327,3,79, | ||
9963 | 0,327,3,80,0, | ||
9964 | 327,3,81,0,327, | ||
9965 | 3,82,0,327,3, | ||
9966 | 83,0,327,3,84, | ||
9967 | 0,327,3,85,0, | ||
9968 | 327,3,86,0,327, | ||
9969 | 3,87,0,327,3, | ||
9970 | 88,0,327,3,89, | ||
9971 | 0,327,3,90,0, | ||
9972 | 327,3,95,0,327, | ||
9973 | 3,97,0,327,3, | ||
9974 | 98,0,327,3,99, | ||
9975 | 0,327,3,100,0, | ||
9976 | 327,3,101,0,327, | ||
9977 | 3,102,0,327,3, | ||
9978 | 103,0,852,12,1, | ||
9979 | 2756,853,5,63,3, | ||
9980 | 109,0,327,3,110, | ||
9981 | 0,327,3,111,0, | ||
9982 | 327,3,112,0,327, | ||
9983 | 3,113,0,327,3, | ||
9984 | 114,0,327,3,115, | ||
9985 | 0,327,3,116,0, | ||
9986 | 327,3,117,0,327, | ||
9987 | 3,118,0,327,3, | ||
9988 | 119,0,327,3,120, | ||
9989 | 0,327,3,121,0, | ||
9990 | 327,3,122,0,327, | ||
9991 | 3,48,0,327,3, | ||
9992 | 49,0,327,3,50, | ||
9993 | 0,327,3,51,0, | ||
9994 | 327,3,52,0,327, | ||
9995 | 3,53,0,327,3, | ||
9996 | 54,0,327,3,55, | ||
9997 | 0,327,3,56,0, | ||
9998 | 327,3,57,0,327, | ||
9999 | 3,65,0,327,3, | ||
10000 | 66,0,327,3,67, | ||
10001 | 0,327,3,68,0, | ||
10002 | 327,3,69,0,327, | ||
10003 | 3,70,0,327,3, | ||
10004 | 71,0,327,3,72, | ||
10005 | 0,327,3,73,0, | ||
10006 | 327,3,74,0,327, | ||
10007 | 3,75,0,327,3, | ||
10008 | 76,0,327,3,77, | ||
10009 | 0,327,3,78,0, | ||
10010 | 327,3,79,0,327, | ||
10011 | 3,80,0,327,3, | ||
10012 | 81,0,327,3,82, | ||
10013 | 0,327,3,83,0, | ||
10014 | 327,3,84,0,327, | ||
10015 | 3,85,0,327,3, | ||
10016 | 86,0,327,3,87, | ||
10017 | 0,327,3,88,0, | ||
10018 | 327,3,89,0,327, | ||
10019 | 3,90,0,327,3, | ||
10020 | 95,0,854,12,1, | ||
10021 | 2842,855,5,63,3, | ||
10022 | 109,0,327,3,110, | ||
10023 | 0,327,3,111,0, | ||
10024 | 327,3,112,0,327, | ||
10025 | 3,113,0,327,3, | ||
10026 | 114,0,327,3,115, | ||
10027 | 0,856,12,1,2876, | ||
10028 | 857,5,63,3,109, | ||
10029 | 0,327,3,110,0, | ||
10030 | 327,3,111,0,327, | ||
10031 | 3,112,0,327,3, | ||
10032 | 113,0,327,3,114, | ||
10033 | 0,327,3,115,0, | ||
10034 | 327,3,116,0,858, | ||
10035 | 12,1,2911,859,5, | ||
10036 | 63,3,109,0,327, | ||
10037 | 3,110,0,327,3, | ||
10038 | 111,0,327,3,112, | ||
10039 | 0,327,3,113,0, | ||
10040 | 327,3,114,0,327, | ||
10041 | 3,115,0,327,3, | ||
10042 | 116,0,327,3,117, | ||
10043 | 0,327,3,118,0, | ||
10044 | 327,3,119,0,327, | ||
10045 | 3,120,0,327,3, | ||
10046 | 121,0,327,3,122, | ||
10047 | 0,327,3,48,0, | ||
10048 | 327,3,49,0,327, | ||
10049 | 3,50,0,327,3, | ||
10050 | 51,0,327,3,52, | ||
10051 | 0,327,3,53,0, | ||
10052 | 327,3,54,0,327, | ||
10053 | 3,55,0,327,3, | ||
10054 | 56,0,327,3,57, | ||
10055 | 0,327,3,65,0, | ||
10056 | 327,3,66,0,327, | ||
10057 | 3,67,0,327,3, | ||
10058 | 68,0,327,3,69, | ||
10059 | 0,327,3,70,0, | ||
10060 | 327,3,71,0,327, | ||
10061 | 3,72,0,327,3, | ||
10062 | 73,0,327,3,74, | ||
10063 | 0,327,3,75,0, | ||
10064 | 327,3,76,0,327, | ||
10065 | 3,77,0,327,3, | ||
10066 | 78,0,327,3,79, | ||
10067 | 0,327,3,80,0, | ||
10068 | 327,3,81,0,327, | ||
10069 | 3,82,0,327,3, | ||
10070 | 83,0,327,3,84, | ||
10071 | 0,327,3,85,0, | ||
10072 | 327,3,86,0,327, | ||
10073 | 3,87,0,327,3, | ||
10074 | 88,0,327,3,89, | ||
10075 | 0,327,3,90,0, | ||
10076 | 327,3,95,0,327, | ||
10077 | 3,97,0,860,12, | ||
10078 | 1,2954,861,5,63, | ||
10079 | 3,109,0,327,3, | ||
10080 | 110,0,327,3,111, | ||
10081 | 0,327,3,112,0, | ||
10082 | 327,3,113,0,327, | ||
10083 | 3,114,0,862,12, | ||
10084 | 1,2987,863,5,63, | ||
10085 | 3,109,0,327,3, | ||
10086 | 110,0,327,3,111, | ||
10087 | 0,327,3,112,0, | ||
10088 | 327,3,113,0,327, | ||
10089 | 3,114,0,327,3, | ||
10090 | 115,0,327,3,116, | ||
10091 | 0,864,12,1,3022, | ||
10092 | 865,5,63,3,109, | ||
10093 | 0,327,3,110,0, | ||
10094 | 327,3,111,0,327, | ||
10095 | 3,112,0,327,3, | ||
10096 | 113,0,327,3,114, | ||
10097 | 0,327,3,115,0, | ||
10098 | 327,3,116,0,327, | ||
10099 | 3,117,0,327,3, | ||
10100 | 118,0,327,3,119, | ||
10101 | 0,327,3,120,0, | ||
10102 | 327,3,121,0,327, | ||
10103 | 3,122,0,327,3, | ||
10104 | 48,0,327,3,49, | ||
10105 | 0,327,3,50,0, | ||
10106 | 327,3,51,0,327, | ||
10107 | 3,52,0,327,3, | ||
10108 | 53,0,327,3,54, | ||
10109 | 0,327,3,55,0, | ||
10110 | 327,3,56,0,327, | ||
10111 | 3,57,0,327,3, | ||
10112 | 65,0,327,3,66, | ||
10113 | 0,327,3,67,0, | ||
10114 | 327,3,68,0,327, | ||
10115 | 3,69,0,327,3, | ||
10116 | 70,0,327,3,71, | ||
10117 | 0,327,3,72,0, | ||
10118 | 327,3,73,0,327, | ||
10119 | 3,74,0,327,3, | ||
10120 | 75,0,327,3,76, | ||
10121 | 0,327,3,77,0, | ||
10122 | 327,3,78,0,327, | ||
10123 | 3,79,0,327,3, | ||
10124 | 80,0,327,3,81, | ||
10125 | 0,327,3,82,0, | ||
10126 | 327,3,83,0,327, | ||
10127 | 3,84,0,327,3, | ||
10128 | 85,0,327,3,86, | ||
10129 | 0,327,3,87,0, | ||
10130 | 327,3,88,0,327, | ||
10131 | 3,89,0,327,3, | ||
10132 | 90,0,327,3,95, | ||
10133 | 0,327,3,97,0, | ||
10134 | 327,3,98,0,327, | ||
10135 | 3,99,0,327,3, | ||
10136 | 100,0,327,3,101, | ||
10137 | 0,327,3,102,0, | ||
10138 | 327,3,103,0,327, | ||
10139 | 3,104,0,327,3, | ||
10140 | 105,0,327,3,106, | ||
10141 | 0,327,3,107,0, | ||
10142 | 327,3,108,0,327, | ||
10143 | 866,11,1,614,0, | ||
10144 | 867,4,36,77,0, | ||
10145 | 79,0,86,0,73, | ||
10146 | 0,78,0,71,0, | ||
10147 | 95,0,83,0,84, | ||
10148 | 0,65,0,82,0, | ||
10149 | 84,0,95,0,69, | ||
10150 | 0,86,0,69,0, | ||
10151 | 78,0,84,0,1, | ||
10152 | -1,3,117,0,327, | ||
10153 | 3,118,0,327,3, | ||
10154 | 119,0,327,3,120, | ||
10155 | 0,327,3,121,0, | ||
10156 | 327,3,122,0,327, | ||
10157 | 3,48,0,327,3, | ||
10158 | 49,0,327,3,50, | ||
10159 | 0,327,3,51,0, | ||
10160 | 327,3,52,0,327, | ||
10161 | 3,53,0,327,3, | ||
10162 | 54,0,327,3,55, | ||
10163 | 0,327,3,56,0, | ||
10164 | 327,3,57,0,327, | ||
10165 | 3,65,0,327,3, | ||
10166 | 66,0,327,3,67, | ||
10167 | 0,327,3,68,0, | ||
10168 | 327,3,69,0,327, | ||
10169 | 3,70,0,327,3, | ||
10170 | 71,0,327,3,72, | ||
10171 | 0,327,3,73,0, | ||
10172 | 327,3,74,0,327, | ||
10173 | 3,75,0,327,3, | ||
10174 | 76,0,327,3,77, | ||
10175 | 0,327,3,78,0, | ||
10176 | 327,3,79,0,327, | ||
10177 | 3,80,0,327,3, | ||
10178 | 81,0,327,3,82, | ||
10179 | 0,327,3,83,0, | ||
10180 | 327,3,84,0,327, | ||
10181 | 3,85,0,327,3, | ||
10182 | 86,0,327,3,87, | ||
10183 | 0,327,3,88,0, | ||
10184 | 327,3,89,0,327, | ||
10185 | 3,90,0,327,3, | ||
10186 | 95,0,327,3,97, | ||
10187 | 0,327,3,98,0, | ||
10188 | 327,3,99,0,327, | ||
10189 | 3,100,0,327,3, | ||
10190 | 101,0,327,3,102, | ||
10191 | 0,327,3,103,0, | ||
10192 | 327,3,104,0,327, | ||
10193 | 3,105,0,327,3, | ||
10194 | 106,0,327,3,107, | ||
10195 | 0,327,3,108,0, | ||
10196 | 327,868,11,1,829, | ||
10197 | 0,330,1,-1,3, | ||
10198 | 115,0,327,3,116, | ||
10199 | 0,327,3,117,0, | ||
10200 | 327,3,118,0,327, | ||
10201 | 3,119,0,327,3, | ||
10202 | 120,0,327,3,121, | ||
10203 | 0,327,3,122,0, | ||
10204 | 327,3,48,0,327, | ||
10205 | 3,49,0,327,3, | ||
10206 | 50,0,327,3,51, | ||
10207 | 0,327,3,52,0, | ||
10208 | 327,3,53,0,327, | ||
10209 | 3,54,0,327,3, | ||
10210 | 55,0,327,3,56, | ||
10211 | 0,327,3,57,0, | ||
10212 | 327,3,65,0,327, | ||
10213 | 3,66,0,327,3, | ||
10214 | 67,0,327,3,68, | ||
10215 | 0,327,3,69,0, | ||
10216 | 327,3,70,0,327, | ||
10217 | 3,71,0,327,3, | ||
10218 | 72,0,327,3,73, | ||
10219 | 0,327,3,74,0, | ||
10220 | 327,3,75,0,327, | ||
10221 | 3,76,0,327,3, | ||
10222 | 77,0,327,3,78, | ||
10223 | 0,327,3,79,0, | ||
10224 | 327,3,80,0,327, | ||
10225 | 3,81,0,327,3, | ||
10226 | 82,0,327,3,83, | ||
10227 | 0,327,3,84,0, | ||
10228 | 327,3,85,0,327, | ||
10229 | 3,86,0,327,3, | ||
10230 | 87,0,327,3,88, | ||
10231 | 0,327,3,89,0, | ||
10232 | 327,3,90,0,327, | ||
10233 | 3,95,0,327,3, | ||
10234 | 97,0,327,3,98, | ||
10235 | 0,327,3,99,0, | ||
10236 | 327,3,100,0,327, | ||
10237 | 3,101,0,327,3, | ||
10238 | 102,0,327,3,103, | ||
10239 | 0,327,3,104,0, | ||
10240 | 327,3,105,0,327, | ||
10241 | 3,106,0,327,3, | ||
10242 | 107,0,327,3,108, | ||
10243 | 0,327,869,11,1, | ||
10244 | 829,0,330,1,-1, | ||
10245 | 3,98,0,327,3, | ||
10246 | 99,0,327,3,100, | ||
10247 | 0,327,3,101,0, | ||
10248 | 327,3,102,0,327, | ||
10249 | 3,103,0,327,3, | ||
10250 | 104,0,327,3,105, | ||
10251 | 0,327,3,106,0, | ||
10252 | 327,3,107,0,327, | ||
10253 | 3,108,0,327,870, | ||
10254 | 11,1,829,0,330, | ||
10255 | 1,-1,3,117,0, | ||
10256 | 327,3,118,0,327, | ||
10257 | 3,119,0,327,3, | ||
10258 | 120,0,327,3,121, | ||
10259 | 0,327,3,122,0, | ||
10260 | 327,3,48,0,327, | ||
10261 | 3,49,0,327,3, | ||
10262 | 50,0,327,3,51, | ||
10263 | 0,327,3,52,0, | ||
10264 | 327,3,53,0,327, | ||
10265 | 3,54,0,327,3, | ||
10266 | 55,0,327,3,56, | ||
10267 | 0,327,3,57,0, | ||
10268 | 327,3,65,0,327, | ||
10269 | 3,66,0,327,3, | ||
10270 | 67,0,327,3,68, | ||
10271 | 0,327,3,69,0, | ||
10272 | 327,3,70,0,327, | ||
10273 | 3,71,0,327,3, | ||
10274 | 72,0,327,3,73, | ||
10275 | 0,327,3,74,0, | ||
10276 | 327,3,75,0,327, | ||
10277 | 3,76,0,327,3, | ||
10278 | 77,0,327,3,78, | ||
10279 | 0,327,3,79,0, | ||
10280 | 327,3,80,0,327, | ||
10281 | 3,81,0,327,3, | ||
10282 | 82,0,327,3,83, | ||
10283 | 0,327,3,84,0, | ||
10284 | 327,3,85,0,327, | ||
10285 | 3,86,0,327,3, | ||
10286 | 87,0,327,3,88, | ||
10287 | 0,327,3,89,0, | ||
10288 | 327,3,90,0,327, | ||
10289 | 3,95,0,327,3, | ||
10290 | 97,0,327,3,98, | ||
10291 | 0,327,3,99,0, | ||
10292 | 327,3,100,0,327, | ||
10293 | 3,101,0,327,3, | ||
10294 | 102,0,327,3,103, | ||
10295 | 0,327,3,104,0, | ||
10296 | 327,3,105,0,327, | ||
10297 | 3,106,0,327,3, | ||
10298 | 107,0,327,3,108, | ||
10299 | 0,327,871,11,1, | ||
10300 | 829,0,330,1,-1, | ||
10301 | 3,116,0,327,3, | ||
10302 | 117,0,327,3,118, | ||
10303 | 0,327,3,119,0, | ||
10304 | 327,3,120,0,327, | ||
10305 | 3,121,0,327,3, | ||
10306 | 122,0,327,3,48, | ||
10307 | 0,327,3,49,0, | ||
10308 | 327,3,50,0,327, | ||
10309 | 3,51,0,327,3, | ||
10310 | 52,0,327,3,53, | ||
10311 | 0,327,3,54,0, | ||
10312 | 327,3,55,0,327, | ||
10313 | 3,56,0,327,3, | ||
10314 | 57,0,327,3,65, | ||
10315 | 0,327,3,66,0, | ||
10316 | 327,3,67,0,327, | ||
10317 | 3,68,0,327,3, | ||
10318 | 69,0,327,3,70, | ||
10319 | 0,327,3,71,0, | ||
10320 | 327,3,72,0,327, | ||
10321 | 3,73,0,327,3, | ||
10322 | 74,0,327,3,75, | ||
10323 | 0,327,3,76,0, | ||
10324 | 327,3,77,0,327, | ||
10325 | 3,78,0,327,3, | ||
10326 | 79,0,327,3,80, | ||
10327 | 0,327,3,81,0, | ||
10328 | 327,3,82,0,327, | ||
10329 | 3,83,0,327,3, | ||
10330 | 84,0,327,3,85, | ||
10331 | 0,327,3,86,0, | ||
10332 | 327,3,87,0,327, | ||
10333 | 3,88,0,327,3, | ||
10334 | 89,0,327,3,90, | ||
10335 | 0,327,3,95,0, | ||
10336 | 327,3,97,0,327, | ||
10337 | 3,98,0,327,3, | ||
10338 | 99,0,327,3,100, | ||
10339 | 0,327,3,101,0, | ||
10340 | 872,12,1,3489,873, | ||
10341 | 5,63,3,109,0, | ||
10342 | 327,3,110,0,874, | ||
10343 | 12,1,3518,875,5, | ||
10344 | 63,3,109,0,327, | ||
10345 | 3,110,0,327,3, | ||
10346 | 111,0,327,3,112, | ||
10347 | 0,327,3,113,0, | ||
10348 | 327,3,114,0,327, | ||
10349 | 3,115,0,327,3, | ||
10350 | 116,0,327,3,117, | ||
10351 | 0,327,3,118,0, | ||
10352 | 327,3,119,0,327, | ||
10353 | 3,120,0,327,3, | ||
10354 | 121,0,327,3,122, | ||
10355 | 0,327,3,48,0, | ||
10356 | 327,3,49,0,327, | ||
10357 | 3,50,0,327,3, | ||
10358 | 51,0,327,3,52, | ||
10359 | 0,327,3,53,0, | ||
10360 | 327,3,54,0,327, | ||
10361 | 3,55,0,327,3, | ||
10362 | 56,0,327,3,57, | ||
10363 | 0,327,3,65,0, | ||
10364 | 327,3,66,0,327, | ||
10365 | 3,67,0,327,3, | ||
10366 | 68,0,327,3,69, | ||
10367 | 0,327,3,70,0, | ||
10368 | 327,3,71,0,327, | ||
10369 | 3,72,0,327,3, | ||
10370 | 73,0,327,3,74, | ||
10371 | 0,327,3,75,0, | ||
10372 | 327,3,76,0,327, | ||
10373 | 3,77,0,327,3, | ||
10374 | 78,0,327,3,79, | ||
10375 | 0,327,3,80,0, | ||
10376 | 327,3,81,0,327, | ||
10377 | 3,82,0,327,3, | ||
10378 | 83,0,327,3,84, | ||
10379 | 0,327,3,85,0, | ||
10380 | 327,3,86,0,327, | ||
10381 | 3,87,0,327,3, | ||
10382 | 88,0,327,3,89, | ||
10383 | 0,327,3,90,0, | ||
10384 | 327,3,95,0,327, | ||
10385 | 3,97,0,327,3, | ||
10386 | 98,0,327,3,99, | ||
10387 | 0,327,3,100,0, | ||
10388 | 876,12,1,3564,877, | ||
10389 | 5,63,3,109,0, | ||
10390 | 327,3,110,0,327, | ||
10391 | 3,111,0,327,3, | ||
10392 | 112,0,327,3,113, | ||
10393 | 0,327,3,114,0, | ||
10394 | 327,3,115,0,327, | ||
10395 | 3,116,0,327,3, | ||
10396 | 117,0,327,3,118, | ||
10397 | 0,327,3,119,0, | ||
10398 | 327,3,120,0,327, | ||
10399 | 3,121,0,327,3, | ||
10400 | 122,0,327,3,48, | ||
10401 | 0,327,3,49,0, | ||
10402 | 327,3,50,0,327, | ||
10403 | 3,51,0,327,3, | ||
10404 | 52,0,327,3,53, | ||
10405 | 0,327,3,54,0, | ||
10406 | 327,3,55,0,327, | ||
10407 | 3,56,0,327,3, | ||
10408 | 57,0,327,3,65, | ||
10409 | 0,327,3,66,0, | ||
10410 | 327,3,67,0,327, | ||
10411 | 3,68,0,327,3, | ||
10412 | 69,0,327,3,70, | ||
10413 | 0,327,3,71,0, | ||
10414 | 327,3,72,0,327, | ||
10415 | 3,73,0,327,3, | ||
10416 | 74,0,327,3,75, | ||
10417 | 0,327,3,76,0, | ||
10418 | 327,3,77,0,327, | ||
10419 | 3,78,0,327,3, | ||
10420 | 79,0,327,3,80, | ||
10421 | 0,327,3,81,0, | ||
10422 | 327,3,82,0,327, | ||
10423 | 3,83,0,327,3, | ||
10424 | 84,0,327,3,85, | ||
10425 | 0,327,3,86,0, | ||
10426 | 327,3,87,0,327, | ||
10427 | 3,88,0,327,3, | ||
10428 | 89,0,327,3,90, | ||
10429 | 0,327,3,95,0, | ||
10430 | 327,3,97,0,327, | ||
10431 | 3,98,0,327,3, | ||
10432 | 99,0,327,3,100, | ||
10433 | 0,327,3,101,0, | ||
10434 | 327,3,102,0,327, | ||
10435 | 3,103,0,327,3, | ||
10436 | 104,0,327,3,105, | ||
10437 | 0,327,3,106,0, | ||
10438 | 327,3,107,0,327, | ||
10439 | 3,108,0,327,878, | ||
10440 | 11,1,600,0,879, | ||
10441 | 4,32,77,0,79, | ||
10442 | 0,86,0,73,0, | ||
10443 | 78,0,71,0,95, | ||
10444 | 0,69,0,78,0, | ||
10445 | 68,0,95,0,69, | ||
10446 | 0,86,0,69,0, | ||
10447 | 78,0,84,0,1, | ||
10448 | -1,3,101,0,327, | ||
10449 | 3,102,0,327,3, | ||
10450 | 103,0,327,3,104, | ||
10451 | 0,327,3,105,0, | ||
10452 | 327,3,106,0,327, | ||
10453 | 3,107,0,327,3, | ||
10454 | 108,0,327,880,11, | ||
10455 | 1,829,0,330,1, | ||
10456 | -1,3,111,0,327, | ||
10457 | 3,112,0,327,3, | ||
10458 | 113,0,327,3,114, | ||
10459 | 0,327,3,115,0, | ||
10460 | 327,3,116,0,327, | ||
10461 | 3,117,0,327,3, | ||
10462 | 118,0,327,3,119, | ||
10463 | 0,327,3,120,0, | ||
10464 | 327,3,121,0,327, | ||
10465 | 3,122,0,327,3, | ||
10466 | 48,0,327,3,49, | ||
10467 | 0,327,3,50,0, | ||
10468 | 327,3,51,0,327, | ||
10469 | 3,52,0,327,3, | ||
10470 | 53,0,327,3,54, | ||
10471 | 0,327,3,55,0, | ||
10472 | 327,3,56,0,327, | ||
10473 | 3,57,0,327,3, | ||
10474 | 65,0,327,3,66, | ||
10475 | 0,327,3,67,0, | ||
10476 | 327,3,68,0,327, | ||
10477 | 3,69,0,327,3, | ||
10478 | 70,0,327,3,71, | ||
10479 | 0,327,3,72,0, | ||
10480 | 327,3,73,0,327, | ||
10481 | 3,74,0,327,3, | ||
10482 | 75,0,327,3,76, | ||
10483 | 0,327,3,77,0, | ||
10484 | 327,3,78,0,327, | ||
10485 | 3,79,0,327,3, | ||
10486 | 80,0,327,3,81, | ||
10487 | 0,327,3,82,0, | ||
10488 | 327,3,83,0,327, | ||
10489 | 3,84,0,327,3, | ||
10490 | 85,0,327,3,86, | ||
10491 | 0,327,3,87,0, | ||
10492 | 327,3,88,0,327, | ||
10493 | 3,89,0,327,3, | ||
10494 | 90,0,327,3,95, | ||
10495 | 0,327,3,97,0, | ||
10496 | 327,3,98,0,327, | ||
10497 | 3,99,0,327,3, | ||
10498 | 100,0,327,3,101, | ||
10499 | 0,327,3,102,0, | ||
10500 | 327,3,103,0,327, | ||
10501 | 3,104,0,327,3, | ||
10502 | 105,0,327,3,106, | ||
10503 | 0,327,3,107,0, | ||
10504 | 327,3,108,0,327, | ||
10505 | 881,11,1,829,0, | ||
10506 | 330,1,-1,3,102, | ||
10507 | 0,327,3,103,0, | ||
10508 | 327,3,104,0,327, | ||
10509 | 3,105,0,327,3, | ||
10510 | 106,0,327,3,107, | ||
10511 | 0,327,3,108,0, | ||
10512 | 327,882,11,1,829, | ||
10513 | 0,330,1,-1,3, | ||
10514 | 97,0,327,3,98, | ||
10515 | 0,327,3,99,0, | ||
10516 | 327,3,100,0,327, | ||
10517 | 3,101,0,327,3, | ||
10518 | 102,0,327,3,103, | ||
10519 | 0,327,3,104,0, | ||
10520 | 327,3,105,0,327, | ||
10521 | 3,106,0,327,3, | ||
10522 | 107,0,327,3,108, | ||
10523 | 0,327,883,11,1, | ||
10524 | 829,0,330,1,-1, | ||
10525 | 3,104,0,327,3, | ||
10526 | 105,0,327,3,106, | ||
10527 | 0,327,3,107,0, | ||
10528 | 327,3,108,0,327, | ||
10529 | 884,11,1,829,0, | ||
10530 | 330,1,-1,3,111, | ||
10531 | 0,327,3,112,0, | ||
10532 | 327,3,113,0,327, | ||
10533 | 3,114,0,327,3, | ||
10534 | 115,0,327,3,116, | ||
10535 | 0,327,3,117,0, | ||
10536 | 327,3,118,0,327, | ||
10537 | 3,119,0,327,3, | ||
10538 | 120,0,327,3,121, | ||
10539 | 0,327,3,122,0, | ||
10540 | 327,3,48,0,327, | ||
10541 | 3,49,0,327,3, | ||
10542 | 50,0,327,3,51, | ||
10543 | 0,327,3,52,0, | ||
10544 | 327,3,53,0,327, | ||
10545 | 3,54,0,327,3, | ||
10546 | 55,0,327,3,56, | ||
10547 | 0,327,3,57,0, | ||
10548 | 327,3,65,0,327, | ||
10549 | 3,66,0,327,3, | ||
10550 | 67,0,327,3,68, | ||
10551 | 0,327,3,69,0, | ||
10552 | 327,3,70,0,327, | ||
10553 | 3,71,0,327,3, | ||
10554 | 72,0,327,3,73, | ||
10555 | 0,327,3,74,0, | ||
10556 | 327,3,75,0,327, | ||
10557 | 3,76,0,327,3, | ||
10558 | 77,0,327,3,78, | ||
10559 | 0,327,3,79,0, | ||
10560 | 327,3,80,0,327, | ||
10561 | 3,81,0,327,3, | ||
10562 | 82,0,327,3,83, | ||
10563 | 0,327,3,84,0, | ||
10564 | 327,3,85,0,327, | ||
10565 | 3,86,0,327,3, | ||
10566 | 87,0,327,3,88, | ||
10567 | 0,327,3,89,0, | ||
10568 | 327,3,90,0,327, | ||
10569 | 3,95,0,327,3, | ||
10570 | 97,0,327,3,98, | ||
10571 | 0,327,3,99,0, | ||
10572 | 327,3,100,0,327, | ||
10573 | 3,101,0,327,3, | ||
10574 | 102,0,327,3,103, | ||
10575 | 0,327,3,104,0, | ||
10576 | 327,3,105,0,327, | ||
10577 | 3,106,0,327,3, | ||
10578 | 107,0,327,3,108, | ||
10579 | 0,327,885,11,1, | ||
10580 | 829,0,330,1,-1, | ||
10581 | 3,106,0,327,3, | ||
10582 | 107,0,327,3,108, | ||
10583 | 0,327,886,11,1, | ||
10584 | 829,0,330,1,-1, | ||
10585 | 3,119,0,327,3, | ||
10586 | 120,0,327,3,121, | ||
10587 | 0,327,3,122,0, | ||
10588 | 327,3,48,0,327, | ||
10589 | 3,49,0,327,3, | ||
10590 | 50,0,327,3,51, | ||
10591 | 0,327,3,52,0, | ||
10592 | 327,3,53,0,327, | ||
10593 | 3,54,0,327,3, | ||
10594 | 55,0,327,3,56, | ||
10595 | 0,327,3,57,0, | ||
10596 | 327,3,65,0,327, | ||
10597 | 3,66,0,327,3, | ||
10598 | 67,0,327,3,68, | ||
10599 | 0,327,3,69,0, | ||
10600 | 327,3,70,0,327, | ||
10601 | 3,71,0,327,3, | ||
10602 | 72,0,327,3,73, | ||
10603 | 0,327,3,74,0, | ||
10604 | 327,3,75,0,327, | ||
10605 | 3,76,0,327,3, | ||
10606 | 77,0,327,3,78, | ||
10607 | 0,327,3,79,0, | ||
10608 | 327,3,80,0,327, | ||
10609 | 3,81,0,327,3, | ||
10610 | 82,0,327,3,83, | ||
10611 | 0,327,3,84,0, | ||
10612 | 327,3,85,0,327, | ||
10613 | 3,86,0,327,3, | ||
10614 | 87,0,327,3,88, | ||
10615 | 0,327,3,89,0, | ||
10616 | 327,3,90,0,327, | ||
10617 | 3,95,0,327,3, | ||
10618 | 97,0,327,3,98, | ||
10619 | 0,327,3,99,0, | ||
10620 | 327,3,100,0,327, | ||
10621 | 3,101,0,327,3, | ||
10622 | 102,0,327,3,103, | ||
10623 | 0,327,3,104,0, | ||
10624 | 327,3,105,0,327, | ||
10625 | 3,106,0,327,3, | ||
10626 | 107,0,327,3,108, | ||
10627 | 0,327,887,11,1, | ||
10628 | 829,0,330,1,-1, | ||
10629 | 3,112,0,327,3, | ||
10630 | 113,0,327,3,114, | ||
10631 | 0,327,3,115,0, | ||
10632 | 327,3,116,0,327, | ||
10633 | 3,117,0,327,3, | ||
10634 | 118,0,327,3,119, | ||
10635 | 0,327,3,120,0, | ||
10636 | 327,3,121,0,327, | ||
10637 | 3,122,0,327,3, | ||
10638 | 48,0,327,3,49, | ||
10639 | 0,327,3,50,0, | ||
10640 | 327,3,51,0,327, | ||
10641 | 3,52,0,327,3, | ||
10642 | 53,0,327,3,54, | ||
10643 | 0,327,3,55,0, | ||
10644 | 327,3,56,0,327, | ||
10645 | 3,57,0,327,3, | ||
10646 | 65,0,327,3,66, | ||
10647 | 0,327,3,67,0, | ||
10648 | 327,3,68,0,327, | ||
10649 | 3,69,0,327,3, | ||
10650 | 70,0,327,3,71, | ||
10651 | 0,327,3,72,0, | ||
10652 | 327,3,73,0,327, | ||
10653 | 3,74,0,327,3, | ||
10654 | 75,0,327,3,76, | ||
10655 | 0,327,3,77,0, | ||
10656 | 327,3,78,0,327, | ||
10657 | 3,79,0,327,3, | ||
10658 | 80,0,327,3,81, | ||
10659 | 0,327,3,82,0, | ||
10660 | 327,3,83,0,327, | ||
10661 | 3,84,0,327,3, | ||
10662 | 85,0,327,3,86, | ||
10663 | 0,327,3,87,0, | ||
10664 | 327,3,88,0,327, | ||
10665 | 3,89,0,327,3, | ||
10666 | 90,0,327,3,95, | ||
10667 | 0,327,3,97,0, | ||
10668 | 327,3,98,0,327, | ||
10669 | 3,99,0,327,3, | ||
10670 | 100,0,327,3,101, | ||
10671 | 0,327,3,102,0, | ||
10672 | 327,3,103,0,327, | ||
10673 | 3,104,0,327,3, | ||
10674 | 105,0,327,3,106, | ||
10675 | 0,327,3,107,0, | ||
10676 | 327,3,108,0,327, | ||
10677 | 888,11,1,829,0, | ||
10678 | 330,1,-1,3,110, | ||
10679 | 0,889,12,1,4361, | ||
10680 | 890,5,63,3,109, | ||
10681 | 0,327,3,110,0, | ||
10682 | 327,3,111,0,891, | ||
10683 | 12,1,4391,892,5, | ||
10684 | 63,3,109,0,327, | ||
10685 | 3,110,0,327,3, | ||
10686 | 111,0,327,3,112, | ||
10687 | 0,327,3,113,0, | ||
10688 | 327,3,114,0,327, | ||
10689 | 3,115,0,327,3, | ||
10690 | 116,0,893,12,1, | ||
10691 | 4426,894,5,63,3, | ||
10692 | 109,0,327,3,110, | ||
10693 | 0,327,3,111,0, | ||
10694 | 327,3,112,0,327, | ||
10695 | 3,113,0,327,3, | ||
10696 | 114,0,327,3,115, | ||
10697 | 0,327,3,116,0, | ||
10698 | 327,3,117,0,327, | ||
10699 | 3,118,0,327,3, | ||
10700 | 119,0,327,3,120, | ||
10701 | 0,327,3,121,0, | ||
10702 | 327,3,122,0,327, | ||
10703 | 3,48,0,327,3, | ||
10704 | 49,0,327,3,50, | ||
10705 | 0,327,3,51,0, | ||
10706 | 327,3,52,0,327, | ||
10707 | 3,53,0,327,3, | ||
10708 | 54,0,327,3,55, | ||
10709 | 0,327,3,56,0, | ||
10710 | 327,3,57,0,327, | ||
10711 | 3,65,0,327,3, | ||
10712 | 66,0,327,3,67, | ||
10713 | 0,327,3,68,0, | ||
10714 | 327,3,69,0,327, | ||
10715 | 3,70,0,327,3, | ||
10716 | 71,0,327,3,72, | ||
10717 | 0,327,3,73,0, | ||
10718 | 327,3,74,0,327, | ||
10719 | 3,75,0,327,3, | ||
10720 | 76,0,327,3,77, | ||
10721 | 0,327,3,78,0, | ||
10722 | 327,3,79,0,327, | ||
10723 | 3,80,0,327,3, | ||
10724 | 81,0,327,3,82, | ||
10725 | 0,327,3,83,0, | ||
10726 | 327,3,84,0,327, | ||
10727 | 3,85,0,327,3, | ||
10728 | 86,0,327,3,87, | ||
10729 | 0,327,3,88,0, | ||
10730 | 327,3,89,0,327, | ||
10731 | 3,90,0,327,3, | ||
10732 | 95,0,895,12,1, | ||
10733 | 4512,896,5,63,3, | ||
10734 | 109,0,327,3,110, | ||
10735 | 0,327,3,111,0, | ||
10736 | 327,3,112,0,327, | ||
10737 | 3,113,0,327,3, | ||
10738 | 114,0,327,3,115, | ||
10739 | 0,327,3,116,0, | ||
10740 | 327,3,117,0,327, | ||
10741 | 3,118,0,327,3, | ||
10742 | 119,0,327,3,120, | ||
10743 | 0,327,3,121,0, | ||
10744 | 327,3,122,0,327, | ||
10745 | 3,48,0,327,3, | ||
10746 | 49,0,327,3,50, | ||
10747 | 0,327,3,51,0, | ||
10748 | 327,3,52,0,327, | ||
10749 | 3,53,0,327,3, | ||
10750 | 54,0,327,3,55, | ||
10751 | 0,327,3,56,0, | ||
10752 | 327,3,57,0,327, | ||
10753 | 3,65,0,327,3, | ||
10754 | 66,0,327,3,67, | ||
10755 | 0,327,3,68,0, | ||
10756 | 327,3,69,0,327, | ||
10757 | 3,70,0,327,3, | ||
10758 | 71,0,327,3,72, | ||
10759 | 0,327,3,73,0, | ||
10760 | 327,3,74,0,327, | ||
10761 | 3,75,0,327,3, | ||
10762 | 76,0,327,3,77, | ||
10763 | 0,327,3,78,0, | ||
10764 | 327,3,79,0,327, | ||
10765 | 3,80,0,327,3, | ||
10766 | 81,0,327,3,82, | ||
10767 | 0,327,3,83,0, | ||
10768 | 327,3,84,0,327, | ||
10769 | 3,85,0,327,3, | ||
10770 | 86,0,327,3,87, | ||
10771 | 0,327,3,88,0, | ||
10772 | 327,3,89,0,327, | ||
10773 | 3,90,0,327,3, | ||
10774 | 95,0,327,3,97, | ||
10775 | 0,897,12,1,4555, | ||
10776 | 898,5,63,3,109, | ||
10777 | 0,327,3,110,0, | ||
10778 | 327,3,111,0,327, | ||
10779 | 3,112,0,327,3, | ||
10780 | 113,0,327,3,114, | ||
10781 | 0,327,3,115,0, | ||
10782 | 327,3,116,0,899, | ||
10783 | 12,1,4590,900,5, | ||
10784 | 63,3,109,0,327, | ||
10785 | 3,110,0,327,3, | ||
10786 | 111,0,327,3,112, | ||
10787 | 0,327,3,113,0, | ||
10788 | 327,3,114,0,327, | ||
10789 | 3,115,0,327,3, | ||
10790 | 116,0,327,3,117, | ||
10791 | 0,327,3,118,0, | ||
10792 | 327,3,119,0,327, | ||
10793 | 3,120,0,327,3, | ||
10794 | 121,0,327,3,122, | ||
10795 | 0,327,3,48,0, | ||
10796 | 327,3,49,0,327, | ||
10797 | 3,50,0,327,3, | ||
10798 | 51,0,327,3,52, | ||
10799 | 0,327,3,53,0, | ||
10800 | 327,3,54,0,327, | ||
10801 | 3,55,0,327,3, | ||
10802 | 56,0,327,3,57, | ||
10803 | 0,327,3,65,0, | ||
10804 | 327,3,66,0,327, | ||
10805 | 3,67,0,327,3, | ||
10806 | 68,0,327,3,69, | ||
10807 | 0,327,3,70,0, | ||
10808 | 327,3,71,0,327, | ||
10809 | 3,72,0,327,3, | ||
10810 | 73,0,327,3,74, | ||
10811 | 0,327,3,75,0, | ||
10812 | 327,3,76,0,327, | ||
10813 | 3,77,0,327,3, | ||
10814 | 78,0,327,3,79, | ||
10815 | 0,327,3,80,0, | ||
10816 | 327,3,81,0,327, | ||
10817 | 3,82,0,327,3, | ||
10818 | 83,0,327,3,84, | ||
10819 | 0,327,3,85,0, | ||
10820 | 327,3,86,0,327, | ||
10821 | 3,87,0,327,3, | ||
10822 | 88,0,327,3,89, | ||
10823 | 0,327,3,90,0, | ||
10824 | 327,3,95,0,901, | ||
10825 | 12,1,4676,902,5, | ||
10826 | 63,3,109,0,327, | ||
10827 | 3,110,0,327,3, | ||
10828 | 111,0,327,3,112, | ||
10829 | 0,327,3,113,0, | ||
10830 | 327,3,114,0,903, | ||
10831 | 12,1,4709,904,5, | ||
10832 | 63,3,109,0,327, | ||
10833 | 3,110,0,327,3, | ||
10834 | 111,0,905,12,1, | ||
10835 | 4739,906,5,63,3, | ||
10836 | 109,0,327,3,110, | ||
10837 | 0,327,3,111,0, | ||
10838 | 327,3,112,0,327, | ||
10839 | 3,113,0,327,3, | ||
10840 | 114,0,327,3,115, | ||
10841 | 0,327,3,116,0, | ||
10842 | 907,12,1,4774,908, | ||
10843 | 5,63,3,109,0, | ||
10844 | 327,3,110,0,327, | ||
10845 | 3,111,0,327,3, | ||
10846 | 112,0,327,3,113, | ||
10847 | 0,327,3,114,0, | ||
10848 | 327,3,115,0,327, | ||
10849 | 3,116,0,327,3, | ||
10850 | 117,0,327,3,118, | ||
10851 | 0,327,3,119,0, | ||
10852 | 327,3,120,0,327, | ||
10853 | 3,121,0,327,3, | ||
10854 | 122,0,327,3,48, | ||
10855 | 0,327,3,49,0, | ||
10856 | 327,3,50,0,327, | ||
10857 | 3,51,0,327,3, | ||
10858 | 52,0,327,3,53, | ||
10859 | 0,327,3,54,0, | ||
10860 | 327,3,55,0,327, | ||
10861 | 3,56,0,327,3, | ||
10862 | 57,0,327,3,65, | ||
10863 | 0,327,3,66,0, | ||
10864 | 327,3,67,0,327, | ||
10865 | 3,68,0,327,3, | ||
10866 | 69,0,327,3,70, | ||
10867 | 0,327,3,71,0, | ||
10868 | 327,3,72,0,327, | ||
10869 | 3,73,0,327,3, | ||
10870 | 74,0,327,3,75, | ||
10871 | 0,327,3,76,0, | ||
10872 | 327,3,77,0,327, | ||
10873 | 3,78,0,327,3, | ||
10874 | 79,0,327,3,80, | ||
10875 | 0,327,3,81,0, | ||
10876 | 327,3,82,0,327, | ||
10877 | 3,83,0,327,3, | ||
10878 | 84,0,327,3,85, | ||
10879 | 0,327,3,86,0, | ||
10880 | 327,3,87,0,327, | ||
10881 | 3,88,0,327,3, | ||
10882 | 89,0,327,3,90, | ||
10883 | 0,327,3,95,0, | ||
10884 | 909,12,1,4860,910, | ||
10885 | 5,63,3,109,0, | ||
10886 | 327,3,110,0,327, | ||
10887 | 3,111,0,327,3, | ||
10888 | 112,0,327,3,113, | ||
10889 | 0,327,3,114,0, | ||
10890 | 327,3,115,0,327, | ||
10891 | 3,116,0,911,12, | ||
10892 | 1,4895,912,5,63, | ||
10893 | 3,109,0,327,3, | ||
10894 | 110,0,327,3,111, | ||
10895 | 0,327,3,112,0, | ||
10896 | 327,3,113,0,327, | ||
10897 | 3,114,0,327,3, | ||
10898 | 115,0,327,3,116, | ||
10899 | 0,327,3,117,0, | ||
10900 | 327,3,118,0,327, | ||
10901 | 3,119,0,327,3, | ||
10902 | 120,0,327,3,121, | ||
10903 | 0,327,3,122,0, | ||
10904 | 327,3,48,0,327, | ||
10905 | 3,49,0,327,3, | ||
10906 | 50,0,327,3,51, | ||
10907 | 0,327,3,52,0, | ||
10908 | 327,3,53,0,327, | ||
10909 | 3,54,0,327,3, | ||
10910 | 55,0,327,3,56, | ||
10911 | 0,327,3,57,0, | ||
10912 | 327,3,65,0,327, | ||
10913 | 3,66,0,327,3, | ||
10914 | 67,0,327,3,68, | ||
10915 | 0,327,3,69,0, | ||
10916 | 327,3,70,0,327, | ||
10917 | 3,71,0,327,3, | ||
10918 | 72,0,327,3,73, | ||
10919 | 0,327,3,74,0, | ||
10920 | 327,3,75,0,327, | ||
10921 | 3,76,0,327,3, | ||
10922 | 77,0,327,3,78, | ||
10923 | 0,327,3,79,0, | ||
10924 | 327,3,80,0,327, | ||
10925 | 3,81,0,327,3, | ||
10926 | 82,0,327,3,83, | ||
10927 | 0,327,3,84,0, | ||
10928 | 327,3,85,0,327, | ||
10929 | 3,86,0,327,3, | ||
10930 | 87,0,327,3,88, | ||
10931 | 0,327,3,89,0, | ||
10932 | 327,3,90,0,327, | ||
10933 | 3,95,0,327,3, | ||
10934 | 97,0,913,12,1, | ||
10935 | 4938,914,5,63,3, | ||
10936 | 109,0,327,3,110, | ||
10937 | 0,327,3,111,0, | ||
10938 | 327,3,112,0,327, | ||
10939 | 3,113,0,327,3, | ||
10940 | 114,0,915,12,1, | ||
10941 | 4971,916,5,63,3, | ||
10942 | 109,0,327,3,110, | ||
10943 | 0,327,3,111,0, | ||
10944 | 327,3,112,0,327, | ||
10945 | 3,113,0,327,3, | ||
10946 | 114,0,327,3,115, | ||
10947 | 0,327,3,116,0, | ||
10948 | 327,3,117,0,327, | ||
10949 | 3,118,0,327,3, | ||
10950 | 119,0,327,3,120, | ||
10951 | 0,327,3,121,0, | ||
10952 | 327,3,122,0,327, | ||
10953 | 3,48,0,327,3, | ||
10954 | 49,0,327,3,50, | ||
10955 | 0,327,3,51,0, | ||
10956 | 327,3,52,0,327, | ||
10957 | 3,53,0,327,3, | ||
10958 | 54,0,327,3,55, | ||
10959 | 0,327,3,56,0, | ||
10960 | 327,3,57,0,327, | ||
10961 | 3,65,0,327,3, | ||
10962 | 66,0,327,3,67, | ||
10963 | 0,327,3,68,0, | ||
10964 | 327,3,69,0,327, | ||
10965 | 3,70,0,327,3, | ||
10966 | 71,0,327,3,72, | ||
10967 | 0,327,3,73,0, | ||
10968 | 327,3,74,0,327, | ||
10969 | 3,75,0,327,3, | ||
10970 | 76,0,327,3,77, | ||
10971 | 0,327,3,78,0, | ||
10972 | 327,3,79,0,327, | ||
10973 | 3,80,0,327,3, | ||
10974 | 81,0,327,3,82, | ||
10975 | 0,327,3,83,0, | ||
10976 | 327,3,84,0,327, | ||
10977 | 3,85,0,327,3, | ||
10978 | 86,0,327,3,87, | ||
10979 | 0,327,3,88,0, | ||
10980 | 327,3,89,0,327, | ||
10981 | 3,90,0,327,3, | ||
10982 | 95,0,327,3,97, | ||
10983 | 0,327,3,98,0, | ||
10984 | 327,3,99,0,327, | ||
10985 | 3,100,0,327,3, | ||
10986 | 101,0,327,3,102, | ||
10987 | 0,327,3,103,0, | ||
10988 | 917,12,1,5020,918, | ||
10989 | 5,63,3,109,0, | ||
10990 | 327,3,110,0,327, | ||
10991 | 3,111,0,327,3, | ||
10992 | 112,0,327,3,113, | ||
10993 | 0,327,3,114,0, | ||
10994 | 327,3,115,0,327, | ||
10995 | 3,116,0,327,3, | ||
10996 | 117,0,327,3,118, | ||
10997 | 0,327,3,119,0, | ||
10998 | 327,3,120,0,327, | ||
10999 | 3,121,0,327,3, | ||
11000 | 122,0,327,3,48, | ||
11001 | 0,327,3,49,0, | ||
11002 | 327,3,50,0,327, | ||
11003 | 3,51,0,327,3, | ||
11004 | 52,0,327,3,53, | ||
11005 | 0,327,3,54,0, | ||
11006 | 327,3,55,0,327, | ||
11007 | 3,56,0,327,3, | ||
11008 | 57,0,327,3,65, | ||
11009 | 0,327,3,66,0, | ||
11010 | 327,3,67,0,327, | ||
11011 | 3,68,0,327,3, | ||
11012 | 69,0,327,3,70, | ||
11013 | 0,327,3,71,0, | ||
11014 | 327,3,72,0,327, | ||
11015 | 3,73,0,327,3, | ||
11016 | 74,0,327,3,75, | ||
11017 | 0,327,3,76,0, | ||
11018 | 327,3,77,0,327, | ||
11019 | 3,78,0,327,3, | ||
11020 | 79,0,327,3,80, | ||
11021 | 0,327,3,81,0, | ||
11022 | 327,3,82,0,327, | ||
11023 | 3,83,0,327,3, | ||
11024 | 84,0,327,3,85, | ||
11025 | 0,327,3,86,0, | ||
11026 | 327,3,87,0,327, | ||
11027 | 3,88,0,327,3, | ||
11028 | 89,0,327,3,90, | ||
11029 | 0,327,3,95,0, | ||
11030 | 327,3,97,0,327, | ||
11031 | 3,98,0,327,3, | ||
11032 | 99,0,327,3,100, | ||
11033 | 0,327,3,101,0, | ||
11034 | 919,12,1,5067,920, | ||
11035 | 5,63,3,109,0, | ||
11036 | 327,3,110,0,327, | ||
11037 | 3,111,0,327,3, | ||
11038 | 112,0,327,3,113, | ||
11039 | 0,327,3,114,0, | ||
11040 | 327,3,115,0,327, | ||
11041 | 3,116,0,921,12, | ||
11042 | 1,5102,922,5,63, | ||
11043 | 3,109,0,327,3, | ||
11044 | 110,0,327,3,111, | ||
11045 | 0,327,3,112,0, | ||
11046 | 327,3,113,0,327, | ||
11047 | 3,114,0,327,3, | ||
11048 | 115,0,327,3,116, | ||
11049 | 0,327,3,117,0, | ||
11050 | 327,3,118,0,327, | ||
11051 | 3,119,0,327,3, | ||
11052 | 120,0,327,3,121, | ||
11053 | 0,327,3,122,0, | ||
11054 | 327,3,48,0,327, | ||
11055 | 3,49,0,327,3, | ||
11056 | 50,0,327,3,51, | ||
11057 | 0,327,3,52,0, | ||
11058 | 327,3,53,0,327, | ||
11059 | 3,54,0,327,3, | ||
11060 | 55,0,327,3,56, | ||
11061 | 0,327,3,57,0, | ||
11062 | 327,3,65,0,327, | ||
11063 | 3,66,0,327,3, | ||
11064 | 67,0,327,3,68, | ||
11065 | 0,327,3,69,0, | ||
11066 | 327,3,70,0,327, | ||
11067 | 3,71,0,327,3, | ||
11068 | 72,0,327,3,73, | ||
11069 | 0,327,3,74,0, | ||
11070 | 327,3,75,0,327, | ||
11071 | 3,76,0,327,3, | ||
11072 | 77,0,327,3,78, | ||
11073 | 0,327,3,79,0, | ||
11074 | 327,3,80,0,327, | ||
11075 | 3,81,0,327,3, | ||
11076 | 82,0,327,3,83, | ||
11077 | 0,327,3,84,0, | ||
11078 | 327,3,85,0,327, | ||
11079 | 3,86,0,327,3, | ||
11080 | 87,0,327,3,88, | ||
11081 | 0,327,3,89,0, | ||
11082 | 327,3,90,0,327, | ||
11083 | 3,95,0,327,3, | ||
11084 | 97,0,327,3,98, | ||
11085 | 0,327,3,99,0, | ||
11086 | 327,3,100,0,327, | ||
11087 | 3,101,0,327,3, | ||
11088 | 102,0,327,3,103, | ||
11089 | 0,327,3,104,0, | ||
11090 | 327,3,105,0,327, | ||
11091 | 3,106,0,327,3, | ||
11092 | 107,0,327,3,108, | ||
11093 | 0,327,923,11,1, | ||
11094 | 643,0,924,4,46, | ||
11095 | 78,0,79,0,84, | ||
11096 | 0,95,0,65,0, | ||
11097 | 84,0,95,0,82, | ||
11098 | 0,79,0,84,0, | ||
11099 | 95,0,84,0,65, | ||
11100 | 0,82,0,71,0, | ||
11101 | 69,0,84,0,95, | ||
11102 | 0,69,0,86,0, | ||
11103 | 69,0,78,0,84, | ||
11104 | 0,1,-1,3,117, | ||
11105 | 0,327,3,118,0, | ||
11106 | 327,3,119,0,327, | ||
11107 | 3,120,0,327,3, | ||
11108 | 121,0,327,3,122, | ||
11109 | 0,327,3,48,0, | ||
11110 | 327,3,49,0,327, | ||
11111 | 3,50,0,327,3, | ||
11112 | 51,0,327,3,52, | ||
11113 | 0,327,3,53,0, | ||
11114 | 327,3,54,0,327, | ||
11115 | 3,55,0,327,3, | ||
11116 | 56,0,327,3,57, | ||
11117 | 0,327,3,65,0, | ||
11118 | 327,3,66,0,327, | ||
11119 | 3,67,0,327,3, | ||
11120 | 68,0,327,3,69, | ||
11121 | 0,327,3,70,0, | ||
11122 | 327,3,71,0,327, | ||
11123 | 3,72,0,327,3, | ||
11124 | 73,0,327,3,74, | ||
11125 | 0,327,3,75,0, | ||
11126 | 327,3,76,0,327, | ||
11127 | 3,77,0,327,3, | ||
11128 | 78,0,327,3,79, | ||
11129 | 0,327,3,80,0, | ||
11130 | 327,3,81,0,327, | ||
11131 | 3,82,0,327,3, | ||
11132 | 83,0,327,3,84, | ||
11133 | 0,327,3,85,0, | ||
11134 | 327,3,86,0,327, | ||
11135 | 3,87,0,327,3, | ||
11136 | 88,0,327,3,89, | ||
11137 | 0,327,3,90,0, | ||
11138 | 327,3,95,0,327, | ||
11139 | 3,97,0,327,3, | ||
11140 | 98,0,327,3,99, | ||
11141 | 0,327,3,100,0, | ||
11142 | 327,3,101,0,327, | ||
11143 | 3,102,0,327,3, | ||
11144 | 103,0,327,3,104, | ||
11145 | 0,327,3,105,0, | ||
11146 | 327,3,106,0,327, | ||
11147 | 3,107,0,327,3, | ||
11148 | 108,0,327,925,11, | ||
11149 | 1,829,0,330,1, | ||
11150 | -1,3,102,0,327, | ||
11151 | 3,103,0,327,3, | ||
11152 | 104,0,327,3,105, | ||
11153 | 0,327,3,106,0, | ||
11154 | 327,3,107,0,327, | ||
11155 | 3,108,0,327,926, | ||
11156 | 11,1,829,0,330, | ||
11157 | 1,-1,3,104,0, | ||
11158 | 327,3,105,0,327, | ||
11159 | 3,106,0,327,3, | ||
11160 | 107,0,327,3,108, | ||
11161 | 0,327,927,11,1, | ||
11162 | 829,0,330,1,-1, | ||
11163 | 3,115,0,327,3, | ||
11164 | 116,0,327,3,117, | ||
11165 | 0,327,3,118,0, | ||
11166 | 327,3,119,0,327, | ||
11167 | 3,120,0,327,3, | ||
11168 | 121,0,327,3,122, | ||
11169 | 0,327,3,48,0, | ||
11170 | 327,3,49,0,327, | ||
11171 | 3,50,0,327,3, | ||
11172 | 51,0,327,3,52, | ||
11173 | 0,327,3,53,0, | ||
11174 | 327,3,54,0,327, | ||
11175 | 3,55,0,327,3, | ||
11176 | 56,0,327,3,57, | ||
11177 | 0,327,3,65,0, | ||
11178 | 327,3,66,0,327, | ||
11179 | 3,67,0,327,3, | ||
11180 | 68,0,327,3,69, | ||
11181 | 0,327,3,70,0, | ||
11182 | 327,3,71,0,327, | ||
11183 | 3,72,0,327,3, | ||
11184 | 73,0,327,3,74, | ||
11185 | 0,327,3,75,0, | ||
11186 | 327,3,76,0,327, | ||
11187 | 3,77,0,327,3, | ||
11188 | 78,0,327,3,79, | ||
11189 | 0,327,3,80,0, | ||
11190 | 327,3,81,0,327, | ||
11191 | 3,82,0,327,3, | ||
11192 | 83,0,327,3,84, | ||
11193 | 0,327,3,85,0, | ||
11194 | 327,3,86,0,327, | ||
11195 | 3,87,0,327,3, | ||
11196 | 88,0,327,3,89, | ||
11197 | 0,327,3,90,0, | ||
11198 | 327,3,95,0,327, | ||
11199 | 3,97,0,327,3, | ||
11200 | 98,0,327,3,99, | ||
11201 | 0,327,3,100,0, | ||
11202 | 327,3,101,0,327, | ||
11203 | 3,102,0,327,3, | ||
11204 | 103,0,327,3,104, | ||
11205 | 0,327,3,105,0, | ||
11206 | 327,3,106,0,327, | ||
11207 | 3,107,0,327,3, | ||
11208 | 108,0,327,928,11, | ||
11209 | 1,829,0,330,1, | ||
11210 | -1,3,98,0,327, | ||
11211 | 3,99,0,327,3, | ||
11212 | 100,0,327,3,101, | ||
11213 | 0,327,3,102,0, | ||
11214 | 327,3,103,0,327, | ||
11215 | 3,104,0,327,3, | ||
11216 | 105,0,327,3,106, | ||
11217 | 0,327,3,107,0, | ||
11218 | 327,3,108,0,327, | ||
11219 | 929,11,1,829,0, | ||
11220 | 330,1,-1,3,117, | ||
11221 | 0,327,3,118,0, | ||
11222 | 327,3,119,0,327, | ||
11223 | 3,120,0,327,3, | ||
11224 | 121,0,327,3,122, | ||
11225 | 0,327,3,48,0, | ||
11226 | 327,3,49,0,327, | ||
11227 | 3,50,0,327,3, | ||
11228 | 51,0,327,3,52, | ||
11229 | 0,327,3,53,0, | ||
11230 | 327,3,54,0,327, | ||
11231 | 3,55,0,327,3, | ||
11232 | 56,0,327,3,57, | ||
11233 | 0,327,3,65,0, | ||
11234 | 327,3,66,0,327, | ||
11235 | 3,67,0,327,3, | ||
11236 | 68,0,327,3,69, | ||
11237 | 0,327,3,70,0, | ||
11238 | 327,3,71,0,327, | ||
11239 | 3,72,0,327,3, | ||
11240 | 73,0,327,3,74, | ||
11241 | 0,327,3,75,0, | ||
11242 | 327,3,76,0,327, | ||
11243 | 3,77,0,327,3, | ||
11244 | 78,0,327,3,79, | ||
11245 | 0,327,3,80,0, | ||
11246 | 327,3,81,0,327, | ||
11247 | 3,82,0,327,3, | ||
11248 | 83,0,327,3,84, | ||
11249 | 0,327,3,85,0, | ||
11250 | 327,3,86,0,327, | ||
11251 | 3,87,0,327,3, | ||
11252 | 88,0,327,3,89, | ||
11253 | 0,327,3,90,0, | ||
11254 | 327,3,95,0,327, | ||
11255 | 3,97,0,327,3, | ||
11256 | 98,0,327,3,99, | ||
11257 | 0,327,3,100,0, | ||
11258 | 327,3,101,0,327, | ||
11259 | 3,102,0,327,3, | ||
11260 | 103,0,327,3,104, | ||
11261 | 0,327,3,105,0, | ||
11262 | 327,3,106,0,327, | ||
11263 | 3,107,0,327,3, | ||
11264 | 108,0,327,930,11, | ||
11265 | 1,829,0,330,1, | ||
11266 | -1,3,97,0,327, | ||
11267 | 3,98,0,327,3, | ||
11268 | 99,0,327,3,100, | ||
11269 | 0,327,3,101,0, | ||
11270 | 327,3,102,0,327, | ||
11271 | 3,103,0,327,3, | ||
11272 | 104,0,327,3,105, | ||
11273 | 0,327,3,106,0, | ||
11274 | 327,3,107,0,327, | ||
11275 | 3,108,0,327,931, | ||
11276 | 11,1,829,0,330, | ||
11277 | 1,-1,3,117,0, | ||
11278 | 327,3,118,0,327, | ||
11279 | 3,119,0,327,3, | ||
11280 | 120,0,327,3,121, | ||
11281 | 0,327,3,122,0, | ||
11282 | 327,3,48,0,327, | ||
11283 | 3,49,0,327,3, | ||
11284 | 50,0,327,3,51, | ||
11285 | 0,327,3,52,0, | ||
11286 | 327,3,53,0,327, | ||
11287 | 3,54,0,327,3, | ||
11288 | 55,0,327,3,56, | ||
11289 | 0,327,3,57,0, | ||
11290 | 327,3,65,0,327, | ||
11291 | 3,66,0,327,3, | ||
11292 | 67,0,327,3,68, | ||
11293 | 0,327,3,69,0, | ||
11294 | 327,3,70,0,327, | ||
11295 | 3,71,0,327,3, | ||
11296 | 72,0,327,3,73, | ||
11297 | 0,327,3,74,0, | ||
11298 | 327,3,75,0,327, | ||
11299 | 3,76,0,327,3, | ||
11300 | 77,0,327,3,78, | ||
11301 | 0,327,3,79,0, | ||
11302 | 327,3,80,0,327, | ||
11303 | 3,81,0,327,3, | ||
11304 | 82,0,327,3,83, | ||
11305 | 0,327,3,84,0, | ||
11306 | 327,3,85,0,327, | ||
11307 | 3,86,0,327,3, | ||
11308 | 87,0,327,3,88, | ||
11309 | 0,327,3,89,0, | ||
11310 | 327,3,90,0,327, | ||
11311 | 3,95,0,327,3, | ||
11312 | 97,0,327,3,98, | ||
11313 | 0,327,3,99,0, | ||
11314 | 327,3,100,0,327, | ||
11315 | 3,101,0,327,3, | ||
11316 | 102,0,327,3,103, | ||
11317 | 0,327,3,104,0, | ||
11318 | 327,3,105,0,327, | ||
11319 | 3,106,0,327,3, | ||
11320 | 107,0,327,3,108, | ||
11321 | 0,327,932,11,1, | ||
11322 | 829,0,330,1,-1, | ||
11323 | 3,112,0,327,3, | ||
11324 | 113,0,327,3,114, | ||
11325 | 0,327,3,115,0, | ||
11326 | 327,3,116,0,327, | ||
11327 | 3,117,0,327,3, | ||
11328 | 118,0,327,3,119, | ||
11329 | 0,327,3,120,0, | ||
11330 | 327,3,121,0,327, | ||
11331 | 3,122,0,327,3, | ||
11332 | 48,0,327,3,49, | ||
11333 | 0,327,3,50,0, | ||
11334 | 327,3,51,0,327, | ||
11335 | 3,52,0,327,3, | ||
11336 | 53,0,327,3,54, | ||
11337 | 0,327,3,55,0, | ||
11338 | 327,3,56,0,327, | ||
11339 | 3,57,0,327,3, | ||
11340 | 65,0,327,3,66, | ||
11341 | 0,327,3,67,0, | ||
11342 | 327,3,68,0,327, | ||
11343 | 3,69,0,327,3, | ||
11344 | 70,0,327,3,71, | ||
11345 | 0,327,3,72,0, | ||
11346 | 327,3,73,0,327, | ||
11347 | 3,74,0,327,3, | ||
11348 | 75,0,327,3,76, | ||
11349 | 0,327,3,77,0, | ||
11350 | 327,3,78,0,327, | ||
11351 | 3,79,0,327,3, | ||
11352 | 80,0,327,3,81, | ||
11353 | 0,327,3,82,0, | ||
11354 | 327,3,83,0,327, | ||
11355 | 3,84,0,327,3, | ||
11356 | 85,0,327,3,86, | ||
11357 | 0,327,3,87,0, | ||
11358 | 327,3,88,0,327, | ||
11359 | 3,89,0,327,3, | ||
11360 | 90,0,327,3,95, | ||
11361 | 0,327,3,97,0, | ||
11362 | 327,3,98,0,327, | ||
11363 | 3,99,0,327,3, | ||
11364 | 100,0,327,3,101, | ||
11365 | 0,327,3,102,0, | ||
11366 | 327,3,103,0,327, | ||
11367 | 3,104,0,327,3, | ||
11368 | 105,0,327,3,106, | ||
11369 | 0,327,3,107,0, | ||
11370 | 327,3,108,0,327, | ||
11371 | 933,11,1,829,0, | ||
11372 | 330,1,-1,3,115, | ||
11373 | 0,327,3,116,0, | ||
11374 | 934,12,1,5911,935, | ||
11375 | 5,63,3,109,0, | ||
11376 | 327,3,110,0,327, | ||
11377 | 3,111,0,327,3, | ||
11378 | 112,0,327,3,113, | ||
11379 | 0,327,3,114,0, | ||
11380 | 327,3,115,0,327, | ||
11381 | 3,116,0,327,3, | ||
11382 | 117,0,327,3,118, | ||
11383 | 0,327,3,119,0, | ||
11384 | 327,3,120,0,327, | ||
11385 | 3,121,0,327,3, | ||
11386 | 122,0,327,3,48, | ||
11387 | 0,327,3,49,0, | ||
11388 | 327,3,50,0,327, | ||
11389 | 3,51,0,327,3, | ||
11390 | 52,0,327,3,53, | ||
11391 | 0,327,3,54,0, | ||
11392 | 327,3,55,0,327, | ||
11393 | 3,56,0,327,3, | ||
11394 | 57,0,327,3,65, | ||
11395 | 0,327,3,66,0, | ||
11396 | 327,3,67,0,327, | ||
11397 | 3,68,0,327,3, | ||
11398 | 69,0,327,3,70, | ||
11399 | 0,327,3,71,0, | ||
11400 | 327,3,72,0,327, | ||
11401 | 3,73,0,327,3, | ||
11402 | 74,0,327,3,75, | ||
11403 | 0,327,3,76,0, | ||
11404 | 327,3,77,0,327, | ||
11405 | 3,78,0,327,3, | ||
11406 | 79,0,327,3,80, | ||
11407 | 0,327,3,81,0, | ||
11408 | 327,3,82,0,327, | ||
11409 | 3,83,0,327,3, | ||
11410 | 84,0,327,3,85, | ||
11411 | 0,327,3,86,0, | ||
11412 | 327,3,87,0,327, | ||
11413 | 3,88,0,327,3, | ||
11414 | 89,0,327,3,90, | ||
11415 | 0,327,3,95,0, | ||
11416 | 327,3,97,0,936, | ||
11417 | 12,1,5954,937,5, | ||
11418 | 63,3,109,0,327, | ||
11419 | 3,110,0,327,3, | ||
11420 | 111,0,327,3,112, | ||
11421 | 0,327,3,113,0, | ||
11422 | 327,3,114,0,938, | ||
11423 | 12,1,5987,939,5, | ||
11424 | 63,3,109,0,327, | ||
11425 | 3,110,0,327,3, | ||
11426 | 111,0,327,3,112, | ||
11427 | 0,327,3,113,0, | ||
11428 | 327,3,114,0,327, | ||
11429 | 3,115,0,327,3, | ||
11430 | 116,0,327,3,117, | ||
11431 | 0,327,3,118,0, | ||
11432 | 327,3,119,0,327, | ||
11433 | 3,120,0,327,3, | ||
11434 | 121,0,327,3,122, | ||
11435 | 0,327,3,48,0, | ||
11436 | 327,3,49,0,327, | ||
11437 | 3,50,0,327,3, | ||
11438 | 51,0,327,3,52, | ||
11439 | 0,327,3,53,0, | ||
11440 | 327,3,54,0,327, | ||
11441 | 3,55,0,327,3, | ||
11442 | 56,0,327,3,57, | ||
11443 | 0,327,3,65,0, | ||
11444 | 327,3,66,0,327, | ||
11445 | 3,67,0,327,3, | ||
11446 | 68,0,327,3,69, | ||
11447 | 0,327,3,70,0, | ||
11448 | 327,3,71,0,327, | ||
11449 | 3,72,0,327,3, | ||
11450 | 73,0,327,3,74, | ||
11451 | 0,327,3,75,0, | ||
11452 | 327,3,76,0,327, | ||
11453 | 3,77,0,327,3, | ||
11454 | 78,0,327,3,79, | ||
11455 | 0,327,3,80,0, | ||
11456 | 327,3,81,0,327, | ||
11457 | 3,82,0,327,3, | ||
11458 | 83,0,327,3,84, | ||
11459 | 0,327,3,85,0, | ||
11460 | 327,3,86,0,327, | ||
11461 | 3,87,0,327,3, | ||
11462 | 88,0,327,3,89, | ||
11463 | 0,327,3,90,0, | ||
11464 | 327,3,95,0,327, | ||
11465 | 3,97,0,327,3, | ||
11466 | 98,0,327,3,99, | ||
11467 | 0,327,3,100,0, | ||
11468 | 327,3,101,0,327, | ||
11469 | 3,102,0,327,3, | ||
11470 | 103,0,940,12,1, | ||
11471 | 6036,941,5,63,3, | ||
11472 | 109,0,327,3,110, | ||
11473 | 0,327,3,111,0, | ||
11474 | 327,3,112,0,327, | ||
11475 | 3,113,0,327,3, | ||
11476 | 114,0,327,3,115, | ||
11477 | 0,327,3,116,0, | ||
11478 | 327,3,117,0,327, | ||
11479 | 3,118,0,327,3, | ||
11480 | 119,0,327,3,120, | ||
11481 | 0,327,3,121,0, | ||
11482 | 327,3,122,0,327, | ||
11483 | 3,48,0,327,3, | ||
11484 | 49,0,327,3,50, | ||
11485 | 0,327,3,51,0, | ||
11486 | 327,3,52,0,327, | ||
11487 | 3,53,0,327,3, | ||
11488 | 54,0,327,3,55, | ||
11489 | 0,327,3,56,0, | ||
11490 | 327,3,57,0,327, | ||
11491 | 3,65,0,327,3, | ||
11492 | 66,0,327,3,67, | ||
11493 | 0,327,3,68,0, | ||
11494 | 327,3,69,0,327, | ||
11495 | 3,70,0,327,3, | ||
11496 | 71,0,327,3,72, | ||
11497 | 0,327,3,73,0, | ||
11498 | 327,3,74,0,327, | ||
11499 | 3,75,0,327,3, | ||
11500 | 76,0,327,3,77, | ||
11501 | 0,327,3,78,0, | ||
11502 | 327,3,79,0,327, | ||
11503 | 3,80,0,327,3, | ||
11504 | 81,0,327,3,82, | ||
11505 | 0,327,3,83,0, | ||
11506 | 327,3,84,0,327, | ||
11507 | 3,85,0,327,3, | ||
11508 | 86,0,327,3,87, | ||
11509 | 0,327,3,88,0, | ||
11510 | 327,3,89,0,327, | ||
11511 | 3,90,0,327,3, | ||
11512 | 95,0,327,3,97, | ||
11513 | 0,327,3,98,0, | ||
11514 | 327,3,99,0,327, | ||
11515 | 3,100,0,327,3, | ||
11516 | 101,0,942,12,1, | ||
11517 | 6083,943,5,63,3, | ||
11518 | 109,0,327,3,110, | ||
11519 | 0,327,3,111,0, | ||
11520 | 327,3,112,0,327, | ||
11521 | 3,113,0,327,3, | ||
11522 | 114,0,327,3,115, | ||
11523 | 0,327,3,116,0, | ||
11524 | 944,12,1,6118,945, | ||
11525 | 5,63,3,109,0, | ||
11526 | 327,3,110,0,327, | ||
11527 | 3,111,0,327,3, | ||
11528 | 112,0,327,3,113, | ||
11529 | 0,327,3,114,0, | ||
11530 | 327,3,115,0,327, | ||
11531 | 3,116,0,327,3, | ||
11532 | 117,0,327,3,118, | ||
11533 | 0,327,3,119,0, | ||
11534 | 327,3,120,0,327, | ||
11535 | 3,121,0,327,3, | ||
11536 | 122,0,327,3,48, | ||
11537 | 0,327,3,49,0, | ||
11538 | 327,3,50,0,327, | ||
11539 | 3,51,0,327,3, | ||
11540 | 52,0,327,3,53, | ||
11541 | 0,327,3,54,0, | ||
11542 | 327,3,55,0,327, | ||
11543 | 3,56,0,327,3, | ||
11544 | 57,0,327,3,65, | ||
11545 | 0,327,3,66,0, | ||
11546 | 327,3,67,0,327, | ||
11547 | 3,68,0,327,3, | ||
11548 | 69,0,327,3,70, | ||
11549 | 0,327,3,71,0, | ||
11550 | 327,3,72,0,327, | ||
11551 | 3,73,0,327,3, | ||
11552 | 74,0,327,3,75, | ||
11553 | 0,327,3,76,0, | ||
11554 | 327,3,77,0,327, | ||
11555 | 3,78,0,327,3, | ||
11556 | 79,0,327,3,80, | ||
11557 | 0,327,3,81,0, | ||
11558 | 327,3,82,0,327, | ||
11559 | 3,83,0,327,3, | ||
11560 | 84,0,327,3,85, | ||
11561 | 0,327,3,86,0, | ||
11562 | 327,3,87,0,327, | ||
11563 | 3,88,0,327,3, | ||
11564 | 89,0,327,3,90, | ||
11565 | 0,327,3,95,0, | ||
11566 | 327,3,97,0,327, | ||
11567 | 3,98,0,327,3, | ||
11568 | 99,0,327,3,100, | ||
11569 | 0,327,3,101,0, | ||
11570 | 327,3,102,0,327, | ||
11571 | 3,103,0,327,3, | ||
11572 | 104,0,327,3,105, | ||
11573 | 0,327,3,106,0, | ||
11574 | 327,3,107,0,327, | ||
11575 | 3,108,0,327,946, | ||
11576 | 11,1,664,0,947, | ||
11577 | 4,38,78,0,79, | ||
11578 | 0,84,0,95,0, | ||
11579 | 65,0,84,0,95, | ||
11580 | 0,84,0,65,0, | ||
11581 | 82,0,71,0,69, | ||
11582 | 0,84,0,95,0, | ||
11583 | 69,0,86,0,69, | ||
11584 | 0,78,0,84,0, | ||
11585 | 1,-1,3,117,0, | ||
11586 | 327,3,118,0,327, | ||
11587 | 3,119,0,327,3, | ||
11588 | 120,0,327,3,121, | ||
11589 | 0,327,3,122,0, | ||
11590 | 327,3,48,0,327, | ||
11591 | 3,49,0,327,3, | ||
11592 | 50,0,327,3,51, | ||
11593 | 0,327,3,52,0, | ||
11594 | 327,3,53,0,327, | ||
11595 | 3,54,0,327,3, | ||
11596 | 55,0,327,3,56, | ||
11597 | 0,327,3,57,0, | ||
11598 | 327,3,65,0,327, | ||
11599 | 3,66,0,327,3, | ||
11600 | 67,0,327,3,68, | ||
11601 | 0,327,3,69,0, | ||
11602 | 327,3,70,0,327, | ||
11603 | 3,71,0,327,3, | ||
11604 | 72,0,327,3,73, | ||
11605 | 0,327,3,74,0, | ||
11606 | 327,3,75,0,327, | ||
11607 | 3,76,0,327,3, | ||
11608 | 77,0,327,3,78, | ||
11609 | 0,327,3,79,0, | ||
11610 | 327,3,80,0,327, | ||
11611 | 3,81,0,327,3, | ||
11612 | 82,0,327,3,83, | ||
11613 | 0,327,3,84,0, | ||
11614 | 327,3,85,0,327, | ||
11615 | 3,86,0,327,3, | ||
11616 | 87,0,327,3,88, | ||
11617 | 0,327,3,89,0, | ||
11618 | 327,3,90,0,327, | ||
11619 | 3,95,0,327,3, | ||
11620 | 97,0,327,3,98, | ||
11621 | 0,327,3,99,0, | ||
11622 | 327,3,100,0,327, | ||
11623 | 3,101,0,327,3, | ||
11624 | 102,0,327,3,103, | ||
11625 | 0,327,3,104,0, | ||
11626 | 327,3,105,0,327, | ||
11627 | 3,106,0,327,3, | ||
11628 | 107,0,327,3,108, | ||
11629 | 0,327,948,11,1, | ||
11630 | 829,0,330,1,-1, | ||
11631 | 3,102,0,327,3, | ||
11632 | 103,0,327,3,104, | ||
11633 | 0,327,3,105,0, | ||
11634 | 327,3,106,0,327, | ||
11635 | 3,107,0,327,3, | ||
11636 | 108,0,327,949,11, | ||
11637 | 1,829,0,330,1, | ||
11638 | -1,3,104,0,327, | ||
11639 | 3,105,0,327,3, | ||
11640 | 106,0,327,3,107, | ||
11641 | 0,327,3,108,0, | ||
11642 | 327,950,11,1,829, | ||
11643 | 0,330,1,-1,3, | ||
11644 | 115,0,327,3,116, | ||
11645 | 0,327,3,117,0, | ||
11646 | 327,3,118,0,327, | ||
11647 | 3,119,0,327,3, | ||
11648 | 120,0,327,3,121, | ||
11649 | 0,327,3,122,0, | ||
11650 | 327,3,48,0,327, | ||
11651 | 3,49,0,327,3, | ||
11652 | 50,0,327,3,51, | ||
11653 | 0,327,3,52,0, | ||
11654 | 327,3,53,0,327, | ||
11655 | 3,54,0,327,3, | ||
11656 | 55,0,327,3,56, | ||
11657 | 0,327,3,57,0, | ||
11658 | 327,3,65,0,327, | ||
11659 | 3,66,0,327,3, | ||
11660 | 67,0,327,3,68, | ||
11661 | 0,327,3,69,0, | ||
11662 | 327,3,70,0,327, | ||
11663 | 3,71,0,327,3, | ||
11664 | 72,0,327,3,73, | ||
11665 | 0,327,3,74,0, | ||
11666 | 327,3,75,0,327, | ||
11667 | 3,76,0,327,3, | ||
11668 | 77,0,327,3,78, | ||
11669 | 0,327,3,79,0, | ||
11670 | 327,3,80,0,327, | ||
11671 | 3,81,0,327,3, | ||
11672 | 82,0,327,3,83, | ||
11673 | 0,327,3,84,0, | ||
11674 | 327,3,85,0,327, | ||
11675 | 3,86,0,327,3, | ||
11676 | 87,0,327,3,88, | ||
11677 | 0,327,3,89,0, | ||
11678 | 327,3,90,0,327, | ||
11679 | 3,95,0,327,3, | ||
11680 | 97,0,327,3,98, | ||
11681 | 0,327,3,99,0, | ||
11682 | 327,3,100,0,327, | ||
11683 | 3,101,0,327,3, | ||
11684 | 102,0,327,3,103, | ||
11685 | 0,327,3,104,0, | ||
11686 | 327,3,105,0,327, | ||
11687 | 3,106,0,327,3, | ||
11688 | 107,0,327,3,108, | ||
11689 | 0,327,951,11,1, | ||
11690 | 829,0,330,1,-1, | ||
11691 | 3,98,0,327,3, | ||
11692 | 99,0,327,3,100, | ||
11693 | 0,327,3,101,0, | ||
11694 | 327,3,102,0,327, | ||
11695 | 3,103,0,327,3, | ||
11696 | 104,0,327,3,105, | ||
11697 | 0,327,3,106,0, | ||
11698 | 327,3,107,0,327, | ||
11699 | 3,108,0,327,952, | ||
11700 | 11,1,829,0,330, | ||
11701 | 1,-1,3,117,0, | ||
11702 | 327,3,118,0,327, | ||
11703 | 3,119,0,327,3, | ||
11704 | 120,0,327,3,121, | ||
11705 | 0,327,3,122,0, | ||
11706 | 327,3,48,0,327, | ||
11707 | 3,49,0,327,3, | ||
11708 | 50,0,327,3,51, | ||
11709 | 0,327,3,52,0, | ||
11710 | 327,3,53,0,327, | ||
11711 | 3,54,0,327,3, | ||
11712 | 55,0,327,3,56, | ||
11713 | 0,327,3,57,0, | ||
11714 | 327,3,65,0,327, | ||
11715 | 3,66,0,327,3, | ||
11716 | 67,0,327,3,68, | ||
11717 | 0,327,3,69,0, | ||
11718 | 327,3,70,0,327, | ||
11719 | 3,71,0,327,3, | ||
11720 | 72,0,327,3,73, | ||
11721 | 0,327,3,74,0, | ||
11722 | 327,3,75,0,327, | ||
11723 | 3,76,0,327,3, | ||
11724 | 77,0,327,3,78, | ||
11725 | 0,327,3,79,0, | ||
11726 | 327,3,80,0,327, | ||
11727 | 3,81,0,327,3, | ||
11728 | 82,0,327,3,83, | ||
11729 | 0,327,3,84,0, | ||
11730 | 327,3,85,0,327, | ||
11731 | 3,86,0,327,3, | ||
11732 | 87,0,327,3,88, | ||
11733 | 0,327,3,89,0, | ||
11734 | 327,3,90,0,327, | ||
11735 | 3,95,0,327,3, | ||
11736 | 97,0,327,3,98, | ||
11737 | 0,327,3,99,0, | ||
11738 | 327,3,100,0,327, | ||
11739 | 3,101,0,327,3, | ||
11740 | 102,0,327,3,103, | ||
11741 | 0,327,3,104,0, | ||
11742 | 327,3,105,0,327, | ||
11743 | 3,106,0,327,3, | ||
11744 | 107,0,327,3,108, | ||
11745 | 0,327,953,11,1, | ||
11746 | 829,0,330,1,-1, | ||
11747 | 3,97,0,327,3, | ||
11748 | 98,0,327,3,99, | ||
11749 | 0,327,3,100,0, | ||
11750 | 327,3,101,0,327, | ||
11751 | 3,102,0,327,3, | ||
11752 | 103,0,327,3,104, | ||
11753 | 0,327,3,105,0, | ||
11754 | 327,3,106,0,327, | ||
11755 | 3,107,0,327,3, | ||
11756 | 108,0,327,954,11, | ||
11757 | 1,829,0,330,1, | ||
11758 | -1,3,117,0,327, | ||
11759 | 3,118,0,327,3, | ||
11760 | 119,0,327,3,120, | ||
11761 | 0,327,3,121,0, | ||
11762 | 327,3,122,0,327, | ||
11763 | 3,48,0,327,3, | ||
11764 | 49,0,327,3,50, | ||
11765 | 0,327,3,51,0, | ||
11766 | 327,3,52,0,327, | ||
11767 | 3,53,0,327,3, | ||
11768 | 54,0,327,3,55, | ||
11769 | 0,327,3,56,0, | ||
11770 | 327,3,57,0,327, | ||
11771 | 3,65,0,327,3, | ||
11772 | 66,0,327,3,67, | ||
11773 | 0,327,3,68,0, | ||
11774 | 327,3,69,0,327, | ||
11775 | 3,70,0,327,3, | ||
11776 | 71,0,327,3,72, | ||
11777 | 0,327,3,73,0, | ||
11778 | 327,3,74,0,327, | ||
11779 | 3,75,0,327,3, | ||
11780 | 76,0,327,3,77, | ||
11781 | 0,327,3,78,0, | ||
11782 | 327,3,79,0,327, | ||
11783 | 3,80,0,327,3, | ||
11784 | 81,0,327,3,82, | ||
11785 | 0,327,3,83,0, | ||
11786 | 327,3,84,0,327, | ||
11787 | 3,85,0,327,3, | ||
11788 | 86,0,327,3,87, | ||
11789 | 0,327,3,88,0, | ||
11790 | 327,3,89,0,327, | ||
11791 | 3,90,0,327,3, | ||
11792 | 95,0,327,3,97, | ||
11793 | 0,327,3,98,0, | ||
11794 | 327,3,99,0,327, | ||
11795 | 3,100,0,327,3, | ||
11796 | 101,0,327,3,102, | ||
11797 | 0,327,3,103,0, | ||
11798 | 327,3,104,0,327, | ||
11799 | 3,105,0,327,3, | ||
11800 | 106,0,327,3,107, | ||
11801 | 0,327,3,108,0, | ||
11802 | 327,955,11,1,829, | ||
11803 | 0,330,1,-1,3, | ||
11804 | 98,0,327,3,99, | ||
11805 | 0,327,3,100,0, | ||
11806 | 327,3,101,0,327, | ||
11807 | 3,102,0,327,3, | ||
11808 | 103,0,327,3,104, | ||
11809 | 0,327,3,105,0, | ||
11810 | 327,3,106,0,327, | ||
11811 | 3,107,0,327,3, | ||
11812 | 108,0,327,956,11, | ||
11813 | 1,829,0,330,1, | ||
11814 | -1,3,97,0,327, | ||
11815 | 3,98,0,327,3, | ||
11816 | 99,0,327,3,100, | ||
11817 | 0,327,3,101,0, | ||
11818 | 327,3,102,0,327, | ||
11819 | 3,103,0,327,3, | ||
11820 | 104,0,327,3,105, | ||
11821 | 0,327,3,106,0, | ||
11822 | 327,3,107,0,327, | ||
11823 | 3,108,0,327,957, | ||
11824 | 11,1,829,0,330, | ||
11825 | 1,-1,3,117,0, | ||
11826 | 327,3,118,0,327, | ||
11827 | 3,119,0,327,3, | ||
11828 | 120,0,327,3,121, | ||
11829 | 0,327,3,122,0, | ||
11830 | 327,3,48,0,327, | ||
11831 | 3,49,0,327,3, | ||
11832 | 50,0,327,3,51, | ||
11833 | 0,327,3,52,0, | ||
11834 | 327,3,53,0,327, | ||
11835 | 3,54,0,327,3, | ||
11836 | 55,0,327,3,56, | ||
11837 | 0,327,3,57,0, | ||
11838 | 327,3,65,0,327, | ||
11839 | 3,66,0,327,3, | ||
11840 | 67,0,327,3,68, | ||
11841 | 0,327,3,69,0, | ||
11842 | 327,3,70,0,327, | ||
11843 | 3,71,0,327,3, | ||
11844 | 72,0,327,3,73, | ||
11845 | 0,327,3,74,0, | ||
11846 | 327,3,75,0,327, | ||
11847 | 3,76,0,327,3, | ||
11848 | 77,0,327,3,78, | ||
11849 | 0,327,3,79,0, | ||
11850 | 327,3,80,0,327, | ||
11851 | 3,81,0,327,3, | ||
11852 | 82,0,327,3,83, | ||
11853 | 0,327,3,84,0, | ||
11854 | 327,3,85,0,327, | ||
11855 | 3,86,0,327,3, | ||
11856 | 87,0,327,3,88, | ||
11857 | 0,327,3,89,0, | ||
11858 | 327,3,90,0,327, | ||
11859 | 3,95,0,958,12, | ||
11860 | 1,6997,959,5,63, | ||
11861 | 3,109,0,327,3, | ||
11862 | 110,0,327,3,111, | ||
11863 | 0,327,3,112,0, | ||
11864 | 327,3,113,0,327, | ||
11865 | 3,114,0,327,3, | ||
11866 | 115,0,960,12,1, | ||
11867 | 7031,961,5,63,3, | ||
11868 | 109,0,327,3,110, | ||
11869 | 0,327,3,111,0, | ||
11870 | 327,3,112,0,327, | ||
11871 | 3,113,0,327,3, | ||
11872 | 114,0,327,3,115, | ||
11873 | 0,327,3,116,0, | ||
11874 | 327,3,117,0,327, | ||
11875 | 3,118,0,327,3, | ||
11876 | 119,0,327,3,120, | ||
11877 | 0,327,3,121,0, | ||
11878 | 327,3,122,0,327, | ||
11879 | 3,48,0,327,3, | ||
11880 | 49,0,327,3,50, | ||
11881 | 0,327,3,51,0, | ||
11882 | 327,3,52,0,327, | ||
11883 | 3,53,0,327,3, | ||
11884 | 54,0,327,3,55, | ||
11885 | 0,327,3,56,0, | ||
11886 | 327,3,57,0,327, | ||
11887 | 3,65,0,327,3, | ||
11888 | 66,0,327,3,67, | ||
11889 | 0,327,3,68,0, | ||
11890 | 327,3,69,0,327, | ||
11891 | 3,70,0,327,3, | ||
11892 | 71,0,327,3,72, | ||
11893 | 0,327,3,73,0, | ||
11894 | 327,3,74,0,327, | ||
11895 | 3,75,0,327,3, | ||
11896 | 76,0,327,3,77, | ||
11897 | 0,327,3,78,0, | ||
11898 | 327,3,79,0,327, | ||
11899 | 3,80,0,327,3, | ||
11900 | 81,0,327,3,82, | ||
11901 | 0,327,3,83,0, | ||
11902 | 327,3,84,0,327, | ||
11903 | 3,85,0,327,3, | ||
11904 | 86,0,327,3,87, | ||
11905 | 0,327,3,88,0, | ||
11906 | 327,3,89,0,327, | ||
11907 | 3,90,0,327,3, | ||
11908 | 95,0,327,3,97, | ||
11909 | 0,327,3,98,0, | ||
11910 | 327,3,99,0,327, | ||
11911 | 3,100,0,327,3, | ||
11912 | 101,0,962,12,1, | ||
11913 | 7078,963,5,63,3, | ||
11914 | 109,0,327,3,110, | ||
11915 | 0,964,12,1,7107, | ||
11916 | 965,5,63,3,109, | ||
11917 | 0,327,3,110,0, | ||
11918 | 327,3,111,0,327, | ||
11919 | 3,112,0,327,3, | ||
11920 | 113,0,327,3,114, | ||
11921 | 0,327,3,115,0, | ||
11922 | 966,12,1,7141,967, | ||
11923 | 5,63,3,109,0, | ||
11924 | 327,3,110,0,327, | ||
11925 | 3,111,0,968,12, | ||
11926 | 1,7171,969,5,63, | ||
11927 | 3,109,0,327,3, | ||
11928 | 110,0,327,3,111, | ||
11929 | 0,327,3,112,0, | ||
11930 | 327,3,113,0,327, | ||
11931 | 3,114,0,970,12, | ||
11932 | 1,7204,971,5,63, | ||
11933 | 3,109,0,327,3, | ||
11934 | 110,0,327,3,111, | ||
11935 | 0,327,3,112,0, | ||
11936 | 327,3,113,0,327, | ||
11937 | 3,114,0,327,3, | ||
11938 | 115,0,327,3,116, | ||
11939 | 0,327,3,117,0, | ||
11940 | 327,3,118,0,327, | ||
11941 | 3,119,0,327,3, | ||
11942 | 120,0,327,3,121, | ||
11943 | 0,327,3,122,0, | ||
11944 | 327,3,48,0,327, | ||
11945 | 3,49,0,327,3, | ||
11946 | 50,0,327,3,51, | ||
11947 | 0,327,3,52,0, | ||
11948 | 327,3,53,0,327, | ||
11949 | 3,54,0,327,3, | ||
11950 | 55,0,327,3,56, | ||
11951 | 0,327,3,57,0, | ||
11952 | 327,3,65,0,327, | ||
11953 | 3,66,0,327,3, | ||
11954 | 67,0,327,3,68, | ||
11955 | 0,327,3,69,0, | ||
11956 | 327,3,70,0,327, | ||
11957 | 3,71,0,327,3, | ||
11958 | 72,0,327,3,73, | ||
11959 | 0,327,3,74,0, | ||
11960 | 327,3,75,0,327, | ||
11961 | 3,76,0,327,3, | ||
11962 | 77,0,327,3,78, | ||
11963 | 0,327,3,79,0, | ||
11964 | 327,3,80,0,327, | ||
11965 | 3,81,0,327,3, | ||
11966 | 82,0,327,3,83, | ||
11967 | 0,327,3,84,0, | ||
11968 | 327,3,85,0,327, | ||
11969 | 3,86,0,327,3, | ||
11970 | 87,0,327,3,88, | ||
11971 | 0,327,3,89,0, | ||
11972 | 327,3,90,0,327, | ||
11973 | 3,95,0,327,3, | ||
11974 | 97,0,327,3,98, | ||
11975 | 0,327,3,99,0, | ||
11976 | 327,3,100,0,327, | ||
11977 | 3,101,0,327,3, | ||
11978 | 102,0,327,3,103, | ||
11979 | 0,327,3,104,0, | ||
11980 | 327,3,105,0,327, | ||
11981 | 3,106,0,327,3, | ||
11982 | 107,0,327,3,108, | ||
11983 | 0,327,972,11,1, | ||
11984 | 630,0,973,4,30, | ||
11985 | 78,0,79,0,95, | ||
11986 | 0,83,0,69,0, | ||
11987 | 78,0,83,0,79, | ||
11988 | 0,82,0,95,0, | ||
11989 | 69,0,86,0,69, | ||
11990 | 0,78,0,84,0, | ||
11991 | 1,-1,3,115,0, | ||
11992 | 327,3,116,0,327, | ||
11993 | 3,117,0,327,3, | ||
11994 | 118,0,327,3,119, | ||
11995 | 0,327,3,120,0, | ||
11996 | 327,3,121,0,327, | ||
11997 | 3,122,0,327,3, | ||
11998 | 48,0,327,3,49, | ||
11999 | 0,327,3,50,0, | ||
12000 | 327,3,51,0,327, | ||
12001 | 3,52,0,327,3, | ||
12002 | 53,0,327,3,54, | ||
12003 | 0,327,3,55,0, | ||
12004 | 327,3,56,0,327, | ||
12005 | 3,57,0,327,3, | ||
12006 | 65,0,327,3,66, | ||
12007 | 0,327,3,67,0, | ||
12008 | 327,3,68,0,327, | ||
12009 | 3,69,0,327,3, | ||
12010 | 70,0,327,3,71, | ||
12011 | 0,327,3,72,0, | ||
12012 | 327,3,73,0,327, | ||
12013 | 3,74,0,327,3, | ||
12014 | 75,0,327,3,76, | ||
12015 | 0,327,3,77,0, | ||
12016 | 327,3,78,0,327, | ||
12017 | 3,79,0,327,3, | ||
12018 | 80,0,327,3,81, | ||
12019 | 0,327,3,82,0, | ||
12020 | 327,3,83,0,327, | ||
12021 | 3,84,0,327,3, | ||
12022 | 85,0,327,3,86, | ||
12023 | 0,327,3,87,0, | ||
12024 | 327,3,88,0,327, | ||
12025 | 3,89,0,327,3, | ||
12026 | 90,0,327,3,95, | ||
12027 | 0,327,3,97,0, | ||
12028 | 327,3,98,0,327, | ||
12029 | 3,99,0,327,3, | ||
12030 | 100,0,327,3,101, | ||
12031 | 0,327,3,102,0, | ||
12032 | 327,3,103,0,327, | ||
12033 | 3,104,0,327,3, | ||
12034 | 105,0,327,3,106, | ||
12035 | 0,327,3,107,0, | ||
12036 | 327,3,108,0,327, | ||
12037 | 974,11,1,829,0, | ||
12038 | 330,1,-1,3,112, | ||
12039 | 0,327,3,113,0, | ||
12040 | 327,3,114,0,327, | ||
12041 | 3,115,0,327,3, | ||
12042 | 116,0,327,3,117, | ||
12043 | 0,327,3,118,0, | ||
12044 | 327,3,119,0,327, | ||
12045 | 3,120,0,327,3, | ||
12046 | 121,0,327,3,122, | ||
12047 | 0,327,3,48,0, | ||
12048 | 327,3,49,0,327, | ||
12049 | 3,50,0,327,3, | ||
12050 | 51,0,327,3,52, | ||
12051 | 0,327,3,53,0, | ||
12052 | 327,3,54,0,327, | ||
12053 | 3,55,0,327,3, | ||
12054 | 56,0,327,3,57, | ||
12055 | 0,327,3,65,0, | ||
12056 | 327,3,66,0,327, | ||
12057 | 3,67,0,327,3, | ||
12058 | 68,0,327,3,69, | ||
12059 | 0,327,3,70,0, | ||
12060 | 327,3,71,0,327, | ||
12061 | 3,72,0,327,3, | ||
12062 | 73,0,327,3,74, | ||
12063 | 0,327,3,75,0, | ||
12064 | 327,3,76,0,327, | ||
12065 | 3,77,0,327,3, | ||
12066 | 78,0,327,3,79, | ||
12067 | 0,327,3,80,0, | ||
12068 | 327,3,81,0,327, | ||
12069 | 3,82,0,327,3, | ||
12070 | 83,0,327,3,84, | ||
12071 | 0,327,3,85,0, | ||
12072 | 327,3,86,0,327, | ||
12073 | 3,87,0,327,3, | ||
12074 | 88,0,327,3,89, | ||
12075 | 0,327,3,90,0, | ||
12076 | 327,3,95,0,327, | ||
12077 | 3,97,0,327,3, | ||
12078 | 98,0,327,3,99, | ||
12079 | 0,327,3,100,0, | ||
12080 | 327,3,101,0,327, | ||
12081 | 3,102,0,327,3, | ||
12082 | 103,0,327,3,104, | ||
12083 | 0,327,3,105,0, | ||
12084 | 327,3,106,0,327, | ||
12085 | 3,107,0,327,3, | ||
12086 | 108,0,327,975,11, | ||
12087 | 1,829,0,330,1, | ||
12088 | -1,3,116,0,327, | ||
12089 | 3,117,0,327,3, | ||
12090 | 118,0,327,3,119, | ||
12091 | 0,327,3,120,0, | ||
12092 | 327,3,121,0,327, | ||
12093 | 3,122,0,327,3, | ||
12094 | 48,0,327,3,49, | ||
12095 | 0,327,3,50,0, | ||
12096 | 327,3,51,0,327, | ||
12097 | 3,52,0,327,3, | ||
12098 | 53,0,327,3,54, | ||
12099 | 0,327,3,55,0, | ||
12100 | 327,3,56,0,327, | ||
12101 | 3,57,0,327,3, | ||
12102 | 65,0,327,3,66, | ||
12103 | 0,327,3,67,0, | ||
12104 | 327,3,68,0,327, | ||
12105 | 3,69,0,327,3, | ||
12106 | 70,0,327,3,71, | ||
12107 | 0,327,3,72,0, | ||
12108 | 327,3,73,0,327, | ||
12109 | 3,74,0,327,3, | ||
12110 | 75,0,327,3,76, | ||
12111 | 0,327,3,77,0, | ||
12112 | 327,3,78,0,327, | ||
12113 | 3,79,0,327,3, | ||
12114 | 80,0,327,3,81, | ||
12115 | 0,327,3,82,0, | ||
12116 | 327,3,83,0,327, | ||
12117 | 3,84,0,327,3, | ||
12118 | 85,0,327,3,86, | ||
12119 | 0,327,3,87,0, | ||
12120 | 327,3,88,0,327, | ||
12121 | 3,89,0,327,3, | ||
12122 | 90,0,327,3,95, | ||
12123 | 0,327,3,97,0, | ||
12124 | 327,3,98,0,327, | ||
12125 | 3,99,0,327,3, | ||
12126 | 100,0,327,3,101, | ||
12127 | 0,327,3,102,0, | ||
12128 | 327,3,103,0,327, | ||
12129 | 3,104,0,327,3, | ||
12130 | 105,0,327,3,106, | ||
12131 | 0,327,3,107,0, | ||
12132 | 327,3,108,0,327, | ||
12133 | 976,11,1,829,0, | ||
12134 | 330,1,-1,3,111, | ||
12135 | 0,327,3,112,0, | ||
12136 | 327,3,113,0,327, | ||
12137 | 3,114,0,327,3, | ||
12138 | 115,0,327,3,116, | ||
12139 | 0,327,3,117,0, | ||
12140 | 327,3,118,0,327, | ||
12141 | 3,119,0,327,3, | ||
12142 | 120,0,327,3,121, | ||
12143 | 0,327,3,122,0, | ||
12144 | 327,3,48,0,327, | ||
12145 | 3,49,0,327,3, | ||
12146 | 50,0,327,3,51, | ||
12147 | 0,327,3,52,0, | ||
12148 | 327,3,53,0,327, | ||
12149 | 3,54,0,327,3, | ||
12150 | 55,0,327,3,56, | ||
12151 | 0,327,3,57,0, | ||
12152 | 327,3,65,0,327, | ||
12153 | 3,66,0,327,3, | ||
12154 | 67,0,327,3,68, | ||
12155 | 0,327,3,69,0, | ||
12156 | 327,3,70,0,327, | ||
12157 | 3,71,0,327,3, | ||
12158 | 72,0,327,3,73, | ||
12159 | 0,327,3,74,0, | ||
12160 | 327,3,75,0,327, | ||
12161 | 3,76,0,327,3, | ||
12162 | 77,0,327,3,78, | ||
12163 | 0,327,3,79,0, | ||
12164 | 327,3,80,0,327, | ||
12165 | 3,81,0,327,3, | ||
12166 | 82,0,327,3,83, | ||
12167 | 0,327,3,84,0, | ||
12168 | 327,3,85,0,327, | ||
12169 | 3,86,0,327,3, | ||
12170 | 87,0,327,3,88, | ||
12171 | 0,327,3,89,0, | ||
12172 | 327,3,90,0,327, | ||
12173 | 3,95,0,327,3, | ||
12174 | 97,0,327,3,98, | ||
12175 | 0,327,3,99,0, | ||
12176 | 327,3,100,0,327, | ||
12177 | 3,101,0,327,3, | ||
12178 | 102,0,327,3,103, | ||
12179 | 0,327,3,104,0, | ||
12180 | 327,3,105,0,327, | ||
12181 | 3,106,0,327,3, | ||
12182 | 107,0,327,3,108, | ||
12183 | 0,327,977,11,1, | ||
12184 | 829,0,330,1,-1, | ||
12185 | 3,102,0,327,3, | ||
12186 | 103,0,327,3,104, | ||
12187 | 0,327,3,105,0, | ||
12188 | 327,3,106,0,327, | ||
12189 | 3,107,0,327,3, | ||
12190 | 108,0,327,978,11, | ||
12191 | 1,829,0,330,1, | ||
12192 | -1,3,116,0,327, | ||
12193 | 3,117,0,327,3, | ||
12194 | 118,0,327,3,119, | ||
12195 | 0,327,3,120,0, | ||
12196 | 327,3,121,0,327, | ||
12197 | 3,122,0,327,3, | ||
12198 | 48,0,327,3,49, | ||
12199 | 0,327,3,50,0, | ||
12200 | 327,3,51,0,327, | ||
12201 | 3,52,0,327,3, | ||
12202 | 53,0,327,3,54, | ||
12203 | 0,327,3,55,0, | ||
12204 | 327,3,56,0,327, | ||
12205 | 3,57,0,327,3, | ||
12206 | 65,0,327,3,66, | ||
12207 | 0,327,3,67,0, | ||
12208 | 327,3,68,0,327, | ||
12209 | 3,69,0,327,3, | ||
12210 | 70,0,327,3,71, | ||
12211 | 0,327,3,72,0, | ||
12212 | 327,3,73,0,327, | ||
12213 | 3,74,0,327,3, | ||
12214 | 75,0,327,3,76, | ||
12215 | 0,327,3,77,0, | ||
12216 | 327,3,78,0,327, | ||
12217 | 3,79,0,327,3, | ||
12218 | 80,0,327,3,81, | ||
12219 | 0,327,3,82,0, | ||
12220 | 327,3,83,0,327, | ||
12221 | 3,84,0,327,3, | ||
12222 | 85,0,327,3,86, | ||
12223 | 0,327,3,87,0, | ||
12224 | 327,3,88,0,327, | ||
12225 | 3,89,0,327,3, | ||
12226 | 90,0,327,3,95, | ||
12227 | 0,327,3,97,0, | ||
12228 | 327,3,98,0,327, | ||
12229 | 3,99,0,327,3, | ||
12230 | 100,0,327,3,101, | ||
12231 | 0,327,3,102,0, | ||
12232 | 327,3,103,0,327, | ||
12233 | 3,104,0,327,3, | ||
12234 | 105,0,327,3,106, | ||
12235 | 0,327,3,107,0, | ||
12236 | 327,3,108,0,327, | ||
12237 | 979,11,1,829,0, | ||
12238 | 330,1,-1,3,97, | ||
12239 | 0,327,3,98,0, | ||
12240 | 327,3,99,0,327, | ||
12241 | 3,100,0,327,3, | ||
12242 | 101,0,327,3,102, | ||
12243 | 0,327,3,103,0, | ||
12244 | 327,3,104,0,327, | ||
12245 | 3,105,0,327,3, | ||
12246 | 106,0,327,3,107, | ||
12247 | 0,327,3,108,0, | ||
12248 | 327,980,11,1,829, | ||
12249 | 0,330,1,-1,3, | ||
12250 | 112,0,327,3,113, | ||
12251 | 0,327,3,114,0, | ||
12252 | 327,3,115,0,327, | ||
12253 | 3,116,0,327,3, | ||
12254 | 117,0,327,3,118, | ||
12255 | 0,327,3,119,0, | ||
12256 | 327,3,120,0,327, | ||
12257 | 3,121,0,327,3, | ||
12258 | 122,0,327,3,48, | ||
12259 | 0,327,3,49,0, | ||
12260 | 327,3,50,0,327, | ||
12261 | 3,51,0,327,3, | ||
12262 | 52,0,327,3,53, | ||
12263 | 0,327,3,54,0, | ||
12264 | 327,3,55,0,327, | ||
12265 | 3,56,0,327,3, | ||
12266 | 57,0,327,3,65, | ||
12267 | 0,327,3,66,0, | ||
12268 | 327,3,67,0,327, | ||
12269 | 3,68,0,327,3, | ||
12270 | 69,0,327,3,70, | ||
12271 | 0,327,3,71,0, | ||
12272 | 327,3,72,0,327, | ||
12273 | 3,73,0,327,3, | ||
12274 | 74,0,327,3,75, | ||
12275 | 0,327,3,76,0, | ||
12276 | 327,3,77,0,327, | ||
12277 | 3,78,0,327,3, | ||
12278 | 79,0,327,3,80, | ||
12279 | 0,327,3,81,0, | ||
12280 | 327,3,82,0,327, | ||
12281 | 3,83,0,327,3, | ||
12282 | 84,0,327,3,85, | ||
12283 | 0,327,3,86,0, | ||
12284 | 327,3,87,0,327, | ||
12285 | 3,88,0,327,3, | ||
12286 | 89,0,327,3,90, | ||
12287 | 0,327,3,95,0, | ||
12288 | 327,3,97,0,327, | ||
12289 | 3,98,0,327,3, | ||
12290 | 99,0,327,3,100, | ||
12291 | 0,327,3,101,0, | ||
12292 | 327,3,102,0,327, | ||
12293 | 3,103,0,327,3, | ||
12294 | 104,0,327,3,105, | ||
12295 | 0,327,3,106,0, | ||
12296 | 327,3,107,0,327, | ||
12297 | 3,108,0,327,981, | ||
12298 | 11,1,829,0,330, | ||
12299 | 1,-1,3,111,0, | ||
12300 | 982,12,1,7962,983, | ||
12301 | 5,63,3,109,0, | ||
12302 | 327,3,110,0,984, | ||
12303 | 12,1,7991,985,5, | ||
12304 | 63,3,109,0,327, | ||
12305 | 3,110,0,327,3, | ||
12306 | 111,0,327,3,112, | ||
12307 | 0,327,3,113,0, | ||
12308 | 327,3,114,0,327, | ||
12309 | 3,115,0,327,3, | ||
12310 | 116,0,327,3,117, | ||
12311 | 0,327,3,118,0, | ||
12312 | 327,3,119,0,327, | ||
12313 | 3,120,0,327,3, | ||
12314 | 121,0,327,3,122, | ||
12315 | 0,327,3,48,0, | ||
12316 | 327,3,49,0,327, | ||
12317 | 3,50,0,327,3, | ||
12318 | 51,0,327,3,52, | ||
12319 | 0,327,3,53,0, | ||
12320 | 327,3,54,0,327, | ||
12321 | 3,55,0,327,3, | ||
12322 | 56,0,327,3,57, | ||
12323 | 0,327,3,65,0, | ||
12324 | 327,3,66,0,327, | ||
12325 | 3,67,0,327,3, | ||
12326 | 68,0,327,3,69, | ||
12327 | 0,327,3,70,0, | ||
12328 | 327,3,71,0,327, | ||
12329 | 3,72,0,327,3, | ||
12330 | 73,0,327,3,74, | ||
12331 | 0,327,3,75,0, | ||
12332 | 327,3,76,0,327, | ||
12333 | 3,77,0,327,3, | ||
12334 | 78,0,327,3,79, | ||
12335 | 0,327,3,80,0, | ||
12336 | 327,3,81,0,327, | ||
12337 | 3,82,0,327,3, | ||
12338 | 83,0,327,3,84, | ||
12339 | 0,327,3,85,0, | ||
12340 | 327,3,86,0,327, | ||
12341 | 3,87,0,327,3, | ||
12342 | 88,0,327,3,89, | ||
12343 | 0,327,3,90,0, | ||
12344 | 327,3,95,0,986, | ||
12345 | 12,1,8077,987,5, | ||
12346 | 63,3,109,0,327, | ||
12347 | 3,110,0,327,3, | ||
12348 | 111,0,327,3,112, | ||
12349 | 0,327,3,113,0, | ||
12350 | 327,3,114,0,988, | ||
12351 | 12,1,8110,989,5, | ||
12352 | 63,3,109,0,327, | ||
12353 | 3,110,0,327,3, | ||
12354 | 111,0,327,3,112, | ||
12355 | 0,327,3,113,0, | ||
12356 | 327,3,114,0,327, | ||
12357 | 3,115,0,327,3, | ||
12358 | 116,0,327,3,117, | ||
12359 | 0,327,3,118,0, | ||
12360 | 327,3,119,0,327, | ||
12361 | 3,120,0,327,3, | ||
12362 | 121,0,327,3,122, | ||
12363 | 0,327,3,48,0, | ||
12364 | 327,3,49,0,327, | ||
12365 | 3,50,0,327,3, | ||
12366 | 51,0,327,3,52, | ||
12367 | 0,327,3,53,0, | ||
12368 | 327,3,54,0,327, | ||
12369 | 3,55,0,327,3, | ||
12370 | 56,0,327,3,57, | ||
12371 | 0,327,3,65,0, | ||
12372 | 327,3,66,0,327, | ||
12373 | 3,67,0,327,3, | ||
12374 | 68,0,327,3,69, | ||
12375 | 0,327,3,70,0, | ||
12376 | 327,3,71,0,327, | ||
12377 | 3,72,0,327,3, | ||
12378 | 73,0,327,3,74, | ||
12379 | 0,327,3,75,0, | ||
12380 | 327,3,76,0,327, | ||
12381 | 3,77,0,327,3, | ||
12382 | 78,0,327,3,79, | ||
12383 | 0,327,3,80,0, | ||
12384 | 327,3,81,0,327, | ||
12385 | 3,82,0,327,3, | ||
12386 | 83,0,327,3,84, | ||
12387 | 0,327,3,85,0, | ||
12388 | 327,3,86,0,327, | ||
12389 | 3,87,0,327,3, | ||
12390 | 88,0,327,3,89, | ||
12391 | 0,327,3,90,0, | ||
12392 | 327,3,95,0,327, | ||
12393 | 3,97,0,327,3, | ||
12394 | 98,0,327,3,99, | ||
12395 | 0,327,3,100,0, | ||
12396 | 327,3,101,0,990, | ||
12397 | 12,1,8157,991,5, | ||
12398 | 63,3,109,0,327, | ||
12399 | 3,110,0,327,3, | ||
12400 | 111,0,327,3,112, | ||
12401 | 0,327,3,113,0, | ||
12402 | 327,3,114,0,327, | ||
12403 | 3,115,0,327,3, | ||
12404 | 116,0,327,3,117, | ||
12405 | 0,327,3,118,0, | ||
12406 | 327,3,119,0,327, | ||
12407 | 3,120,0,327,3, | ||
12408 | 121,0,327,3,122, | ||
12409 | 0,992,12,1,8198, | ||
12410 | 993,5,63,3,109, | ||
12411 | 0,327,3,110,0, | ||
12412 | 327,3,111,0,327, | ||
12413 | 3,112,0,327,3, | ||
12414 | 113,0,327,3,114, | ||
12415 | 0,327,3,115,0, | ||
12416 | 327,3,116,0,327, | ||
12417 | 3,117,0,327,3, | ||
12418 | 118,0,327,3,119, | ||
12419 | 0,327,3,120,0, | ||
12420 | 327,3,121,0,327, | ||
12421 | 3,122,0,327,3, | ||
12422 | 48,0,327,3,49, | ||
12423 | 0,327,3,50,0, | ||
12424 | 327,3,51,0,327, | ||
12425 | 3,52,0,327,3, | ||
12426 | 53,0,327,3,54, | ||
12427 | 0,327,3,55,0, | ||
12428 | 327,3,56,0,327, | ||
12429 | 3,57,0,327,3, | ||
12430 | 65,0,327,3,66, | ||
12431 | 0,327,3,67,0, | ||
12432 | 327,3,68,0,327, | ||
12433 | 3,69,0,327,3, | ||
12434 | 70,0,327,3,71, | ||
12435 | 0,327,3,72,0, | ||
12436 | 327,3,73,0,327, | ||
12437 | 3,74,0,327,3, | ||
12438 | 75,0,327,3,76, | ||
12439 | 0,327,3,77,0, | ||
12440 | 327,3,78,0,327, | ||
12441 | 3,79,0,327,3, | ||
12442 | 80,0,327,3,81, | ||
12443 | 0,327,3,82,0, | ||
12444 | 327,3,83,0,327, | ||
12445 | 3,84,0,327,3, | ||
12446 | 85,0,327,3,86, | ||
12447 | 0,327,3,87,0, | ||
12448 | 327,3,88,0,327, | ||
12449 | 3,89,0,327,3, | ||
12450 | 90,0,327,3,95, | ||
12451 | 0,327,3,97,0, | ||
12452 | 327,3,98,0,327, | ||
12453 | 3,99,0,327,3, | ||
12454 | 100,0,327,3,101, | ||
12455 | 0,327,3,102,0, | ||
12456 | 327,3,103,0,327, | ||
12457 | 3,104,0,327,3, | ||
12458 | 105,0,327,3,106, | ||
12459 | 0,327,3,107,0, | ||
12460 | 327,3,108,0,327, | ||
12461 | 994,11,1,695,0, | ||
12462 | 995,4,24,79,0, | ||
12463 | 78,0,95,0,82, | ||
12464 | 0,69,0,90,0, | ||
12465 | 95,0,69,0,86, | ||
12466 | 0,69,0,78,0, | ||
12467 | 84,0,1,-1,3, | ||
12468 | 48,0,327,3,49, | ||
12469 | 0,327,3,50,0, | ||
12470 | 327,3,51,0,327, | ||
12471 | 3,52,0,327,3, | ||
12472 | 53,0,327,3,54, | ||
12473 | 0,327,3,55,0, | ||
12474 | 327,3,56,0,327, | ||
12475 | 3,57,0,327,3, | ||
12476 | 65,0,327,3,66, | ||
12477 | 0,327,3,67,0, | ||
12478 | 327,3,68,0,327, | ||
12479 | 3,69,0,327,3, | ||
12480 | 70,0,327,3,71, | ||
12481 | 0,327,3,72,0, | ||
12482 | 327,3,73,0,327, | ||
12483 | 3,74,0,327,3, | ||
12484 | 75,0,327,3,76, | ||
12485 | 0,327,3,77,0, | ||
12486 | 327,3,78,0,327, | ||
12487 | 3,79,0,327,3, | ||
12488 | 80,0,327,3,81, | ||
12489 | 0,327,3,82,0, | ||
12490 | 327,3,83,0,327, | ||
12491 | 3,84,0,327,3, | ||
12492 | 85,0,327,3,86, | ||
12493 | 0,327,3,87,0, | ||
12494 | 327,3,88,0,327, | ||
12495 | 3,89,0,327,3, | ||
12496 | 90,0,327,3,95, | ||
12497 | 0,327,3,97,0, | ||
12498 | 327,3,98,0,327, | ||
12499 | 3,99,0,327,3, | ||
12500 | 100,0,327,3,101, | ||
12501 | 0,327,3,102,0, | ||
12502 | 327,3,103,0,327, | ||
12503 | 3,104,0,327,3, | ||
12504 | 105,0,327,3,106, | ||
12505 | 0,327,3,107,0, | ||
12506 | 327,3,108,0,327, | ||
12507 | 996,11,1,829,0, | ||
12508 | 330,1,-1,3,102, | ||
12509 | 0,327,3,103,0, | ||
12510 | 327,3,104,0,327, | ||
12511 | 3,105,0,327,3, | ||
12512 | 106,0,327,3,107, | ||
12513 | 0,327,3,108,0, | ||
12514 | 327,997,11,1,829, | ||
12515 | 0,330,1,-1,3, | ||
12516 | 115,0,327,3,116, | ||
12517 | 0,327,3,117,0, | ||
12518 | 327,3,118,0,327, | ||
12519 | 3,119,0,327,3, | ||
12520 | 120,0,327,3,121, | ||
12521 | 0,327,3,122,0, | ||
12522 | 327,3,48,0,327, | ||
12523 | 3,49,0,327,3, | ||
12524 | 50,0,327,3,51, | ||
12525 | 0,327,3,52,0, | ||
12526 | 327,3,53,0,327, | ||
12527 | 3,54,0,327,3, | ||
12528 | 55,0,327,3,56, | ||
12529 | 0,327,3,57,0, | ||
12530 | 327,3,65,0,327, | ||
12531 | 3,66,0,327,3, | ||
12532 | 67,0,327,3,68, | ||
12533 | 0,327,3,69,0, | ||
12534 | 327,3,70,0,327, | ||
12535 | 3,71,0,327,3, | ||
12536 | 72,0,327,3,73, | ||
12537 | 0,327,3,74,0, | ||
12538 | 327,3,75,0,327, | ||
12539 | 3,76,0,327,3, | ||
12540 | 77,0,327,3,78, | ||
12541 | 0,327,3,79,0, | ||
12542 | 327,3,80,0,327, | ||
12543 | 3,81,0,327,3, | ||
12544 | 82,0,327,3,83, | ||
12545 | 0,327,3,84,0, | ||
12546 | 327,3,85,0,327, | ||
12547 | 3,86,0,327,3, | ||
12548 | 87,0,327,3,88, | ||
12549 | 0,327,3,89,0, | ||
12550 | 327,3,90,0,327, | ||
12551 | 3,95,0,327,3, | ||
12552 | 97,0,327,3,98, | ||
12553 | 0,327,3,99,0, | ||
12554 | 327,3,100,0,327, | ||
12555 | 3,101,0,327,3, | ||
12556 | 102,0,327,3,103, | ||
12557 | 0,327,3,104,0, | ||
12558 | 327,3,105,0,327, | ||
12559 | 3,106,0,327,3, | ||
12560 | 107,0,327,3,108, | ||
12561 | 0,327,998,11,1, | ||
12562 | 829,0,330,1,-1, | ||
12563 | 3,97,0,327,3, | ||
12564 | 98,0,327,3,99, | ||
12565 | 0,327,3,100,0, | ||
12566 | 327,3,101,0,327, | ||
12567 | 3,102,0,327,3, | ||
12568 | 103,0,327,3,104, | ||
12569 | 0,327,3,105,0, | ||
12570 | 327,3,106,0,327, | ||
12571 | 3,107,0,327,3, | ||
12572 | 108,0,327,999,11, | ||
12573 | 1,829,0,330,1, | ||
12574 | -1,3,111,0,327, | ||
12575 | 3,112,0,327,3, | ||
12576 | 113,0,327,3,114, | ||
12577 | 0,327,3,115,0, | ||
12578 | 327,3,116,0,327, | ||
12579 | 3,117,0,327,3, | ||
12580 | 118,0,327,3,119, | ||
12581 | 0,327,3,120,0, | ||
12582 | 327,3,121,0,327, | ||
12583 | 3,122,0,327,3, | ||
12584 | 48,0,327,3,49, | ||
12585 | 0,327,3,50,0, | ||
12586 | 327,3,51,0,327, | ||
12587 | 3,52,0,327,3, | ||
12588 | 53,0,327,3,54, | ||
12589 | 0,327,3,55,0, | ||
12590 | 327,3,56,0,327, | ||
12591 | 3,57,0,327,3, | ||
12592 | 65,0,327,3,66, | ||
12593 | 0,327,3,67,0, | ||
12594 | 327,3,68,0,327, | ||
12595 | 3,69,0,327,3, | ||
12596 | 70,0,327,3,71, | ||
12597 | 0,327,3,72,0, | ||
12598 | 327,3,73,0,327, | ||
12599 | 3,74,0,327,3, | ||
12600 | 75,0,327,3,76, | ||
12601 | 0,327,3,77,0, | ||
12602 | 327,3,78,0,327, | ||
12603 | 3,79,0,327,3, | ||
12604 | 80,0,327,3,81, | ||
12605 | 0,327,3,82,0, | ||
12606 | 327,3,83,0,327, | ||
12607 | 3,84,0,327,3, | ||
12608 | 85,0,327,3,86, | ||
12609 | 0,327,3,87,0, | ||
12610 | 327,3,88,0,327, | ||
12611 | 3,89,0,327,3, | ||
12612 | 90,0,327,3,95, | ||
12613 | 0,327,3,97,0, | ||
12614 | 327,3,98,0,1000, | ||
12615 | 12,1,8606,1001,5, | ||
12616 | 63,3,109,0,327, | ||
12617 | 3,110,0,327,3, | ||
12618 | 111,0,327,3,112, | ||
12619 | 0,327,3,113,0, | ||
12620 | 327,3,114,0,327, | ||
12621 | 3,115,0,327,3, | ||
12622 | 116,0,327,3,117, | ||
12623 | 0,327,3,118,0, | ||
12624 | 327,3,119,0,327, | ||
12625 | 3,120,0,327,3, | ||
12626 | 121,0,327,3,122, | ||
12627 | 0,327,3,48,0, | ||
12628 | 327,3,49,0,327, | ||
12629 | 3,50,0,327,3, | ||
12630 | 51,0,327,3,52, | ||
12631 | 0,327,3,53,0, | ||
12632 | 327,3,54,0,327, | ||
12633 | 3,55,0,327,3, | ||
12634 | 56,0,327,3,57, | ||
12635 | 0,327,3,65,0, | ||
12636 | 327,3,66,0,327, | ||
12637 | 3,67,0,327,3, | ||
12638 | 68,0,327,3,69, | ||
12639 | 0,327,3,70,0, | ||
12640 | 327,3,71,0,327, | ||
12641 | 3,72,0,327,3, | ||
12642 | 73,0,327,3,74, | ||
12643 | 0,327,3,75,0, | ||
12644 | 327,3,76,0,327, | ||
12645 | 3,77,0,327,3, | ||
12646 | 78,0,327,3,79, | ||
12647 | 0,327,3,80,0, | ||
12648 | 327,3,81,0,327, | ||
12649 | 3,82,0,327,3, | ||
12650 | 83,0,327,3,84, | ||
12651 | 0,327,3,85,0, | ||
12652 | 327,3,86,0,327, | ||
12653 | 3,87,0,327,3, | ||
12654 | 88,0,327,3,89, | ||
12655 | 0,327,3,90,0, | ||
12656 | 327,3,95,0,327, | ||
12657 | 3,97,0,327,3, | ||
12658 | 98,0,327,3,99, | ||
12659 | 0,327,3,100,0, | ||
12660 | 327,3,101,0,327, | ||
12661 | 3,102,0,327,3, | ||
12662 | 103,0,327,3,104, | ||
12663 | 0,327,3,105,0, | ||
12664 | 327,3,106,0,1002, | ||
12665 | 12,1,8658,1003,5, | ||
12666 | 63,3,109,0,327, | ||
12667 | 3,110,0,327,3, | ||
12668 | 111,0,327,3,112, | ||
12669 | 0,327,3,113,0, | ||
12670 | 327,3,114,0,327, | ||
12671 | 3,115,0,327,3, | ||
12672 | 116,0,327,3,117, | ||
12673 | 0,327,3,118,0, | ||
12674 | 327,3,119,0,327, | ||
12675 | 3,120,0,327,3, | ||
12676 | 121,0,327,3,122, | ||
12677 | 0,327,3,48,0, | ||
12678 | 327,3,49,0,327, | ||
12679 | 3,50,0,327,3, | ||
12680 | 51,0,327,3,52, | ||
12681 | 0,327,3,53,0, | ||
12682 | 327,3,54,0,327, | ||
12683 | 3,55,0,327,3, | ||
12684 | 56,0,327,3,57, | ||
12685 | 0,327,3,65,0, | ||
12686 | 327,3,66,0,327, | ||
12687 | 3,67,0,327,3, | ||
12688 | 68,0,327,3,69, | ||
12689 | 0,327,3,70,0, | ||
12690 | 327,3,71,0,327, | ||
12691 | 3,72,0,327,3, | ||
12692 | 73,0,327,3,74, | ||
12693 | 0,327,3,75,0, | ||
12694 | 327,3,76,0,327, | ||
12695 | 3,77,0,327,3, | ||
12696 | 78,0,327,3,79, | ||
12697 | 0,327,3,80,0, | ||
12698 | 327,3,81,0,327, | ||
12699 | 3,82,0,327,3, | ||
12700 | 83,0,327,3,84, | ||
12701 | 0,327,3,85,0, | ||
12702 | 327,3,86,0,327, | ||
12703 | 3,87,0,327,3, | ||
12704 | 88,0,327,3,89, | ||
12705 | 0,327,3,90,0, | ||
12706 | 327,3,95,0,327, | ||
12707 | 3,97,0,327,3, | ||
12708 | 98,0,327,3,99, | ||
12709 | 0,327,3,100,0, | ||
12710 | 327,3,101,0,1004, | ||
12711 | 12,1,8705,1005,5, | ||
12712 | 63,3,109,0,327, | ||
12713 | 3,110,0,327,3, | ||
12714 | 111,0,327,3,112, | ||
12715 | 0,327,3,113,0, | ||
12716 | 327,3,114,0,327, | ||
12717 | 3,115,0,327,3, | ||
12718 | 116,0,327,3,117, | ||
12719 | 0,327,3,118,0, | ||
12720 | 327,3,119,0,327, | ||
12721 | 3,120,0,327,3, | ||
12722 | 121,0,327,3,122, | ||
12723 | 0,327,3,48,0, | ||
12724 | 327,3,49,0,327, | ||
12725 | 3,50,0,327,3, | ||
12726 | 51,0,327,3,52, | ||
12727 | 0,327,3,53,0, | ||
12728 | 327,3,54,0,327, | ||
12729 | 3,55,0,327,3, | ||
12730 | 56,0,327,3,57, | ||
12731 | 0,327,3,65,0, | ||
12732 | 327,3,66,0,327, | ||
12733 | 3,67,0,327,3, | ||
12734 | 68,0,327,3,69, | ||
12735 | 0,327,3,70,0, | ||
12736 | 327,3,71,0,327, | ||
12737 | 3,72,0,327,3, | ||
12738 | 73,0,327,3,74, | ||
12739 | 0,327,3,75,0, | ||
12740 | 327,3,76,0,327, | ||
12741 | 3,77,0,327,3, | ||
12742 | 78,0,327,3,79, | ||
12743 | 0,327,3,80,0, | ||
12744 | 327,3,81,0,327, | ||
12745 | 3,82,0,327,3, | ||
12746 | 83,0,327,3,84, | ||
12747 | 0,327,3,85,0, | ||
12748 | 327,3,86,0,327, | ||
12749 | 3,87,0,327,3, | ||
12750 | 88,0,327,3,89, | ||
12751 | 0,327,3,90,0, | ||
12752 | 327,3,95,0,327, | ||
12753 | 3,97,0,327,3, | ||
12754 | 98,0,327,3,99, | ||
12755 | 0,1006,12,1,8750, | ||
12756 | 1007,5,63,3,109, | ||
12757 | 0,327,3,110,0, | ||
12758 | 327,3,111,0,327, | ||
12759 | 3,112,0,327,3, | ||
12760 | 113,0,327,3,114, | ||
12761 | 0,327,3,115,0, | ||
12762 | 327,3,116,0,1008, | ||
12763 | 12,1,8785,1009,5, | ||
12764 | 63,3,109,0,327, | ||
12765 | 3,110,0,327,3, | ||
12766 | 111,0,327,3,112, | ||
12767 | 0,327,3,113,0, | ||
12768 | 327,3,114,0,327, | ||
12769 | 3,115,0,327,3, | ||
12770 | 116,0,327,3,117, | ||
12771 | 0,327,3,118,0, | ||
12772 | 327,3,119,0,327, | ||
12773 | 3,120,0,327,3, | ||
12774 | 121,0,327,3,122, | ||
12775 | 0,327,3,48,0, | ||
12776 | 327,3,49,0,327, | ||
12777 | 3,50,0,327,3, | ||
12778 | 51,0,327,3,52, | ||
12779 | 0,327,3,53,0, | ||
12780 | 327,3,54,0,327, | ||
12781 | 3,55,0,327,3, | ||
12782 | 56,0,327,3,57, | ||
12783 | 0,327,3,65,0, | ||
12784 | 327,3,66,0,327, | ||
12785 | 3,67,0,327,3, | ||
12786 | 68,0,327,3,69, | ||
12787 | 0,327,3,70,0, | ||
12788 | 327,3,71,0,327, | ||
12789 | 3,72,0,327,3, | ||
12790 | 73,0,327,3,74, | ||
12791 | 0,327,3,75,0, | ||
12792 | 327,3,76,0,327, | ||
12793 | 3,77,0,327,3, | ||
12794 | 78,0,327,3,79, | ||
12795 | 0,327,3,80,0, | ||
12796 | 327,3,81,0,327, | ||
12797 | 3,82,0,327,3, | ||
12798 | 83,0,327,3,84, | ||
12799 | 0,327,3,85,0, | ||
12800 | 327,3,86,0,327, | ||
12801 | 3,87,0,327,3, | ||
12802 | 88,0,327,3,89, | ||
12803 | 0,327,3,90,0, | ||
12804 | 327,3,95,0,1010, | ||
12805 | 12,1,8871,1011,5, | ||
12806 | 63,3,109,0,327, | ||
12807 | 3,110,0,327,3, | ||
12808 | 111,0,327,3,112, | ||
12809 | 0,327,3,113,0, | ||
12810 | 327,3,114,0,1012, | ||
12811 | 12,1,8904,1013,5, | ||
12812 | 63,3,109,0,327, | ||
12813 | 3,110,0,327,3, | ||
12814 | 111,0,327,3,112, | ||
12815 | 0,327,3,113,0, | ||
12816 | 327,3,114,0,327, | ||
12817 | 3,115,0,327,3, | ||
12818 | 116,0,327,3,117, | ||
12819 | 0,327,3,118,0, | ||
12820 | 327,3,119,0,327, | ||
12821 | 3,120,0,327,3, | ||
12822 | 121,0,327,3,122, | ||
12823 | 0,327,3,48,0, | ||
12824 | 327,3,49,0,327, | ||
12825 | 3,50,0,327,3, | ||
12826 | 51,0,327,3,52, | ||
12827 | 0,327,3,53,0, | ||
12828 | 327,3,54,0,327, | ||
12829 | 3,55,0,327,3, | ||
12830 | 56,0,327,3,57, | ||
12831 | 0,327,3,65,0, | ||
12832 | 327,3,66,0,327, | ||
12833 | 3,67,0,327,3, | ||
12834 | 68,0,327,3,69, | ||
12835 | 0,327,3,70,0, | ||
12836 | 327,3,71,0,327, | ||
12837 | 3,72,0,327,3, | ||
12838 | 73,0,327,3,74, | ||
12839 | 0,327,3,75,0, | ||
12840 | 327,3,76,0,327, | ||
12841 | 3,77,0,327,3, | ||
12842 | 78,0,327,3,79, | ||
12843 | 0,327,3,80,0, | ||
12844 | 327,3,81,0,327, | ||
12845 | 3,82,0,327,3, | ||
12846 | 83,0,327,3,84, | ||
12847 | 0,327,3,85,0, | ||
12848 | 327,3,86,0,327, | ||
12849 | 3,87,0,327,3, | ||
12850 | 88,0,327,3,89, | ||
12851 | 0,327,3,90,0, | ||
12852 | 327,3,95,0,327, | ||
12853 | 3,97,0,327,3, | ||
12854 | 98,0,327,3,99, | ||
12855 | 0,327,3,100,0, | ||
12856 | 327,3,101,0,1014, | ||
12857 | 12,1,8951,1015,5, | ||
12858 | 63,3,109,0,327, | ||
12859 | 3,110,0,327,3, | ||
12860 | 111,0,327,3,112, | ||
12861 | 0,327,3,113,0, | ||
12862 | 327,3,114,0,327, | ||
12863 | 3,115,0,327,3, | ||
12864 | 116,0,327,3,117, | ||
12865 | 0,327,3,118,0, | ||
12866 | 327,3,119,0,327, | ||
12867 | 3,120,0,327,3, | ||
12868 | 121,0,327,3,122, | ||
12869 | 0,1016,12,1,8992, | ||
12870 | 1017,5,63,3,109, | ||
12871 | 0,327,3,110,0, | ||
12872 | 327,3,111,0,327, | ||
12873 | 3,112,0,327,3, | ||
12874 | 113,0,327,3,114, | ||
12875 | 0,327,3,115,0, | ||
12876 | 327,3,116,0,327, | ||
12877 | 3,117,0,327,3, | ||
12878 | 118,0,327,3,119, | ||
12879 | 0,327,3,120,0, | ||
12880 | 327,3,121,0,327, | ||
12881 | 3,122,0,327,3, | ||
12882 | 48,0,327,3,49, | ||
12883 | 0,327,3,50,0, | ||
12884 | 327,3,51,0,327, | ||
12885 | 3,52,0,327,3, | ||
12886 | 53,0,327,3,54, | ||
12887 | 0,327,3,55,0, | ||
12888 | 327,3,56,0,327, | ||
12889 | 3,57,0,327,3, | ||
12890 | 65,0,327,3,66, | ||
12891 | 0,327,3,67,0, | ||
12892 | 327,3,68,0,327, | ||
12893 | 3,69,0,327,3, | ||
12894 | 70,0,327,3,71, | ||
12895 | 0,327,3,72,0, | ||
12896 | 327,3,73,0,327, | ||
12897 | 3,74,0,327,3, | ||
12898 | 75,0,327,3,76, | ||
12899 | 0,327,3,77,0, | ||
12900 | 327,3,78,0,327, | ||
12901 | 3,79,0,327,3, | ||
12902 | 80,0,327,3,81, | ||
12903 | 0,327,3,82,0, | ||
12904 | 327,3,83,0,327, | ||
12905 | 3,84,0,327,3, | ||
12906 | 85,0,327,3,86, | ||
12907 | 0,327,3,87,0, | ||
12908 | 327,3,88,0,327, | ||
12909 | 3,89,0,327,3, | ||
12910 | 90,0,327,3,95, | ||
12911 | 0,327,3,97,0, | ||
12912 | 327,3,98,0,327, | ||
12913 | 3,99,0,327,3, | ||
12914 | 100,0,327,3,101, | ||
12915 | 0,327,3,102,0, | ||
12916 | 327,3,103,0,327, | ||
12917 | 3,104,0,327,3, | ||
12918 | 105,0,327,3,106, | ||
12919 | 0,327,3,107,0, | ||
12920 | 327,3,108,0,327, | ||
12921 | 1018,11,1,681,0, | ||
12922 | 1019,4,32,79,0, | ||
12923 | 66,0,74,0,69, | ||
12924 | 0,67,0,84,0, | ||
12925 | 95,0,82,0,69, | ||
12926 | 0,90,0,95,0, | ||
12927 | 69,0,86,0,69, | ||
12928 | 0,78,0,84,0, | ||
12929 | 1,-1,3,48,0, | ||
12930 | 327,3,49,0,327, | ||
12931 | 3,50,0,327,3, | ||
12932 | 51,0,327,3,52, | ||
12933 | 0,327,3,53,0, | ||
12934 | 327,3,54,0,327, | ||
12935 | 3,55,0,327,3, | ||
12936 | 56,0,327,3,57, | ||
12937 | 0,327,3,65,0, | ||
12938 | 327,3,66,0,327, | ||
12939 | 3,67,0,327,3, | ||
12940 | 68,0,327,3,69, | ||
12941 | 0,327,3,70,0, | ||
12942 | 327,3,71,0,327, | ||
12943 | 3,72,0,327,3, | ||
12944 | 73,0,327,3,74, | ||
12945 | 0,327,3,75,0, | ||
12946 | 327,3,76,0,327, | ||
12947 | 3,77,0,327,3, | ||
12948 | 78,0,327,3,79, | ||
12949 | 0,327,3,80,0, | ||
12950 | 327,3,81,0,327, | ||
12951 | 3,82,0,327,3, | ||
12952 | 83,0,327,3,84, | ||
12953 | 0,327,3,85,0, | ||
12954 | 327,3,86,0,327, | ||
12955 | 3,87,0,327,3, | ||
12956 | 88,0,327,3,89, | ||
12957 | 0,327,3,90,0, | ||
12958 | 327,3,95,0,327, | ||
12959 | 3,97,0,327,3, | ||
12960 | 98,0,327,3,99, | ||
12961 | 0,327,3,100,0, | ||
12962 | 327,3,101,0,327, | ||
12963 | 3,102,0,327,3, | ||
12964 | 103,0,327,3,104, | ||
12965 | 0,327,3,105,0, | ||
12966 | 327,3,106,0,327, | ||
12967 | 3,107,0,327,3, | ||
12968 | 108,0,327,1020,11, | ||
12969 | 1,829,0,330,1, | ||
12970 | -1,3,102,0,327, | ||
12971 | 3,103,0,327,3, | ||
12972 | 104,0,327,3,105, | ||
12973 | 0,327,3,106,0, | ||
12974 | 327,3,107,0,327, | ||
12975 | 3,108,0,327,1021, | ||
12976 | 11,1,829,0,330, | ||
12977 | 1,-1,3,115,0, | ||
12978 | 327,3,116,0,327, | ||
12979 | 3,117,0,327,3, | ||
12980 | 118,0,327,3,119, | ||
12981 | 0,327,3,120,0, | ||
12982 | 327,3,121,0,327, | ||
12983 | 3,122,0,327,3, | ||
12984 | 48,0,327,3,49, | ||
12985 | 0,327,3,50,0, | ||
12986 | 327,3,51,0,327, | ||
12987 | 3,52,0,327,3, | ||
12988 | 53,0,327,3,54, | ||
12989 | 0,327,3,55,0, | ||
12990 | 327,3,56,0,327, | ||
12991 | 3,57,0,327,3, | ||
12992 | 65,0,327,3,66, | ||
12993 | 0,327,3,67,0, | ||
12994 | 327,3,68,0,327, | ||
12995 | 3,69,0,327,3, | ||
12996 | 70,0,327,3,71, | ||
12997 | 0,327,3,72,0, | ||
12998 | 327,3,73,0,327, | ||
12999 | 3,74,0,327,3, | ||
13000 | 75,0,327,3,76, | ||
13001 | 0,327,3,77,0, | ||
13002 | 327,3,78,0,327, | ||
13003 | 3,79,0,327,3, | ||
13004 | 80,0,327,3,81, | ||
13005 | 0,327,3,82,0, | ||
13006 | 327,3,83,0,327, | ||
13007 | 3,84,0,327,3, | ||
13008 | 85,0,327,3,86, | ||
13009 | 0,327,3,87,0, | ||
13010 | 327,3,88,0,327, | ||
13011 | 3,89,0,327,3, | ||
13012 | 90,0,327,3,95, | ||
13013 | 0,327,3,97,0, | ||
13014 | 327,3,98,0,327, | ||
13015 | 3,99,0,327,3, | ||
13016 | 100,0,327,3,101, | ||
13017 | 0,327,3,102,0, | ||
13018 | 327,3,103,0,327, | ||
13019 | 3,104,0,327,3, | ||
13020 | 105,0,327,3,106, | ||
13021 | 0,327,3,107,0, | ||
13022 | 327,3,108,0,327, | ||
13023 | 1022,11,1,829,0, | ||
13024 | 330,1,-1,3,97, | ||
13025 | 0,327,3,98,0, | ||
13026 | 327,3,99,0,327, | ||
13027 | 3,100,0,327,3, | ||
13028 | 101,0,327,3,102, | ||
13029 | 0,327,3,103,0, | ||
13030 | 327,3,104,0,327, | ||
13031 | 3,105,0,327,3, | ||
13032 | 106,0,327,3,107, | ||
13033 | 0,327,3,108,0, | ||
13034 | 327,1023,11,1,829, | ||
13035 | 0,330,1,-1,3, | ||
13036 | 117,0,327,3,118, | ||
13037 | 0,327,3,119,0, | ||
13038 | 327,3,120,0,327, | ||
13039 | 3,121,0,327,3, | ||
13040 | 122,0,327,3,48, | ||
13041 | 0,327,3,49,0, | ||
13042 | 327,3,50,0,327, | ||
13043 | 3,51,0,327,3, | ||
13044 | 52,0,327,3,53, | ||
13045 | 0,327,3,54,0, | ||
13046 | 327,3,55,0,327, | ||
13047 | 3,56,0,327,3, | ||
13048 | 57,0,327,3,65, | ||
13049 | 0,327,3,66,0, | ||
13050 | 327,3,67,0,327, | ||
13051 | 3,68,0,327,3, | ||
13052 | 69,0,327,3,70, | ||
13053 | 0,327,3,71,0, | ||
13054 | 327,3,72,0,327, | ||
13055 | 3,73,0,327,3, | ||
13056 | 74,0,327,3,75, | ||
13057 | 0,327,3,76,0, | ||
13058 | 327,3,77,0,327, | ||
13059 | 3,78,0,327,3, | ||
13060 | 79,0,327,3,80, | ||
13061 | 0,327,3,81,0, | ||
13062 | 327,3,82,0,327, | ||
13063 | 3,83,0,327,3, | ||
13064 | 84,0,327,3,85, | ||
13065 | 0,327,3,86,0, | ||
13066 | 327,3,87,0,327, | ||
13067 | 3,88,0,327,3, | ||
13068 | 89,0,327,3,90, | ||
13069 | 0,327,3,95,0, | ||
13070 | 327,3,97,0,327, | ||
13071 | 3,98,0,327,3, | ||
13072 | 99,0,327,3,100, | ||
13073 | 0,327,3,101,0, | ||
13074 | 327,3,102,0,327, | ||
13075 | 3,103,0,327,3, | ||
13076 | 104,0,327,3,105, | ||
13077 | 0,327,3,106,0, | ||
13078 | 327,3,107,0,327, | ||
13079 | 3,108,0,327,1024, | ||
13080 | 11,1,829,0,330, | ||
13081 | 1,-1,3,100,0, | ||
13082 | 327,3,101,0,327, | ||
13083 | 3,102,0,327,3, | ||
13084 | 103,0,327,3,104, | ||
13085 | 0,327,3,105,0, | ||
13086 | 327,3,106,0,327, | ||
13087 | 3,107,0,327,3, | ||
13088 | 108,0,327,1025,11, | ||
13089 | 1,829,0,330,1, | ||
13090 | -1,3,102,0,327, | ||
13091 | 3,103,0,327,3, | ||
13092 | 104,0,327,3,105, | ||
13093 | 0,327,3,106,0, | ||
13094 | 327,3,107,0,327, | ||
13095 | 3,108,0,327,1026, | ||
13096 | 11,1,829,0,330, | ||
13097 | 1,-1,3,107,0, | ||
13098 | 327,3,108,0,327, | ||
13099 | 1027,11,1,829,0, | ||
13100 | 330,1,-1,3,99, | ||
13101 | 0,327,3,100,0, | ||
13102 | 327,3,101,0,327, | ||
13103 | 3,102,0,327,3, | ||
13104 | 103,0,327,3,104, | ||
13105 | 0,327,3,105,0, | ||
13106 | 327,3,106,0,327, | ||
13107 | 3,107,0,327,3, | ||
13108 | 108,0,327,1028,11, | ||
13109 | 1,829,0,330,1, | ||
13110 | -1,3,112,0,325, | ||
13111 | 3,113,0,325,3, | ||
13112 | 114,0,1029,12,1, | ||
13113 | 9765,1030,5,63,3, | ||
13114 | 109,0,327,3,110, | ||
13115 | 0,327,3,111,0, | ||
13116 | 1031,12,1,9795,1032, | ||
13117 | 5,63,3,109,0, | ||
13118 | 327,3,110,0,327, | ||
13119 | 3,111,0,327,3, | ||
13120 | 112,0,327,3,113, | ||
13121 | 0,327,3,114,0, | ||
13122 | 327,3,115,0,327, | ||
13123 | 3,116,0,1033,12, | ||
13124 | 1,9830,1034,5,63, | ||
13125 | 3,109,0,327,3, | ||
13126 | 110,0,327,3,111, | ||
13127 | 0,327,3,112,0, | ||
13128 | 327,3,113,0,327, | ||
13129 | 3,114,0,327,3, | ||
13130 | 115,0,327,3,116, | ||
13131 | 0,327,3,117,0, | ||
13132 | 327,3,118,0,327, | ||
13133 | 3,119,0,327,3, | ||
13134 | 120,0,327,3,121, | ||
13135 | 0,327,3,122,0, | ||
13136 | 327,3,48,0,327, | ||
13137 | 3,49,0,327,3, | ||
13138 | 50,0,327,3,51, | ||
13139 | 0,327,3,52,0, | ||
13140 | 327,3,53,0,327, | ||
13141 | 3,54,0,327,3, | ||
13142 | 55,0,327,3,56, | ||
13143 | 0,327,3,57,0, | ||
13144 | 327,3,65,0,327, | ||
13145 | 3,66,0,327,3, | ||
13146 | 67,0,327,3,68, | ||
13147 | 0,327,3,69,0, | ||
13148 | 327,3,70,0,327, | ||
13149 | 3,71,0,327,3, | ||
13150 | 72,0,327,3,73, | ||
13151 | 0,327,3,74,0, | ||
13152 | 327,3,75,0,327, | ||
13153 | 3,76,0,327,3, | ||
13154 | 77,0,327,3,78, | ||
13155 | 0,327,3,79,0, | ||
13156 | 327,3,80,0,327, | ||
13157 | 3,81,0,327,3, | ||
13158 | 82,0,327,3,83, | ||
13159 | 0,327,3,84,0, | ||
13160 | 327,3,85,0,327, | ||
13161 | 3,86,0,327,3, | ||
13162 | 87,0,327,3,88, | ||
13163 | 0,327,3,89,0, | ||
13164 | 327,3,90,0,327, | ||
13165 | 3,95,0,327,3, | ||
13166 | 97,0,1035,12,1, | ||
13167 | 9873,1036,5,63,3, | ||
13168 | 109,0,327,3,110, | ||
13169 | 0,327,3,111,0, | ||
13170 | 327,3,112,0,327, | ||
13171 | 3,113,0,327,3, | ||
13172 | 114,0,327,3,115, | ||
13173 | 0,327,3,116,0, | ||
13174 | 1037,12,1,9908,1038, | ||
13175 | 5,63,3,109,0, | ||
13176 | 327,3,110,0,327, | ||
13177 | 3,111,0,327,3, | ||
13178 | 112,0,327,3,113, | ||
13179 | 0,327,3,114,0, | ||
13180 | 327,3,115,0,327, | ||
13181 | 3,116,0,327,3, | ||
13182 | 117,0,327,3,118, | ||
13183 | 0,327,3,119,0, | ||
13184 | 327,3,120,0,327, | ||
13185 | 3,121,0,327,3, | ||
13186 | 122,0,327,3,48, | ||
13187 | 0,327,3,49,0, | ||
13188 | 327,3,50,0,327, | ||
13189 | 3,51,0,327,3, | ||
13190 | 52,0,327,3,53, | ||
13191 | 0,327,3,54,0, | ||
13192 | 327,3,55,0,327, | ||
13193 | 3,56,0,327,3, | ||
13194 | 57,0,327,3,65, | ||
13195 | 0,327,3,66,0, | ||
13196 | 327,3,67,0,327, | ||
13197 | 3,68,0,327,3, | ||
13198 | 69,0,327,3,70, | ||
13199 | 0,327,3,71,0, | ||
13200 | 327,3,72,0,327, | ||
13201 | 3,73,0,327,3, | ||
13202 | 74,0,327,3,75, | ||
13203 | 0,327,3,76,0, | ||
13204 | 327,3,77,0,327, | ||
13205 | 3,78,0,327,3, | ||
13206 | 79,0,327,3,80, | ||
13207 | 0,327,3,81,0, | ||
13208 | 327,3,82,0,327, | ||
13209 | 3,83,0,327,3, | ||
13210 | 84,0,327,3,85, | ||
13211 | 0,327,3,86,0, | ||
13212 | 327,3,87,0,327, | ||
13213 | 3,88,0,327,3, | ||
13214 | 89,0,327,3,90, | ||
13215 | 0,327,3,95,0, | ||
13216 | 327,3,97,0,327, | ||
13217 | 3,98,0,327,3, | ||
13218 | 99,0,327,3,100, | ||
13219 | 0,327,3,101,0, | ||
13220 | 327,3,102,0,327, | ||
13221 | 3,103,0,327,3, | ||
13222 | 104,0,327,3,105, | ||
13223 | 0,1039,12,1,9959, | ||
13224 | 1040,5,63,3,109, | ||
13225 | 0,327,3,110,0, | ||
13226 | 327,3,111,0,1041, | ||
13227 | 12,1,9989,1042,5, | ||
13228 | 63,3,109,0,327, | ||
13229 | 3,110,0,1043,12, | ||
13230 | 1,10018,1044,5,63, | ||
13231 | 3,109,0,327,3, | ||
13232 | 110,0,327,3,111, | ||
13233 | 0,327,3,112,0, | ||
13234 | 327,3,113,0,327, | ||
13235 | 3,114,0,327,3, | ||
13236 | 115,0,327,3,116, | ||
13237 | 0,327,3,117,0, | ||
13238 | 327,3,118,0,327, | ||
13239 | 3,119,0,327,3, | ||
13240 | 120,0,327,3,121, | ||
13241 | 0,327,3,122,0, | ||
13242 | 327,3,48,0,327, | ||
13243 | 3,49,0,327,3, | ||
13244 | 50,0,327,3,51, | ||
13245 | 0,327,3,52,0, | ||
13246 | 327,3,53,0,327, | ||
13247 | 3,54,0,327,3, | ||
13248 | 55,0,327,3,56, | ||
13249 | 0,327,3,57,0, | ||
13250 | 327,3,65,0,327, | ||
13251 | 3,66,0,327,3, | ||
13252 | 67,0,327,3,68, | ||
13253 | 0,327,3,69,0, | ||
13254 | 327,3,70,0,327, | ||
13255 | 3,71,0,327,3, | ||
13256 | 72,0,327,3,73, | ||
13257 | 0,327,3,74,0, | ||
13258 | 327,3,75,0,327, | ||
13259 | 3,76,0,327,3, | ||
13260 | 77,0,327,3,78, | ||
13261 | 0,327,3,79,0, | ||
13262 | 327,3,80,0,327, | ||
13263 | 3,81,0,327,3, | ||
13264 | 82,0,327,3,83, | ||
13265 | 0,327,3,84,0, | ||
13266 | 327,3,85,0,327, | ||
13267 | 3,86,0,327,3, | ||
13268 | 87,0,327,3,88, | ||
13269 | 0,327,3,89,0, | ||
13270 | 327,3,90,0,327, | ||
13271 | 3,95,0,327,3, | ||
13272 | 97,0,327,3,98, | ||
13273 | 0,327,3,99,0, | ||
13274 | 327,3,100,0,327, | ||
13275 | 3,101,0,327,3, | ||
13276 | 102,0,327,3,103, | ||
13277 | 0,327,3,104,0, | ||
13278 | 327,3,105,0,327, | ||
13279 | 3,106,0,327,3, | ||
13280 | 107,0,327,3,108, | ||
13281 | 0,327,1045,11,1, | ||
13282 | 330,0,1046,4,26, | ||
13283 | 82,0,79,0,84, | ||
13284 | 0,65,0,84,0, | ||
13285 | 73,0,79,0,78, | ||
13286 | 0,95,0,84,0, | ||
13287 | 89,0,80,0,69, | ||
13288 | 0,1,-1,3,111, | ||
13289 | 0,327,3,112,0, | ||
13290 | 327,3,113,0,327, | ||
13291 | 3,114,0,327,3, | ||
13292 | 115,0,327,3,116, | ||
13293 | 0,327,3,117,0, | ||
13294 | 327,3,118,0,327, | ||
13295 | 3,119,0,327,3, | ||
13296 | 120,0,327,3,121, | ||
13297 | 0,327,3,122,0, | ||
13298 | 327,3,48,0,327, | ||
13299 | 3,49,0,327,3, | ||
13300 | 50,0,327,3,51, | ||
13301 | 0,327,3,52,0, | ||
13302 | 327,3,53,0,327, | ||
13303 | 3,54,0,327,3, | ||
13304 | 55,0,327,3,56, | ||
13305 | 0,327,3,57,0, | ||
13306 | 327,3,65,0,327, | ||
13307 | 3,66,0,327,3, | ||
13308 | 67,0,327,3,68, | ||
13309 | 0,327,3,69,0, | ||
13310 | 327,3,70,0,327, | ||
13311 | 3,71,0,327,3, | ||
13312 | 72,0,327,3,73, | ||
13313 | 0,327,3,74,0, | ||
13314 | 327,3,75,0,327, | ||
13315 | 3,76,0,327,3, | ||
13316 | 77,0,327,3,78, | ||
13317 | 0,327,3,79,0, | ||
13318 | 327,3,80,0,327, | ||
13319 | 3,81,0,327,3, | ||
13320 | 82,0,327,3,83, | ||
13321 | 0,327,3,84,0, | ||
13322 | 327,3,85,0,327, | ||
13323 | 3,86,0,327,3, | ||
13324 | 87,0,327,3,88, | ||
13325 | 0,327,3,89,0, | ||
13326 | 327,3,90,0,327, | ||
13327 | 3,95,0,327,3, | ||
13328 | 97,0,327,3,98, | ||
13329 | 0,327,3,99,0, | ||
13330 | 327,3,100,0,327, | ||
13331 | 3,101,0,327,3, | ||
13332 | 102,0,327,3,103, | ||
13333 | 0,327,3,104,0, | ||
13334 | 327,3,105,0,327, | ||
13335 | 3,106,0,327,3, | ||
13336 | 107,0,327,3,108, | ||
13337 | 0,327,1047,11,1, | ||
13338 | 829,0,330,1,-1, | ||
13339 | 3,112,0,327,3, | ||
13340 | 113,0,327,3,114, | ||
13341 | 0,327,3,115,0, | ||
13342 | 327,3,116,0,327, | ||
13343 | 3,117,0,327,3, | ||
13344 | 118,0,327,3,119, | ||
13345 | 0,327,3,120,0, | ||
13346 | 327,3,121,0,327, | ||
13347 | 3,122,0,327,3, | ||
13348 | 48,0,327,3,49, | ||
13349 | 0,327,3,50,0, | ||
13350 | 327,3,51,0,327, | ||
13351 | 3,52,0,327,3, | ||
13352 | 53,0,327,3,54, | ||
13353 | 0,327,3,55,0, | ||
13354 | 327,3,56,0,327, | ||
13355 | 3,57,0,327,3, | ||
13356 | 65,0,327,3,66, | ||
13357 | 0,327,3,67,0, | ||
13358 | 327,3,68,0,327, | ||
13359 | 3,69,0,327,3, | ||
13360 | 70,0,327,3,71, | ||
13361 | 0,327,3,72,0, | ||
13362 | 327,3,73,0,327, | ||
13363 | 3,74,0,327,3, | ||
13364 | 75,0,327,3,76, | ||
13365 | 0,327,3,77,0, | ||
13366 | 327,3,78,0,327, | ||
13367 | 3,79,0,327,3, | ||
13368 | 80,0,327,3,81, | ||
13369 | 0,327,3,82,0, | ||
13370 | 327,3,83,0,327, | ||
13371 | 3,84,0,327,3, | ||
13372 | 85,0,327,3,86, | ||
13373 | 0,327,3,87,0, | ||
13374 | 327,3,88,0,327, | ||
13375 | 3,89,0,327,3, | ||
13376 | 90,0,327,3,95, | ||
13377 | 0,327,3,97,0, | ||
13378 | 327,3,98,0,327, | ||
13379 | 3,99,0,327,3, | ||
13380 | 100,0,327,3,101, | ||
13381 | 0,327,3,102,0, | ||
13382 | 327,3,103,0,327, | ||
13383 | 3,104,0,327,3, | ||
13384 | 105,0,327,3,106, | ||
13385 | 0,327,3,107,0, | ||
13386 | 327,3,108,0,327, | ||
13387 | 1048,11,1,829,0, | ||
13388 | 330,1,-1,3,106, | ||
13389 | 0,327,3,107,0, | ||
13390 | 327,3,108,0,327, | ||
13391 | 1049,11,1,829,0, | ||
13392 | 330,1,-1,3,117, | ||
13393 | 0,327,3,118,0, | ||
13394 | 327,3,119,0,327, | ||
13395 | 3,120,0,327,3, | ||
13396 | 121,0,327,3,122, | ||
13397 | 0,327,3,48,0, | ||
13398 | 327,3,49,0,327, | ||
13399 | 3,50,0,327,3, | ||
13400 | 51,0,327,3,52, | ||
13401 | 0,327,3,53,0, | ||
13402 | 327,3,54,0,327, | ||
13403 | 3,55,0,327,3, | ||
13404 | 56,0,327,3,57, | ||
13405 | 0,327,3,65,0, | ||
13406 | 327,3,66,0,327, | ||
13407 | 3,67,0,327,3, | ||
13408 | 68,0,327,3,69, | ||
13409 | 0,327,3,70,0, | ||
13410 | 327,3,71,0,327, | ||
13411 | 3,72,0,327,3, | ||
13412 | 73,0,327,3,74, | ||
13413 | 0,327,3,75,0, | ||
13414 | 327,3,76,0,327, | ||
13415 | 3,77,0,327,3, | ||
13416 | 78,0,327,3,79, | ||
13417 | 0,327,3,80,0, | ||
13418 | 327,3,81,0,327, | ||
13419 | 3,82,0,327,3, | ||
13420 | 83,0,327,3,84, | ||
13421 | 0,327,3,85,0, | ||
13422 | 327,3,86,0,327, | ||
13423 | 3,87,0,327,3, | ||
13424 | 88,0,327,3,89, | ||
13425 | 0,327,3,90,0, | ||
13426 | 327,3,95,0,327, | ||
13427 | 3,97,0,327,3, | ||
13428 | 98,0,327,3,99, | ||
13429 | 0,327,3,100,0, | ||
13430 | 327,3,101,0,327, | ||
13431 | 3,102,0,327,3, | ||
13432 | 103,0,327,3,104, | ||
13433 | 0,327,3,105,0, | ||
13434 | 327,3,106,0,327, | ||
13435 | 3,107,0,327,3, | ||
13436 | 108,0,327,1050,11, | ||
13437 | 1,829,0,330,1, | ||
13438 | -1,3,98,0,327, | ||
13439 | 3,99,0,327,3, | ||
13440 | 100,0,327,3,101, | ||
13441 | 0,327,3,102,0, | ||
13442 | 327,3,103,0,327, | ||
13443 | 3,104,0,327,3, | ||
13444 | 105,0,327,3,106, | ||
13445 | 0,327,3,107,0, | ||
13446 | 327,3,108,0,327, | ||
13447 | 1051,11,1,829,0, | ||
13448 | 330,1,-1,3,117, | ||
13449 | 0,327,3,118,0, | ||
13450 | 327,3,119,0,327, | ||
13451 | 3,120,0,327,3, | ||
13452 | 121,0,327,3,122, | ||
13453 | 0,327,3,48,0, | ||
13454 | 327,3,49,0,327, | ||
13455 | 3,50,0,327,3, | ||
13456 | 51,0,327,3,52, | ||
13457 | 0,327,3,53,0, | ||
13458 | 327,3,54,0,327, | ||
13459 | 3,55,0,327,3, | ||
13460 | 56,0,327,3,57, | ||
13461 | 0,327,3,65,0, | ||
13462 | 327,3,66,0,327, | ||
13463 | 3,67,0,327,3, | ||
13464 | 68,0,327,3,69, | ||
13465 | 0,327,3,70,0, | ||
13466 | 327,3,71,0,327, | ||
13467 | 3,72,0,327,3, | ||
13468 | 73,0,327,3,74, | ||
13469 | 0,327,3,75,0, | ||
13470 | 327,3,76,0,327, | ||
13471 | 3,77,0,327,3, | ||
13472 | 78,0,327,3,79, | ||
13473 | 0,327,3,80,0, | ||
13474 | 327,3,81,0,327, | ||
13475 | 3,82,0,327,3, | ||
13476 | 83,0,327,3,84, | ||
13477 | 0,327,3,85,0, | ||
13478 | 327,3,86,0,327, | ||
13479 | 3,87,0,327,3, | ||
13480 | 88,0,327,3,89, | ||
13481 | 0,327,3,90,0, | ||
13482 | 327,3,95,0,327, | ||
13483 | 3,97,0,327,3, | ||
13484 | 98,0,327,3,99, | ||
13485 | 0,327,3,100,0, | ||
13486 | 327,3,101,0,327, | ||
13487 | 3,102,0,327,3, | ||
13488 | 103,0,327,3,104, | ||
13489 | 0,327,3,105,0, | ||
13490 | 327,3,106,0,327, | ||
13491 | 3,107,0,327,3, | ||
13492 | 108,0,327,1052,11, | ||
13493 | 1,829,0,330,1, | ||
13494 | -1,3,112,0,327, | ||
13495 | 3,113,0,327,3, | ||
13496 | 114,0,327,3,115, | ||
13497 | 0,327,3,116,0, | ||
13498 | 327,3,117,0,1053, | ||
13499 | 12,1,10641,1054,5, | ||
13500 | 63,3,109,0,327, | ||
13501 | 3,110,0,1055,12, | ||
13502 | 1,10670,1056,5,63, | ||
13503 | 3,109,0,327,3, | ||
13504 | 110,0,327,3,111, | ||
13505 | 0,327,3,112,0, | ||
13506 | 327,3,113,0,327, | ||
13507 | 3,114,0,327,3, | ||
13508 | 115,0,327,3,116, | ||
13509 | 0,327,3,117,0, | ||
13510 | 327,3,118,0,327, | ||
13511 | 3,119,0,327,3, | ||
13512 | 120,0,327,3,121, | ||
13513 | 0,327,3,122,0, | ||
13514 | 327,3,48,0,327, | ||
13515 | 3,49,0,327,3, | ||
13516 | 50,0,327,3,51, | ||
13517 | 0,327,3,52,0, | ||
13518 | 327,3,53,0,327, | ||
13519 | 3,54,0,327,3, | ||
13520 | 55,0,327,3,56, | ||
13521 | 0,327,3,57,0, | ||
13522 | 327,3,65,0,327, | ||
13523 | 3,66,0,327,3, | ||
13524 | 67,0,327,3,68, | ||
13525 | 0,327,3,69,0, | ||
13526 | 327,3,70,0,327, | ||
13527 | 3,71,0,327,3, | ||
13528 | 72,0,327,3,73, | ||
13529 | 0,327,3,74,0, | ||
13530 | 327,3,75,0,327, | ||
13531 | 3,76,0,327,3, | ||
13532 | 77,0,327,3,78, | ||
13533 | 0,327,3,79,0, | ||
13534 | 327,3,80,0,327, | ||
13535 | 3,81,0,327,3, | ||
13536 | 82,0,327,3,83, | ||
13537 | 0,327,3,84,0, | ||
13538 | 327,3,85,0,327, | ||
13539 | 3,86,0,327,3, | ||
13540 | 87,0,327,3,88, | ||
13541 | 0,327,3,89,0, | ||
13542 | 327,3,90,0,327, | ||
13543 | 3,95,0,1057,12, | ||
13544 | 1,10756,1058,5,63, | ||
13545 | 3,109,0,327,3, | ||
13546 | 110,0,327,3,111, | ||
13547 | 0,327,3,112,0, | ||
13548 | 327,3,113,0,327, | ||
13549 | 3,114,0,327,3, | ||
13550 | 115,0,327,3,116, | ||
13551 | 0,1059,12,1,10791, | ||
13552 | 1060,5,63,3,109, | ||
13553 | 0,327,3,110,0, | ||
13554 | 327,3,111,0,327, | ||
13555 | 3,112,0,327,3, | ||
13556 | 113,0,327,3,114, | ||
13557 | 0,327,3,115,0, | ||
13558 | 327,3,116,0,327, | ||
13559 | 3,117,0,327,3, | ||
13560 | 118,0,327,3,119, | ||
13561 | 0,327,3,120,0, | ||
13562 | 327,3,121,0,327, | ||
13563 | 3,122,0,327,3, | ||
13564 | 48,0,327,3,49, | ||
13565 | 0,327,3,50,0, | ||
13566 | 327,3,51,0,327, | ||
13567 | 3,52,0,327,3, | ||
13568 | 53,0,327,3,54, | ||
13569 | 0,327,3,55,0, | ||
13570 | 327,3,56,0,327, | ||
13571 | 3,57,0,327,3, | ||
13572 | 65,0,327,3,66, | ||
13573 | 0,327,3,67,0, | ||
13574 | 327,3,68,0,327, | ||
13575 | 3,69,0,327,3, | ||
13576 | 70,0,327,3,71, | ||
13577 | 0,327,3,72,0, | ||
13578 | 327,3,73,0,327, | ||
13579 | 3,74,0,327,3, | ||
13580 | 75,0,327,3,76, | ||
13581 | 0,327,3,77,0, | ||
13582 | 327,3,78,0,327, | ||
13583 | 3,79,0,327,3, | ||
13584 | 80,0,327,3,81, | ||
13585 | 0,327,3,82,0, | ||
13586 | 327,3,83,0,327, | ||
13587 | 3,84,0,327,3, | ||
13588 | 85,0,327,3,86, | ||
13589 | 0,327,3,87,0, | ||
13590 | 327,3,88,0,327, | ||
13591 | 3,89,0,327,3, | ||
13592 | 90,0,327,3,95, | ||
13593 | 0,327,3,97,0, | ||
13594 | 327,3,98,0,327, | ||
13595 | 3,99,0,327,3, | ||
13596 | 100,0,327,3,101, | ||
13597 | 0,327,3,102,0, | ||
13598 | 327,3,103,0,327, | ||
13599 | 3,104,0,327,3, | ||
13600 | 105,0,1061,12,1, | ||
13601 | 10842,1062,5,63,3, | ||
13602 | 109,0,1063,12,1, | ||
13603 | 10870,1064,5,63,3, | ||
13604 | 109,0,327,3,110, | ||
13605 | 0,327,3,111,0, | ||
13606 | 327,3,112,0,327, | ||
13607 | 3,113,0,327,3, | ||
13608 | 114,0,327,3,115, | ||
13609 | 0,327,3,116,0, | ||
13610 | 327,3,117,0,327, | ||
13611 | 3,118,0,327,3, | ||
13612 | 119,0,327,3,120, | ||
13613 | 0,327,3,121,0, | ||
13614 | 327,3,122,0,327, | ||
13615 | 3,48,0,327,3, | ||
13616 | 49,0,327,3,50, | ||
13617 | 0,327,3,51,0, | ||
13618 | 327,3,52,0,327, | ||
13619 | 3,53,0,327,3, | ||
13620 | 54,0,327,3,55, | ||
13621 | 0,327,3,56,0, | ||
13622 | 327,3,57,0,327, | ||
13623 | 3,65,0,327,3, | ||
13624 | 66,0,327,3,67, | ||
13625 | 0,327,3,68,0, | ||
13626 | 327,3,69,0,327, | ||
13627 | 3,70,0,327,3, | ||
13628 | 71,0,327,3,72, | ||
13629 | 0,327,3,73,0, | ||
13630 | 327,3,74,0,327, | ||
13631 | 3,75,0,327,3, | ||
13632 | 76,0,327,3,77, | ||
13633 | 0,327,3,78,0, | ||
13634 | 327,3,79,0,327, | ||
13635 | 3,80,0,327,3, | ||
13636 | 81,0,327,3,82, | ||
13637 | 0,327,3,83,0, | ||
13638 | 327,3,84,0,327, | ||
13639 | 3,85,0,327,3, | ||
13640 | 86,0,327,3,87, | ||
13641 | 0,327,3,88,0, | ||
13642 | 327,3,89,0,327, | ||
13643 | 3,90,0,327,3, | ||
13644 | 95,0,327,3,97, | ||
13645 | 0,327,3,98,0, | ||
13646 | 327,3,99,0,327, | ||
13647 | 3,100,0,327,3, | ||
13648 | 101,0,1065,12,1, | ||
13649 | 10917,1066,5,63,3, | ||
13650 | 109,0,327,3,110, | ||
13651 | 0,327,3,111,0, | ||
13652 | 327,3,112,0,327, | ||
13653 | 3,113,0,327,3, | ||
13654 | 114,0,327,3,115, | ||
13655 | 0,327,3,116,0, | ||
13656 | 327,3,117,0,327, | ||
13657 | 3,118,0,327,3, | ||
13658 | 119,0,327,3,120, | ||
13659 | 0,327,3,121,0, | ||
13660 | 327,3,122,0,327, | ||
13661 | 3,48,0,327,3, | ||
13662 | 49,0,327,3,50, | ||
13663 | 0,327,3,51,0, | ||
13664 | 327,3,52,0,327, | ||
13665 | 3,53,0,327,3, | ||
13666 | 54,0,327,3,55, | ||
13667 | 0,327,3,56,0, | ||
13668 | 327,3,57,0,327, | ||
13669 | 3,65,0,327,3, | ||
13670 | 66,0,327,3,67, | ||
13671 | 0,327,3,68,0, | ||
13672 | 327,3,69,0,327, | ||
13673 | 3,70,0,327,3, | ||
13674 | 71,0,327,3,72, | ||
13675 | 0,327,3,73,0, | ||
13676 | 327,3,74,0,327, | ||
13677 | 3,75,0,327,3, | ||
13678 | 76,0,327,3,77, | ||
13679 | 0,327,3,78,0, | ||
13680 | 327,3,79,0,327, | ||
13681 | 3,80,0,327,3, | ||
13682 | 81,0,327,3,82, | ||
13683 | 0,327,3,83,0, | ||
13684 | 327,3,84,0,327, | ||
13685 | 3,85,0,327,3, | ||
13686 | 86,0,327,3,87, | ||
13687 | 0,327,3,88,0, | ||
13688 | 327,3,89,0,327, | ||
13689 | 3,90,0,327,3, | ||
13690 | 95,0,1067,12,1, | ||
13691 | 11003,1068,5,63,3, | ||
13692 | 109,0,327,3,110, | ||
13693 | 0,327,3,111,0, | ||
13694 | 327,3,112,0,1069, | ||
13695 | 12,1,11034,1070,5, | ||
13696 | 63,3,109,0,327, | ||
13697 | 3,110,0,327,3, | ||
13698 | 111,0,327,3,112, | ||
13699 | 0,327,3,113,0, | ||
13700 | 327,3,114,0,327, | ||
13701 | 3,115,0,327,3, | ||
13702 | 116,0,327,3,117, | ||
13703 | 0,327,3,118,0, | ||
13704 | 327,3,119,0,327, | ||
13705 | 3,120,0,327,3, | ||
13706 | 121,0,327,3,122, | ||
13707 | 0,327,3,48,0, | ||
13708 | 327,3,49,0,327, | ||
13709 | 3,50,0,327,3, | ||
13710 | 51,0,327,3,52, | ||
13711 | 0,327,3,53,0, | ||
13712 | 327,3,54,0,327, | ||
13713 | 3,55,0,327,3, | ||
13714 | 56,0,327,3,57, | ||
13715 | 0,327,3,65,0, | ||
13716 | 327,3,66,0,327, | ||
13717 | 3,67,0,327,3, | ||
13718 | 68,0,327,3,69, | ||
13719 | 0,327,3,70,0, | ||
13720 | 327,3,71,0,327, | ||
13721 | 3,72,0,327,3, | ||
13722 | 73,0,327,3,74, | ||
13723 | 0,327,3,75,0, | ||
13724 | 327,3,76,0,327, | ||
13725 | 3,77,0,327,3, | ||
13726 | 78,0,327,3,79, | ||
13727 | 0,327,3,80,0, | ||
13728 | 327,3,81,0,327, | ||
13729 | 3,82,0,327,3, | ||
13730 | 83,0,327,3,84, | ||
13731 | 0,327,3,85,0, | ||
13732 | 327,3,86,0,327, | ||
13733 | 3,87,0,327,3, | ||
13734 | 88,0,327,3,89, | ||
13735 | 0,327,3,90,0, | ||
13736 | 327,3,95,0,327, | ||
13737 | 3,97,0,327,3, | ||
13738 | 98,0,327,3,99, | ||
13739 | 0,327,3,100,0, | ||
13740 | 327,3,101,0,1071, | ||
13741 | 12,1,11081,1072,5, | ||
13742 | 63,3,109,0,327, | ||
13743 | 3,110,0,327,3, | ||
13744 | 111,0,327,3,112, | ||
13745 | 0,327,3,113,0, | ||
13746 | 327,3,114,0,1073, | ||
13747 | 12,1,11114,1074,5, | ||
13748 | 63,3,109,0,1075, | ||
13749 | 12,1,11142,1076,5, | ||
13750 | 63,3,109,0,327, | ||
13751 | 3,110,0,327,3, | ||
13752 | 111,0,327,3,112, | ||
13753 | 0,327,3,113,0, | ||
13754 | 327,3,114,0,327, | ||
13755 | 3,115,0,327,3, | ||
13756 | 116,0,327,3,117, | ||
13757 | 0,327,3,118,0, | ||
13758 | 327,3,119,0,327, | ||
13759 | 3,120,0,327,3, | ||
13760 | 121,0,327,3,122, | ||
13761 | 0,327,3,48,0, | ||
13762 | 327,3,49,0,327, | ||
13763 | 3,50,0,327,3, | ||
13764 | 51,0,327,3,52, | ||
13765 | 0,327,3,53,0, | ||
13766 | 327,3,54,0,327, | ||
13767 | 3,55,0,327,3, | ||
13768 | 56,0,327,3,57, | ||
13769 | 0,327,3,65,0, | ||
13770 | 327,3,66,0,327, | ||
13771 | 3,67,0,327,3, | ||
13772 | 68,0,327,3,69, | ||
13773 | 0,327,3,70,0, | ||
13774 | 327,3,71,0,327, | ||
13775 | 3,72,0,327,3, | ||
13776 | 73,0,327,3,74, | ||
13777 | 0,327,3,75,0, | ||
13778 | 327,3,76,0,327, | ||
13779 | 3,77,0,327,3, | ||
13780 | 78,0,327,3,79, | ||
13781 | 0,327,3,80,0, | ||
13782 | 327,3,81,0,327, | ||
13783 | 3,82,0,327,3, | ||
13784 | 83,0,327,3,84, | ||
13785 | 0,327,3,85,0, | ||
13786 | 327,3,86,0,327, | ||
13787 | 3,87,0,327,3, | ||
13788 | 88,0,327,3,89, | ||
13789 | 0,327,3,90,0, | ||
13790 | 327,3,95,0,327, | ||
13791 | 3,97,0,327,3, | ||
13792 | 98,0,327,3,99, | ||
13793 | 0,327,3,100,0, | ||
13794 | 327,3,101,0,327, | ||
13795 | 3,102,0,327,3, | ||
13796 | 103,0,327,3,104, | ||
13797 | 0,327,3,105,0, | ||
13798 | 1077,12,1,11193,1078, | ||
13799 | 5,63,3,109,0, | ||
13800 | 327,3,110,0,327, | ||
13801 | 3,111,0,327,3, | ||
13802 | 112,0,327,3,113, | ||
13803 | 0,327,3,114,0, | ||
13804 | 327,3,115,0,1079, | ||
13805 | 12,1,11227,1080,5, | ||
13806 | 63,3,109,0,327, | ||
13807 | 3,110,0,327,3, | ||
13808 | 111,0,327,3,112, | ||
13809 | 0,327,3,113,0, | ||
13810 | 327,3,114,0,327, | ||
13811 | 3,115,0,1081,12, | ||
13812 | 1,11261,1082,5,63, | ||
13813 | 3,109,0,327,3, | ||
13814 | 110,0,327,3,111, | ||
13815 | 0,327,3,112,0, | ||
13816 | 327,3,113,0,327, | ||
13817 | 3,114,0,327,3, | ||
13818 | 115,0,327,3,116, | ||
13819 | 0,327,3,117,0, | ||
13820 | 327,3,118,0,327, | ||
13821 | 3,119,0,327,3, | ||
13822 | 120,0,327,3,121, | ||
13823 | 0,327,3,122,0, | ||
13824 | 327,3,48,0,327, | ||
13825 | 3,49,0,327,3, | ||
13826 | 50,0,327,3,51, | ||
13827 | 0,327,3,52,0, | ||
13828 | 327,3,53,0,327, | ||
13829 | 3,54,0,327,3, | ||
13830 | 55,0,327,3,56, | ||
13831 | 0,327,3,57,0, | ||
13832 | 327,3,65,0,327, | ||
13833 | 3,66,0,327,3, | ||
13834 | 67,0,327,3,68, | ||
13835 | 0,327,3,69,0, | ||
13836 | 327,3,70,0,327, | ||
13837 | 3,71,0,327,3, | ||
13838 | 72,0,327,3,73, | ||
13839 | 0,327,3,74,0, | ||
13840 | 327,3,75,0,327, | ||
13841 | 3,76,0,327,3, | ||
13842 | 77,0,327,3,78, | ||
13843 | 0,327,3,79,0, | ||
13844 | 327,3,80,0,327, | ||
13845 | 3,81,0,327,3, | ||
13846 | 82,0,327,3,83, | ||
13847 | 0,327,3,84,0, | ||
13848 | 327,3,85,0,327, | ||
13849 | 3,86,0,327,3, | ||
13850 | 87,0,327,3,88, | ||
13851 | 0,327,3,89,0, | ||
13852 | 327,3,90,0,327, | ||
13853 | 3,95,0,327,3, | ||
13854 | 97,0,327,3,98, | ||
13855 | 0,327,3,99,0, | ||
13856 | 327,3,100,0,327, | ||
13857 | 3,101,0,327,3, | ||
13858 | 102,0,327,3,103, | ||
13859 | 0,327,3,104,0, | ||
13860 | 327,3,105,0,1083, | ||
13861 | 12,1,11312,1084,5, | ||
13862 | 63,3,109,0,327, | ||
13863 | 3,110,0,327,3, | ||
13864 | 111,0,1085,12,1, | ||
13865 | 11342,1086,5,63,3, | ||
13866 | 109,0,327,3,110, | ||
13867 | 0,1087,12,1,11371, | ||
13868 | 1088,5,63,3,109, | ||
13869 | 0,327,3,110,0, | ||
13870 | 327,3,111,0,327, | ||
13871 | 3,112,0,327,3, | ||
13872 | 113,0,327,3,114, | ||
13873 | 0,327,3,115,0, | ||
13874 | 1089,12,1,11405,1090, | ||
13875 | 5,63,3,109,0, | ||
13876 | 327,3,110,0,327, | ||
13877 | 3,111,0,327,3, | ||
13878 | 112,0,327,3,113, | ||
13879 | 0,327,3,114,0, | ||
13880 | 327,3,115,0,327, | ||
13881 | 3,116,0,327,3, | ||
13882 | 117,0,327,3,118, | ||
13883 | 0,327,3,119,0, | ||
13884 | 327,3,120,0,327, | ||
13885 | 3,121,0,327,3, | ||
13886 | 122,0,327,3,48, | ||
13887 | 0,327,3,49,0, | ||
13888 | 327,3,50,0,327, | ||
13889 | 3,51,0,327,3, | ||
13890 | 52,0,327,3,53, | ||
13891 | 0,327,3,54,0, | ||
13892 | 327,3,55,0,327, | ||
13893 | 3,56,0,327,3, | ||
13894 | 57,0,327,3,65, | ||
13895 | 0,327,3,66,0, | ||
13896 | 327,3,67,0,327, | ||
13897 | 3,68,0,327,3, | ||
13898 | 69,0,327,3,70, | ||
13899 | 0,327,3,71,0, | ||
13900 | 327,3,72,0,327, | ||
13901 | 3,73,0,327,3, | ||
13902 | 74,0,327,3,75, | ||
13903 | 0,327,3,76,0, | ||
13904 | 327,3,77,0,327, | ||
13905 | 3,78,0,327,3, | ||
13906 | 79,0,327,3,80, | ||
13907 | 0,327,3,81,0, | ||
13908 | 327,3,82,0,327, | ||
13909 | 3,83,0,327,3, | ||
13910 | 84,0,327,3,85, | ||
13911 | 0,327,3,86,0, | ||
13912 | 327,3,87,0,327, | ||
13913 | 3,88,0,327,3, | ||
13914 | 89,0,327,3,90, | ||
13915 | 0,327,3,95,0, | ||
13916 | 327,3,97,0,327, | ||
13917 | 3,98,0,327,3, | ||
13918 | 99,0,327,3,100, | ||
13919 | 0,327,3,101,0, | ||
13920 | 327,3,102,0,327, | ||
13921 | 3,103,0,327,3, | ||
13922 | 104,0,327,3,105, | ||
13923 | 0,327,3,106,0, | ||
13924 | 327,3,107,0,327, | ||
13925 | 3,108,0,327,1091, | ||
13926 | 11,1,720,0,1092, | ||
13927 | 4,52,82,0,85, | ||
13928 | 0,78,0,95,0, | ||
13929 | 84,0,73,0,77, | ||
13930 | 0,69,0,95,0, | ||
13931 | 80,0,69,0,82, | ||
13932 | 0,77,0,73,0, | ||
13933 | 83,0,83,0,73, | ||
13934 | 0,79,0,78,0, | ||
13935 | 83,0,95,0,69, | ||
13936 | 0,86,0,69,0, | ||
13937 | 78,0,84,0,1, | ||
13938 | -1,3,116,0,327, | ||
13939 | 3,117,0,327,3, | ||
13940 | 118,0,327,3,119, | ||
13941 | 0,327,3,120,0, | ||
13942 | 327,3,121,0,327, | ||
13943 | 3,122,0,327,3, | ||
13944 | 48,0,327,3,49, | ||
13945 | 0,327,3,50,0, | ||
13946 | 327,3,51,0,327, | ||
13947 | 3,52,0,327,3, | ||
13948 | 53,0,327,3,54, | ||
13949 | 0,327,3,55,0, | ||
13950 | 327,3,56,0,327, | ||
13951 | 3,57,0,327,3, | ||
13952 | 65,0,327,3,66, | ||
13953 | 0,327,3,67,0, | ||
13954 | 327,3,68,0,327, | ||
13955 | 3,69,0,327,3, | ||
13956 | 70,0,327,3,71, | ||
13957 | 0,327,3,72,0, | ||
13958 | 327,3,73,0,327, | ||
13959 | 3,74,0,327,3, | ||
13960 | 75,0,327,3,76, | ||
13961 | 0,327,3,77,0, | ||
13962 | 327,3,78,0,327, | ||
13963 | 3,79,0,327,3, | ||
13964 | 80,0,327,3,81, | ||
13965 | 0,327,3,82,0, | ||
13966 | 327,3,83,0,327, | ||
13967 | 3,84,0,327,3, | ||
13968 | 85,0,327,3,86, | ||
13969 | 0,327,3,87,0, | ||
13970 | 327,3,88,0,327, | ||
13971 | 3,89,0,327,3, | ||
13972 | 90,0,327,3,95, | ||
13973 | 0,327,3,97,0, | ||
13974 | 327,3,98,0,327, | ||
13975 | 3,99,0,327,3, | ||
13976 | 100,0,327,3,101, | ||
13977 | 0,327,3,102,0, | ||
13978 | 327,3,103,0,327, | ||
13979 | 3,104,0,327,3, | ||
13980 | 105,0,327,3,106, | ||
13981 | 0,327,3,107,0, | ||
13982 | 327,3,108,0,327, | ||
13983 | 1093,11,1,829,0, | ||
13984 | 330,1,-1,3,111, | ||
13985 | 0,327,3,112,0, | ||
13986 | 327,3,113,0,327, | ||
13987 | 3,114,0,327,3, | ||
13988 | 115,0,327,3,116, | ||
13989 | 0,327,3,117,0, | ||
13990 | 327,3,118,0,327, | ||
13991 | 3,119,0,327,3, | ||
13992 | 120,0,327,3,121, | ||
13993 | 0,327,3,122,0, | ||
13994 | 327,3,48,0,327, | ||
13995 | 3,49,0,327,3, | ||
13996 | 50,0,327,3,51, | ||
13997 | 0,327,3,52,0, | ||
13998 | 327,3,53,0,327, | ||
13999 | 3,54,0,327,3, | ||
14000 | 55,0,327,3,56, | ||
14001 | 0,327,3,57,0, | ||
14002 | 327,3,65,0,327, | ||
14003 | 3,66,0,327,3, | ||
14004 | 67,0,327,3,68, | ||
14005 | 0,327,3,69,0, | ||
14006 | 327,3,70,0,327, | ||
14007 | 3,71,0,327,3, | ||
14008 | 72,0,327,3,73, | ||
14009 | 0,327,3,74,0, | ||
14010 | 327,3,75,0,327, | ||
14011 | 3,76,0,327,3, | ||
14012 | 77,0,327,3,78, | ||
14013 | 0,327,3,79,0, | ||
14014 | 327,3,80,0,327, | ||
14015 | 3,81,0,327,3, | ||
14016 | 82,0,327,3,83, | ||
14017 | 0,327,3,84,0, | ||
14018 | 327,3,85,0,327, | ||
14019 | 3,86,0,327,3, | ||
14020 | 87,0,327,3,88, | ||
14021 | 0,327,3,89,0, | ||
14022 | 327,3,90,0,327, | ||
14023 | 3,95,0,327,3, | ||
14024 | 97,0,327,3,98, | ||
14025 | 0,327,3,99,0, | ||
14026 | 327,3,100,0,327, | ||
14027 | 3,101,0,327,3, | ||
14028 | 102,0,327,3,103, | ||
14029 | 0,327,3,104,0, | ||
14030 | 327,3,105,0,327, | ||
14031 | 3,106,0,327,3, | ||
14032 | 107,0,327,3,108, | ||
14033 | 0,327,1094,11,1, | ||
14034 | 829,0,330,1,-1, | ||
14035 | 3,112,0,327,3, | ||
14036 | 113,0,327,3,114, | ||
14037 | 0,327,3,115,0, | ||
14038 | 327,3,116,0,327, | ||
14039 | 3,117,0,327,3, | ||
14040 | 118,0,327,3,119, | ||
14041 | 0,327,3,120,0, | ||
14042 | 327,3,121,0,327, | ||
14043 | 3,122,0,327,3, | ||
14044 | 48,0,327,3,49, | ||
14045 | 0,327,3,50,0, | ||
14046 | 327,3,51,0,327, | ||
14047 | 3,52,0,327,3, | ||
14048 | 53,0,327,3,54, | ||
14049 | 0,327,3,55,0, | ||
14050 | 327,3,56,0,327, | ||
14051 | 3,57,0,327,3, | ||
14052 | 65,0,327,3,66, | ||
14053 | 0,327,3,67,0, | ||
14054 | 327,3,68,0,327, | ||
14055 | 3,69,0,327,3, | ||
14056 | 70,0,327,3,71, | ||
14057 | 0,327,3,72,0, | ||
14058 | 327,3,73,0,327, | ||
14059 | 3,74,0,327,3, | ||
14060 | 75,0,327,3,76, | ||
14061 | 0,327,3,77,0, | ||
14062 | 327,3,78,0,327, | ||
14063 | 3,79,0,327,3, | ||
14064 | 80,0,327,3,81, | ||
14065 | 0,327,3,82,0, | ||
14066 | 327,3,83,0,327, | ||
14067 | 3,84,0,327,3, | ||
14068 | 85,0,327,3,86, | ||
14069 | 0,327,3,87,0, | ||
14070 | 327,3,88,0,327, | ||
14071 | 3,89,0,327,3, | ||
14072 | 90,0,327,3,95, | ||
14073 | 0,327,3,97,0, | ||
14074 | 327,3,98,0,327, | ||
14075 | 3,99,0,327,3, | ||
14076 | 100,0,327,3,101, | ||
14077 | 0,327,3,102,0, | ||
14078 | 327,3,103,0,327, | ||
14079 | 3,104,0,327,3, | ||
14080 | 105,0,327,3,106, | ||
14081 | 0,327,3,107,0, | ||
14082 | 327,3,108,0,327, | ||
14083 | 1095,11,1,829,0, | ||
14084 | 330,1,-1,3,106, | ||
14085 | 0,327,3,107,0, | ||
14086 | 327,3,108,0,327, | ||
14087 | 1096,11,1,829,0, | ||
14088 | 330,1,-1,3,116, | ||
14089 | 0,327,3,117,0, | ||
14090 | 327,3,118,0,327, | ||
14091 | 3,119,0,327,3, | ||
14092 | 120,0,327,3,121, | ||
14093 | 0,327,3,122,0, | ||
14094 | 327,3,48,0,327, | ||
14095 | 3,49,0,327,3, | ||
14096 | 50,0,327,3,51, | ||
14097 | 0,327,3,52,0, | ||
14098 | 327,3,53,0,327, | ||
14099 | 3,54,0,327,3, | ||
14100 | 55,0,327,3,56, | ||
14101 | 0,327,3,57,0, | ||
14102 | 327,3,65,0,327, | ||
14103 | 3,66,0,327,3, | ||
14104 | 67,0,327,3,68, | ||
14105 | 0,327,3,69,0, | ||
14106 | 327,3,70,0,327, | ||
14107 | 3,71,0,327,3, | ||
14108 | 72,0,327,3,73, | ||
14109 | 0,327,3,74,0, | ||
14110 | 327,3,75,0,327, | ||
14111 | 3,76,0,327,3, | ||
14112 | 77,0,327,3,78, | ||
14113 | 0,327,3,79,0, | ||
14114 | 327,3,80,0,327, | ||
14115 | 3,81,0,327,3, | ||
14116 | 82,0,327,3,83, | ||
14117 | 0,327,3,84,0, | ||
14118 | 327,3,85,0,327, | ||
14119 | 3,86,0,327,3, | ||
14120 | 87,0,327,3,88, | ||
14121 | 0,327,3,89,0, | ||
14122 | 327,3,90,0,327, | ||
14123 | 3,95,0,327,3, | ||
14124 | 97,0,327,3,98, | ||
14125 | 0,327,3,99,0, | ||
14126 | 327,3,100,0,327, | ||
14127 | 3,101,0,327,3, | ||
14128 | 102,0,327,3,103, | ||
14129 | 0,327,3,104,0, | ||
14130 | 327,3,105,0,327, | ||
14131 | 3,106,0,327,3, | ||
14132 | 107,0,327,3,108, | ||
14133 | 0,327,1097,11,1, | ||
14134 | 829,0,330,1,-1, | ||
14135 | 3,116,0,327,3, | ||
14136 | 117,0,327,3,118, | ||
14137 | 0,327,3,119,0, | ||
14138 | 327,3,120,0,327, | ||
14139 | 3,121,0,327,3, | ||
14140 | 122,0,327,3,48, | ||
14141 | 0,327,3,49,0, | ||
14142 | 327,3,50,0,327, | ||
14143 | 3,51,0,327,3, | ||
14144 | 52,0,327,3,53, | ||
14145 | 0,327,3,54,0, | ||
14146 | 327,3,55,0,327, | ||
14147 | 3,56,0,327,3, | ||
14148 | 57,0,327,3,65, | ||
14149 | 0,327,3,66,0, | ||
14150 | 327,3,67,0,327, | ||
14151 | 3,68,0,327,3, | ||
14152 | 69,0,327,3,70, | ||
14153 | 0,327,3,71,0, | ||
14154 | 327,3,72,0,327, | ||
14155 | 3,73,0,327,3, | ||
14156 | 74,0,327,3,75, | ||
14157 | 0,327,3,76,0, | ||
14158 | 327,3,77,0,327, | ||
14159 | 3,78,0,327,3, | ||
14160 | 79,0,327,3,80, | ||
14161 | 0,327,3,81,0, | ||
14162 | 327,3,82,0,327, | ||
14163 | 3,83,0,327,3, | ||
14164 | 84,0,327,3,85, | ||
14165 | 0,327,3,86,0, | ||
14166 | 327,3,87,0,327, | ||
14167 | 3,88,0,327,3, | ||
14168 | 89,0,327,3,90, | ||
14169 | 0,327,3,95,0, | ||
14170 | 327,3,97,0,327, | ||
14171 | 3,98,0,327,3, | ||
14172 | 99,0,327,3,100, | ||
14173 | 0,327,3,101,0, | ||
14174 | 327,3,102,0,327, | ||
14175 | 3,103,0,327,3, | ||
14176 | 104,0,327,3,105, | ||
14177 | 0,327,3,106,0, | ||
14178 | 327,3,107,0,327, | ||
14179 | 3,108,0,327,1098, | ||
14180 | 11,1,829,0,330, | ||
14181 | 1,-1,3,106,0, | ||
14182 | 327,3,107,0,327, | ||
14183 | 3,108,0,327,1099, | ||
14184 | 11,1,829,0,330, | ||
14185 | 1,-1,3,110,0, | ||
14186 | 327,3,111,0,327, | ||
14187 | 3,112,0,327,3, | ||
14188 | 113,0,327,3,114, | ||
14189 | 0,327,3,115,0, | ||
14190 | 327,3,116,0,327, | ||
14191 | 3,117,0,327,3, | ||
14192 | 118,0,327,3,119, | ||
14193 | 0,327,3,120,0, | ||
14194 | 327,3,121,0,327, | ||
14195 | 3,122,0,327,3, | ||
14196 | 48,0,327,3,49, | ||
14197 | 0,327,3,50,0, | ||
14198 | 327,3,51,0,327, | ||
14199 | 3,52,0,327,3, | ||
14200 | 53,0,327,3,54, | ||
14201 | 0,327,3,55,0, | ||
14202 | 327,3,56,0,327, | ||
14203 | 3,57,0,327,3, | ||
14204 | 65,0,327,3,66, | ||
14205 | 0,327,3,67,0, | ||
14206 | 327,3,68,0,327, | ||
14207 | 3,69,0,327,3, | ||
14208 | 70,0,327,3,71, | ||
14209 | 0,327,3,72,0, | ||
14210 | 327,3,73,0,327, | ||
14211 | 3,74,0,327,3, | ||
14212 | 75,0,327,3,76, | ||
14213 | 0,327,3,77,0, | ||
14214 | 327,3,78,0,327, | ||
14215 | 3,79,0,327,3, | ||
14216 | 80,0,327,3,81, | ||
14217 | 0,327,3,82,0, | ||
14218 | 327,3,83,0,327, | ||
14219 | 3,84,0,327,3, | ||
14220 | 85,0,327,3,86, | ||
14221 | 0,327,3,87,0, | ||
14222 | 327,3,88,0,327, | ||
14223 | 3,89,0,327,3, | ||
14224 | 90,0,327,3,95, | ||
14225 | 0,327,3,97,0, | ||
14226 | 327,3,98,0,327, | ||
14227 | 3,99,0,327,3, | ||
14228 | 100,0,327,3,101, | ||
14229 | 0,327,3,102,0, | ||
14230 | 327,3,103,0,327, | ||
14231 | 3,104,0,327,3, | ||
14232 | 105,0,327,3,106, | ||
14233 | 0,327,3,107,0, | ||
14234 | 327,3,108,0,327, | ||
14235 | 1100,11,1,829,0, | ||
14236 | 330,1,-1,3,115, | ||
14237 | 0,327,3,116,0, | ||
14238 | 327,3,117,0,327, | ||
14239 | 3,118,0,327,3, | ||
14240 | 119,0,327,3,120, | ||
14241 | 0,327,3,121,0, | ||
14242 | 327,3,122,0,327, | ||
14243 | 3,48,0,327,3, | ||
14244 | 49,0,327,3,50, | ||
14245 | 0,327,3,51,0, | ||
14246 | 327,3,52,0,327, | ||
14247 | 3,53,0,327,3, | ||
14248 | 54,0,327,3,55, | ||
14249 | 0,327,3,56,0, | ||
14250 | 327,3,57,0,327, | ||
14251 | 3,65,0,327,3, | ||
14252 | 66,0,327,3,67, | ||
14253 | 0,327,3,68,0, | ||
14254 | 327,3,69,0,327, | ||
14255 | 3,70,0,327,3, | ||
14256 | 71,0,327,3,72, | ||
14257 | 0,327,3,73,0, | ||
14258 | 327,3,74,0,327, | ||
14259 | 3,75,0,327,3, | ||
14260 | 76,0,327,3,77, | ||
14261 | 0,327,3,78,0, | ||
14262 | 327,3,79,0,327, | ||
14263 | 3,80,0,327,3, | ||
14264 | 81,0,327,3,82, | ||
14265 | 0,327,3,83,0, | ||
14266 | 327,3,84,0,327, | ||
14267 | 3,85,0,327,3, | ||
14268 | 86,0,327,3,87, | ||
14269 | 0,327,3,88,0, | ||
14270 | 327,3,89,0,327, | ||
14271 | 3,90,0,327,3, | ||
14272 | 95,0,327,3,97, | ||
14273 | 0,327,3,98,0, | ||
14274 | 327,3,99,0,327, | ||
14275 | 3,100,0,327,3, | ||
14276 | 101,0,327,3,102, | ||
14277 | 0,327,3,103,0, | ||
14278 | 327,3,104,0,327, | ||
14279 | 3,105,0,327,3, | ||
14280 | 106,0,327,3,107, | ||
14281 | 0,327,3,108,0, | ||
14282 | 327,1101,11,1,829, | ||
14283 | 0,330,1,-1,3, | ||
14284 | 102,0,327,3,103, | ||
14285 | 0,327,3,104,0, | ||
14286 | 327,3,105,0,327, | ||
14287 | 3,106,0,327,3, | ||
14288 | 107,0,327,3,108, | ||
14289 | 0,327,1102,11,1, | ||
14290 | 829,0,330,1,-1, | ||
14291 | 3,113,0,327,3, | ||
14292 | 114,0,327,3,115, | ||
14293 | 0,327,3,116,0, | ||
14294 | 327,3,117,0,327, | ||
14295 | 3,118,0,327,3, | ||
14296 | 119,0,327,3,120, | ||
14297 | 0,327,3,121,0, | ||
14298 | 327,3,122,0,327, | ||
14299 | 3,48,0,327,3, | ||
14300 | 49,0,327,3,50, | ||
14301 | 0,327,3,51,0, | ||
14302 | 327,3,52,0,327, | ||
14303 | 3,53,0,327,3, | ||
14304 | 54,0,327,3,55, | ||
14305 | 0,327,3,56,0, | ||
14306 | 327,3,57,0,327, | ||
14307 | 3,65,0,327,3, | ||
14308 | 66,0,327,3,67, | ||
14309 | 0,327,3,68,0, | ||
14310 | 327,3,69,0,327, | ||
14311 | 3,70,0,327,3, | ||
14312 | 71,0,327,3,72, | ||
14313 | 0,327,3,73,0, | ||
14314 | 327,3,74,0,327, | ||
14315 | 3,75,0,327,3, | ||
14316 | 76,0,327,3,77, | ||
14317 | 0,327,3,78,0, | ||
14318 | 327,3,79,0,327, | ||
14319 | 3,80,0,327,3, | ||
14320 | 81,0,327,3,82, | ||
14321 | 0,327,3,83,0, | ||
14322 | 327,3,84,0,327, | ||
14323 | 3,85,0,327,3, | ||
14324 | 86,0,327,3,87, | ||
14325 | 0,327,3,88,0, | ||
14326 | 327,3,89,0,327, | ||
14327 | 3,90,0,327,3, | ||
14328 | 95,0,327,3,97, | ||
14329 | 0,327,3,98,0, | ||
14330 | 327,3,99,0,327, | ||
14331 | 3,100,0,327,3, | ||
14332 | 101,0,327,3,102, | ||
14333 | 0,327,3,103,0, | ||
14334 | 327,3,104,0,327, | ||
14335 | 3,105,0,327,3, | ||
14336 | 106,0,327,3,107, | ||
14337 | 0,327,3,108,0, | ||
14338 | 327,1103,11,1,829, | ||
14339 | 0,330,1,-1,3, | ||
14340 | 97,0,327,3,98, | ||
14341 | 0,327,3,99,0, | ||
14342 | 327,3,100,0,327, | ||
14343 | 3,101,0,327,3, | ||
14344 | 102,0,327,3,103, | ||
14345 | 0,327,3,104,0, | ||
14346 | 327,3,105,0,327, | ||
14347 | 3,106,0,327,3, | ||
14348 | 107,0,327,3,108, | ||
14349 | 0,327,1104,11,1, | ||
14350 | 829,0,330,1,-1, | ||
14351 | 3,102,0,327,3, | ||
14352 | 103,0,327,3,104, | ||
14353 | 0,327,3,105,0, | ||
14354 | 327,3,106,0,327, | ||
14355 | 3,107,0,327,3, | ||
14356 | 108,0,327,1105,11, | ||
14357 | 1,829,0,330,1, | ||
14358 | -1,3,110,0,327, | ||
14359 | 3,111,0,327,3, | ||
14360 | 112,0,327,3,113, | ||
14361 | 0,327,3,114,0, | ||
14362 | 327,3,115,0,327, | ||
14363 | 3,116,0,327,3, | ||
14364 | 117,0,327,3,118, | ||
14365 | 0,327,3,119,0, | ||
14366 | 327,3,120,0,327, | ||
14367 | 3,121,0,327,3, | ||
14368 | 122,0,327,3,48, | ||
14369 | 0,327,3,49,0, | ||
14370 | 327,3,50,0,327, | ||
14371 | 3,51,0,327,3, | ||
14372 | 52,0,327,3,53, | ||
14373 | 0,327,3,54,0, | ||
14374 | 327,3,55,0,327, | ||
14375 | 3,56,0,327,3, | ||
14376 | 57,0,327,3,65, | ||
14377 | 0,327,3,66,0, | ||
14378 | 327,3,67,0,327, | ||
14379 | 3,68,0,327,3, | ||
14380 | 69,0,327,3,70, | ||
14381 | 0,327,3,71,0, | ||
14382 | 327,3,72,0,327, | ||
14383 | 3,73,0,327,3, | ||
14384 | 74,0,327,3,75, | ||
14385 | 0,327,3,76,0, | ||
14386 | 327,3,77,0,327, | ||
14387 | 3,78,0,327,3, | ||
14388 | 79,0,327,3,80, | ||
14389 | 0,327,3,81,0, | ||
14390 | 327,3,82,0,327, | ||
14391 | 3,83,0,327,3, | ||
14392 | 84,0,327,3,85, | ||
14393 | 0,327,3,86,0, | ||
14394 | 327,3,87,0,327, | ||
14395 | 3,88,0,327,3, | ||
14396 | 89,0,327,3,90, | ||
14397 | 0,327,3,95,0, | ||
14398 | 327,3,97,0,327, | ||
14399 | 3,98,0,327,3, | ||
14400 | 99,0,327,3,100, | ||
14401 | 0,327,3,101,0, | ||
14402 | 327,3,102,0,327, | ||
14403 | 3,103,0,327,3, | ||
14404 | 104,0,327,3,105, | ||
14405 | 0,327,3,106,0, | ||
14406 | 327,3,107,0,327, | ||
14407 | 3,108,0,327,1106, | ||
14408 | 11,1,829,0,330, | ||
14409 | 1,-1,3,106,0, | ||
14410 | 327,3,107,0,327, | ||
14411 | 3,108,0,327,1107, | ||
14412 | 11,1,829,0,330, | ||
14413 | 1,-1,3,117,0, | ||
14414 | 327,3,118,0,327, | ||
14415 | 3,119,0,327,3, | ||
14416 | 120,0,327,3,121, | ||
14417 | 0,327,3,122,0, | ||
14418 | 327,3,48,0,327, | ||
14419 | 3,49,0,327,3, | ||
14420 | 50,0,327,3,51, | ||
14421 | 0,327,3,52,0, | ||
14422 | 327,3,53,0,327, | ||
14423 | 3,54,0,327,3, | ||
14424 | 55,0,327,3,56, | ||
14425 | 0,327,3,57,0, | ||
14426 | 327,3,65,0,327, | ||
14427 | 3,66,0,327,3, | ||
14428 | 67,0,327,3,68, | ||
14429 | 0,327,3,69,0, | ||
14430 | 327,3,70,0,327, | ||
14431 | 3,71,0,327,3, | ||
14432 | 72,0,327,3,73, | ||
14433 | 0,327,3,74,0, | ||
14434 | 327,3,75,0,327, | ||
14435 | 3,76,0,327,3, | ||
14436 | 77,0,327,3,78, | ||
14437 | 0,327,3,79,0, | ||
14438 | 327,3,80,0,327, | ||
14439 | 3,81,0,327,3, | ||
14440 | 82,0,327,3,83, | ||
14441 | 0,327,3,84,0, | ||
14442 | 327,3,85,0,327, | ||
14443 | 3,86,0,327,3, | ||
14444 | 87,0,327,3,88, | ||
14445 | 0,327,3,89,0, | ||
14446 | 327,3,90,0,327, | ||
14447 | 3,95,0,327,3, | ||
14448 | 97,0,327,3,98, | ||
14449 | 0,327,3,99,0, | ||
14450 | 327,3,100,0,327, | ||
14451 | 3,101,0,327,3, | ||
14452 | 102,0,327,3,103, | ||
14453 | 0,327,3,104,0, | ||
14454 | 327,3,105,0,327, | ||
14455 | 3,106,0,327,3, | ||
14456 | 107,0,327,3,108, | ||
14457 | 0,327,1108,11,1, | ||
14458 | 829,0,330,1,-1, | ||
14459 | 3,97,0,327,3, | ||
14460 | 98,0,327,3,99, | ||
14461 | 0,327,3,100,0, | ||
14462 | 327,3,101,0,327, | ||
14463 | 3,102,0,327,3, | ||
14464 | 103,0,327,3,104, | ||
14465 | 0,327,3,105,0, | ||
14466 | 327,3,106,0,327, | ||
14467 | 3,107,0,327,3, | ||
14468 | 108,0,327,1109,11, | ||
14469 | 1,829,0,330,1, | ||
14470 | -1,3,111,0,327, | ||
14471 | 3,112,0,327,3, | ||
14472 | 113,0,327,3,114, | ||
14473 | 0,327,3,115,0, | ||
14474 | 327,3,116,0,327, | ||
14475 | 3,117,0,327,3, | ||
14476 | 118,0,327,3,119, | ||
14477 | 0,327,3,120,0, | ||
14478 | 327,3,121,0,327, | ||
14479 | 3,122,0,327,3, | ||
14480 | 48,0,327,3,49, | ||
14481 | 0,327,3,50,0, | ||
14482 | 327,3,51,0,327, | ||
14483 | 3,52,0,327,3, | ||
14484 | 53,0,327,3,54, | ||
14485 | 0,327,3,55,0, | ||
14486 | 327,3,56,0,327, | ||
14487 | 3,57,0,327,3, | ||
14488 | 65,0,327,3,66, | ||
14489 | 0,327,3,67,0, | ||
14490 | 327,3,68,0,327, | ||
14491 | 3,69,0,327,3, | ||
14492 | 70,0,327,3,71, | ||
14493 | 0,327,3,72,0, | ||
14494 | 327,3,73,0,327, | ||
14495 | 3,74,0,327,3, | ||
14496 | 75,0,327,3,76, | ||
14497 | 0,327,3,77,0, | ||
14498 | 327,3,78,0,327, | ||
14499 | 3,79,0,327,3, | ||
14500 | 80,0,327,3,81, | ||
14501 | 0,327,3,82,0, | ||
14502 | 327,3,83,0,327, | ||
14503 | 3,84,0,327,3, | ||
14504 | 85,0,327,3,86, | ||
14505 | 0,327,3,87,0, | ||
14506 | 327,3,88,0,327, | ||
14507 | 3,89,0,327,3, | ||
14508 | 90,0,327,3,95, | ||
14509 | 0,327,3,97,0, | ||
14510 | 327,3,98,0,327, | ||
14511 | 3,99,0,327,3, | ||
14512 | 100,0,327,3,101, | ||
14513 | 0,327,3,102,0, | ||
14514 | 327,3,103,0,327, | ||
14515 | 3,104,0,327,3, | ||
14516 | 105,0,327,3,106, | ||
14517 | 0,327,3,107,0, | ||
14518 | 327,3,108,0,327, | ||
14519 | 1110,11,1,829,0, | ||
14520 | 330,1,-1,3,118, | ||
14521 | 0,327,3,119,0, | ||
14522 | 327,3,120,0,327, | ||
14523 | 3,121,0,327,3, | ||
14524 | 122,0,327,3,48, | ||
14525 | 0,327,3,49,0, | ||
14526 | 327,3,50,0,327, | ||
14527 | 3,51,0,327,3, | ||
14528 | 52,0,327,3,53, | ||
14529 | 0,327,3,54,0, | ||
14530 | 327,3,55,0,327, | ||
14531 | 3,56,0,327,3, | ||
14532 | 57,0,327,3,65, | ||
14533 | 0,327,3,66,0, | ||
14534 | 327,3,67,0,327, | ||
14535 | 3,68,0,327,3, | ||
14536 | 69,0,327,3,70, | ||
14537 | 0,327,3,71,0, | ||
14538 | 327,3,72,0,327, | ||
14539 | 3,73,0,327,3, | ||
14540 | 74,0,327,3,75, | ||
14541 | 0,327,3,76,0, | ||
14542 | 327,3,77,0,327, | ||
14543 | 3,78,0,327,3, | ||
14544 | 79,0,327,3,80, | ||
14545 | 0,327,3,81,0, | ||
14546 | 327,3,82,0,327, | ||
14547 | 3,83,0,327,3, | ||
14548 | 84,0,327,3,85, | ||
14549 | 0,327,3,86,0, | ||
14550 | 327,3,87,0,327, | ||
14551 | 3,88,0,327,3, | ||
14552 | 89,0,327,3,90, | ||
14553 | 0,327,3,95,0, | ||
14554 | 327,3,97,0,327, | ||
14555 | 3,98,0,327,3, | ||
14556 | 99,0,327,3,100, | ||
14557 | 0,327,3,101,0, | ||
14558 | 1111,12,1,12932,1112, | ||
14559 | 5,63,3,109,0, | ||
14560 | 1113,12,1,12960,1114, | ||
14561 | 5,63,3,109,0, | ||
14562 | 327,3,110,0,327, | ||
14563 | 3,111,0,1115,12, | ||
14564 | 1,12990,1116,5,63, | ||
14565 | 3,109,0,327,3, | ||
14566 | 110,0,327,3,111, | ||
14567 | 0,327,3,112,0, | ||
14568 | 327,3,113,0,327, | ||
14569 | 3,114,0,327,3, | ||
14570 | 115,0,327,3,116, | ||
14571 | 0,1117,12,1,13025, | ||
14572 | 1118,5,63,3,109, | ||
14573 | 0,327,3,110,0, | ||
14574 | 327,3,111,0,327, | ||
14575 | 3,112,0,327,3, | ||
14576 | 113,0,327,3,114, | ||
14577 | 0,327,3,115,0, | ||
14578 | 327,3,116,0,327, | ||
14579 | 3,117,0,327,3, | ||
14580 | 118,0,327,3,119, | ||
14581 | 0,327,3,120,0, | ||
14582 | 327,3,121,0,327, | ||
14583 | 3,122,0,327,3, | ||
14584 | 48,0,327,3,49, | ||
14585 | 0,327,3,50,0, | ||
14586 | 327,3,51,0,327, | ||
14587 | 3,52,0,327,3, | ||
14588 | 53,0,327,3,54, | ||
14589 | 0,327,3,55,0, | ||
14590 | 327,3,56,0,327, | ||
14591 | 3,57,0,327,3, | ||
14592 | 65,0,327,3,66, | ||
14593 | 0,327,3,67,0, | ||
14594 | 327,3,68,0,327, | ||
14595 | 3,69,0,327,3, | ||
14596 | 70,0,327,3,71, | ||
14597 | 0,327,3,72,0, | ||
14598 | 327,3,73,0,327, | ||
14599 | 3,74,0,327,3, | ||
14600 | 75,0,327,3,76, | ||
14601 | 0,327,3,77,0, | ||
14602 | 327,3,78,0,327, | ||
14603 | 3,79,0,327,3, | ||
14604 | 80,0,327,3,81, | ||
14605 | 0,327,3,82,0, | ||
14606 | 327,3,83,0,327, | ||
14607 | 3,84,0,327,3, | ||
14608 | 85,0,327,3,86, | ||
14609 | 0,327,3,87,0, | ||
14610 | 327,3,88,0,327, | ||
14611 | 3,89,0,327,3, | ||
14612 | 90,0,327,3,95, | ||
14613 | 0,327,3,97,0, | ||
14614 | 327,3,98,0,327, | ||
14615 | 3,99,0,327,3, | ||
14616 | 100,0,327,3,101, | ||
14617 | 0,1119,12,1,13072, | ||
14618 | 1120,5,63,3,109, | ||
14619 | 0,327,3,110,0, | ||
14620 | 327,3,111,0,327, | ||
14621 | 3,112,0,327,3, | ||
14622 | 113,0,327,3,114, | ||
14623 | 0,327,3,115,0, | ||
14624 | 327,3,116,0,327, | ||
14625 | 3,117,0,327,3, | ||
14626 | 118,0,327,3,119, | ||
14627 | 0,327,3,120,0, | ||
14628 | 327,3,121,0,327, | ||
14629 | 3,122,0,327,3, | ||
14630 | 48,0,327,3,49, | ||
14631 | 0,327,3,50,0, | ||
14632 | 327,3,51,0,327, | ||
14633 | 3,52,0,327,3, | ||
14634 | 53,0,327,3,54, | ||
14635 | 0,327,3,55,0, | ||
14636 | 327,3,56,0,327, | ||
14637 | 3,57,0,327,3, | ||
14638 | 65,0,327,3,66, | ||
14639 | 0,327,3,67,0, | ||
14640 | 327,3,68,0,327, | ||
14641 | 3,69,0,327,3, | ||
14642 | 70,0,327,3,71, | ||
14643 | 0,327,3,72,0, | ||
14644 | 327,3,73,0,327, | ||
14645 | 3,74,0,327,3, | ||
14646 | 75,0,327,3,76, | ||
14647 | 0,327,3,77,0, | ||
14648 | 327,3,78,0,327, | ||
14649 | 3,79,0,327,3, | ||
14650 | 80,0,327,3,81, | ||
14651 | 0,327,3,82,0, | ||
14652 | 327,3,83,0,327, | ||
14653 | 3,84,0,327,3, | ||
14654 | 85,0,327,3,86, | ||
14655 | 0,327,3,87,0, | ||
14656 | 327,3,88,0,327, | ||
14657 | 3,89,0,327,3, | ||
14658 | 90,0,327,3,95, | ||
14659 | 0,1121,12,1,13158, | ||
14660 | 1122,5,63,3,109, | ||
14661 | 0,327,3,110,0, | ||
14662 | 327,3,111,0,327, | ||
14663 | 3,112,0,327,3, | ||
14664 | 113,0,327,3,114, | ||
14665 | 0,327,3,115,0, | ||
14666 | 327,3,116,0,327, | ||
14667 | 3,117,0,327,3, | ||
14668 | 118,0,327,3,119, | ||
14669 | 0,327,3,120,0, | ||
14670 | 327,3,121,0,327, | ||
14671 | 3,122,0,327,3, | ||
14672 | 48,0,327,3,49, | ||
14673 | 0,327,3,50,0, | ||
14674 | 327,3,51,0,327, | ||
14675 | 3,52,0,327,3, | ||
14676 | 53,0,327,3,54, | ||
14677 | 0,327,3,55,0, | ||
14678 | 327,3,56,0,327, | ||
14679 | 3,57,0,327,3, | ||
14680 | 65,0,327,3,66, | ||
14681 | 0,327,3,67,0, | ||
14682 | 327,3,68,0,327, | ||
14683 | 3,69,0,327,3, | ||
14684 | 70,0,327,3,71, | ||
14685 | 0,327,3,72,0, | ||
14686 | 327,3,73,0,327, | ||
14687 | 3,74,0,327,3, | ||
14688 | 75,0,327,3,76, | ||
14689 | 0,327,3,77,0, | ||
14690 | 327,3,78,0,327, | ||
14691 | 3,79,0,327,3, | ||
14692 | 80,0,327,3,81, | ||
14693 | 0,327,3,82,0, | ||
14694 | 327,3,83,0,327, | ||
14695 | 3,84,0,327,3, | ||
14696 | 85,0,327,3,86, | ||
14697 | 0,327,3,87,0, | ||
14698 | 327,3,88,0,327, | ||
14699 | 3,89,0,327,3, | ||
14700 | 90,0,327,3,95, | ||
14701 | 0,327,3,97,0, | ||
14702 | 327,3,98,0,327, | ||
14703 | 3,99,0,327,3, | ||
14704 | 100,0,1123,12,1, | ||
14705 | 13204,1124,5,63,3, | ||
14706 | 109,0,327,3,110, | ||
14707 | 0,327,3,111,0, | ||
14708 | 327,3,112,0,327, | ||
14709 | 3,113,0,327,3, | ||
14710 | 114,0,327,3,115, | ||
14711 | 0,327,3,116,0, | ||
14712 | 327,3,117,0,327, | ||
14713 | 3,118,0,327,3, | ||
14714 | 119,0,327,3,120, | ||
14715 | 0,327,3,121,0, | ||
14716 | 327,3,122,0,327, | ||
14717 | 3,48,0,327,3, | ||
14718 | 49,0,327,3,50, | ||
14719 | 0,327,3,51,0, | ||
14720 | 327,3,52,0,327, | ||
14721 | 3,53,0,327,3, | ||
14722 | 54,0,327,3,55, | ||
14723 | 0,327,3,56,0, | ||
14724 | 327,3,57,0,327, | ||
14725 | 3,65,0,327,3, | ||
14726 | 66,0,327,3,67, | ||
14727 | 0,327,3,68,0, | ||
14728 | 327,3,69,0,327, | ||
14729 | 3,70,0,327,3, | ||
14730 | 71,0,327,3,72, | ||
14731 | 0,327,3,73,0, | ||
14732 | 327,3,74,0,327, | ||
14733 | 3,75,0,327,3, | ||
14734 | 76,0,327,3,77, | ||
14735 | 0,327,3,78,0, | ||
14736 | 327,3,79,0,327, | ||
14737 | 3,80,0,327,3, | ||
14738 | 81,0,327,3,82, | ||
14739 | 0,327,3,83,0, | ||
14740 | 327,3,84,0,327, | ||
14741 | 3,85,0,327,3, | ||
14742 | 86,0,327,3,87, | ||
14743 | 0,327,3,88,0, | ||
14744 | 327,3,89,0,327, | ||
14745 | 3,90,0,327,3, | ||
14746 | 95,0,327,3,97, | ||
14747 | 0,1125,12,1,13247, | ||
14748 | 1126,5,63,3,109, | ||
14749 | 0,327,3,110,0, | ||
14750 | 327,3,111,0,327, | ||
14751 | 3,112,0,327,3, | ||
14752 | 113,0,327,3,114, | ||
14753 | 0,327,3,115,0, | ||
14754 | 327,3,116,0,1127, | ||
14755 | 12,1,13282,1128,5, | ||
14756 | 63,3,109,0,327, | ||
14757 | 3,110,0,327,3, | ||
14758 | 111,0,327,3,112, | ||
14759 | 0,327,3,113,0, | ||
14760 | 327,3,114,0,327, | ||
14761 | 3,115,0,327,3, | ||
14762 | 116,0,327,3,117, | ||
14763 | 0,327,3,118,0, | ||
14764 | 327,3,119,0,327, | ||
14765 | 3,120,0,327,3, | ||
14766 | 121,0,327,3,122, | ||
14767 | 0,327,3,48,0, | ||
14768 | 327,3,49,0,327, | ||
14769 | 3,50,0,327,3, | ||
14770 | 51,0,327,3,52, | ||
14771 | 0,327,3,53,0, | ||
14772 | 327,3,54,0,327, | ||
14773 | 3,55,0,327,3, | ||
14774 | 56,0,327,3,57, | ||
14775 | 0,327,3,65,0, | ||
14776 | 327,3,66,0,327, | ||
14777 | 3,67,0,327,3, | ||
14778 | 68,0,327,3,69, | ||
14779 | 0,327,3,70,0, | ||
14780 | 327,3,71,0,327, | ||
14781 | 3,72,0,327,3, | ||
14782 | 73,0,327,3,74, | ||
14783 | 0,327,3,75,0, | ||
14784 | 327,3,76,0,327, | ||
14785 | 3,77,0,327,3, | ||
14786 | 78,0,327,3,79, | ||
14787 | 0,327,3,80,0, | ||
14788 | 327,3,81,0,327, | ||
14789 | 3,82,0,327,3, | ||
14790 | 83,0,327,3,84, | ||
14791 | 0,327,3,85,0, | ||
14792 | 327,3,86,0,327, | ||
14793 | 3,87,0,327,3, | ||
14794 | 88,0,327,3,89, | ||
14795 | 0,327,3,90,0, | ||
14796 | 327,3,95,0,327, | ||
14797 | 3,97,0,1129,12, | ||
14798 | 1,13325,1130,5,63, | ||
14799 | 3,109,0,327,3, | ||
14800 | 110,0,327,3,111, | ||
14801 | 0,327,3,112,0, | ||
14802 | 327,3,113,0,327, | ||
14803 | 3,114,0,327,3, | ||
14804 | 115,0,327,3,116, | ||
14805 | 0,327,3,117,0, | ||
14806 | 327,3,118,0,327, | ||
14807 | 3,119,0,327,3, | ||
14808 | 120,0,327,3,121, | ||
14809 | 0,327,3,122,0, | ||
14810 | 327,3,48,0,327, | ||
14811 | 3,49,0,327,3, | ||
14812 | 50,0,327,3,51, | ||
14813 | 0,327,3,52,0, | ||
14814 | 327,3,53,0,327, | ||
14815 | 3,54,0,327,3, | ||
14816 | 55,0,327,3,56, | ||
14817 | 0,327,3,57,0, | ||
14818 | 327,3,65,0,327, | ||
14819 | 3,66,0,327,3, | ||
14820 | 67,0,327,3,68, | ||
14821 | 0,327,3,69,0, | ||
14822 | 327,3,70,0,327, | ||
14823 | 3,71,0,327,3, | ||
14824 | 72,0,327,3,73, | ||
14825 | 0,327,3,74,0, | ||
14826 | 327,3,75,0,327, | ||
14827 | 3,76,0,327,3, | ||
14828 | 77,0,327,3,78, | ||
14829 | 0,327,3,79,0, | ||
14830 | 327,3,80,0,327, | ||
14831 | 3,81,0,327,3, | ||
14832 | 82,0,327,3,83, | ||
14833 | 0,327,3,84,0, | ||
14834 | 327,3,85,0,327, | ||
14835 | 3,86,0,327,3, | ||
14836 | 87,0,327,3,88, | ||
14837 | 0,327,3,89,0, | ||
14838 | 327,3,90,0,327, | ||
14839 | 3,95,0,327,3, | ||
14840 | 97,0,327,3,98, | ||
14841 | 0,327,3,99,0, | ||
14842 | 327,3,100,0,327, | ||
14843 | 3,101,0,327,3, | ||
14844 | 102,0,327,3,103, | ||
14845 | 0,327,3,104,0, | ||
14846 | 327,3,105,0,327, | ||
14847 | 3,106,0,327,3, | ||
14848 | 107,0,327,3,108, | ||
14849 | 0,327,1131,11,1, | ||
14850 | 705,0,1132,4,34, | ||
14851 | 82,0,69,0,77, | ||
14852 | 0,79,0,84,0, | ||
14853 | 69,0,95,0,68, | ||
14854 | 0,65,0,84,0, | ||
14855 | 65,0,95,0,69, | ||
14856 | 0,86,0,69,0, | ||
14857 | 78,0,84,0,1, | ||
14858 | -1,3,98,0,327, | ||
14859 | 3,99,0,327,3, | ||
14860 | 100,0,327,3,101, | ||
14861 | 0,327,3,102,0, | ||
14862 | 327,3,103,0,327, | ||
14863 | 3,104,0,327,3, | ||
14864 | 105,0,327,3,106, | ||
14865 | 0,327,3,107,0, | ||
14866 | 327,3,108,0,327, | ||
14867 | 1133,11,1,829,0, | ||
14868 | 330,1,-1,3,117, | ||
14869 | 0,327,3,118,0, | ||
14870 | 327,3,119,0,327, | ||
14871 | 3,120,0,327,3, | ||
14872 | 121,0,327,3,122, | ||
14873 | 0,327,3,48,0, | ||
14874 | 327,3,49,0,327, | ||
14875 | 3,50,0,327,3, | ||
14876 | 51,0,327,3,52, | ||
14877 | 0,327,3,53,0, | ||
14878 | 327,3,54,0,327, | ||
14879 | 3,55,0,327,3, | ||
14880 | 56,0,327,3,57, | ||
14881 | 0,327,3,65,0, | ||
14882 | 327,3,66,0,327, | ||
14883 | 3,67,0,327,3, | ||
14884 | 68,0,327,3,69, | ||
14885 | 0,327,3,70,0, | ||
14886 | 327,3,71,0,327, | ||
14887 | 3,72,0,327,3, | ||
14888 | 73,0,327,3,74, | ||
14889 | 0,327,3,75,0, | ||
14890 | 327,3,76,0,327, | ||
14891 | 3,77,0,327,3, | ||
14892 | 78,0,327,3,79, | ||
14893 | 0,327,3,80,0, | ||
14894 | 327,3,81,0,327, | ||
14895 | 3,82,0,327,3, | ||
14896 | 83,0,327,3,84, | ||
14897 | 0,327,3,85,0, | ||
14898 | 327,3,86,0,327, | ||
14899 | 3,87,0,327,3, | ||
14900 | 88,0,327,3,89, | ||
14901 | 0,327,3,90,0, | ||
14902 | 327,3,95,0,327, | ||
14903 | 3,97,0,327,3, | ||
14904 | 98,0,327,3,99, | ||
14905 | 0,327,3,100,0, | ||
14906 | 327,3,101,0,327, | ||
14907 | 3,102,0,327,3, | ||
14908 | 103,0,327,3,104, | ||
14909 | 0,327,3,105,0, | ||
14910 | 327,3,106,0,327, | ||
14911 | 3,107,0,327,3, | ||
14912 | 108,0,327,1134,11, | ||
14913 | 1,829,0,330,1, | ||
14914 | -1,3,98,0,327, | ||
14915 | 3,99,0,327,3, | ||
14916 | 100,0,327,3,101, | ||
14917 | 0,327,3,102,0, | ||
14918 | 327,3,103,0,327, | ||
14919 | 3,104,0,327,3, | ||
14920 | 105,0,327,3,106, | ||
14921 | 0,327,3,107,0, | ||
14922 | 327,3,108,0,327, | ||
14923 | 1135,11,1,829,0, | ||
14924 | 330,1,-1,3,101, | ||
14925 | 0,327,3,102,0, | ||
14926 | 327,3,103,0,327, | ||
14927 | 3,104,0,327,3, | ||
14928 | 105,0,327,3,106, | ||
14929 | 0,327,3,107,0, | ||
14930 | 327,3,108,0,327, | ||
14931 | 1136,11,1,829,0, | ||
14932 | 330,1,-1,3,97, | ||
14933 | 0,327,3,98,0, | ||
14934 | 327,3,99,0,327, | ||
14935 | 3,100,0,327,3, | ||
14936 | 101,0,327,3,102, | ||
14937 | 0,327,3,103,0, | ||
14938 | 327,3,104,0,327, | ||
14939 | 3,105,0,327,3, | ||
14940 | 106,0,327,3,107, | ||
14941 | 0,327,3,108,0, | ||
14942 | 327,1137,11,1,829, | ||
14943 | 0,330,1,-1,3, | ||
14944 | 102,0,327,3,103, | ||
14945 | 0,327,3,104,0, | ||
14946 | 327,3,105,0,327, | ||
14947 | 3,106,0,327,3, | ||
14948 | 107,0,327,3,108, | ||
14949 | 0,327,1138,11,1, | ||
14950 | 829,0,330,1,-1, | ||
14951 | 3,117,0,327,3, | ||
14952 | 118,0,327,3,119, | ||
14953 | 0,327,3,120,0, | ||
14954 | 327,3,121,0,327, | ||
14955 | 3,122,0,327,3, | ||
14956 | 48,0,327,3,49, | ||
14957 | 0,327,3,50,0, | ||
14958 | 327,3,51,0,327, | ||
14959 | 3,52,0,327,3, | ||
14960 | 53,0,327,3,54, | ||
14961 | 0,327,3,55,0, | ||
14962 | 327,3,56,0,327, | ||
14963 | 3,57,0,327,3, | ||
14964 | 65,0,327,3,66, | ||
14965 | 0,327,3,67,0, | ||
14966 | 327,3,68,0,327, | ||
14967 | 3,69,0,327,3, | ||
14968 | 70,0,327,3,71, | ||
14969 | 0,327,3,72,0, | ||
14970 | 327,3,73,0,327, | ||
14971 | 3,74,0,327,3, | ||
14972 | 75,0,327,3,76, | ||
14973 | 0,327,3,77,0, | ||
14974 | 327,3,78,0,327, | ||
14975 | 3,79,0,327,3, | ||
14976 | 80,0,327,3,81, | ||
14977 | 0,327,3,82,0, | ||
14978 | 327,3,83,0,327, | ||
14979 | 3,84,0,327,3, | ||
14980 | 85,0,327,3,86, | ||
14981 | 0,327,3,87,0, | ||
14982 | 327,3,88,0,327, | ||
14983 | 3,89,0,327,3, | ||
14984 | 90,0,327,3,95, | ||
14985 | 0,327,3,97,0, | ||
14986 | 327,3,98,0,327, | ||
14987 | 3,99,0,327,3, | ||
14988 | 100,0,327,3,101, | ||
14989 | 0,327,3,102,0, | ||
14990 | 327,3,103,0,327, | ||
14991 | 3,104,0,327,3, | ||
14992 | 105,0,327,3,106, | ||
14993 | 0,327,3,107,0, | ||
14994 | 327,3,108,0,327, | ||
14995 | 1139,11,1,829,0, | ||
14996 | 330,1,-1,3,112, | ||
14997 | 0,327,3,113,0, | ||
14998 | 327,3,114,0,327, | ||
14999 | 3,115,0,327,3, | ||
15000 | 116,0,327,3,117, | ||
15001 | 0,327,3,118,0, | ||
15002 | 327,3,119,0,327, | ||
15003 | 3,120,0,327,3, | ||
15004 | 121,0,327,3,122, | ||
15005 | 0,327,3,48,0, | ||
15006 | 327,3,49,0,327, | ||
15007 | 3,50,0,327,3, | ||
15008 | 51,0,327,3,52, | ||
15009 | 0,327,3,53,0, | ||
15010 | 327,3,54,0,327, | ||
15011 | 3,55,0,327,3, | ||
15012 | 56,0,327,3,57, | ||
15013 | 0,327,3,65,0, | ||
15014 | 327,3,66,0,327, | ||
15015 | 3,67,0,327,3, | ||
15016 | 68,0,327,3,69, | ||
15017 | 0,327,3,70,0, | ||
15018 | 327,3,71,0,327, | ||
15019 | 3,72,0,327,3, | ||
15020 | 73,0,327,3,74, | ||
15021 | 0,327,3,75,0, | ||
15022 | 327,3,76,0,327, | ||
15023 | 3,77,0,327,3, | ||
15024 | 78,0,327,3,79, | ||
15025 | 0,327,3,80,0, | ||
15026 | 327,3,81,0,327, | ||
15027 | 3,82,0,327,3, | ||
15028 | 83,0,327,3,84, | ||
15029 | 0,327,3,85,0, | ||
15030 | 327,3,86,0,327, | ||
15031 | 3,87,0,327,3, | ||
15032 | 88,0,327,3,89, | ||
15033 | 0,327,3,90,0, | ||
15034 | 327,3,95,0,327, | ||
15035 | 3,97,0,327,3, | ||
15036 | 98,0,327,3,99, | ||
15037 | 0,327,3,100,0, | ||
15038 | 327,3,101,0,327, | ||
15039 | 3,102,0,327,3, | ||
15040 | 103,0,327,3,104, | ||
15041 | 0,327,3,105,0, | ||
15042 | 327,3,106,0,327, | ||
15043 | 3,107,0,327,3, | ||
15044 | 108,0,327,1140,11, | ||
15045 | 1,829,0,330,1, | ||
15046 | -1,3,110,0,327, | ||
15047 | 3,111,0,327,3, | ||
15048 | 112,0,327,3,113, | ||
15049 | 0,327,3,114,0, | ||
15050 | 327,3,115,0,327, | ||
15051 | 3,116,0,1141,12, | ||
15052 | 1,14047,1142,5,63, | ||
15053 | 3,109,0,327,3, | ||
15054 | 110,0,327,3,111, | ||
15055 | 0,327,3,112,0, | ||
15056 | 327,3,113,0,327, | ||
15057 | 3,114,0,327,3, | ||
15058 | 115,0,327,3,116, | ||
15059 | 0,327,3,117,0, | ||
15060 | 1143,12,1,14083,1144, | ||
15061 | 5,63,3,109,0, | ||
15062 | 327,3,110,0,327, | ||
15063 | 3,111,0,327,3, | ||
15064 | 112,0,327,3,113, | ||
15065 | 0,327,3,114,0, | ||
15066 | 1145,12,1,14116,1146, | ||
15067 | 5,63,3,109,0, | ||
15068 | 327,3,110,0,1147, | ||
15069 | 12,1,14145,1148,5, | ||
15070 | 63,3,109,0,327, | ||
15071 | 3,110,0,327,3, | ||
15072 | 111,0,327,3,112, | ||
15073 | 0,327,3,113,0, | ||
15074 | 327,3,114,0,327, | ||
15075 | 3,115,0,327,3, | ||
15076 | 116,0,327,3,117, | ||
15077 | 0,327,3,118,0, | ||
15078 | 327,3,119,0,327, | ||
15079 | 3,120,0,327,3, | ||
15080 | 121,0,327,3,122, | ||
15081 | 0,327,3,48,0, | ||
15082 | 327,3,49,0,327, | ||
15083 | 3,50,0,327,3, | ||
15084 | 51,0,327,3,52, | ||
15085 | 0,327,3,53,0, | ||
15086 | 327,3,54,0,327, | ||
15087 | 3,55,0,327,3, | ||
15088 | 56,0,327,3,57, | ||
15089 | 0,327,3,65,0, | ||
15090 | 327,3,66,0,327, | ||
15091 | 3,67,0,327,3, | ||
15092 | 68,0,327,3,69, | ||
15093 | 0,327,3,70,0, | ||
15094 | 327,3,71,0,327, | ||
15095 | 3,72,0,327,3, | ||
15096 | 73,0,327,3,74, | ||
15097 | 0,327,3,75,0, | ||
15098 | 327,3,76,0,327, | ||
15099 | 3,77,0,327,3, | ||
15100 | 78,0,327,3,79, | ||
15101 | 0,327,3,80,0, | ||
15102 | 327,3,81,0,327, | ||
15103 | 3,82,0,327,3, | ||
15104 | 83,0,327,3,84, | ||
15105 | 0,327,3,85,0, | ||
15106 | 327,3,86,0,327, | ||
15107 | 3,87,0,327,3, | ||
15108 | 88,0,327,3,89, | ||
15109 | 0,327,3,90,0, | ||
15110 | 327,3,95,0,327, | ||
15111 | 3,97,0,327,3, | ||
15112 | 98,0,327,3,99, | ||
15113 | 0,327,3,100,0, | ||
15114 | 327,3,101,0,327, | ||
15115 | 3,102,0,327,3, | ||
15116 | 103,0,327,3,104, | ||
15117 | 0,327,3,105,0, | ||
15118 | 327,3,106,0,327, | ||
15119 | 3,107,0,327,3, | ||
15120 | 108,0,327,1149,11, | ||
15121 | 1,273,0,1150,4, | ||
15122 | 12,82,0,69,0, | ||
15123 | 84,0,85,0,82, | ||
15124 | 0,78,0,1,-1, | ||
15125 | 3,111,0,327,3, | ||
15126 | 112,0,327,3,113, | ||
15127 | 0,327,3,114,0, | ||
15128 | 327,3,115,0,327, | ||
15129 | 3,116,0,327,3, | ||
15130 | 117,0,327,3,118, | ||
15131 | 0,327,3,119,0, | ||
15132 | 327,3,120,0,327, | ||
15133 | 3,121,0,327,3, | ||
15134 | 122,0,327,3,48, | ||
15135 | 0,327,3,49,0, | ||
15136 | 327,3,50,0,327, | ||
15137 | 3,51,0,327,3, | ||
15138 | 52,0,327,3,53, | ||
15139 | 0,327,3,54,0, | ||
15140 | 327,3,55,0,327, | ||
15141 | 3,56,0,327,3, | ||
15142 | 57,0,327,3,65, | ||
15143 | 0,327,3,66,0, | ||
15144 | 327,3,67,0,327, | ||
15145 | 3,68,0,327,3, | ||
15146 | 69,0,327,3,70, | ||
15147 | 0,327,3,71,0, | ||
15148 | 327,3,72,0,327, | ||
15149 | 3,73,0,327,3, | ||
15150 | 74,0,327,3,75, | ||
15151 | 0,327,3,76,0, | ||
15152 | 327,3,77,0,327, | ||
15153 | 3,78,0,327,3, | ||
15154 | 79,0,327,3,80, | ||
15155 | 0,327,3,81,0, | ||
15156 | 327,3,82,0,327, | ||
15157 | 3,83,0,327,3, | ||
15158 | 84,0,327,3,85, | ||
15159 | 0,327,3,86,0, | ||
15160 | 327,3,87,0,327, | ||
15161 | 3,88,0,327,3, | ||
15162 | 89,0,327,3,90, | ||
15163 | 0,327,3,95,0, | ||
15164 | 327,3,97,0,327, | ||
15165 | 3,98,0,327,3, | ||
15166 | 99,0,327,3,100, | ||
15167 | 0,327,3,101,0, | ||
15168 | 327,3,102,0,327, | ||
15169 | 3,103,0,327,3, | ||
15170 | 104,0,327,3,105, | ||
15171 | 0,327,3,106,0, | ||
15172 | 327,3,107,0,327, | ||
15173 | 3,108,0,327,1151, | ||
15174 | 11,1,829,0,330, | ||
15175 | 1,-1,3,115,0, | ||
15176 | 327,3,116,0,327, | ||
15177 | 3,117,0,327,3, | ||
15178 | 118,0,327,3,119, | ||
15179 | 0,327,3,120,0, | ||
15180 | 327,3,121,0,327, | ||
15181 | 3,122,0,327,3, | ||
15182 | 48,0,327,3,49, | ||
15183 | 0,327,3,50,0, | ||
15184 | 327,3,51,0,327, | ||
15185 | 3,52,0,327,3, | ||
15186 | 53,0,327,3,54, | ||
15187 | 0,327,3,55,0, | ||
15188 | 327,3,56,0,327, | ||
15189 | 3,57,0,327,3, | ||
15190 | 65,0,327,3,66, | ||
15191 | 0,327,3,67,0, | ||
15192 | 327,3,68,0,327, | ||
15193 | 3,69,0,327,3, | ||
15194 | 70,0,327,3,71, | ||
15195 | 0,327,3,72,0, | ||
15196 | 327,3,73,0,327, | ||
15197 | 3,74,0,327,3, | ||
15198 | 75,0,327,3,76, | ||
15199 | 0,327,3,77,0, | ||
15200 | 327,3,78,0,327, | ||
15201 | 3,79,0,327,3, | ||
15202 | 80,0,327,3,81, | ||
15203 | 0,327,3,82,0, | ||
15204 | 327,3,83,0,327, | ||
15205 | 3,84,0,327,3, | ||
15206 | 85,0,327,3,86, | ||
15207 | 0,327,3,87,0, | ||
15208 | 327,3,88,0,327, | ||
15209 | 3,89,0,327,3, | ||
15210 | 90,0,327,3,95, | ||
15211 | 0,327,3,97,0, | ||
15212 | 327,3,98,0,327, | ||
15213 | 3,99,0,327,3, | ||
15214 | 100,0,327,3,101, | ||
15215 | 0,327,3,102,0, | ||
15216 | 327,3,103,0,327, | ||
15217 | 3,104,0,327,3, | ||
15218 | 105,0,327,3,106, | ||
15219 | 0,327,3,107,0, | ||
15220 | 327,3,108,0,327, | ||
15221 | 1152,11,1,829,0, | ||
15222 | 330,1,-1,3,118, | ||
15223 | 0,327,3,119,0, | ||
15224 | 327,3,120,0,327, | ||
15225 | 3,121,0,327,3, | ||
15226 | 122,0,327,3,48, | ||
15227 | 0,327,3,49,0, | ||
15228 | 327,3,50,0,327, | ||
15229 | 3,51,0,327,3, | ||
15230 | 52,0,327,3,53, | ||
15231 | 0,327,3,54,0, | ||
15232 | 327,3,55,0,327, | ||
15233 | 3,56,0,327,3, | ||
15234 | 57,0,327,3,65, | ||
15235 | 0,327,3,66,0, | ||
15236 | 327,3,67,0,327, | ||
15237 | 3,68,0,327,3, | ||
15238 | 69,0,327,3,70, | ||
15239 | 0,327,3,71,0, | ||
15240 | 327,3,72,0,327, | ||
15241 | 3,73,0,327,3, | ||
15242 | 74,0,327,3,75, | ||
15243 | 0,327,3,76,0, | ||
15244 | 327,3,77,0,327, | ||
15245 | 3,78,0,327,3, | ||
15246 | 79,0,327,3,80, | ||
15247 | 0,327,3,81,0, | ||
15248 | 327,3,82,0,327, | ||
15249 | 3,83,0,327,3, | ||
15250 | 84,0,327,3,85, | ||
15251 | 0,327,3,86,0, | ||
15252 | 327,3,87,0,327, | ||
15253 | 3,88,0,327,3, | ||
15254 | 89,0,327,3,90, | ||
15255 | 0,327,3,95,0, | ||
15256 | 327,3,97,0,327, | ||
15257 | 3,98,0,327,3, | ||
15258 | 99,0,327,3,100, | ||
15259 | 0,327,3,101,0, | ||
15260 | 327,3,102,0,327, | ||
15261 | 3,103,0,327,3, | ||
15262 | 104,0,327,3,105, | ||
15263 | 0,327,3,106,0, | ||
15264 | 327,3,107,0,327, | ||
15265 | 3,108,0,327,1153, | ||
15266 | 11,1,829,0,330, | ||
15267 | 1,-1,3,117,0, | ||
15268 | 327,3,118,0,327, | ||
15269 | 3,119,0,327,3, | ||
15270 | 120,0,327,3,121, | ||
15271 | 0,327,3,122,0, | ||
15272 | 327,3,48,0,327, | ||
15273 | 3,49,0,327,3, | ||
15274 | 50,0,327,3,51, | ||
15275 | 0,327,3,52,0, | ||
15276 | 327,3,53,0,327, | ||
15277 | 3,54,0,327,3, | ||
15278 | 55,0,327,3,56, | ||
15279 | 0,327,3,57,0, | ||
15280 | 327,3,65,0,327, | ||
15281 | 3,66,0,327,3, | ||
15282 | 67,0,327,3,68, | ||
15283 | 0,327,3,69,0, | ||
15284 | 327,3,70,0,327, | ||
15285 | 3,71,0,327,3, | ||
15286 | 72,0,327,3,73, | ||
15287 | 0,327,3,74,0, | ||
15288 | 327,3,75,0,327, | ||
15289 | 3,76,0,327,3, | ||
15290 | 77,0,327,3,78, | ||
15291 | 0,327,3,79,0, | ||
15292 | 327,3,80,0,327, | ||
15293 | 3,81,0,327,3, | ||
15294 | 82,0,327,3,83, | ||
15295 | 0,327,3,84,0, | ||
15296 | 327,3,85,0,327, | ||
15297 | 3,86,0,327,3, | ||
15298 | 87,0,327,3,88, | ||
15299 | 0,327,3,89,0, | ||
15300 | 327,3,90,0,327, | ||
15301 | 3,95,0,327,3, | ||
15302 | 97,0,327,3,98, | ||
15303 | 0,327,3,99,0, | ||
15304 | 327,3,100,0,327, | ||
15305 | 3,101,0,327,3, | ||
15306 | 102,0,327,3,103, | ||
15307 | 0,327,3,104,0, | ||
15308 | 327,3,105,0,327, | ||
15309 | 3,106,0,327,3, | ||
15310 | 107,0,327,3,108, | ||
15311 | 0,327,1154,11,1, | ||
15312 | 829,0,330,1,-1, | ||
15313 | 3,102,0,327,3, | ||
15314 | 103,0,327,3,104, | ||
15315 | 0,327,3,105,0, | ||
15316 | 327,3,106,0,327, | ||
15317 | 3,107,0,327,3, | ||
15318 | 108,0,327,1155,11, | ||
15319 | 1,829,0,330,1, | ||
15320 | -1,3,115,0,1156, | ||
15321 | 12,1,14686,1157,5, | ||
15322 | 63,3,109,0,327, | ||
15323 | 3,110,0,327,3, | ||
15324 | 111,0,327,3,112, | ||
15325 | 0,327,3,113,0, | ||
15326 | 327,3,114,0,327, | ||
15327 | 3,115,0,327,3, | ||
15328 | 116,0,1158,12,1, | ||
15329 | 14721,1159,5,63,3, | ||
15330 | 109,0,327,3,110, | ||
15331 | 0,327,3,111,0, | ||
15332 | 327,3,112,0,327, | ||
15333 | 3,113,0,327,3, | ||
15334 | 114,0,1160,12,1, | ||
15335 | 14754,1161,5,63,3, | ||
15336 | 109,0,327,3,110, | ||
15337 | 0,327,3,111,0, | ||
15338 | 327,3,112,0,327, | ||
15339 | 3,113,0,327,3, | ||
15340 | 114,0,327,3,115, | ||
15341 | 0,327,3,116,0, | ||
15342 | 327,3,117,0,327, | ||
15343 | 3,118,0,327,3, | ||
15344 | 119,0,327,3,120, | ||
15345 | 0,327,3,121,0, | ||
15346 | 327,3,122,0,327, | ||
15347 | 3,48,0,327,3, | ||
15348 | 49,0,327,3,50, | ||
15349 | 0,327,3,51,0, | ||
15350 | 327,3,52,0,327, | ||
15351 | 3,53,0,327,3, | ||
15352 | 54,0,327,3,55, | ||
15353 | 0,327,3,56,0, | ||
15354 | 327,3,57,0,327, | ||
15355 | 3,65,0,327,3, | ||
15356 | 66,0,327,3,67, | ||
15357 | 0,327,3,68,0, | ||
15358 | 327,3,69,0,327, | ||
15359 | 3,70,0,327,3, | ||
15360 | 71,0,327,3,72, | ||
15361 | 0,327,3,73,0, | ||
15362 | 327,3,74,0,327, | ||
15363 | 3,75,0,327,3, | ||
15364 | 76,0,327,3,77, | ||
15365 | 0,327,3,78,0, | ||
15366 | 327,3,79,0,327, | ||
15367 | 3,80,0,327,3, | ||
15368 | 81,0,327,3,82, | ||
15369 | 0,327,3,83,0, | ||
15370 | 327,3,84,0,327, | ||
15371 | 3,85,0,327,3, | ||
15372 | 86,0,327,3,87, | ||
15373 | 0,327,3,88,0, | ||
15374 | 327,3,89,0,327, | ||
15375 | 3,90,0,327,3, | ||
15376 | 95,0,327,3,97, | ||
15377 | 0,327,3,98,0, | ||
15378 | 327,3,99,0,327, | ||
15379 | 3,100,0,327,3, | ||
15380 | 101,0,327,3,102, | ||
15381 | 0,327,3,103,0, | ||
15382 | 327,3,104,0,327, | ||
15383 | 3,105,0,1162,12, | ||
15384 | 1,14805,1163,5,63, | ||
15385 | 3,109,0,327,3, | ||
15386 | 110,0,1164,12,1, | ||
15387 | 14834,1165,5,63,3, | ||
15388 | 109,0,327,3,110, | ||
15389 | 0,327,3,111,0, | ||
15390 | 327,3,112,0,327, | ||
15391 | 3,113,0,327,3, | ||
15392 | 114,0,327,3,115, | ||
15393 | 0,327,3,116,0, | ||
15394 | 327,3,117,0,327, | ||
15395 | 3,118,0,327,3, | ||
15396 | 119,0,327,3,120, | ||
15397 | 0,327,3,121,0, | ||
15398 | 327,3,122,0,327, | ||
15399 | 3,48,0,327,3, | ||
15400 | 49,0,327,3,50, | ||
15401 | 0,327,3,51,0, | ||
15402 | 327,3,52,0,327, | ||
15403 | 3,53,0,327,3, | ||
15404 | 54,0,327,3,55, | ||
15405 | 0,327,3,56,0, | ||
15406 | 327,3,57,0,327, | ||
15407 | 3,65,0,327,3, | ||
15408 | 66,0,327,3,67, | ||
15409 | 0,327,3,68,0, | ||
15410 | 327,3,69,0,327, | ||
15411 | 3,70,0,327,3, | ||
15412 | 71,0,327,3,72, | ||
15413 | 0,327,3,73,0, | ||
15414 | 327,3,74,0,327, | ||
15415 | 3,75,0,327,3, | ||
15416 | 76,0,327,3,77, | ||
15417 | 0,327,3,78,0, | ||
15418 | 327,3,79,0,327, | ||
15419 | 3,80,0,327,3, | ||
15420 | 81,0,327,3,82, | ||
15421 | 0,327,3,83,0, | ||
15422 | 327,3,84,0,327, | ||
15423 | 3,85,0,327,3, | ||
15424 | 86,0,327,3,87, | ||
15425 | 0,327,3,88,0, | ||
15426 | 327,3,89,0,327, | ||
15427 | 3,90,0,327,3, | ||
15428 | 95,0,327,3,97, | ||
15429 | 0,327,3,98,0, | ||
15430 | 327,3,99,0,327, | ||
15431 | 3,100,0,327,3, | ||
15432 | 101,0,327,3,102, | ||
15433 | 0,327,3,103,0, | ||
15434 | 1166,12,1,14883,1167, | ||
15435 | 5,63,3,109,0, | ||
15436 | 327,3,110,0,327, | ||
15437 | 3,111,0,327,3, | ||
15438 | 112,0,327,3,113, | ||
15439 | 0,327,3,114,0, | ||
15440 | 327,3,115,0,327, | ||
15441 | 3,116,0,327,3, | ||
15442 | 117,0,327,3,118, | ||
15443 | 0,327,3,119,0, | ||
15444 | 327,3,120,0,327, | ||
15445 | 3,121,0,327,3, | ||
15446 | 122,0,327,3,48, | ||
15447 | 0,327,3,49,0, | ||
15448 | 327,3,50,0,327, | ||
15449 | 3,51,0,327,3, | ||
15450 | 52,0,327,3,53, | ||
15451 | 0,327,3,54,0, | ||
15452 | 327,3,55,0,327, | ||
15453 | 3,56,0,327,3, | ||
15454 | 57,0,327,3,65, | ||
15455 | 0,327,3,66,0, | ||
15456 | 327,3,67,0,327, | ||
15457 | 3,68,0,327,3, | ||
15458 | 69,0,327,3,70, | ||
15459 | 0,327,3,71,0, | ||
15460 | 327,3,72,0,327, | ||
15461 | 3,73,0,327,3, | ||
15462 | 74,0,327,3,75, | ||
15463 | 0,327,3,76,0, | ||
15464 | 327,3,77,0,327, | ||
15465 | 3,78,0,327,3, | ||
15466 | 79,0,327,3,80, | ||
15467 | 0,327,3,81,0, | ||
15468 | 327,3,82,0,327, | ||
15469 | 3,83,0,327,3, | ||
15470 | 84,0,327,3,85, | ||
15471 | 0,327,3,86,0, | ||
15472 | 327,3,87,0,327, | ||
15473 | 3,88,0,327,3, | ||
15474 | 89,0,327,3,90, | ||
15475 | 0,327,3,95,0, | ||
15476 | 327,3,97,0,327, | ||
15477 | 3,98,0,327,3, | ||
15478 | 99,0,327,3,100, | ||
15479 | 0,327,3,101,0, | ||
15480 | 327,3,102,0,327, | ||
15481 | 3,103,0,327,3, | ||
15482 | 104,0,327,3,105, | ||
15483 | 0,327,3,106,0, | ||
15484 | 327,3,107,0,327, | ||
15485 | 3,108,0,327,1168, | ||
15486 | 11,1,303,0,1169, | ||
15487 | 4,22,83,0,84, | ||
15488 | 0,82,0,73,0, | ||
15489 | 78,0,71,0,95, | ||
15490 | 0,84,0,89,0, | ||
15491 | 80,0,69,0,1, | ||
15492 | -1,3,104,0,327, | ||
15493 | 3,105,0,327,3, | ||
15494 | 106,0,327,3,107, | ||
15495 | 0,327,3,108,0, | ||
15496 | 327,1170,11,1,829, | ||
15497 | 0,330,1,-1,3, | ||
15498 | 111,0,327,3,112, | ||
15499 | 0,327,3,113,0, | ||
15500 | 327,3,114,0,327, | ||
15501 | 3,115,0,327,3, | ||
15502 | 116,0,327,3,117, | ||
15503 | 0,327,3,118,0, | ||
15504 | 327,3,119,0,327, | ||
15505 | 3,120,0,327,3, | ||
15506 | 121,0,327,3,122, | ||
15507 | 0,327,3,48,0, | ||
15508 | 327,3,49,0,327, | ||
15509 | 3,50,0,327,3, | ||
15510 | 51,0,327,3,52, | ||
15511 | 0,327,3,53,0, | ||
15512 | 327,3,54,0,327, | ||
15513 | 3,55,0,327,3, | ||
15514 | 56,0,327,3,57, | ||
15515 | 0,327,3,65,0, | ||
15516 | 327,3,66,0,327, | ||
15517 | 3,67,0,327,3, | ||
15518 | 68,0,327,3,69, | ||
15519 | 0,327,3,70,0, | ||
15520 | 327,3,71,0,327, | ||
15521 | 3,72,0,327,3, | ||
15522 | 73,0,327,3,74, | ||
15523 | 0,327,3,75,0, | ||
15524 | 327,3,76,0,327, | ||
15525 | 3,77,0,327,3, | ||
15526 | 78,0,327,3,79, | ||
15527 | 0,327,3,80,0, | ||
15528 | 327,3,81,0,327, | ||
15529 | 3,82,0,327,3, | ||
15530 | 83,0,327,3,84, | ||
15531 | 0,327,3,85,0, | ||
15532 | 327,3,86,0,327, | ||
15533 | 3,87,0,327,3, | ||
15534 | 88,0,327,3,89, | ||
15535 | 0,327,3,90,0, | ||
15536 | 327,3,95,0,327, | ||
15537 | 3,97,0,327,3, | ||
15538 | 98,0,327,3,99, | ||
15539 | 0,327,3,100,0, | ||
15540 | 327,3,101,0,327, | ||
15541 | 3,102,0,327,3, | ||
15542 | 103,0,327,3,104, | ||
15543 | 0,327,3,105,0, | ||
15544 | 327,3,106,0,327, | ||
15545 | 3,107,0,327,3, | ||
15546 | 108,0,327,1171,11, | ||
15547 | 1,829,0,330,1, | ||
15548 | -1,3,106,0,327, | ||
15549 | 3,107,0,327,3, | ||
15550 | 108,0,327,1172,11, | ||
15551 | 1,829,0,330,1, | ||
15552 | -1,3,115,0,327, | ||
15553 | 3,116,0,327,3, | ||
15554 | 117,0,327,3,118, | ||
15555 | 0,327,3,119,0, | ||
15556 | 327,3,120,0,327, | ||
15557 | 3,121,0,327,3, | ||
15558 | 122,0,327,3,48, | ||
15559 | 0,327,3,49,0, | ||
15560 | 327,3,50,0,327, | ||
15561 | 3,51,0,327,3, | ||
15562 | 52,0,327,3,53, | ||
15563 | 0,327,3,54,0, | ||
15564 | 327,3,55,0,327, | ||
15565 | 3,56,0,327,3, | ||
15566 | 57,0,327,3,65, | ||
15567 | 0,327,3,66,0, | ||
15568 | 327,3,67,0,327, | ||
15569 | 3,68,0,327,3, | ||
15570 | 69,0,327,3,70, | ||
15571 | 0,327,3,71,0, | ||
15572 | 327,3,72,0,327, | ||
15573 | 3,73,0,327,3, | ||
15574 | 74,0,327,3,75, | ||
15575 | 0,327,3,76,0, | ||
15576 | 327,3,77,0,327, | ||
15577 | 3,78,0,327,3, | ||
15578 | 79,0,327,3,80, | ||
15579 | 0,327,3,81,0, | ||
15580 | 327,3,82,0,327, | ||
15581 | 3,83,0,327,3, | ||
15582 | 84,0,327,3,85, | ||
15583 | 0,327,3,86,0, | ||
15584 | 327,3,87,0,327, | ||
15585 | 3,88,0,327,3, | ||
15586 | 89,0,327,3,90, | ||
15587 | 0,327,3,95,0, | ||
15588 | 327,3,97,0,1173, | ||
15589 | 12,1,15244,1174,5, | ||
15590 | 63,3,109,0,327, | ||
15591 | 3,110,0,327,3, | ||
15592 | 111,0,327,3,112, | ||
15593 | 0,327,3,113,0, | ||
15594 | 327,3,114,0,327, | ||
15595 | 3,115,0,327,3, | ||
15596 | 116,0,1175,12,1, | ||
15597 | 15279,1176,5,63,3, | ||
15598 | 109,0,327,3,110, | ||
15599 | 0,327,3,111,0, | ||
15600 | 327,3,112,0,327, | ||
15601 | 3,113,0,327,3, | ||
15602 | 114,0,327,3,115, | ||
15603 | 0,327,3,116,0, | ||
15604 | 327,3,117,0,327, | ||
15605 | 3,118,0,327,3, | ||
15606 | 119,0,327,3,120, | ||
15607 | 0,327,3,121,0, | ||
15608 | 327,3,122,0,327, | ||
15609 | 3,48,0,327,3, | ||
15610 | 49,0,327,3,50, | ||
15611 | 0,327,3,51,0, | ||
15612 | 327,3,52,0,327, | ||
15613 | 3,53,0,327,3, | ||
15614 | 54,0,327,3,55, | ||
15615 | 0,327,3,56,0, | ||
15616 | 327,3,57,0,327, | ||
15617 | 3,65,0,327,3, | ||
15618 | 66,0,327,3,67, | ||
15619 | 0,327,3,68,0, | ||
15620 | 327,3,69,0,327, | ||
15621 | 3,70,0,327,3, | ||
15622 | 71,0,327,3,72, | ||
15623 | 0,327,3,73,0, | ||
15624 | 327,3,74,0,327, | ||
15625 | 3,75,0,327,3, | ||
15626 | 76,0,327,3,77, | ||
15627 | 0,327,3,78,0, | ||
15628 | 327,3,79,0,327, | ||
15629 | 3,80,0,327,3, | ||
15630 | 81,0,327,3,82, | ||
15631 | 0,327,3,83,0, | ||
15632 | 327,3,84,0,327, | ||
15633 | 3,85,0,327,3, | ||
15634 | 86,0,327,3,87, | ||
15635 | 0,327,3,88,0, | ||
15636 | 327,3,89,0,327, | ||
15637 | 3,90,0,327,3, | ||
15638 | 95,0,327,3,97, | ||
15639 | 0,327,3,98,0, | ||
15640 | 327,3,99,0,327, | ||
15641 | 3,100,0,327,3, | ||
15642 | 101,0,1177,12,1, | ||
15643 | 15326,1178,5,63,3, | ||
15644 | 109,0,327,3,110, | ||
15645 | 0,327,3,111,0, | ||
15646 | 327,3,112,0,327, | ||
15647 | 3,113,0,327,3, | ||
15648 | 114,0,327,3,115, | ||
15649 | 0,327,3,116,0, | ||
15650 | 327,3,117,0,327, | ||
15651 | 3,118,0,327,3, | ||
15652 | 119,0,327,3,120, | ||
15653 | 0,327,3,121,0, | ||
15654 | 327,3,122,0,327, | ||
15655 | 3,48,0,327,3, | ||
15656 | 49,0,327,3,50, | ||
15657 | 0,327,3,51,0, | ||
15658 | 327,3,52,0,327, | ||
15659 | 3,53,0,327,3, | ||
15660 | 54,0,327,3,55, | ||
15661 | 0,327,3,56,0, | ||
15662 | 327,3,57,0,327, | ||
15663 | 3,65,0,327,3, | ||
15664 | 66,0,327,3,67, | ||
15665 | 0,327,3,68,0, | ||
15666 | 327,3,69,0,327, | ||
15667 | 3,70,0,327,3, | ||
15668 | 71,0,327,3,72, | ||
15669 | 0,327,3,73,0, | ||
15670 | 327,3,74,0,327, | ||
15671 | 3,75,0,327,3, | ||
15672 | 76,0,327,3,77, | ||
15673 | 0,327,3,78,0, | ||
15674 | 327,3,79,0,327, | ||
15675 | 3,80,0,327,3, | ||
15676 | 81,0,327,3,82, | ||
15677 | 0,327,3,83,0, | ||
15678 | 327,3,84,0,327, | ||
15679 | 3,85,0,327,3, | ||
15680 | 86,0,327,3,87, | ||
15681 | 0,327,3,88,0, | ||
15682 | 327,3,89,0,327, | ||
15683 | 3,90,0,327,3, | ||
15684 | 95,0,1179,12,1, | ||
15685 | 15412,1180,5,63,3, | ||
15686 | 109,0,327,3,110, | ||
15687 | 0,327,3,111,0, | ||
15688 | 327,3,112,0,327, | ||
15689 | 3,113,0,327,3, | ||
15690 | 114,0,327,3,115, | ||
15691 | 0,327,3,116,0, | ||
15692 | 327,3,117,0,327, | ||
15693 | 3,118,0,327,3, | ||
15694 | 119,0,327,3,120, | ||
15695 | 0,327,3,121,0, | ||
15696 | 327,3,122,0,327, | ||
15697 | 3,48,0,327,3, | ||
15698 | 49,0,327,3,50, | ||
15699 | 0,327,3,51,0, | ||
15700 | 327,3,52,0,327, | ||
15701 | 3,53,0,327,3, | ||
15702 | 54,0,327,3,55, | ||
15703 | 0,327,3,56,0, | ||
15704 | 327,3,57,0,327, | ||
15705 | 3,65,0,327,3, | ||
15706 | 66,0,327,3,67, | ||
15707 | 0,327,3,68,0, | ||
15708 | 327,3,69,0,327, | ||
15709 | 3,70,0,327,3, | ||
15710 | 71,0,327,3,72, | ||
15711 | 0,327,3,73,0, | ||
15712 | 327,3,74,0,327, | ||
15713 | 3,75,0,327,3, | ||
15714 | 76,0,327,3,77, | ||
15715 | 0,327,3,78,0, | ||
15716 | 327,3,79,0,327, | ||
15717 | 3,80,0,327,3, | ||
15718 | 81,0,327,3,82, | ||
15719 | 0,327,3,83,0, | ||
15720 | 327,3,84,0,327, | ||
15721 | 3,85,0,327,3, | ||
15722 | 86,0,327,3,87, | ||
15723 | 0,327,3,88,0, | ||
15724 | 327,3,89,0,327, | ||
15725 | 3,90,0,327,3, | ||
15726 | 95,0,327,3,97, | ||
15727 | 0,327,3,98,0, | ||
15728 | 327,3,99,0,327, | ||
15729 | 3,100,0,327,3, | ||
15730 | 101,0,1181,12,1, | ||
15731 | 15459,1182,5,63,3, | ||
15732 | 109,0,327,3,110, | ||
15733 | 0,1183,12,1,15488, | ||
15734 | 1184,5,63,3,109, | ||
15735 | 0,327,3,110,0, | ||
15736 | 327,3,111,0,327, | ||
15737 | 3,112,0,327,3, | ||
15738 | 113,0,327,3,114, | ||
15739 | 0,327,3,115,0, | ||
15740 | 327,3,116,0,1185, | ||
15741 | 12,1,15523,1186,5, | ||
15742 | 63,3,109,0,327, | ||
15743 | 3,110,0,327,3, | ||
15744 | 111,0,327,3,112, | ||
15745 | 0,327,3,113,0, | ||
15746 | 327,3,114,0,1187, | ||
15747 | 12,1,15556,1188,5, | ||
15748 | 63,3,109,0,327, | ||
15749 | 3,110,0,327,3, | ||
15750 | 111,0,327,3,112, | ||
15751 | 0,327,3,113,0, | ||
15752 | 327,3,114,0,327, | ||
15753 | 3,115,0,327,3, | ||
15754 | 116,0,327,3,117, | ||
15755 | 0,327,3,118,0, | ||
15756 | 327,3,119,0,327, | ||
15757 | 3,120,0,327,3, | ||
15758 | 121,0,1189,12,1, | ||
15759 | 15596,1190,5,63,3, | ||
15760 | 109,0,327,3,110, | ||
15761 | 0,327,3,111,0, | ||
15762 | 327,3,112,0,327, | ||
15763 | 3,113,0,327,3, | ||
15764 | 114,0,327,3,115, | ||
15765 | 0,327,3,116,0, | ||
15766 | 327,3,117,0,327, | ||
15767 | 3,118,0,327,3, | ||
15768 | 119,0,327,3,120, | ||
15769 | 0,327,3,121,0, | ||
15770 | 327,3,122,0,327, | ||
15771 | 3,48,0,327,3, | ||
15772 | 49,0,327,3,50, | ||
15773 | 0,327,3,51,0, | ||
15774 | 327,3,52,0,327, | ||
15775 | 3,53,0,327,3, | ||
15776 | 54,0,327,3,55, | ||
15777 | 0,327,3,56,0, | ||
15778 | 327,3,57,0,327, | ||
15779 | 3,65,0,327,3, | ||
15780 | 66,0,327,3,67, | ||
15781 | 0,327,3,68,0, | ||
15782 | 327,3,69,0,327, | ||
15783 | 3,70,0,327,3, | ||
15784 | 71,0,327,3,72, | ||
15785 | 0,327,3,73,0, | ||
15786 | 327,3,74,0,327, | ||
15787 | 3,75,0,327,3, | ||
15788 | 76,0,327,3,77, | ||
15789 | 0,327,3,78,0, | ||
15790 | 327,3,79,0,327, | ||
15791 | 3,80,0,327,3, | ||
15792 | 81,0,327,3,82, | ||
15793 | 0,327,3,83,0, | ||
15794 | 327,3,84,0,327, | ||
15795 | 3,85,0,327,3, | ||
15796 | 86,0,327,3,87, | ||
15797 | 0,327,3,88,0, | ||
15798 | 327,3,89,0,327, | ||
15799 | 3,90,0,327,3, | ||
15800 | 95,0,327,3,97, | ||
15801 | 0,327,3,98,0, | ||
15802 | 327,3,99,0,327, | ||
15803 | 3,100,0,327,3, | ||
15804 | 101,0,327,3,102, | ||
15805 | 0,327,3,103,0, | ||
15806 | 327,3,104,0,327, | ||
15807 | 3,105,0,327,3, | ||
15808 | 106,0,327,3,107, | ||
15809 | 0,327,3,108,0, | ||
15810 | 327,1191,11,1,754, | ||
15811 | 0,1192,4,34,83, | ||
15812 | 0,84,0,65,0, | ||
15813 | 84,0,69,0,95, | ||
15814 | 0,69,0,78,0, | ||
15815 | 84,0,82,0,89, | ||
15816 | 0,95,0,69,0, | ||
15817 | 86,0,69,0,78, | ||
15818 | 0,84,0,1,-1, | ||
15819 | 3,122,0,327,3, | ||
15820 | 48,0,327,3,49, | ||
15821 | 0,327,3,50,0, | ||
15822 | 327,3,51,0,327, | ||
15823 | 3,52,0,327,3, | ||
15824 | 53,0,327,3,54, | ||
15825 | 0,327,3,55,0, | ||
15826 | 327,3,56,0,327, | ||
15827 | 3,57,0,327,3, | ||
15828 | 65,0,327,3,66, | ||
15829 | 0,327,3,67,0, | ||
15830 | 327,3,68,0,327, | ||
15831 | 3,69,0,327,3, | ||
15832 | 70,0,327,3,71, | ||
15833 | 0,327,3,72,0, | ||
15834 | 327,3,73,0,327, | ||
15835 | 3,74,0,327,3, | ||
15836 | 75,0,327,3,76, | ||
15837 | 0,327,3,77,0, | ||
15838 | 327,3,78,0,327, | ||
15839 | 3,79,0,327,3, | ||
15840 | 80,0,327,3,81, | ||
15841 | 0,327,3,82,0, | ||
15842 | 327,3,83,0,327, | ||
15843 | 3,84,0,327,3, | ||
15844 | 85,0,327,3,86, | ||
15845 | 0,327,3,87,0, | ||
15846 | 327,3,88,0,327, | ||
15847 | 3,89,0,327,3, | ||
15848 | 90,0,327,3,95, | ||
15849 | 0,327,3,97,0, | ||
15850 | 327,3,98,0,327, | ||
15851 | 3,99,0,327,3, | ||
15852 | 100,0,327,3,101, | ||
15853 | 0,327,3,102,0, | ||
15854 | 327,3,103,0,327, | ||
15855 | 3,104,0,327,3, | ||
15856 | 105,0,327,3,106, | ||
15857 | 0,327,3,107,0, | ||
15858 | 327,3,108,0,327, | ||
15859 | 1193,11,1,829,0, | ||
15860 | 330,1,-1,3,115, | ||
15861 | 0,327,3,116,0, | ||
15862 | 327,3,117,0,327, | ||
15863 | 3,118,0,327,3, | ||
15864 | 119,0,327,3,120, | ||
15865 | 0,327,3,121,0, | ||
15866 | 327,3,122,0,327, | ||
15867 | 3,48,0,327,3, | ||
15868 | 49,0,327,3,50, | ||
15869 | 0,327,3,51,0, | ||
15870 | 327,3,52,0,327, | ||
15871 | 3,53,0,327,3, | ||
15872 | 54,0,327,3,55, | ||
15873 | 0,327,3,56,0, | ||
15874 | 327,3,57,0,327, | ||
15875 | 3,65,0,327,3, | ||
15876 | 66,0,327,3,67, | ||
15877 | 0,327,3,68,0, | ||
15878 | 327,3,69,0,327, | ||
15879 | 3,70,0,327,3, | ||
15880 | 71,0,327,3,72, | ||
15881 | 0,327,3,73,0, | ||
15882 | 327,3,74,0,327, | ||
15883 | 3,75,0,327,3, | ||
15884 | 76,0,327,3,77, | ||
15885 | 0,327,3,78,0, | ||
15886 | 327,3,79,0,327, | ||
15887 | 3,80,0,327,3, | ||
15888 | 81,0,327,3,82, | ||
15889 | 0,327,3,83,0, | ||
15890 | 327,3,84,0,327, | ||
15891 | 3,85,0,327,3, | ||
15892 | 86,0,327,3,87, | ||
15893 | 0,327,3,88,0, | ||
15894 | 327,3,89,0,327, | ||
15895 | 3,90,0,327,3, | ||
15896 | 95,0,327,3,97, | ||
15897 | 0,327,3,98,0, | ||
15898 | 327,3,99,0,327, | ||
15899 | 3,100,0,327,3, | ||
15900 | 101,0,327,3,102, | ||
15901 | 0,327,3,103,0, | ||
15902 | 327,3,104,0,327, | ||
15903 | 3,105,0,327,3, | ||
15904 | 106,0,327,3,107, | ||
15905 | 0,327,3,108,0, | ||
15906 | 327,1194,11,1,829, | ||
15907 | 0,330,1,-1,3, | ||
15908 | 117,0,327,3,118, | ||
15909 | 0,327,3,119,0, | ||
15910 | 327,3,120,0,327, | ||
15911 | 3,121,0,327,3, | ||
15912 | 122,0,327,3,48, | ||
15913 | 0,327,3,49,0, | ||
15914 | 327,3,50,0,327, | ||
15915 | 3,51,0,327,3, | ||
15916 | 52,0,327,3,53, | ||
15917 | 0,327,3,54,0, | ||
15918 | 327,3,55,0,327, | ||
15919 | 3,56,0,327,3, | ||
15920 | 57,0,327,3,65, | ||
15921 | 0,327,3,66,0, | ||
15922 | 327,3,67,0,327, | ||
15923 | 3,68,0,327,3, | ||
15924 | 69,0,327,3,70, | ||
15925 | 0,327,3,71,0, | ||
15926 | 327,3,72,0,327, | ||
15927 | 3,73,0,327,3, | ||
15928 | 74,0,327,3,75, | ||
15929 | 0,327,3,76,0, | ||
15930 | 327,3,77,0,327, | ||
15931 | 3,78,0,327,3, | ||
15932 | 79,0,327,3,80, | ||
15933 | 0,327,3,81,0, | ||
15934 | 327,3,82,0,327, | ||
15935 | 3,83,0,327,3, | ||
15936 | 84,0,327,3,85, | ||
15937 | 0,327,3,86,0, | ||
15938 | 327,3,87,0,327, | ||
15939 | 3,88,0,327,3, | ||
15940 | 89,0,327,3,90, | ||
15941 | 0,327,3,95,0, | ||
15942 | 327,3,97,0,327, | ||
15943 | 3,98,0,327,3, | ||
15944 | 99,0,327,3,100, | ||
15945 | 0,327,3,101,0, | ||
15946 | 327,3,102,0,327, | ||
15947 | 3,103,0,327,3, | ||
15948 | 104,0,327,3,105, | ||
15949 | 0,327,3,106,0, | ||
15950 | 327,3,107,0,327, | ||
15951 | 3,108,0,327,1195, | ||
15952 | 11,1,829,0,330, | ||
15953 | 1,-1,3,111,0, | ||
15954 | 327,3,112,0,327, | ||
15955 | 3,113,0,327,3, | ||
15956 | 114,0,327,3,115, | ||
15957 | 0,327,3,116,0, | ||
15958 | 327,3,117,0,327, | ||
15959 | 3,118,0,327,3, | ||
15960 | 119,0,327,3,120, | ||
15961 | 0,1196,12,1,15978, | ||
15962 | 1197,5,63,3,109, | ||
15963 | 0,327,3,110,0, | ||
15964 | 327,3,111,0,327, | ||
15965 | 3,112,0,327,3, | ||
15966 | 113,0,327,3,114, | ||
15967 | 0,327,3,115,0, | ||
15968 | 327,3,116,0,327, | ||
15969 | 3,117,0,327,3, | ||
15970 | 118,0,327,3,119, | ||
15971 | 0,327,3,120,0, | ||
15972 | 327,3,121,0,327, | ||
15973 | 3,122,0,327,3, | ||
15974 | 48,0,327,3,49, | ||
15975 | 0,327,3,50,0, | ||
15976 | 327,3,51,0,327, | ||
15977 | 3,52,0,327,3, | ||
15978 | 53,0,327,3,54, | ||
15979 | 0,327,3,55,0, | ||
15980 | 327,3,56,0,327, | ||
15981 | 3,57,0,327,3, | ||
15982 | 65,0,327,3,66, | ||
15983 | 0,327,3,67,0, | ||
15984 | 327,3,68,0,327, | ||
15985 | 3,69,0,327,3, | ||
15986 | 70,0,327,3,71, | ||
15987 | 0,327,3,72,0, | ||
15988 | 327,3,73,0,327, | ||
15989 | 3,74,0,327,3, | ||
15990 | 75,0,327,3,76, | ||
15991 | 0,327,3,77,0, | ||
15992 | 327,3,78,0,327, | ||
15993 | 3,79,0,327,3, | ||
15994 | 80,0,327,3,81, | ||
15995 | 0,327,3,82,0, | ||
15996 | 327,3,83,0,327, | ||
15997 | 3,84,0,327,3, | ||
15998 | 85,0,327,3,86, | ||
15999 | 0,327,3,87,0, | ||
16000 | 327,3,88,0,327, | ||
16001 | 3,89,0,327,3, | ||
16002 | 90,0,327,3,95, | ||
16003 | 0,327,3,97,0, | ||
16004 | 327,3,98,0,327, | ||
16005 | 3,99,0,327,3, | ||
16006 | 100,0,327,3,101, | ||
16007 | 0,327,3,102,0, | ||
16008 | 327,3,103,0,327, | ||
16009 | 3,104,0,327,3, | ||
16010 | 105,0,1198,12,1, | ||
16011 | 16029,1199,5,63,3, | ||
16012 | 109,0,327,3,110, | ||
16013 | 0,327,3,111,0, | ||
16014 | 327,3,112,0,327, | ||
16015 | 3,113,0,327,3, | ||
16016 | 114,0,327,3,115, | ||
16017 | 0,327,3,116,0, | ||
16018 | 1200,12,1,16064,1201, | ||
16019 | 5,63,3,109,0, | ||
16020 | 327,3,110,0,327, | ||
16021 | 3,111,0,327,3, | ||
16022 | 112,0,327,3,113, | ||
16023 | 0,327,3,114,0, | ||
16024 | 327,3,115,0,327, | ||
16025 | 3,116,0,327,3, | ||
16026 | 117,0,327,3,118, | ||
16027 | 0,327,3,119,0, | ||
16028 | 327,3,120,0,327, | ||
16029 | 3,121,0,327,3, | ||
16030 | 122,0,327,3,48, | ||
16031 | 0,327,3,49,0, | ||
16032 | 327,3,50,0,327, | ||
16033 | 3,51,0,327,3, | ||
16034 | 52,0,327,3,53, | ||
16035 | 0,327,3,54,0, | ||
16036 | 327,3,55,0,327, | ||
16037 | 3,56,0,327,3, | ||
16038 | 57,0,327,3,65, | ||
16039 | 0,327,3,66,0, | ||
16040 | 327,3,67,0,327, | ||
16041 | 3,68,0,327,3, | ||
16042 | 69,0,327,3,70, | ||
16043 | 0,327,3,71,0, | ||
16044 | 327,3,72,0,327, | ||
16045 | 3,73,0,327,3, | ||
16046 | 74,0,327,3,75, | ||
16047 | 0,327,3,76,0, | ||
16048 | 327,3,77,0,327, | ||
16049 | 3,78,0,327,3, | ||
16050 | 79,0,327,3,80, | ||
16051 | 0,327,3,81,0, | ||
16052 | 327,3,82,0,327, | ||
16053 | 3,83,0,327,3, | ||
16054 | 84,0,327,3,85, | ||
16055 | 0,327,3,86,0, | ||
16056 | 327,3,87,0,327, | ||
16057 | 3,88,0,327,3, | ||
16058 | 89,0,327,3,90, | ||
16059 | 0,327,3,95,0, | ||
16060 | 327,3,97,0,327, | ||
16061 | 3,98,0,327,3, | ||
16062 | 99,0,327,3,100, | ||
16063 | 0,327,3,101,0, | ||
16064 | 327,3,102,0,327, | ||
16065 | 3,103,0,327,3, | ||
16066 | 104,0,327,3,105, | ||
16067 | 0,327,3,106,0, | ||
16068 | 327,3,107,0,327, | ||
16069 | 3,108,0,327,1202, | ||
16070 | 11,1,769,0,1203, | ||
16071 | 4,32,83,0,84, | ||
16072 | 0,65,0,84,0, | ||
16073 | 69,0,95,0,69, | ||
16074 | 0,88,0,73,0, | ||
16075 | 84,0,95,0,69, | ||
16076 | 0,86,0,69,0, | ||
16077 | 78,0,84,0,1, | ||
16078 | -1,3,117,0,327, | ||
16079 | 3,118,0,327,3, | ||
16080 | 119,0,327,3,120, | ||
16081 | 0,327,3,121,0, | ||
16082 | 327,3,122,0,327, | ||
16083 | 3,48,0,327,3, | ||
16084 | 49,0,327,3,50, | ||
16085 | 0,327,3,51,0, | ||
16086 | 327,3,52,0,327, | ||
16087 | 3,53,0,327,3, | ||
16088 | 54,0,327,3,55, | ||
16089 | 0,327,3,56,0, | ||
16090 | 327,3,57,0,327, | ||
16091 | 3,65,0,327,3, | ||
16092 | 66,0,327,3,67, | ||
16093 | 0,327,3,68,0, | ||
16094 | 327,3,69,0,327, | ||
16095 | 3,70,0,327,3, | ||
16096 | 71,0,327,3,72, | ||
16097 | 0,327,3,73,0, | ||
16098 | 327,3,74,0,327, | ||
16099 | 3,75,0,327,3, | ||
16100 | 76,0,327,3,77, | ||
16101 | 0,327,3,78,0, | ||
16102 | 327,3,79,0,327, | ||
16103 | 3,80,0,327,3, | ||
16104 | 81,0,327,3,82, | ||
16105 | 0,327,3,83,0, | ||
16106 | 327,3,84,0,327, | ||
16107 | 3,85,0,327,3, | ||
16108 | 86,0,327,3,87, | ||
16109 | 0,327,3,88,0, | ||
16110 | 327,3,89,0,327, | ||
16111 | 3,90,0,327,3, | ||
16112 | 95,0,327,3,97, | ||
16113 | 0,327,3,98,0, | ||
16114 | 327,3,99,0,327, | ||
16115 | 3,100,0,327,3, | ||
16116 | 101,0,327,3,102, | ||
16117 | 0,327,3,103,0, | ||
16118 | 327,3,104,0,327, | ||
16119 | 3,105,0,327,3, | ||
16120 | 106,0,327,3,107, | ||
16121 | 0,327,3,108,0, | ||
16122 | 327,1204,11,1,829, | ||
16123 | 0,330,1,-1,3, | ||
16124 | 106,0,327,3,107, | ||
16125 | 0,327,3,108,0, | ||
16126 | 327,1205,11,1,829, | ||
16127 | 0,330,1,-1,3, | ||
16128 | 121,0,327,3,122, | ||
16129 | 0,327,3,48,0, | ||
16130 | 327,3,49,0,327, | ||
16131 | 3,50,0,327,3, | ||
16132 | 51,0,327,3,52, | ||
16133 | 0,327,3,53,0, | ||
16134 | 327,3,54,0,327, | ||
16135 | 3,55,0,327,3, | ||
16136 | 56,0,327,3,57, | ||
16137 | 0,327,3,65,0, | ||
16138 | 327,3,66,0,327, | ||
16139 | 3,67,0,327,3, | ||
16140 | 68,0,327,3,69, | ||
16141 | 0,327,3,70,0, | ||
16142 | 327,3,71,0,327, | ||
16143 | 3,72,0,327,3, | ||
16144 | 73,0,327,3,74, | ||
16145 | 0,327,3,75,0, | ||
16146 | 327,3,76,0,327, | ||
16147 | 3,77,0,327,3, | ||
16148 | 78,0,327,3,79, | ||
16149 | 0,327,3,80,0, | ||
16150 | 327,3,81,0,327, | ||
16151 | 3,82,0,327,3, | ||
16152 | 83,0,327,3,84, | ||
16153 | 0,327,3,85,0, | ||
16154 | 327,3,86,0,327, | ||
16155 | 3,87,0,327,3, | ||
16156 | 88,0,327,3,89, | ||
16157 | 0,327,3,90,0, | ||
16158 | 327,3,95,0,327, | ||
16159 | 3,97,0,327,3, | ||
16160 | 98,0,327,3,99, | ||
16161 | 0,327,3,100,0, | ||
16162 | 327,3,101,0,327, | ||
16163 | 3,102,0,327,3, | ||
16164 | 103,0,327,3,104, | ||
16165 | 0,327,3,105,0, | ||
16166 | 327,3,106,0,327, | ||
16167 | 3,107,0,327,3, | ||
16168 | 108,0,327,1206,11, | ||
16169 | 1,829,0,330,1, | ||
16170 | -1,3,102,0,327, | ||
16171 | 3,103,0,327,3, | ||
16172 | 104,0,327,3,105, | ||
16173 | 0,327,3,106,0, | ||
16174 | 327,3,107,0,327, | ||
16175 | 3,108,0,327,1207, | ||
16176 | 11,1,829,0,330, | ||
16177 | 1,-1,3,97,0, | ||
16178 | 327,3,98,0,327, | ||
16179 | 3,99,0,327,3, | ||
16180 | 100,0,327,3,101, | ||
16181 | 0,327,3,102,0, | ||
16182 | 327,3,103,0,327, | ||
16183 | 3,104,0,327,3, | ||
16184 | 105,0,327,3,106, | ||
16185 | 0,327,3,107,0, | ||
16186 | 327,3,108,0,327, | ||
16187 | 1208,11,1,256,0, | ||
16188 | 1209,4,10,83,0, | ||
16189 | 84,0,65,0,84, | ||
16190 | 0,69,0,1,-1, | ||
16191 | 3,102,0,327,3, | ||
16192 | 103,0,327,3,104, | ||
16193 | 0,327,3,105,0, | ||
16194 | 327,3,106,0,327, | ||
16195 | 3,107,0,327,3, | ||
16196 | 108,0,327,1210,11, | ||
16197 | 1,829,0,330,1, | ||
16198 | -1,3,117,0,327, | ||
16199 | 3,118,0,327,3, | ||
16200 | 119,0,327,3,120, | ||
16201 | 0,327,3,121,0, | ||
16202 | 327,3,122,0,327, | ||
16203 | 3,48,0,327,3, | ||
16204 | 49,0,327,3,50, | ||
16205 | 0,327,3,51,0, | ||
16206 | 327,3,52,0,327, | ||
16207 | 3,53,0,327,3, | ||
16208 | 54,0,327,3,55, | ||
16209 | 0,327,3,56,0, | ||
16210 | 327,3,57,0,327, | ||
16211 | 3,65,0,327,3, | ||
16212 | 66,0,327,3,67, | ||
16213 | 0,327,3,68,0, | ||
16214 | 327,3,69,0,327, | ||
16215 | 3,70,0,327,3, | ||
16216 | 71,0,327,3,72, | ||
16217 | 0,327,3,73,0, | ||
16218 | 327,3,74,0,327, | ||
16219 | 3,75,0,327,3, | ||
16220 | 76,0,327,3,77, | ||
16221 | 0,327,3,78,0, | ||
16222 | 327,3,79,0,327, | ||
16223 | 3,80,0,327,3, | ||
16224 | 81,0,327,3,82, | ||
16225 | 0,327,3,83,0, | ||
16226 | 327,3,84,0,327, | ||
16227 | 3,85,0,327,3, | ||
16228 | 86,0,327,3,87, | ||
16229 | 0,327,3,88,0, | ||
16230 | 327,3,89,0,327, | ||
16231 | 3,90,0,327,3, | ||
16232 | 95,0,327,3,97, | ||
16233 | 0,327,3,98,0, | ||
16234 | 327,3,99,0,327, | ||
16235 | 3,100,0,327,3, | ||
16236 | 101,0,327,3,102, | ||
16237 | 0,327,3,103,0, | ||
16238 | 327,3,104,0,327, | ||
16239 | 3,105,0,327,3, | ||
16240 | 106,0,327,3,107, | ||
16241 | 0,327,3,108,0, | ||
16242 | 327,1211,11,1,829, | ||
16243 | 0,330,1,-1,3, | ||
16244 | 98,0,327,3,99, | ||
16245 | 0,327,3,100,0, | ||
16246 | 327,3,101,0,327, | ||
16247 | 3,102,0,327,3, | ||
16248 | 103,0,327,3,104, | ||
16249 | 0,327,3,105,0, | ||
16250 | 327,3,106,0,327, | ||
16251 | 3,107,0,327,3, | ||
16252 | 108,0,327,1212,11, | ||
16253 | 1,829,0,330,1, | ||
16254 | -1,3,117,0,327, | ||
16255 | 3,118,0,327,3, | ||
16256 | 119,0,327,3,120, | ||
16257 | 0,327,3,121,0, | ||
16258 | 327,3,122,0,327, | ||
16259 | 3,48,0,327,3, | ||
16260 | 49,0,327,3,50, | ||
16261 | 0,327,3,51,0, | ||
16262 | 327,3,52,0,327, | ||
16263 | 3,53,0,327,3, | ||
16264 | 54,0,327,3,55, | ||
16265 | 0,327,3,56,0, | ||
16266 | 327,3,57,0,327, | ||
16267 | 3,65,0,327,3, | ||
16268 | 66,0,327,3,67, | ||
16269 | 0,327,3,68,0, | ||
16270 | 327,3,69,0,327, | ||
16271 | 3,70,0,327,3, | ||
16272 | 71,0,327,3,72, | ||
16273 | 0,327,3,73,0, | ||
16274 | 327,3,74,0,327, | ||
16275 | 3,75,0,327,3, | ||
16276 | 76,0,327,3,77, | ||
16277 | 0,327,3,78,0, | ||
16278 | 327,3,79,0,327, | ||
16279 | 3,80,0,327,3, | ||
16280 | 81,0,327,3,82, | ||
16281 | 0,327,3,83,0, | ||
16282 | 327,3,84,0,327, | ||
16283 | 3,85,0,327,3, | ||
16284 | 86,0,327,3,87, | ||
16285 | 0,327,3,88,0, | ||
16286 | 327,3,89,0,327, | ||
16287 | 3,90,0,327,3, | ||
16288 | 95,0,327,3,97, | ||
16289 | 0,327,3,98,0, | ||
16290 | 327,3,99,0,327, | ||
16291 | 3,100,0,327,3, | ||
16292 | 101,0,1213,12,1, | ||
16293 | 16773,1214,5,63,3, | ||
16294 | 109,0,327,3,110, | ||
16295 | 0,1215,12,1,16802, | ||
16296 | 1216,5,63,3,109, | ||
16297 | 0,327,3,110,0, | ||
16298 | 327,3,111,0,327, | ||
16299 | 3,112,0,327,3, | ||
16300 | 113,0,327,3,114, | ||
16301 | 0,327,3,115,0, | ||
16302 | 1217,12,1,16836,1218, | ||
16303 | 5,63,3,109,0, | ||
16304 | 327,3,110,0,327, | ||
16305 | 3,111,0,1219,12, | ||
16306 | 1,16866,1220,5,63, | ||
16307 | 3,109,0,327,3, | ||
16308 | 110,0,327,3,111, | ||
16309 | 0,327,3,112,0, | ||
16310 | 327,3,113,0,327, | ||
16311 | 3,114,0,1221,12, | ||
16312 | 1,16899,1222,5,63, | ||
16313 | 3,109,0,327,3, | ||
16314 | 110,0,327,3,111, | ||
16315 | 0,327,3,112,0, | ||
16316 | 327,3,113,0,327, | ||
16317 | 3,114,0,327,3, | ||
16318 | 115,0,327,3,116, | ||
16319 | 0,327,3,117,0, | ||
16320 | 327,3,118,0,327, | ||
16321 | 3,119,0,327,3, | ||
16322 | 120,0,327,3,121, | ||
16323 | 0,327,3,122,0, | ||
16324 | 327,3,48,0,327, | ||
16325 | 3,49,0,327,3, | ||
16326 | 50,0,327,3,51, | ||
16327 | 0,327,3,52,0, | ||
16328 | 327,3,53,0,327, | ||
16329 | 3,54,0,327,3, | ||
16330 | 55,0,327,3,56, | ||
16331 | 0,327,3,57,0, | ||
16332 | 327,3,65,0,327, | ||
16333 | 3,66,0,327,3, | ||
16334 | 67,0,327,3,68, | ||
16335 | 0,327,3,69,0, | ||
16336 | 327,3,70,0,327, | ||
16337 | 3,71,0,327,3, | ||
16338 | 72,0,327,3,73, | ||
16339 | 0,327,3,74,0, | ||
16340 | 327,3,75,0,327, | ||
16341 | 3,76,0,327,3, | ||
16342 | 77,0,327,3,78, | ||
16343 | 0,327,3,79,0, | ||
16344 | 327,3,80,0,327, | ||
16345 | 3,81,0,327,3, | ||
16346 | 82,0,327,3,83, | ||
16347 | 0,327,3,84,0, | ||
16348 | 327,3,85,0,327, | ||
16349 | 3,86,0,327,3, | ||
16350 | 87,0,327,3,88, | ||
16351 | 0,327,3,89,0, | ||
16352 | 327,3,90,0,327, | ||
16353 | 3,95,0,327,3, | ||
16354 | 97,0,327,3,98, | ||
16355 | 0,327,3,99,0, | ||
16356 | 327,3,100,0,327, | ||
16357 | 3,101,0,327,3, | ||
16358 | 102,0,327,3,103, | ||
16359 | 0,327,3,104,0, | ||
16360 | 327,3,105,0,327, | ||
16361 | 3,106,0,327,3, | ||
16362 | 107,0,327,3,108, | ||
16363 | 0,327,1223,11,1, | ||
16364 | 744,0,1224,4,24, | ||
16365 | 83,0,69,0,78, | ||
16366 | 0,83,0,79,0, | ||
16367 | 82,0,95,0,69, | ||
16368 | 0,86,0,69,0, | ||
16369 | 78,0,84,0,1, | ||
16370 | -1,3,115,0,327, | ||
16371 | 3,116,0,327,3, | ||
16372 | 117,0,327,3,118, | ||
16373 | 0,327,3,119,0, | ||
16374 | 327,3,120,0,327, | ||
16375 | 3,121,0,327,3, | ||
16376 | 122,0,327,3,48, | ||
16377 | 0,327,3,49,0, | ||
16378 | 327,3,50,0,327, | ||
16379 | 3,51,0,327,3, | ||
16380 | 52,0,327,3,53, | ||
16381 | 0,327,3,54,0, | ||
16382 | 327,3,55,0,327, | ||
16383 | 3,56,0,327,3, | ||
16384 | 57,0,327,3,65, | ||
16385 | 0,327,3,66,0, | ||
16386 | 327,3,67,0,327, | ||
16387 | 3,68,0,327,3, | ||
16388 | 69,0,327,3,70, | ||
16389 | 0,327,3,71,0, | ||
16390 | 327,3,72,0,327, | ||
16391 | 3,73,0,327,3, | ||
16392 | 74,0,327,3,75, | ||
16393 | 0,327,3,76,0, | ||
16394 | 327,3,77,0,327, | ||
16395 | 3,78,0,327,3, | ||
16396 | 79,0,327,3,80, | ||
16397 | 0,327,3,81,0, | ||
16398 | 327,3,82,0,327, | ||
16399 | 3,83,0,327,3, | ||
16400 | 84,0,327,3,85, | ||
16401 | 0,327,3,86,0, | ||
16402 | 327,3,87,0,327, | ||
16403 | 3,88,0,327,3, | ||
16404 | 89,0,327,3,90, | ||
16405 | 0,327,3,95,0, | ||
16406 | 327,3,97,0,327, | ||
16407 | 3,98,0,327,3, | ||
16408 | 99,0,327,3,100, | ||
16409 | 0,327,3,101,0, | ||
16410 | 327,3,102,0,327, | ||
16411 | 3,103,0,327,3, | ||
16412 | 104,0,327,3,105, | ||
16413 | 0,327,3,106,0, | ||
16414 | 327,3,107,0,327, | ||
16415 | 3,108,0,327,1225, | ||
16416 | 11,1,829,0,330, | ||
16417 | 1,-1,3,112,0, | ||
16418 | 327,3,113,0,327, | ||
16419 | 3,114,0,327,3, | ||
16420 | 115,0,327,3,116, | ||
16421 | 0,327,3,117,0, | ||
16422 | 327,3,118,0,327, | ||
16423 | 3,119,0,327,3, | ||
16424 | 120,0,327,3,121, | ||
16425 | 0,327,3,122,0, | ||
16426 | 327,3,48,0,327, | ||
16427 | 3,49,0,327,3, | ||
16428 | 50,0,327,3,51, | ||
16429 | 0,327,3,52,0, | ||
16430 | 327,3,53,0,327, | ||
16431 | 3,54,0,327,3, | ||
16432 | 55,0,327,3,56, | ||
16433 | 0,327,3,57,0, | ||
16434 | 327,3,65,0,327, | ||
16435 | 3,66,0,327,3, | ||
16436 | 67,0,327,3,68, | ||
16437 | 0,327,3,69,0, | ||
16438 | 327,3,70,0,327, | ||
16439 | 3,71,0,327,3, | ||
16440 | 72,0,327,3,73, | ||
16441 | 0,327,3,74,0, | ||
16442 | 327,3,75,0,327, | ||
16443 | 3,76,0,327,3, | ||
16444 | 77,0,327,3,78, | ||
16445 | 0,327,3,79,0, | ||
16446 | 327,3,80,0,327, | ||
16447 | 3,81,0,327,3, | ||
16448 | 82,0,327,3,83, | ||
16449 | 0,327,3,84,0, | ||
16450 | 327,3,85,0,327, | ||
16451 | 3,86,0,327,3, | ||
16452 | 87,0,327,3,88, | ||
16453 | 0,327,3,89,0, | ||
16454 | 327,3,90,0,327, | ||
16455 | 3,95,0,327,3, | ||
16456 | 97,0,327,3,98, | ||
16457 | 0,327,3,99,0, | ||
16458 | 327,3,100,0,327, | ||
16459 | 3,101,0,327,3, | ||
16460 | 102,0,327,3,103, | ||
16461 | 0,327,3,104,0, | ||
16462 | 327,3,105,0,327, | ||
16463 | 3,106,0,327,3, | ||
16464 | 107,0,327,3,108, | ||
16465 | 0,327,1226,11,1, | ||
16466 | 829,0,330,1,-1, | ||
16467 | 3,116,0,327,3, | ||
16468 | 117,0,327,3,118, | ||
16469 | 0,327,3,119,0, | ||
16470 | 327,3,120,0,327, | ||
16471 | 3,121,0,327,3, | ||
16472 | 122,0,327,3,48, | ||
16473 | 0,327,3,49,0, | ||
16474 | 327,3,50,0,327, | ||
16475 | 3,51,0,327,3, | ||
16476 | 52,0,327,3,53, | ||
16477 | 0,327,3,54,0, | ||
16478 | 327,3,55,0,327, | ||
16479 | 3,56,0,327,3, | ||
16480 | 57,0,327,3,65, | ||
16481 | 0,327,3,66,0, | ||
16482 | 327,3,67,0,327, | ||
16483 | 3,68,0,327,3, | ||
16484 | 69,0,327,3,70, | ||
16485 | 0,327,3,71,0, | ||
16486 | 327,3,72,0,327, | ||
16487 | 3,73,0,327,3, | ||
16488 | 74,0,327,3,75, | ||
16489 | 0,327,3,76,0, | ||
16490 | 327,3,77,0,327, | ||
16491 | 3,78,0,327,3, | ||
16492 | 79,0,327,3,80, | ||
16493 | 0,327,3,81,0, | ||
16494 | 327,3,82,0,327, | ||
16495 | 3,83,0,327,3, | ||
16496 | 84,0,327,3,85, | ||
16497 | 0,327,3,86,0, | ||
16498 | 327,3,87,0,327, | ||
16499 | 3,88,0,327,3, | ||
16500 | 89,0,327,3,90, | ||
16501 | 0,327,3,95,0, | ||
16502 | 327,3,97,0,327, | ||
16503 | 3,98,0,327,3, | ||
16504 | 99,0,327,3,100, | ||
16505 | 0,327,3,101,0, | ||
16506 | 327,3,102,0,327, | ||
16507 | 3,103,0,327,3, | ||
16508 | 104,0,327,3,105, | ||
16509 | 0,327,3,106,0, | ||
16510 | 327,3,107,0,327, | ||
16511 | 3,108,0,327,1227, | ||
16512 | 11,1,829,0,330, | ||
16513 | 1,-1,3,111,0, | ||
16514 | 327,3,112,0,327, | ||
16515 | 3,113,0,327,3, | ||
16516 | 114,0,327,3,115, | ||
16517 | 0,327,3,116,0, | ||
16518 | 327,3,117,0,327, | ||
16519 | 3,118,0,327,3, | ||
16520 | 119,0,327,3,120, | ||
16521 | 0,327,3,121,0, | ||
16522 | 327,3,122,0,327, | ||
16523 | 3,48,0,327,3, | ||
16524 | 49,0,327,3,50, | ||
16525 | 0,327,3,51,0, | ||
16526 | 327,3,52,0,327, | ||
16527 | 3,53,0,327,3, | ||
16528 | 54,0,327,3,55, | ||
16529 | 0,327,3,56,0, | ||
16530 | 327,3,57,0,327, | ||
16531 | 3,65,0,327,3, | ||
16532 | 66,0,327,3,67, | ||
16533 | 0,327,3,68,0, | ||
16534 | 327,3,69,0,327, | ||
16535 | 3,70,0,327,3, | ||
16536 | 71,0,327,3,72, | ||
16537 | 0,327,3,73,0, | ||
16538 | 327,3,74,0,327, | ||
16539 | 3,75,0,327,3, | ||
16540 | 76,0,327,3,77, | ||
16541 | 0,327,3,78,0, | ||
16542 | 327,3,79,0,327, | ||
16543 | 3,80,0,327,3, | ||
16544 | 81,0,327,3,82, | ||
16545 | 0,327,3,83,0, | ||
16546 | 327,3,84,0,327, | ||
16547 | 3,85,0,327,3, | ||
16548 | 86,0,327,3,87, | ||
16549 | 0,327,3,88,0, | ||
16550 | 327,3,89,0,327, | ||
16551 | 3,90,0,327,3, | ||
16552 | 95,0,327,3,97, | ||
16553 | 0,327,3,98,0, | ||
16554 | 327,3,99,0,327, | ||
16555 | 3,100,0,327,3, | ||
16556 | 101,0,327,3,102, | ||
16557 | 0,327,3,103,0, | ||
16558 | 327,3,104,0,327, | ||
16559 | 3,105,0,327,3, | ||
16560 | 106,0,327,3,107, | ||
16561 | 0,327,3,108,0, | ||
16562 | 327,1228,11,1,829, | ||
16563 | 0,330,1,-1,3, | ||
16564 | 102,0,327,3,103, | ||
16565 | 0,327,3,104,0, | ||
16566 | 327,3,105,0,327, | ||
16567 | 3,106,0,327,3, | ||
16568 | 107,0,327,3,108, | ||
16569 | 0,327,1229,11,1, | ||
16570 | 829,0,330,1,-1, | ||
16571 | 3,116,0,1230,12, | ||
16572 | 1,17447,1231,5,63, | ||
16573 | 3,109,0,327,3, | ||
16574 | 110,0,327,3,111, | ||
16575 | 0,1232,12,1,17477, | ||
16576 | 1233,5,63,3,109, | ||
16577 | 0,327,3,110,0, | ||
16578 | 327,3,111,0,327, | ||
16579 | 3,112,0,327,3, | ||
16580 | 113,0,327,3,114, | ||
16581 | 0,327,3,115,0, | ||
16582 | 327,3,116,0,327, | ||
16583 | 3,117,0,1234,12, | ||
16584 | 1,17513,1235,5,63, | ||
16585 | 3,109,0,327,3, | ||
16586 | 110,0,327,3,111, | ||
16587 | 0,327,3,112,0, | ||
16588 | 327,3,113,0,327, | ||
16589 | 3,114,0,327,3, | ||
16590 | 115,0,327,3,116, | ||
16591 | 0,327,3,117,0, | ||
16592 | 327,3,118,0,327, | ||
16593 | 3,119,0,327,3, | ||
16594 | 120,0,327,3,121, | ||
16595 | 0,327,3,122,0, | ||
16596 | 327,3,48,0,327, | ||
16597 | 3,49,0,327,3, | ||
16598 | 50,0,327,3,51, | ||
16599 | 0,327,3,52,0, | ||
16600 | 327,3,53,0,327, | ||
16601 | 3,54,0,327,3, | ||
16602 | 55,0,327,3,56, | ||
16603 | 0,327,3,57,0, | ||
16604 | 327,3,65,0,327, | ||
16605 | 3,66,0,327,3, | ||
16606 | 67,0,327,3,68, | ||
16607 | 0,327,3,69,0, | ||
16608 | 327,3,70,0,327, | ||
16609 | 3,71,0,327,3, | ||
16610 | 72,0,327,3,73, | ||
16611 | 0,327,3,74,0, | ||
16612 | 327,3,75,0,327, | ||
16613 | 3,76,0,327,3, | ||
16614 | 77,0,327,3,78, | ||
16615 | 0,327,3,79,0, | ||
16616 | 327,3,80,0,327, | ||
16617 | 3,81,0,327,3, | ||
16618 | 82,0,327,3,83, | ||
16619 | 0,327,3,84,0, | ||
16620 | 327,3,85,0,327, | ||
16621 | 3,86,0,327,3, | ||
16622 | 87,0,327,3,88, | ||
16623 | 0,327,3,89,0, | ||
16624 | 327,3,90,0,327, | ||
16625 | 3,95,0,327,3, | ||
16626 | 97,0,327,3,98, | ||
16627 | 0,327,3,99,0, | ||
16628 | 1236,12,1,17558,1237, | ||
16629 | 5,63,3,109,0, | ||
16630 | 327,3,110,0,327, | ||
16631 | 3,111,0,327,3, | ||
16632 | 112,0,327,3,113, | ||
16633 | 0,327,3,114,0, | ||
16634 | 327,3,115,0,327, | ||
16635 | 3,116,0,327,3, | ||
16636 | 117,0,327,3,118, | ||
16637 | 0,327,3,119,0, | ||
16638 | 327,3,120,0,327, | ||
16639 | 3,121,0,327,3, | ||
16640 | 122,0,327,3,48, | ||
16641 | 0,327,3,49,0, | ||
16642 | 327,3,50,0,327, | ||
16643 | 3,51,0,327,3, | ||
16644 | 52,0,327,3,53, | ||
16645 | 0,327,3,54,0, | ||
16646 | 327,3,55,0,327, | ||
16647 | 3,56,0,327,3, | ||
16648 | 57,0,327,3,65, | ||
16649 | 0,327,3,66,0, | ||
16650 | 327,3,67,0,327, | ||
16651 | 3,68,0,327,3, | ||
16652 | 69,0,327,3,70, | ||
16653 | 0,327,3,71,0, | ||
16654 | 327,3,72,0,327, | ||
16655 | 3,73,0,327,3, | ||
16656 | 74,0,327,3,75, | ||
16657 | 0,327,3,76,0, | ||
16658 | 327,3,77,0,327, | ||
16659 | 3,78,0,327,3, | ||
16660 | 79,0,327,3,80, | ||
16661 | 0,327,3,81,0, | ||
16662 | 327,3,82,0,327, | ||
16663 | 3,83,0,327,3, | ||
16664 | 84,0,327,3,85, | ||
16665 | 0,327,3,86,0, | ||
16666 | 327,3,87,0,327, | ||
16667 | 3,88,0,327,3, | ||
16668 | 89,0,327,3,90, | ||
16669 | 0,327,3,95,0, | ||
16670 | 327,3,97,0,327, | ||
16671 | 3,98,0,327,3, | ||
16672 | 99,0,327,3,100, | ||
16673 | 0,327,3,101,0, | ||
16674 | 327,3,102,0,327, | ||
16675 | 3,103,0,327,3, | ||
16676 | 104,0,1238,12,1, | ||
16677 | 17608,1239,5,63,3, | ||
16678 | 109,0,327,3,110, | ||
16679 | 0,327,3,111,0, | ||
16680 | 327,3,112,0,327, | ||
16681 | 3,113,0,327,3, | ||
16682 | 114,0,327,3,115, | ||
16683 | 0,327,3,116,0, | ||
16684 | 327,3,117,0,327, | ||
16685 | 3,118,0,327,3, | ||
16686 | 119,0,327,3,120, | ||
16687 | 0,327,3,121,0, | ||
16688 | 327,3,122,0,327, | ||
16689 | 3,48,0,327,3, | ||
16690 | 49,0,327,3,50, | ||
16691 | 0,327,3,51,0, | ||
16692 | 327,3,52,0,327, | ||
16693 | 3,53,0,327,3, | ||
16694 | 54,0,327,3,55, | ||
16695 | 0,327,3,56,0, | ||
16696 | 327,3,57,0,327, | ||
16697 | 3,65,0,327,3, | ||
16698 | 66,0,327,3,67, | ||
16699 | 0,327,3,68,0, | ||
16700 | 327,3,69,0,327, | ||
16701 | 3,70,0,327,3, | ||
16702 | 71,0,327,3,72, | ||
16703 | 0,327,3,73,0, | ||
16704 | 327,3,74,0,327, | ||
16705 | 3,75,0,327,3, | ||
16706 | 76,0,327,3,77, | ||
16707 | 0,327,3,78,0, | ||
16708 | 327,3,79,0,327, | ||
16709 | 3,80,0,327,3, | ||
16710 | 81,0,327,3,82, | ||
16711 | 0,327,3,83,0, | ||
16712 | 327,3,84,0,327, | ||
16713 | 3,85,0,327,3, | ||
16714 | 86,0,327,3,87, | ||
16715 | 0,327,3,88,0, | ||
16716 | 327,3,89,0,327, | ||
16717 | 3,90,0,327,3, | ||
16718 | 95,0,1240,12,1, | ||
16719 | 17694,1241,5,63,3, | ||
16720 | 109,0,327,3,110, | ||
16721 | 0,327,3,111,0, | ||
16722 | 327,3,112,0,327, | ||
16723 | 3,113,0,327,3, | ||
16724 | 114,0,327,3,115, | ||
16725 | 0,1242,12,1,17728, | ||
16726 | 1243,5,63,3,109, | ||
16727 | 0,327,3,110,0, | ||
16728 | 327,3,111,0,327, | ||
16729 | 3,112,0,327,3, | ||
16730 | 113,0,327,3,114, | ||
16731 | 0,327,3,115,0, | ||
16732 | 327,3,116,0,1244, | ||
16733 | 12,1,17763,1245,5, | ||
16734 | 63,3,109,0,327, | ||
16735 | 3,110,0,327,3, | ||
16736 | 111,0,327,3,112, | ||
16737 | 0,327,3,113,0, | ||
16738 | 327,3,114,0,327, | ||
16739 | 3,115,0,327,3, | ||
16740 | 116,0,327,3,117, | ||
16741 | 0,327,3,118,0, | ||
16742 | 327,3,119,0,327, | ||
16743 | 3,120,0,327,3, | ||
16744 | 121,0,327,3,122, | ||
16745 | 0,327,3,48,0, | ||
16746 | 327,3,49,0,327, | ||
16747 | 3,50,0,327,3, | ||
16748 | 51,0,327,3,52, | ||
16749 | 0,327,3,53,0, | ||
16750 | 327,3,54,0,327, | ||
16751 | 3,55,0,327,3, | ||
16752 | 56,0,327,3,57, | ||
16753 | 0,327,3,65,0, | ||
16754 | 327,3,66,0,327, | ||
16755 | 3,67,0,327,3, | ||
16756 | 68,0,327,3,69, | ||
16757 | 0,327,3,70,0, | ||
16758 | 327,3,71,0,327, | ||
16759 | 3,72,0,327,3, | ||
16760 | 73,0,327,3,74, | ||
16761 | 0,327,3,75,0, | ||
16762 | 327,3,76,0,327, | ||
16763 | 3,77,0,327,3, | ||
16764 | 78,0,327,3,79, | ||
16765 | 0,327,3,80,0, | ||
16766 | 327,3,81,0,327, | ||
16767 | 3,82,0,327,3, | ||
16768 | 83,0,327,3,84, | ||
16769 | 0,327,3,85,0, | ||
16770 | 327,3,86,0,327, | ||
16771 | 3,87,0,327,3, | ||
16772 | 88,0,327,3,89, | ||
16773 | 0,327,3,90,0, | ||
16774 | 327,3,95,0,327, | ||
16775 | 3,97,0,1246,12, | ||
16776 | 1,17806,1247,5,63, | ||
16777 | 3,109,0,327,3, | ||
16778 | 110,0,327,3,111, | ||
16779 | 0,327,3,112,0, | ||
16780 | 327,3,113,0,327, | ||
16781 | 3,114,0,1248,12, | ||
16782 | 1,17839,1249,5,63, | ||
16783 | 3,109,0,327,3, | ||
16784 | 110,0,327,3,111, | ||
16785 | 0,327,3,112,0, | ||
16786 | 327,3,113,0,327, | ||
16787 | 3,114,0,327,3, | ||
16788 | 115,0,327,3,116, | ||
16789 | 0,1250,12,1,17874, | ||
16790 | 1251,5,63,3,109, | ||
16791 | 0,327,3,110,0, | ||
16792 | 327,3,111,0,327, | ||
16793 | 3,112,0,327,3, | ||
16794 | 113,0,327,3,114, | ||
16795 | 0,327,3,115,0, | ||
16796 | 327,3,116,0,327, | ||
16797 | 3,117,0,327,3, | ||
16798 | 118,0,327,3,119, | ||
16799 | 0,327,3,120,0, | ||
16800 | 327,3,121,0,327, | ||
16801 | 3,122,0,327,3, | ||
16802 | 48,0,327,3,49, | ||
16803 | 0,327,3,50,0, | ||
16804 | 327,3,51,0,327, | ||
16805 | 3,52,0,327,3, | ||
16806 | 53,0,327,3,54, | ||
16807 | 0,327,3,55,0, | ||
16808 | 327,3,56,0,327, | ||
16809 | 3,57,0,327,3, | ||
16810 | 65,0,327,3,66, | ||
16811 | 0,327,3,67,0, | ||
16812 | 327,3,68,0,327, | ||
16813 | 3,69,0,327,3, | ||
16814 | 70,0,327,3,71, | ||
16815 | 0,327,3,72,0, | ||
16816 | 327,3,73,0,327, | ||
16817 | 3,74,0,327,3, | ||
16818 | 75,0,327,3,76, | ||
16819 | 0,327,3,77,0, | ||
16820 | 327,3,78,0,327, | ||
16821 | 3,79,0,327,3, | ||
16822 | 80,0,327,3,81, | ||
16823 | 0,327,3,82,0, | ||
16824 | 327,3,83,0,327, | ||
16825 | 3,84,0,327,3, | ||
16826 | 85,0,327,3,86, | ||
16827 | 0,327,3,87,0, | ||
16828 | 327,3,88,0,327, | ||
16829 | 3,89,0,327,3, | ||
16830 | 90,0,327,3,95, | ||
16831 | 0,327,3,97,0, | ||
16832 | 327,3,98,0,327, | ||
16833 | 3,99,0,327,3, | ||
16834 | 100,0,327,3,101, | ||
16835 | 0,327,3,102,0, | ||
16836 | 327,3,103,0,327, | ||
16837 | 3,104,0,327,3, | ||
16838 | 105,0,327,3,106, | ||
16839 | 0,327,3,107,0, | ||
16840 | 327,3,108,0,327, | ||
16841 | 1252,11,1,801,0, | ||
16842 | 1253,4,34,84,0, | ||
16843 | 79,0,85,0,67, | ||
16844 | 0,72,0,95,0, | ||
16845 | 83,0,84,0,65, | ||
16846 | 0,82,0,84,0, | ||
16847 | 95,0,69,0,86, | ||
16848 | 0,69,0,78,0, | ||
16849 | 84,0,1,-1,3, | ||
16850 | 117,0,327,3,118, | ||
16851 | 0,327,3,119,0, | ||
16852 | 327,3,120,0,327, | ||
16853 | 3,121,0,327,3, | ||
16854 | 122,0,327,3,48, | ||
16855 | 0,327,3,49,0, | ||
16856 | 327,3,50,0,327, | ||
16857 | 3,51,0,327,3, | ||
16858 | 52,0,327,3,53, | ||
16859 | 0,327,3,54,0, | ||
16860 | 327,3,55,0,327, | ||
16861 | 3,56,0,327,3, | ||
16862 | 57,0,327,3,65, | ||
16863 | 0,327,3,66,0, | ||
16864 | 327,3,67,0,327, | ||
16865 | 3,68,0,327,3, | ||
16866 | 69,0,327,3,70, | ||
16867 | 0,327,3,71,0, | ||
16868 | 327,3,72,0,327, | ||
16869 | 3,73,0,327,3, | ||
16870 | 74,0,327,3,75, | ||
16871 | 0,327,3,76,0, | ||
16872 | 327,3,77,0,327, | ||
16873 | 3,78,0,327,3, | ||
16874 | 79,0,327,3,80, | ||
16875 | 0,327,3,81,0, | ||
16876 | 327,3,82,0,327, | ||
16877 | 3,83,0,327,3, | ||
16878 | 84,0,327,3,85, | ||
16879 | 0,327,3,86,0, | ||
16880 | 327,3,87,0,327, | ||
16881 | 3,88,0,327,3, | ||
16882 | 89,0,327,3,90, | ||
16883 | 0,327,3,95,0, | ||
16884 | 327,3,97,0,327, | ||
16885 | 3,98,0,327,3, | ||
16886 | 99,0,327,3,100, | ||
16887 | 0,327,3,101,0, | ||
16888 | 327,3,102,0,327, | ||
16889 | 3,103,0,327,3, | ||
16890 | 104,0,327,3,105, | ||
16891 | 0,327,3,106,0, | ||
16892 | 327,3,107,0,327, | ||
16893 | 3,108,0,327,1254, | ||
16894 | 11,1,829,0,330, | ||
16895 | 1,-1,3,115,0, | ||
16896 | 327,3,116,0,327, | ||
16897 | 3,117,0,327,3, | ||
16898 | 118,0,327,3,119, | ||
16899 | 0,327,3,120,0, | ||
16900 | 327,3,121,0,327, | ||
16901 | 3,122,0,327,3, | ||
16902 | 48,0,327,3,49, | ||
16903 | 0,327,3,50,0, | ||
16904 | 327,3,51,0,327, | ||
16905 | 3,52,0,327,3, | ||
16906 | 53,0,327,3,54, | ||
16907 | 0,327,3,55,0, | ||
16908 | 327,3,56,0,327, | ||
16909 | 3,57,0,327,3, | ||
16910 | 65,0,327,3,66, | ||
16911 | 0,327,3,67,0, | ||
16912 | 327,3,68,0,327, | ||
16913 | 3,69,0,327,3, | ||
16914 | 70,0,327,3,71, | ||
16915 | 0,327,3,72,0, | ||
16916 | 327,3,73,0,327, | ||
16917 | 3,74,0,327,3, | ||
16918 | 75,0,327,3,76, | ||
16919 | 0,327,3,77,0, | ||
16920 | 327,3,78,0,327, | ||
16921 | 3,79,0,327,3, | ||
16922 | 80,0,327,3,81, | ||
16923 | 0,327,3,82,0, | ||
16924 | 327,3,83,0,327, | ||
16925 | 3,84,0,327,3, | ||
16926 | 85,0,327,3,86, | ||
16927 | 0,327,3,87,0, | ||
16928 | 327,3,88,0,327, | ||
16929 | 3,89,0,327,3, | ||
16930 | 90,0,327,3,95, | ||
16931 | 0,327,3,97,0, | ||
16932 | 327,3,98,0,327, | ||
16933 | 3,99,0,327,3, | ||
16934 | 100,0,327,3,101, | ||
16935 | 0,327,3,102,0, | ||
16936 | 327,3,103,0,327, | ||
16937 | 3,104,0,327,3, | ||
16938 | 105,0,327,3,106, | ||
16939 | 0,327,3,107,0, | ||
16940 | 327,3,108,0,327, | ||
16941 | 1255,11,1,829,0, | ||
16942 | 330,1,-1,3,98, | ||
16943 | 0,327,3,99,0, | ||
16944 | 327,3,100,0,327, | ||
16945 | 3,101,0,327,3, | ||
16946 | 102,0,327,3,103, | ||
16947 | 0,327,3,104,0, | ||
16948 | 327,3,105,0,327, | ||
16949 | 3,106,0,327,3, | ||
16950 | 107,0,327,3,108, | ||
16951 | 0,327,1256,11,1, | ||
16952 | 829,0,330,1,-1, | ||
16953 | 3,117,0,327,3, | ||
16954 | 118,0,327,3,119, | ||
16955 | 0,327,3,120,0, | ||
16956 | 327,3,121,0,327, | ||
16957 | 3,122,0,327,3, | ||
16958 | 48,0,327,3,49, | ||
16959 | 0,327,3,50,0, | ||
16960 | 327,3,51,0,327, | ||
16961 | 3,52,0,327,3, | ||
16962 | 53,0,327,3,54, | ||
16963 | 0,327,3,55,0, | ||
16964 | 327,3,56,0,327, | ||
16965 | 3,57,0,327,3, | ||
16966 | 65,0,327,3,66, | ||
16967 | 0,327,3,67,0, | ||
16968 | 327,3,68,0,327, | ||
16969 | 3,69,0,327,3, | ||
16970 | 70,0,327,3,71, | ||
16971 | 0,327,3,72,0, | ||
16972 | 327,3,73,0,327, | ||
16973 | 3,74,0,327,3, | ||
16974 | 75,0,327,3,76, | ||
16975 | 0,327,3,77,0, | ||
16976 | 327,3,78,0,327, | ||
16977 | 3,79,0,327,3, | ||
16978 | 80,0,327,3,81, | ||
16979 | 0,327,3,82,0, | ||
16980 | 327,3,83,0,327, | ||
16981 | 3,84,0,327,3, | ||
16982 | 85,0,327,3,86, | ||
16983 | 0,327,3,87,0, | ||
16984 | 327,3,88,0,327, | ||
16985 | 3,89,0,327,3, | ||
16986 | 90,0,327,3,95, | ||
16987 | 0,327,3,97,0, | ||
16988 | 327,3,98,0,327, | ||
16989 | 3,99,0,327,3, | ||
16990 | 100,0,327,3,101, | ||
16991 | 0,327,3,102,0, | ||
16992 | 327,3,103,0,327, | ||
16993 | 3,104,0,327,3, | ||
16994 | 105,0,327,3,106, | ||
16995 | 0,327,3,107,0, | ||
16996 | 327,3,108,0,327, | ||
16997 | 1257,11,1,829,0, | ||
16998 | 330,1,-1,3,116, | ||
16999 | 0,327,3,117,0, | ||
17000 | 327,3,118,0,327, | ||
17001 | 3,119,0,327,3, | ||
17002 | 120,0,327,3,121, | ||
17003 | 0,327,3,122,0, | ||
17004 | 327,3,48,0,327, | ||
17005 | 3,49,0,327,3, | ||
17006 | 50,0,327,3,51, | ||
17007 | 0,327,3,52,0, | ||
17008 | 327,3,53,0,327, | ||
17009 | 3,54,0,327,3, | ||
17010 | 55,0,327,3,56, | ||
17011 | 0,327,3,57,0, | ||
17012 | 327,3,65,0,327, | ||
17013 | 3,66,0,327,3, | ||
17014 | 67,0,327,3,68, | ||
17015 | 0,327,3,69,0, | ||
17016 | 327,3,70,0,327, | ||
17017 | 3,71,0,327,3, | ||
17018 | 72,0,327,3,73, | ||
17019 | 0,327,3,74,0, | ||
17020 | 327,3,75,0,327, | ||
17021 | 3,76,0,327,3, | ||
17022 | 77,0,327,3,78, | ||
17023 | 0,327,3,79,0, | ||
17024 | 327,3,80,0,327, | ||
17025 | 3,81,0,327,3, | ||
17026 | 82,0,327,3,83, | ||
17027 | 0,327,3,84,0, | ||
17028 | 327,3,85,0,327, | ||
17029 | 3,86,0,327,3, | ||
17030 | 87,0,327,3,88, | ||
17031 | 0,327,3,89,0, | ||
17032 | 327,3,90,0,327, | ||
17033 | 3,95,0,327,3, | ||
17034 | 97,0,327,3,98, | ||
17035 | 0,327,3,99,0, | ||
17036 | 327,3,100,0,327, | ||
17037 | 3,101,0,1258,12, | ||
17038 | 1,18341,1259,5,63, | ||
17039 | 3,109,0,327,3, | ||
17040 | 110,0,1260,12,1, | ||
17041 | 18370,1261,5,63,3, | ||
17042 | 109,0,327,3,110, | ||
17043 | 0,327,3,111,0, | ||
17044 | 327,3,112,0,327, | ||
17045 | 3,113,0,327,3, | ||
17046 | 114,0,327,3,115, | ||
17047 | 0,327,3,116,0, | ||
17048 | 327,3,117,0,327, | ||
17049 | 3,118,0,327,3, | ||
17050 | 119,0,327,3,120, | ||
17051 | 0,327,3,121,0, | ||
17052 | 327,3,122,0,327, | ||
17053 | 3,48,0,327,3, | ||
17054 | 49,0,327,3,50, | ||
17055 | 0,327,3,51,0, | ||
17056 | 327,3,52,0,327, | ||
17057 | 3,53,0,327,3, | ||
17058 | 54,0,327,3,55, | ||
17059 | 0,327,3,56,0, | ||
17060 | 327,3,57,0,327, | ||
17061 | 3,65,0,327,3, | ||
17062 | 66,0,327,3,67, | ||
17063 | 0,327,3,68,0, | ||
17064 | 327,3,69,0,327, | ||
17065 | 3,70,0,327,3, | ||
17066 | 71,0,327,3,72, | ||
17067 | 0,327,3,73,0, | ||
17068 | 327,3,74,0,327, | ||
17069 | 3,75,0,327,3, | ||
17070 | 76,0,327,3,77, | ||
17071 | 0,327,3,78,0, | ||
17072 | 327,3,79,0,327, | ||
17073 | 3,80,0,327,3, | ||
17074 | 81,0,327,3,82, | ||
17075 | 0,327,3,83,0, | ||
17076 | 327,3,84,0,327, | ||
17077 | 3,85,0,327,3, | ||
17078 | 86,0,327,3,87, | ||
17079 | 0,327,3,88,0, | ||
17080 | 327,3,89,0,327, | ||
17081 | 3,90,0,327,3, | ||
17082 | 95,0,327,3,97, | ||
17083 | 0,327,3,98,0, | ||
17084 | 327,3,99,0,327, | ||
17085 | 3,100,0,1262,12, | ||
17086 | 1,18416,1263,5,63, | ||
17087 | 3,109,0,327,3, | ||
17088 | 110,0,327,3,111, | ||
17089 | 0,327,3,112,0, | ||
17090 | 327,3,113,0,327, | ||
17091 | 3,114,0,327,3, | ||
17092 | 115,0,327,3,116, | ||
17093 | 0,327,3,117,0, | ||
17094 | 327,3,118,0,327, | ||
17095 | 3,119,0,327,3, | ||
17096 | 120,0,327,3,121, | ||
17097 | 0,327,3,122,0, | ||
17098 | 327,3,48,0,327, | ||
17099 | 3,49,0,327,3, | ||
17100 | 50,0,327,3,51, | ||
17101 | 0,327,3,52,0, | ||
17102 | 327,3,53,0,327, | ||
17103 | 3,54,0,327,3, | ||
17104 | 55,0,327,3,56, | ||
17105 | 0,327,3,57,0, | ||
17106 | 327,3,65,0,327, | ||
17107 | 3,66,0,327,3, | ||
17108 | 67,0,327,3,68, | ||
17109 | 0,327,3,69,0, | ||
17110 | 327,3,70,0,327, | ||
17111 | 3,71,0,327,3, | ||
17112 | 72,0,327,3,73, | ||
17113 | 0,327,3,74,0, | ||
17114 | 327,3,75,0,327, | ||
17115 | 3,76,0,327,3, | ||
17116 | 77,0,327,3,78, | ||
17117 | 0,327,3,79,0, | ||
17118 | 327,3,80,0,327, | ||
17119 | 3,81,0,327,3, | ||
17120 | 82,0,327,3,83, | ||
17121 | 0,327,3,84,0, | ||
17122 | 327,3,85,0,327, | ||
17123 | 3,86,0,327,3, | ||
17124 | 87,0,327,3,88, | ||
17125 | 0,327,3,89,0, | ||
17126 | 327,3,90,0,327, | ||
17127 | 3,95,0,327,3, | ||
17128 | 97,0,327,3,98, | ||
17129 | 0,327,3,99,0, | ||
17130 | 327,3,100,0,327, | ||
17131 | 3,101,0,327,3, | ||
17132 | 102,0,327,3,103, | ||
17133 | 0,327,3,104,0, | ||
17134 | 327,3,105,0,327, | ||
17135 | 3,106,0,327,3, | ||
17136 | 107,0,327,3,108, | ||
17137 | 0,327,1264,11,1, | ||
17138 | 816,0,1265,4,30, | ||
17139 | 84,0,79,0,85, | ||
17140 | 0,67,0,72,0, | ||
17141 | 95,0,69,0,78, | ||
17142 | 0,68,0,95,0, | ||
17143 | 69,0,86,0,69, | ||
17144 | 0,78,0,84,0, | ||
17145 | 1,-1,3,101,0, | ||
17146 | 327,3,102,0,327, | ||
17147 | 3,103,0,327,3, | ||
17148 | 104,0,327,3,105, | ||
17149 | 0,327,3,106,0, | ||
17150 | 327,3,107,0,327, | ||
17151 | 3,108,0,327,1266, | ||
17152 | 11,1,829,0,330, | ||
17153 | 1,-1,3,111,0, | ||
17154 | 327,3,112,0,327, | ||
17155 | 3,113,0,327,3, | ||
17156 | 114,0,327,3,115, | ||
17157 | 0,327,3,116,0, | ||
17158 | 327,3,117,0,327, | ||
17159 | 3,118,0,327,3, | ||
17160 | 119,0,327,3,120, | ||
17161 | 0,327,3,121,0, | ||
17162 | 327,3,122,0,327, | ||
17163 | 3,48,0,327,3, | ||
17164 | 49,0,327,3,50, | ||
17165 | 0,327,3,51,0, | ||
17166 | 327,3,52,0,327, | ||
17167 | 3,53,0,327,3, | ||
17168 | 54,0,327,3,55, | ||
17169 | 0,327,3,56,0, | ||
17170 | 327,3,57,0,327, | ||
17171 | 3,65,0,327,3, | ||
17172 | 66,0,327,3,67, | ||
17173 | 0,327,3,68,0, | ||
17174 | 327,3,69,0,327, | ||
17175 | 3,70,0,327,3, | ||
17176 | 71,0,327,3,72, | ||
17177 | 0,327,3,73,0, | ||
17178 | 327,3,74,0,327, | ||
17179 | 3,75,0,327,3, | ||
17180 | 76,0,327,3,77, | ||
17181 | 0,327,3,78,0, | ||
17182 | 327,3,79,0,327, | ||
17183 | 3,80,0,327,3, | ||
17184 | 81,0,327,3,82, | ||
17185 | 0,327,3,83,0, | ||
17186 | 327,3,84,0,327, | ||
17187 | 3,85,0,327,3, | ||
17188 | 86,0,327,3,87, | ||
17189 | 0,327,3,88,0, | ||
17190 | 327,3,89,0,327, | ||
17191 | 3,90,0,327,3, | ||
17192 | 95,0,327,3,97, | ||
17193 | 0,327,3,98,0, | ||
17194 | 327,3,99,0,327, | ||
17195 | 3,100,0,327,3, | ||
17196 | 101,0,327,3,102, | ||
17197 | 0,327,3,103,0, | ||
17198 | 327,3,104,0,327, | ||
17199 | 3,105,0,327,3, | ||
17200 | 106,0,327,3,107, | ||
17201 | 0,327,3,108,0, | ||
17202 | 327,1267,11,1,829, | ||
17203 | 0,330,1,-1,3, | ||
17204 | 102,0,327,3,103, | ||
17205 | 0,327,3,104,0, | ||
17206 | 327,3,105,0,327, | ||
17207 | 3,106,0,327,3, | ||
17208 | 107,0,327,3,108, | ||
17209 | 0,327,1268,11,1, | ||
17210 | 829,0,330,1,-1, | ||
17211 | 3,97,0,327,3, | ||
17212 | 98,0,327,3,99, | ||
17213 | 0,327,3,100,0, | ||
17214 | 327,3,101,0,327, | ||
17215 | 3,102,0,327,3, | ||
17216 | 103,0,327,3,104, | ||
17217 | 0,327,3,105,0, | ||
17218 | 327,3,106,0,327, | ||
17219 | 3,107,0,327,3, | ||
17220 | 108,0,327,1269,11, | ||
17221 | 1,792,0,1270,4, | ||
17222 | 22,84,0,79,0, | ||
17223 | 85,0,67,0,72, | ||
17224 | 0,95,0,69,0, | ||
17225 | 86,0,69,0,78, | ||
17226 | 0,84,0,1,-1, | ||
17227 | 3,105,0,327,3, | ||
17228 | 106,0,327,3,107, | ||
17229 | 0,327,3,108,0, | ||
17230 | 327,1271,11,1,829, | ||
17231 | 0,330,1,-1,3, | ||
17232 | 100,0,327,3,101, | ||
17233 | 0,327,3,102,0, | ||
17234 | 327,3,103,0,327, | ||
17235 | 3,104,0,327,3, | ||
17236 | 105,0,327,3,106, | ||
17237 | 0,327,3,107,0, | ||
17238 | 327,3,108,0,327, | ||
17239 | 1272,11,1,829,0, | ||
17240 | 330,1,-1,3,118, | ||
17241 | 0,327,3,119,0, | ||
17242 | 327,3,120,0,327, | ||
17243 | 3,121,0,327,3, | ||
17244 | 122,0,327,3,48, | ||
17245 | 0,327,3,49,0, | ||
17246 | 327,3,50,0,327, | ||
17247 | 3,51,0,327,3, | ||
17248 | 52,0,327,3,53, | ||
17249 | 0,327,3,54,0, | ||
17250 | 327,3,55,0,327, | ||
17251 | 3,56,0,327,3, | ||
17252 | 57,0,327,3,65, | ||
17253 | 0,327,3,66,0, | ||
17254 | 327,3,67,0,327, | ||
17255 | 3,68,0,327,3, | ||
17256 | 69,0,327,3,70, | ||
17257 | 0,327,3,71,0, | ||
17258 | 327,3,72,0,327, | ||
17259 | 3,73,0,327,3, | ||
17260 | 74,0,327,3,75, | ||
17261 | 0,327,3,76,0, | ||
17262 | 327,3,77,0,327, | ||
17263 | 3,78,0,327,3, | ||
17264 | 79,0,327,3,80, | ||
17265 | 0,327,3,81,0, | ||
17266 | 327,3,82,0,327, | ||
17267 | 3,83,0,327,3, | ||
17268 | 84,0,327,3,85, | ||
17269 | 0,327,3,86,0, | ||
17270 | 327,3,87,0,327, | ||
17271 | 3,88,0,327,3, | ||
17272 | 89,0,327,3,90, | ||
17273 | 0,327,3,95,0, | ||
17274 | 327,3,97,0,327, | ||
17275 | 3,98,0,327,3, | ||
17276 | 99,0,327,3,100, | ||
17277 | 0,327,3,101,0, | ||
17278 | 327,3,102,0,327, | ||
17279 | 3,103,0,327,3, | ||
17280 | 104,0,327,3,105, | ||
17281 | 0,327,3,106,0, | ||
17282 | 327,3,107,0,327, | ||
17283 | 3,108,0,327,1273, | ||
17284 | 11,1,829,0,330, | ||
17285 | 1,-1,3,112,0, | ||
17286 | 327,3,113,0,327, | ||
17287 | 3,114,0,327,3, | ||
17288 | 115,0,327,3,116, | ||
17289 | 0,327,3,117,0, | ||
17290 | 327,3,118,0,327, | ||
17291 | 3,119,0,327,3, | ||
17292 | 120,0,327,3,121, | ||
17293 | 0,327,3,122,0, | ||
17294 | 327,3,48,0,327, | ||
17295 | 3,49,0,327,3, | ||
17296 | 50,0,327,3,51, | ||
17297 | 0,327,3,52,0, | ||
17298 | 327,3,53,0,327, | ||
17299 | 3,54,0,327,3, | ||
17300 | 55,0,327,3,56, | ||
17301 | 0,327,3,57,0, | ||
17302 | 327,3,65,0,327, | ||
17303 | 3,66,0,327,3, | ||
17304 | 67,0,327,3,68, | ||
17305 | 0,327,3,69,0, | ||
17306 | 327,3,70,0,327, | ||
17307 | 3,71,0,327,3, | ||
17308 | 72,0,327,3,73, | ||
17309 | 0,327,3,74,0, | ||
17310 | 327,3,75,0,327, | ||
17311 | 3,76,0,327,3, | ||
17312 | 77,0,327,3,78, | ||
17313 | 0,327,3,79,0, | ||
17314 | 327,3,80,0,327, | ||
17315 | 3,81,0,327,3, | ||
17316 | 82,0,327,3,83, | ||
17317 | 0,327,3,84,0, | ||
17318 | 327,3,85,0,327, | ||
17319 | 3,86,0,327,3, | ||
17320 | 87,0,327,3,88, | ||
17321 | 0,327,3,89,0, | ||
17322 | 327,3,90,0,327, | ||
17323 | 3,95,0,327,3, | ||
17324 | 97,0,327,3,98, | ||
17325 | 0,327,3,99,0, | ||
17326 | 327,3,100,0,327, | ||
17327 | 3,101,0,327,3, | ||
17328 | 102,0,327,3,103, | ||
17329 | 0,327,3,104,0, | ||
17330 | 327,3,105,0,1274, | ||
17331 | 12,1,19058,1275,5, | ||
17332 | 63,3,109,0,1276, | ||
17333 | 12,1,19086,1277,5, | ||
17334 | 63,3,109,0,327, | ||
17335 | 3,110,0,327,3, | ||
17336 | 111,0,327,3,112, | ||
17337 | 0,327,3,113,0, | ||
17338 | 327,3,114,0,327, | ||
17339 | 3,115,0,327,3, | ||
17340 | 116,0,327,3,117, | ||
17341 | 0,327,3,118,0, | ||
17342 | 327,3,119,0,327, | ||
17343 | 3,120,0,327,3, | ||
17344 | 121,0,327,3,122, | ||
17345 | 0,327,3,48,0, | ||
17346 | 327,3,49,0,327, | ||
17347 | 3,50,0,327,3, | ||
17348 | 51,0,327,3,52, | ||
17349 | 0,327,3,53,0, | ||
17350 | 327,3,54,0,327, | ||
17351 | 3,55,0,327,3, | ||
17352 | 56,0,327,3,57, | ||
17353 | 0,327,3,65,0, | ||
17354 | 327,3,66,0,327, | ||
17355 | 3,67,0,327,3, | ||
17356 | 68,0,327,3,69, | ||
17357 | 0,327,3,70,0, | ||
17358 | 327,3,71,0,327, | ||
17359 | 3,72,0,327,3, | ||
17360 | 73,0,327,3,74, | ||
17361 | 0,327,3,75,0, | ||
17362 | 327,3,76,0,327, | ||
17363 | 3,77,0,327,3, | ||
17364 | 78,0,327,3,79, | ||
17365 | 0,327,3,80,0, | ||
17366 | 327,3,81,0,327, | ||
17367 | 3,82,0,327,3, | ||
17368 | 83,0,327,3,84, | ||
17369 | 0,327,3,85,0, | ||
17370 | 327,3,86,0,327, | ||
17371 | 3,87,0,327,3, | ||
17372 | 88,0,327,3,89, | ||
17373 | 0,327,3,90,0, | ||
17374 | 327,3,95,0,327, | ||
17375 | 3,97,0,327,3, | ||
17376 | 98,0,327,3,99, | ||
17377 | 0,327,3,100,0, | ||
17378 | 327,3,101,0,1278, | ||
17379 | 12,1,19133,1279,5, | ||
17380 | 63,3,109,0,327, | ||
17381 | 3,110,0,327,3, | ||
17382 | 111,0,327,3,112, | ||
17383 | 0,327,3,113,0, | ||
17384 | 327,3,114,0,1280, | ||
17385 | 12,1,19166,1281,5, | ||
17386 | 63,3,109,0,327, | ||
17387 | 3,110,0,327,3, | ||
17388 | 111,0,327,3,112, | ||
17389 | 0,327,3,113,0, | ||
17390 | 327,3,114,0,327, | ||
17391 | 3,115,0,327,3, | ||
17392 | 116,0,327,3,117, | ||
17393 | 0,327,3,118,0, | ||
17394 | 327,3,119,0,327, | ||
17395 | 3,120,0,327,3, | ||
17396 | 121,0,327,3,122, | ||
17397 | 0,327,3,48,0, | ||
17398 | 327,3,49,0,327, | ||
17399 | 3,50,0,327,3, | ||
17400 | 51,0,327,3,52, | ||
17401 | 0,327,3,53,0, | ||
17402 | 327,3,54,0,327, | ||
17403 | 3,55,0,327,3, | ||
17404 | 56,0,327,3,57, | ||
17405 | 0,327,3,65,0, | ||
17406 | 327,3,66,0,327, | ||
17407 | 3,67,0,327,3, | ||
17408 | 68,0,327,3,69, | ||
17409 | 0,327,3,70,0, | ||
17410 | 327,3,71,0,327, | ||
17411 | 3,72,0,327,3, | ||
17412 | 73,0,327,3,74, | ||
17413 | 0,327,3,75,0, | ||
17414 | 327,3,76,0,327, | ||
17415 | 3,77,0,327,3, | ||
17416 | 78,0,327,3,79, | ||
17417 | 0,327,3,80,0, | ||
17418 | 327,3,81,0,327, | ||
17419 | 3,82,0,327,3, | ||
17420 | 83,0,327,3,84, | ||
17421 | 0,327,3,85,0, | ||
17422 | 327,3,86,0,327, | ||
17423 | 3,87,0,327,3, | ||
17424 | 88,0,327,3,89, | ||
17425 | 0,327,3,90,0, | ||
17426 | 327,3,95,0,327, | ||
17427 | 3,97,0,327,3, | ||
17428 | 98,0,327,3,99, | ||
17429 | 0,327,3,100,0, | ||
17430 | 327,3,101,0,327, | ||
17431 | 3,102,0,327,3, | ||
17432 | 103,0,327,3,104, | ||
17433 | 0,327,3,105,0, | ||
17434 | 327,3,106,0,327, | ||
17435 | 3,107,0,327,3, | ||
17436 | 108,0,327,1282,11, | ||
17437 | 1,783,0,1283,4, | ||
17438 | 22,84,0,73,0, | ||
17439 | 77,0,69,0,82, | ||
17440 | 0,95,0,69,0, | ||
17441 | 86,0,69,0,78, | ||
17442 | 0,84,0,1,-1, | ||
17443 | 3,115,0,327,3, | ||
17444 | 116,0,327,3,117, | ||
17445 | 0,327,3,118,0, | ||
17446 | 327,3,119,0,327, | ||
17447 | 3,120,0,327,3, | ||
17448 | 121,0,327,3,122, | ||
17449 | 0,327,3,48,0, | ||
17450 | 327,3,49,0,327, | ||
17451 | 3,50,0,327,3, | ||
17452 | 51,0,327,3,52, | ||
17453 | 0,327,3,53,0, | ||
17454 | 327,3,54,0,327, | ||
17455 | 3,55,0,327,3, | ||
17456 | 56,0,327,3,57, | ||
17457 | 0,327,3,65,0, | ||
17458 | 327,3,66,0,327, | ||
17459 | 3,67,0,327,3, | ||
17460 | 68,0,327,3,69, | ||
17461 | 0,327,3,70,0, | ||
17462 | 327,3,71,0,327, | ||
17463 | 3,72,0,327,3, | ||
17464 | 73,0,327,3,74, | ||
17465 | 0,327,3,75,0, | ||
17466 | 327,3,76,0,327, | ||
17467 | 3,77,0,327,3, | ||
17468 | 78,0,327,3,79, | ||
17469 | 0,327,3,80,0, | ||
17470 | 327,3,81,0,327, | ||
17471 | 3,82,0,327,3, | ||
17472 | 83,0,327,3,84, | ||
17473 | 0,327,3,85,0, | ||
17474 | 327,3,86,0,327, | ||
17475 | 3,87,0,327,3, | ||
17476 | 88,0,327,3,89, | ||
17477 | 0,327,3,90,0, | ||
17478 | 327,3,95,0,327, | ||
17479 | 3,97,0,327,3, | ||
17480 | 98,0,327,3,99, | ||
17481 | 0,327,3,100,0, | ||
17482 | 327,3,101,0,327, | ||
17483 | 3,102,0,327,3, | ||
17484 | 103,0,327,3,104, | ||
17485 | 0,327,3,105,0, | ||
17486 | 327,3,106,0,327, | ||
17487 | 3,107,0,327,3, | ||
17488 | 108,0,327,1284,11, | ||
17489 | 1,829,0,330,1, | ||
17490 | -1,3,102,0,327, | ||
17491 | 3,103,0,327,3, | ||
17492 | 104,0,327,3,105, | ||
17493 | 0,327,3,106,0, | ||
17494 | 327,3,107,0,327, | ||
17495 | 3,108,0,327,1285, | ||
17496 | 11,1,829,0,330, | ||
17497 | 1,-1,3,110,0, | ||
17498 | 327,3,111,0,327, | ||
17499 | 3,112,0,327,3, | ||
17500 | 113,0,327,3,114, | ||
17501 | 0,327,3,115,0, | ||
17502 | 327,3,116,0,327, | ||
17503 | 3,117,0,327,3, | ||
17504 | 118,0,327,3,119, | ||
17505 | 0,327,3,120,0, | ||
17506 | 327,3,121,0,327, | ||
17507 | 3,122,0,327,3, | ||
17508 | 48,0,327,3,49, | ||
17509 | 0,327,3,50,0, | ||
17510 | 327,3,51,0,327, | ||
17511 | 3,52,0,327,3, | ||
17512 | 53,0,327,3,54, | ||
17513 | 0,327,3,55,0, | ||
17514 | 327,3,56,0,327, | ||
17515 | 3,57,0,327,3, | ||
17516 | 65,0,327,3,66, | ||
17517 | 0,327,3,67,0, | ||
17518 | 327,3,68,0,327, | ||
17519 | 3,69,0,327,3, | ||
17520 | 70,0,327,3,71, | ||
17521 | 0,327,3,72,0, | ||
17522 | 327,3,73,0,327, | ||
17523 | 3,74,0,327,3, | ||
17524 | 75,0,327,3,76, | ||
17525 | 0,327,3,77,0, | ||
17526 | 327,3,78,0,327, | ||
17527 | 3,79,0,327,3, | ||
17528 | 80,0,327,3,81, | ||
17529 | 0,327,3,82,0, | ||
17530 | 327,3,83,0,327, | ||
17531 | 3,84,0,327,3, | ||
17532 | 85,0,327,3,86, | ||
17533 | 0,327,3,87,0, | ||
17534 | 327,3,88,0,327, | ||
17535 | 3,89,0,327,3, | ||
17536 | 90,0,327,3,95, | ||
17537 | 0,327,3,97,0, | ||
17538 | 327,3,98,0,327, | ||
17539 | 3,99,0,327,3, | ||
17540 | 100,0,327,3,101, | ||
17541 | 0,327,3,102,0, | ||
17542 | 327,3,103,0,327, | ||
17543 | 3,104,0,327,3, | ||
17544 | 105,0,327,3,106, | ||
17545 | 0,327,3,107,0, | ||
17546 | 327,3,108,0,327, | ||
17547 | 1286,11,1,829,0, | ||
17548 | 330,1,-1,3,106, | ||
17549 | 0,327,3,107,0, | ||
17550 | 327,3,108,0,327, | ||
17551 | 1287,11,1,829,0, | ||
17552 | 330,1,-1,3,117, | ||
17553 | 0,325,3,118,0, | ||
17554 | 1288,12,1,19609,1289, | ||
17555 | 5,63,3,109,0, | ||
17556 | 327,3,110,0,327, | ||
17557 | 3,111,0,327,3, | ||
17558 | 112,0,327,3,113, | ||
17559 | 0,327,3,114,0, | ||
17560 | 327,3,115,0,327, | ||
17561 | 3,116,0,327,3, | ||
17562 | 117,0,327,3,118, | ||
17563 | 0,327,3,119,0, | ||
17564 | 327,3,120,0,327, | ||
17565 | 3,121,0,327,3, | ||
17566 | 122,0,327,3,48, | ||
17567 | 0,327,3,49,0, | ||
17568 | 327,3,50,0,327, | ||
17569 | 3,51,0,327,3, | ||
17570 | 52,0,327,3,53, | ||
17571 | 0,327,3,54,0, | ||
17572 | 327,3,55,0,327, | ||
17573 | 3,56,0,327,3, | ||
17574 | 57,0,327,3,65, | ||
17575 | 0,327,3,66,0, | ||
17576 | 327,3,67,0,327, | ||
17577 | 3,68,0,327,3, | ||
17578 | 69,0,327,3,70, | ||
17579 | 0,327,3,71,0, | ||
17580 | 327,3,72,0,327, | ||
17581 | 3,73,0,327,3, | ||
17582 | 74,0,327,3,75, | ||
17583 | 0,327,3,76,0, | ||
17584 | 327,3,77,0,327, | ||
17585 | 3,78,0,327,3, | ||
17586 | 79,0,327,3,80, | ||
17587 | 0,327,3,81,0, | ||
17588 | 327,3,82,0,327, | ||
17589 | 3,83,0,327,3, | ||
17590 | 84,0,327,3,85, | ||
17591 | 0,327,3,86,0, | ||
17592 | 327,3,87,0,327, | ||
17593 | 3,88,0,327,3, | ||
17594 | 89,0,327,3,90, | ||
17595 | 0,327,3,95,0, | ||
17596 | 327,3,97,0,327, | ||
17597 | 3,98,0,327,3, | ||
17598 | 99,0,327,3,100, | ||
17599 | 0,327,3,101,0, | ||
17600 | 1290,12,1,19656,1291, | ||
17601 | 5,63,3,109,0, | ||
17602 | 327,3,110,0,327, | ||
17603 | 3,111,0,327,3, | ||
17604 | 112,0,327,3,113, | ||
17605 | 0,327,3,114,0, | ||
17606 | 327,3,115,0,327, | ||
17607 | 3,116,0,327,3, | ||
17608 | 117,0,327,3,118, | ||
17609 | 0,327,3,119,0, | ||
17610 | 327,3,120,0,327, | ||
17611 | 3,121,0,327,3, | ||
17612 | 122,0,327,3,48, | ||
17613 | 0,327,3,49,0, | ||
17614 | 327,3,50,0,327, | ||
17615 | 3,51,0,327,3, | ||
17616 | 52,0,327,3,53, | ||
17617 | 0,327,3,54,0, | ||
17618 | 327,3,55,0,327, | ||
17619 | 3,56,0,327,3, | ||
17620 | 57,0,327,3,65, | ||
17621 | 0,327,3,66,0, | ||
17622 | 327,3,67,0,327, | ||
17623 | 3,68,0,327,3, | ||
17624 | 69,0,327,3,70, | ||
17625 | 0,327,3,71,0, | ||
17626 | 327,3,72,0,327, | ||
17627 | 3,73,0,327,3, | ||
17628 | 74,0,327,3,75, | ||
17629 | 0,327,3,76,0, | ||
17630 | 327,3,77,0,327, | ||
17631 | 3,78,0,327,3, | ||
17632 | 79,0,327,3,80, | ||
17633 | 0,327,3,81,0, | ||
17634 | 327,3,82,0,327, | ||
17635 | 3,83,0,327,3, | ||
17636 | 84,0,327,3,85, | ||
17637 | 0,327,3,86,0, | ||
17638 | 327,3,87,0,327, | ||
17639 | 3,88,0,327,3, | ||
17640 | 89,0,327,3,90, | ||
17641 | 0,327,3,95,0, | ||
17642 | 327,3,97,0,327, | ||
17643 | 3,98,0,327,3, | ||
17644 | 99,0,1292,12,1, | ||
17645 | 19701,1293,5,63,3, | ||
17646 | 109,0,327,3,110, | ||
17647 | 0,327,3,111,0, | ||
17648 | 327,3,112,0,327, | ||
17649 | 3,113,0,327,3, | ||
17650 | 114,0,327,3,115, | ||
17651 | 0,327,3,116,0, | ||
17652 | 1294,12,1,19736,1295, | ||
17653 | 5,63,3,109,0, | ||
17654 | 327,3,110,0,327, | ||
17655 | 3,111,0,1296,12, | ||
17656 | 1,19766,1297,5,63, | ||
17657 | 3,109,0,327,3, | ||
17658 | 110,0,327,3,111, | ||
17659 | 0,327,3,112,0, | ||
17660 | 327,3,113,0,327, | ||
17661 | 3,114,0,1298,12, | ||
17662 | 1,19799,1299,5,63, | ||
17663 | 3,109,0,327,3, | ||
17664 | 110,0,327,3,111, | ||
17665 | 0,327,3,112,0, | ||
17666 | 327,3,113,0,327, | ||
17667 | 3,114,0,327,3, | ||
17668 | 115,0,327,3,116, | ||
17669 | 0,327,3,117,0, | ||
17670 | 327,3,118,0,327, | ||
17671 | 3,119,0,327,3, | ||
17672 | 120,0,327,3,121, | ||
17673 | 0,327,3,122,0, | ||
17674 | 327,3,48,0,327, | ||
17675 | 3,49,0,327,3, | ||
17676 | 50,0,327,3,51, | ||
17677 | 0,327,3,52,0, | ||
17678 | 327,3,53,0,327, | ||
17679 | 3,54,0,327,3, | ||
17680 | 55,0,327,3,56, | ||
17681 | 0,327,3,57,0, | ||
17682 | 327,3,65,0,327, | ||
17683 | 3,66,0,327,3, | ||
17684 | 67,0,327,3,68, | ||
17685 | 0,327,3,69,0, | ||
17686 | 327,3,70,0,327, | ||
17687 | 3,71,0,327,3, | ||
17688 | 72,0,327,3,73, | ||
17689 | 0,327,3,74,0, | ||
17690 | 327,3,75,0,327, | ||
17691 | 3,76,0,327,3, | ||
17692 | 77,0,327,3,78, | ||
17693 | 0,327,3,79,0, | ||
17694 | 327,3,80,0,327, | ||
17695 | 3,81,0,327,3, | ||
17696 | 82,0,327,3,83, | ||
17697 | 0,327,3,84,0, | ||
17698 | 327,3,85,0,327, | ||
17699 | 3,86,0,327,3, | ||
17700 | 87,0,327,3,88, | ||
17701 | 0,327,3,89,0, | ||
17702 | 327,3,90,0,327, | ||
17703 | 3,95,0,327,3, | ||
17704 | 97,0,327,3,98, | ||
17705 | 0,327,3,99,0, | ||
17706 | 327,3,100,0,327, | ||
17707 | 3,101,0,327,3, | ||
17708 | 102,0,327,3,103, | ||
17709 | 0,327,3,104,0, | ||
17710 | 327,3,105,0,327, | ||
17711 | 3,106,0,327,3, | ||
17712 | 107,0,327,3,108, | ||
17713 | 0,327,1300,11,1, | ||
17714 | 320,0,1301,4,22, | ||
17715 | 86,0,69,0,67, | ||
17716 | 0,84,0,79,0, | ||
17717 | 82,0,95,0,84, | ||
17718 | 0,89,0,80,0, | ||
17719 | 69,0,1,-1,3, | ||
17720 | 115,0,327,3,116, | ||
17721 | 0,327,3,117,0, | ||
17722 | 327,3,118,0,327, | ||
17723 | 3,119,0,327,3, | ||
17724 | 120,0,327,3,121, | ||
17725 | 0,327,3,122,0, | ||
17726 | 327,3,48,0,327, | ||
17727 | 3,49,0,327,3, | ||
17728 | 50,0,327,3,51, | ||
17729 | 0,327,3,52,0, | ||
17730 | 327,3,53,0,327, | ||
17731 | 3,54,0,327,3, | ||
17732 | 55,0,327,3,56, | ||
17733 | 0,327,3,57,0, | ||
17734 | 327,3,65,0,327, | ||
17735 | 3,66,0,327,3, | ||
17736 | 67,0,327,3,68, | ||
17737 | 0,327,3,69,0, | ||
17738 | 327,3,70,0,327, | ||
17739 | 3,71,0,327,3, | ||
17740 | 72,0,327,3,73, | ||
17741 | 0,327,3,74,0, | ||
17742 | 327,3,75,0,327, | ||
17743 | 3,76,0,327,3, | ||
17744 | 77,0,327,3,78, | ||
17745 | 0,327,3,79,0, | ||
17746 | 327,3,80,0,327, | ||
17747 | 3,81,0,327,3, | ||
17748 | 82,0,327,3,83, | ||
17749 | 0,327,3,84,0, | ||
17750 | 327,3,85,0,327, | ||
17751 | 3,86,0,327,3, | ||
17752 | 87,0,327,3,88, | ||
17753 | 0,327,3,89,0, | ||
17754 | 327,3,90,0,327, | ||
17755 | 3,95,0,327,3, | ||
17756 | 97,0,327,3,98, | ||
17757 | 0,327,3,99,0, | ||
17758 | 327,3,100,0,327, | ||
17759 | 3,101,0,327,3, | ||
17760 | 102,0,327,3,103, | ||
17761 | 0,327,3,104,0, | ||
17762 | 327,3,105,0,327, | ||
17763 | 3,106,0,327,3, | ||
17764 | 107,0,327,3,108, | ||
17765 | 0,327,1302,11,1, | ||
17766 | 829,0,330,1,-1, | ||
17767 | 3,112,0,327,3, | ||
17768 | 113,0,327,3,114, | ||
17769 | 0,327,3,115,0, | ||
17770 | 327,3,116,0,327, | ||
17771 | 3,117,0,327,3, | ||
17772 | 118,0,327,3,119, | ||
17773 | 0,327,3,120,0, | ||
17774 | 327,3,121,0,327, | ||
17775 | 3,122,0,327,3, | ||
17776 | 48,0,327,3,49, | ||
17777 | 0,327,3,50,0, | ||
17778 | 327,3,51,0,327, | ||
17779 | 3,52,0,327,3, | ||
17780 | 53,0,327,3,54, | ||
17781 | 0,327,3,55,0, | ||
17782 | 327,3,56,0,327, | ||
17783 | 3,57,0,327,3, | ||
17784 | 65,0,327,3,66, | ||
17785 | 0,327,3,67,0, | ||
17786 | 327,3,68,0,327, | ||
17787 | 3,69,0,327,3, | ||
17788 | 70,0,327,3,71, | ||
17789 | 0,327,3,72,0, | ||
17790 | 327,3,73,0,327, | ||
17791 | 3,74,0,327,3, | ||
17792 | 75,0,327,3,76, | ||
17793 | 0,327,3,77,0, | ||
17794 | 327,3,78,0,327, | ||
17795 | 3,79,0,327,3, | ||
17796 | 80,0,327,3,81, | ||
17797 | 0,327,3,82,0, | ||
17798 | 327,3,83,0,327, | ||
17799 | 3,84,0,327,3, | ||
17800 | 85,0,327,3,86, | ||
17801 | 0,327,3,87,0, | ||
17802 | 327,3,88,0,327, | ||
17803 | 3,89,0,327,3, | ||
17804 | 90,0,327,3,95, | ||
17805 | 0,327,3,97,0, | ||
17806 | 327,3,98,0,327, | ||
17807 | 3,99,0,327,3, | ||
17808 | 100,0,327,3,101, | ||
17809 | 0,327,3,102,0, | ||
17810 | 327,3,103,0,327, | ||
17811 | 3,104,0,327,3, | ||
17812 | 105,0,327,3,106, | ||
17813 | 0,327,3,107,0, | ||
17814 | 327,3,108,0,327, | ||
17815 | 1303,11,1,829,0, | ||
17816 | 330,1,-1,3,117, | ||
17817 | 0,327,3,118,0, | ||
17818 | 327,3,119,0,327, | ||
17819 | 3,120,0,327,3, | ||
17820 | 121,0,327,3,122, | ||
17821 | 0,327,3,48,0, | ||
17822 | 327,3,49,0,327, | ||
17823 | 3,50,0,327,3, | ||
17824 | 51,0,327,3,52, | ||
17825 | 0,327,3,53,0, | ||
17826 | 327,3,54,0,327, | ||
17827 | 3,55,0,327,3, | ||
17828 | 56,0,327,3,57, | ||
17829 | 0,327,3,65,0, | ||
17830 | 327,3,66,0,327, | ||
17831 | 3,67,0,327,3, | ||
17832 | 68,0,327,3,69, | ||
17833 | 0,327,3,70,0, | ||
17834 | 327,3,71,0,327, | ||
17835 | 3,72,0,327,3, | ||
17836 | 73,0,327,3,74, | ||
17837 | 0,327,3,75,0, | ||
17838 | 327,3,76,0,327, | ||
17839 | 3,77,0,327,3, | ||
17840 | 78,0,327,3,79, | ||
17841 | 0,327,3,80,0, | ||
17842 | 327,3,81,0,327, | ||
17843 | 3,82,0,327,3, | ||
17844 | 83,0,327,3,84, | ||
17845 | 0,327,3,85,0, | ||
17846 | 327,3,86,0,327, | ||
17847 | 3,87,0,327,3, | ||
17848 | 88,0,327,3,89, | ||
17849 | 0,327,3,90,0, | ||
17850 | 327,3,95,0,327, | ||
17851 | 3,97,0,327,3, | ||
17852 | 98,0,327,3,99, | ||
17853 | 0,327,3,100,0, | ||
17854 | 327,3,101,0,327, | ||
17855 | 3,102,0,327,3, | ||
17856 | 103,0,327,3,104, | ||
17857 | 0,327,3,105,0, | ||
17858 | 327,3,106,0,327, | ||
17859 | 3,107,0,327,3, | ||
17860 | 108,0,327,1304,11, | ||
17861 | 1,829,0,330,1, | ||
17862 | -1,3,100,0,327, | ||
17863 | 3,101,0,327,3, | ||
17864 | 102,0,327,3,103, | ||
17865 | 0,327,3,104,0, | ||
17866 | 327,3,105,0,327, | ||
17867 | 3,106,0,327,3, | ||
17868 | 107,0,327,3,108, | ||
17869 | 0,327,1305,11,1, | ||
17870 | 829,0,330,1,-1, | ||
17871 | 3,102,0,327,3, | ||
17872 | 103,0,327,3,104, | ||
17873 | 0,327,3,105,0, | ||
17874 | 327,3,106,0,327, | ||
17875 | 3,107,0,327,3, | ||
17876 | 108,0,327,1306,11, | ||
17877 | 1,829,0,330,1, | ||
17878 | -1,3,119,0,1307, | ||
17879 | 12,1,20330,1308,5, | ||
17880 | 63,3,109,0,327, | ||
17881 | 3,110,0,327,3, | ||
17882 | 111,0,327,3,112, | ||
17883 | 0,327,3,113,0, | ||
17884 | 327,3,114,0,327, | ||
17885 | 3,115,0,327,3, | ||
17886 | 116,0,327,3,117, | ||
17887 | 0,327,3,118,0, | ||
17888 | 327,3,119,0,327, | ||
17889 | 3,120,0,327,3, | ||
17890 | 121,0,327,3,122, | ||
17891 | 0,327,3,48,0, | ||
17892 | 327,3,49,0,327, | ||
17893 | 3,50,0,327,3, | ||
17894 | 51,0,327,3,52, | ||
17895 | 0,327,3,53,0, | ||
17896 | 327,3,54,0,327, | ||
17897 | 3,55,0,327,3, | ||
17898 | 56,0,327,3,57, | ||
17899 | 0,327,3,65,0, | ||
17900 | 327,3,66,0,327, | ||
17901 | 3,67,0,327,3, | ||
17902 | 68,0,327,3,69, | ||
17903 | 0,327,3,70,0, | ||
17904 | 327,3,71,0,327, | ||
17905 | 3,72,0,327,3, | ||
17906 | 73,0,327,3,74, | ||
17907 | 0,327,3,75,0, | ||
17908 | 327,3,76,0,327, | ||
17909 | 3,77,0,327,3, | ||
17910 | 78,0,327,3,79, | ||
17911 | 0,327,3,80,0, | ||
17912 | 327,3,81,0,327, | ||
17913 | 3,82,0,327,3, | ||
17914 | 83,0,327,3,84, | ||
17915 | 0,327,3,85,0, | ||
17916 | 327,3,86,0,327, | ||
17917 | 3,87,0,327,3, | ||
17918 | 88,0,327,3,89, | ||
17919 | 0,327,3,90,0, | ||
17920 | 327,3,95,0,327, | ||
17921 | 3,97,0,327,3, | ||
17922 | 98,0,327,3,99, | ||
17923 | 0,327,3,100,0, | ||
17924 | 327,3,101,0,327, | ||
17925 | 3,102,0,327,3, | ||
17926 | 103,0,327,3,104, | ||
17927 | 0,1309,12,1,20380, | ||
17928 | 1310,5,63,3,109, | ||
17929 | 0,327,3,110,0, | ||
17930 | 327,3,111,0,327, | ||
17931 | 3,112,0,327,3, | ||
17932 | 113,0,327,3,114, | ||
17933 | 0,327,3,115,0, | ||
17934 | 327,3,116,0,327, | ||
17935 | 3,117,0,327,3, | ||
17936 | 118,0,327,3,119, | ||
17937 | 0,327,3,120,0, | ||
17938 | 327,3,121,0,327, | ||
17939 | 3,122,0,327,3, | ||
17940 | 48,0,327,3,49, | ||
17941 | 0,327,3,50,0, | ||
17942 | 327,3,51,0,327, | ||
17943 | 3,52,0,327,3, | ||
17944 | 53,0,327,3,54, | ||
17945 | 0,327,3,55,0, | ||
17946 | 327,3,56,0,327, | ||
17947 | 3,57,0,327,3, | ||
17948 | 65,0,327,3,66, | ||
17949 | 0,327,3,67,0, | ||
17950 | 327,3,68,0,327, | ||
17951 | 3,69,0,327,3, | ||
17952 | 70,0,327,3,71, | ||
17953 | 0,327,3,72,0, | ||
17954 | 327,3,73,0,327, | ||
17955 | 3,74,0,327,3, | ||
17956 | 75,0,327,3,76, | ||
17957 | 0,327,3,77,0, | ||
17958 | 327,3,78,0,327, | ||
17959 | 3,79,0,327,3, | ||
17960 | 80,0,327,3,81, | ||
17961 | 0,327,3,82,0, | ||
17962 | 327,3,83,0,327, | ||
17963 | 3,84,0,327,3, | ||
17964 | 85,0,327,3,86, | ||
17965 | 0,327,3,87,0, | ||
17966 | 327,3,88,0,327, | ||
17967 | 3,89,0,327,3, | ||
17968 | 90,0,327,3,95, | ||
17969 | 0,327,3,97,0, | ||
17970 | 327,3,98,0,327, | ||
17971 | 3,99,0,327,3, | ||
17972 | 100,0,327,3,101, | ||
17973 | 0,327,3,102,0, | ||
17974 | 327,3,103,0,327, | ||
17975 | 3,104,0,327,3, | ||
17976 | 105,0,1311,12,1, | ||
17977 | 20431,1312,5,63,3, | ||
17978 | 109,0,327,3,110, | ||
17979 | 0,327,3,111,0, | ||
17980 | 327,3,112,0,327, | ||
17981 | 3,113,0,327,3, | ||
17982 | 114,0,327,3,115, | ||
17983 | 0,327,3,116,0, | ||
17984 | 327,3,117,0,327, | ||
17985 | 3,118,0,327,3, | ||
17986 | 119,0,327,3,120, | ||
17987 | 0,327,3,121,0, | ||
17988 | 327,3,122,0,327, | ||
17989 | 3,48,0,327,3, | ||
17990 | 49,0,327,3,50, | ||
17991 | 0,327,3,51,0, | ||
17992 | 327,3,52,0,327, | ||
17993 | 3,53,0,327,3, | ||
17994 | 54,0,327,3,55, | ||
17995 | 0,327,3,56,0, | ||
17996 | 327,3,57,0,327, | ||
17997 | 3,65,0,327,3, | ||
17998 | 66,0,327,3,67, | ||
17999 | 0,327,3,68,0, | ||
18000 | 327,3,69,0,327, | ||
18001 | 3,70,0,327,3, | ||
18002 | 71,0,327,3,72, | ||
18003 | 0,327,3,73,0, | ||
18004 | 327,3,74,0,327, | ||
18005 | 3,75,0,327,3, | ||
18006 | 76,0,327,3,77, | ||
18007 | 0,327,3,78,0, | ||
18008 | 327,3,79,0,327, | ||
18009 | 3,80,0,327,3, | ||
18010 | 81,0,327,3,82, | ||
18011 | 0,327,3,83,0, | ||
18012 | 327,3,84,0,327, | ||
18013 | 3,85,0,327,3, | ||
18014 | 86,0,327,3,87, | ||
18015 | 0,327,3,88,0, | ||
18016 | 327,3,89,0,327, | ||
18017 | 3,90,0,327,3, | ||
18018 | 95,0,327,3,97, | ||
18019 | 0,327,3,98,0, | ||
18020 | 327,3,99,0,327, | ||
18021 | 3,100,0,327,3, | ||
18022 | 101,0,327,3,102, | ||
18023 | 0,327,3,103,0, | ||
18024 | 327,3,104,0,327, | ||
18025 | 3,105,0,327,3, | ||
18026 | 106,0,327,3,107, | ||
18027 | 0,327,3,108,0, | ||
18028 | 1313,12,1,20485,1314, | ||
18029 | 5,63,3,109,0, | ||
18030 | 327,3,110,0,327, | ||
18031 | 3,111,0,327,3, | ||
18032 | 112,0,327,3,113, | ||
18033 | 0,327,3,114,0, | ||
18034 | 327,3,115,0,327, | ||
18035 | 3,116,0,327,3, | ||
18036 | 117,0,327,3,118, | ||
18037 | 0,327,3,119,0, | ||
18038 | 327,3,120,0,327, | ||
18039 | 3,121,0,327,3, | ||
18040 | 122,0,327,3,48, | ||
18041 | 0,327,3,49,0, | ||
18042 | 327,3,50,0,327, | ||
18043 | 3,51,0,327,3, | ||
18044 | 52,0,327,3,53, | ||
18045 | 0,327,3,54,0, | ||
18046 | 327,3,55,0,327, | ||
18047 | 3,56,0,327,3, | ||
18048 | 57,0,327,3,65, | ||
18049 | 0,327,3,66,0, | ||
18050 | 327,3,67,0,327, | ||
18051 | 3,68,0,327,3, | ||
18052 | 69,0,327,3,70, | ||
18053 | 0,327,3,71,0, | ||
18054 | 327,3,72,0,327, | ||
18055 | 3,73,0,327,3, | ||
18056 | 74,0,327,3,75, | ||
18057 | 0,327,3,76,0, | ||
18058 | 327,3,77,0,327, | ||
18059 | 3,78,0,327,3, | ||
18060 | 79,0,327,3,80, | ||
18061 | 0,327,3,81,0, | ||
18062 | 327,3,82,0,327, | ||
18063 | 3,83,0,327,3, | ||
18064 | 84,0,327,3,85, | ||
18065 | 0,327,3,86,0, | ||
18066 | 327,3,87,0,327, | ||
18067 | 3,88,0,327,3, | ||
18068 | 89,0,327,3,90, | ||
18069 | 0,327,3,95,0, | ||
18070 | 327,3,97,0,327, | ||
18071 | 3,98,0,327,3, | ||
18072 | 99,0,327,3,100, | ||
18073 | 0,327,3,101,0, | ||
18074 | 1315,12,1,20532,1316, | ||
18075 | 5,63,3,109,0, | ||
18076 | 327,3,110,0,327, | ||
18077 | 3,111,0,327,3, | ||
18078 | 112,0,327,3,113, | ||
18079 | 0,327,3,114,0, | ||
18080 | 327,3,115,0,327, | ||
18081 | 3,116,0,327,3, | ||
18082 | 117,0,327,3,118, | ||
18083 | 0,327,3,119,0, | ||
18084 | 327,3,120,0,327, | ||
18085 | 3,121,0,327,3, | ||
18086 | 122,0,327,3,48, | ||
18087 | 0,327,3,49,0, | ||
18088 | 327,3,50,0,327, | ||
18089 | 3,51,0,327,3, | ||
18090 | 52,0,327,3,53, | ||
18091 | 0,327,3,54,0, | ||
18092 | 327,3,55,0,327, | ||
18093 | 3,56,0,327,3, | ||
18094 | 57,0,327,3,65, | ||
18095 | 0,327,3,66,0, | ||
18096 | 327,3,67,0,327, | ||
18097 | 3,68,0,327,3, | ||
18098 | 69,0,327,3,70, | ||
18099 | 0,327,3,71,0, | ||
18100 | 327,3,72,0,327, | ||
18101 | 3,73,0,327,3, | ||
18102 | 74,0,327,3,75, | ||
18103 | 0,327,3,76,0, | ||
18104 | 327,3,77,0,327, | ||
18105 | 3,78,0,327,3, | ||
18106 | 79,0,327,3,80, | ||
18107 | 0,327,3,81,0, | ||
18108 | 327,3,82,0,327, | ||
18109 | 3,83,0,327,3, | ||
18110 | 84,0,327,3,85, | ||
18111 | 0,327,3,86,0, | ||
18112 | 327,3,87,0,327, | ||
18113 | 3,88,0,327,3, | ||
18114 | 89,0,327,3,90, | ||
18115 | 0,327,3,95,0, | ||
18116 | 327,3,97,0,327, | ||
18117 | 3,98,0,327,3, | ||
18118 | 99,0,327,3,100, | ||
18119 | 0,327,3,101,0, | ||
18120 | 327,3,102,0,327, | ||
18121 | 3,103,0,327,3, | ||
18122 | 104,0,327,3,105, | ||
18123 | 0,327,3,106,0, | ||
18124 | 327,3,107,0,327, | ||
18125 | 3,108,0,327,1317, | ||
18126 | 11,1,229,0,1318, | ||
18127 | 4,10,87,0,72, | ||
18128 | 0,73,0,76,0, | ||
18129 | 69,0,1,-1,3, | ||
18130 | 102,0,327,3,103, | ||
18131 | 0,327,3,104,0, | ||
18132 | 327,3,105,0,327, | ||
18133 | 3,106,0,327,3, | ||
18134 | 107,0,327,3,108, | ||
18135 | 0,327,1319,11,1, | ||
18136 | 829,0,330,1,-1, | ||
18137 | 1320,11,1,829,0, | ||
18138 | 330,1,-1,3,106, | ||
18139 | 0,327,3,107,0, | ||
18140 | 327,3,108,0,327, | ||
18141 | 1321,11,1,829,0, | ||
18142 | 330,1,-1,3,105, | ||
18143 | 0,327,3,106,0, | ||
18144 | 327,3,107,0,327, | ||
18145 | 3,108,0,327,1322, | ||
18146 | 11,1,829,0,330, | ||
18147 | 1,-1,3,120,0, | ||
18148 | 325,3,121,0,325, | ||
18149 | 3,122,0,325,3, | ||
18150 | 123,0,1323,12,1, | ||
18151 | 40301,1324,5,0,1325, | ||
18152 | 11,1,51,0,1326, | ||
18153 | 4,20,76,0,69, | ||
18154 | 0,70,0,84,0, | ||
18155 | 95,0,66,0,82, | ||
18156 | 0,65,0,67,0, | ||
18157 | 69,0,1,-1,3, | ||
18158 | 124,0,1327,12,1, | ||
18159 | 43084,1328,5,1,3, | ||
18160 | 124,0,1329,12,1, | ||
18161 | 43196,1330,5,0,1331, | ||
18162 | 11,1,191,0,1332, | ||
18163 | 4,26,83,0,84, | ||
18164 | 0,82,0,79,0, | ||
18165 | 75,0,69,0,95, | ||
18166 | 0,83,0,84,0, | ||
18167 | 82,0,79,0,75, | ||
18168 | 0,69,0,1,-1, | ||
18169 | 1333,11,1,165,0, | ||
18170 | 1334,4,12,83,0, | ||
18171 | 84,0,82,0,79, | ||
18172 | 0,75,0,69,0, | ||
18173 | 1,-1,3,125,0, | ||
18174 | 1335,12,1,40666,1336, | ||
18175 | 5,0,1337,11,1, | ||
18176 | 56,0,1338,4,22, | ||
18177 | 82,0,73,0,71, | ||
18178 | 0,72,0,84,0, | ||
18179 | 95,0,66,0,82, | ||
18180 | 0,65,0,67,0, | ||
18181 | 69,0,1,-1,3, | ||
18182 | 126,0,1339,12,1, | ||
18183 | 43325,1340,5,0,1341, | ||
18184 | 11,1,175,0,1342, | ||
18185 | 4,10,84,0,73, | ||
18186 | 0,76,0,68,0, | ||
18187 | 69,0,1,-1,1343, | ||
18188 | 11,1,882,0,244, | ||
18189 | 1,-1,1344,4,12, | ||
18190 | 83,0,84,0,82, | ||
18191 | 0,73,0,78,0, | ||
18192 | 71,0,1345,12,1, | ||
18193 | 44893,1346,5,119,3, | ||
18194 | 1,0,1347,12,1, | ||
18195 | 44894,1348,5,0,1349, | ||
18196 | 11,1,956,0,165, | ||
18197 | 1,-1,3,9,0, | ||
18198 | 1347,3,10,0,1350, | ||
18199 | 12,1,45095,1351,5, | ||
18200 | 0,1352,11,1,962, | ||
18201 | 0,165,1,-1,3, | ||
18202 | 13,0,1347,3,0, | ||
18203 | 3,1347,3,96,33, | ||
18204 | 1347,3,32,0,1347, | ||
18205 | 3,33,0,1347,3, | ||
18206 | 34,0,1353,12,1, | ||
18207 | 46442,1354,5,0,1355, | ||
18208 | 11,1,1064,0,165, | ||
18209 | 1,-1,3,35,0, | ||
18210 | 1347,3,36,0,1347, | ||
18211 | 3,37,0,1347,3, | ||
18212 | 38,0,1347,3,40, | ||
18213 | 0,1347,3,41,0, | ||
18214 | 1347,3,42,0,1347, | ||
18215 | 3,43,0,1347,3, | ||
18216 | 44,0,1347,3,45, | ||
18217 | 0,1347,3,46,0, | ||
18218 | 1347,3,47,0,1347, | ||
18219 | 3,3,9,1347,3, | ||
18220 | 49,0,1347,3,50, | ||
18221 | 0,1347,3,48,0, | ||
18222 | 1347,3,52,0,1347, | ||
18223 | 3,53,0,1347,3, | ||
18224 | 51,0,1347,3,55, | ||
18225 | 0,1347,3,56,0, | ||
18226 | 1347,3,54,0,1347, | ||
18227 | 3,59,0,1347,3, | ||
18228 | 57,0,1347,3,61, | ||
18229 | 0,1347,3,62,0, | ||
18230 | 1347,3,60,0,1347, | ||
18231 | 3,64,0,1347,3, | ||
18232 | 65,0,1347,3,66, | ||
18233 | 0,1347,3,67,0, | ||
18234 | 1347,3,68,0,1347, | ||
18235 | 3,69,0,1347,3, | ||
18236 | 70,0,1347,3,71, | ||
18237 | 0,1347,3,72,0, | ||
18238 | 1347,3,73,0,1347, | ||
18239 | 3,74,0,1347,3, | ||
18240 | 75,0,1347,3,76, | ||
18241 | 0,1347,3,77,0, | ||
18242 | 1347,3,78,0,1347, | ||
18243 | 3,79,0,1347,3, | ||
18244 | 80,0,1347,3,81, | ||
18245 | 0,1347,3,82,0, | ||
18246 | 1347,3,83,0,1347, | ||
18247 | 3,84,0,1347,3, | ||
18248 | 85,0,1347,3,86, | ||
18249 | 0,1347,3,87,0, | ||
18250 | 1347,3,88,0,1347, | ||
18251 | 3,89,0,1347,3, | ||
18252 | 90,0,1347,3,91, | ||
18253 | 0,1347,3,92,0, | ||
18254 | 1356,12,1,45238,1357, | ||
18255 | 5,8,3,110,0, | ||
18256 | 1358,12,1,45267,1359, | ||
18257 | 5,0,1360,11,1, | ||
18258 | 967,0,165,1,-1, | ||
18259 | 3,10,0,1361,12, | ||
18260 | 1,45796,1362,5,5, | ||
18261 | 3,10,0,1361,3, | ||
18262 | 13,0,1363,12,1, | ||
18263 | 45633,1364,5,5,3, | ||
18264 | 10,0,1361,3,13, | ||
18265 | 0,1363,3,92,0, | ||
18266 | 1365,12,1,45901,1366, | ||
18267 | 5,0,1367,11,1, | ||
18268 | 1020,0,165,1,-1, | ||
18269 | 3,9,0,1368,12, | ||
18270 | 1,45714,1369,5,5, | ||
18271 | 3,10,0,1361,3, | ||
18272 | 13,0,1363,3,92, | ||
18273 | 0,1365,3,9,0, | ||
18274 | 1368,3,32,0,1370, | ||
18275 | 12,1,45553,1371,5, | ||
18276 | 5,3,10,0,1361, | ||
18277 | 3,13,0,1363,3, | ||
18278 | 92,0,1365,3,9, | ||
18279 | 0,1368,3,32,0, | ||
18280 | 1370,0,165,1,-1, | ||
18281 | 0,165,1,-1,3, | ||
18282 | 32,0,1370,0,165, | ||
18283 | 1,-1,3,92,0, | ||
18284 | 1365,3,9,0,1368, | ||
18285 | 3,32,0,1370,0, | ||
18286 | 165,1,-1,3,13, | ||
18287 | 0,1363,3,92,0, | ||
18288 | 1372,12,1,46183,1373, | ||
18289 | 5,0,1374,11,1, | ||
18290 | 1003,0,165,1,-1, | ||
18291 | 3,116,0,1375,12, | ||
18292 | 1,45393,1376,5,0, | ||
18293 | 1377,11,1,979,0, | ||
18294 | 165,1,-1,3,34, | ||
18295 | 0,1378,12,1,46307, | ||
18296 | 1379,5,0,1380,11, | ||
18297 | 1,991,0,165,1, | ||
18298 | -1,3,9,0,1368, | ||
18299 | 3,32,0,1370,1381, | ||
18300 | 11,1,1015,0,165, | ||
18301 | 1,-1,3,93,0, | ||
18302 | 1347,3,94,0,1347, | ||
18303 | 3,95,0,1347,3, | ||
18304 | 96,0,1347,3,97, | ||
18305 | 0,1347,3,98,0, | ||
18306 | 1347,3,99,0,1347, | ||
18307 | 3,100,0,1347,3, | ||
18308 | 101,0,1347,3,102, | ||
18309 | 0,1347,3,103,0, | ||
18310 | 1347,3,104,0,1347, | ||
18311 | 3,105,0,1347,3, | ||
18312 | 106,0,1347,3,107, | ||
18313 | 0,1347,3,108,0, | ||
18314 | 1347,3,109,0,1347, | ||
18315 | 3,110,0,1347,3, | ||
18316 | 111,0,1347,3,112, | ||
18317 | 0,1347,3,113,0, | ||
18318 | 1347,3,114,0,1347, | ||
18319 | 3,115,0,1347,3, | ||
18320 | 116,0,1347,3,117, | ||
18321 | 0,1347,3,118,0, | ||
18322 | 1347,3,119,0,1347, | ||
18323 | 3,120,0,1347,3, | ||
18324 | 121,0,1347,3,122, | ||
18325 | 0,1347,3,123,0, | ||
18326 | 1347,3,124,0,1347, | ||
18327 | 3,125,0,1347,3, | ||
18328 | 96,6,1347,3,126, | ||
18329 | 0,1347,3,58,15, | ||
18330 | 1347,3,59,15,1347, | ||
18331 | 3,136,4,1347,3, | ||
18332 | 160,0,1347,3,15, | ||
18333 | 7,1347,3,170,0, | ||
18334 | 1347,3,171,0,1347, | ||
18335 | 3,172,0,1347,3, | ||
18336 | 173,0,1347,3,178, | ||
18337 | 0,1347,3,176,2, | ||
18338 | 1347,3,187,0,1347, | ||
18339 | 3,187,1,1347,3, | ||
18340 | 192,0,1347,3,41, | ||
18341 | 32,1347,3,197,1, | ||
18342 | 1347,3,0,224,1347, | ||
18343 | 3,40,32,1347,3, | ||
18344 | 63,32,1347,0,165, | ||
18345 | 1,-1,1382,5,92, | ||
18346 | 266,1383,10,266,1, | ||
18347 | 19,567,1384,10,567, | ||
18348 | 1,47,259,1385,10, | ||
18349 | 259,1,92,1150,1386, | ||
18350 | 10,1150,1,50,1019, | ||
18351 | 1387,10,1019,1,80, | ||
18352 | 1169,1388,10,1169,1, | ||
18353 | 53,173,1389,10,173, | ||
18354 | 1,37,596,1390,10, | ||
18355 | 596,1,43,678,1391, | ||
18356 | 10,678,1,51,607, | ||
18357 | 1392,10,607,1,46, | ||
18358 | 196,1393,10,196,1, | ||
18359 | 16,200,1394,10,200, | ||
18360 | 1,17,650,1395,10, | ||
18361 | 650,1,68,879,1396, | ||
18362 | 10,879,1,75,355, | ||
18363 | 1397,10,355,1,35, | ||
18364 | 208,1398,10,208,1, | ||
18365 | 20,214,1399,10,214, | ||
18366 | 1,6,184,1400,10, | ||
18367 | 184,1,22,284,1401, | ||
18368 | 10,284,1,21,244, | ||
18369 | 1402,10,244,1,94, | ||
18370 | 1270,1403,10,1270,1, | ||
18371 | 88,475,1404,10,475, | ||
18372 | 1,64,698,1405,10, | ||
18373 | 698,1,49,351,1406, | ||
18374 | 10,351,1,28,300, | ||
18375 | 1407,10,300,1,25, | ||
18376 | 687,1408,10,687,1, | ||
18377 | 42,770,1409,10,770, | ||
18378 | 1,69,1209,1410,10, | ||
18379 | 1209,1,48,318,1411, | ||
18380 | 10,318,1,41,828, | ||
18381 | 1412,10,828,1,57, | ||
18382 | 218,1413,10,218,1, | ||
18383 | 4,324,1414,10,324, | ||
18384 | 1,23,487,1415,10, | ||
18385 | 487,1,63,1224,1416, | ||
18386 | 10,1224,1,84,306, | ||
18387 | 1417,10,306,1,29, | ||
18388 | 230,1418,10,230,1, | ||
18389 | 5,298,1419,10,298, | ||
18390 | 1,31,618,1420,10, | ||
18391 | 618,1,52,867,1421, | ||
18392 | 10,867,1,76,1092, | ||
18393 | 1422,10,1092,1,83, | ||
18394 | 995,1423,10,995,1, | ||
18395 | 81,973,1424,10,973, | ||
18396 | 1,77,171,1425,10, | ||
18397 | 171,1,30,264,1426, | ||
18398 | 10,264,1,7,825, | ||
18399 | 1427,10,825,1,73, | ||
18400 | 182,1428,10,182,1, | ||
18401 | 10,347,1429,10,347, | ||
18402 | 1,27,255,1430,10, | ||
18403 | 255,1,93,224,1431, | ||
18404 | 10,224,1,14,270, | ||
18405 | 1432,10,270,1,24, | ||
18406 | 709,1433,10,709,1, | ||
18407 | 54,282,1434,10,282, | ||
18408 | 1,9,1203,1435,10, | ||
18409 | 1203,1,86,492,1436, | ||
18410 | 10,492,1,62,1437, | ||
18411 | 4,30,83,0,84, | ||
18412 | 0,82,0,73,0, | ||
18413 | 78,0,71,0,95, | ||
18414 | 0,67,0,79,0, | ||
18415 | 78,0,83,0,84, | ||
18416 | 0,65,0,78,0, | ||
18417 | 84,0,1438,10,1437, | ||
18418 | 1,3,1318,1439,10, | ||
18419 | 1318,1,45,330,1440, | ||
18420 | 10,330,1,91,545, | ||
18421 | 1441,10,545,1,66, | ||
18422 | 1046,1442,10,1046,1, | ||
18423 | 56,396,1443,10,396, | ||
18424 | 1,58,1326,1444,10, | ||
18425 | 1326,1,12,525,1445, | ||
18426 | 10,525,1,44,294, | ||
18427 | 1446,10,294,1,40, | ||
18428 | 1132,1447,10,1132,1, | ||
18429 | 82,585,1448,10,585, | ||
18430 | 1,67,924,1449,10, | ||
18431 | 924,1,78,1342,1450, | ||
18432 | 10,1342,1,36,1334, | ||
18433 | 1451,10,1334,1,34, | ||
18434 | 765,1452,10,765,1, | ||
18435 | 70,1283,1453,10,1283, | ||
18436 | 1,87,843,1454,10, | ||
18437 | 843,1,74,320,1455, | ||
18438 | 10,320,1,26,419, | ||
18439 | 1456,10,419,1,59, | ||
18440 | 192,1457,10,192,1, | ||
18441 | 33,288,1458,10,288, | ||
18442 | 1,11,190,1459,10, | ||
18443 | 190,1,38,513,1460, | ||
18444 | 10,513,1,61,806, | ||
18445 | 1461,10,806,1,72, | ||
18446 | 1265,1462,10,1265,1, | ||
18447 | 90,308,1463,10,308, | ||
18448 | 1,15,947,1464,10, | ||
18449 | 947,1,79,1332,1465, | ||
18450 | 10,1332,1,39,314, | ||
18451 | 1466,10,314,1,32, | ||
18452 | 1253,1467,10,1253,1, | ||
18453 | 89,369,1468,10,369, | ||
18454 | 1,60,1301,1469,10, | ||
18455 | 1301,1,55,1338,1470, | ||
18456 | 10,1338,1,13,1192, | ||
18457 | 1471,10,1192,1,85, | ||
18458 | 220,1472,10,220,1, | ||
18459 | 18,206,1473,10,206, | ||
18460 | 1,8,753,1474,10, | ||
18461 | 753,1,71,443,1475, | ||
18462 | 10,443,1,65,1476, | ||
18463 | 5,0,0}; | ||
18464 | new Tfactory(this,"MINUS",new TCreator(MINUS_factory)); | ||
18465 | new Tfactory(this,"DEFAULT_STATE",new TCreator(DEFAULT_STATE_factory)); | ||
18466 | new Tfactory(this,"INTEGER_CONSTANT",new TCreator(INTEGER_CONSTANT_factory)); | ||
18467 | new Tfactory(this,"RETURN",new TCreator(RETURN_factory)); | ||
18468 | new Tfactory(this,"OBJECT_REZ_EVENT",new TCreator(OBJECT_REZ_EVENT_factory)); | ||
18469 | new Tfactory(this,"STRING_TYPE",new TCreator(STRING_TYPE_factory)); | ||
18470 | new Tfactory(this,"EXCLAMATION",new TCreator(EXCLAMATION_factory)); | ||
18471 | new Tfactory(this,"ELSE",new TCreator(ELSE_factory)); | ||
18472 | new Tfactory(this,"INTEGER_TYPE",new TCreator(INTEGER_TYPE_factory)); | ||
18473 | new Tfactory(this,"FOR",new TCreator(FOR_factory)); | ||
18474 | new Tfactory(this,"LEFT_PAREN",new TCreator(LEFT_PAREN_factory)); | ||
18475 | new Tfactory(this,"RIGHT_PAREN",new TCreator(RIGHT_PAREN_factory)); | ||
18476 | new Tfactory(this,"HTTP_RESPONSE_EVENT",new TCreator(HTTP_RESPONSE_EVENT_factory)); | ||
18477 | new Tfactory(this,"MOVING_END_EVENT",new TCreator(MOVING_END_EVENT_factory)); | ||
18478 | new Tfactory(this,"CARET",new TCreator(CARET_factory)); | ||
18479 | new Tfactory(this,"STAR",new TCreator(STAR_factory)); | ||
18480 | new Tfactory(this,"PLUS_EQUALS",new TCreator(PLUS_EQUALS_factory)); | ||
18481 | new Tfactory(this,"PERCENT",new TCreator(PERCENT_factory)); | ||
18482 | new Tfactory(this,"SLASH",new TCreator(SLASH_factory)); | ||
18483 | new Tfactory(this,"FLOAT_CONSTANT",new TCreator(FLOAT_CONSTANT_factory)); | ||
18484 | new Tfactory(this,"TOUCH_EVENT",new TCreator(TOUCH_EVENT_factory)); | ||
18485 | new Tfactory(this,"COLLISION_START_EVENT",new TCreator(COLLISION_START_EVENT_factory)); | ||
18486 | new Tfactory(this,"JUMP",new TCreator(JUMP_factory)); | ||
18487 | new Tfactory(this,"RIGHT_BRACKET",new TCreator(RIGHT_BRACKET_factory)); | ||
18488 | new Tfactory(this,"LEFT_ANGLE",new TCreator(LEFT_ANGLE_factory)); | ||
18489 | new Tfactory(this,"IF",new TCreator(IF_factory)); | ||
18490 | new Tfactory(this,"LAND_COLLISION_EVENT",new TCreator(LAND_COLLISION_EVENT_factory)); | ||
18491 | new Tfactory(this,"STATE",new TCreator(STATE_factory)); | ||
18492 | new Tfactory(this,"RIGHT_SHIFT",new TCreator(RIGHT_SHIFT_factory)); | ||
18493 | new Tfactory(this,"LIST_TYPE",new TCreator(LIST_TYPE_factory)); | ||
18494 | new Tfactory(this,"INCREMENT",new TCreator(INCREMENT_factory)); | ||
18495 | new Tfactory(this,"AT",new TCreator(AT_factory)); | ||
18496 | new Tfactory(this,"COLLISION_END_EVENT",new TCreator(COLLISION_END_EVENT_factory)); | ||
18497 | new Tfactory(this,"SENSOR_EVENT",new TCreator(SENSOR_EVENT_factory)); | ||
18498 | new Tfactory(this,"EQUALS_EQUALS",new TCreator(EQUALS_EQUALS_factory)); | ||
18499 | new Tfactory(this,"DECREMENT",new TCreator(DECREMENT_factory)); | ||
18500 | new Tfactory(this,"LESS_EQUALS",new TCreator(LESS_EQUALS_factory)); | ||
18501 | new Tfactory(this,"FLOAT_TYPE",new TCreator(FLOAT_TYPE_factory)); | ||
18502 | new Tfactory(this,"MOVING_START_EVENT",new TCreator(MOVING_START_EVENT_factory)); | ||
18503 | new Tfactory(this,"RUN_TIME_PERMISSIONS_EVENT",new TCreator(RUN_TIME_PERMISSIONS_EVENT_factory)); | ||
18504 | new Tfactory(this,"ON_REZ_EVENT",new TCreator(ON_REZ_EVENT_factory)); | ||
18505 | new Tfactory(this,"NO_SENSOR_EVENT",new TCreator(NO_SENSOR_EVENT_factory)); | ||
18506 | new Tfactory(this,"EXCLAMATION_EQUALS",new TCreator(EXCLAMATION_EQUALS_factory)); | ||
18507 | new Tfactory(this,"MINUS_EQUALS",new TCreator(MINUS_EQUALS_factory)); | ||
18508 | new Tfactory(this,"LISTEN_EVENT",new TCreator(LISTEN_EVENT_factory)); | ||
18509 | new Tfactory(this,"PERCENT_EQUALS",new TCreator(PERCENT_EQUALS_factory)); | ||
18510 | new Tfactory(this,"LEFT_BRACKET",new TCreator(LEFT_BRACKET_factory)); | ||
18511 | new Tfactory(this,"HEX_INTEGER_CONSTANT",new TCreator(HEX_INTEGER_CONSTANT_factory)); | ||
18512 | new Tfactory(this,"COMMA",new TCreator(COMMA_factory)); | ||
18513 | new Tfactory(this,"PERIOD",new TCreator(PERIOD_factory)); | ||
18514 | new Tfactory(this,"KEY_TYPE",new TCreator(KEY_TYPE_factory)); | ||
18515 | new Tfactory(this,"SLASH_EQUALS",new TCreator(SLASH_EQUALS_factory)); | ||
18516 | new Tfactory(this,"STATE_EXIT_EVENT",new TCreator(STATE_EXIT_EVENT_factory)); | ||
18517 | new Tfactory(this,"COLLISION_EVENT",new TCreator(COLLISION_EVENT_factory)); | ||
18518 | new Tfactory(this,"STRING_CONSTANT",new TCreator(STRING_CONSTANT_factory)); | ||
18519 | new Tfactory(this,"WHILE",new TCreator(WHILE_factory)); | ||
18520 | new Tfactory(this,"IDENT",new TCreator(IDENT_factory)); | ||
18521 | new Tfactory(this,"DATASERVER_EVENT",new TCreator(DATASERVER_EVENT_factory)); | ||
18522 | new Tfactory(this,"ROTATION_TYPE",new TCreator(ROTATION_TYPE_factory)); | ||
18523 | new Tfactory(this,"AT_ROT_TARGET_EVENT",new TCreator(AT_ROT_TARGET_EVENT_factory)); | ||
18524 | new Tfactory(this,"LEFT_BRACE",new TCreator(LEFT_BRACE_factory)); | ||
18525 | new Tfactory(this,"DO",new TCreator(DO_factory)); | ||
18526 | new Tfactory(this,"LEFT_SHIFT",new TCreator(LEFT_SHIFT_factory)); | ||
18527 | new Tfactory(this,"REMOTE_DATA_EVENT",new TCreator(REMOTE_DATA_EVENT_factory)); | ||
18528 | new Tfactory(this,"EMAIL_EVENT",new TCreator(EMAIL_EVENT_factory)); | ||
18529 | new Tfactory(this,"NOT_AT_ROT_TARGET_EVENT",new TCreator(NOT_AT_ROT_TARGET_EVENT_factory)); | ||
18530 | new Tfactory(this,"TILDE",new TCreator(TILDE_factory)); | ||
18531 | new Tfactory(this,"STROKE",new TCreator(STROKE_factory)); | ||
18532 | new Tfactory(this,"LAND_COLLISION_END_EVENT",new TCreator(LAND_COLLISION_END_EVENT_factory)); | ||
18533 | new Tfactory(this,"TIMER_EVENT",new TCreator(TIMER_EVENT_factory)); | ||
18534 | new Tfactory(this,"MONEY_EVENT",new TCreator(MONEY_EVENT_factory)); | ||
18535 | new Tfactory(this,"RIGHT_ANGLE",new TCreator(RIGHT_ANGLE_factory)); | ||
18536 | new Tfactory(this,"AT_TARGET_EVENT",new TCreator(AT_TARGET_EVENT_factory)); | ||
18537 | new Tfactory(this,"AMP",new TCreator(AMP_factory)); | ||
18538 | new Tfactory(this,"SEMICOLON",new TCreator(SEMICOLON_factory)); | ||
18539 | new Tfactory(this,"AMP_AMP",new TCreator(AMP_AMP_factory)); | ||
18540 | new Tfactory(this,"CHANGED_EVENT",new TCreator(CHANGED_EVENT_factory)); | ||
18541 | new Tfactory(this,"LINK_MESSAGE_EVENT",new TCreator(LINK_MESSAGE_EVENT_factory)); | ||
18542 | new Tfactory(this,"TOUCH_END_EVENT",new TCreator(TOUCH_END_EVENT_factory)); | ||
18543 | new Tfactory(this,"EQUALS",new TCreator(EQUALS_factory)); | ||
18544 | new Tfactory(this,"NOT_AT_TARGET_EVENT",new TCreator(NOT_AT_TARGET_EVENT_factory)); | ||
18545 | new Tfactory(this,"STROKE_STROKE",new TCreator(STROKE_STROKE_factory)); | ||
18546 | new Tfactory(this,"GREATER_EQUALS",new TCreator(GREATER_EQUALS_factory)); | ||
18547 | new Tfactory(this,"TOUCH_START_EVENT",new TCreator(TOUCH_START_EVENT_factory)); | ||
18548 | new Tfactory(this,"ATTACH_EVENT",new TCreator(ATTACH_EVENT_factory)); | ||
18549 | new Tfactory(this,"VECTOR_TYPE",new TCreator(VECTOR_TYPE_factory)); | ||
18550 | new Tfactory(this,"RIGHT_BRACE",new TCreator(RIGHT_BRACE_factory)); | ||
18551 | new Tfactory(this,"STATE_ENTRY_EVENT",new TCreator(STATE_ENTRY_EVENT_factory)); | ||
18552 | new Tfactory(this,"PLUS",new TCreator(PLUS_factory)); | ||
18553 | new Tfactory(this,"STAR_EQUALS",new TCreator(STAR_EQUALS_factory)); | ||
18554 | new Tfactory(this,"LAND_COLLISION_START_EVENT",new TCreator(LAND_COLLISION_START_EVENT_factory)); | ||
18555 | new Tfactory(this,"CONTROL_EVENT",new TCreator(CONTROL_EVENT_factory)); | ||
18556 | } | ||
18557 | public static object MINUS_factory(Lexer yyl) { return new MINUS(yyl);} | ||
18558 | public static object DEFAULT_STATE_factory(Lexer yyl) { return new DEFAULT_STATE(yyl);} | ||
18559 | public static object INTEGER_CONSTANT_factory(Lexer yyl) { return new INTEGER_CONSTANT(yyl);} | ||
18560 | public static object RETURN_factory(Lexer yyl) { return new RETURN(yyl);} | ||
18561 | public static object OBJECT_REZ_EVENT_factory(Lexer yyl) { return new OBJECT_REZ_EVENT(yyl);} | ||
18562 | public static object STRING_TYPE_factory(Lexer yyl) { return new STRING_TYPE(yyl);} | ||
18563 | public static object EXCLAMATION_factory(Lexer yyl) { return new EXCLAMATION(yyl);} | ||
18564 | public static object ELSE_factory(Lexer yyl) { return new ELSE(yyl);} | ||
18565 | public static object INTEGER_TYPE_factory(Lexer yyl) { return new INTEGER_TYPE(yyl);} | ||
18566 | public static object FOR_factory(Lexer yyl) { return new FOR(yyl);} | ||
18567 | public static object LEFT_PAREN_factory(Lexer yyl) { return new LEFT_PAREN(yyl);} | ||
18568 | public static object RIGHT_PAREN_factory(Lexer yyl) { return new RIGHT_PAREN(yyl);} | ||
18569 | public static object HTTP_RESPONSE_EVENT_factory(Lexer yyl) { return new HTTP_RESPONSE_EVENT(yyl);} | ||
18570 | public static object MOVING_END_EVENT_factory(Lexer yyl) { return new MOVING_END_EVENT(yyl);} | ||
18571 | public static object CARET_factory(Lexer yyl) { return new CARET(yyl);} | ||
18572 | public static object STAR_factory(Lexer yyl) { return new STAR(yyl);} | ||
18573 | public static object PLUS_EQUALS_factory(Lexer yyl) { return new PLUS_EQUALS(yyl);} | ||
18574 | public static object PERCENT_factory(Lexer yyl) { return new PERCENT(yyl);} | ||
18575 | public static object SLASH_factory(Lexer yyl) { return new SLASH(yyl);} | ||
18576 | public static object FLOAT_CONSTANT_factory(Lexer yyl) { return new FLOAT_CONSTANT(yyl);} | ||
18577 | public static object TOUCH_EVENT_factory(Lexer yyl) { return new TOUCH_EVENT(yyl);} | ||
18578 | public static object COLLISION_START_EVENT_factory(Lexer yyl) { return new COLLISION_START_EVENT(yyl);} | ||
18579 | public static object JUMP_factory(Lexer yyl) { return new JUMP(yyl);} | ||
18580 | public static object RIGHT_BRACKET_factory(Lexer yyl) { return new RIGHT_BRACKET(yyl);} | ||
18581 | public static object LEFT_ANGLE_factory(Lexer yyl) { return new LEFT_ANGLE(yyl);} | ||
18582 | public static object IF_factory(Lexer yyl) { return new IF(yyl);} | ||
18583 | public static object LAND_COLLISION_EVENT_factory(Lexer yyl) { return new LAND_COLLISION_EVENT(yyl);} | ||
18584 | public static object STATE_factory(Lexer yyl) { return new STATE(yyl);} | ||
18585 | public static object RIGHT_SHIFT_factory(Lexer yyl) { return new RIGHT_SHIFT(yyl);} | ||
18586 | public static object LIST_TYPE_factory(Lexer yyl) { return new LIST_TYPE(yyl);} | ||
18587 | public static object INCREMENT_factory(Lexer yyl) { return new INCREMENT(yyl);} | ||
18588 | public static object AT_factory(Lexer yyl) { return new AT(yyl);} | ||
18589 | public static object COLLISION_END_EVENT_factory(Lexer yyl) { return new COLLISION_END_EVENT(yyl);} | ||
18590 | public static object SENSOR_EVENT_factory(Lexer yyl) { return new SENSOR_EVENT(yyl);} | ||
18591 | public static object EQUALS_EQUALS_factory(Lexer yyl) { return new EQUALS_EQUALS(yyl);} | ||
18592 | public static object DECREMENT_factory(Lexer yyl) { return new DECREMENT(yyl);} | ||
18593 | public static object LESS_EQUALS_factory(Lexer yyl) { return new LESS_EQUALS(yyl);} | ||
18594 | public static object FLOAT_TYPE_factory(Lexer yyl) { return new FLOAT_TYPE(yyl);} | ||
18595 | public static object MOVING_START_EVENT_factory(Lexer yyl) { return new MOVING_START_EVENT(yyl);} | ||
18596 | public static object RUN_TIME_PERMISSIONS_EVENT_factory(Lexer yyl) { return new RUN_TIME_PERMISSIONS_EVENT(yyl);} | ||
18597 | public static object ON_REZ_EVENT_factory(Lexer yyl) { return new ON_REZ_EVENT(yyl);} | ||
18598 | public static object NO_SENSOR_EVENT_factory(Lexer yyl) { return new NO_SENSOR_EVENT(yyl);} | ||
18599 | public static object EXCLAMATION_EQUALS_factory(Lexer yyl) { return new EXCLAMATION_EQUALS(yyl);} | ||
18600 | public static object MINUS_EQUALS_factory(Lexer yyl) { return new MINUS_EQUALS(yyl);} | ||
18601 | public static object LISTEN_EVENT_factory(Lexer yyl) { return new LISTEN_EVENT(yyl);} | ||
18602 | public static object PERCENT_EQUALS_factory(Lexer yyl) { return new PERCENT_EQUALS(yyl);} | ||
18603 | public static object LEFT_BRACKET_factory(Lexer yyl) { return new LEFT_BRACKET(yyl);} | ||
18604 | public static object HEX_INTEGER_CONSTANT_factory(Lexer yyl) { return new HEX_INTEGER_CONSTANT(yyl);} | ||
18605 | public static object COMMA_factory(Lexer yyl) { return new COMMA(yyl);} | ||
18606 | public static object PERIOD_factory(Lexer yyl) { return new PERIOD(yyl);} | ||
18607 | public static object KEY_TYPE_factory(Lexer yyl) { return new KEY_TYPE(yyl);} | ||
18608 | public static object SLASH_EQUALS_factory(Lexer yyl) { return new SLASH_EQUALS(yyl);} | ||
18609 | public static object STATE_EXIT_EVENT_factory(Lexer yyl) { return new STATE_EXIT_EVENT(yyl);} | ||
18610 | public static object COLLISION_EVENT_factory(Lexer yyl) { return new COLLISION_EVENT(yyl);} | ||
18611 | public static object STRING_CONSTANT_factory(Lexer yyl) { return new STRING_CONSTANT(yyl);} | ||
18612 | public static object WHILE_factory(Lexer yyl) { return new WHILE(yyl);} | ||
18613 | public static object IDENT_factory(Lexer yyl) { return new IDENT(yyl);} | ||
18614 | public static object DATASERVER_EVENT_factory(Lexer yyl) { return new DATASERVER_EVENT(yyl);} | ||
18615 | public static object ROTATION_TYPE_factory(Lexer yyl) { return new ROTATION_TYPE(yyl);} | ||
18616 | public static object AT_ROT_TARGET_EVENT_factory(Lexer yyl) { return new AT_ROT_TARGET_EVENT(yyl);} | ||
18617 | public static object LEFT_BRACE_factory(Lexer yyl) { return new LEFT_BRACE(yyl);} | ||
18618 | public static object DO_factory(Lexer yyl) { return new DO(yyl);} | ||
18619 | public static object LEFT_SHIFT_factory(Lexer yyl) { return new LEFT_SHIFT(yyl);} | ||
18620 | public static object REMOTE_DATA_EVENT_factory(Lexer yyl) { return new REMOTE_DATA_EVENT(yyl);} | ||
18621 | public static object EMAIL_EVENT_factory(Lexer yyl) { return new EMAIL_EVENT(yyl);} | ||
18622 | public static object NOT_AT_ROT_TARGET_EVENT_factory(Lexer yyl) { return new NOT_AT_ROT_TARGET_EVENT(yyl);} | ||
18623 | public static object TILDE_factory(Lexer yyl) { return new TILDE(yyl);} | ||
18624 | public static object STROKE_factory(Lexer yyl) { return new STROKE(yyl);} | ||
18625 | public static object LAND_COLLISION_END_EVENT_factory(Lexer yyl) { return new LAND_COLLISION_END_EVENT(yyl);} | ||
18626 | public static object TIMER_EVENT_factory(Lexer yyl) { return new TIMER_EVENT(yyl);} | ||
18627 | public static object MONEY_EVENT_factory(Lexer yyl) { return new MONEY_EVENT(yyl);} | ||
18628 | public static object RIGHT_ANGLE_factory(Lexer yyl) { return new RIGHT_ANGLE(yyl);} | ||
18629 | public static object AT_TARGET_EVENT_factory(Lexer yyl) { return new AT_TARGET_EVENT(yyl);} | ||
18630 | public static object AMP_factory(Lexer yyl) { return new AMP(yyl);} | ||
18631 | public static object SEMICOLON_factory(Lexer yyl) { return new SEMICOLON(yyl);} | ||
18632 | public static object AMP_AMP_factory(Lexer yyl) { return new AMP_AMP(yyl);} | ||
18633 | public static object CHANGED_EVENT_factory(Lexer yyl) { return new CHANGED_EVENT(yyl);} | ||
18634 | public static object LINK_MESSAGE_EVENT_factory(Lexer yyl) { return new LINK_MESSAGE_EVENT(yyl);} | ||
18635 | public static object TOUCH_END_EVENT_factory(Lexer yyl) { return new TOUCH_END_EVENT(yyl);} | ||
18636 | public static object EQUALS_factory(Lexer yyl) { return new EQUALS(yyl);} | ||
18637 | public static object NOT_AT_TARGET_EVENT_factory(Lexer yyl) { return new NOT_AT_TARGET_EVENT(yyl);} | ||
18638 | public static object STROKE_STROKE_factory(Lexer yyl) { return new STROKE_STROKE(yyl);} | ||
18639 | public static object GREATER_EQUALS_factory(Lexer yyl) { return new GREATER_EQUALS(yyl);} | ||
18640 | public static object TOUCH_START_EVENT_factory(Lexer yyl) { return new TOUCH_START_EVENT(yyl);} | ||
18641 | public static object ATTACH_EVENT_factory(Lexer yyl) { return new ATTACH_EVENT(yyl);} | ||
18642 | public static object VECTOR_TYPE_factory(Lexer yyl) { return new VECTOR_TYPE(yyl);} | ||
18643 | public static object RIGHT_BRACE_factory(Lexer yyl) { return new RIGHT_BRACE(yyl);} | ||
18644 | public static object STATE_ENTRY_EVENT_factory(Lexer yyl) { return new STATE_ENTRY_EVENT(yyl);} | ||
18645 | public static object PLUS_factory(Lexer yyl) { return new PLUS(yyl);} | ||
18646 | public static object STAR_EQUALS_factory(Lexer yyl) { return new STAR_EQUALS(yyl);} | ||
18647 | public static object LAND_COLLISION_START_EVENT_factory(Lexer yyl) { return new LAND_COLLISION_START_EVENT(yyl);} | ||
18648 | public static object CONTROL_EVENT_factory(Lexer yyl) { return new CONTROL_EVENT(yyl);} | ||
18649 | public override TOKEN OldAction(Lexer yym,ref string yytext,int action, ref bool reject) { | ||
18650 | switch(action) { | ||
18651 | case -1: break; | ||
18652 | case 1015: { ((LSLTokens)yym).str += '\\'; } | ||
18653 | break; | ||
18654 | case 991: { ((LSLTokens)yym).str += "\\\""; } | ||
18655 | break; | ||
18656 | case 1020: { } | ||
18657 | break; | ||
18658 | case 1064: { yym.yy_begin("YYINITIAL"); ((LSLTokens)yym).yytext = ((LSLTokens)yym).str; ((LSLTokens)yym).str = String.Empty; return new STRING_CONSTANT(yym); } | ||
18659 | break; | ||
18660 | case 1069: ; | ||
18661 | break; | ||
18662 | case 1073: ; | ||
18663 | break; | ||
18664 | case 1003: { ((LSLTokens)yym).str += "\\\\"; } | ||
18665 | break; | ||
18666 | case 951: { yym.yy_begin("STRING"); ((LSLTokens)yym).str = "";} | ||
18667 | break; | ||
18668 | case 967: { ((LSLTokens)yym).str += "\\n"; } | ||
18669 | break; | ||
18670 | case 979: { ((LSLTokens)yym).str += " "; } | ||
18671 | break; | ||
18672 | case 956: { ((LSLTokens)yym).str += yytext; } | ||
18673 | break; | ||
18674 | case 962: { ((LSLTokens)yym).str += "\\n"; } | ||
18675 | break; | ||
18676 | } | ||
18677 | return null; | ||
18678 | }} | ||
18679 | public class LSLTokens:Lexer { | ||
18680 | public LSLTokens():base(new yyLSLTokens(new ErrorHandler(false))) {} | ||
18681 | public LSLTokens(ErrorHandler eh):base(new yyLSLTokens(eh)) {} | ||
18682 | public LSLTokens(YyLexer tks):base(tks){} | ||
18683 | |||
18684 | public string str; | ||
18685 | |||
18686 | } | ||
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs new file mode 100644 index 0000000..adcf90a --- /dev/null +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs | |||
@@ -0,0 +1,9507 @@ | |||
1 | using System;using Tools; | ||
2 | //%+LSLProgramRoot+95 | ||
3 | public class LSLProgramRoot : SYMBOL{ | ||
4 | public LSLProgramRoot (Parser yyp, States s ):base(((LSLSyntax | ||
5 | )yyp)){ while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
6 | } | ||
7 | public LSLProgramRoot (Parser yyp, GlobalDefinitions gd , States s ):base(((LSLSyntax | ||
8 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
9 | while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
10 | } | ||
11 | |||
12 | public override string yyname { get { return "LSLProgramRoot"; }} | ||
13 | public override int yynum { get { return 95; }} | ||
14 | public LSLProgramRoot(Parser yyp):base(yyp){}} | ||
15 | //%+GlobalDefinitions+96 | ||
16 | public class GlobalDefinitions : SYMBOL{ | ||
17 | public GlobalDefinitions (Parser yyp, GlobalVariableDeclaration gvd ):base(((LSLSyntax | ||
18 | )yyp)){ kids . Add ( gvd ); | ||
19 | } | ||
20 | public GlobalDefinitions (Parser yyp, GlobalDefinitions gd , GlobalVariableDeclaration gvd ):base(((LSLSyntax | ||
21 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
22 | kids . Add ( gvd ); | ||
23 | } | ||
24 | public GlobalDefinitions (Parser yyp, GlobalFunctionDefinition gfd ):base(((LSLSyntax | ||
25 | )yyp)){ kids . Add ( gfd ); | ||
26 | } | ||
27 | public GlobalDefinitions (Parser yyp, GlobalDefinitions gd , GlobalFunctionDefinition gfd ):base(((LSLSyntax | ||
28 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
29 | kids . Add ( gfd ); | ||
30 | } | ||
31 | |||
32 | public override string yyname { get { return "GlobalDefinitions"; }} | ||
33 | public override int yynum { get { return 96; }} | ||
34 | public GlobalDefinitions(Parser yyp):base(yyp){}} | ||
35 | //%+GlobalVariableDeclaration+97 | ||
36 | public class GlobalVariableDeclaration : SYMBOL{ | ||
37 | public GlobalVariableDeclaration (Parser yyp, Declaration d ):base(((LSLSyntax | ||
38 | )yyp)){ kids . Add ( d ); | ||
39 | } | ||
40 | public GlobalVariableDeclaration (Parser yyp, Assignment a ):base(((LSLSyntax | ||
41 | )yyp)){ kids . Add ( a ); | ||
42 | } | ||
43 | |||
44 | public override string yyname { get { return "GlobalVariableDeclaration"; }} | ||
45 | public override int yynum { get { return 97; }} | ||
46 | public GlobalVariableDeclaration(Parser yyp):base(yyp){}} | ||
47 | //%+GlobalFunctionDefinition+98 | ||
48 | public class GlobalFunctionDefinition : SYMBOL{ | ||
49 | private string m_returnType ; | ||
50 | private string m_name ; | ||
51 | public GlobalFunctionDefinition (Parser yyp, string returnType , string name , ArgumentDeclarationList adl , CompoundStatement cs ):base(((LSLSyntax | ||
52 | )yyp)){ m_returnType = returnType ; | ||
53 | m_name = name ; | ||
54 | kids . Add ( adl ); | ||
55 | kids . Add ( cs ); | ||
56 | } | ||
57 | public string ReturnType { get { return m_returnType ; | ||
58 | } | ||
59 | set { m_returnType = value ; | ||
60 | } | ||
61 | } | ||
62 | public string Name { get { return m_name ; | ||
63 | } | ||
64 | } | ||
65 | |||
66 | public override string yyname { get { return "GlobalFunctionDefinition"; }} | ||
67 | public override int yynum { get { return 98; }} | ||
68 | public GlobalFunctionDefinition(Parser yyp):base(yyp){}} | ||
69 | //%+States+99 | ||
70 | public class States : SYMBOL{ | ||
71 | public States (Parser yyp, State ds ):base(((LSLSyntax | ||
72 | )yyp)){ kids . Add ( ds ); | ||
73 | } | ||
74 | public States (Parser yyp, States s , State us ):base(((LSLSyntax | ||
75 | )yyp)){ while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
76 | kids . Add ( us ); | ||
77 | } | ||
78 | |||
79 | public override string yyname { get { return "States"; }} | ||
80 | public override int yynum { get { return 99; }} | ||
81 | public States(Parser yyp):base(yyp){}} | ||
82 | //%+State+100 | ||
83 | public class State : SYMBOL{ | ||
84 | private string m_name ; | ||
85 | public State (Parser yyp, string name , StateBody sb ):base(((LSLSyntax | ||
86 | )yyp)){ m_name = name ; | ||
87 | while (0< sb . kids . Count ) kids . Add ( sb . kids . Pop ()); | ||
88 | } | ||
89 | public override string ToString (){ return "STATE<"+ m_name +">"; | ||
90 | } | ||
91 | public string Name { get { return m_name ; | ||
92 | } | ||
93 | } | ||
94 | |||
95 | public override string yyname { get { return "State"; }} | ||
96 | public override int yynum { get { return 100; }} | ||
97 | public State(Parser yyp):base(yyp){}} | ||
98 | //%+StateBody+101 | ||
99 | public class StateBody : SYMBOL{ | ||
100 | public StateBody (Parser yyp, StateBody sb , StateEvent se ):base(((LSLSyntax | ||
101 | )yyp)){ while (0< sb . kids . Count ) kids . Add ( sb . kids . Pop ()); | ||
102 | kids . Add ( se ); | ||
103 | } | ||
104 | public StateBody (Parser yyp, StateEvent se ):base(((LSLSyntax | ||
105 | )yyp)){ kids . Add ( se ); | ||
106 | } | ||
107 | |||
108 | public override string yyname { get { return "StateBody"; }} | ||
109 | public override int yynum { get { return 101; }} | ||
110 | public StateBody(Parser yyp):base(yyp){}} | ||
111 | //%+StateEvent+102 | ||
112 | public class StateEvent : SYMBOL{ | ||
113 | private string m_name ; | ||
114 | public StateEvent (Parser yyp, string name , CompoundStatement cs ):base(((LSLSyntax | ||
115 | )yyp)){ m_name = name ; | ||
116 | kids . Add ( cs ); | ||
117 | } | ||
118 | public StateEvent (Parser yyp, string name , ArgumentDeclarationList dal , CompoundStatement cs ):base(((LSLSyntax | ||
119 | )yyp)){ m_name = name ; | ||
120 | if (0< dal . kids . Count ) kids . Add ( dal ); | ||
121 | kids . Add ( cs ); | ||
122 | } | ||
123 | public override string ToString (){ return "EVENT<"+ m_name +">"; | ||
124 | } | ||
125 | public string Name { get { return m_name ; | ||
126 | } | ||
127 | } | ||
128 | |||
129 | public override string yyname { get { return "StateEvent"; }} | ||
130 | public override int yynum { get { return 102; }} | ||
131 | public StateEvent(Parser yyp):base(yyp){}} | ||
132 | //%+ArgumentDeclarationList+103 | ||
133 | public class ArgumentDeclarationList : SYMBOL{ | ||
134 | public ArgumentDeclarationList (Parser yyp, Declaration d ):base(((LSLSyntax | ||
135 | )yyp)){ kids . Add ( d ); | ||
136 | } | ||
137 | public ArgumentDeclarationList (Parser yyp, ArgumentDeclarationList adl , Declaration d ):base(((LSLSyntax | ||
138 | )yyp)){ while (0< adl . kids . Count ) kids . Add ( adl . kids . Pop ()); | ||
139 | kids . Add ( d ); | ||
140 | } | ||
141 | |||
142 | public override string yyname { get { return "ArgumentDeclarationList"; }} | ||
143 | public override int yynum { get { return 103; }} | ||
144 | public ArgumentDeclarationList(Parser yyp):base(yyp){}} | ||
145 | //%+Declaration+104 | ||
146 | public class Declaration : SYMBOL{ | ||
147 | private string m_datatype ; | ||
148 | private string m_id ; | ||
149 | public Declaration (Parser yyp, string type , string id ):base(((LSLSyntax | ||
150 | )yyp)){ m_datatype = type ; | ||
151 | m_id = id ; | ||
152 | } | ||
153 | public override string ToString (){ return "Declaration<"+ m_datatype +":"+ m_id +">"; | ||
154 | } | ||
155 | public string Datatype { get { return m_datatype ; | ||
156 | } | ||
157 | set { m_datatype = value ; | ||
158 | } | ||
159 | } | ||
160 | public string Id { get { return m_id ; | ||
161 | } | ||
162 | } | ||
163 | |||
164 | public override string yyname { get { return "Declaration"; }} | ||
165 | public override int yynum { get { return 104; }} | ||
166 | public Declaration(Parser yyp):base(yyp){}} | ||
167 | //%+Typename+105 | ||
168 | public class Typename : SYMBOL{ | ||
169 | public string yytext ; | ||
170 | public Typename (Parser yyp, string text ):base(((LSLSyntax | ||
171 | )yyp)){ yytext = text ; | ||
172 | } | ||
173 | |||
174 | public override string yyname { get { return "Typename"; }} | ||
175 | public override int yynum { get { return 105; }} | ||
176 | public Typename(Parser yyp):base(yyp){}} | ||
177 | //%+Event+106 | ||
178 | public class Event : SYMBOL{ | ||
179 | public string yytext ; | ||
180 | public Event (Parser yyp, string text ):base(((LSLSyntax | ||
181 | )yyp)){ yytext = text ; | ||
182 | } | ||
183 | |||
184 | public override string yyname { get { return "Event"; }} | ||
185 | public override int yynum { get { return 106; }} | ||
186 | public Event(Parser yyp):base(yyp){}} | ||
187 | //%+CompoundStatement+107 | ||
188 | public class CompoundStatement : SYMBOL{ | ||
189 | public CompoundStatement (Parser yyp):base(((LSLSyntax | ||
190 | )yyp)){} | ||
191 | public CompoundStatement (Parser yyp, StatementList sl ):base(((LSLSyntax | ||
192 | )yyp)){ while (0< sl . kids . Count ) kids . Add ( sl . kids . Pop ()); | ||
193 | } | ||
194 | |||
195 | public override string yyname { get { return "CompoundStatement"; }} | ||
196 | public override int yynum { get { return 107; }} | ||
197 | } | ||
198 | //%+StatementList+108 | ||
199 | public class StatementList : SYMBOL{ | ||
200 | private void AddStatement ( Statement s ){ if ( s . kids . Top is IfStatement || s . kids . Top is WhileStatement || s . kids . Top is DoWhileStatement || s . kids . Top is ForLoop ) kids . Add ( s . kids . Pop ()); | ||
201 | else kids . Add ( s ); | ||
202 | } | ||
203 | public StatementList (Parser yyp, Statement s ):base(((LSLSyntax | ||
204 | )yyp)){ AddStatement ( s ); | ||
205 | } | ||
206 | public StatementList (Parser yyp, StatementList sl , Statement s ):base(((LSLSyntax | ||
207 | )yyp)){ while (0< sl . kids . Count ) kids . Add ( sl . kids . Pop ()); | ||
208 | AddStatement ( s ); | ||
209 | } | ||
210 | |||
211 | public override string yyname { get { return "StatementList"; }} | ||
212 | public override int yynum { get { return 108; }} | ||
213 | public StatementList(Parser yyp):base(yyp){}} | ||
214 | //%+Statement+109 | ||
215 | public class Statement : SYMBOL{ | ||
216 | public Statement (Parser yyp, Declaration d ):base(((LSLSyntax | ||
217 | )yyp)){ kids . Add ( d ); | ||
218 | } | ||
219 | public Statement (Parser yyp, CompoundStatement cs ):base(((LSLSyntax | ||
220 | )yyp)){ kids . Add ( cs ); | ||
221 | } | ||
222 | public Statement (Parser yyp, FunctionCall fc ):base(((LSLSyntax | ||
223 | )yyp)){ kids . Add ( fc ); | ||
224 | } | ||
225 | public Statement (Parser yyp, Assignment a ):base(((LSLSyntax | ||
226 | )yyp)){ kids . Add ( a ); | ||
227 | } | ||
228 | public Statement (Parser yyp, Expression e ):base(((LSLSyntax | ||
229 | )yyp)){ kids . Add ( e ); | ||
230 | } | ||
231 | public Statement (Parser yyp, ReturnStatement rs ):base(((LSLSyntax | ||
232 | )yyp)){ kids . Add ( rs ); | ||
233 | } | ||
234 | public Statement (Parser yyp, StateChange sc ):base(((LSLSyntax | ||
235 | )yyp)){ kids . Add ( sc ); | ||
236 | } | ||
237 | public Statement (Parser yyp, IfStatement ifs ):base(((LSLSyntax | ||
238 | )yyp)){ kids . Add ( ifs ); | ||
239 | } | ||
240 | public Statement (Parser yyp, WhileStatement ifs ):base(((LSLSyntax | ||
241 | )yyp)){ kids . Add ( ifs ); | ||
242 | } | ||
243 | public Statement (Parser yyp, DoWhileStatement ifs ):base(((LSLSyntax | ||
244 | )yyp)){ kids . Add ( ifs ); | ||
245 | } | ||
246 | public Statement (Parser yyp, ForLoop fl ):base(((LSLSyntax | ||
247 | )yyp)){ kids . Add ( fl ); | ||
248 | } | ||
249 | |||
250 | public override string yyname { get { return "Statement"; }} | ||
251 | public override int yynum { get { return 109; }} | ||
252 | public Statement(Parser yyp):base(yyp){}} | ||
253 | //%+Assignment+110 | ||
254 | public class Assignment : SYMBOL{ | ||
255 | private string m_assignmentType ; | ||
256 | public Assignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax | ||
257 | )yyp)){ m_assignmentType = assignmentType ; | ||
258 | kids . Add ( lhs ); | ||
259 | if ( rhs is ConstantExpression ) while (0< rhs . kids . Count ) kids . Add ( rhs . kids . Pop ()); | ||
260 | else kids . Add ( rhs ); | ||
261 | } | ||
262 | public string AssignmentType { get { return m_assignmentType ; | ||
263 | } | ||
264 | } | ||
265 | |||
266 | public override string yyname { get { return "Assignment"; }} | ||
267 | public override int yynum { get { return 110; }} | ||
268 | public Assignment(Parser yyp):base(yyp){}} | ||
269 | //%+ReturnStatement+111 | ||
270 | public class ReturnStatement : SYMBOL{ | ||
271 | public ReturnStatement (Parser yyp):base(((LSLSyntax | ||
272 | )yyp)){} | ||
273 | public ReturnStatement (Parser yyp, Expression e ):base(((LSLSyntax | ||
274 | )yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
275 | else kids . Add ( e ); | ||
276 | } | ||
277 | |||
278 | public override string yyname { get { return "ReturnStatement"; }} | ||
279 | public override int yynum { get { return 111; }} | ||
280 | } | ||
281 | //%+StateChange+112 | ||
282 | public class StateChange : SYMBOL{ | ||
283 | private string m_newState ; | ||
284 | public StateChange (Parser yyp, string newState ):base(((LSLSyntax | ||
285 | )yyp)){ m_newState = newState ; | ||
286 | } | ||
287 | public string NewState { get { return m_newState ; | ||
288 | } | ||
289 | } | ||
290 | |||
291 | public override string yyname { get { return "StateChange"; }} | ||
292 | public override int yynum { get { return 112; }} | ||
293 | public StateChange(Parser yyp):base(yyp){}} | ||
294 | //%+IfStatement+113 | ||
295 | public class IfStatement : SYMBOL{ | ||
296 | private void AddStatement ( Statement s ){ if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
297 | else kids . Add ( s ); | ||
298 | } | ||
299 | public IfStatement (Parser yyp, Expression e , Statement ifs ):base(((LSLSyntax | ||
300 | )yyp)){ kids . Add ( e ); | ||
301 | AddStatement ( ifs ); | ||
302 | } | ||
303 | public IfStatement (Parser yyp, Expression e , Statement ifs , Statement es ):base(((LSLSyntax | ||
304 | )yyp)){ kids . Add ( e ); | ||
305 | AddStatement ( ifs ); | ||
306 | if ( es . kids . Top is IfStatement ) kids . Add ( es . kids . Pop ()); | ||
307 | else AddStatement ( es ); | ||
308 | } | ||
309 | |||
310 | public override string yyname { get { return "IfStatement"; }} | ||
311 | public override int yynum { get { return 113; }} | ||
312 | public IfStatement(Parser yyp):base(yyp){}} | ||
313 | //%+WhileStatement+114 | ||
314 | public class WhileStatement : SYMBOL{ | ||
315 | public WhileStatement (Parser yyp, Expression e , Statement s ):base(((LSLSyntax | ||
316 | )yyp)){ kids . Add ( e ); | ||
317 | if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
318 | else kids . Add ( s ); | ||
319 | } | ||
320 | |||
321 | public override string yyname { get { return "WhileStatement"; }} | ||
322 | public override int yynum { get { return 114; }} | ||
323 | public WhileStatement(Parser yyp):base(yyp){}} | ||
324 | //%+DoWhileStatement+115 | ||
325 | public class DoWhileStatement : SYMBOL{ | ||
326 | public DoWhileStatement (Parser yyp, Expression e , Statement s ):base(((LSLSyntax | ||
327 | )yyp)){ if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
328 | else kids . Add ( s ); | ||
329 | kids . Add ( e ); | ||
330 | } | ||
331 | |||
332 | public override string yyname { get { return "DoWhileStatement"; }} | ||
333 | public override int yynum { get { return 115; }} | ||
334 | public DoWhileStatement(Parser yyp):base(yyp){}} | ||
335 | //%+ForLoop+116 | ||
336 | public class ForLoop : SYMBOL{ | ||
337 | public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax | ||
338 | )yyp)){ kids . Add ( flsa ); | ||
339 | kids . Add ( e ); | ||
340 | kids . Add ( flsb ); | ||
341 | if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
342 | else kids . Add ( s ); | ||
343 | } | ||
344 | |||
345 | public override string yyname { get { return "ForLoop"; }} | ||
346 | public override int yynum { get { return 116; }} | ||
347 | public ForLoop(Parser yyp):base(yyp){}} | ||
348 | //%+ForLoopStatement+117 | ||
349 | public class ForLoopStatement : SYMBOL{ | ||
350 | public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax | ||
351 | )yyp)){ kids . Add ( e ); | ||
352 | } | ||
353 | public ForLoopStatement (Parser yyp, Assignment a ):base(((LSLSyntax | ||
354 | )yyp)){ kids . Add ( a ); | ||
355 | } | ||
356 | public ForLoopStatement (Parser yyp, ForLoopStatement fls , Expression e ):base(((LSLSyntax | ||
357 | )yyp)){ while (0< fls . kids . Count ) kids . Add ( fls . kids . Pop ()); | ||
358 | kids . Add ( e ); | ||
359 | } | ||
360 | public ForLoopStatement (Parser yyp, ForLoopStatement fls , Assignment a ):base(((LSLSyntax | ||
361 | )yyp)){ while (0< fls . kids . Count ) kids . Add ( fls . kids . Pop ()); | ||
362 | kids . Add ( a ); | ||
363 | } | ||
364 | |||
365 | public override string yyname { get { return "ForLoopStatement"; }} | ||
366 | public override int yynum { get { return 117; }} | ||
367 | public ForLoopStatement(Parser yyp):base(yyp){}} | ||
368 | //%+FunctionCall+118 | ||
369 | public class FunctionCall : SYMBOL{ | ||
370 | private string m_id ; | ||
371 | public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax | ||
372 | )yyp)){ m_id = id ; | ||
373 | kids . Add ( al ); | ||
374 | } | ||
375 | public override string ToString (){ return base . ToString ()+"<"+ m_id +">"; | ||
376 | } | ||
377 | public string Id { get { return m_id ; | ||
378 | } | ||
379 | } | ||
380 | |||
381 | public override string yyname { get { return "FunctionCall"; }} | ||
382 | public override int yynum { get { return 118; }} | ||
383 | public FunctionCall(Parser yyp):base(yyp){}} | ||
384 | //%+ArgumentList+119 | ||
385 | public class ArgumentList : SYMBOL{ | ||
386 | public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax | ||
387 | )yyp)){ AddArgument ( a ); | ||
388 | } | ||
389 | public ArgumentList (Parser yyp, ArgumentList al , Argument a ):base(((LSLSyntax | ||
390 | )yyp)){ while (0< al . kids . Count ) kids . Add ( al . kids . Pop ()); | ||
391 | AddArgument ( a ); | ||
392 | } | ||
393 | private void AddArgument ( Argument a ){ if ( a is ExpressionArgument ) while (0< a . kids . Count ) kids . Add ( a . kids . Pop ()); | ||
394 | else kids . Add ( a ); | ||
395 | } | ||
396 | |||
397 | public override string yyname { get { return "ArgumentList"; }} | ||
398 | public override int yynum { get { return 119; }} | ||
399 | public ArgumentList(Parser yyp):base(yyp){}} | ||
400 | //%+Argument+120 | ||
401 | public class Argument : SYMBOL{ | ||
402 | public override string yyname { get { return "Argument"; }} | ||
403 | public override int yynum { get { return 120; }} | ||
404 | public Argument(Parser yyp):base(yyp){}} | ||
405 | //%+ExpressionArgument+121 | ||
406 | public class ExpressionArgument : Argument{ | ||
407 | public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax | ||
408 | )yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
409 | else kids . Add ( e ); | ||
410 | } | ||
411 | |||
412 | public override string yyname { get { return "ExpressionArgument"; }} | ||
413 | public override int yynum { get { return 121; }} | ||
414 | public ExpressionArgument(Parser yyp):base(yyp){}} | ||
415 | //%+Constant+122 | ||
416 | public class Constant : SYMBOL{ | ||
417 | private string m_type ; | ||
418 | private string m_val ; | ||
419 | public Constant (Parser yyp, string type , string val ):base(((LSLSyntax | ||
420 | )yyp)){ m_type = type ; | ||
421 | m_val = val ; | ||
422 | } | ||
423 | public override string ToString (){ return base . ToString ()+"<"+ m_type +":"+ m_val +">"; | ||
424 | } | ||
425 | public string Value { get { return m_val ; | ||
426 | } | ||
427 | set { m_val = value ; | ||
428 | } | ||
429 | } | ||
430 | public string Type { get { return m_type ; | ||
431 | } | ||
432 | set { m_type = value ; | ||
433 | } | ||
434 | } | ||
435 | |||
436 | public override string yyname { get { return "Constant"; }} | ||
437 | public override int yynum { get { return 122; }} | ||
438 | public Constant(Parser yyp):base(yyp){}} | ||
439 | //%+VectorConstant+123 | ||
440 | public class VectorConstant : Constant{ | ||
441 | public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax | ||
442 | )yyp),"vector", null ){ kids . Add ( valX ); | ||
443 | kids . Add ( valY ); | ||
444 | kids . Add ( valZ ); | ||
445 | } | ||
446 | |||
447 | public override string yyname { get { return "VectorConstant"; }} | ||
448 | public override int yynum { get { return 123; }} | ||
449 | public VectorConstant(Parser yyp):base(yyp){}} | ||
450 | //%+RotationConstant+124 | ||
451 | public class RotationConstant : Constant{ | ||
452 | public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax | ||
453 | )yyp),"rotation", null ){ kids . Add ( valX ); | ||
454 | kids . Add ( valY ); | ||
455 | kids . Add ( valZ ); | ||
456 | kids . Add ( valS ); | ||
457 | } | ||
458 | |||
459 | public override string yyname { get { return "RotationConstant"; }} | ||
460 | public override int yynum { get { return 124; }} | ||
461 | public RotationConstant(Parser yyp):base(yyp){}} | ||
462 | //%+ListConstant+125 | ||
463 | public class ListConstant : Constant{ | ||
464 | public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax | ||
465 | )yyp),"list", null ){ kids . Add ( al ); | ||
466 | } | ||
467 | |||
468 | public override string yyname { get { return "ListConstant"; }} | ||
469 | public override int yynum { get { return 125; }} | ||
470 | public ListConstant(Parser yyp):base(yyp){}} | ||
471 | //%+Expression+126 | ||
472 | public class Expression : SYMBOL{ | ||
473 | protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
474 | else kids . Add ( e ); | ||
475 | } | ||
476 | |||
477 | public override string yyname { get { return "Expression"; }} | ||
478 | public override int yynum { get { return 126; }} | ||
479 | public Expression(Parser yyp):base(yyp){}} | ||
480 | //%+ConstantExpression+127 | ||
481 | public class ConstantExpression : Expression{ | ||
482 | public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax | ||
483 | )yyp)){ kids . Add ( c ); | ||
484 | } | ||
485 | |||
486 | public override string yyname { get { return "ConstantExpression"; }} | ||
487 | public override int yynum { get { return 127; }} | ||
488 | public ConstantExpression(Parser yyp):base(yyp){}} | ||
489 | //%+IdentExpression+128 | ||
490 | public class IdentExpression : Expression{ | ||
491 | protected string m_name ; | ||
492 | public IdentExpression (Parser yyp, string name ):base(((LSLSyntax | ||
493 | )yyp)){ m_name = name ; | ||
494 | } | ||
495 | public override string ToString (){ return base . ToString ()+"<"+ m_name +">"; | ||
496 | } | ||
497 | public string Name { get { return m_name ; | ||
498 | } | ||
499 | } | ||
500 | |||
501 | public override string yyname { get { return "IdentExpression"; }} | ||
502 | public override int yynum { get { return 128; }} | ||
503 | public IdentExpression(Parser yyp):base(yyp){}} | ||
504 | //%+IdentDotExpression+129 | ||
505 | public class IdentDotExpression : IdentExpression{ | ||
506 | private string m_member ; | ||
507 | public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax | ||
508 | )yyp), name ){ m_member = member ; | ||
509 | } | ||
510 | public override string ToString (){ string baseToString = base . ToString (); | ||
511 | return baseToString . Substring (0, baseToString . Length -1)+"."+ m_member +">"; | ||
512 | } | ||
513 | public string Member { get { return m_member ; | ||
514 | } | ||
515 | } | ||
516 | |||
517 | public override string yyname { get { return "IdentDotExpression"; }} | ||
518 | public override int yynum { get { return 129; }} | ||
519 | public IdentDotExpression(Parser yyp):base(yyp){}} | ||
520 | //%+FunctionCallExpression+130 | ||
521 | public class FunctionCallExpression : Expression{ | ||
522 | public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax | ||
523 | )yyp)){ kids . Add ( fc ); | ||
524 | } | ||
525 | |||
526 | public override string yyname { get { return "FunctionCallExpression"; }} | ||
527 | public override int yynum { get { return 130; }} | ||
528 | public FunctionCallExpression(Parser yyp):base(yyp){}} | ||
529 | //%+BinaryExpression+131 | ||
530 | public class BinaryExpression : Expression{ | ||
531 | private string m_expressionSymbol ; | ||
532 | public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax | ||
533 | )yyp)){ m_expressionSymbol = expressionSymbol ; | ||
534 | AddExpression ( lhs ); | ||
535 | AddExpression ( rhs ); | ||
536 | } | ||
537 | public string ExpressionSymbol { get { return m_expressionSymbol ; | ||
538 | } | ||
539 | } | ||
540 | public override string ToString (){ return base . ToString ()+"<"+ m_expressionSymbol +">"; | ||
541 | } | ||
542 | |||
543 | public override string yyname { get { return "BinaryExpression"; }} | ||
544 | public override int yynum { get { return 131; }} | ||
545 | public BinaryExpression(Parser yyp):base(yyp){}} | ||
546 | //%+UnaryExpression+132 | ||
547 | public class UnaryExpression : Expression{ | ||
548 | private string m_unarySymbol ; | ||
549 | public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax | ||
550 | )yyp)){ m_unarySymbol = unarySymbol ; | ||
551 | kids . Add ( e ); | ||
552 | } | ||
553 | public string UnarySymbol { get { return m_unarySymbol ; | ||
554 | } | ||
555 | } | ||
556 | |||
557 | public override string yyname { get { return "UnaryExpression"; }} | ||
558 | public override int yynum { get { return 132; }} | ||
559 | public UnaryExpression(Parser yyp):base(yyp){}} | ||
560 | //%+TypecastExpression+133 | ||
561 | public class TypecastExpression : Expression{ | ||
562 | private string m_typecastType ; | ||
563 | public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax | ||
564 | )yyp)){ m_typecastType = typecastType ; | ||
565 | kids . Add ( rhs ); | ||
566 | } | ||
567 | public string TypecastType { get { return m_typecastType ; | ||
568 | } | ||
569 | set { m_typecastType = value ; | ||
570 | } | ||
571 | } | ||
572 | |||
573 | public override string yyname { get { return "TypecastExpression"; }} | ||
574 | public override int yynum { get { return 133; }} | ||
575 | public TypecastExpression(Parser yyp):base(yyp){}} | ||
576 | //%+ParenthesisExpression+134 | ||
577 | public class ParenthesisExpression : Expression{ | ||
578 | public ParenthesisExpression (Parser yyp, Expression e ):base(((LSLSyntax | ||
579 | )yyp)){ kids . Add ( e ); | ||
580 | } | ||
581 | |||
582 | public override string yyname { get { return "ParenthesisExpression"; }} | ||
583 | public override int yynum { get { return 134; }} | ||
584 | public ParenthesisExpression(Parser yyp):base(yyp){}} | ||
585 | //%+IncrementDecrementExpression+135 | ||
586 | public class IncrementDecrementExpression : Expression{ | ||
587 | private string m_name ; | ||
588 | private string m_operation ; | ||
589 | private bool m_postOperation ; | ||
590 | public IncrementDecrementExpression (Parser yyp, string name , string operation , bool postOperation ):base(((LSLSyntax | ||
591 | )yyp)){ m_name = name ; | ||
592 | m_operation = operation ; | ||
593 | m_postOperation = postOperation ; | ||
594 | } | ||
595 | public IncrementDecrementExpression (Parser yyp, IdentDotExpression ide , string operation , bool postOperation ):base(((LSLSyntax | ||
596 | )yyp)){ m_operation = operation ; | ||
597 | m_postOperation = postOperation ; | ||
598 | kids . Add ( ide ); | ||
599 | } | ||
600 | public override string ToString (){ return base . ToString ()+"<"+( m_postOperation ? m_name + m_operation : m_operation + m_name )+">"; | ||
601 | } | ||
602 | public string Name { get { return m_name ; | ||
603 | } | ||
604 | } | ||
605 | public string Operation { get { return m_operation ; | ||
606 | } | ||
607 | } | ||
608 | public bool PostOperation { get { return m_postOperation ; | ||
609 | } | ||
610 | } | ||
611 | |||
612 | public override string yyname { get { return "IncrementDecrementExpression"; }} | ||
613 | public override int yynum { get { return 135; }} | ||
614 | public IncrementDecrementExpression(Parser yyp):base(yyp){}} | ||
615 | |||
616 | public class LSLProgramRoot_1 : LSLProgramRoot { | ||
617 | public LSLProgramRoot_1(Parser yyq):base(yyq, | ||
618 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
619 | , | ||
620 | ((States)(yyq.StackAt(0).m_value)) | ||
621 | ){}} | ||
622 | |||
623 | public class LSLProgramRoot_2 : LSLProgramRoot { | ||
624 | public LSLProgramRoot_2(Parser yyq):base(yyq, | ||
625 | ((States)(yyq.StackAt(0).m_value)) | ||
626 | ){}} | ||
627 | |||
628 | public class GlobalDefinitions_1 : GlobalDefinitions { | ||
629 | public GlobalDefinitions_1(Parser yyq):base(yyq, | ||
630 | ((GlobalVariableDeclaration)(yyq.StackAt(0).m_value)) | ||
631 | ){}} | ||
632 | |||
633 | public class GlobalDefinitions_2 : GlobalDefinitions { | ||
634 | public GlobalDefinitions_2(Parser yyq):base(yyq, | ||
635 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
636 | , | ||
637 | ((GlobalVariableDeclaration)(yyq.StackAt(0).m_value)) | ||
638 | ){}} | ||
639 | |||
640 | public class GlobalDefinitions_3 : GlobalDefinitions { | ||
641 | public GlobalDefinitions_3(Parser yyq):base(yyq, | ||
642 | ((GlobalFunctionDefinition)(yyq.StackAt(0).m_value)) | ||
643 | ){}} | ||
644 | |||
645 | public class GlobalDefinitions_4 : GlobalDefinitions { | ||
646 | public GlobalDefinitions_4(Parser yyq):base(yyq, | ||
647 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
648 | , | ||
649 | ((GlobalFunctionDefinition)(yyq.StackAt(0).m_value)) | ||
650 | ){}} | ||
651 | |||
652 | public class GlobalVariableDeclaration_1 : GlobalVariableDeclaration { | ||
653 | public GlobalVariableDeclaration_1(Parser yyq):base(yyq, | ||
654 | ((Declaration)(yyq.StackAt(1).m_value)) | ||
655 | ){}} | ||
656 | |||
657 | public class GlobalVariableDeclaration_2 : GlobalVariableDeclaration { | ||
658 | public GlobalVariableDeclaration_2(Parser yyq):base(yyq,new Assignment(((LSLSyntax | ||
659 | )yyq), | ||
660 | ((Declaration)(yyq.StackAt(3).m_value)) | ||
661 | , | ||
662 | ((Expression)(yyq.StackAt(1).m_value)) | ||
663 | , | ||
664 | ((EQUALS)(yyq.StackAt(2).m_value)) | ||
665 | .yytext)){}} | ||
666 | |||
667 | public class GlobalFunctionDefinition_1 : GlobalFunctionDefinition { | ||
668 | public GlobalFunctionDefinition_1(Parser yyq):base(yyq,"void", | ||
669 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
670 | .yytext, | ||
671 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
672 | , | ||
673 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
674 | ){}} | ||
675 | |||
676 | public class GlobalFunctionDefinition_2 : GlobalFunctionDefinition { | ||
677 | public GlobalFunctionDefinition_2(Parser yyq):base(yyq, | ||
678 | ((Typename)(yyq.StackAt(5).m_value)) | ||
679 | .yytext, | ||
680 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
681 | .yytext, | ||
682 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
683 | , | ||
684 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
685 | ){}} | ||
686 | |||
687 | public class States_1 : States { | ||
688 | public States_1(Parser yyq):base(yyq, | ||
689 | ((State)(yyq.StackAt(0).m_value)) | ||
690 | ){}} | ||
691 | |||
692 | public class States_2 : States { | ||
693 | public States_2(Parser yyq):base(yyq, | ||
694 | ((States)(yyq.StackAt(1).m_value)) | ||
695 | , | ||
696 | ((State)(yyq.StackAt(0).m_value)) | ||
697 | ){}} | ||
698 | |||
699 | public class State_1 : State { | ||
700 | public State_1(Parser yyq):base(yyq, | ||
701 | ((DEFAULT_STATE)(yyq.StackAt(3).m_value)) | ||
702 | .yytext, | ||
703 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
704 | ){}} | ||
705 | |||
706 | public class State_2 : State { | ||
707 | public State_2(Parser yyq):base(yyq, | ||
708 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
709 | .yytext, | ||
710 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
711 | ){}} | ||
712 | |||
713 | public class StateBody_1 : StateBody { | ||
714 | public StateBody_1(Parser yyq):base(yyq, | ||
715 | ((StateEvent)(yyq.StackAt(0).m_value)) | ||
716 | ){}} | ||
717 | |||
718 | public class StateBody_2 : StateBody { | ||
719 | public StateBody_2(Parser yyq):base(yyq, | ||
720 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
721 | , | ||
722 | ((StateEvent)(yyq.StackAt(0).m_value)) | ||
723 | ){}} | ||
724 | |||
725 | public class StateEvent_1 : StateEvent { | ||
726 | public StateEvent_1(Parser yyq):base(yyq, | ||
727 | ((Event)(yyq.StackAt(4).m_value)) | ||
728 | .yytext, | ||
729 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
730 | , | ||
731 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
732 | ){}} | ||
733 | |||
734 | public class ArgumentDeclarationList_1 : ArgumentDeclarationList { | ||
735 | public ArgumentDeclarationList_1(Parser yyq):base(yyq, | ||
736 | ((Declaration)(yyq.StackAt(0).m_value)) | ||
737 | ){}} | ||
738 | |||
739 | public class ArgumentDeclarationList_2 : ArgumentDeclarationList { | ||
740 | public ArgumentDeclarationList_2(Parser yyq):base(yyq, | ||
741 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
742 | , | ||
743 | ((Declaration)(yyq.StackAt(0).m_value)) | ||
744 | ){}} | ||
745 | |||
746 | public class Declaration_1 : Declaration { | ||
747 | public Declaration_1(Parser yyq):base(yyq, | ||
748 | ((Typename)(yyq.StackAt(1).m_value)) | ||
749 | .yytext, | ||
750 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
751 | .yytext){}} | ||
752 | |||
753 | public class CompoundStatement_1 : CompoundStatement { | ||
754 | public CompoundStatement_1(Parser yyq):base(yyq){}} | ||
755 | |||
756 | public class CompoundStatement_2 : CompoundStatement { | ||
757 | public CompoundStatement_2(Parser yyq):base(yyq, | ||
758 | ((StatementList)(yyq.StackAt(1).m_value)) | ||
759 | ){}} | ||
760 | |||
761 | public class StatementList_1 : StatementList { | ||
762 | public StatementList_1(Parser yyq):base(yyq, | ||
763 | ((Statement)(yyq.StackAt(0).m_value)) | ||
764 | ){}} | ||
765 | |||
766 | public class StatementList_2 : StatementList { | ||
767 | public StatementList_2(Parser yyq):base(yyq, | ||
768 | ((StatementList)(yyq.StackAt(1).m_value)) | ||
769 | , | ||
770 | ((Statement)(yyq.StackAt(0).m_value)) | ||
771 | ){}} | ||
772 | |||
773 | public class Statement_1 : Statement { | ||
774 | public Statement_1(Parser yyq):base(yyq, | ||
775 | ((Declaration)(yyq.StackAt(1).m_value)) | ||
776 | ){}} | ||
777 | |||
778 | public class Statement_2 : Statement { | ||
779 | public Statement_2(Parser yyq):base(yyq, | ||
780 | ((Assignment)(yyq.StackAt(1).m_value)) | ||
781 | ){}} | ||
782 | |||
783 | public class Statement_3 : Statement { | ||
784 | public Statement_3(Parser yyq):base(yyq, | ||
785 | ((Expression)(yyq.StackAt(1).m_value)) | ||
786 | ){}} | ||
787 | |||
788 | public class Statement_4 : Statement { | ||
789 | public Statement_4(Parser yyq):base(yyq, | ||
790 | ((ReturnStatement)(yyq.StackAt(1).m_value)) | ||
791 | ){}} | ||
792 | |||
793 | public class Statement_5 : Statement { | ||
794 | public Statement_5(Parser yyq):base(yyq, | ||
795 | ((StateChange)(yyq.StackAt(1).m_value)) | ||
796 | ){}} | ||
797 | |||
798 | public class Statement_6 : Statement { | ||
799 | public Statement_6(Parser yyq):base(yyq, | ||
800 | ((IfStatement)(yyq.StackAt(0).m_value)) | ||
801 | ){}} | ||
802 | |||
803 | public class Statement_7 : Statement { | ||
804 | public Statement_7(Parser yyq):base(yyq, | ||
805 | ((WhileStatement)(yyq.StackAt(0).m_value)) | ||
806 | ){}} | ||
807 | |||
808 | public class Statement_8 : Statement { | ||
809 | public Statement_8(Parser yyq):base(yyq, | ||
810 | ((DoWhileStatement)(yyq.StackAt(0).m_value)) | ||
811 | ){}} | ||
812 | |||
813 | public class Statement_9 : Statement { | ||
814 | public Statement_9(Parser yyq):base(yyq, | ||
815 | ((ForLoop)(yyq.StackAt(0).m_value)) | ||
816 | ){}} | ||
817 | |||
818 | public class Statement_10 : Statement { | ||
819 | public Statement_10(Parser yyq):base(yyq, | ||
820 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
821 | ){}} | ||
822 | |||
823 | public class StateChange_1 : StateChange { | ||
824 | public StateChange_1(Parser yyq):base(yyq, | ||
825 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
826 | .yytext){}} | ||
827 | |||
828 | public class StateChange_2 : StateChange { | ||
829 | public StateChange_2(Parser yyq):base(yyq, | ||
830 | ((DEFAULT_STATE)(yyq.StackAt(0).m_value)) | ||
831 | .yytext){}} | ||
832 | |||
833 | public class IfStatement_1 : IfStatement { | ||
834 | public IfStatement_1(Parser yyq):base(yyq, | ||
835 | ((Expression)(yyq.StackAt(2).m_value)) | ||
836 | , | ||
837 | ((Statement)(yyq.StackAt(0).m_value)) | ||
838 | ){}} | ||
839 | |||
840 | public class IfStatement_2 : IfStatement { | ||
841 | public IfStatement_2(Parser yyq):base(yyq, | ||
842 | ((Expression)(yyq.StackAt(4).m_value)) | ||
843 | , | ||
844 | ((Statement)(yyq.StackAt(2).m_value)) | ||
845 | , | ||
846 | ((Statement)(yyq.StackAt(0).m_value)) | ||
847 | ){}} | ||
848 | |||
849 | public class WhileStatement_1 : WhileStatement { | ||
850 | public WhileStatement_1(Parser yyq):base(yyq, | ||
851 | ((Expression)(yyq.StackAt(2).m_value)) | ||
852 | , | ||
853 | ((Statement)(yyq.StackAt(0).m_value)) | ||
854 | ){}} | ||
855 | |||
856 | public class DoWhileStatement_1 : DoWhileStatement { | ||
857 | public DoWhileStatement_1(Parser yyq):base(yyq, | ||
858 | ((Expression)(yyq.StackAt(2).m_value)) | ||
859 | , | ||
860 | ((Statement)(yyq.StackAt(5).m_value)) | ||
861 | ){}} | ||
862 | |||
863 | public class ForLoop_1 : ForLoop { | ||
864 | public ForLoop_1(Parser yyq):base(yyq, | ||
865 | ((ForLoopStatement)(yyq.StackAt(6).m_value)) | ||
866 | , | ||
867 | ((Expression)(yyq.StackAt(4).m_value)) | ||
868 | , | ||
869 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
870 | , | ||
871 | ((Statement)(yyq.StackAt(0).m_value)) | ||
872 | ){}} | ||
873 | |||
874 | public class ForLoopStatement_1 : ForLoopStatement { | ||
875 | public ForLoopStatement_1(Parser yyq):base(yyq, | ||
876 | ((Expression)(yyq.StackAt(0).m_value)) | ||
877 | ){}} | ||
878 | |||
879 | public class ForLoopStatement_2 : ForLoopStatement { | ||
880 | public ForLoopStatement_2(Parser yyq):base(yyq, | ||
881 | ((Assignment)(yyq.StackAt(0).m_value)) | ||
882 | ){}} | ||
883 | |||
884 | public class ForLoopStatement_3 : ForLoopStatement { | ||
885 | public ForLoopStatement_3(Parser yyq):base(yyq, | ||
886 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
887 | , | ||
888 | ((Expression)(yyq.StackAt(0).m_value)) | ||
889 | ){}} | ||
890 | |||
891 | public class ForLoopStatement_4 : ForLoopStatement { | ||
892 | public ForLoopStatement_4(Parser yyq):base(yyq, | ||
893 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
894 | , | ||
895 | ((Assignment)(yyq.StackAt(0).m_value)) | ||
896 | ){}} | ||
897 | |||
898 | public class Assignment_1 : Assignment { | ||
899 | public Assignment_1(Parser yyq):base(yyq, | ||
900 | ((Declaration)(yyq.StackAt(2).m_value)) | ||
901 | , | ||
902 | ((Expression)(yyq.StackAt(0).m_value)) | ||
903 | , | ||
904 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
905 | .yytext){}} | ||
906 | |||
907 | public class Assignment_2 : Assignment { | ||
908 | public Assignment_2(Parser yyq):base(yyq, | ||
909 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
910 | , | ||
911 | ((Expression)(yyq.StackAt(0).m_value)) | ||
912 | , | ||
913 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
914 | .yytext){}} | ||
915 | |||
916 | public class Assignment_3 : Assignment { | ||
917 | public Assignment_3(Parser yyq):base(yyq, | ||
918 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
919 | , | ||
920 | ((Expression)(yyq.StackAt(0).m_value)) | ||
921 | , | ||
922 | ((PLUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
923 | .yytext){}} | ||
924 | |||
925 | public class Assignment_4 : Assignment { | ||
926 | public Assignment_4(Parser yyq):base(yyq, | ||
927 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
928 | , | ||
929 | ((Expression)(yyq.StackAt(0).m_value)) | ||
930 | , | ||
931 | ((MINUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
932 | .yytext){}} | ||
933 | |||
934 | public class Assignment_5 : Assignment { | ||
935 | public Assignment_5(Parser yyq):base(yyq, | ||
936 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
937 | , | ||
938 | ((Expression)(yyq.StackAt(0).m_value)) | ||
939 | , | ||
940 | ((STAR_EQUALS)(yyq.StackAt(1).m_value)) | ||
941 | .yytext){}} | ||
942 | |||
943 | public class Assignment_6 : Assignment { | ||
944 | public Assignment_6(Parser yyq):base(yyq, | ||
945 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
946 | , | ||
947 | ((Expression)(yyq.StackAt(0).m_value)) | ||
948 | , | ||
949 | ((SLASH_EQUALS)(yyq.StackAt(1).m_value)) | ||
950 | .yytext){}} | ||
951 | |||
952 | public class Assignment_7 : Assignment { | ||
953 | public Assignment_7(Parser yyq):base(yyq, | ||
954 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
955 | , | ||
956 | ((Expression)(yyq.StackAt(0).m_value)) | ||
957 | , | ||
958 | ((PERCENT_EQUALS)(yyq.StackAt(1).m_value)) | ||
959 | .yytext){}} | ||
960 | |||
961 | public class Assignment_8 : Assignment { | ||
962 | public Assignment_8(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
963 | )yyq), | ||
964 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
965 | .yytext, | ||
966 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
967 | .yytext), | ||
968 | ((Expression)(yyq.StackAt(0).m_value)) | ||
969 | , | ||
970 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
971 | .yytext){}} | ||
972 | |||
973 | public class ReturnStatement_1 : ReturnStatement { | ||
974 | public ReturnStatement_1(Parser yyq):base(yyq, | ||
975 | ((Expression)(yyq.StackAt(0).m_value)) | ||
976 | ){}} | ||
977 | |||
978 | public class ReturnStatement_2 : ReturnStatement { | ||
979 | public ReturnStatement_2(Parser yyq):base(yyq){}} | ||
980 | |||
981 | public class Constant_1 : Constant { | ||
982 | public Constant_1(Parser yyq):base(yyq,"integer", | ||
983 | ((INTEGER_CONSTANT)(yyq.StackAt(0).m_value)) | ||
984 | .yytext){}} | ||
985 | |||
986 | public class Constant_2 : Constant { | ||
987 | public Constant_2(Parser yyq):base(yyq,"integer", | ||
988 | ((HEX_INTEGER_CONSTANT)(yyq.StackAt(0).m_value)) | ||
989 | .yytext){}} | ||
990 | |||
991 | public class Constant_3 : Constant { | ||
992 | public Constant_3(Parser yyq):base(yyq,"float", | ||
993 | ((FLOAT_CONSTANT)(yyq.StackAt(0).m_value)) | ||
994 | .yytext){}} | ||
995 | |||
996 | public class Constant_4 : Constant { | ||
997 | public Constant_4(Parser yyq):base(yyq,"string", | ||
998 | ((STRING_CONSTANT)(yyq.StackAt(0).m_value)) | ||
999 | .yytext){}} | ||
1000 | |||
1001 | public class VectorConstant_1 : VectorConstant { | ||
1002 | public VectorConstant_1(Parser yyq):base(yyq, | ||
1003 | ((Expression)(yyq.StackAt(5).m_value)) | ||
1004 | , | ||
1005 | ((Expression)(yyq.StackAt(3).m_value)) | ||
1006 | , | ||
1007 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1008 | ){}} | ||
1009 | |||
1010 | public class RotationConstant_1 : RotationConstant { | ||
1011 | public RotationConstant_1(Parser yyq):base(yyq, | ||
1012 | ((Expression)(yyq.StackAt(7).m_value)) | ||
1013 | , | ||
1014 | ((Expression)(yyq.StackAt(5).m_value)) | ||
1015 | , | ||
1016 | ((Expression)(yyq.StackAt(3).m_value)) | ||
1017 | , | ||
1018 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1019 | ){}} | ||
1020 | |||
1021 | public class ListConstant_1 : ListConstant { | ||
1022 | public ListConstant_1(Parser yyq):base(yyq, | ||
1023 | ((ArgumentList)(yyq.StackAt(1).m_value)) | ||
1024 | ){}} | ||
1025 | |||
1026 | public class ConstantExpression_1 : ConstantExpression { | ||
1027 | public ConstantExpression_1(Parser yyq):base(yyq, | ||
1028 | ((Constant)(yyq.StackAt(0).m_value)) | ||
1029 | ){}} | ||
1030 | |||
1031 | public class IdentExpression_1 : IdentExpression { | ||
1032 | public IdentExpression_1(Parser yyq):base(yyq, | ||
1033 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1034 | .yytext){}} | ||
1035 | |||
1036 | public class IdentDotExpression_1 : IdentDotExpression { | ||
1037 | public IdentDotExpression_1(Parser yyq):base(yyq, | ||
1038 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1039 | .yytext, | ||
1040 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1041 | .yytext){}} | ||
1042 | |||
1043 | public class IncrementDecrementExpression_1 : IncrementDecrementExpression { | ||
1044 | public IncrementDecrementExpression_1(Parser yyq):base(yyq, | ||
1045 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1046 | .yytext, | ||
1047 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1048 | .yytext, true){}} | ||
1049 | |||
1050 | public class IncrementDecrementExpression_2 : IncrementDecrementExpression { | ||
1051 | public IncrementDecrementExpression_2(Parser yyq):base(yyq, | ||
1052 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1053 | .yytext, | ||
1054 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1055 | .yytext, true){}} | ||
1056 | |||
1057 | public class IncrementDecrementExpression_3 : IncrementDecrementExpression { | ||
1058 | public IncrementDecrementExpression_3(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1059 | )yyq), | ||
1060 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1061 | .yytext, | ||
1062 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1063 | .yytext), | ||
1064 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1065 | .yytext, true){}} | ||
1066 | |||
1067 | public class IncrementDecrementExpression_4 : IncrementDecrementExpression { | ||
1068 | public IncrementDecrementExpression_4(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1069 | )yyq), | ||
1070 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1071 | .yytext, | ||
1072 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1073 | .yytext), | ||
1074 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1075 | .yytext, true){}} | ||
1076 | |||
1077 | public class IncrementDecrementExpression_5 : IncrementDecrementExpression { | ||
1078 | public IncrementDecrementExpression_5(Parser yyq):base(yyq, | ||
1079 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1080 | .yytext, | ||
1081 | ((INCREMENT)(yyq.StackAt(1).m_value)) | ||
1082 | .yytext, false){}} | ||
1083 | |||
1084 | public class IncrementDecrementExpression_6 : IncrementDecrementExpression { | ||
1085 | public IncrementDecrementExpression_6(Parser yyq):base(yyq, | ||
1086 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1087 | .yytext, | ||
1088 | ((DECREMENT)(yyq.StackAt(1).m_value)) | ||
1089 | .yytext, false){}} | ||
1090 | |||
1091 | public class IncrementDecrementExpression_7 : IncrementDecrementExpression { | ||
1092 | public IncrementDecrementExpression_7(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1093 | )yyq), | ||
1094 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1095 | .yytext, | ||
1096 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1097 | .yytext), | ||
1098 | ((INCREMENT)(yyq.StackAt(3).m_value)) | ||
1099 | .yytext, false){}} | ||
1100 | |||
1101 | public class IncrementDecrementExpression_8 : IncrementDecrementExpression { | ||
1102 | public IncrementDecrementExpression_8(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1103 | )yyq), | ||
1104 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1105 | .yytext, | ||
1106 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1107 | .yytext), | ||
1108 | ((DECREMENT)(yyq.StackAt(3).m_value)) | ||
1109 | .yytext, false){}} | ||
1110 | |||
1111 | public class FunctionCallExpression_1 : FunctionCallExpression { | ||
1112 | public FunctionCallExpression_1(Parser yyq):base(yyq, | ||
1113 | ((FunctionCall)(yyq.StackAt(0).m_value)) | ||
1114 | ){}} | ||
1115 | |||
1116 | public class BinaryExpression_1 : BinaryExpression { | ||
1117 | public BinaryExpression_1(Parser yyq):base(yyq, | ||
1118 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1119 | , | ||
1120 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1121 | , | ||
1122 | ((PLUS)(yyq.StackAt(1).m_value)) | ||
1123 | .yytext){}} | ||
1124 | |||
1125 | public class BinaryExpression_2 : BinaryExpression { | ||
1126 | public BinaryExpression_2(Parser yyq):base(yyq, | ||
1127 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1128 | , | ||
1129 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1130 | , | ||
1131 | ((MINUS)(yyq.StackAt(1).m_value)) | ||
1132 | .yytext){}} | ||
1133 | |||
1134 | public class BinaryExpression_3 : BinaryExpression { | ||
1135 | public BinaryExpression_3(Parser yyq):base(yyq, | ||
1136 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1137 | , | ||
1138 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1139 | , | ||
1140 | ((STAR)(yyq.StackAt(1).m_value)) | ||
1141 | .yytext){}} | ||
1142 | |||
1143 | public class BinaryExpression_4 : BinaryExpression { | ||
1144 | public BinaryExpression_4(Parser yyq):base(yyq, | ||
1145 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1146 | , | ||
1147 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1148 | , | ||
1149 | ((SLASH)(yyq.StackAt(1).m_value)) | ||
1150 | .yytext){}} | ||
1151 | |||
1152 | public class BinaryExpression_5 : BinaryExpression { | ||
1153 | public BinaryExpression_5(Parser yyq):base(yyq, | ||
1154 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1155 | , | ||
1156 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1157 | , | ||
1158 | ((PERCENT)(yyq.StackAt(1).m_value)) | ||
1159 | .yytext){}} | ||
1160 | |||
1161 | public class BinaryExpression_6 : BinaryExpression { | ||
1162 | public BinaryExpression_6(Parser yyq):base(yyq, | ||
1163 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1164 | , | ||
1165 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1166 | , | ||
1167 | ((AMP)(yyq.StackAt(1).m_value)) | ||
1168 | .yytext){}} | ||
1169 | |||
1170 | public class BinaryExpression_7 : BinaryExpression { | ||
1171 | public BinaryExpression_7(Parser yyq):base(yyq, | ||
1172 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1173 | , | ||
1174 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1175 | , | ||
1176 | ((STROKE)(yyq.StackAt(1).m_value)) | ||
1177 | .yytext){}} | ||
1178 | |||
1179 | public class BinaryExpression_8 : BinaryExpression { | ||
1180 | public BinaryExpression_8(Parser yyq):base(yyq, | ||
1181 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1182 | , | ||
1183 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1184 | , | ||
1185 | ((CARET)(yyq.StackAt(1).m_value)) | ||
1186 | .yytext){}} | ||
1187 | |||
1188 | public class BinaryExpression_9 : BinaryExpression { | ||
1189 | public BinaryExpression_9(Parser yyq):base(yyq, | ||
1190 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1191 | , | ||
1192 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1193 | , | ||
1194 | ((RIGHT_ANGLE)(yyq.StackAt(1).m_value)) | ||
1195 | .yytext){}} | ||
1196 | |||
1197 | public class BinaryExpression_10 : BinaryExpression { | ||
1198 | public BinaryExpression_10(Parser yyq):base(yyq, | ||
1199 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1200 | , | ||
1201 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1202 | , | ||
1203 | ((LEFT_ANGLE)(yyq.StackAt(1).m_value)) | ||
1204 | .yytext){}} | ||
1205 | |||
1206 | public class BinaryExpression_11 : BinaryExpression { | ||
1207 | public BinaryExpression_11(Parser yyq):base(yyq, | ||
1208 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1209 | , | ||
1210 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1211 | , | ||
1212 | ((EQUALS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1213 | .yytext){}} | ||
1214 | |||
1215 | public class BinaryExpression_12 : BinaryExpression { | ||
1216 | public BinaryExpression_12(Parser yyq):base(yyq, | ||
1217 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1218 | , | ||
1219 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1220 | , | ||
1221 | ((EXCLAMATION_EQUALS)(yyq.StackAt(1).m_value)) | ||
1222 | .yytext){}} | ||
1223 | |||
1224 | public class BinaryExpression_13 : BinaryExpression { | ||
1225 | public BinaryExpression_13(Parser yyq):base(yyq, | ||
1226 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1227 | , | ||
1228 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1229 | , | ||
1230 | ((LESS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1231 | .yytext){}} | ||
1232 | |||
1233 | public class BinaryExpression_14 : BinaryExpression { | ||
1234 | public BinaryExpression_14(Parser yyq):base(yyq, | ||
1235 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1236 | , | ||
1237 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1238 | , | ||
1239 | ((GREATER_EQUALS)(yyq.StackAt(1).m_value)) | ||
1240 | .yytext){}} | ||
1241 | |||
1242 | public class BinaryExpression_15 : BinaryExpression { | ||
1243 | public BinaryExpression_15(Parser yyq):base(yyq, | ||
1244 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1245 | , | ||
1246 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1247 | , | ||
1248 | ((AMP_AMP)(yyq.StackAt(1).m_value)) | ||
1249 | .yytext){}} | ||
1250 | |||
1251 | public class BinaryExpression_16 : BinaryExpression { | ||
1252 | public BinaryExpression_16(Parser yyq):base(yyq, | ||
1253 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1254 | , | ||
1255 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1256 | , | ||
1257 | ((STROKE_STROKE)(yyq.StackAt(1).m_value)) | ||
1258 | .yytext){}} | ||
1259 | |||
1260 | public class BinaryExpression_17 : BinaryExpression { | ||
1261 | public BinaryExpression_17(Parser yyq):base(yyq, | ||
1262 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1263 | , | ||
1264 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1265 | , | ||
1266 | ((LEFT_SHIFT)(yyq.StackAt(1).m_value)) | ||
1267 | .yytext){}} | ||
1268 | |||
1269 | public class BinaryExpression_18 : BinaryExpression { | ||
1270 | public BinaryExpression_18(Parser yyq):base(yyq, | ||
1271 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1272 | , | ||
1273 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1274 | , | ||
1275 | ((RIGHT_SHIFT)(yyq.StackAt(1).m_value)) | ||
1276 | .yytext){}} | ||
1277 | |||
1278 | public class UnaryExpression_1 : UnaryExpression { | ||
1279 | public UnaryExpression_1(Parser yyq):base(yyq, | ||
1280 | ((EXCLAMATION)(yyq.StackAt(1).m_value)) | ||
1281 | .yytext, | ||
1282 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1283 | ){}} | ||
1284 | |||
1285 | public class UnaryExpression_2 : UnaryExpression { | ||
1286 | public UnaryExpression_2(Parser yyq):base(yyq, | ||
1287 | ((MINUS)(yyq.StackAt(1).m_value)) | ||
1288 | .yytext, | ||
1289 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1290 | ){}} | ||
1291 | |||
1292 | public class UnaryExpression_3 : UnaryExpression { | ||
1293 | public UnaryExpression_3(Parser yyq):base(yyq, | ||
1294 | ((TILDE)(yyq.StackAt(1).m_value)) | ||
1295 | .yytext, | ||
1296 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1297 | ){}} | ||
1298 | |||
1299 | public class ParenthesisExpression_1 : ParenthesisExpression { | ||
1300 | public ParenthesisExpression_1(Parser yyq):base(yyq, | ||
1301 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1302 | ){}} | ||
1303 | |||
1304 | public class TypecastExpression_1 : TypecastExpression { | ||
1305 | public TypecastExpression_1(Parser yyq):base(yyq, | ||
1306 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1307 | .yytext, | ||
1308 | ((Constant)(yyq.StackAt(0).m_value)) | ||
1309 | ){}} | ||
1310 | |||
1311 | public class TypecastExpression_2 : TypecastExpression { | ||
1312 | public TypecastExpression_2(Parser yyq):base(yyq, | ||
1313 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1314 | .yytext, new IdentExpression(((LSLSyntax | ||
1315 | )yyq), | ||
1316 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1317 | .yytext)){}} | ||
1318 | |||
1319 | public class TypecastExpression_3 : TypecastExpression { | ||
1320 | public TypecastExpression_3(Parser yyq):base(yyq, | ||
1321 | ((Typename)(yyq.StackAt(4).m_value)) | ||
1322 | .yytext, new IdentDotExpression(((LSLSyntax | ||
1323 | )yyq), | ||
1324 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1325 | .yytext, | ||
1326 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1327 | .yytext)){}} | ||
1328 | |||
1329 | public class TypecastExpression_4 : TypecastExpression { | ||
1330 | public TypecastExpression_4(Parser yyq):base(yyq, | ||
1331 | ((Typename)(yyq.StackAt(3).m_value)) | ||
1332 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1333 | )yyq), | ||
1334 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1335 | .yytext, | ||
1336 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1337 | .yytext, true)){}} | ||
1338 | |||
1339 | public class TypecastExpression_5 : TypecastExpression { | ||
1340 | public TypecastExpression_5(Parser yyq):base(yyq, | ||
1341 | ((Typename)(yyq.StackAt(5).m_value)) | ||
1342 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1343 | )yyq), new IdentDotExpression(((LSLSyntax | ||
1344 | )yyq), | ||
1345 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1346 | .yytext, | ||
1347 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1348 | .yytext), | ||
1349 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1350 | .yytext, true)){}} | ||
1351 | |||
1352 | public class TypecastExpression_6 : TypecastExpression { | ||
1353 | public TypecastExpression_6(Parser yyq):base(yyq, | ||
1354 | ((Typename)(yyq.StackAt(3).m_value)) | ||
1355 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1356 | )yyq), | ||
1357 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1358 | .yytext, | ||
1359 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1360 | .yytext, true)){}} | ||
1361 | |||
1362 | public class TypecastExpression_7 : TypecastExpression { | ||
1363 | public TypecastExpression_7(Parser yyq):base(yyq, | ||
1364 | ((Typename)(yyq.StackAt(5).m_value)) | ||
1365 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1366 | )yyq), new IdentDotExpression(((LSLSyntax | ||
1367 | )yyq), | ||
1368 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1369 | .yytext, | ||
1370 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1371 | .yytext), | ||
1372 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1373 | .yytext, true)){}} | ||
1374 | |||
1375 | public class TypecastExpression_8 : TypecastExpression { | ||
1376 | public TypecastExpression_8(Parser yyq):base(yyq, | ||
1377 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1378 | .yytext, | ||
1379 | ((FunctionCall)(yyq.StackAt(0).m_value)) | ||
1380 | ){}} | ||
1381 | |||
1382 | public class TypecastExpression_9 : TypecastExpression { | ||
1383 | public TypecastExpression_9(Parser yyq):base(yyq, | ||
1384 | ((Typename)(yyq.StackAt(4).m_value)) | ||
1385 | .yytext, | ||
1386 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1387 | ){}} | ||
1388 | |||
1389 | public class FunctionCall_1 : FunctionCall { | ||
1390 | public FunctionCall_1(Parser yyq):base(yyq, | ||
1391 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1392 | .yytext, | ||
1393 | ((ArgumentList)(yyq.StackAt(1).m_value)) | ||
1394 | ){}} | ||
1395 | |||
1396 | public class ArgumentList_1 : ArgumentList { | ||
1397 | public ArgumentList_1(Parser yyq):base(yyq, | ||
1398 | ((Argument)(yyq.StackAt(0).m_value)) | ||
1399 | ){}} | ||
1400 | |||
1401 | public class ArgumentList_2 : ArgumentList { | ||
1402 | public ArgumentList_2(Parser yyq):base(yyq, | ||
1403 | ((ArgumentList)(yyq.StackAt(2).m_value)) | ||
1404 | , | ||
1405 | ((Argument)(yyq.StackAt(0).m_value)) | ||
1406 | ){}} | ||
1407 | |||
1408 | public class ExpressionArgument_1 : ExpressionArgument { | ||
1409 | public ExpressionArgument_1(Parser yyq):base(yyq, | ||
1410 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1411 | ){}} | ||
1412 | |||
1413 | public class Typename_1 : Typename { | ||
1414 | public Typename_1(Parser yyq):base(yyq, | ||
1415 | ((INTEGER_TYPE)(yyq.StackAt(0).m_value)) | ||
1416 | .yytext){}} | ||
1417 | |||
1418 | public class Typename_2 : Typename { | ||
1419 | public Typename_2(Parser yyq):base(yyq, | ||
1420 | ((FLOAT_TYPE)(yyq.StackAt(0).m_value)) | ||
1421 | .yytext){}} | ||
1422 | |||
1423 | public class Typename_3 : Typename { | ||
1424 | public Typename_3(Parser yyq):base(yyq, | ||
1425 | ((STRING_TYPE)(yyq.StackAt(0).m_value)) | ||
1426 | .yytext){}} | ||
1427 | |||
1428 | public class Typename_4 : Typename { | ||
1429 | public Typename_4(Parser yyq):base(yyq, | ||
1430 | ((KEY_TYPE)(yyq.StackAt(0).m_value)) | ||
1431 | .yytext){}} | ||
1432 | |||
1433 | public class Typename_5 : Typename { | ||
1434 | public Typename_5(Parser yyq):base(yyq, | ||
1435 | ((VECTOR_TYPE)(yyq.StackAt(0).m_value)) | ||
1436 | .yytext){}} | ||
1437 | |||
1438 | public class Typename_6 : Typename { | ||
1439 | public Typename_6(Parser yyq):base(yyq, | ||
1440 | ((ROTATION_TYPE)(yyq.StackAt(0).m_value)) | ||
1441 | .yytext){}} | ||
1442 | |||
1443 | public class Typename_7 : Typename { | ||
1444 | public Typename_7(Parser yyq):base(yyq, | ||
1445 | ((LIST_TYPE)(yyq.StackAt(0).m_value)) | ||
1446 | .yytext){}} | ||
1447 | |||
1448 | public class Event_1 : Event { | ||
1449 | public Event_1(Parser yyq):base(yyq, | ||
1450 | ((AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1451 | .yytext){}} | ||
1452 | |||
1453 | public class Event_2 : Event { | ||
1454 | public Event_2(Parser yyq):base(yyq, | ||
1455 | ((AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1456 | .yytext){}} | ||
1457 | |||
1458 | public class Event_3 : Event { | ||
1459 | public Event_3(Parser yyq):base(yyq, | ||
1460 | ((ATTACH_EVENT)(yyq.StackAt(0).m_value)) | ||
1461 | .yytext){}} | ||
1462 | |||
1463 | public class Event_4 : Event { | ||
1464 | public Event_4(Parser yyq):base(yyq, | ||
1465 | ((CHANGED_EVENT)(yyq.StackAt(0).m_value)) | ||
1466 | .yytext){}} | ||
1467 | |||
1468 | public class Event_5 : Event { | ||
1469 | public Event_5(Parser yyq):base(yyq, | ||
1470 | ((COLLISION_EVENT)(yyq.StackAt(0).m_value)) | ||
1471 | .yytext){}} | ||
1472 | |||
1473 | public class Event_6 : Event { | ||
1474 | public Event_6(Parser yyq):base(yyq, | ||
1475 | ((COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1476 | .yytext){}} | ||
1477 | |||
1478 | public class Event_7 : Event { | ||
1479 | public Event_7(Parser yyq):base(yyq, | ||
1480 | ((COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1481 | .yytext){}} | ||
1482 | |||
1483 | public class Event_8 : Event { | ||
1484 | public Event_8(Parser yyq):base(yyq, | ||
1485 | ((CONTROL_EVENT)(yyq.StackAt(0).m_value)) | ||
1486 | .yytext){}} | ||
1487 | |||
1488 | public class Event_9 : Event { | ||
1489 | public Event_9(Parser yyq):base(yyq, | ||
1490 | ((DATASERVER_EVENT)(yyq.StackAt(0).m_value)) | ||
1491 | .yytext){}} | ||
1492 | |||
1493 | public class Event_10 : Event { | ||
1494 | public Event_10(Parser yyq):base(yyq, | ||
1495 | ((EMAIL_EVENT)(yyq.StackAt(0).m_value)) | ||
1496 | .yytext){}} | ||
1497 | |||
1498 | public class Event_11 : Event { | ||
1499 | public Event_11(Parser yyq):base(yyq, | ||
1500 | ((HTTP_RESPONSE_EVENT)(yyq.StackAt(0).m_value)) | ||
1501 | .yytext){}} | ||
1502 | |||
1503 | public class Event_12 : Event { | ||
1504 | public Event_12(Parser yyq):base(yyq, | ||
1505 | ((LAND_COLLISION_EVENT)(yyq.StackAt(0).m_value)) | ||
1506 | .yytext){}} | ||
1507 | |||
1508 | public class Event_13 : Event { | ||
1509 | public Event_13(Parser yyq):base(yyq, | ||
1510 | ((LAND_COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1511 | .yytext){}} | ||
1512 | |||
1513 | public class Event_14 : Event { | ||
1514 | public Event_14(Parser yyq):base(yyq, | ||
1515 | ((LAND_COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1516 | .yytext){}} | ||
1517 | |||
1518 | public class Event_15 : Event { | ||
1519 | public Event_15(Parser yyq):base(yyq, | ||
1520 | ((LINK_MESSAGE_EVENT)(yyq.StackAt(0).m_value)) | ||
1521 | .yytext){}} | ||
1522 | |||
1523 | public class Event_16 : Event { | ||
1524 | public Event_16(Parser yyq):base(yyq, | ||
1525 | ((LISTEN_EVENT)(yyq.StackAt(0).m_value)) | ||
1526 | .yytext){}} | ||
1527 | |||
1528 | public class Event_17 : Event { | ||
1529 | public Event_17(Parser yyq):base(yyq, | ||
1530 | ((MONEY_EVENT)(yyq.StackAt(0).m_value)) | ||
1531 | .yytext){}} | ||
1532 | |||
1533 | public class Event_18 : Event { | ||
1534 | public Event_18(Parser yyq):base(yyq, | ||
1535 | ((MOVING_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1536 | .yytext){}} | ||
1537 | |||
1538 | public class Event_19 : Event { | ||
1539 | public Event_19(Parser yyq):base(yyq, | ||
1540 | ((MOVING_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1541 | .yytext){}} | ||
1542 | |||
1543 | public class Event_20 : Event { | ||
1544 | public Event_20(Parser yyq):base(yyq, | ||
1545 | ((NO_SENSOR_EVENT)(yyq.StackAt(0).m_value)) | ||
1546 | .yytext){}} | ||
1547 | |||
1548 | public class Event_21 : Event { | ||
1549 | public Event_21(Parser yyq):base(yyq, | ||
1550 | ((NOT_AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1551 | .yytext){}} | ||
1552 | |||
1553 | public class Event_22 : Event { | ||
1554 | public Event_22(Parser yyq):base(yyq, | ||
1555 | ((NOT_AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1556 | .yytext){}} | ||
1557 | |||
1558 | public class Event_23 : Event { | ||
1559 | public Event_23(Parser yyq):base(yyq, | ||
1560 | ((OBJECT_REZ_EVENT)(yyq.StackAt(0).m_value)) | ||
1561 | .yytext){}} | ||
1562 | |||
1563 | public class Event_24 : Event { | ||
1564 | public Event_24(Parser yyq):base(yyq, | ||
1565 | ((ON_REZ_EVENT)(yyq.StackAt(0).m_value)) | ||
1566 | .yytext){}} | ||
1567 | |||
1568 | public class Event_25 : Event { | ||
1569 | public Event_25(Parser yyq):base(yyq, | ||
1570 | ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value)) | ||
1571 | .yytext){}} | ||
1572 | |||
1573 | public class Event_26 : Event { | ||
1574 | public Event_26(Parser yyq):base(yyq, | ||
1575 | ((RUN_TIME_PERMISSIONS_EVENT)(yyq.StackAt(0).m_value)) | ||
1576 | .yytext){}} | ||
1577 | |||
1578 | public class Event_27 : Event { | ||
1579 | public Event_27(Parser yyq):base(yyq, | ||
1580 | ((SENSOR_EVENT)(yyq.StackAt(0).m_value)) | ||
1581 | .yytext){}} | ||
1582 | |||
1583 | public class Event_28 : Event { | ||
1584 | public Event_28(Parser yyq):base(yyq, | ||
1585 | ((STATE_ENTRY_EVENT)(yyq.StackAt(0).m_value)) | ||
1586 | .yytext){}} | ||
1587 | |||
1588 | public class Event_29 : Event { | ||
1589 | public Event_29(Parser yyq):base(yyq, | ||
1590 | ((STATE_EXIT_EVENT)(yyq.StackAt(0).m_value)) | ||
1591 | .yytext){}} | ||
1592 | |||
1593 | public class Event_30 : Event { | ||
1594 | public Event_30(Parser yyq):base(yyq, | ||
1595 | ((TIMER_EVENT)(yyq.StackAt(0).m_value)) | ||
1596 | .yytext){}} | ||
1597 | |||
1598 | public class Event_31 : Event { | ||
1599 | public Event_31(Parser yyq):base(yyq, | ||
1600 | ((TOUCH_EVENT)(yyq.StackAt(0).m_value)) | ||
1601 | .yytext){}} | ||
1602 | |||
1603 | public class Event_32 : Event { | ||
1604 | public Event_32(Parser yyq):base(yyq, | ||
1605 | ((TOUCH_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1606 | .yytext){}} | ||
1607 | |||
1608 | public class Event_33 : Event { | ||
1609 | public Event_33(Parser yyq):base(yyq, | ||
1610 | ((TOUCH_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1611 | .yytext){}} | ||
1612 | public class yyLSLSyntax | ||
1613 | : YyParser { | ||
1614 | public override object Action(Parser yyq,SYMBOL yysym, int yyact) { | ||
1615 | switch(yyact) { | ||
1616 | case -1: break; //// keep compiler happy | ||
1617 | } return null; } | ||
1618 | |||
1619 | public class ArgumentDeclarationList_3 : ArgumentDeclarationList { | ||
1620 | public ArgumentDeclarationList_3(Parser yyq):base(yyq){}} | ||
1621 | |||
1622 | public class ArgumentList_3 : ArgumentList { | ||
1623 | public ArgumentList_3(Parser yyq):base(yyq){}} | ||
1624 | |||
1625 | public class Statement_11 : Statement { | ||
1626 | public Statement_11(Parser yyq):base(yyq){}} | ||
1627 | |||
1628 | public class ArgumentList_4 : ArgumentList { | ||
1629 | public ArgumentList_4(Parser yyq):base(yyq){}} | ||
1630 | |||
1631 | public class ArgumentDeclarationList_4 : ArgumentDeclarationList { | ||
1632 | public ArgumentDeclarationList_4(Parser yyq):base(yyq){}} | ||
1633 | |||
1634 | public class ArgumentDeclarationList_5 : ArgumentDeclarationList { | ||
1635 | public ArgumentDeclarationList_5(Parser yyq):base(yyq){}} | ||
1636 | public yyLSLSyntax | ||
1637 | ():base() { arr = new int[] { | ||
1638 | 101,4,6,52,0, | ||
1639 | 46,0,53,0,102, | ||
1640 | 20,103,4,28,76, | ||
1641 | 0,83,0,76,0, | ||
1642 | 80,0,114,0,111, | ||
1643 | 0,103,0,114,0, | ||
1644 | 97,0,109,0,82, | ||
1645 | 0,111,0,111,0, | ||
1646 | 116,0,1,95,1, | ||
1647 | 2,104,18,1,2260, | ||
1648 | 102,2,0,105,5, | ||
1649 | 269,1,0,106,18, | ||
1650 | 1,0,0,2,0, | ||
1651 | 1,1,107,18,1, | ||
1652 | 1,108,20,109,4, | ||
1653 | 18,76,0,73,0, | ||
1654 | 83,0,84,0,95, | ||
1655 | 0,84,0,89,0, | ||
1656 | 80,0,69,0,1, | ||
1657 | 57,1,1,2,0, | ||
1658 | 1,2,110,18,1, | ||
1659 | 2,111,20,112,4, | ||
1660 | 26,82,0,79,0, | ||
1661 | 84,0,65,0,84, | ||
1662 | 0,73,0,79,0, | ||
1663 | 78,0,95,0,84, | ||
1664 | 0,89,0,80,0, | ||
1665 | 69,0,1,56,1, | ||
1666 | 1,2,0,1,3, | ||
1667 | 113,18,1,3,114, | ||
1668 | 20,115,4,22,86, | ||
1669 | 0,69,0,67,0, | ||
1670 | 84,0,79,0,82, | ||
1671 | 0,95,0,84,0, | ||
1672 | 89,0,80,0,69, | ||
1673 | 0,1,55,1,1, | ||
1674 | 2,0,1,4,116, | ||
1675 | 18,1,4,117,20, | ||
1676 | 118,4,16,75,0, | ||
1677 | 69,0,89,0,95, | ||
1678 | 0,84,0,89,0, | ||
1679 | 80,0,69,0,1, | ||
1680 | 54,1,1,2,0, | ||
1681 | 1,5,119,18,1, | ||
1682 | 5,120,20,121,4, | ||
1683 | 22,83,0,84,0, | ||
1684 | 82,0,73,0,78, | ||
1685 | 0,71,0,95,0, | ||
1686 | 84,0,89,0,80, | ||
1687 | 0,69,0,1,53, | ||
1688 | 1,1,2,0,1, | ||
1689 | 6,122,18,1,6, | ||
1690 | 123,20,124,4,20, | ||
1691 | 70,0,76,0,79, | ||
1692 | 0,65,0,84,0, | ||
1693 | 95,0,84,0,89, | ||
1694 | 0,80,0,69,0, | ||
1695 | 1,52,1,1,2, | ||
1696 | 0,1,7,125,18, | ||
1697 | 1,7,126,20,127, | ||
1698 | 4,24,73,0,78, | ||
1699 | 0,84,0,69,0, | ||
1700 | 71,0,69,0,82, | ||
1701 | 0,95,0,84,0, | ||
1702 | 89,0,80,0,69, | ||
1703 | 0,1,51,1,1, | ||
1704 | 2,0,1,8,128, | ||
1705 | 18,1,8,129,20, | ||
1706 | 130,4,16,84,0, | ||
1707 | 121,0,112,0,101, | ||
1708 | 0,110,0,97,0, | ||
1709 | 109,0,101,0,1, | ||
1710 | 105,1,2,2,0, | ||
1711 | 1,9,131,18,1, | ||
1712 | 9,132,20,133,4, | ||
1713 | 10,73,0,68,0, | ||
1714 | 69,0,78,0,84, | ||
1715 | 0,1,91,1,1, | ||
1716 | 2,0,1,10,134, | ||
1717 | 18,1,10,135,20, | ||
1718 | 136,4,20,76,0, | ||
1719 | 69,0,70,0,84, | ||
1720 | 0,95,0,80,0, | ||
1721 | 65,0,82,0,69, | ||
1722 | 0,78,0,1,16, | ||
1723 | 1,1,2,0,1, | ||
1724 | 573,137,18,1,573, | ||
1725 | 138,20,139,4,26, | ||
1726 | 82,0,73,0,71, | ||
1727 | 0,72,0,84,0, | ||
1728 | 95,0,66,0,82, | ||
1729 | 0,65,0,67,0, | ||
1730 | 75,0,69,0,84, | ||
1731 | 0,1,28,1,1, | ||
1732 | 2,0,1,574,140, | ||
1733 | 18,1,574,141,20, | ||
1734 | 142,4,16,65,0, | ||
1735 | 114,0,103,0,117, | ||
1736 | 0,109,0,101,0, | ||
1737 | 110,0,116,0,1, | ||
1738 | 120,1,2,2,0, | ||
1739 | 1,18,143,18,1, | ||
1740 | 18,129,2,0,1, | ||
1741 | 19,144,18,1,19, | ||
1742 | 132,2,0,1,20, | ||
1743 | 145,18,1,20,146, | ||
1744 | 20,147,4,46,65, | ||
1745 | 0,114,0,103,0, | ||
1746 | 117,0,109,0,101, | ||
1747 | 0,110,0,116,0, | ||
1748 | 68,0,101,0,99, | ||
1749 | 0,108,0,97,0, | ||
1750 | 114,0,97,0,116, | ||
1751 | 0,105,0,111,0, | ||
1752 | 110,0,76,0,105, | ||
1753 | 0,115,0,116,0, | ||
1754 | 1,103,1,2,2, | ||
1755 | 0,1,21,148,18, | ||
1756 | 1,21,149,20,150, | ||
1757 | 4,10,67,0,79, | ||
1758 | 0,77,0,77,0, | ||
1759 | 65,0,1,14,1, | ||
1760 | 1,2,0,1,1693, | ||
1761 | 151,18,1,1693,152, | ||
1762 | 20,153,4,22,82, | ||
1763 | 0,73,0,71,0, | ||
1764 | 72,0,84,0,95, | ||
1765 | 0,80,0,65,0, | ||
1766 | 82,0,69,0,78, | ||
1767 | 0,1,17,1,1, | ||
1768 | 2,0,1,1694,154, | ||
1769 | 18,1,1694,155,20, | ||
1770 | 156,4,18,83,0, | ||
1771 | 69,0,77,0,73, | ||
1772 | 0,67,0,79,0, | ||
1773 | 76,0,79,0,78, | ||
1774 | 0,1,11,1,1, | ||
1775 | 2,0,1,2182,157, | ||
1776 | 18,1,2182,158,20, | ||
1777 | 159,4,10,83,0, | ||
1778 | 116,0,97,0,116, | ||
1779 | 0,101,0,1,100, | ||
1780 | 1,2,2,0,1, | ||
1781 | 2184,160,18,1,2184, | ||
1782 | 132,2,0,1,2256, | ||
1783 | 161,18,1,2256,162, | ||
1784 | 20,163,4,48,71, | ||
1785 | 0,108,0,111,0, | ||
1786 | 98,0,97,0,108, | ||
1787 | 0,70,0,117,0, | ||
1788 | 110,0,99,0,116, | ||
1789 | 0,105,0,111,0, | ||
1790 | 110,0,68,0,101, | ||
1791 | 0,102,0,105,0, | ||
1792 | 110,0,105,0,116, | ||
1793 | 0,105,0,111,0, | ||
1794 | 110,0,1,98,1, | ||
1795 | 2,2,0,1,2257, | ||
1796 | 164,18,1,2257,165, | ||
1797 | 20,166,4,50,71, | ||
1798 | 0,108,0,111,0, | ||
1799 | 98,0,97,0,108, | ||
1800 | 0,86,0,97,0, | ||
1801 | 114,0,105,0,97, | ||
1802 | 0,98,0,108,0, | ||
1803 | 101,0,68,0,101, | ||
1804 | 0,99,0,108,0, | ||
1805 | 97,0,114,0,97, | ||
1806 | 0,116,0,105,0, | ||
1807 | 111,0,110,0,1, | ||
1808 | 97,1,2,2,0, | ||
1809 | 1,30,167,18,1, | ||
1810 | 30,168,20,169,4, | ||
1811 | 22,68,0,101,0, | ||
1812 | 99,0,108,0,97, | ||
1813 | 0,114,0,97,0, | ||
1814 | 116,0,105,0,111, | ||
1815 | 0,110,0,1,104, | ||
1816 | 1,2,2,0,1, | ||
1817 | 31,170,18,1,31, | ||
1818 | 152,2,0,1,32, | ||
1819 | 171,18,1,32,172, | ||
1820 | 20,173,4,20,76, | ||
1821 | 0,69,0,70,0, | ||
1822 | 84,0,95,0,66, | ||
1823 | 0,82,0,65,0, | ||
1824 | 67,0,69,0,1, | ||
1825 | 12,1,1,2,0, | ||
1826 | 1,2261,174,18,1, | ||
1827 | 2261,175,23,176,4, | ||
1828 | 6,69,0,79,0, | ||
1829 | 70,0,1,2,1, | ||
1830 | 6,2,0,1,1706, | ||
1831 | 177,18,1,1706,178, | ||
1832 | 20,179,4,10,87, | ||
1833 | 0,72,0,73,0, | ||
1834 | 76,0,69,0,1, | ||
1835 | 45,1,1,2,0, | ||
1836 | 1,1707,180,18,1, | ||
1837 | 1707,135,2,0,1, | ||
1838 | 1115,181,18,1,1115, | ||
1839 | 182,20,183,4,12, | ||
1840 | 69,0,81,0,85, | ||
1841 | 0,65,0,76,0, | ||
1842 | 83,0,1,15,1, | ||
1843 | 1,2,0,1,1152, | ||
1844 | 184,18,1,1152,185, | ||
1845 | 20,186,4,28,80, | ||
1846 | 0,69,0,82,0, | ||
1847 | 67,0,69,0,78, | ||
1848 | 0,84,0,95,0, | ||
1849 | 69,0,81,0,85, | ||
1850 | 0,65,0,76,0, | ||
1851 | 83,0,1,10,1, | ||
1852 | 1,2,0,1,40, | ||
1853 | 187,18,1,40,132, | ||
1854 | 2,0,1,41,188, | ||
1855 | 18,1,41,135,2, | ||
1856 | 0,1,42,189,18, | ||
1857 | 1,42,190,20,191, | ||
1858 | 4,20,69,0,120, | ||
1859 | 0,112,0,114,0, | ||
1860 | 101,0,115,0,115, | ||
1861 | 0,105,0,111,0, | ||
1862 | 110,0,1,126,1, | ||
1863 | 2,2,0,1,43, | ||
1864 | 192,18,1,43,193, | ||
1865 | 20,194,4,22,82, | ||
1866 | 0,73,0,71,0, | ||
1867 | 72,0,84,0,95, | ||
1868 | 0,83,0,72,0, | ||
1869 | 73,0,70,0,84, | ||
1870 | 0,1,41,1,1, | ||
1871 | 2,0,1,44,195, | ||
1872 | 18,1,44,132,2, | ||
1873 | 0,1,46,196,18, | ||
1874 | 1,46,197,20,198, | ||
1875 | 4,12,80,0,69, | ||
1876 | 0,82,0,73,0, | ||
1877 | 79,0,68,0,1, | ||
1878 | 24,1,1,2,0, | ||
1879 | 1,47,199,18,1, | ||
1880 | 47,132,2,0,1, | ||
1881 | 48,200,18,1,48, | ||
1882 | 201,20,202,4,18, | ||
1883 | 68,0,69,0,67, | ||
1884 | 0,82,0,69,0, | ||
1885 | 77,0,69,0,78, | ||
1886 | 0,84,0,1,5, | ||
1887 | 1,1,2,0,1, | ||
1888 | 49,203,18,1,49, | ||
1889 | 204,20,205,4,18, | ||
1890 | 73,0,78,0,67, | ||
1891 | 0,82,0,69,0, | ||
1892 | 77,0,69,0,78, | ||
1893 | 0,84,0,1,4, | ||
1894 | 1,1,2,0,1, | ||
1895 | 50,206,18,1,50, | ||
1896 | 201,2,0,1,51, | ||
1897 | 207,18,1,51,204, | ||
1898 | 2,0,1,52,208, | ||
1899 | 18,1,52,135,2, | ||
1900 | 0,1,1674,209,18, | ||
1901 | 1,1674,190,2,0, | ||
1902 | 1,61,210,18,1, | ||
1903 | 61,129,2,0,1, | ||
1904 | 62,211,18,1,62, | ||
1905 | 152,2,0,1,63, | ||
1906 | 212,18,1,63,132, | ||
1907 | 2,0,1,65,213, | ||
1908 | 18,1,65,197,2, | ||
1909 | 0,1,66,214,18, | ||
1910 | 1,66,132,2,0, | ||
1911 | 1,67,215,18,1, | ||
1912 | 67,201,2,0,1, | ||
1913 | 68,216,18,1,68, | ||
1914 | 204,2,0,1,69, | ||
1915 | 217,18,1,69,201, | ||
1916 | 2,0,1,70,218, | ||
1917 | 18,1,70,204,2, | ||
1918 | 0,1,71,219,18, | ||
1919 | 1,71,135,2,0, | ||
1920 | 1,73,220,18,1, | ||
1921 | 73,190,2,0,1, | ||
1922 | 74,221,18,1,74, | ||
1923 | 152,2,0,1,76, | ||
1924 | 222,18,1,76,223, | ||
1925 | 20,224,4,20,76, | ||
1926 | 0,69,0,70,0, | ||
1927 | 84,0,95,0,83, | ||
1928 | 0,72,0,73,0, | ||
1929 | 70,0,84,0,1, | ||
1930 | 40,1,1,2,0, | ||
1931 | 1,1193,225,18,1, | ||
1932 | 1193,190,2,0,1, | ||
1933 | 2237,226,18,1,2237, | ||
1934 | 155,2,0,1,1121, | ||
1935 | 227,18,1,1121,190, | ||
1936 | 2,0,1,82,228, | ||
1937 | 18,1,82,190,2, | ||
1938 | 0,1,79,229,18, | ||
1939 | 1,79,230,20,231, | ||
1940 | 4,10,84,0,73, | ||
1941 | 0,76,0,68,0, | ||
1942 | 69,0,1,36,1, | ||
1943 | 1,2,0,1,85, | ||
1944 | 232,18,1,85,233, | ||
1945 | 20,234,4,26,83, | ||
1946 | 0,84,0,82,0, | ||
1947 | 79,0,75,0,69, | ||
1948 | 0,95,0,83,0, | ||
1949 | 84,0,82,0,79, | ||
1950 | 0,75,0,69,0, | ||
1951 | 1,39,1,1,2, | ||
1952 | 0,1,2050,235,18, | ||
1953 | 1,2050,236,20,237, | ||
1954 | 4,38,65,0,84, | ||
1955 | 0,95,0,82,0, | ||
1956 | 79,0,84,0,95, | ||
1957 | 0,84,0,65,0, | ||
1958 | 82,0,71,0,69, | ||
1959 | 0,84,0,95,0, | ||
1960 | 69,0,86,0,69, | ||
1961 | 0,78,0,84,0, | ||
1962 | 1,58,1,1,2, | ||
1963 | 0,1,89,238,18, | ||
1964 | 1,89,239,20,240, | ||
1965 | 4,10,77,0,73, | ||
1966 | 0,78,0,85,0, | ||
1967 | 83,0,1,19,1, | ||
1968 | 1,2,0,1,1762, | ||
1969 | 241,18,1,1762,242, | ||
1970 | 20,243,4,4,73, | ||
1971 | 0,70,0,1,42, | ||
1972 | 1,1,2,0,1, | ||
1973 | 1763,244,18,1,1763, | ||
1974 | 135,2,0,1,93, | ||
1975 | 245,18,1,93,190, | ||
1976 | 2,0,1,97,246, | ||
1977 | 18,1,97,247,20, | ||
1978 | 248,4,14,65,0, | ||
1979 | 77,0,80,0,95, | ||
1980 | 0,65,0,77,0, | ||
1981 | 80,0,1,38,1, | ||
1982 | 1,2,0,1,1769, | ||
1983 | 249,18,1,1769,190, | ||
1984 | 2,0,1,102,250, | ||
1985 | 18,1,102,251,20, | ||
1986 | 252,4,22,69,0, | ||
1987 | 88,0,67,0,76, | ||
1988 | 0,65,0,77,0, | ||
1989 | 65,0,84,0,73, | ||
1990 | 0,79,0,78,0, | ||
1991 | 1,37,1,1,2, | ||
1992 | 0,1,2259,253,18, | ||
1993 | 1,2259,165,2,0, | ||
1994 | 1,2260,104,1,1668, | ||
1995 | 254,18,1,1668,135, | ||
1996 | 2,0,1,2194,255, | ||
1997 | 18,1,2194,146,2, | ||
1998 | 0,1,107,256,18, | ||
1999 | 1,107,190,2,0, | ||
2000 | 1,1222,257,18,1, | ||
2001 | 1222,258,20,259,4, | ||
2002 | 22,83,0,84,0, | ||
2003 | 65,0,82,0,95, | ||
2004 | 0,69,0,81,0, | ||
2005 | 85,0,65,0,76, | ||
2006 | 0,83,0,1,8, | ||
2007 | 1,1,2,0,1, | ||
2008 | 112,260,18,1,112, | ||
2009 | 261,20,262,4,28, | ||
2010 | 71,0,82,0,69, | ||
2011 | 0,65,0,84,0, | ||
2012 | 69,0,82,0,95, | ||
2013 | 0,69,0,81,0, | ||
2014 | 85,0,65,0,76, | ||
2015 | 0,83,0,1,32, | ||
2016 | 1,1,2,0,1, | ||
2017 | 1228,263,18,1,1228, | ||
2018 | 190,2,0,1,1732, | ||
2019 | 264,18,1,1732,152, | ||
2020 | 2,0,1,118,265, | ||
2021 | 18,1,118,190,2, | ||
2022 | 0,1,1158,266,18, | ||
2023 | 1,1158,190,2,0, | ||
2024 | 1,124,267,18,1, | ||
2025 | 124,268,20,269,4, | ||
2026 | 22,76,0,69,0, | ||
2027 | 83,0,83,0,95, | ||
2028 | 0,69,0,81,0, | ||
2029 | 85,0,65,0,76, | ||
2030 | 0,83,0,1,31, | ||
2031 | 1,1,2,0,1, | ||
2032 | 130,270,18,1,130, | ||
2033 | 190,2,0,1,137, | ||
2034 | 271,18,1,137,272, | ||
2035 | 20,273,4,36,69, | ||
2036 | 0,88,0,67,0, | ||
2037 | 76,0,65,0,77, | ||
2038 | 0,65,0,84,0, | ||
2039 | 73,0,79,0,78, | ||
2040 | 0,95,0,69,0, | ||
2041 | 81,0,85,0,65, | ||
2042 | 0,76,0,83,0, | ||
2043 | 1,30,1,1,2, | ||
2044 | 0,1,2226,274,18, | ||
2045 | 1,2226,155,2,0, | ||
2046 | 1,1257,275,18,1, | ||
2047 | 1257,276,20,277,4, | ||
2048 | 24,77,0,73,0, | ||
2049 | 78,0,85,0,83, | ||
2050 | 0,95,0,69,0, | ||
2051 | 81,0,85,0,65, | ||
2052 | 0,76,0,83,0, | ||
2053 | 1,7,1,1,2, | ||
2054 | 0,1,1817,278,18, | ||
2055 | 1,1817,279,20,280, | ||
2056 | 4,18,83,0,116, | ||
2057 | 0,97,0,116,0, | ||
2058 | 101,0,109,0,101, | ||
2059 | 0,110,0,116,0, | ||
2060 | 1,109,1,2,2, | ||
2061 | 0,1,1818,281,18, | ||
2062 | 1,1818,282,20,283, | ||
2063 | 4,8,69,0,76, | ||
2064 | 0,83,0,69,0, | ||
2065 | 1,43,1,1,2, | ||
2066 | 0,1,1263,284,18, | ||
2067 | 1,1263,190,2,0, | ||
2068 | 1,151,285,18,1, | ||
2069 | 151,286,20,287,4, | ||
2070 | 26,69,0,81,0, | ||
2071 | 85,0,65,0,76, | ||
2072 | 0,83,0,95,0, | ||
2073 | 69,0,81,0,85, | ||
2074 | 0,65,0,76,0, | ||
2075 | 83,0,1,29,1, | ||
2076 | 1,2,0,1,1713, | ||
2077 | 288,18,1,1713,190, | ||
2078 | 2,0,1,143,289, | ||
2079 | 18,1,143,190,2, | ||
2080 | 0,1,157,290,18, | ||
2081 | 1,157,190,2,0, | ||
2082 | 1,2249,291,18,1, | ||
2083 | 2249,292,20,293,4, | ||
2084 | 12,83,0,116,0, | ||
2085 | 97,0,116,0,101, | ||
2086 | 0,115,0,1,99, | ||
2087 | 1,2,2,0,1, | ||
2088 | 166,294,18,1,166, | ||
2089 | 295,20,296,4,20, | ||
2090 | 76,0,69,0,70, | ||
2091 | 0,84,0,95,0, | ||
2092 | 65,0,78,0,71, | ||
2093 | 0,76,0,69,0, | ||
2094 | 1,25,1,1,2, | ||
2095 | 0,1,172,297,18, | ||
2096 | 1,172,190,2,0, | ||
2097 | 1,1788,298,18,1, | ||
2098 | 1788,152,2,0,1, | ||
2099 | 1847,299,18,1,1847, | ||
2100 | 279,2,0,1,1292, | ||
2101 | 300,18,1,1292,301, | ||
2102 | 20,302,4,22,80, | ||
2103 | 0,76,0,85,0, | ||
2104 | 83,0,95,0,69, | ||
2105 | 0,81,0,85,0, | ||
2106 | 65,0,76,0,83, | ||
2107 | 0,1,6,1,1, | ||
2108 | 2,0,1,1850,303, | ||
2109 | 18,1,1850,304,20, | ||
2110 | 305,4,26,68,0, | ||
2111 | 69,0,70,0,65, | ||
2112 | 0,85,0,76,0, | ||
2113 | 84,0,95,0,83, | ||
2114 | 0,84,0,65,0, | ||
2115 | 84,0,69,0,1, | ||
2116 | 47,1,1,2,0, | ||
2117 | 1,1851,306,18,1, | ||
2118 | 1851,132,2,0,1, | ||
2119 | 1852,307,18,1,1852, | ||
2120 | 308,20,309,4,34, | ||
2121 | 67,0,111,0,109, | ||
2122 | 0,112,0,111,0, | ||
2123 | 117,0,110,0,100, | ||
2124 | 0,83,0,116,0, | ||
2125 | 97,0,116,0,101, | ||
2126 | 0,109,0,101,0, | ||
2127 | 110,0,116,0,1, | ||
2128 | 107,1,2,2,0, | ||
2129 | 1,1853,310,18,1, | ||
2130 | 1853,311,20,312,4, | ||
2131 | 14,70,0,111,0, | ||
2132 | 114,0,76,0,111, | ||
2133 | 0,111,0,112,0, | ||
2134 | 1,116,1,2,2, | ||
2135 | 0,1,1854,313,18, | ||
2136 | 1,1854,314,20,315, | ||
2137 | 4,32,68,0,111, | ||
2138 | 0,87,0,104,0, | ||
2139 | 105,0,108,0,101, | ||
2140 | 0,83,0,116,0, | ||
2141 | 97,0,116,0,101, | ||
2142 | 0,109,0,101,0, | ||
2143 | 110,0,116,0,1, | ||
2144 | 115,1,2,2,0, | ||
2145 | 1,1855,316,18,1, | ||
2146 | 1855,317,20,318,4, | ||
2147 | 28,87,0,104,0, | ||
2148 | 105,0,108,0,101, | ||
2149 | 0,83,0,116,0, | ||
2150 | 97,0,116,0,101, | ||
2151 | 0,109,0,101,0, | ||
2152 | 110,0,116,0,1, | ||
2153 | 114,1,2,2,0, | ||
2154 | 1,1856,319,18,1, | ||
2155 | 1856,320,20,321,4, | ||
2156 | 22,73,0,102,0, | ||
2157 | 83,0,116,0,97, | ||
2158 | 0,116,0,101,0, | ||
2159 | 109,0,101,0,110, | ||
2160 | 0,116,0,1,113, | ||
2161 | 1,2,2,0,1, | ||
2162 | 1857,322,18,1,1857, | ||
2163 | 323,20,324,4,22, | ||
2164 | 83,0,116,0,97, | ||
2165 | 0,116,0,101,0, | ||
2166 | 67,0,104,0,97, | ||
2167 | 0,110,0,103,0, | ||
2168 | 101,0,1,112,1, | ||
2169 | 2,2,0,1,1858, | ||
2170 | 325,18,1,1858,155, | ||
2171 | 2,0,1,188,326, | ||
2172 | 18,1,188,190,2, | ||
2173 | 0,1,1860,327,18, | ||
2174 | 1,1860,155,2,0, | ||
2175 | 1,1187,328,18,1, | ||
2176 | 1187,329,20,330,4, | ||
2177 | 24,83,0,76,0, | ||
2178 | 65,0,83,0,72, | ||
2179 | 0,95,0,69,0, | ||
2180 | 81,0,85,0,65, | ||
2181 | 0,76,0,83,0, | ||
2182 | 1,9,1,1,2, | ||
2183 | 0,1,1862,331,18, | ||
2184 | 1,1862,155,2,0, | ||
2185 | 1,1863,332,18,1, | ||
2186 | 1863,155,2,0,1, | ||
2187 | 182,333,18,1,182, | ||
2188 | 334,20,335,4,22, | ||
2189 | 82,0,73,0,71, | ||
2190 | 0,72,0,84,0, | ||
2191 | 95,0,65,0,78, | ||
2192 | 0,71,0,76,0, | ||
2193 | 69,0,1,26,1, | ||
2194 | 1,2,0,1,199, | ||
2195 | 336,18,1,199,337, | ||
2196 | 20,338,4,10,67, | ||
2197 | 0,65,0,82,0, | ||
2198 | 69,0,84,0,1, | ||
2199 | 35,1,1,2,0, | ||
2200 | 1,1760,339,18,1, | ||
2201 | 1760,279,2,0,1, | ||
2202 | 205,340,18,1,205, | ||
2203 | 190,2,0,1,1327, | ||
2204 | 341,18,1,1327,182, | ||
2205 | 2,0,1,217,342, | ||
2206 | 18,1,217,343,20, | ||
2207 | 344,4,12,83,0, | ||
2208 | 84,0,82,0,79, | ||
2209 | 0,75,0,69,0, | ||
2210 | 1,34,1,1,2, | ||
2211 | 0,1,1333,345,18, | ||
2212 | 1,1333,190,2,0, | ||
2213 | 1,223,346,18,1, | ||
2214 | 223,190,2,0,1, | ||
2215 | 1298,347,18,1,1298, | ||
2216 | 190,2,0,1,236, | ||
2217 | 348,18,1,236,349, | ||
2218 | 20,350,4,6,65, | ||
2219 | 0,77,0,80,0, | ||
2220 | 1,33,1,1,2, | ||
2221 | 0,1,1849,351,18, | ||
2222 | 1,1849,352,20,353, | ||
2223 | 4,10,83,0,84, | ||
2224 | 0,65,0,84,0, | ||
2225 | 69,0,1,48,1, | ||
2226 | 1,2,0,1,242, | ||
2227 | 354,18,1,242,190, | ||
2228 | 2,0,1,2258,355, | ||
2229 | 18,1,2258,162,2, | ||
2230 | 0,1,1859,356,18, | ||
2231 | 1,1859,357,20,358, | ||
2232 | 4,30,82,0,101, | ||
2233 | 0,116,0,117,0, | ||
2234 | 114,0,110,0,83, | ||
2235 | 0,116,0,97,0, | ||
2236 | 116,0,101,0,109, | ||
2237 | 0,101,0,110,0, | ||
2238 | 116,0,1,111,1, | ||
2239 | 2,2,0,1,1861, | ||
2240 | 359,18,1,1861,360, | ||
2241 | 20,361,4,20,65, | ||
2242 | 0,115,0,115,0, | ||
2243 | 105,0,103,0,110, | ||
2244 | 0,109,0,101,0, | ||
2245 | 110,0,116,0,1, | ||
2246 | 110,1,2,2,0, | ||
2247 | 1,1366,362,18,1, | ||
2248 | 1366,190,2,0,1, | ||
2249 | 256,363,18,1,256, | ||
2250 | 364,20,365,4,14, | ||
2251 | 80,0,69,0,82, | ||
2252 | 0,67,0,69,0, | ||
2253 | 78,0,84,0,1, | ||
2254 | 22,1,1,2,0, | ||
2255 | 1,262,366,18,1, | ||
2256 | 262,190,2,0,1, | ||
2257 | 1938,367,18,1,1938, | ||
2258 | 360,2,0,1,827, | ||
2259 | 368,18,1,827,190, | ||
2260 | 2,0,1,1385,369, | ||
2261 | 18,1,1385,155,2, | ||
2262 | 0,1,277,370,18, | ||
2263 | 1,277,371,20,372, | ||
2264 | 4,10,83,0,76, | ||
2265 | 0,65,0,83,0, | ||
2266 | 72,0,1,21,1, | ||
2267 | 1,2,0,1,1396, | ||
2268 | 373,18,1,1396,374, | ||
2269 | 20,375,4,12,82, | ||
2270 | 0,69,0,84,0, | ||
2271 | 85,0,82,0,78, | ||
2272 | 0,1,50,1,1, | ||
2273 | 2,0,1,283,376, | ||
2274 | 18,1,283,190,2, | ||
2275 | 0,1,1402,377,18, | ||
2276 | 1,1402,190,2,0, | ||
2277 | 1,1965,378,18,1, | ||
2278 | 1965,379,20,380,4, | ||
2279 | 26,83,0,116,0, | ||
2280 | 97,0,116,0,101, | ||
2281 | 0,109,0,101,0, | ||
2282 | 110,0,116,0,76, | ||
2283 | 0,105,0,115,0, | ||
2284 | 116,0,1,108,1, | ||
2285 | 2,2,0,1,299, | ||
2286 | 381,18,1,299,382, | ||
2287 | 20,383,4,8,83, | ||
2288 | 0,84,0,65,0, | ||
2289 | 82,0,1,20,1, | ||
2290 | 1,2,0,1,305, | ||
2291 | 384,18,1,305,190, | ||
2292 | 2,0,1,1431,385, | ||
2293 | 18,1,1431,168,2, | ||
2294 | 0,1,1432,386,18, | ||
2295 | 1,1432,182,2,0, | ||
2296 | 1,322,387,18,1, | ||
2297 | 322,239,2,0,1, | ||
2298 | 1438,388,18,1,1438, | ||
2299 | 190,2,0,1,883, | ||
2300 | 389,18,1,883,190, | ||
2301 | 2,0,1,328,390, | ||
2302 | 18,1,328,190,2, | ||
2303 | 0,1,2005,391,18, | ||
2304 | 1,2005,279,2,0, | ||
2305 | 1,2006,392,18,1, | ||
2306 | 2006,393,20,394,4, | ||
2307 | 22,82,0,73,0, | ||
2308 | 71,0,72,0,84, | ||
2309 | 0,95,0,66,0, | ||
2310 | 82,0,65,0,67, | ||
2311 | 0,69,0,1,13, | ||
2312 | 1,1,2,0,1, | ||
2313 | 2009,395,18,1,2009, | ||
2314 | 279,2,0,1,2011, | ||
2315 | 396,18,1,2011,393, | ||
2316 | 2,0,1,2013,397, | ||
2317 | 18,1,2013,308,2, | ||
2318 | 0,1,2014,398,18, | ||
2319 | 1,2014,168,2,0, | ||
2320 | 1,2015,399,18,1, | ||
2321 | 2015,352,2,0,1, | ||
2322 | 2016,400,18,1,2016, | ||
2323 | 132,2,0,1,346, | ||
2324 | 401,18,1,346,402, | ||
2325 | 20,403,4,8,80, | ||
2326 | 0,76,0,85,0, | ||
2327 | 83,0,1,18,1, | ||
2328 | 1,2,0,1,2018, | ||
2329 | 404,18,1,2018,405, | ||
2330 | 20,406,4,34,84, | ||
2331 | 0,79,0,85,0, | ||
2332 | 67,0,72,0,95, | ||
2333 | 0,83,0,84,0, | ||
2334 | 65,0,82,0,84, | ||
2335 | 0,95,0,69,0, | ||
2336 | 86,0,69,0,78, | ||
2337 | 0,84,0,1,89, | ||
2338 | 1,1,2,0,1, | ||
2339 | 2019,407,18,1,2019, | ||
2340 | 408,20,409,4,30, | ||
2341 | 84,0,79,0,85, | ||
2342 | 0,67,0,72,0, | ||
2343 | 95,0,69,0,78, | ||
2344 | 0,68,0,95,0, | ||
2345 | 69,0,86,0,69, | ||
2346 | 0,78,0,84,0, | ||
2347 | 1,90,1,1,2, | ||
2348 | 0,1,2020,410,18, | ||
2349 | 1,2020,411,20,412, | ||
2350 | 4,22,84,0,79, | ||
2351 | 0,85,0,67,0, | ||
2352 | 72,0,95,0,69, | ||
2353 | 0,86,0,69,0, | ||
2354 | 78,0,84,0,1, | ||
2355 | 88,1,1,2,0, | ||
2356 | 1,2021,413,18,1, | ||
2357 | 2021,414,20,415,4, | ||
2358 | 22,84,0,73,0, | ||
2359 | 77,0,69,0,82, | ||
2360 | 0,95,0,69,0, | ||
2361 | 86,0,69,0,78, | ||
2362 | 0,84,0,1,87, | ||
2363 | 1,1,2,0,1, | ||
2364 | 2022,416,18,1,2022, | ||
2365 | 417,20,418,4,32, | ||
2366 | 83,0,84,0,65, | ||
2367 | 0,84,0,69,0, | ||
2368 | 95,0,69,0,88, | ||
2369 | 0,73,0,84,0, | ||
2370 | 95,0,69,0,86, | ||
2371 | 0,69,0,78,0, | ||
2372 | 84,0,1,86,1, | ||
2373 | 1,2,0,1,352, | ||
2374 | 419,18,1,352,190, | ||
2375 | 2,0,1,1467,420, | ||
2376 | 18,1,1467,155,2, | ||
2377 | 0,1,1468,421,18, | ||
2378 | 1,1468,422,20,423, | ||
2379 | 4,6,70,0,79, | ||
2380 | 0,82,0,1,46, | ||
2381 | 1,1,2,0,1, | ||
2382 | 1469,424,18,1,1469, | ||
2383 | 135,2,0,1,2027, | ||
2384 | 425,18,1,2027,426, | ||
2385 | 20,427,4,24,79, | ||
2386 | 0,78,0,95,0, | ||
2387 | 82,0,69,0,90, | ||
2388 | 0,95,0,69,0, | ||
2389 | 86,0,69,0,78, | ||
2390 | 0,84,0,1,81, | ||
2391 | 1,1,2,0,1, | ||
2392 | 2028,428,18,1,2028, | ||
2393 | 429,20,430,4,32, | ||
2394 | 79,0,66,0,74, | ||
2395 | 0,69,0,67,0, | ||
2396 | 84,0,95,0,82, | ||
2397 | 0,69,0,90,0, | ||
2398 | 95,0,69,0,86, | ||
2399 | 0,69,0,78,0, | ||
2400 | 84,0,1,80,1, | ||
2401 | 1,2,0,1,2029, | ||
2402 | 431,18,1,2029,432, | ||
2403 | 20,433,4,38,78, | ||
2404 | 0,79,0,84,0, | ||
2405 | 95,0,65,0,84, | ||
2406 | 0,95,0,84,0, | ||
2407 | 65,0,82,0,71, | ||
2408 | 0,69,0,84,0, | ||
2409 | 95,0,69,0,86, | ||
2410 | 0,69,0,78,0, | ||
2411 | 84,0,1,79,1, | ||
2412 | 1,2,0,1,2030, | ||
2413 | 434,18,1,2030,435, | ||
2414 | 20,436,4,46,78, | ||
2415 | 0,79,0,84,0, | ||
2416 | 95,0,65,0,84, | ||
2417 | 0,95,0,82,0, | ||
2418 | 79,0,84,0,95, | ||
2419 | 0,84,0,65,0, | ||
2420 | 82,0,71,0,69, | ||
2421 | 0,84,0,95,0, | ||
2422 | 69,0,86,0,69, | ||
2423 | 0,78,0,84,0, | ||
2424 | 1,78,1,1,2, | ||
2425 | 0,1,2031,437,18, | ||
2426 | 1,2031,438,20,439, | ||
2427 | 4,30,78,0,79, | ||
2428 | 0,95,0,83,0, | ||
2429 | 69,0,78,0,83, | ||
2430 | 0,79,0,82,0, | ||
2431 | 95,0,69,0,86, | ||
2432 | 0,69,0,78,0, | ||
2433 | 84,0,1,77,1, | ||
2434 | 1,2,0,1,2032, | ||
2435 | 440,18,1,2032,441, | ||
2436 | 20,442,4,36,77, | ||
2437 | 0,79,0,86,0, | ||
2438 | 73,0,78,0,71, | ||
2439 | 0,95,0,83,0, | ||
2440 | 84,0,65,0,82, | ||
2441 | 0,84,0,95,0, | ||
2442 | 69,0,86,0,69, | ||
2443 | 0,78,0,84,0, | ||
2444 | 1,76,1,1,2, | ||
2445 | 0,1,2033,443,18, | ||
2446 | 1,2033,444,20,445, | ||
2447 | 4,32,77,0,79, | ||
2448 | 0,86,0,73,0, | ||
2449 | 78,0,71,0,95, | ||
2450 | 0,69,0,78,0, | ||
2451 | 68,0,95,0,69, | ||
2452 | 0,86,0,69,0, | ||
2453 | 78,0,84,0,1, | ||
2454 | 75,1,1,2,0, | ||
2455 | 1,2034,446,18,1, | ||
2456 | 2034,447,20,448,4, | ||
2457 | 22,77,0,79,0, | ||
2458 | 78,0,69,0,89, | ||
2459 | 0,95,0,69,0, | ||
2460 | 86,0,69,0,78, | ||
2461 | 0,84,0,1,74, | ||
2462 | 1,1,2,0,1, | ||
2463 | 2035,449,18,1,2035, | ||
2464 | 450,20,451,4,24, | ||
2465 | 76,0,73,0,83, | ||
2466 | 0,84,0,69,0, | ||
2467 | 78,0,95,0,69, | ||
2468 | 0,86,0,69,0, | ||
2469 | 78,0,84,0,1, | ||
2470 | 73,1,1,2,0, | ||
2471 | 1,2036,452,18,1, | ||
2472 | 2036,453,20,454,4, | ||
2473 | 36,76,0,73,0, | ||
2474 | 78,0,75,0,95, | ||
2475 | 0,77,0,69,0, | ||
2476 | 83,0,83,0,65, | ||
2477 | 0,71,0,69,0, | ||
2478 | 95,0,69,0,86, | ||
2479 | 0,69,0,78,0, | ||
2480 | 84,0,1,72,1, | ||
2481 | 1,2,0,1,2037, | ||
2482 | 455,18,1,2037,456, | ||
2483 | 20,457,4,52,76, | ||
2484 | 0,65,0,78,0, | ||
2485 | 68,0,95,0,67, | ||
2486 | 0,79,0,76,0, | ||
2487 | 76,0,73,0,83, | ||
2488 | 0,73,0,79,0, | ||
2489 | 78,0,95,0,83, | ||
2490 | 0,84,0,65,0, | ||
2491 | 82,0,84,0,95, | ||
2492 | 0,69,0,86,0, | ||
2493 | 69,0,78,0,84, | ||
2494 | 0,1,71,1,1, | ||
2495 | 2,0,1,2038,458, | ||
2496 | 18,1,2038,459,20, | ||
2497 | 460,4,48,76,0, | ||
2498 | 65,0,78,0,68, | ||
2499 | 0,95,0,67,0, | ||
2500 | 79,0,76,0,76, | ||
2501 | 0,73,0,83,0, | ||
2502 | 73,0,79,0,78, | ||
2503 | 0,95,0,69,0, | ||
2504 | 78,0,68,0,95, | ||
2505 | 0,69,0,86,0, | ||
2506 | 69,0,78,0,84, | ||
2507 | 0,1,70,1,1, | ||
2508 | 2,0,1,1482,461, | ||
2509 | 18,1,1482,190,2, | ||
2510 | 0,1,2040,462,18, | ||
2511 | 1,2040,463,20,464, | ||
2512 | 4,38,72,0,84, | ||
2513 | 0,84,0,80,0, | ||
2514 | 95,0,82,0,69, | ||
2515 | 0,83,0,80,0, | ||
2516 | 79,0,78,0,83, | ||
2517 | 0,69,0,95,0, | ||
2518 | 69,0,86,0,69, | ||
2519 | 0,78,0,84,0, | ||
2520 | 1,68,1,1,2, | ||
2521 | 0,1,2041,465,18, | ||
2522 | 1,2041,466,20,467, | ||
2523 | 4,22,69,0,77, | ||
2524 | 0,65,0,73,0, | ||
2525 | 76,0,95,0,69, | ||
2526 | 0,86,0,69,0, | ||
2527 | 78,0,84,0,1, | ||
2528 | 67,1,1,2,0, | ||
2529 | 1,371,468,18,1, | ||
2530 | 371,469,20,470,4, | ||
2531 | 24,70,0,117,0, | ||
2532 | 110,0,99,0,116, | ||
2533 | 0,105,0,111,0, | ||
2534 | 110,0,67,0,97, | ||
2535 | 0,108,0,108,0, | ||
2536 | 1,118,1,2,2, | ||
2537 | 0,1,372,471,18, | ||
2538 | 1,372,201,2,0, | ||
2539 | 1,373,472,18,1, | ||
2540 | 373,132,2,0,1, | ||
2541 | 374,473,18,1,374, | ||
2542 | 197,2,0,1,375, | ||
2543 | 474,18,1,375,132, | ||
2544 | 2,0,1,376,475, | ||
2545 | 18,1,376,204,2, | ||
2546 | 0,1,377,476,18, | ||
2547 | 1,377,132,2,0, | ||
2548 | 1,378,477,18,1, | ||
2549 | 378,197,2,0,1, | ||
2550 | 379,478,18,1,379, | ||
2551 | 132,2,0,1,380, | ||
2552 | 479,18,1,380,480, | ||
2553 | 20,481,4,16,67, | ||
2554 | 0,111,0,110,0, | ||
2555 | 115,0,116,0,97, | ||
2556 | 0,110,0,116,0, | ||
2557 | 1,122,1,2,2, | ||
2558 | 0,1,381,482,18, | ||
2559 | 1,381,483,20,484, | ||
2560 | 4,24,76,0,69, | ||
2561 | 0,70,0,84,0, | ||
2562 | 95,0,66,0,82, | ||
2563 | 0,65,0,67,0, | ||
2564 | 75,0,69,0,84, | ||
2565 | 0,1,27,1,1, | ||
2566 | 2,0,1,383,485, | ||
2567 | 18,1,383,486,20, | ||
2568 | 487,4,24,65,0, | ||
2569 | 114,0,103,0,117, | ||
2570 | 0,109,0,101,0, | ||
2571 | 110,0,116,0,76, | ||
2572 | 0,105,0,115,0, | ||
2573 | 116,0,1,119,1, | ||
2574 | 2,2,0,1,384, | ||
2575 | 488,18,1,384,149, | ||
2576 | 2,0,1,942,489, | ||
2577 | 18,1,942,190,2, | ||
2578 | 0,1,386,490,18, | ||
2579 | 1,386,141,2,0, | ||
2580 | 1,2196,491,18,1, | ||
2581 | 2196,152,2,0,1, | ||
2582 | 2061,492,18,1,2061, | ||
2583 | 146,2,0,1,2063, | ||
2584 | 493,18,1,2063,152, | ||
2585 | 2,0,1,2065,494, | ||
2586 | 18,1,2065,308,2, | ||
2587 | 0,1,2067,495,18, | ||
2588 | 1,2067,496,20,497, | ||
2589 | 4,18,83,0,116, | ||
2590 | 0,97,0,116,0, | ||
2591 | 101,0,66,0,111, | ||
2592 | 0,100,0,121,0, | ||
2593 | 1,101,1,2,2, | ||
2594 | 0,1,1511,498,18, | ||
2595 | 1,1511,168,2,0, | ||
2596 | 1,1513,499,18,1, | ||
2597 | 1513,500,20,501,4, | ||
2598 | 32,70,0,111,0, | ||
2599 | 114,0,76,0,111, | ||
2600 | 0,111,0,112,0, | ||
2601 | 83,0,116,0,97, | ||
2602 | 0,116,0,101,0, | ||
2603 | 109,0,101,0,110, | ||
2604 | 0,116,0,1,117, | ||
2605 | 1,2,2,0,1, | ||
2606 | 1514,502,18,1,1514, | ||
2607 | 149,2,0,1,403, | ||
2608 | 503,18,1,403,190, | ||
2609 | 2,0,1,397,504, | ||
2610 | 18,1,397,295,2, | ||
2611 | 0,1,1527,505,18, | ||
2612 | 1,1527,190,2,0, | ||
2613 | 1,2023,506,18,1, | ||
2614 | 2023,507,20,508,4, | ||
2615 | 34,83,0,84,0, | ||
2616 | 65,0,84,0,69, | ||
2617 | 0,95,0,69,0, | ||
2618 | 78,0,84,0,82, | ||
2619 | 0,89,0,95,0, | ||
2620 | 69,0,86,0,69, | ||
2621 | 0,78,0,84,0, | ||
2622 | 1,85,1,1,2, | ||
2623 | 0,1,2024,509,18, | ||
2624 | 1,2024,510,20,511, | ||
2625 | 4,24,83,0,69, | ||
2626 | 0,78,0,83,0, | ||
2627 | 79,0,82,0,95, | ||
2628 | 0,69,0,86,0, | ||
2629 | 69,0,78,0,84, | ||
2630 | 0,1,84,1,1, | ||
2631 | 2,0,1,2025,512, | ||
2632 | 18,1,2025,513,20, | ||
2633 | 514,4,52,82,0, | ||
2634 | 85,0,78,0,95, | ||
2635 | 0,84,0,73,0, | ||
2636 | 77,0,69,0,95, | ||
2637 | 0,80,0,69,0, | ||
2638 | 82,0,77,0,73, | ||
2639 | 0,83,0,83,0, | ||
2640 | 73,0,79,0,78, | ||
2641 | 0,83,0,95,0, | ||
2642 | 69,0,86,0,69, | ||
2643 | 0,78,0,84,0, | ||
2644 | 1,83,1,1,2, | ||
2645 | 0,1,2026,515,18, | ||
2646 | 1,2026,516,20,517, | ||
2647 | 4,34,82,0,69, | ||
2648 | 0,77,0,79,0, | ||
2649 | 84,0,69,0,95, | ||
2650 | 0,68,0,65,0, | ||
2651 | 84,0,65,0,95, | ||
2652 | 0,69,0,86,0, | ||
2653 | 69,0,78,0,84, | ||
2654 | 0,1,82,1,1, | ||
2655 | 2,0,1,422,518, | ||
2656 | 18,1,422,149,2, | ||
2657 | 0,1,428,519,18, | ||
2658 | 1,428,190,2,0, | ||
2659 | 1,2102,520,18,1, | ||
2660 | 2102,521,20,522,4, | ||
2661 | 20,83,0,116,0, | ||
2662 | 97,0,116,0,101, | ||
2663 | 0,69,0,118,0, | ||
2664 | 101,0,110,0,116, | ||
2665 | 0,1,102,1,2, | ||
2666 | 2,0,1,2103,523, | ||
2667 | 18,1,2103,393,2, | ||
2668 | 0,1,2039,524,18, | ||
2669 | 1,2039,525,20,526, | ||
2670 | 4,40,76,0,65, | ||
2671 | 0,78,0,68,0, | ||
2672 | 95,0,67,0,79, | ||
2673 | 0,76,0,76,0, | ||
2674 | 73,0,83,0,73, | ||
2675 | 0,79,0,78,0, | ||
2676 | 95,0,69,0,86, | ||
2677 | 0,69,0,78,0, | ||
2678 | 84,0,1,69,1, | ||
2679 | 1,2,0,1,2105, | ||
2680 | 527,18,1,2105,304, | ||
2681 | 2,0,1,2106,528, | ||
2682 | 18,1,2106,172,2, | ||
2683 | 0,1,2042,529,18, | ||
2684 | 1,2042,530,20,531, | ||
2685 | 4,32,68,0,65, | ||
2686 | 0,84,0,65,0, | ||
2687 | 83,0,69,0,82, | ||
2688 | 0,86,0,69,0, | ||
2689 | 82,0,95,0,69, | ||
2690 | 0,86,0,69,0, | ||
2691 | 78,0,84,0,1, | ||
2692 | 66,1,1,2,0, | ||
2693 | 1,2043,532,18,1, | ||
2694 | 2043,533,20,534,4, | ||
2695 | 26,67,0,79,0, | ||
2696 | 78,0,84,0,82, | ||
2697 | 0,79,0,76,0, | ||
2698 | 95,0,69,0,86, | ||
2699 | 0,69,0,78,0, | ||
2700 | 84,0,1,65,1, | ||
2701 | 1,2,0,1,2044, | ||
2702 | 535,18,1,2044,536, | ||
2703 | 20,537,4,42,67, | ||
2704 | 0,79,0,76,0, | ||
2705 | 76,0,73,0,83, | ||
2706 | 0,73,0,79,0, | ||
2707 | 78,0,95,0,83, | ||
2708 | 0,84,0,65,0, | ||
2709 | 82,0,84,0,95, | ||
2710 | 0,69,0,86,0, | ||
2711 | 69,0,78,0,84, | ||
2712 | 0,1,64,1,1, | ||
2713 | 2,0,1,2045,538, | ||
2714 | 18,1,2045,539,20, | ||
2715 | 540,4,38,67,0, | ||
2716 | 79,0,76,0,76, | ||
2717 | 0,73,0,83,0, | ||
2718 | 73,0,79,0,78, | ||
2719 | 0,95,0,69,0, | ||
2720 | 78,0,68,0,95, | ||
2721 | 0,69,0,86,0, | ||
2722 | 69,0,78,0,84, | ||
2723 | 0,1,63,1,1, | ||
2724 | 2,0,1,2046,541, | ||
2725 | 18,1,2046,542,20, | ||
2726 | 543,4,30,67,0, | ||
2727 | 79,0,76,0,76, | ||
2728 | 0,73,0,83,0, | ||
2729 | 73,0,79,0,78, | ||
2730 | 0,95,0,69,0, | ||
2731 | 86,0,69,0,78, | ||
2732 | 0,84,0,1,62, | ||
2733 | 1,1,2,0,1, | ||
2734 | 2047,544,18,1,2047, | ||
2735 | 545,20,546,4,26, | ||
2736 | 67,0,72,0,65, | ||
2737 | 0,78,0,71,0, | ||
2738 | 69,0,68,0,95, | ||
2739 | 0,69,0,86,0, | ||
2740 | 69,0,78,0,84, | ||
2741 | 0,1,61,1,1, | ||
2742 | 2,0,1,1557,547, | ||
2743 | 18,1,1557,360,2, | ||
2744 | 0,1,1001,548,18, | ||
2745 | 1,1001,469,2,0, | ||
2746 | 1,1559,549,18,1, | ||
2747 | 1559,155,2,0,1, | ||
2748 | 2051,550,18,1,2051, | ||
2749 | 551,20,552,4,10, | ||
2750 | 69,0,118,0,101, | ||
2751 | 0,110,0,116,0, | ||
2752 | 1,106,1,2,2, | ||
2753 | 0,1,447,553,18, | ||
2754 | 1,447,149,2,0, | ||
2755 | 1,1565,554,18,1, | ||
2756 | 1565,190,2,0,1, | ||
2757 | 1010,555,18,1,1010, | ||
2758 | 190,2,0,1,1011, | ||
2759 | 556,18,1,1011,152, | ||
2760 | 2,0,1,463,557, | ||
2761 | 18,1,463,334,2, | ||
2762 | 0,1,453,558,18, | ||
2763 | 1,453,190,2,0, | ||
2764 | 1,1584,559,18,1, | ||
2765 | 1584,155,2,0,1, | ||
2766 | 476,560,18,1,476, | ||
2767 | 561,20,562,4,30, | ||
2768 | 83,0,84,0,82, | ||
2769 | 0,73,0,78,0, | ||
2770 | 71,0,95,0,67, | ||
2771 | 0,79,0,78,0, | ||
2772 | 83,0,84,0,65, | ||
2773 | 0,78,0,84,0, | ||
2774 | 1,3,1,1,2, | ||
2775 | 0,1,477,563,18, | ||
2776 | 1,477,564,20,565, | ||
2777 | 4,28,70,0,76, | ||
2778 | 0,79,0,65,0, | ||
2779 | 84,0,95,0,67, | ||
2780 | 0,79,0,78,0, | ||
2781 | 83,0,84,0,65, | ||
2782 | 0,78,0,84,0, | ||
2783 | 1,94,1,1,2, | ||
2784 | 0,1,478,566,18, | ||
2785 | 1,478,567,20,568, | ||
2786 | 4,40,72,0,69, | ||
2787 | 0,88,0,95,0, | ||
2788 | 73,0,78,0,84, | ||
2789 | 0,69,0,71,0, | ||
2790 | 69,0,82,0,95, | ||
2791 | 0,67,0,79,0, | ||
2792 | 78,0,83,0,84, | ||
2793 | 0,65,0,78,0, | ||
2794 | 84,0,1,93,1, | ||
2795 | 1,2,0,1,479, | ||
2796 | 569,18,1,479,570, | ||
2797 | 20,571,4,32,73, | ||
2798 | 0,78,0,84,0, | ||
2799 | 69,0,71,0,69, | ||
2800 | 0,82,0,95,0, | ||
2801 | 67,0,79,0,78, | ||
2802 | 0,83,0,84,0, | ||
2803 | 65,0,78,0,84, | ||
2804 | 0,1,92,1,1, | ||
2805 | 2,0,1,488,572, | ||
2806 | 18,1,488,149,2, | ||
2807 | 0,1,1046,573,18, | ||
2808 | 1,1046,190,2,0, | ||
2809 | 1,494,574,18,1, | ||
2810 | 494,190,2,0,1, | ||
2811 | 1609,575,18,1,1609, | ||
2812 | 500,2,0,1,1611, | ||
2813 | 576,18,1,1611,152, | ||
2814 | 2,0,1,2104,577, | ||
2815 | 18,1,2104,521,2, | ||
2816 | 0,1,504,578,18, | ||
2817 | 1,504,334,2,0, | ||
2818 | 1,2177,579,18,1, | ||
2819 | 2177,393,2,0,1, | ||
2820 | 2238,580,18,1,2238, | ||
2821 | 581,20,582,4,34, | ||
2822 | 71,0,108,0,111, | ||
2823 | 0,98,0,97,0, | ||
2824 | 108,0,68,0,101, | ||
2825 | 0,102,0,105,0, | ||
2826 | 110,0,105,0,116, | ||
2827 | 0,105,0,111,0, | ||
2828 | 110,0,115,0,1, | ||
2829 | 96,1,2,2,0, | ||
2830 | 1,2179,583,18,1, | ||
2831 | 2179,292,2,0,1, | ||
2832 | 2048,584,18,1,2048, | ||
2833 | 585,20,586,4,24, | ||
2834 | 65,0,84,0,84, | ||
2835 | 0,65,0,67,0, | ||
2836 | 72,0,95,0,69, | ||
2837 | 0,86,0,69,0, | ||
2838 | 78,0,84,0,1, | ||
2839 | 60,1,1,2,0, | ||
2840 | 1,2049,587,18,1, | ||
2841 | 2049,588,20,589,4, | ||
2842 | 30,65,0,84,0, | ||
2843 | 95,0,84,0,65, | ||
2844 | 0,82,0,71,0, | ||
2845 | 69,0,84,0,95, | ||
2846 | 0,69,0,86,0, | ||
2847 | 69,0,78,0,84, | ||
2848 | 0,1,59,1,1, | ||
2849 | 2,0,1,1002,590, | ||
2850 | 18,1,1002,480,2, | ||
2851 | 0,1,2183,591,18, | ||
2852 | 1,2183,158,2,0, | ||
2853 | 1,2052,592,18,1, | ||
2854 | 2052,135,2,0,1, | ||
2855 | 2185,593,18,1,2185, | ||
2856 | 135,2,0,1,1637, | ||
2857 | 594,18,1,1637,279, | ||
2858 | 2,0,1,1639,595, | ||
2859 | 18,1,1639,596,20, | ||
2860 | 597,4,4,68,0, | ||
2861 | 79,0,1,44,1, | ||
2862 | 1,2,0,1,2198, | ||
2863 | 598,18,1,2198,308, | ||
2864 | 2,0,1,2200,599, | ||
2865 | 18,1,2200,168,2, | ||
2866 | 0,1,2201,600,18, | ||
2867 | 1,2201,182,2,0, | ||
2868 | 1,1092,601,18,1, | ||
2869 | 1092,486,2,0,1, | ||
2870 | 2207,602,18,1,2207, | ||
2871 | 190,2,0,1,1094, | ||
2872 | 603,18,1,1094,152, | ||
2873 | 2,0,1,2141,604, | ||
2874 | 18,1,2141,496,2, | ||
2875 | 0,1,2017,605,18, | ||
2876 | 1,2017,172,2,0, | ||
2877 | 1,1666,606,18,1, | ||
2878 | 1666,279,2,0,1, | ||
2879 | 1667,607,18,1,1667, | ||
2880 | 178,2,0,1,1111, | ||
2881 | 608,18,1,1111,197, | ||
2882 | 2,0,1,1112,609, | ||
2883 | 18,1,1112,132,2, | ||
2884 | 0,610,5,0,611, | ||
2885 | 5,287,1,2,612, | ||
2886 | 19,176,1,2,613, | ||
2887 | 5,6,1,2179,614, | ||
2888 | 17,615,15,616,4, | ||
2889 | 30,37,0,76,0, | ||
2890 | 83,0,76,0,80, | ||
2891 | 0,114,0,111,0, | ||
2892 | 103,0,114,0,97, | ||
2893 | 0,109,0,82,0, | ||
2894 | 111,0,111,0,116, | ||
2895 | 0,1,-1,1,5, | ||
2896 | 617,20,618,4,32, | ||
2897 | 76,0,83,0,76, | ||
2898 | 0,80,0,114,0, | ||
2899 | 111,0,103,0,114, | ||
2900 | 0,97,0,109,0, | ||
2901 | 82,0,111,0,111, | ||
2902 | 0,116,0,95,0, | ||
2903 | 50,0,1,138,1, | ||
2904 | 3,1,2,1,1, | ||
2905 | 619,22,1,2,1, | ||
2906 | 2103,620,17,621,15, | ||
2907 | 622,4,12,37,0, | ||
2908 | 83,0,116,0,97, | ||
2909 | 0,116,0,101,0, | ||
2910 | 1,-1,1,5,623, | ||
2911 | 20,624,4,14,83, | ||
2912 | 0,116,0,97,0, | ||
2913 | 116,0,101,0,95, | ||
2914 | 0,50,0,1,150, | ||
2915 | 1,3,1,6,1, | ||
2916 | 5,625,22,1,14, | ||
2917 | 1,2183,626,17,627, | ||
2918 | 15,628,4,14,37, | ||
2919 | 0,83,0,116,0, | ||
2920 | 97,0,116,0,101, | ||
2921 | 0,115,0,1,-1, | ||
2922 | 1,5,629,20,630, | ||
2923 | 4,16,83,0,116, | ||
2924 | 0,97,0,116,0, | ||
2925 | 101,0,115,0,95, | ||
2926 | 0,49,0,1,147, | ||
2927 | 1,3,1,2,1, | ||
2928 | 1,631,22,1,11, | ||
2929 | 1,2182,632,17,633, | ||
2930 | 15,628,1,-1,1, | ||
2931 | 5,634,20,635,4, | ||
2932 | 16,83,0,116,0, | ||
2933 | 97,0,116,0,101, | ||
2934 | 0,115,0,95,0, | ||
2935 | 50,0,1,148,1, | ||
2936 | 3,1,3,1,2, | ||
2937 | 636,22,1,12,1, | ||
2938 | 2249,637,17,638,15, | ||
2939 | 616,1,-1,1,5, | ||
2940 | 639,20,640,4,32, | ||
2941 | 76,0,83,0,76, | ||
2942 | 0,80,0,114,0, | ||
2943 | 111,0,103,0,114, | ||
2944 | 0,97,0,109,0, | ||
2945 | 82,0,111,0,111, | ||
2946 | 0,116,0,95,0, | ||
2947 | 49,0,1,137,1, | ||
2948 | 3,1,3,1,2, | ||
2949 | 641,22,1,1,1, | ||
2950 | 2177,642,17,643,15, | ||
2951 | 622,1,-1,1,5, | ||
2952 | 644,20,645,4,14, | ||
2953 | 83,0,116,0,97, | ||
2954 | 0,116,0,101,0, | ||
2955 | 95,0,49,0,1, | ||
2956 | 149,1,3,1,5, | ||
2957 | 1,4,646,22,1, | ||
2958 | 13,1,3,647,19, | ||
2959 | 562,1,3,648,5, | ||
2960 | 77,1,1853,649,17, | ||
2961 | 650,15,651,4,20, | ||
2962 | 37,0,83,0,116, | ||
2963 | 0,97,0,116,0, | ||
2964 | 101,0,109,0,101, | ||
2965 | 0,110,0,116,0, | ||
2966 | 1,-1,1,5,652, | ||
2967 | 20,653,4,22,83, | ||
2968 | 0,116,0,97,0, | ||
2969 | 116,0,101,0,109, | ||
2970 | 0,101,0,110,0, | ||
2971 | 116,0,95,0,57, | ||
2972 | 0,1,169,1,3, | ||
2973 | 1,2,1,1,654, | ||
2974 | 22,1,35,1,1854, | ||
2975 | 655,17,656,15,651, | ||
2976 | 1,-1,1,5,657, | ||
2977 | 20,658,4,22,83, | ||
2978 | 0,116,0,97,0, | ||
2979 | 116,0,101,0,109, | ||
2980 | 0,101,0,110,0, | ||
2981 | 116,0,95,0,56, | ||
2982 | 0,1,168,1,3, | ||
2983 | 1,2,1,1,659, | ||
2984 | 22,1,34,1,1855, | ||
2985 | 660,17,661,15,651, | ||
2986 | 1,-1,1,5,662, | ||
2987 | 20,663,4,22,83, | ||
2988 | 0,116,0,97,0, | ||
2989 | 116,0,101,0,109, | ||
2990 | 0,101,0,110,0, | ||
2991 | 116,0,95,0,55, | ||
2992 | 0,1,167,1,3, | ||
2993 | 1,2,1,1,664, | ||
2994 | 22,1,33,1,112, | ||
2995 | 665,16,0,560,1, | ||
2996 | 384,666,16,0,560, | ||
2997 | 1,1858,667,17,668, | ||
2998 | 15,651,1,-1,1, | ||
2999 | 5,669,20,670,4, | ||
3000 | 22,83,0,116,0, | ||
3001 | 97,0,116,0,101, | ||
3002 | 0,109,0,101,0, | ||
3003 | 110,0,116,0,95, | ||
3004 | 0,53,0,1,165, | ||
3005 | 1,3,1,3,1, | ||
3006 | 2,671,22,1,31, | ||
3007 | 1,1860,672,17,673, | ||
3008 | 15,651,1,-1,1, | ||
3009 | 5,674,20,675,4, | ||
3010 | 22,83,0,116,0, | ||
3011 | 97,0,116,0,101, | ||
3012 | 0,109,0,101,0, | ||
3013 | 110,0,116,0,95, | ||
3014 | 0,52,0,1,164, | ||
3015 | 1,3,1,3,1, | ||
3016 | 2,676,22,1,30, | ||
3017 | 1,1862,677,17,678, | ||
3018 | 15,651,1,-1,1, | ||
3019 | 5,679,20,680,4, | ||
3020 | 22,83,0,116,0, | ||
3021 | 97,0,116,0,101, | ||
3022 | 0,109,0,101,0, | ||
3023 | 110,0,116,0,95, | ||
3024 | 0,50,0,1,162, | ||
3025 | 1,3,1,3,1, | ||
3026 | 2,681,22,1,28, | ||
3027 | 1,1863,682,17,683, | ||
3028 | 15,651,1,-1,1, | ||
3029 | 5,279,1,1,1, | ||
3030 | 1,684,22,1,26, | ||
3031 | 1,447,685,16,0, | ||
3032 | 560,1,1611,686,16, | ||
3033 | 0,560,1,124,687, | ||
3034 | 16,0,560,1,1760, | ||
3035 | 688,17,689,15,690, | ||
3036 | 4,30,37,0,87, | ||
3037 | 0,104,0,105,0, | ||
3038 | 108,0,101,0,83, | ||
3039 | 0,116,0,97,0, | ||
3040 | 116,0,101,0,109, | ||
3041 | 0,101,0,110,0, | ||
3042 | 116,0,1,-1,1, | ||
3043 | 5,691,20,692,4, | ||
3044 | 32,87,0,104,0, | ||
3045 | 105,0,108,0,101, | ||
3046 | 0,83,0,116,0, | ||
3047 | 97,0,116,0,101, | ||
3048 | 0,109,0,101,0, | ||
3049 | 110,0,116,0,95, | ||
3050 | 0,49,0,1,175, | ||
3051 | 1,3,1,6,1, | ||
3052 | 5,693,22,1,41, | ||
3053 | 1,236,694,16,0, | ||
3054 | 560,1,1763,695,16, | ||
3055 | 0,560,1,2201,696, | ||
3056 | 16,0,560,1,1222, | ||
3057 | 697,16,0,560,1, | ||
3058 | 1115,698,16,0,560, | ||
3059 | 1,1187,699,16,0, | ||
3060 | 560,1,137,700,16, | ||
3061 | 0,560,1,217,701, | ||
3062 | 16,0,560,1,32, | ||
3063 | 702,16,0,560,1, | ||
3064 | 1668,703,16,0,560, | ||
3065 | 1,1514,704,16,0, | ||
3066 | 560,1,256,705,16, | ||
3067 | 0,560,1,41,706, | ||
3068 | 16,0,560,1,151, | ||
3069 | 707,16,0,560,1, | ||
3070 | 43,708,16,0,560, | ||
3071 | 1,1732,709,16,0, | ||
3072 | 560,1,1637,710,17, | ||
3073 | 711,15,712,4,16, | ||
3074 | 37,0,70,0,111, | ||
3075 | 0,114,0,76,0, | ||
3076 | 111,0,111,0,112, | ||
3077 | 0,1,-1,1,5, | ||
3078 | 713,20,714,4,18, | ||
3079 | 70,0,111,0,114, | ||
3080 | 0,76,0,111,0, | ||
3081 | 111,0,112,0,95, | ||
3082 | 0,49,0,1,177, | ||
3083 | 1,3,1,10,1, | ||
3084 | 9,715,22,1,43, | ||
3085 | 1,2009,716,17,717, | ||
3086 | 15,718,4,28,37, | ||
3087 | 0,83,0,116,0, | ||
3088 | 97,0,116,0,101, | ||
3089 | 0,109,0,101,0, | ||
3090 | 110,0,116,0,76, | ||
3091 | 0,105,0,115,0, | ||
3092 | 116,0,1,-1,1, | ||
3093 | 5,719,20,720,4, | ||
3094 | 30,83,0,116,0, | ||
3095 | 97,0,116,0,101, | ||
3096 | 0,109,0,101,0, | ||
3097 | 110,0,116,0,76, | ||
3098 | 0,105,0,115,0, | ||
3099 | 116,0,95,0,49, | ||
3100 | 0,1,159,1,3, | ||
3101 | 1,2,1,1,721, | ||
3102 | 22,1,24,1,1639, | ||
3103 | 722,16,0,560,1, | ||
3104 | 2011,723,17,724,15, | ||
3105 | 725,4,36,37,0, | ||
3106 | 67,0,111,0,109, | ||
3107 | 0,112,0,111,0, | ||
3108 | 117,0,110,0,100, | ||
3109 | 0,83,0,116,0, | ||
3110 | 97,0,116,0,101, | ||
3111 | 0,109,0,101,0, | ||
3112 | 110,0,116,0,1, | ||
3113 | -1,1,5,726,20, | ||
3114 | 727,4,38,67,0, | ||
3115 | 111,0,109,0,112, | ||
3116 | 0,111,0,117,0, | ||
3117 | 110,0,100,0,83, | ||
3118 | 0,116,0,97,0, | ||
3119 | 116,0,101,0,109, | ||
3120 | 0,101,0,110,0, | ||
3121 | 116,0,95,0,49, | ||
3122 | 0,1,157,1,3, | ||
3123 | 1,3,1,2,728, | ||
3124 | 22,1,22,1,1467, | ||
3125 | 729,17,730,15,651, | ||
3126 | 1,-1,1,5,731, | ||
3127 | 20,732,4,22,83, | ||
3128 | 0,116,0,97,0, | ||
3129 | 116,0,101,0,109, | ||
3130 | 0,101,0,110,0, | ||
3131 | 116,0,95,0,49, | ||
3132 | 0,1,161,1,3, | ||
3133 | 1,3,1,2,733, | ||
3134 | 22,1,27,1,1584, | ||
3135 | 734,16,0,560,1, | ||
3136 | 52,735,16,0,560, | ||
3137 | 1,381,736,16,0, | ||
3138 | 560,1,346,737,16, | ||
3139 | 0,560,1,166,738, | ||
3140 | 16,0,560,1,1257, | ||
3141 | 739,16,0,560,1, | ||
3142 | 1694,740,17,741,15, | ||
3143 | 742,4,34,37,0, | ||
3144 | 68,0,111,0,87, | ||
3145 | 0,104,0,105,0, | ||
3146 | 108,0,101,0,83, | ||
3147 | 0,116,0,97,0, | ||
3148 | 116,0,101,0,109, | ||
3149 | 0,101,0,110,0, | ||
3150 | 116,0,1,-1,1, | ||
3151 | 5,743,20,744,4, | ||
3152 | 36,68,0,111,0, | ||
3153 | 87,0,104,0,105, | ||
3154 | 0,108,0,101,0, | ||
3155 | 83,0,116,0,97, | ||
3156 | 0,116,0,101,0, | ||
3157 | 109,0,101,0,110, | ||
3158 | 0,116,0,95,0, | ||
3159 | 49,0,1,176,1, | ||
3160 | 3,1,8,1,7, | ||
3161 | 745,22,1,42,1, | ||
3162 | 1432,746,16,0,560, | ||
3163 | 1,1152,747,16,0, | ||
3164 | 560,1,1856,748,17, | ||
3165 | 749,15,651,1,-1, | ||
3166 | 1,5,750,20,751, | ||
3167 | 4,22,83,0,116, | ||
3168 | 0,97,0,116,0, | ||
3169 | 101,0,109,0,101, | ||
3170 | 0,110,0,116,0, | ||
3171 | 95,0,54,0,1, | ||
3172 | 166,1,3,1,2, | ||
3173 | 1,1,752,22,1, | ||
3174 | 32,1,62,753,16, | ||
3175 | 0,560,1,1965,754, | ||
3176 | 16,0,560,1,504, | ||
3177 | 755,16,0,560,1, | ||
3178 | 277,756,16,0,560, | ||
3179 | 1,397,757,16,0, | ||
3180 | 560,1,71,758,16, | ||
3181 | 0,560,1,1707,759, | ||
3182 | 16,0,560,1,1817, | ||
3183 | 760,17,761,15,762, | ||
3184 | 4,24,37,0,73, | ||
3185 | 0,102,0,83,0, | ||
3186 | 116,0,97,0,116, | ||
3187 | 0,101,0,109,0, | ||
3188 | 101,0,110,0,116, | ||
3189 | 0,1,-1,1,5, | ||
3190 | 763,20,764,4,26, | ||
3191 | 73,0,102,0,83, | ||
3192 | 0,116,0,97,0, | ||
3193 | 116,0,101,0,109, | ||
3194 | 0,101,0,110,0, | ||
3195 | 116,0,95,0,49, | ||
3196 | 0,1,173,1,3, | ||
3197 | 1,6,1,5,765, | ||
3198 | 22,1,39,1,1818, | ||
3199 | 766,16,0,560,1, | ||
3200 | 463,767,16,0,560, | ||
3201 | 1,76,768,16,0, | ||
3202 | 560,1,1385,769,17, | ||
3203 | 770,15,651,1,-1, | ||
3204 | 1,5,771,20,772, | ||
3205 | 4,22,83,0,116, | ||
3206 | 0,97,0,116,0, | ||
3207 | 101,0,109,0,101, | ||
3208 | 0,110,0,116,0, | ||
3209 | 95,0,51,0,1, | ||
3210 | 163,1,3,1,3, | ||
3211 | 1,2,773,22,1, | ||
3212 | 29,1,79,774,16, | ||
3213 | 0,560,1,182,775, | ||
3214 | 16,0,560,1,299, | ||
3215 | 776,16,0,560,1, | ||
3216 | 2006,777,17,778,15, | ||
3217 | 725,1,-1,1,5, | ||
3218 | 779,20,780,4,38, | ||
3219 | 67,0,111,0,109, | ||
3220 | 0,112,0,111,0, | ||
3221 | 117,0,110,0,100, | ||
3222 | 0,83,0,116,0, | ||
3223 | 97,0,116,0,101, | ||
3224 | 0,109,0,101,0, | ||
3225 | 110,0,116,0,95, | ||
3226 | 0,50,0,1,158, | ||
3227 | 1,3,1,4,1, | ||
3228 | 3,781,22,1,23, | ||
3229 | 1,1559,782,16,0, | ||
3230 | 560,1,85,783,16, | ||
3231 | 0,560,1,488,784, | ||
3232 | 16,0,560,1,1396, | ||
3233 | 785,16,0,560,1, | ||
3234 | 89,786,16,0,560, | ||
3235 | 1,199,787,16,0, | ||
3236 | 560,1,1292,788,16, | ||
3237 | 0,560,1,422,789, | ||
3238 | 16,0,560,1,97, | ||
3239 | 790,16,0,560,1, | ||
3240 | 1469,791,16,0,560, | ||
3241 | 1,1788,792,16,0, | ||
3242 | 560,1,102,793,16, | ||
3243 | 0,560,1,1847,794, | ||
3244 | 17,795,15,762,1, | ||
3245 | -1,1,5,796,20, | ||
3246 | 797,4,26,73,0, | ||
3247 | 102,0,83,0,116, | ||
3248 | 0,97,0,116,0, | ||
3249 | 101,0,109,0,101, | ||
3250 | 0,110,0,116,0, | ||
3251 | 95,0,50,0,1, | ||
3252 | 174,1,3,1,8, | ||
3253 | 1,7,798,22,1, | ||
3254 | 40,1,322,799,16, | ||
3255 | 0,560,1,1327,800, | ||
3256 | 16,0,560,1,2005, | ||
3257 | 801,17,802,15,718, | ||
3258 | 1,-1,1,5,803, | ||
3259 | 20,804,4,30,83, | ||
3260 | 0,116,0,97,0, | ||
3261 | 116,0,101,0,109, | ||
3262 | 0,101,0,110,0, | ||
3263 | 116,0,76,0,105, | ||
3264 | 0,115,0,116,0, | ||
3265 | 95,0,50,0,1, | ||
3266 | 160,1,3,1,3, | ||
3267 | 1,2,805,22,1, | ||
3268 | 25,1,1852,806,17, | ||
3269 | 807,15,651,1,-1, | ||
3270 | 1,5,808,20,809, | ||
3271 | 4,24,83,0,116, | ||
3272 | 0,97,0,116,0, | ||
3273 | 101,0,109,0,101, | ||
3274 | 0,110,0,116,0, | ||
3275 | 95,0,49,0,48, | ||
3276 | 0,1,170,1,3, | ||
3277 | 1,2,1,1,810, | ||
3278 | 22,1,36,1,4, | ||
3279 | 811,19,205,1,4, | ||
3280 | 812,5,82,1,2009, | ||
3281 | 716,1,1257,813,16, | ||
3282 | 0,475,1,1760,688, | ||
3283 | 1,256,814,16,0, | ||
3284 | 475,1,1763,815,16, | ||
3285 | 0,475,1,1514,816, | ||
3286 | 16,0,475,1,504, | ||
3287 | 817,16,0,475,1, | ||
3288 | 277,818,16,0,475, | ||
3289 | 1,1788,819,16,0, | ||
3290 | 475,1,32,820,16, | ||
3291 | 0,475,1,1292,821, | ||
3292 | 16,0,475,1,40, | ||
3293 | 822,16,0,207,1, | ||
3294 | 41,823,16,0,475, | ||
3295 | 1,43,824,16,0, | ||
3296 | 475,1,44,825,16, | ||
3297 | 0,207,1,47,826, | ||
3298 | 16,0,203,1,299, | ||
3299 | 827,16,0,475,1, | ||
3300 | 52,828,16,0,475, | ||
3301 | 1,1559,829,16,0, | ||
3302 | 475,1,1817,760,1, | ||
3303 | 1818,830,16,0,475, | ||
3304 | 1,63,831,16,0, | ||
3305 | 218,1,66,832,16, | ||
3306 | 0,216,1,2011,723, | ||
3307 | 1,71,833,16,0, | ||
3308 | 475,1,1327,834,16, | ||
3309 | 0,475,1,76,835, | ||
3310 | 16,0,475,1,1584, | ||
3311 | 836,16,0,475,1, | ||
3312 | 79,837,16,0,475, | ||
3313 | 1,322,838,16,0, | ||
3314 | 475,1,85,839,16, | ||
3315 | 0,475,1,89,840, | ||
3316 | 16,0,475,1,1847, | ||
3317 | 794,1,346,841,16, | ||
3318 | 0,475,1,1853,649, | ||
3319 | 1,1854,655,1,1855, | ||
3320 | 660,1,1856,748,1, | ||
3321 | 1858,667,1,97,842, | ||
3322 | 16,0,475,1,1860, | ||
3323 | 672,1,1862,677,1, | ||
3324 | 1863,682,1,102,843, | ||
3325 | 16,0,475,1,1112, | ||
3326 | 844,16,0,203,1, | ||
3327 | 1115,845,16,0,475, | ||
3328 | 1,112,846,16,0, | ||
3329 | 475,1,124,847,16, | ||
3330 | 0,475,1,381,848, | ||
3331 | 16,0,475,1,1637, | ||
3332 | 710,1,384,849,16, | ||
3333 | 0,475,1,137,850, | ||
3334 | 16,0,475,1,1396, | ||
3335 | 851,16,0,475,1, | ||
3336 | 397,852,16,0,475, | ||
3337 | 1,1152,853,16,0, | ||
3338 | 475,1,151,854,16, | ||
3339 | 0,475,1,1852,806, | ||
3340 | 1,1611,855,16,0, | ||
3341 | 475,1,1668,856,16, | ||
3342 | 0,475,1,166,857, | ||
3343 | 16,0,475,1,422, | ||
3344 | 858,16,0,475,1, | ||
3345 | 1385,769,1,1432,859, | ||
3346 | 16,0,475,1,182, | ||
3347 | 860,16,0,475,1, | ||
3348 | 1187,861,16,0,475, | ||
3349 | 1,1639,862,16,0, | ||
3350 | 475,1,1694,740,1, | ||
3351 | 2201,863,16,0,475, | ||
3352 | 1,447,864,16,0, | ||
3353 | 475,1,199,865,16, | ||
3354 | 0,475,1,1707,866, | ||
3355 | 16,0,475,1,1965, | ||
3356 | 867,16,0,475,1, | ||
3357 | 1467,729,1,1469,868, | ||
3358 | 16,0,475,1,217, | ||
3359 | 869,16,0,475,1, | ||
3360 | 1222,870,16,0,475, | ||
3361 | 1,1732,871,16,0, | ||
3362 | 475,1,463,872,16, | ||
3363 | 0,475,1,236,873, | ||
3364 | 16,0,475,1,488, | ||
3365 | 874,16,0,475,1, | ||
3366 | 2005,801,1,2006,777, | ||
3367 | 1,5,875,19,202, | ||
3368 | 1,5,876,5,82, | ||
3369 | 1,2009,716,1,1257, | ||
3370 | 877,16,0,471,1, | ||
3371 | 1760,688,1,256,878, | ||
3372 | 16,0,471,1,1763, | ||
3373 | 879,16,0,471,1, | ||
3374 | 1514,880,16,0,471, | ||
3375 | 1,504,881,16,0, | ||
3376 | 471,1,277,882,16, | ||
3377 | 0,471,1,1788,883, | ||
3378 | 16,0,471,1,32, | ||
3379 | 884,16,0,471,1, | ||
3380 | 1292,885,16,0,471, | ||
3381 | 1,40,886,16,0, | ||
3382 | 206,1,41,887,16, | ||
3383 | 0,471,1,43,888, | ||
3384 | 16,0,471,1,44, | ||
3385 | 889,16,0,206,1, | ||
3386 | 47,890,16,0,200, | ||
3387 | 1,299,891,16,0, | ||
3388 | 471,1,52,892,16, | ||
3389 | 0,471,1,1559,893, | ||
3390 | 16,0,471,1,1817, | ||
3391 | 760,1,1818,894,16, | ||
3392 | 0,471,1,63,895, | ||
3393 | 16,0,217,1,66, | ||
3394 | 896,16,0,215,1, | ||
3395 | 2011,723,1,71,897, | ||
3396 | 16,0,471,1,1327, | ||
3397 | 898,16,0,471,1, | ||
3398 | 76,899,16,0,471, | ||
3399 | 1,1584,900,16,0, | ||
3400 | 471,1,79,901,16, | ||
3401 | 0,471,1,322,902, | ||
3402 | 16,0,471,1,85, | ||
3403 | 903,16,0,471,1, | ||
3404 | 89,904,16,0,471, | ||
3405 | 1,1847,794,1,346, | ||
3406 | 905,16,0,471,1, | ||
3407 | 1853,649,1,1854,655, | ||
3408 | 1,1855,660,1,1856, | ||
3409 | 748,1,1858,667,1, | ||
3410 | 97,906,16,0,471, | ||
3411 | 1,1860,672,1,1862, | ||
3412 | 677,1,1863,682,1, | ||
3413 | 102,907,16,0,471, | ||
3414 | 1,1112,908,16,0, | ||
3415 | 200,1,1115,909,16, | ||
3416 | 0,471,1,112,910, | ||
3417 | 16,0,471,1,124, | ||
3418 | 911,16,0,471,1, | ||
3419 | 381,912,16,0,471, | ||
3420 | 1,1637,710,1,384, | ||
3421 | 913,16,0,471,1, | ||
3422 | 137,914,16,0,471, | ||
3423 | 1,1396,915,16,0, | ||
3424 | 471,1,397,916,16, | ||
3425 | 0,471,1,1152,917, | ||
3426 | 16,0,471,1,151, | ||
3427 | 918,16,0,471,1, | ||
3428 | 1852,806,1,1611,919, | ||
3429 | 16,0,471,1,1668, | ||
3430 | 920,16,0,471,1, | ||
3431 | 166,921,16,0,471, | ||
3432 | 1,422,922,16,0, | ||
3433 | 471,1,1385,769,1, | ||
3434 | 1432,923,16,0,471, | ||
3435 | 1,182,924,16,0, | ||
3436 | 471,1,1187,925,16, | ||
3437 | 0,471,1,1639,926, | ||
3438 | 16,0,471,1,1694, | ||
3439 | 740,1,2201,927,16, | ||
3440 | 0,471,1,447,928, | ||
3441 | 16,0,471,1,199, | ||
3442 | 929,16,0,471,1, | ||
3443 | 1707,930,16,0,471, | ||
3444 | 1,1965,931,16,0, | ||
3445 | 471,1,1467,729,1, | ||
3446 | 1469,932,16,0,471, | ||
3447 | 1,217,933,16,0, | ||
3448 | 471,1,1222,934,16, | ||
3449 | 0,471,1,1732,935, | ||
3450 | 16,0,471,1,463, | ||
3451 | 936,16,0,471,1, | ||
3452 | 236,937,16,0,471, | ||
3453 | 1,488,938,16,0, | ||
3454 | 471,1,2005,801,1, | ||
3455 | 2006,777,1,6,939, | ||
3456 | 19,302,1,6,940, | ||
3457 | 5,1,1,40,941, | ||
3458 | 16,0,300,1,7, | ||
3459 | 942,19,277,1,7, | ||
3460 | 943,5,1,1,40, | ||
3461 | 944,16,0,275,1, | ||
3462 | 8,945,19,259,1, | ||
3463 | 8,946,5,1,1, | ||
3464 | 40,947,16,0,257, | ||
3465 | 1,9,948,19,330, | ||
3466 | 1,9,949,5,1, | ||
3467 | 1,40,950,16,0, | ||
3468 | 328,1,10,951,19, | ||
3469 | 186,1,10,952,5, | ||
3470 | 1,1,40,953,16, | ||
3471 | 0,184,1,11,954, | ||
3472 | 19,156,1,11,955, | ||
3473 | 5,108,1,2009,716, | ||
3474 | 1,504,956,17,957, | ||
3475 | 15,958,4,34,37, | ||
3476 | 0,82,0,111,0, | ||
3477 | 116,0,97,0,116, | ||
3478 | 0,105,0,111,0, | ||
3479 | 110,0,67,0,111, | ||
3480 | 0,110,0,115,0, | ||
3481 | 116,0,97,0,110, | ||
3482 | 0,116,0,1,-1, | ||
3483 | 1,5,959,20,960, | ||
3484 | 4,36,82,0,111, | ||
3485 | 0,116,0,97,0, | ||
3486 | 116,0,105,0,111, | ||
3487 | 0,110,0,67,0, | ||
3488 | 111,0,110,0,115, | ||
3489 | 0,116,0,97,0, | ||
3490 | 110,0,116,0,95, | ||
3491 | 0,49,0,1,197, | ||
3492 | 1,3,1,10,1, | ||
3493 | 9,961,22,1,63, | ||
3494 | 1,1760,688,1,1513, | ||
3495 | 962,16,0,549,1, | ||
3496 | 1263,963,17,964,15, | ||
3497 | 965,4,22,37,0, | ||
3498 | 65,0,115,0,115, | ||
3499 | 0,105,0,103,0, | ||
3500 | 110,0,109,0,101, | ||
3501 | 0,110,0,116,0, | ||
3502 | 1,-1,1,5,966, | ||
3503 | 20,967,4,24,65, | ||
3504 | 0,115,0,115,0, | ||
3505 | 105,0,103,0,110, | ||
3506 | 0,109,0,101,0, | ||
3507 | 110,0,116,0,95, | ||
3508 | 0,52,0,1,185, | ||
3509 | 1,3,1,4,1, | ||
3510 | 3,968,22,1,51, | ||
3511 | 1,9,969,17,970, | ||
3512 | 15,971,4,24,37, | ||
3513 | 0,68,0,101,0, | ||
3514 | 99,0,108,0,97, | ||
3515 | 0,114,0,97,0, | ||
3516 | 116,0,105,0,111, | ||
3517 | 0,110,0,1,-1, | ||
3518 | 1,5,972,20,973, | ||
3519 | 4,26,68,0,101, | ||
3520 | 0,99,0,108,0, | ||
3521 | 97,0,114,0,97, | ||
3522 | 0,116,0,105,0, | ||
3523 | 111,0,110,0,95, | ||
3524 | 0,49,0,1,156, | ||
3525 | 1,3,1,3,1, | ||
3526 | 2,974,22,1,21, | ||
3527 | 1,262,975,17,976, | ||
3528 | 15,977,4,34,37, | ||
3529 | 0,66,0,105,0, | ||
3530 | 110,0,97,0,114, | ||
3531 | 0,121,0,69,0, | ||
3532 | 120,0,112,0,114, | ||
3533 | 0,101,0,115,0, | ||
3534 | 115,0,105,0,111, | ||
3535 | 0,110,0,1,-1, | ||
3536 | 1,5,978,20,979, | ||
3537 | 4,36,66,0,105, | ||
3538 | 0,110,0,97,0, | ||
3539 | 114,0,121,0,69, | ||
3540 | 0,120,0,112,0, | ||
3541 | 114,0,101,0,115, | ||
3542 | 0,115,0,105,0, | ||
3543 | 111,0,110,0,95, | ||
3544 | 0,53,0,1,215, | ||
3545 | 1,3,1,4,1, | ||
3546 | 3,980,22,1,81, | ||
3547 | 1,19,981,17,970, | ||
3548 | 1,2,974,1,1527, | ||
3549 | 982,17,983,15,984, | ||
3550 | 4,34,37,0,70, | ||
3551 | 0,111,0,114,0, | ||
3552 | 76,0,111,0,111, | ||
3553 | 0,112,0,83,0, | ||
3554 | 116,0,97,0,116, | ||
3555 | 0,101,0,109,0, | ||
3556 | 101,0,110,0,116, | ||
3557 | 0,1,-1,1,5, | ||
3558 | 985,20,986,4,36, | ||
3559 | 70,0,111,0,114, | ||
3560 | 0,76,0,111,0, | ||
3561 | 111,0,112,0,83, | ||
3562 | 0,116,0,97,0, | ||
3563 | 116,0,101,0,109, | ||
3564 | 0,101,0,110,0, | ||
3565 | 116,0,95,0,51, | ||
3566 | 0,1,180,1,3, | ||
3567 | 1,4,1,3,987, | ||
3568 | 22,1,46,1,477, | ||
3569 | 988,17,989,15,990, | ||
3570 | 4,18,37,0,67, | ||
3571 | 0,111,0,110,0, | ||
3572 | 115,0,116,0,97, | ||
3573 | 0,110,0,116,0, | ||
3574 | 1,-1,1,5,991, | ||
3575 | 20,992,4,20,67, | ||
3576 | 0,111,0,110,0, | ||
3577 | 115,0,116,0,97, | ||
3578 | 0,110,0,116,0, | ||
3579 | 95,0,51,0,1, | ||
3580 | 194,1,3,1,2, | ||
3581 | 1,1,993,22,1, | ||
3582 | 60,1,1001,994,17, | ||
3583 | 995,15,996,4,38, | ||
3584 | 37,0,84,0,121, | ||
3585 | 0,112,0,101,0, | ||
3586 | 99,0,97,0,115, | ||
3587 | 0,116,0,69,0, | ||
3588 | 120,0,112,0,114, | ||
3589 | 0,101,0,115,0, | ||
3590 | 115,0,105,0,111, | ||
3591 | 0,110,0,1,-1, | ||
3592 | 1,5,997,20,998, | ||
3593 | 4,40,84,0,121, | ||
3594 | 0,112,0,101,0, | ||
3595 | 99,0,97,0,115, | ||
3596 | 0,116,0,69,0, | ||
3597 | 120,0,112,0,114, | ||
3598 | 0,101,0,115,0, | ||
3599 | 115,0,105,0,111, | ||
3600 | 0,110,0,95,0, | ||
3601 | 56,0,1,240,1, | ||
3602 | 3,1,5,1,4, | ||
3603 | 999,22,1,106,1, | ||
3604 | 1788,1000,16,0,332, | ||
3605 | 1,32,1001,16,0, | ||
3606 | 332,1,40,1002,17, | ||
3607 | 1003,15,1004,4,32, | ||
3608 | 37,0,73,0,100, | ||
3609 | 0,101,0,110,0, | ||
3610 | 116,0,69,0,120, | ||
3611 | 0,112,0,114,0, | ||
3612 | 101,0,115,0,115, | ||
3613 | 0,105,0,111,0, | ||
3614 | 110,0,1,-1,1, | ||
3615 | 5,1005,20,1006,4, | ||
3616 | 34,73,0,100,0, | ||
3617 | 101,0,110,0,116, | ||
3618 | 0,69,0,120,0, | ||
3619 | 112,0,114,0,101, | ||
3620 | 0,115,0,115,0, | ||
3621 | 105,0,111,0,110, | ||
3622 | 0,95,0,49,0, | ||
3623 | 1,200,1,3,1, | ||
3624 | 2,1,1,1007,22, | ||
3625 | 1,66,1,283,1008, | ||
3626 | 17,1009,15,977,1, | ||
3627 | -1,1,5,1010,20, | ||
3628 | 1011,4,36,66,0, | ||
3629 | 105,0,110,0,97, | ||
3630 | 0,114,0,121,0, | ||
3631 | 69,0,120,0,112, | ||
3632 | 0,114,0,101,0, | ||
3633 | 115,0,115,0,105, | ||
3634 | 0,111,0,110,0, | ||
3635 | 95,0,52,0,1, | ||
3636 | 214,1,3,1,4, | ||
3637 | 1,3,1012,22,1, | ||
3638 | 80,1,1298,1013,17, | ||
3639 | 1014,15,965,1,-1, | ||
3640 | 1,5,1015,20,1016, | ||
3641 | 4,24,65,0,115, | ||
3642 | 0,115,0,105,0, | ||
3643 | 103,0,110,0,109, | ||
3644 | 0,101,0,110,0, | ||
3645 | 116,0,95,0,51, | ||
3646 | 0,1,184,1,3, | ||
3647 | 1,4,1,3,1017, | ||
3648 | 22,1,50,1,44, | ||
3649 | 1018,17,1003,1,1, | ||
3650 | 1007,1,47,1019,17, | ||
3651 | 1020,15,1021,4,38, | ||
3652 | 37,0,73,0,100, | ||
3653 | 0,101,0,110,0, | ||
3654 | 116,0,68,0,111, | ||
3655 | 0,116,0,69,0, | ||
3656 | 120,0,112,0,114, | ||
3657 | 0,101,0,115,0, | ||
3658 | 115,0,105,0,111, | ||
3659 | 0,110,0,1,-1, | ||
3660 | 1,5,1022,20,1023, | ||
3661 | 4,40,73,0,100, | ||
3662 | 0,101,0,110,0, | ||
3663 | 116,0,68,0,111, | ||
3664 | 0,116,0,69,0, | ||
3665 | 120,0,112,0,114, | ||
3666 | 0,101,0,115,0, | ||
3667 | 115,0,105,0,111, | ||
3668 | 0,110,0,95,0, | ||
3669 | 49,0,1,201,1, | ||
3670 | 3,1,4,1,3, | ||
3671 | 1024,22,1,67,1, | ||
3672 | 48,1025,17,1026,15, | ||
3673 | 1027,4,58,37,0, | ||
3674 | 73,0,110,0,99, | ||
3675 | 0,114,0,101,0, | ||
3676 | 109,0,101,0,110, | ||
3677 | 0,116,0,68,0, | ||
3678 | 101,0,99,0,114, | ||
3679 | 0,101,0,109,0, | ||
3680 | 101,0,110,0,116, | ||
3681 | 0,69,0,120,0, | ||
3682 | 112,0,114,0,101, | ||
3683 | 0,115,0,115,0, | ||
3684 | 105,0,111,0,110, | ||
3685 | 0,1,-1,1,5, | ||
3686 | 1028,20,1029,4,60, | ||
3687 | 73,0,110,0,99, | ||
3688 | 0,114,0,101,0, | ||
3689 | 109,0,101,0,110, | ||
3690 | 0,116,0,68,0, | ||
3691 | 101,0,99,0,114, | ||
3692 | 0,101,0,109,0, | ||
3693 | 101,0,110,0,116, | ||
3694 | 0,69,0,120,0, | ||
3695 | 112,0,114,0,101, | ||
3696 | 0,115,0,115,0, | ||
3697 | 105,0,111,0,110, | ||
3698 | 0,95,0,52,0, | ||
3699 | 1,205,1,3,1, | ||
3700 | 5,1,4,1030,22, | ||
3701 | 1,71,1,49,1031, | ||
3702 | 17,1032,15,1027,1, | ||
3703 | -1,1,5,1033,20, | ||
3704 | 1034,4,60,73,0, | ||
3705 | 110,0,99,0,114, | ||
3706 | 0,101,0,109,0, | ||
3707 | 101,0,110,0,116, | ||
3708 | 0,68,0,101,0, | ||
3709 | 99,0,114,0,101, | ||
3710 | 0,109,0,101,0, | ||
3711 | 110,0,116,0,69, | ||
3712 | 0,120,0,112,0, | ||
3713 | 114,0,101,0,115, | ||
3714 | 0,115,0,105,0, | ||
3715 | 111,0,110,0,95, | ||
3716 | 0,51,0,1,204, | ||
3717 | 1,3,1,5,1, | ||
3718 | 4,1035,22,1,70, | ||
3719 | 1,50,1036,17,1037, | ||
3720 | 15,1027,1,-1,1, | ||
3721 | 5,1038,20,1039,4, | ||
3722 | 60,73,0,110,0, | ||
3723 | 99,0,114,0,101, | ||
3724 | 0,109,0,101,0, | ||
3725 | 110,0,116,0,68, | ||
3726 | 0,101,0,99,0, | ||
3727 | 114,0,101,0,109, | ||
3728 | 0,101,0,110,0, | ||
3729 | 116,0,69,0,120, | ||
3730 | 0,112,0,114,0, | ||
3731 | 101,0,115,0,115, | ||
3732 | 0,105,0,111,0, | ||
3733 | 110,0,95,0,50, | ||
3734 | 0,1,203,1,3, | ||
3735 | 1,3,1,2,1040, | ||
3736 | 22,1,69,1,51, | ||
3737 | 1041,17,1042,15,1027, | ||
3738 | 1,-1,1,5,1043, | ||
3739 | 20,1044,4,60,73, | ||
3740 | 0,110,0,99,0, | ||
3741 | 114,0,101,0,109, | ||
3742 | 0,101,0,110,0, | ||
3743 | 116,0,68,0,101, | ||
3744 | 0,99,0,114,0, | ||
3745 | 101,0,109,0,101, | ||
3746 | 0,110,0,116,0, | ||
3747 | 69,0,120,0,112, | ||
3748 | 0,114,0,101,0, | ||
3749 | 115,0,115,0,105, | ||
3750 | 0,111,0,110,0, | ||
3751 | 95,0,49,0,1, | ||
3752 | 202,1,3,1,3, | ||
3753 | 1,2,1045,22,1, | ||
3754 | 68,1,305,1046,17, | ||
3755 | 1047,15,977,1,-1, | ||
3756 | 1,5,1048,20,1049, | ||
3757 | 4,36,66,0,105, | ||
3758 | 0,110,0,97,0, | ||
3759 | 114,0,121,0,69, | ||
3760 | 0,120,0,112,0, | ||
3761 | 114,0,101,0,115, | ||
3762 | 0,115,0,105,0, | ||
3763 | 111,0,110,0,95, | ||
3764 | 0,51,0,1,213, | ||
3765 | 1,3,1,4,1, | ||
3766 | 3,1050,22,1,79, | ||
3767 | 1,1565,1051,16,0, | ||
3768 | 559,1,1817,760,1, | ||
3769 | 1818,1052,16,0,332, | ||
3770 | 1,63,1053,17,1054, | ||
3771 | 15,996,1,-1,1, | ||
3772 | 5,1055,20,1056,4, | ||
3773 | 40,84,0,121,0, | ||
3774 | 112,0,101,0,99, | ||
3775 | 0,97,0,115,0, | ||
3776 | 116,0,69,0,120, | ||
3777 | 0,112,0,114,0, | ||
3778 | 101,0,115,0,115, | ||
3779 | 0,105,0,111,0, | ||
3780 | 110,0,95,0,50, | ||
3781 | 0,1,234,1,3, | ||
3782 | 1,5,1,4,1057, | ||
3783 | 22,1,100,1,1002, | ||
3784 | 1058,17,1059,15,996, | ||
3785 | 1,-1,1,5,1060, | ||
3786 | 20,1061,4,40,84, | ||
3787 | 0,121,0,112,0, | ||
3788 | 101,0,99,0,97, | ||
3789 | 0,115,0,116,0, | ||
3790 | 69,0,120,0,112, | ||
3791 | 0,114,0,101,0, | ||
3792 | 115,0,115,0,105, | ||
3793 | 0,111,0,110,0, | ||
3794 | 95,0,49,0,1, | ||
3795 | 233,1,3,1,5, | ||
3796 | 1,4,1062,22,1, | ||
3797 | 99,1,66,1063,17, | ||
3798 | 1064,15,996,1,-1, | ||
3799 | 1,5,1065,20,1066, | ||
3800 | 4,40,84,0,121, | ||
3801 | 0,112,0,101,0, | ||
3802 | 99,0,97,0,115, | ||
3803 | 0,116,0,69,0, | ||
3804 | 120,0,112,0,114, | ||
3805 | 0,101,0,115,0, | ||
3806 | 115,0,105,0,111, | ||
3807 | 0,110,0,95,0, | ||
3808 | 51,0,1,235,1, | ||
3809 | 3,1,7,1,6, | ||
3810 | 1067,22,1,101,1, | ||
3811 | 2011,723,1,68,1068, | ||
3812 | 17,1069,15,996,1, | ||
3813 | -1,1,5,1070,20, | ||
3814 | 1071,4,40,84,0, | ||
3815 | 121,0,112,0,101, | ||
3816 | 0,99,0,97,0, | ||
3817 | 115,0,116,0,69, | ||
3818 | 0,120,0,112,0, | ||
3819 | 114,0,101,0,115, | ||
3820 | 0,115,0,105,0, | ||
3821 | 111,0,110,0,95, | ||
3822 | 0,53,0,1,237, | ||
3823 | 1,3,1,8,1, | ||
3824 | 7,1072,22,1,103, | ||
3825 | 1,69,1073,17,1074, | ||
3826 | 15,996,1,-1,1, | ||
3827 | 5,1075,20,1076,4, | ||
3828 | 40,84,0,121,0, | ||
3829 | 112,0,101,0,99, | ||
3830 | 0,97,0,115,0, | ||
3831 | 116,0,69,0,120, | ||
3832 | 0,112,0,114,0, | ||
3833 | 101,0,115,0,115, | ||
3834 | 0,105,0,111,0, | ||
3835 | 110,0,95,0,54, | ||
3836 | 0,1,238,1,3, | ||
3837 | 1,6,1,5,1077, | ||
3838 | 22,1,104,1,70, | ||
3839 | 1078,17,1079,15,996, | ||
3840 | 1,-1,1,5,1080, | ||
3841 | 20,1081,4,40,84, | ||
3842 | 0,121,0,112,0, | ||
3843 | 101,0,99,0,97, | ||
3844 | 0,115,0,116,0, | ||
3845 | 69,0,120,0,112, | ||
3846 | 0,114,0,101,0, | ||
3847 | 115,0,115,0,105, | ||
3848 | 0,111,0,110,0, | ||
3849 | 95,0,52,0,1, | ||
3850 | 236,1,3,1,6, | ||
3851 | 1,5,1082,22,1, | ||
3852 | 102,1,573,1083,17, | ||
3853 | 1084,15,1085,4,26, | ||
3854 | 37,0,76,0,105, | ||
3855 | 0,115,0,116,0, | ||
3856 | 67,0,111,0,110, | ||
3857 | 0,115,0,116,0, | ||
3858 | 97,0,110,0,116, | ||
3859 | 0,1,-1,1,5, | ||
3860 | 1086,20,1087,4,28, | ||
3861 | 76,0,105,0,115, | ||
3862 | 0,116,0,67,0, | ||
3863 | 111,0,110,0,115, | ||
3864 | 0,116,0,97,0, | ||
3865 | 110,0,116,0,95, | ||
3866 | 0,49,0,1,198, | ||
3867 | 1,3,1,4,1, | ||
3868 | 3,1088,22,1,64, | ||
3869 | 1,1011,1089,17,1090, | ||
3870 | 15,1091,4,44,37, | ||
3871 | 0,80,0,97,0, | ||
3872 | 114,0,101,0,110, | ||
3873 | 0,116,0,104,0, | ||
3874 | 101,0,115,0,105, | ||
3875 | 0,115,0,69,0, | ||
3876 | 120,0,112,0,114, | ||
3877 | 0,101,0,115,0, | ||
3878 | 115,0,105,0,111, | ||
3879 | 0,110,0,1,-1, | ||
3880 | 1,5,1092,20,1093, | ||
3881 | 4,46,80,0,97, | ||
3882 | 0,114,0,101,0, | ||
3883 | 110,0,116,0,104, | ||
3884 | 0,101,0,115,0, | ||
3885 | 105,0,115,0,69, | ||
3886 | 0,120,0,112,0, | ||
3887 | 114,0,101,0,115, | ||
3888 | 0,115,0,105,0, | ||
3889 | 111,0,110,0,95, | ||
3890 | 0,49,0,1,232, | ||
3891 | 1,3,1,4,1, | ||
3892 | 3,1094,22,1,98, | ||
3893 | 1,74,1095,17,1096, | ||
3894 | 15,996,1,-1,1, | ||
3895 | 5,1097,20,1098,4, | ||
3896 | 40,84,0,121,0, | ||
3897 | 112,0,101,0,99, | ||
3898 | 0,97,0,115,0, | ||
3899 | 116,0,69,0,120, | ||
3900 | 0,112,0,114,0, | ||
3901 | 101,0,115,0,115, | ||
3902 | 0,105,0,111,0, | ||
3903 | 110,0,95,0,57, | ||
3904 | 0,1,241,1,3, | ||
3905 | 1,7,1,6,1099, | ||
3906 | 22,1,107,1,67, | ||
3907 | 1100,17,1101,15,996, | ||
3908 | 1,-1,1,5,1102, | ||
3909 | 20,1103,4,40,84, | ||
3910 | 0,121,0,112,0, | ||
3911 | 101,0,99,0,97, | ||
3912 | 0,115,0,116,0, | ||
3913 | 69,0,120,0,112, | ||
3914 | 0,114,0,101,0, | ||
3915 | 115,0,115,0,105, | ||
3916 | 0,111,0,110,0, | ||
3917 | 95,0,55,0,1, | ||
3918 | 239,1,3,1,8, | ||
3919 | 1,7,1104,22,1, | ||
3920 | 105,1,1046,1105,17, | ||
3921 | 1106,15,977,1,-1, | ||
3922 | 1,5,1107,20,1108, | ||
3923 | 4,38,66,0,105, | ||
3924 | 0,110,0,97,0, | ||
3925 | 114,0,121,0,69, | ||
3926 | 0,120,0,112,0, | ||
3927 | 114,0,101,0,115, | ||
3928 | 0,115,0,105,0, | ||
3929 | 111,0,110,0,95, | ||
3930 | 0,49,0,56,0, | ||
3931 | 1,228,1,3,1, | ||
3932 | 4,1,3,1109,22, | ||
3933 | 1,94,1,328,1110, | ||
3934 | 17,1111,15,977,1, | ||
3935 | -1,1,5,1112,20, | ||
3936 | 1113,4,36,66,0, | ||
3937 | 105,0,110,0,97, | ||
3938 | 0,114,0,121,0, | ||
3939 | 69,0,120,0,112, | ||
3940 | 0,114,0,101,0, | ||
3941 | 115,0,115,0,105, | ||
3942 | 0,111,0,110,0, | ||
3943 | 95,0,50,0,1, | ||
3944 | 212,1,3,1,4, | ||
3945 | 1,3,1114,22,1, | ||
3946 | 78,1,1333,1115,17, | ||
3947 | 1116,15,965,1,-1, | ||
3948 | 1,5,1117,20,1118, | ||
3949 | 4,24,65,0,115, | ||
3950 | 0,115,0,105,0, | ||
3951 | 103,0,110,0,109, | ||
3952 | 0,101,0,110,0, | ||
3953 | 116,0,95,0,50, | ||
3954 | 0,1,183,1,3, | ||
3955 | 1,4,1,3,1119, | ||
3956 | 22,1,49,1,82, | ||
3957 | 1120,17,1121,15,1122, | ||
3958 | 4,32,37,0,85, | ||
3959 | 0,110,0,97,0, | ||
3960 | 114,0,121,0,69, | ||
3961 | 0,120,0,112,0, | ||
3962 | 114,0,101,0,115, | ||
3963 | 0,115,0,105,0, | ||
3964 | 111,0,110,0,1, | ||
3965 | -1,1,5,1123,20, | ||
3966 | 1124,4,34,85,0, | ||
3967 | 110,0,97,0,114, | ||
3968 | 0,121,0,69,0, | ||
3969 | 120,0,112,0,114, | ||
3970 | 0,101,0,115,0, | ||
3971 | 115,0,105,0,111, | ||
3972 | 0,110,0,95,0, | ||
3973 | 51,0,1,231,1, | ||
3974 | 3,1,3,1,2, | ||
3975 | 1125,22,1,97,1, | ||
3976 | 1847,794,1,1850,1126, | ||
3977 | 17,1127,15,1128,4, | ||
3978 | 24,37,0,83,0, | ||
3979 | 116,0,97,0,116, | ||
3980 | 0,101,0,67,0, | ||
3981 | 104,0,97,0,110, | ||
3982 | 0,103,0,101,0, | ||
3983 | 1,-1,1,5,1129, | ||
3984 | 20,1130,4,26,83, | ||
3985 | 0,116,0,97,0, | ||
3986 | 116,0,101,0,67, | ||
3987 | 0,104,0,97,0, | ||
3988 | 110,0,103,0,101, | ||
3989 | 0,95,0,50,0, | ||
3990 | 1,172,1,3,1, | ||
3991 | 3,1,2,1131,22, | ||
3992 | 1,38,1,1851,1132, | ||
3993 | 17,1133,15,1128,1, | ||
3994 | -1,1,5,1134,20, | ||
3995 | 1135,4,26,83,0, | ||
3996 | 116,0,97,0,116, | ||
3997 | 0,101,0,67,0, | ||
3998 | 104,0,97,0,110, | ||
3999 | 0,103,0,101,0, | ||
4000 | 95,0,49,0,1, | ||
4001 | 171,1,3,1,3, | ||
4002 | 1,2,1136,22,1, | ||
4003 | 37,1,1852,806,1, | ||
4004 | 1853,649,1,1854,655, | ||
4005 | 1,1855,660,1,1856, | ||
4006 | 748,1,1857,1137,16, | ||
4007 | 0,325,1,1858,667, | ||
4008 | 1,1859,1138,16,0, | ||
4009 | 327,1,1860,672,1, | ||
4010 | 1861,1139,16,0,331, | ||
4011 | 1,1862,677,1,1863, | ||
4012 | 682,1,107,1140,17, | ||
4013 | 1141,15,1122,1,-1, | ||
4014 | 1,5,1142,20,1143, | ||
4015 | 4,34,85,0,110, | ||
4016 | 0,97,0,114,0, | ||
4017 | 121,0,69,0,120, | ||
4018 | 0,112,0,114,0, | ||
4019 | 101,0,115,0,115, | ||
4020 | 0,105,0,111,0, | ||
4021 | 110,0,95,0,49, | ||
4022 | 0,1,229,1,3, | ||
4023 | 1,3,1,2,1144, | ||
4024 | 22,1,95,1,1112, | ||
4025 | 1145,17,1020,1,3, | ||
4026 | 1024,1,93,1146,17, | ||
4027 | 1147,15,1122,1,-1, | ||
4028 | 1,5,1148,20,1149, | ||
4029 | 4,34,85,0,110, | ||
4030 | 0,97,0,114,0, | ||
4031 | 121,0,69,0,120, | ||
4032 | 0,112,0,114,0, | ||
4033 | 101,0,115,0,115, | ||
4034 | 0,105,0,111,0, | ||
4035 | 110,0,95,0,50, | ||
4036 | 0,1,230,1,3, | ||
4037 | 1,3,1,2,1150, | ||
4038 | 22,1,96,1,1366, | ||
4039 | 1151,16,0,369,1, | ||
4040 | 352,1152,17,1153,15, | ||
4041 | 977,1,-1,1,5, | ||
4042 | 1154,20,1155,4,36, | ||
4043 | 66,0,105,0,110, | ||
4044 | 0,97,0,114,0, | ||
4045 | 121,0,69,0,120, | ||
4046 | 0,112,0,114,0, | ||
4047 | 101,0,115,0,115, | ||
4048 | 0,105,0,111,0, | ||
4049 | 110,0,95,0,49, | ||
4050 | 0,1,211,1,3, | ||
4051 | 1,4,1,3,1156, | ||
4052 | 22,1,77,1,1121, | ||
4053 | 1157,17,1158,15,965, | ||
4054 | 1,-1,1,5,1159, | ||
4055 | 20,1160,4,24,65, | ||
4056 | 0,115,0,115,0, | ||
4057 | 105,0,103,0,110, | ||
4058 | 0,109,0,101,0, | ||
4059 | 110,0,116,0,95, | ||
4060 | 0,56,0,1,189, | ||
4061 | 1,3,1,6,1, | ||
4062 | 5,1161,22,1,55, | ||
4063 | 1,118,1162,17,1163, | ||
4064 | 15,977,1,-1,1, | ||
4065 | 5,1164,20,1165,4, | ||
4066 | 38,66,0,105,0, | ||
4067 | 110,0,97,0,114, | ||
4068 | 0,121,0,69,0, | ||
4069 | 120,0,112,0,114, | ||
4070 | 0,101,0,115,0, | ||
4071 | 115,0,105,0,111, | ||
4072 | 0,110,0,95,0, | ||
4073 | 49,0,52,0,1, | ||
4074 | 224,1,3,1,4, | ||
4075 | 1,3,1166,22,1, | ||
4076 | 90,1,371,1167,17, | ||
4077 | 1168,15,1169,4,46, | ||
4078 | 37,0,70,0,117, | ||
4079 | 0,110,0,99,0, | ||
4080 | 116,0,105,0,111, | ||
4081 | 0,110,0,67,0, | ||
4082 | 97,0,108,0,108, | ||
4083 | 0,69,0,120,0, | ||
4084 | 112,0,114,0,101, | ||
4085 | 0,115,0,115,0, | ||
4086 | 105,0,111,0,110, | ||
4087 | 0,1,-1,1,5, | ||
4088 | 1170,20,1171,4,48, | ||
4089 | 70,0,117,0,110, | ||
4090 | 0,99,0,116,0, | ||
4091 | 105,0,111,0,110, | ||
4092 | 0,67,0,97,0, | ||
4093 | 108,0,108,0,69, | ||
4094 | 0,120,0,112,0, | ||
4095 | 114,0,101,0,115, | ||
4096 | 0,115,0,105,0, | ||
4097 | 111,0,110,0,95, | ||
4098 | 0,49,0,1,210, | ||
4099 | 1,3,1,2,1, | ||
4100 | 1,1172,22,1,76, | ||
4101 | 1,373,1173,17,1174, | ||
4102 | 15,1027,1,-1,1, | ||
4103 | 5,1175,20,1176,4, | ||
4104 | 60,73,0,110,0, | ||
4105 | 99,0,114,0,101, | ||
4106 | 0,109,0,101,0, | ||
4107 | 110,0,116,0,68, | ||
4108 | 0,101,0,99,0, | ||
4109 | 114,0,101,0,109, | ||
4110 | 0,101,0,110,0, | ||
4111 | 116,0,69,0,120, | ||
4112 | 0,112,0,114,0, | ||
4113 | 101,0,115,0,115, | ||
4114 | 0,105,0,111,0, | ||
4115 | 110,0,95,0,54, | ||
4116 | 0,1,207,1,3, | ||
4117 | 1,3,1,2,1177, | ||
4118 | 22,1,73,1,375, | ||
4119 | 1178,17,1179,15,1027, | ||
4120 | 1,-1,1,5,1180, | ||
4121 | 20,1181,4,60,73, | ||
4122 | 0,110,0,99,0, | ||
4123 | 114,0,101,0,109, | ||
4124 | 0,101,0,110,0, | ||
4125 | 116,0,68,0,101, | ||
4126 | 0,99,0,114,0, | ||
4127 | 101,0,109,0,101, | ||
4128 | 0,110,0,116,0, | ||
4129 | 69,0,120,0,112, | ||
4130 | 0,114,0,101,0, | ||
4131 | 115,0,115,0,105, | ||
4132 | 0,111,0,110,0, | ||
4133 | 95,0,56,0,1, | ||
4134 | 209,1,3,1,5, | ||
4135 | 1,4,1182,22,1, | ||
4136 | 75,1,377,1183,17, | ||
4137 | 1184,15,1027,1,-1, | ||
4138 | 1,5,1185,20,1186, | ||
4139 | 4,60,73,0,110, | ||
4140 | 0,99,0,114,0, | ||
4141 | 101,0,109,0,101, | ||
4142 | 0,110,0,116,0, | ||
4143 | 68,0,101,0,99, | ||
4144 | 0,114,0,101,0, | ||
4145 | 109,0,101,0,110, | ||
4146 | 0,116,0,69,0, | ||
4147 | 120,0,112,0,114, | ||
4148 | 0,101,0,115,0, | ||
4149 | 115,0,105,0,111, | ||
4150 | 0,110,0,95,0, | ||
4151 | 53,0,1,206,1, | ||
4152 | 3,1,3,1,2, | ||
4153 | 1187,22,1,72,1, | ||
4154 | 827,1188,17,1189,15, | ||
4155 | 977,1,-1,1,5, | ||
4156 | 1190,20,1191,4,38, | ||
4157 | 66,0,105,0,110, | ||
4158 | 0,97,0,114,0, | ||
4159 | 121,0,69,0,120, | ||
4160 | 0,112,0,114,0, | ||
4161 | 101,0,115,0,115, | ||
4162 | 0,105,0,111,0, | ||
4163 | 110,0,95,0,49, | ||
4164 | 0,53,0,1,225, | ||
4165 | 1,3,1,4,1, | ||
4166 | 3,1192,22,1,91, | ||
4167 | 1,380,1193,17,1194, | ||
4168 | 15,1195,4,38,37, | ||
4169 | 0,67,0,111,0, | ||
4170 | 110,0,115,0,116, | ||
4171 | 0,97,0,110,0, | ||
4172 | 116,0,69,0,120, | ||
4173 | 0,112,0,114,0, | ||
4174 | 101,0,115,0,115, | ||
4175 | 0,105,0,111,0, | ||
4176 | 110,0,1,-1,1, | ||
4177 | 5,1196,20,1197,4, | ||
4178 | 40,67,0,111,0, | ||
4179 | 110,0,115,0,116, | ||
4180 | 0,97,0,110,0, | ||
4181 | 116,0,69,0,120, | ||
4182 | 0,112,0,114,0, | ||
4183 | 101,0,115,0,115, | ||
4184 | 0,105,0,111,0, | ||
4185 | 110,0,95,0,49, | ||
4186 | 0,1,199,1,3, | ||
4187 | 1,2,1,1,1198, | ||
4188 | 22,1,65,1,883, | ||
4189 | 1199,17,1200,15,977, | ||
4190 | 1,-1,1,5,1201, | ||
4191 | 20,1202,4,38,66, | ||
4192 | 0,105,0,110,0, | ||
4193 | 97,0,114,0,121, | ||
4194 | 0,69,0,120,0, | ||
4195 | 112,0,114,0,101, | ||
4196 | 0,115,0,115,0, | ||
4197 | 105,0,111,0,110, | ||
4198 | 0,95,0,49,0, | ||
4199 | 54,0,1,226,1, | ||
4200 | 3,1,4,1,3, | ||
4201 | 1203,22,1,92,1, | ||
4202 | 1637,710,1,1639,1204, | ||
4203 | 16,0,332,1,130, | ||
4204 | 1205,17,1206,15,977, | ||
4205 | 1,-1,1,5,1207, | ||
4206 | 20,1208,4,38,66, | ||
4207 | 0,105,0,110,0, | ||
4208 | 97,0,114,0,121, | ||
4209 | 0,69,0,120,0, | ||
4210 | 112,0,114,0,101, | ||
4211 | 0,115,0,115,0, | ||
4212 | 105,0,111,0,110, | ||
4213 | 0,95,0,49,0, | ||
4214 | 51,0,1,223,1, | ||
4215 | 3,1,4,1,3, | ||
4216 | 1209,22,1,89,1, | ||
4217 | 1396,1210,17,1211,15, | ||
4218 | 1212,4,32,37,0, | ||
4219 | 82,0,101,0,116, | ||
4220 | 0,117,0,114,0, | ||
4221 | 110,0,83,0,116, | ||
4222 | 0,97,0,116,0, | ||
4223 | 101,0,109,0,101, | ||
4224 | 0,110,0,116,0, | ||
4225 | 1,-1,1,5,1213, | ||
4226 | 20,1214,4,34,82, | ||
4227 | 0,101,0,116,0, | ||
4228 | 117,0,114,0,110, | ||
4229 | 0,83,0,116,0, | ||
4230 | 97,0,116,0,101, | ||
4231 | 0,109,0,101,0, | ||
4232 | 110,0,116,0,95, | ||
4233 | 0,50,0,1,191, | ||
4234 | 1,3,1,2,1, | ||
4235 | 1,1215,22,1,57, | ||
4236 | 1,143,1216,17,1217, | ||
4237 | 15,977,1,-1,1, | ||
4238 | 5,1218,20,1219,4, | ||
4239 | 38,66,0,105,0, | ||
4240 | 110,0,97,0,114, | ||
4241 | 0,121,0,69,0, | ||
4242 | 120,0,112,0,114, | ||
4243 | 0,101,0,115,0, | ||
4244 | 115,0,105,0,111, | ||
4245 | 0,110,0,95,0, | ||
4246 | 49,0,50,0,1, | ||
4247 | 222,1,3,1,4, | ||
4248 | 1,3,1220,22,1, | ||
4249 | 88,1,1402,1221,17, | ||
4250 | 1222,15,1212,1,-1, | ||
4251 | 1,5,1223,20,1224, | ||
4252 | 4,34,82,0,101, | ||
4253 | 0,116,0,117,0, | ||
4254 | 114,0,110,0,83, | ||
4255 | 0,116,0,97,0, | ||
4256 | 116,0,101,0,109, | ||
4257 | 0,101,0,110,0, | ||
4258 | 116,0,95,0,49, | ||
4259 | 0,1,190,1,3, | ||
4260 | 1,3,1,2,1225, | ||
4261 | 22,1,56,1,1557, | ||
4262 | 1226,17,1227,15,984, | ||
4263 | 1,-1,1,5,1228, | ||
4264 | 20,1229,4,36,70, | ||
4265 | 0,111,0,114,0, | ||
4266 | 76,0,111,0,111, | ||
4267 | 0,112,0,83,0, | ||
4268 | 116,0,97,0,116, | ||
4269 | 0,101,0,109,0, | ||
4270 | 101,0,110,0,116, | ||
4271 | 0,95,0,52,0, | ||
4272 | 1,181,1,3,1, | ||
4273 | 4,1,3,1230,22, | ||
4274 | 1,47,1,1158,1231, | ||
4275 | 17,1232,15,965,1, | ||
4276 | -1,1,5,1233,20, | ||
4277 | 1234,4,24,65,0, | ||
4278 | 115,0,115,0,105, | ||
4279 | 0,103,0,110,0, | ||
4280 | 109,0,101,0,110, | ||
4281 | 0,116,0,95,0, | ||
4282 | 55,0,1,188,1, | ||
4283 | 3,1,4,1,3, | ||
4284 | 1235,22,1,54,1, | ||
4285 | 157,1236,17,1237,15, | ||
4286 | 977,1,-1,1,5, | ||
4287 | 1238,20,1239,4,38, | ||
4288 | 66,0,105,0,110, | ||
4289 | 0,97,0,114,0, | ||
4290 | 121,0,69,0,120, | ||
4291 | 0,112,0,114,0, | ||
4292 | 101,0,115,0,115, | ||
4293 | 0,105,0,111,0, | ||
4294 | 110,0,95,0,49, | ||
4295 | 0,49,0,1,221, | ||
4296 | 1,3,1,4,1, | ||
4297 | 3,1240,22,1,87, | ||
4298 | 1,1094,1241,17,1242, | ||
4299 | 15,1243,4,26,37, | ||
4300 | 0,70,0,117,0, | ||
4301 | 110,0,99,0,116, | ||
4302 | 0,105,0,111,0, | ||
4303 | 110,0,67,0,97, | ||
4304 | 0,108,0,108,0, | ||
4305 | 1,-1,1,5,1244, | ||
4306 | 20,1245,4,28,70, | ||
4307 | 0,117,0,110,0, | ||
4308 | 99,0,116,0,105, | ||
4309 | 0,111,0,110,0, | ||
4310 | 67,0,97,0,108, | ||
4311 | 0,108,0,95,0, | ||
4312 | 49,0,1,242,1, | ||
4313 | 3,1,5,1,4, | ||
4314 | 1246,22,1,108,1, | ||
4315 | 379,1247,17,1248,15, | ||
4316 | 1027,1,-1,1,5, | ||
4317 | 1249,20,1250,4,60, | ||
4318 | 73,0,110,0,99, | ||
4319 | 0,114,0,101,0, | ||
4320 | 109,0,101,0,110, | ||
4321 | 0,116,0,68,0, | ||
4322 | 101,0,99,0,114, | ||
4323 | 0,101,0,109,0, | ||
4324 | 101,0,110,0,116, | ||
4325 | 0,69,0,120,0, | ||
4326 | 112,0,114,0,101, | ||
4327 | 0,115,0,115,0, | ||
4328 | 105,0,111,0,110, | ||
4329 | 0,95,0,55,0, | ||
4330 | 1,208,1,3,1, | ||
4331 | 5,1,4,1251,22, | ||
4332 | 1,74,1,172,1252, | ||
4333 | 17,1253,15,977,1, | ||
4334 | -1,1,5,1254,20, | ||
4335 | 1255,4,38,66,0, | ||
4336 | 105,0,110,0,97, | ||
4337 | 0,114,0,121,0, | ||
4338 | 69,0,120,0,112, | ||
4339 | 0,114,0,101,0, | ||
4340 | 115,0,115,0,105, | ||
4341 | 0,111,0,110,0, | ||
4342 | 95,0,49,0,48, | ||
4343 | 0,1,220,1,3, | ||
4344 | 1,4,1,3,1256, | ||
4345 | 22,1,86,1,1385, | ||
4346 | 769,1,1431,1257,16, | ||
4347 | 0,420,1,1938,1258, | ||
4348 | 17,1259,15,984,1, | ||
4349 | -1,1,5,1260,20, | ||
4350 | 1261,4,36,70,0, | ||
4351 | 111,0,114,0,76, | ||
4352 | 0,111,0,111,0, | ||
4353 | 112,0,83,0,116, | ||
4354 | 0,97,0,116,0, | ||
4355 | 101,0,109,0,101, | ||
4356 | 0,110,0,116,0, | ||
4357 | 95,0,50,0,1, | ||
4358 | 179,1,3,1,2, | ||
4359 | 1,1,1262,22,1, | ||
4360 | 45,1,1438,1263,17, | ||
4361 | 1264,15,965,1,-1, | ||
4362 | 1,5,1265,20,1266, | ||
4363 | 4,24,65,0,115, | ||
4364 | 0,115,0,105,0, | ||
4365 | 103,0,110,0,109, | ||
4366 | 0,101,0,110,0, | ||
4367 | 116,0,95,0,49, | ||
4368 | 0,1,182,1,3, | ||
4369 | 1,4,1,3,1267, | ||
4370 | 22,1,48,1,1693, | ||
4371 | 1268,16,0,154,1, | ||
4372 | 1694,740,1,1193,1269, | ||
4373 | 17,1270,15,965,1, | ||
4374 | -1,1,5,1271,20, | ||
4375 | 1272,4,24,65,0, | ||
4376 | 115,0,115,0,105, | ||
4377 | 0,103,0,110,0, | ||
4378 | 109,0,101,0,110, | ||
4379 | 0,116,0,95,0, | ||
4380 | 54,0,1,187,1, | ||
4381 | 3,1,4,1,3, | ||
4382 | 1273,22,1,53,1, | ||
4383 | 2200,1274,16,0,226, | ||
4384 | 1,188,1275,17,1276, | ||
4385 | 15,977,1,-1,1, | ||
4386 | 5,1277,20,1278,4, | ||
4387 | 36,66,0,105,0, | ||
4388 | 110,0,97,0,114, | ||
4389 | 0,121,0,69,0, | ||
4390 | 120,0,112,0,114, | ||
4391 | 0,101,0,115,0, | ||
4392 | 115,0,105,0,111, | ||
4393 | 0,110,0,95,0, | ||
4394 | 57,0,1,219,1, | ||
4395 | 3,1,4,1,3, | ||
4396 | 1279,22,1,85,1, | ||
4397 | 2207,1280,16,0,274, | ||
4398 | 1,205,1281,17,1282, | ||
4399 | 15,977,1,-1,1, | ||
4400 | 5,1283,20,1284,4, | ||
4401 | 36,66,0,105,0, | ||
4402 | 110,0,97,0,114, | ||
4403 | 0,121,0,69,0, | ||
4404 | 120,0,112,0,114, | ||
4405 | 0,101,0,115,0, | ||
4406 | 115,0,105,0,111, | ||
4407 | 0,110,0,95,0, | ||
4408 | 56,0,1,218,1, | ||
4409 | 3,1,4,1,3, | ||
4410 | 1285,22,1,84,1, | ||
4411 | 1965,1286,16,0,332, | ||
4412 | 1,1611,1287,16,0, | ||
4413 | 332,1,1467,729,1, | ||
4414 | 942,1288,17,1289,15, | ||
4415 | 977,1,-1,1,5, | ||
4416 | 1290,20,1291,4,38, | ||
4417 | 66,0,105,0,110, | ||
4418 | 0,97,0,114,0, | ||
4419 | 121,0,69,0,120, | ||
4420 | 0,112,0,114,0, | ||
4421 | 101,0,115,0,115, | ||
4422 | 0,105,0,111,0, | ||
4423 | 110,0,95,0,49, | ||
4424 | 0,55,0,1,227, | ||
4425 | 1,3,1,4,1, | ||
4426 | 3,1292,22,1,93, | ||
4427 | 1,223,1293,17,1294, | ||
4428 | 15,977,1,-1,1, | ||
4429 | 5,1295,20,1296,4, | ||
4430 | 36,66,0,105,0, | ||
4431 | 110,0,97,0,114, | ||
4432 | 0,121,0,69,0, | ||
4433 | 120,0,112,0,114, | ||
4434 | 0,101,0,115,0, | ||
4435 | 115,0,105,0,111, | ||
4436 | 0,110,0,95,0, | ||
4437 | 55,0,1,217,1, | ||
4438 | 3,1,4,1,3, | ||
4439 | 1297,22,1,83,1, | ||
4440 | 1228,1298,17,1299,15, | ||
4441 | 965,1,-1,1,5, | ||
4442 | 1300,20,1301,4,24, | ||
4443 | 65,0,115,0,115, | ||
4444 | 0,105,0,103,0, | ||
4445 | 110,0,109,0,101, | ||
4446 | 0,110,0,116,0, | ||
4447 | 95,0,53,0,1, | ||
4448 | 186,1,3,1,4, | ||
4449 | 1,3,1302,22,1, | ||
4450 | 52,1,476,1303,17, | ||
4451 | 1304,15,990,1,-1, | ||
4452 | 1,5,1305,20,1306, | ||
4453 | 4,20,67,0,111, | ||
4454 | 0,110,0,115,0, | ||
4455 | 116,0,97,0,110, | ||
4456 | 0,116,0,95,0, | ||
4457 | 52,0,1,195,1, | ||
4458 | 3,1,2,1,1, | ||
4459 | 1307,22,1,61,1, | ||
4460 | 1732,1308,16,0,332, | ||
4461 | 1,1482,1309,17,1310, | ||
4462 | 15,984,1,-1,1, | ||
4463 | 5,1311,20,1312,4, | ||
4464 | 36,70,0,111,0, | ||
4465 | 114,0,76,0,111, | ||
4466 | 0,111,0,112,0, | ||
4467 | 83,0,116,0,97, | ||
4468 | 0,116,0,101,0, | ||
4469 | 109,0,101,0,110, | ||
4470 | 0,116,0,95,0, | ||
4471 | 49,0,1,178,1, | ||
4472 | 3,1,2,1,1, | ||
4473 | 1313,22,1,44,1, | ||
4474 | 463,1314,17,1315,15, | ||
4475 | 1316,4,30,37,0, | ||
4476 | 86,0,101,0,99, | ||
4477 | 0,116,0,111,0, | ||
4478 | 114,0,67,0,111, | ||
4479 | 0,110,0,115,0, | ||
4480 | 116,0,97,0,110, | ||
4481 | 0,116,0,1,-1, | ||
4482 | 1,5,1317,20,1318, | ||
4483 | 4,32,86,0,101, | ||
4484 | 0,99,0,116,0, | ||
4485 | 111,0,114,0,67, | ||
4486 | 0,111,0,110,0, | ||
4487 | 115,0,116,0,97, | ||
4488 | 0,110,0,116,0, | ||
4489 | 95,0,49,0,1, | ||
4490 | 196,1,3,1,8, | ||
4491 | 1,7,1319,22,1, | ||
4492 | 62,1,242,1320,17, | ||
4493 | 1321,15,977,1,-1, | ||
4494 | 1,5,1322,20,1323, | ||
4495 | 4,36,66,0,105, | ||
4496 | 0,110,0,97,0, | ||
4497 | 114,0,121,0,69, | ||
4498 | 0,120,0,112,0, | ||
4499 | 114,0,101,0,115, | ||
4500 | 0,115,0,105,0, | ||
4501 | 111,0,110,0,95, | ||
4502 | 0,54,0,1,216, | ||
4503 | 1,3,1,4,1, | ||
4504 | 3,1324,22,1,82, | ||
4505 | 1,478,1325,17,1326, | ||
4506 | 15,990,1,-1,1, | ||
4507 | 5,1327,20,1328,4, | ||
4508 | 20,67,0,111,0, | ||
4509 | 110,0,115,0,116, | ||
4510 | 0,97,0,110,0, | ||
4511 | 116,0,95,0,50, | ||
4512 | 0,1,193,1,3, | ||
4513 | 1,2,1,1,1329, | ||
4514 | 22,1,59,1,479, | ||
4515 | 1330,17,1331,15,990, | ||
4516 | 1,-1,1,5,1332, | ||
4517 | 20,1333,4,20,67, | ||
4518 | 0,111,0,110,0, | ||
4519 | 115,0,116,0,97, | ||
4520 | 0,110,0,116,0, | ||
4521 | 95,0,49,0,1, | ||
4522 | 192,1,3,1,2, | ||
4523 | 1,1,1334,22,1, | ||
4524 | 58,1,2005,801,1, | ||
4525 | 2006,777,1,12,1335, | ||
4526 | 19,173,1,12,1336, | ||
4527 | 5,32,1,1853,649, | ||
4528 | 1,1854,655,1,1855, | ||
4529 | 660,1,1856,748,1, | ||
4530 | 1639,1337,16,0,171, | ||
4531 | 1,1858,667,1,1860, | ||
4532 | 672,1,1862,677,1, | ||
4533 | 1863,682,1,2196,1338, | ||
4534 | 16,0,171,1,1760, | ||
4535 | 688,1,31,1339,16, | ||
4536 | 0,171,1,32,1340, | ||
4537 | 16,0,171,1,2105, | ||
4538 | 1341,16,0,528,1, | ||
4539 | 2005,801,1,1788,1342, | ||
4540 | 16,0,171,1,2009, | ||
4541 | 716,1,2011,723,1, | ||
4542 | 1467,729,1,2016,1343, | ||
4543 | 16,0,605,1,1637, | ||
4544 | 710,1,1694,740,1, | ||
4545 | 2006,777,1,1965,1344, | ||
4546 | 16,0,171,1,1817, | ||
4547 | 760,1,1818,1345,16, | ||
4548 | 0,171,1,1385,769, | ||
4549 | 1,1611,1346,16,0, | ||
4550 | 171,1,1732,1347,16, | ||
4551 | 0,171,1,2063,1348, | ||
4552 | 16,0,171,1,1847, | ||
4553 | 794,1,1852,806,1, | ||
4554 | 13,1349,19,394,1, | ||
4555 | 13,1350,5,27,1, | ||
4556 | 1852,806,1,1853,649, | ||
4557 | 1,1817,760,1,1855, | ||
4558 | 660,1,1856,748,1, | ||
4559 | 2005,801,1,1858,667, | ||
4560 | 1,1637,710,1,1860, | ||
4561 | 672,1,2009,716,1, | ||
4562 | 1862,677,1,1863,682, | ||
4563 | 1,1385,769,1,2102, | ||
4564 | 1351,17,1352,15,1353, | ||
4565 | 4,20,37,0,83, | ||
4566 | 0,116,0,97,0, | ||
4567 | 116,0,101,0,66, | ||
4568 | 0,111,0,100,0, | ||
4569 | 121,0,1,-1,1, | ||
4570 | 5,1354,20,1355,4, | ||
4571 | 22,83,0,116,0, | ||
4572 | 97,0,116,0,101, | ||
4573 | 0,66,0,111,0, | ||
4574 | 100,0,121,0,95, | ||
4575 | 0,50,0,1,152, | ||
4576 | 1,3,1,3,1, | ||
4577 | 2,1356,22,1,16, | ||
4578 | 1,1760,688,1,2141, | ||
4579 | 1357,16,0,579,1, | ||
4580 | 2011,723,1,1467,729, | ||
4581 | 1,2067,1358,16,0, | ||
4582 | 523,1,2104,1359,17, | ||
4583 | 1360,15,1353,1,-1, | ||
4584 | 1,5,1361,20,1362, | ||
4585 | 4,22,83,0,116, | ||
4586 | 0,97,0,116,0, | ||
4587 | 101,0,66,0,111, | ||
4588 | 0,100,0,121,0, | ||
4589 | 95,0,49,0,1, | ||
4590 | 151,1,3,1,2, | ||
4591 | 1,1,1363,22,1, | ||
4592 | 15,1,1854,655,1, | ||
4593 | 1694,740,1,2065,1364, | ||
4594 | 17,1365,15,1366,4, | ||
4595 | 22,37,0,83,0, | ||
4596 | 116,0,97,0,116, | ||
4597 | 0,101,0,69,0, | ||
4598 | 118,0,101,0,110, | ||
4599 | 0,116,0,1,-1, | ||
4600 | 1,5,1367,20,1368, | ||
4601 | 4,24,83,0,116, | ||
4602 | 0,97,0,116,0, | ||
4603 | 101,0,69,0,118, | ||
4604 | 0,101,0,110,0, | ||
4605 | 116,0,95,0,49, | ||
4606 | 0,1,153,1,3, | ||
4607 | 1,6,1,5,1369, | ||
4608 | 22,1,17,1,1965, | ||
4609 | 1370,16,0,392,1, | ||
4610 | 32,1371,16,0,396, | ||
4611 | 1,1847,794,1,2006, | ||
4612 | 777,1,14,1372,19, | ||
4613 | 150,1,14,1373,5, | ||
4614 | 87,1,504,956,1, | ||
4615 | 2014,1374,17,1375,15, | ||
4616 | 1376,4,48,37,0, | ||
4617 | 65,0,114,0,103, | ||
4618 | 0,117,0,109,0, | ||
4619 | 101,0,110,0,116, | ||
4620 | 0,68,0,101,0, | ||
4621 | 99,0,108,0,97, | ||
4622 | 0,114,0,97,0, | ||
4623 | 116,0,105,0,111, | ||
4624 | 0,110,0,76,0, | ||
4625 | 105,0,115,0,116, | ||
4626 | 0,1,-1,1,5, | ||
4627 | 1377,20,1378,4,50, | ||
4628 | 65,0,114,0,103, | ||
4629 | 0,117,0,109,0, | ||
4630 | 101,0,110,0,116, | ||
4631 | 0,68,0,101,0, | ||
4632 | 99,0,108,0,97, | ||
4633 | 0,114,0,97,0, | ||
4634 | 116,0,105,0,111, | ||
4635 | 0,110,0,76,0, | ||
4636 | 105,0,115,0,116, | ||
4637 | 0,95,0,49,0, | ||
4638 | 1,154,1,3,1, | ||
4639 | 2,1,1,1379,22, | ||
4640 | 1,19,1,1513,1380, | ||
4641 | 16,0,502,1,1263, | ||
4642 | 963,1,9,969,1, | ||
4643 | 10,1381,17,1382,15, | ||
4644 | 1376,1,-1,1,5, | ||
4645 | 146,1,0,1,0, | ||
4646 | 1383,22,1,18,1, | ||
4647 | 262,975,1,1193,1269, | ||
4648 | 1,19,981,1,20, | ||
4649 | 1384,16,0,148,1, | ||
4650 | 1527,982,1,1482,1309, | ||
4651 | 1,30,1385,17,1386, | ||
4652 | 15,1376,1,-1,1, | ||
4653 | 5,1387,20,1388,4, | ||
4654 | 50,65,0,114,0, | ||
4655 | 103,0,117,0,109, | ||
4656 | 0,101,0,110,0, | ||
4657 | 116,0,68,0,101, | ||
4658 | 0,99,0,108,0, | ||
4659 | 97,0,114,0,97, | ||
4660 | 0,116,0,105,0, | ||
4661 | 111,0,110,0,76, | ||
4662 | 0,105,0,115,0, | ||
4663 | 116,0,95,0,50, | ||
4664 | 0,1,155,1,3, | ||
4665 | 1,4,1,3,1389, | ||
4666 | 22,1,20,1,283, | ||
4667 | 1008,1,40,1002,1, | ||
4668 | 41,1390,17,1391,15, | ||
4669 | 1392,4,26,37,0, | ||
4670 | 65,0,114,0,103, | ||
4671 | 0,117,0,109,0, | ||
4672 | 101,0,110,0,116, | ||
4673 | 0,76,0,105,0, | ||
4674 | 115,0,116,0,1, | ||
4675 | -1,1,5,486,1, | ||
4676 | 0,1,0,1393,22, | ||
4677 | 1,109,1,42,1394, | ||
4678 | 17,1395,15,1396,4, | ||
4679 | 38,37,0,69,0, | ||
4680 | 120,0,112,0,114, | ||
4681 | 0,101,0,115,0, | ||
4682 | 115,0,105,0,111, | ||
4683 | 0,110,0,65,0, | ||
4684 | 114,0,103,0,117, | ||
4685 | 0,109,0,101,0, | ||
4686 | 110,0,116,0,1, | ||
4687 | -1,1,5,1397,20, | ||
4688 | 1398,4,40,69,0, | ||
4689 | 120,0,112,0,114, | ||
4690 | 0,101,0,115,0, | ||
4691 | 115,0,105,0,111, | ||
4692 | 0,110,0,65,0, | ||
4693 | 114,0,103,0,117, | ||
4694 | 0,109,0,101,0, | ||
4695 | 110,0,116,0,95, | ||
4696 | 0,49,0,1,245, | ||
4697 | 1,3,1,2,1, | ||
4698 | 1,1399,22,1,112, | ||
4699 | 1,1298,1013,1,44, | ||
4700 | 1018,1,47,1019,1, | ||
4701 | 48,1025,1,49,1031, | ||
4702 | 1,50,1036,1,51, | ||
4703 | 1041,1,2061,1400,16, | ||
4704 | 0,148,1,305,1046, | ||
4705 | 1,63,1053,1,66, | ||
4706 | 1063,1,67,1100,1, | ||
4707 | 68,1068,1,69,1073, | ||
4708 | 1,70,1078,1,573, | ||
4709 | 1083,1,574,1401,17, | ||
4710 | 1402,15,1392,1,-1, | ||
4711 | 1,5,1403,20,1404, | ||
4712 | 4,28,65,0,114, | ||
4713 | 0,103,0,117,0, | ||
4714 | 109,0,101,0,110, | ||
4715 | 0,116,0,76,0, | ||
4716 | 105,0,115,0,116, | ||
4717 | 0,95,0,49,0, | ||
4718 | 1,243,1,3,1, | ||
4719 | 2,1,1,1405,22, | ||
4720 | 1,110,1,1011,1089, | ||
4721 | 1,74,1095,1,1046, | ||
4722 | 1105,1,328,1110,1, | ||
4723 | 1333,1115,1,82,1120, | ||
4724 | 1,1092,1406,16,0, | ||
4725 | 488,1,1094,1241,1, | ||
4726 | 93,1146,1,352,1152, | ||
4727 | 1,1609,1407,16,0, | ||
4728 | 502,1,107,1140,1, | ||
4729 | 1112,1145,1,2052,1408, | ||
4730 | 17,1409,15,1376,1, | ||
4731 | -1,1,5,146,1, | ||
4732 | 0,1,0,1383,1, | ||
4733 | 1121,1157,1,118,1162, | ||
4734 | 1,371,1167,1,373, | ||
4735 | 1173,1,375,1178,1, | ||
4736 | 377,1183,1,379,1247, | ||
4737 | 1,380,1193,1,883, | ||
4738 | 1199,1,383,1410,16, | ||
4739 | 0,488,1,386,1411, | ||
4740 | 17,1412,15,1392,1, | ||
4741 | -1,1,5,1413,20, | ||
4742 | 1414,4,28,65,0, | ||
4743 | 114,0,103,0,117, | ||
4744 | 0,109,0,101,0, | ||
4745 | 110,0,116,0,76, | ||
4746 | 0,105,0,115,0, | ||
4747 | 116,0,95,0,50, | ||
4748 | 0,1,244,1,3, | ||
4749 | 1,4,1,3,1415, | ||
4750 | 22,1,111,1,130, | ||
4751 | 1205,1,143,1216,1, | ||
4752 | 1557,1226,1,403,1416, | ||
4753 | 16,0,518,1,1158, | ||
4754 | 1231,1,827,1188,1, | ||
4755 | 381,1417,17,1418,15, | ||
4756 | 1392,1,-1,1,5, | ||
4757 | 486,1,0,1,0, | ||
4758 | 1393,1,157,1236,1, | ||
4759 | 172,1252,1,428,1419, | ||
4760 | 16,0,553,1,1938, | ||
4761 | 1258,1,1438,1263,1, | ||
4762 | 2194,1420,16,0,148, | ||
4763 | 1,188,1275,1,942, | ||
4764 | 1288,1,453,1421,16, | ||
4765 | 0,572,1,205,1281, | ||
4766 | 1,463,1314,1,223, | ||
4767 | 1293,1,1228,1298,1, | ||
4768 | 476,1303,1,477,988, | ||
4769 | 1,478,1325,1,479, | ||
4770 | 1330,1,242,1320,1, | ||
4771 | 2185,1422,17,1423,15, | ||
4772 | 1376,1,-1,1,5, | ||
4773 | 146,1,0,1,0, | ||
4774 | 1383,1,1001,994,1, | ||
4775 | 1002,1058,1,15,1424, | ||
4776 | 19,183,1,15,1425, | ||
4777 | 5,7,1,2200,1426, | ||
4778 | 16,0,600,1,1431, | ||
4779 | 1427,16,0,386,1, | ||
4780 | 1112,1428,16,0,181, | ||
4781 | 1,1511,1429,16,0, | ||
4782 | 386,1,40,1430,16, | ||
4783 | 0,341,1,19,981, | ||
4784 | 1,9,969,1,16, | ||
4785 | 1431,19,136,1,16, | ||
4786 | 1432,5,120,1,2009, | ||
4787 | 716,1,1257,1433,16, | ||
4788 | 0,208,1,1760,688, | ||
4789 | 1,1762,1434,16,0, | ||
4790 | 244,1,1763,1435,16, | ||
4791 | 0,208,1,1514,1436, | ||
4792 | 16,0,208,1,9, | ||
4793 | 1437,16,0,134,1, | ||
4794 | 2018,1438,17,1439,15, | ||
4795 | 1440,4,12,37,0, | ||
4796 | 69,0,118,0,101, | ||
4797 | 0,110,0,116,0, | ||
4798 | 1,-1,1,5,1441, | ||
4799 | 20,1442,4,16,69, | ||
4800 | 0,118,0,101,0, | ||
4801 | 110,0,116,0,95, | ||
4802 | 0,51,0,51,0, | ||
4803 | 1,285,1,3,1, | ||
4804 | 2,1,1,1443,22, | ||
4805 | 1,152,1,2019,1444, | ||
4806 | 17,1445,15,1440,1, | ||
4807 | -1,1,5,1446,20, | ||
4808 | 1447,4,16,69,0, | ||
4809 | 118,0,101,0,110, | ||
4810 | 0,116,0,95,0, | ||
4811 | 51,0,50,0,1, | ||
4812 | 284,1,3,1,2, | ||
4813 | 1,1,1448,22,1, | ||
4814 | 151,1,2020,1449,17, | ||
4815 | 1450,15,1440,1,-1, | ||
4816 | 1,5,1451,20,1452, | ||
4817 | 4,16,69,0,118, | ||
4818 | 0,101,0,110,0, | ||
4819 | 116,0,95,0,51, | ||
4820 | 0,49,0,1,283, | ||
4821 | 1,3,1,2,1, | ||
4822 | 1,1453,22,1,150, | ||
4823 | 1,2021,1454,17,1455, | ||
4824 | 15,1440,1,-1,1, | ||
4825 | 5,1456,20,1457,4, | ||
4826 | 16,69,0,118,0, | ||
4827 | 101,0,110,0,116, | ||
4828 | 0,95,0,51,0, | ||
4829 | 48,0,1,282,1, | ||
4830 | 3,1,2,1,1, | ||
4831 | 1458,22,1,149,1, | ||
4832 | 2022,1459,17,1460,15, | ||
4833 | 1440,1,-1,1,5, | ||
4834 | 1461,20,1462,4,16, | ||
4835 | 69,0,118,0,101, | ||
4836 | 0,110,0,116,0, | ||
4837 | 95,0,50,0,57, | ||
4838 | 0,1,281,1,3, | ||
4839 | 1,2,1,1,1463, | ||
4840 | 22,1,148,1,256, | ||
4841 | 1464,16,0,208,1, | ||
4842 | 2024,1465,17,1466,15, | ||
4843 | 1440,1,-1,1,5, | ||
4844 | 1467,20,1468,4,16, | ||
4845 | 69,0,118,0,101, | ||
4846 | 0,110,0,116,0, | ||
4847 | 95,0,50,0,55, | ||
4848 | 0,1,279,1,3, | ||
4849 | 1,2,1,1,1469, | ||
4850 | 22,1,146,1,2025, | ||
4851 | 1470,17,1471,15,1440, | ||
4852 | 1,-1,1,5,1472, | ||
4853 | 20,1473,4,16,69, | ||
4854 | 0,118,0,101,0, | ||
4855 | 110,0,116,0,95, | ||
4856 | 0,50,0,54,0, | ||
4857 | 1,278,1,3,1, | ||
4858 | 2,1,1,1474,22, | ||
4859 | 1,145,1,2026,1475, | ||
4860 | 17,1476,15,1440,1, | ||
4861 | -1,1,5,1477,20, | ||
4862 | 1478,4,16,69,0, | ||
4863 | 118,0,101,0,110, | ||
4864 | 0,116,0,95,0, | ||
4865 | 50,0,53,0,1, | ||
4866 | 277,1,3,1,2, | ||
4867 | 1,1,1479,22,1, | ||
4868 | 144,1,2027,1480,17, | ||
4869 | 1481,15,1440,1,-1, | ||
4870 | 1,5,1482,20,1483, | ||
4871 | 4,16,69,0,118, | ||
4872 | 0,101,0,110,0, | ||
4873 | 116,0,95,0,50, | ||
4874 | 0,52,0,1,276, | ||
4875 | 1,3,1,2,1, | ||
4876 | 1,1484,22,1,143, | ||
4877 | 1,2028,1485,17,1486, | ||
4878 | 15,1440,1,-1,1, | ||
4879 | 5,1487,20,1488,4, | ||
4880 | 16,69,0,118,0, | ||
4881 | 101,0,110,0,116, | ||
4882 | 0,95,0,50,0, | ||
4883 | 51,0,1,275,1, | ||
4884 | 3,1,2,1,1, | ||
4885 | 1489,22,1,142,1, | ||
4886 | 2029,1490,17,1491,15, | ||
4887 | 1440,1,-1,1,5, | ||
4888 | 1492,20,1493,4,16, | ||
4889 | 69,0,118,0,101, | ||
4890 | 0,110,0,116,0, | ||
4891 | 95,0,50,0,50, | ||
4892 | 0,1,274,1,3, | ||
4893 | 1,2,1,1,1494, | ||
4894 | 22,1,141,1,2030, | ||
4895 | 1495,17,1496,15,1440, | ||
4896 | 1,-1,1,5,1497, | ||
4897 | 20,1498,4,16,69, | ||
4898 | 0,118,0,101,0, | ||
4899 | 110,0,116,0,95, | ||
4900 | 0,50,0,49,0, | ||
4901 | 1,273,1,3,1, | ||
4902 | 2,1,1,1499,22, | ||
4903 | 1,140,1,2031,1500, | ||
4904 | 17,1501,15,1440,1, | ||
4905 | -1,1,5,1502,20, | ||
4906 | 1503,4,16,69,0, | ||
4907 | 118,0,101,0,110, | ||
4908 | 0,116,0,95,0, | ||
4909 | 50,0,48,0,1, | ||
4910 | 272,1,3,1,2, | ||
4911 | 1,1,1504,22,1, | ||
4912 | 139,1,2032,1505,17, | ||
4913 | 1506,15,1440,1,-1, | ||
4914 | 1,5,1507,20,1508, | ||
4915 | 4,16,69,0,118, | ||
4916 | 0,101,0,110,0, | ||
4917 | 116,0,95,0,49, | ||
4918 | 0,57,0,1,271, | ||
4919 | 1,3,1,2,1, | ||
4920 | 1,1509,22,1,138, | ||
4921 | 1,2033,1510,17,1511, | ||
4922 | 15,1440,1,-1,1, | ||
4923 | 5,1512,20,1513,4, | ||
4924 | 16,69,0,118,0, | ||
4925 | 101,0,110,0,116, | ||
4926 | 0,95,0,49,0, | ||
4927 | 56,0,1,270,1, | ||
4928 | 3,1,2,1,1, | ||
4929 | 1514,22,1,137,1, | ||
4930 | 277,1515,16,0,208, | ||
4931 | 1,2035,1516,17,1517, | ||
4932 | 15,1440,1,-1,1, | ||
4933 | 5,1518,20,1519,4, | ||
4934 | 16,69,0,118,0, | ||
4935 | 101,0,110,0,116, | ||
4936 | 0,95,0,49,0, | ||
4937 | 54,0,1,268,1, | ||
4938 | 3,1,2,1,1, | ||
4939 | 1520,22,1,135,1, | ||
4940 | 2036,1521,17,1522,15, | ||
4941 | 1440,1,-1,1,5, | ||
4942 | 1523,20,1524,4,16, | ||
4943 | 69,0,118,0,101, | ||
4944 | 0,110,0,116,0, | ||
4945 | 95,0,49,0,53, | ||
4946 | 0,1,267,1,3, | ||
4947 | 1,2,1,1,1525, | ||
4948 | 22,1,134,1,2037, | ||
4949 | 1526,17,1527,15,1440, | ||
4950 | 1,-1,1,5,1528, | ||
4951 | 20,1529,4,16,69, | ||
4952 | 0,118,0,101,0, | ||
4953 | 110,0,116,0,95, | ||
4954 | 0,49,0,52,0, | ||
4955 | 1,266,1,3,1, | ||
4956 | 2,1,1,1530,22, | ||
4957 | 1,133,1,2038,1531, | ||
4958 | 17,1532,15,1440,1, | ||
4959 | -1,1,5,1533,20, | ||
4960 | 1534,4,16,69,0, | ||
4961 | 118,0,101,0,110, | ||
4962 | 0,116,0,95,0, | ||
4963 | 49,0,51,0,1, | ||
4964 | 265,1,3,1,2, | ||
4965 | 1,1,1535,22,1, | ||
4966 | 132,1,1788,1536,16, | ||
4967 | 0,208,1,32,1537, | ||
4968 | 16,0,208,1,2041, | ||
4969 | 1538,17,1539,15,1440, | ||
4970 | 1,-1,1,5,1540, | ||
4971 | 20,1541,4,16,69, | ||
4972 | 0,118,0,101,0, | ||
4973 | 110,0,116,0,95, | ||
4974 | 0,49,0,48,0, | ||
4975 | 1,262,1,3,1, | ||
4976 | 2,1,1,1542,22, | ||
4977 | 1,129,1,2042,1543, | ||
4978 | 17,1544,15,1440,1, | ||
4979 | -1,1,5,1545,20, | ||
4980 | 1546,4,14,69,0, | ||
4981 | 118,0,101,0,110, | ||
4982 | 0,116,0,95,0, | ||
4983 | 57,0,1,261,1, | ||
4984 | 3,1,2,1,1, | ||
4985 | 1547,22,1,128,1, | ||
4986 | 2043,1548,17,1549,15, | ||
4987 | 1440,1,-1,1,5, | ||
4988 | 1550,20,1551,4,14, | ||
4989 | 69,0,118,0,101, | ||
4990 | 0,110,0,116,0, | ||
4991 | 95,0,56,0,1, | ||
4992 | 260,1,3,1,2, | ||
4993 | 1,1,1552,22,1, | ||
4994 | 127,1,2044,1553,17, | ||
4995 | 1554,15,1440,1,-1, | ||
4996 | 1,5,1555,20,1556, | ||
4997 | 4,14,69,0,118, | ||
4998 | 0,101,0,110,0, | ||
4999 | 116,0,95,0,55, | ||
5000 | 0,1,259,1,3, | ||
5001 | 1,2,1,1,1557, | ||
5002 | 22,1,126,1,1292, | ||
5003 | 1558,16,0,208,1, | ||
5004 | 2046,1559,17,1560,15, | ||
5005 | 1440,1,-1,1,5, | ||
5006 | 1561,20,1562,4,14, | ||
5007 | 69,0,118,0,101, | ||
5008 | 0,110,0,116,0, | ||
5009 | 95,0,53,0,1, | ||
5010 | 257,1,3,1,2, | ||
5011 | 1,1,1563,22,1, | ||
5012 | 124,1,2047,1564,17, | ||
5013 | 1565,15,1440,1,-1, | ||
5014 | 1,5,1566,20,1567, | ||
5015 | 4,14,69,0,118, | ||
5016 | 0,101,0,110,0, | ||
5017 | 116,0,95,0,52, | ||
5018 | 0,1,256,1,3, | ||
5019 | 1,2,1,1,1568, | ||
5020 | 22,1,123,1,40, | ||
5021 | 1569,16,0,188,1, | ||
5022 | 41,1570,16,0,208, | ||
5023 | 1,2050,1571,17,1572, | ||
5024 | 15,1440,1,-1,1, | ||
5025 | 5,1573,20,1574,4, | ||
5026 | 14,69,0,118,0, | ||
5027 | 101,0,110,0,116, | ||
5028 | 0,95,0,49,0, | ||
5029 | 1,253,1,3,1, | ||
5030 | 2,1,1,1575,22, | ||
5031 | 1,120,1,43,1576, | ||
5032 | 16,0,208,1,44, | ||
5033 | 1577,16,0,188,1, | ||
5034 | 299,1578,16,0,208, | ||
5035 | 1,52,1579,16,0, | ||
5036 | 208,1,1559,1580,16, | ||
5037 | 0,208,1,1817,760, | ||
5038 | 1,1818,1581,16,0, | ||
5039 | 208,1,62,1582,16, | ||
5040 | 0,219,1,63,1583, | ||
5041 | 16,0,188,1,2011, | ||
5042 | 723,1,504,1584,16, | ||
5043 | 0,208,1,71,1585, | ||
5044 | 16,0,208,1,1327, | ||
5045 | 1586,16,0,208,1, | ||
5046 | 76,1587,16,0,208, | ||
5047 | 1,1584,1588,16,0, | ||
5048 | 208,1,79,1589,16, | ||
5049 | 0,208,1,2023,1590, | ||
5050 | 17,1591,15,1440,1, | ||
5051 | -1,1,5,1592,20, | ||
5052 | 1593,4,16,69,0, | ||
5053 | 118,0,101,0,110, | ||
5054 | 0,116,0,95,0, | ||
5055 | 50,0,56,0,1, | ||
5056 | 280,1,3,1,2, | ||
5057 | 1,1,1594,22,1, | ||
5058 | 147,1,322,1595,16, | ||
5059 | 0,208,1,85,1596, | ||
5060 | 16,0,208,1,89, | ||
5061 | 1597,16,0,208,1, | ||
5062 | 1847,794,1,2034,1598, | ||
5063 | 17,1599,15,1440,1, | ||
5064 | -1,1,5,1600,20, | ||
5065 | 1601,4,16,69,0, | ||
5066 | 118,0,101,0,110, | ||
5067 | 0,116,0,95,0, | ||
5068 | 49,0,55,0,1, | ||
5069 | 269,1,3,1,2, | ||
5070 | 1,1,1602,22,1, | ||
5071 | 136,1,346,1603,16, | ||
5072 | 0,208,1,1853,649, | ||
5073 | 1,1854,655,1,1855, | ||
5074 | 660,1,1856,748,1, | ||
5075 | 1858,667,1,97,1604, | ||
5076 | 16,0,208,1,1860, | ||
5077 | 672,1,1862,677,1, | ||
5078 | 1863,682,1,102,1605, | ||
5079 | 16,0,208,1,2051, | ||
5080 | 1606,16,0,592,1, | ||
5081 | 1115,1607,16,0,208, | ||
5082 | 1,112,1608,16,0, | ||
5083 | 208,1,124,1609,16, | ||
5084 | 0,208,1,1385,769, | ||
5085 | 1,1637,710,1,384, | ||
5086 | 1610,16,0,208,1, | ||
5087 | 137,1611,16,0,208, | ||
5088 | 1,1396,1612,16,0, | ||
5089 | 208,1,381,1613,16, | ||
5090 | 0,208,1,397,1614, | ||
5091 | 16,0,208,1,1152, | ||
5092 | 1615,16,0,208,1, | ||
5093 | 151,1616,16,0,208, | ||
5094 | 1,1852,806,1,1611, | ||
5095 | 1617,16,0,208,1, | ||
5096 | 2039,1618,17,1619,15, | ||
5097 | 1440,1,-1,1,5, | ||
5098 | 1620,20,1621,4,16, | ||
5099 | 69,0,118,0,101, | ||
5100 | 0,110,0,116,0, | ||
5101 | 95,0,49,0,50, | ||
5102 | 0,1,264,1,3, | ||
5103 | 1,2,1,1,1622, | ||
5104 | 22,1,131,1,1668, | ||
5105 | 1623,16,0,208,1, | ||
5106 | 166,1624,16,0,208, | ||
5107 | 1,2045,1625,17,1626, | ||
5108 | 15,1440,1,-1,1, | ||
5109 | 5,1627,20,1628,4, | ||
5110 | 14,69,0,118,0, | ||
5111 | 101,0,110,0,116, | ||
5112 | 0,95,0,54,0, | ||
5113 | 1,258,1,3,1, | ||
5114 | 2,1,1,1629,22, | ||
5115 | 1,125,1,422,1630, | ||
5116 | 16,0,208,1,2048, | ||
5117 | 1631,17,1632,15,1440, | ||
5118 | 1,-1,1,5,1633, | ||
5119 | 20,1634,4,14,69, | ||
5120 | 0,118,0,101,0, | ||
5121 | 110,0,116,0,95, | ||
5122 | 0,51,0,1,255, | ||
5123 | 1,3,1,2,1, | ||
5124 | 1,1635,22,1,122, | ||
5125 | 1,2049,1636,17,1637, | ||
5126 | 15,1440,1,-1,1, | ||
5127 | 5,1638,20,1639,4, | ||
5128 | 14,69,0,118,0, | ||
5129 | 101,0,110,0,116, | ||
5130 | 0,95,0,50,0, | ||
5131 | 1,254,1,3,1, | ||
5132 | 2,1,1,1640,22, | ||
5133 | 1,121,1,2184,1641, | ||
5134 | 16,0,593,1,1432, | ||
5135 | 1642,16,0,208,1, | ||
5136 | 182,1643,16,0,208, | ||
5137 | 1,1187,1644,16,0, | ||
5138 | 208,1,1639,1645,16, | ||
5139 | 0,208,1,1694,740, | ||
5140 | 1,2201,1646,16,0, | ||
5141 | 208,1,447,1647,16, | ||
5142 | 0,208,1,199,1648, | ||
5143 | 16,0,208,1,1706, | ||
5144 | 1649,16,0,180,1, | ||
5145 | 1707,1650,16,0,208, | ||
5146 | 1,1965,1651,16,0, | ||
5147 | 208,1,1467,729,1, | ||
5148 | 1468,1652,16,0,424, | ||
5149 | 1,1469,1653,16,0, | ||
5150 | 208,1,1667,1654,16, | ||
5151 | 0,254,1,217,1655, | ||
5152 | 16,0,208,1,1222, | ||
5153 | 1656,16,0,208,1, | ||
5154 | 1732,1657,16,0,208, | ||
5155 | 1,2040,1658,17,1659, | ||
5156 | 15,1440,1,-1,1, | ||
5157 | 5,1660,20,1661,4, | ||
5158 | 16,69,0,118,0, | ||
5159 | 101,0,110,0,116, | ||
5160 | 0,95,0,49,0, | ||
5161 | 49,0,1,263,1, | ||
5162 | 3,1,2,1,1, | ||
5163 | 1662,22,1,130,1, | ||
5164 | 463,1663,16,0,208, | ||
5165 | 1,236,1664,16,0, | ||
5166 | 208,1,488,1665,16, | ||
5167 | 0,208,1,2005,801, | ||
5168 | 1,2006,777,1,17, | ||
5169 | 1666,19,153,1,17, | ||
5170 | 1667,5,95,1,1, | ||
5171 | 1668,17,1669,15,1670, | ||
5172 | 4,18,37,0,84, | ||
5173 | 0,121,0,112,0, | ||
5174 | 101,0,110,0,97, | ||
5175 | 0,109,0,101,0, | ||
5176 | 1,-1,1,5,1671, | ||
5177 | 20,1672,4,20,84, | ||
5178 | 0,121,0,112,0, | ||
5179 | 101,0,110,0,97, | ||
5180 | 0,109,0,101,0, | ||
5181 | 95,0,55,0,1, | ||
5182 | 252,1,3,1,2, | ||
5183 | 1,1,1673,22,1, | ||
5184 | 119,1,2,1674,17, | ||
5185 | 1675,15,1670,1,-1, | ||
5186 | 1,5,1676,20,1677, | ||
5187 | 4,20,84,0,121, | ||
5188 | 0,112,0,101,0, | ||
5189 | 110,0,97,0,109, | ||
5190 | 0,101,0,95,0, | ||
5191 | 54,0,1,251,1, | ||
5192 | 3,1,2,1,1, | ||
5193 | 1678,22,1,118,1, | ||
5194 | 3,1679,17,1680,15, | ||
5195 | 1670,1,-1,1,5, | ||
5196 | 1681,20,1682,4,20, | ||
5197 | 84,0,121,0,112, | ||
5198 | 0,101,0,110,0, | ||
5199 | 97,0,109,0,101, | ||
5200 | 0,95,0,53,0, | ||
5201 | 1,250,1,3,1, | ||
5202 | 2,1,1,1683,22, | ||
5203 | 1,117,1,4,1684, | ||
5204 | 17,1685,15,1670,1, | ||
5205 | -1,1,5,1686,20, | ||
5206 | 1687,4,20,84,0, | ||
5207 | 121,0,112,0,101, | ||
5208 | 0,110,0,97,0, | ||
5209 | 109,0,101,0,95, | ||
5210 | 0,52,0,1,249, | ||
5211 | 1,3,1,2,1, | ||
5212 | 1,1688,22,1,116, | ||
5213 | 1,5,1689,17,1690, | ||
5214 | 15,1670,1,-1,1, | ||
5215 | 5,1691,20,1692,4, | ||
5216 | 20,84,0,121,0, | ||
5217 | 112,0,101,0,110, | ||
5218 | 0,97,0,109,0, | ||
5219 | 101,0,95,0,51, | ||
5220 | 0,1,248,1,3, | ||
5221 | 1,2,1,1,1693, | ||
5222 | 22,1,115,1,6, | ||
5223 | 1694,17,1695,15,1670, | ||
5224 | 1,-1,1,5,1696, | ||
5225 | 20,1697,4,20,84, | ||
5226 | 0,121,0,112,0, | ||
5227 | 101,0,110,0,97, | ||
5228 | 0,109,0,101,0, | ||
5229 | 95,0,50,0,1, | ||
5230 | 247,1,3,1,2, | ||
5231 | 1,1,1698,22,1, | ||
5232 | 114,1,7,1699,17, | ||
5233 | 1700,15,1670,1,-1, | ||
5234 | 1,5,1701,20,1702, | ||
5235 | 4,20,84,0,121, | ||
5236 | 0,112,0,101,0, | ||
5237 | 110,0,97,0,109, | ||
5238 | 0,101,0,95,0, | ||
5239 | 49,0,1,246,1, | ||
5240 | 3,1,2,1,1, | ||
5241 | 1703,22,1,113,1, | ||
5242 | 1263,963,1,9,969, | ||
5243 | 1,10,1381,1,262, | ||
5244 | 975,1,1769,1704,16, | ||
5245 | 0,298,1,19,981, | ||
5246 | 1,20,1705,16,0, | ||
5247 | 170,1,1527,982,1, | ||
5248 | 30,1385,1,283,1008, | ||
5249 | 1,504,956,1,1010, | ||
5250 | 1706,16,0,556,1, | ||
5251 | 40,1002,1,41,1390, | ||
5252 | 1,42,1394,1,1298, | ||
5253 | 1013,1,44,1018,1, | ||
5254 | 47,1019,1,48,1025, | ||
5255 | 1,49,1031,1,50, | ||
5256 | 1036,1,51,1041,1, | ||
5257 | 2061,1707,16,0,493, | ||
5258 | 1,305,1046,1,61, | ||
5259 | 1708,16,0,211,1, | ||
5260 | 63,1053,1,66,1063, | ||
5261 | 1,67,1100,1,68, | ||
5262 | 1068,1,69,1073,1, | ||
5263 | 2014,1374,1,573,1083, | ||
5264 | 1,574,1401,1,1011, | ||
5265 | 1089,1,70,1078,1, | ||
5266 | 1046,1105,1,328,1110, | ||
5267 | 1,1333,1115,1,73, | ||
5268 | 1709,16,0,221,1, | ||
5269 | 74,1095,1,82,1120, | ||
5270 | 1,1092,1710,16,0, | ||
5271 | 603,1,1094,1241,1, | ||
5272 | 93,1146,1,352,1152, | ||
5273 | 1,1609,1711,16,0, | ||
5274 | 576,1,107,1140,1, | ||
5275 | 1112,1145,1,2052,1408, | ||
5276 | 1,1121,1157,1,118, | ||
5277 | 1162,1,371,1167,1, | ||
5278 | 373,1173,1,375,1178, | ||
5279 | 1,377,1183,1,827, | ||
5280 | 1188,1,380,1193,1, | ||
5281 | 883,1199,1,386,1411, | ||
5282 | 1,130,1205,1,379, | ||
5283 | 1247,1,143,1216,1, | ||
5284 | 1557,1226,1,1158,1231, | ||
5285 | 1,381,1417,1,157, | ||
5286 | 1236,1,1674,1712,16, | ||
5287 | 0,151,1,172,1252, | ||
5288 | 1,2185,1422,1,1938, | ||
5289 | 1258,1,1438,1263,1, | ||
5290 | 2194,1713,16,0,491, | ||
5291 | 1,188,1275,1,942, | ||
5292 | 1288,1,205,1281,1, | ||
5293 | 1713,1714,16,0,264, | ||
5294 | 1,463,1314,1,223, | ||
5295 | 1293,1,1228,1298,1, | ||
5296 | 476,1303,1,477,988, | ||
5297 | 1,1482,1309,1,1193, | ||
5298 | 1269,1,242,1320,1, | ||
5299 | 478,1325,1,479,1330, | ||
5300 | 1,1001,994,1,1002, | ||
5301 | 1058,1,18,1715,19, | ||
5302 | 403,1,18,1716,5, | ||
5303 | 77,1,328,1110,1, | ||
5304 | 1333,1717,16,0,401, | ||
5305 | 1,1094,1241,1,1438, | ||
5306 | 1718,16,0,401,1, | ||
5307 | 223,1719,16,0,401, | ||
5308 | 1,428,1720,16,0, | ||
5309 | 401,1,118,1721,16, | ||
5310 | 0,401,1,883,1722, | ||
5311 | 16,0,401,1,453, | ||
5312 | 1723,16,0,401,1, | ||
5313 | 1001,994,1,130,1724, | ||
5314 | 16,0,401,1,1112, | ||
5315 | 1145,1,242,1725,16, | ||
5316 | 0,401,1,1769,1726, | ||
5317 | 16,0,401,1,463, | ||
5318 | 1314,1,573,1083,1, | ||
5319 | 1228,1727,16,0,401, | ||
5320 | 1,1011,1089,1,1121, | ||
5321 | 1728,16,0,401,1, | ||
5322 | 143,1729,16,0,401, | ||
5323 | 1,352,1152,1,1674, | ||
5324 | 1730,16,0,401,1, | ||
5325 | 40,1002,1,477,988, | ||
5326 | 1,42,1731,16,0, | ||
5327 | 401,1,479,1330,1, | ||
5328 | 44,1018,1,373,1173, | ||
5329 | 1,47,1019,1,48, | ||
5330 | 1025,1,49,1031,1, | ||
5331 | 50,1036,1,51,1041, | ||
5332 | 1,1482,1732,16,0, | ||
5333 | 401,1,380,1193,1, | ||
5334 | 157,1733,16,0,401, | ||
5335 | 1,476,1303,1,371, | ||
5336 | 1167,1,1366,1734,16, | ||
5337 | 0,401,1,375,1178, | ||
5338 | 1,1010,1735,16,0, | ||
5339 | 401,1,63,1053,1, | ||
5340 | 1263,1736,16,0,401, | ||
5341 | 1,283,1008,1,66, | ||
5342 | 1063,1,67,1100,1, | ||
5343 | 1158,1737,16,0,401, | ||
5344 | 1,69,1073,1,70, | ||
5345 | 1078,1,68,1068,1, | ||
5346 | 73,1738,16,0,401, | ||
5347 | 1,74,1095,1,494, | ||
5348 | 1739,16,0,401,1, | ||
5349 | 377,1183,1,172,1740, | ||
5350 | 16,0,401,1,1713, | ||
5351 | 1741,16,0,401,1, | ||
5352 | 188,1742,16,0,401, | ||
5353 | 1,82,1743,16,0, | ||
5354 | 401,1,262,975,1, | ||
5355 | 504,956,1,305,1046, | ||
5356 | 1,1527,1744,16,0, | ||
5357 | 401,1,1565,1745,16, | ||
5358 | 0,401,1,403,1746, | ||
5359 | 16,0,401,1,827, | ||
5360 | 1747,16,0,401,1, | ||
5361 | 1046,1748,16,0,401, | ||
5362 | 1,93,1749,16,0, | ||
5363 | 401,1,1402,1750,16, | ||
5364 | 0,401,1,205,1751, | ||
5365 | 16,0,401,1,2207, | ||
5366 | 1752,16,0,401,1, | ||
5367 | 1298,1753,16,0,401, | ||
5368 | 1,1002,1058,1,942, | ||
5369 | 1754,16,0,401,1, | ||
5370 | 1193,1755,16,0,401, | ||
5371 | 1,379,1247,1,478, | ||
5372 | 1325,1,107,1756,16, | ||
5373 | 0,401,1,19,1757, | ||
5374 | 19,240,1,19,1758, | ||
5375 | 5,151,1,2009,716, | ||
5376 | 1,1257,1759,16,0, | ||
5377 | 238,1,1760,688,1, | ||
5378 | 256,1760,16,0,238, | ||
5379 | 1,1763,1761,16,0, | ||
5380 | 238,1,1011,1089,1, | ||
5381 | 1263,1762,16,0,387, | ||
5382 | 1,494,1763,16,0, | ||
5383 | 387,1,262,975,1, | ||
5384 | 1769,1764,16,0,387, | ||
5385 | 1,2207,1765,16,0, | ||
5386 | 387,1,504,1766,16, | ||
5387 | 0,238,1,1527,1767, | ||
5388 | 16,0,387,1,477, | ||
5389 | 988,1,277,1768,16, | ||
5390 | 0,238,1,1001,994, | ||
5391 | 1,1788,1769,16,0, | ||
5392 | 238,1,32,1770,16, | ||
5393 | 0,238,1,1292,1771, | ||
5394 | 16,0,238,1,1010, | ||
5395 | 1772,16,0,387,1, | ||
5396 | 40,1002,1,41,1773, | ||
5397 | 16,0,238,1,42, | ||
5398 | 1774,16,0,387,1, | ||
5399 | 43,1775,16,0,238, | ||
5400 | 1,44,1018,1,47, | ||
5401 | 1019,1,48,1025,1, | ||
5402 | 49,1031,1,50,1036, | ||
5403 | 1,51,1041,1,52, | ||
5404 | 1776,16,0,238,1, | ||
5405 | 1559,1777,16,0,238, | ||
5406 | 1,305,1046,1,1514, | ||
5407 | 1778,16,0,238,1, | ||
5408 | 299,1779,16,0,238, | ||
5409 | 1,1817,760,1,1818, | ||
5410 | 1780,16,0,238,1, | ||
5411 | 283,1008,1,63,1053, | ||
5412 | 1,1002,1058,1,66, | ||
5413 | 1063,1,67,1100,1, | ||
5414 | 68,1068,1,69,1073, | ||
5415 | 1,70,1078,1,573, | ||
5416 | 1083,1,1327,1781,16, | ||
5417 | 0,238,1,73,1782, | ||
5418 | 16,0,387,1,74, | ||
5419 | 1095,1,71,1783,16, | ||
5420 | 0,238,1,76,1784, | ||
5421 | 16,0,238,1,328, | ||
5422 | 1110,1,1333,1785,16, | ||
5423 | 0,387,1,79,1786, | ||
5424 | 16,0,238,1,82, | ||
5425 | 1787,16,0,387,1, | ||
5426 | 322,1788,16,0,238, | ||
5427 | 1,85,1789,16,0, | ||
5428 | 238,1,89,1790,16, | ||
5429 | 0,238,1,1847,794, | ||
5430 | 1,93,1791,16,0, | ||
5431 | 387,1,1852,806,1, | ||
5432 | 1853,649,1,1854,655, | ||
5433 | 1,1855,660,1,1856, | ||
5434 | 748,1,1858,667,1, | ||
5435 | 97,1792,16,0,238, | ||
5436 | 1,1860,672,1,1862, | ||
5437 | 677,1,1863,682,1, | ||
5438 | 102,1793,16,0,238, | ||
5439 | 1,1112,1145,1,1565, | ||
5440 | 1794,16,0,387,1, | ||
5441 | 1046,1795,16,0,387, | ||
5442 | 1,1115,1796,16,0, | ||
5443 | 238,1,112,1797,16, | ||
5444 | 0,238,1,352,1152, | ||
5445 | 1,1121,1798,16,0, | ||
5446 | 387,1,118,1799,16, | ||
5447 | 0,387,1,346,1800, | ||
5448 | 16,0,238,1,371, | ||
5449 | 1167,1,107,1801,16, | ||
5450 | 0,387,1,124,1802, | ||
5451 | 16,0,238,1,377, | ||
5452 | 1183,1,1298,1803,16, | ||
5453 | 0,387,1,827,1804, | ||
5454 | 16,0,387,1,380, | ||
5455 | 1193,1,130,1805,16, | ||
5456 | 0,387,1,2011,723, | ||
5457 | 1,384,1806,16,0, | ||
5458 | 238,1,373,1173,1, | ||
5459 | 137,1807,16,0,238, | ||
5460 | 1,1396,1808,16,0, | ||
5461 | 238,1,143,1809,16, | ||
5462 | 0,387,1,397,1810, | ||
5463 | 16,0,238,1,1402, | ||
5464 | 1811,16,0,387,1, | ||
5465 | 1152,1812,16,0,238, | ||
5466 | 1,375,1178,1,151, | ||
5467 | 1813,16,0,238,1, | ||
5468 | 403,1814,16,0,387, | ||
5469 | 1,1158,1815,16,0, | ||
5470 | 387,1,1366,1816,16, | ||
5471 | 0,387,1,381,1817, | ||
5472 | 16,0,238,1,157, | ||
5473 | 1818,16,0,387,1, | ||
5474 | 883,1819,16,0,387, | ||
5475 | 1,1668,1820,16,0, | ||
5476 | 238,1,166,1821,16, | ||
5477 | 0,238,1,379,1247, | ||
5478 | 1,1674,1822,16,0, | ||
5479 | 387,1,422,1823,16, | ||
5480 | 0,238,1,172,1824, | ||
5481 | 16,0,387,1,1385, | ||
5482 | 769,1,1432,1825,16, | ||
5483 | 0,238,1,1584,1826, | ||
5484 | 16,0,238,1,182, | ||
5485 | 1827,16,0,238,1, | ||
5486 | 1187,1828,16,0,238, | ||
5487 | 1,1637,710,1,1639, | ||
5488 | 1829,16,0,238,1, | ||
5489 | 1694,740,1,1193,1830, | ||
5490 | 16,0,387,1,428, | ||
5491 | 1831,16,0,387,1, | ||
5492 | 2201,1832,16,0,238, | ||
5493 | 1,188,1833,16,0, | ||
5494 | 387,1,447,1834,16, | ||
5495 | 0,238,1,1094,1241, | ||
5496 | 1,199,1835,16,0, | ||
5497 | 238,1,1707,1836,16, | ||
5498 | 0,238,1,453,1837, | ||
5499 | 16,0,387,1,205, | ||
5500 | 1838,16,0,387,1, | ||
5501 | 1713,1839,16,0,387, | ||
5502 | 1,1965,1840,16,0, | ||
5503 | 238,1,1611,1841,16, | ||
5504 | 0,238,1,1467,729, | ||
5505 | 1,1469,1842,16,0, | ||
5506 | 238,1,217,1843,16, | ||
5507 | 0,238,1,1222,1844, | ||
5508 | 16,0,238,1,942, | ||
5509 | 1845,16,0,387,1, | ||
5510 | 223,1846,16,0,387, | ||
5511 | 1,1228,1847,16,0, | ||
5512 | 387,1,476,1303,1, | ||
5513 | 1732,1848,16,0,238, | ||
5514 | 1,1482,1849,16,0, | ||
5515 | 387,1,463,1850,16, | ||
5516 | 0,238,1,1438,1851, | ||
5517 | 16,0,387,1,236, | ||
5518 | 1852,16,0,238,1, | ||
5519 | 488,1853,16,0,238, | ||
5520 | 1,242,1854,16,0, | ||
5521 | 387,1,478,1325,1, | ||
5522 | 479,1330,1,2005,801, | ||
5523 | 1,2006,777,1,20, | ||
5524 | 1855,19,383,1,20, | ||
5525 | 1856,5,77,1,328, | ||
5526 | 1857,16,0,381,1, | ||
5527 | 1333,1858,16,0,381, | ||
5528 | 1,1094,1241,1,1438, | ||
5529 | 1859,16,0,381,1, | ||
5530 | 223,1860,16,0,381, | ||
5531 | 1,428,1861,16,0, | ||
5532 | 381,1,118,1862,16, | ||
5533 | 0,381,1,883,1863, | ||
5534 | 16,0,381,1,453, | ||
5535 | 1864,16,0,381,1, | ||
5536 | 1001,994,1,130,1865, | ||
5537 | 16,0,381,1,1112, | ||
5538 | 1145,1,242,1866,16, | ||
5539 | 0,381,1,1769,1867, | ||
5540 | 16,0,381,1,463, | ||
5541 | 1314,1,573,1083,1, | ||
5542 | 1228,1868,16,0,381, | ||
5543 | 1,1011,1089,1,1121, | ||
5544 | 1869,16,0,381,1, | ||
5545 | 143,1870,16,0,381, | ||
5546 | 1,352,1871,16,0, | ||
5547 | 381,1,1674,1872,16, | ||
5548 | 0,381,1,40,1002, | ||
5549 | 1,477,988,1,42, | ||
5550 | 1873,16,0,381,1, | ||
5551 | 479,1330,1,44,1018, | ||
5552 | 1,373,1173,1,47, | ||
5553 | 1019,1,48,1025,1, | ||
5554 | 49,1031,1,50,1036, | ||
5555 | 1,51,1041,1,1482, | ||
5556 | 1874,16,0,381,1, | ||
5557 | 380,1193,1,157,1875, | ||
5558 | 16,0,381,1,476, | ||
5559 | 1303,1,371,1167,1, | ||
5560 | 1366,1876,16,0,381, | ||
5561 | 1,375,1178,1,1010, | ||
5562 | 1877,16,0,381,1, | ||
5563 | 63,1053,1,1263,1878, | ||
5564 | 16,0,381,1,283, | ||
5565 | 1008,1,66,1063,1, | ||
5566 | 67,1100,1,1158,1879, | ||
5567 | 16,0,381,1,69, | ||
5568 | 1073,1,70,1078,1, | ||
5569 | 68,1068,1,73,1880, | ||
5570 | 16,0,381,1,74, | ||
5571 | 1095,1,494,1881,16, | ||
5572 | 0,381,1,377,1183, | ||
5573 | 1,172,1882,16,0, | ||
5574 | 381,1,1713,1883,16, | ||
5575 | 0,381,1,188,1884, | ||
5576 | 16,0,381,1,82, | ||
5577 | 1885,16,0,381,1, | ||
5578 | 262,975,1,504,956, | ||
5579 | 1,305,1046,1,1527, | ||
5580 | 1886,16,0,381,1, | ||
5581 | 1565,1887,16,0,381, | ||
5582 | 1,403,1888,16,0, | ||
5583 | 381,1,827,1889,16, | ||
5584 | 0,381,1,1046,1890, | ||
5585 | 16,0,381,1,93, | ||
5586 | 1891,16,0,381,1, | ||
5587 | 1402,1892,16,0,381, | ||
5588 | 1,205,1893,16,0, | ||
5589 | 381,1,2207,1894,16, | ||
5590 | 0,381,1,1298,1895, | ||
5591 | 16,0,381,1,1002, | ||
5592 | 1058,1,942,1896,16, | ||
5593 | 0,381,1,1193,1897, | ||
5594 | 16,0,381,1,379, | ||
5595 | 1247,1,478,1325,1, | ||
5596 | 107,1898,16,0,381, | ||
5597 | 1,21,1899,19,372, | ||
5598 | 1,21,1900,5,77, | ||
5599 | 1,328,1901,16,0, | ||
5600 | 370,1,1333,1902,16, | ||
5601 | 0,370,1,1094,1241, | ||
5602 | 1,1438,1903,16,0, | ||
5603 | 370,1,223,1904,16, | ||
5604 | 0,370,1,428,1905, | ||
5605 | 16,0,370,1,118, | ||
5606 | 1906,16,0,370,1, | ||
5607 | 883,1907,16,0,370, | ||
5608 | 1,453,1908,16,0, | ||
5609 | 370,1,1001,994,1, | ||
5610 | 130,1909,16,0,370, | ||
5611 | 1,1112,1145,1,242, | ||
5612 | 1910,16,0,370,1, | ||
5613 | 1769,1911,16,0,370, | ||
5614 | 1,463,1314,1,573, | ||
5615 | 1083,1,1228,1912,16, | ||
5616 | 0,370,1,1011,1089, | ||
5617 | 1,1121,1913,16,0, | ||
5618 | 370,1,143,1914,16, | ||
5619 | 0,370,1,352,1915, | ||
5620 | 16,0,370,1,1674, | ||
5621 | 1916,16,0,370,1, | ||
5622 | 40,1002,1,477,988, | ||
5623 | 1,42,1917,16,0, | ||
5624 | 370,1,479,1330,1, | ||
5625 | 44,1018,1,373,1173, | ||
5626 | 1,47,1019,1,48, | ||
5627 | 1025,1,49,1031,1, | ||
5628 | 50,1036,1,51,1041, | ||
5629 | 1,1482,1918,16,0, | ||
5630 | 370,1,380,1193,1, | ||
5631 | 157,1919,16,0,370, | ||
5632 | 1,476,1303,1,371, | ||
5633 | 1167,1,1366,1920,16, | ||
5634 | 0,370,1,375,1178, | ||
5635 | 1,1010,1921,16,0, | ||
5636 | 370,1,63,1053,1, | ||
5637 | 1263,1922,16,0,370, | ||
5638 | 1,283,1008,1,66, | ||
5639 | 1063,1,67,1100,1, | ||
5640 | 1158,1923,16,0,370, | ||
5641 | 1,69,1073,1,70, | ||
5642 | 1078,1,68,1068,1, | ||
5643 | 73,1924,16,0,370, | ||
5644 | 1,74,1095,1,494, | ||
5645 | 1925,16,0,370,1, | ||
5646 | 377,1183,1,172,1926, | ||
5647 | 16,0,370,1,1713, | ||
5648 | 1927,16,0,370,1, | ||
5649 | 188,1928,16,0,370, | ||
5650 | 1,82,1929,16,0, | ||
5651 | 370,1,262,975,1, | ||
5652 | 504,956,1,305,1046, | ||
5653 | 1,1527,1930,16,0, | ||
5654 | 370,1,1565,1931,16, | ||
5655 | 0,370,1,403,1932, | ||
5656 | 16,0,370,1,827, | ||
5657 | 1933,16,0,370,1, | ||
5658 | 1046,1934,16,0,370, | ||
5659 | 1,93,1935,16,0, | ||
5660 | 370,1,1402,1936,16, | ||
5661 | 0,370,1,205,1937, | ||
5662 | 16,0,370,1,2207, | ||
5663 | 1938,16,0,370,1, | ||
5664 | 1298,1939,16,0,370, | ||
5665 | 1,1002,1058,1,942, | ||
5666 | 1940,16,0,370,1, | ||
5667 | 1193,1941,16,0,370, | ||
5668 | 1,379,1247,1,478, | ||
5669 | 1325,1,107,1942,16, | ||
5670 | 0,370,1,22,1943, | ||
5671 | 19,365,1,22,1944, | ||
5672 | 5,77,1,328,1945, | ||
5673 | 16,0,363,1,1333, | ||
5674 | 1946,16,0,363,1, | ||
5675 | 1094,1241,1,1438,1947, | ||
5676 | 16,0,363,1,223, | ||
5677 | 1948,16,0,363,1, | ||
5678 | 428,1949,16,0,363, | ||
5679 | 1,118,1950,16,0, | ||
5680 | 363,1,883,1951,16, | ||
5681 | 0,363,1,453,1952, | ||
5682 | 16,0,363,1,1001, | ||
5683 | 994,1,130,1953,16, | ||
5684 | 0,363,1,1112,1145, | ||
5685 | 1,242,1954,16,0, | ||
5686 | 363,1,1769,1955,16, | ||
5687 | 0,363,1,463,1314, | ||
5688 | 1,573,1083,1,1228, | ||
5689 | 1956,16,0,363,1, | ||
5690 | 1011,1089,1,1121,1957, | ||
5691 | 16,0,363,1,143, | ||
5692 | 1958,16,0,363,1, | ||
5693 | 352,1959,16,0,363, | ||
5694 | 1,1674,1960,16,0, | ||
5695 | 363,1,40,1002,1, | ||
5696 | 477,988,1,42,1961, | ||
5697 | 16,0,363,1,479, | ||
5698 | 1330,1,44,1018,1, | ||
5699 | 373,1173,1,47,1019, | ||
5700 | 1,48,1025,1,49, | ||
5701 | 1031,1,50,1036,1, | ||
5702 | 51,1041,1,1482,1962, | ||
5703 | 16,0,363,1,380, | ||
5704 | 1193,1,157,1963,16, | ||
5705 | 0,363,1,476,1303, | ||
5706 | 1,371,1167,1,1366, | ||
5707 | 1964,16,0,363,1, | ||
5708 | 375,1178,1,1010,1965, | ||
5709 | 16,0,363,1,63, | ||
5710 | 1053,1,1263,1966,16, | ||
5711 | 0,363,1,283,1008, | ||
5712 | 1,66,1063,1,67, | ||
5713 | 1100,1,1158,1967,16, | ||
5714 | 0,363,1,69,1073, | ||
5715 | 1,70,1078,1,68, | ||
5716 | 1068,1,73,1968,16, | ||
5717 | 0,363,1,74,1095, | ||
5718 | 1,494,1969,16,0, | ||
5719 | 363,1,377,1183,1, | ||
5720 | 172,1970,16,0,363, | ||
5721 | 1,1713,1971,16,0, | ||
5722 | 363,1,188,1972,16, | ||
5723 | 0,363,1,82,1973, | ||
5724 | 16,0,363,1,262, | ||
5725 | 975,1,504,956,1, | ||
5726 | 305,1046,1,1527,1974, | ||
5727 | 16,0,363,1,1565, | ||
5728 | 1975,16,0,363,1, | ||
5729 | 403,1976,16,0,363, | ||
5730 | 1,827,1977,16,0, | ||
5731 | 363,1,1046,1978,16, | ||
5732 | 0,363,1,93,1979, | ||
5733 | 16,0,363,1,1402, | ||
5734 | 1980,16,0,363,1, | ||
5735 | 205,1981,16,0,363, | ||
5736 | 1,2207,1982,16,0, | ||
5737 | 363,1,1298,1983,16, | ||
5738 | 0,363,1,1002,1058, | ||
5739 | 1,942,1984,16,0, | ||
5740 | 363,1,1193,1985,16, | ||
5741 | 0,363,1,379,1247, | ||
5742 | 1,478,1325,1,107, | ||
5743 | 1986,16,0,363,1, | ||
5744 | 24,1987,19,198,1, | ||
5745 | 24,1988,5,5,1, | ||
5746 | 44,1989,16,0,196, | ||
5747 | 1,377,1990,16,0, | ||
5748 | 477,1,40,1991,16, | ||
5749 | 0,608,1,63,1992, | ||
5750 | 16,0,213,1,373, | ||
5751 | 1993,16,0,473,1, | ||
5752 | 25,1994,19,296,1, | ||
5753 | 25,1995,5,152,1, | ||
5754 | 2009,716,1,1257,1996, | ||
5755 | 16,0,504,1,1760, | ||
5756 | 688,1,256,1997,16, | ||
5757 | 0,504,1,1763,1998, | ||
5758 | 16,0,504,1,1011, | ||
5759 | 1089,1,1263,1999,16, | ||
5760 | 0,294,1,494,2000, | ||
5761 | 16,0,294,1,262, | ||
5762 | 975,1,1769,2001,16, | ||
5763 | 0,294,1,2207,2002, | ||
5764 | 16,0,294,1,504, | ||
5765 | 2003,16,0,504,1, | ||
5766 | 1527,2004,16,0,294, | ||
5767 | 1,477,988,1,277, | ||
5768 | 2005,16,0,504,1, | ||
5769 | 1001,994,1,1788,2006, | ||
5770 | 16,0,504,1,32, | ||
5771 | 2007,16,0,504,1, | ||
5772 | 1292,2008,16,0,504, | ||
5773 | 1,1010,2009,16,0, | ||
5774 | 294,1,40,1002,1, | ||
5775 | 41,2010,16,0,504, | ||
5776 | 1,42,2011,16,0, | ||
5777 | 294,1,43,2012,16, | ||
5778 | 0,504,1,44,1018, | ||
5779 | 1,47,1019,1,48, | ||
5780 | 1025,1,49,1031,1, | ||
5781 | 50,1036,1,51,1041, | ||
5782 | 1,52,2013,16,0, | ||
5783 | 504,1,1559,2014,16, | ||
5784 | 0,504,1,305,1046, | ||
5785 | 1,1514,2015,16,0, | ||
5786 | 504,1,299,2016,16, | ||
5787 | 0,504,1,1817,760, | ||
5788 | 1,1818,2017,16,0, | ||
5789 | 504,1,62,2018,16, | ||
5790 | 0,504,1,63,1053, | ||
5791 | 1,1002,1058,1,66, | ||
5792 | 1063,1,67,1100,1, | ||
5793 | 68,1068,1,69,1073, | ||
5794 | 1,70,1078,1,573, | ||
5795 | 1083,1,1327,2019,16, | ||
5796 | 0,504,1,73,2020, | ||
5797 | 16,0,294,1,74, | ||
5798 | 1095,1,71,2021,16, | ||
5799 | 0,504,1,76,2022, | ||
5800 | 16,0,504,1,328, | ||
5801 | 1110,1,1333,2023,16, | ||
5802 | 0,294,1,79,2024, | ||
5803 | 16,0,504,1,82, | ||
5804 | 2025,16,0,294,1, | ||
5805 | 322,2026,16,0,504, | ||
5806 | 1,85,2027,16,0, | ||
5807 | 504,1,89,2028,16, | ||
5808 | 0,504,1,1847,794, | ||
5809 | 1,283,1008,1,93, | ||
5810 | 2029,16,0,294,1, | ||
5811 | 1852,806,1,1853,649, | ||
5812 | 1,1854,655,1,1855, | ||
5813 | 660,1,1856,748,1, | ||
5814 | 1858,667,1,97,2030, | ||
5815 | 16,0,504,1,1860, | ||
5816 | 672,1,1862,677,1, | ||
5817 | 1863,682,1,102,2031, | ||
5818 | 16,0,504,1,1112, | ||
5819 | 1145,1,1565,2032,16, | ||
5820 | 0,294,1,1046,1105, | ||
5821 | 1,1115,2033,16,0, | ||
5822 | 504,1,112,2034,16, | ||
5823 | 0,504,1,352,1152, | ||
5824 | 1,1121,2035,16,0, | ||
5825 | 294,1,118,1162,1, | ||
5826 | 346,2036,16,0,504, | ||
5827 | 1,371,1167,1,107, | ||
5828 | 2037,16,0,294,1, | ||
5829 | 124,2038,16,0,504, | ||
5830 | 1,377,1183,1,1298, | ||
5831 | 2039,16,0,294,1, | ||
5832 | 827,2040,16,0,294, | ||
5833 | 1,380,1193,1,130, | ||
5834 | 1205,1,2011,723,1, | ||
5835 | 384,2041,16,0,504, | ||
5836 | 1,373,1173,1,137, | ||
5837 | 2042,16,0,504,1, | ||
5838 | 1396,2043,16,0,504, | ||
5839 | 1,143,2044,16,0, | ||
5840 | 294,1,397,2045,16, | ||
5841 | 0,504,1,1402,2046, | ||
5842 | 16,0,294,1,1152, | ||
5843 | 2047,16,0,504,1, | ||
5844 | 375,1178,1,151,2048, | ||
5845 | 16,0,504,1,403, | ||
5846 | 2049,16,0,294,1, | ||
5847 | 1158,2050,16,0,294, | ||
5848 | 1,1366,2051,16,0, | ||
5849 | 294,1,381,2052,16, | ||
5850 | 0,504,1,157,2053, | ||
5851 | 16,0,294,1,883, | ||
5852 | 2054,16,0,294,1, | ||
5853 | 1668,2055,16,0,504, | ||
5854 | 1,166,2056,16,0, | ||
5855 | 504,1,379,1247,1, | ||
5856 | 1674,2057,16,0,294, | ||
5857 | 1,422,2058,16,0, | ||
5858 | 504,1,172,1252,1, | ||
5859 | 1385,769,1,1432,2059, | ||
5860 | 16,0,504,1,1584, | ||
5861 | 2060,16,0,504,1, | ||
5862 | 182,2061,16,0,504, | ||
5863 | 1,1187,2062,16,0, | ||
5864 | 504,1,1637,710,1, | ||
5865 | 1639,2063,16,0,504, | ||
5866 | 1,1694,740,1,1193, | ||
5867 | 2064,16,0,294,1, | ||
5868 | 428,2065,16,0,294, | ||
5869 | 1,2201,2066,16,0, | ||
5870 | 504,1,188,1275,1, | ||
5871 | 447,2067,16,0,504, | ||
5872 | 1,1094,1241,1,199, | ||
5873 | 2068,16,0,504,1, | ||
5874 | 1707,2069,16,0,504, | ||
5875 | 1,453,2070,16,0, | ||
5876 | 294,1,205,2071,16, | ||
5877 | 0,294,1,1713,2072, | ||
5878 | 16,0,294,1,1965, | ||
5879 | 2073,16,0,504,1, | ||
5880 | 1611,2074,16,0,504, | ||
5881 | 1,1467,729,1,1469, | ||
5882 | 2075,16,0,504,1, | ||
5883 | 217,2076,16,0,504, | ||
5884 | 1,1222,2077,16,0, | ||
5885 | 504,1,942,1288,1, | ||
5886 | 223,2078,16,0,294, | ||
5887 | 1,1228,2079,16,0, | ||
5888 | 294,1,476,1303,1, | ||
5889 | 1732,2080,16,0,504, | ||
5890 | 1,1482,2081,16,0, | ||
5891 | 294,1,463,2082,16, | ||
5892 | 0,504,1,1438,2083, | ||
5893 | 16,0,294,1,236, | ||
5894 | 2084,16,0,504,1, | ||
5895 | 488,2085,16,0,504, | ||
5896 | 1,242,2086,16,0, | ||
5897 | 294,1,478,1325,1, | ||
5898 | 479,1330,1,2005,801, | ||
5899 | 1,2006,777,1,26, | ||
5900 | 2087,19,335,1,26, | ||
5901 | 2088,5,77,1,328, | ||
5902 | 1110,1,1333,2089,16, | ||
5903 | 0,333,1,1094,1241, | ||
5904 | 1,1438,2090,16,0, | ||
5905 | 333,1,223,2091,16, | ||
5906 | 0,333,1,428,2092, | ||
5907 | 16,0,333,1,118, | ||
5908 | 1162,1,883,2093,16, | ||
5909 | 0,333,1,453,2094, | ||
5910 | 16,0,557,1,1001, | ||
5911 | 994,1,130,1205,1, | ||
5912 | 1112,1145,1,242,2095, | ||
5913 | 16,0,333,1,1769, | ||
5914 | 2096,16,0,333,1, | ||
5915 | 463,1314,1,573,1083, | ||
5916 | 1,1228,2097,16,0, | ||
5917 | 333,1,1011,1089,1, | ||
5918 | 1121,2098,16,0,333, | ||
5919 | 1,143,2099,16,0, | ||
5920 | 333,1,352,1152,1, | ||
5921 | 1674,2100,16,0,333, | ||
5922 | 1,40,1002,1,477, | ||
5923 | 988,1,42,2101,16, | ||
5924 | 0,333,1,479,1330, | ||
5925 | 1,44,1018,1,373, | ||
5926 | 1173,1,47,1019,1, | ||
5927 | 48,1025,1,49,1031, | ||
5928 | 1,50,1036,1,51, | ||
5929 | 1041,1,1482,2102,16, | ||
5930 | 0,333,1,380,1193, | ||
5931 | 1,157,2103,16,0, | ||
5932 | 333,1,476,1303,1, | ||
5933 | 371,1167,1,1366,2104, | ||
5934 | 16,0,333,1,375, | ||
5935 | 1178,1,1010,2105,16, | ||
5936 | 0,333,1,63,1053, | ||
5937 | 1,1263,2106,16,0, | ||
5938 | 333,1,283,1008,1, | ||
5939 | 66,1063,1,67,1100, | ||
5940 | 1,1158,2107,16,0, | ||
5941 | 333,1,69,1073,1, | ||
5942 | 70,1078,1,68,1068, | ||
5943 | 1,73,2108,16,0, | ||
5944 | 333,1,74,1095,1, | ||
5945 | 494,2109,16,0,578, | ||
5946 | 1,377,1183,1,172, | ||
5947 | 1252,1,1713,2110,16, | ||
5948 | 0,333,1,188,1275, | ||
5949 | 1,82,2111,16,0, | ||
5950 | 333,1,262,975,1, | ||
5951 | 504,956,1,305,1046, | ||
5952 | 1,1527,2112,16,0, | ||
5953 | 333,1,1565,2113,16, | ||
5954 | 0,333,1,403,2114, | ||
5955 | 16,0,333,1,827, | ||
5956 | 2115,16,0,333,1, | ||
5957 | 1046,1105,1,93,2116, | ||
5958 | 16,0,333,1,1402, | ||
5959 | 2117,16,0,333,1, | ||
5960 | 205,2118,16,0,333, | ||
5961 | 1,2207,2119,16,0, | ||
5962 | 333,1,1298,2120,16, | ||
5963 | 0,333,1,1002,1058, | ||
5964 | 1,942,1288,1,1193, | ||
5965 | 2121,16,0,333,1, | ||
5966 | 379,1247,1,478,1325, | ||
5967 | 1,107,2122,16,0, | ||
5968 | 333,1,27,2123,19, | ||
5969 | 484,1,27,2124,5, | ||
5970 | 77,1,1853,649,1, | ||
5971 | 1854,655,1,1855,660, | ||
5972 | 1,112,2125,16,0, | ||
5973 | 482,1,384,2126,16, | ||
5974 | 0,482,1,1858,667, | ||
5975 | 1,1860,672,1,1862, | ||
5976 | 677,1,1863,682,1, | ||
5977 | 447,2127,16,0,482, | ||
5978 | 1,1611,2128,16,0, | ||
5979 | 482,1,124,2129,16, | ||
5980 | 0,482,1,1760,688, | ||
5981 | 1,236,2130,16,0, | ||
5982 | 482,1,1763,2131,16, | ||
5983 | 0,482,1,2201,2132, | ||
5984 | 16,0,482,1,1222, | ||
5985 | 2133,16,0,482,1, | ||
5986 | 1115,2134,16,0,482, | ||
5987 | 1,1187,2135,16,0, | ||
5988 | 482,1,137,2136,16, | ||
5989 | 0,482,1,217,2137, | ||
5990 | 16,0,482,1,32, | ||
5991 | 2138,16,0,482,1, | ||
5992 | 1668,2139,16,0,482, | ||
5993 | 1,1514,2140,16,0, | ||
5994 | 482,1,256,2141,16, | ||
5995 | 0,482,1,41,2142, | ||
5996 | 16,0,482,1,151, | ||
5997 | 2143,16,0,482,1, | ||
5998 | 43,2144,16,0,482, | ||
5999 | 1,1732,2145,16,0, | ||
6000 | 482,1,1637,710,1, | ||
6001 | 2009,716,1,1639,2146, | ||
6002 | 16,0,482,1,2011, | ||
6003 | 723,1,1467,729,1, | ||
6004 | 1584,2147,16,0,482, | ||
6005 | 1,52,2148,16,0, | ||
6006 | 482,1,381,2149,16, | ||
6007 | 0,482,1,346,2150, | ||
6008 | 16,0,482,1,166, | ||
6009 | 2151,16,0,482,1, | ||
6010 | 1257,2152,16,0,482, | ||
6011 | 1,1694,740,1,1432, | ||
6012 | 2153,16,0,482,1, | ||
6013 | 1152,2154,16,0,482, | ||
6014 | 1,1856,748,1,62, | ||
6015 | 2155,16,0,482,1, | ||
6016 | 1965,2156,16,0,482, | ||
6017 | 1,504,2157,16,0, | ||
6018 | 482,1,277,2158,16, | ||
6019 | 0,482,1,397,2159, | ||
6020 | 16,0,482,1,71, | ||
6021 | 2160,16,0,482,1, | ||
6022 | 1707,2161,16,0,482, | ||
6023 | 1,1817,760,1,1818, | ||
6024 | 2162,16,0,482,1, | ||
6025 | 463,2163,16,0,482, | ||
6026 | 1,76,2164,16,0, | ||
6027 | 482,1,1385,769,1, | ||
6028 | 79,2165,16,0,482, | ||
6029 | 1,182,2166,16,0, | ||
6030 | 482,1,299,2167,16, | ||
6031 | 0,482,1,2006,777, | ||
6032 | 1,1559,2168,16,0, | ||
6033 | 482,1,85,2169,16, | ||
6034 | 0,482,1,488,2170, | ||
6035 | 16,0,482,1,1396, | ||
6036 | 2171,16,0,482,1, | ||
6037 | 89,2172,16,0,482, | ||
6038 | 1,199,2173,16,0, | ||
6039 | 482,1,1292,2174,16, | ||
6040 | 0,482,1,422,2175, | ||
6041 | 16,0,482,1,97, | ||
6042 | 2176,16,0,482,1, | ||
6043 | 1469,2177,16,0,482, | ||
6044 | 1,1788,2178,16,0, | ||
6045 | 482,1,102,2179,16, | ||
6046 | 0,482,1,1847,794, | ||
6047 | 1,322,2180,16,0, | ||
6048 | 482,1,1327,2181,16, | ||
6049 | 0,482,1,2005,801, | ||
6050 | 1,1852,806,1,28, | ||
6051 | 2182,19,139,1,28, | ||
6052 | 2183,5,59,1,328, | ||
6053 | 1110,1,1094,1241,1, | ||
6054 | 223,1293,1,118,1162, | ||
6055 | 1,883,1199,1,1001, | ||
6056 | 994,1,130,1205,1, | ||
6057 | 1112,1145,1,242,1320, | ||
6058 | 1,352,1152,1,463, | ||
6059 | 1314,1,573,1083,1, | ||
6060 | 574,1401,1,1011,1089, | ||
6061 | 1,143,1216,1,40, | ||
6062 | 1002,1,41,1390,1, | ||
6063 | 42,1394,1,479,1330, | ||
6064 | 1,44,1018,1,373, | ||
6065 | 1173,1,47,1019,1, | ||
6066 | 157,1236,1,49,1031, | ||
6067 | 1,50,1036,1,48, | ||
6068 | 1025,1,379,1247,1, | ||
6069 | 380,1193,1,51,1041, | ||
6070 | 1,383,2184,16,0, | ||
6071 | 137,1,371,1167,1, | ||
6072 | 478,1325,1,386,1411, | ||
6073 | 1,375,1178,1,172, | ||
6074 | 1252,1,262,975,1, | ||
6075 | 283,1008,1,63,1053, | ||
6076 | 1,67,1100,1,68, | ||
6077 | 1068,1,69,1073,1, | ||
6078 | 66,1063,1,476,1303, | ||
6079 | 1,477,988,1,74, | ||
6080 | 1095,1,377,1183,1, | ||
6081 | 1002,1058,1,70,1078, | ||
6082 | 1,188,1275,1,381, | ||
6083 | 1417,1,82,1120,1, | ||
6084 | 504,956,1,305,1046, | ||
6085 | 1,827,1188,1,93, | ||
6086 | 1146,1,205,1281,1, | ||
6087 | 1046,1105,1,942,1288, | ||
6088 | 1,107,1140,1,29, | ||
6089 | 2185,19,287,1,29, | ||
6090 | 2186,5,77,1,328, | ||
6091 | 1110,1,1333,2187,16, | ||
6092 | 0,285,1,1094,1241, | ||
6093 | 1,1438,2188,16,0, | ||
6094 | 285,1,223,2189,16, | ||
6095 | 0,285,1,428,2190, | ||
6096 | 16,0,285,1,118, | ||
6097 | 1162,1,883,2191,16, | ||
6098 | 0,285,1,453,2192, | ||
6099 | 16,0,285,1,1001, | ||
6100 | 994,1,130,1205,1, | ||
6101 | 1112,1145,1,242,2193, | ||
6102 | 16,0,285,1,1769, | ||
6103 | 2194,16,0,285,1, | ||
6104 | 463,1314,1,573,1083, | ||
6105 | 1,1228,2195,16,0, | ||
6106 | 285,1,1011,1089,1, | ||
6107 | 1121,2196,16,0,285, | ||
6108 | 1,143,1216,1,352, | ||
6109 | 1152,1,1674,2197,16, | ||
6110 | 0,285,1,40,1002, | ||
6111 | 1,477,988,1,42, | ||
6112 | 2198,16,0,285,1, | ||
6113 | 479,1330,1,44,1018, | ||
6114 | 1,373,1173,1,47, | ||
6115 | 1019,1,48,1025,1, | ||
6116 | 49,1031,1,50,1036, | ||
6117 | 1,51,1041,1,1482, | ||
6118 | 2199,16,0,285,1, | ||
6119 | 380,1193,1,157,1236, | ||
6120 | 1,476,1303,1,371, | ||
6121 | 1167,1,1366,2200,16, | ||
6122 | 0,285,1,375,1178, | ||
6123 | 1,1010,2201,16,0, | ||
6124 | 285,1,63,1053,1, | ||
6125 | 1263,2202,16,0,285, | ||
6126 | 1,283,1008,1,66, | ||
6127 | 1063,1,67,1100,1, | ||
6128 | 1158,2203,16,0,285, | ||
6129 | 1,69,1073,1,70, | ||
6130 | 1078,1,68,1068,1, | ||
6131 | 73,2204,16,0,285, | ||
6132 | 1,74,1095,1,494, | ||
6133 | 2205,16,0,285,1, | ||
6134 | 377,1183,1,172,1252, | ||
6135 | 1,1713,2206,16,0, | ||
6136 | 285,1,188,1275,1, | ||
6137 | 82,2207,16,0,285, | ||
6138 | 1,262,975,1,504, | ||
6139 | 956,1,305,1046,1, | ||
6140 | 1527,2208,16,0,285, | ||
6141 | 1,1565,2209,16,0, | ||
6142 | 285,1,403,2210,16, | ||
6143 | 0,285,1,827,2211, | ||
6144 | 16,0,285,1,1046, | ||
6145 | 1105,1,93,2212,16, | ||
6146 | 0,285,1,1402,2213, | ||
6147 | 16,0,285,1,205, | ||
6148 | 2214,16,0,285,1, | ||
6149 | 2207,2215,16,0,285, | ||
6150 | 1,1298,2216,16,0, | ||
6151 | 285,1,1002,1058,1, | ||
6152 | 942,1288,1,1193,2217, | ||
6153 | 16,0,285,1,379, | ||
6154 | 1247,1,478,1325,1, | ||
6155 | 107,2218,16,0,285, | ||
6156 | 1,30,2219,19,273, | ||
6157 | 1,30,2220,5,77, | ||
6158 | 1,328,1110,1,1333, | ||
6159 | 2221,16,0,271,1, | ||
6160 | 1094,1241,1,1438,2222, | ||
6161 | 16,0,271,1,223, | ||
6162 | 2223,16,0,271,1, | ||
6163 | 428,2224,16,0,271, | ||
6164 | 1,118,1162,1,883, | ||
6165 | 2225,16,0,271,1, | ||
6166 | 453,2226,16,0,271, | ||
6167 | 1,1001,994,1,130, | ||
6168 | 1205,1,1112,1145,1, | ||
6169 | 242,2227,16,0,271, | ||
6170 | 1,1769,2228,16,0, | ||
6171 | 271,1,463,1314,1, | ||
6172 | 573,1083,1,1228,2229, | ||
6173 | 16,0,271,1,1011, | ||
6174 | 1089,1,1121,2230,16, | ||
6175 | 0,271,1,143,1216, | ||
6176 | 1,352,1152,1,1674, | ||
6177 | 2231,16,0,271,1, | ||
6178 | 40,1002,1,477,988, | ||
6179 | 1,42,2232,16,0, | ||
6180 | 271,1,479,1330,1, | ||
6181 | 44,1018,1,373,1173, | ||
6182 | 1,47,1019,1,48, | ||
6183 | 1025,1,49,1031,1, | ||
6184 | 50,1036,1,51,1041, | ||
6185 | 1,1482,2233,16,0, | ||
6186 | 271,1,380,1193,1, | ||
6187 | 157,1236,1,476,1303, | ||
6188 | 1,371,1167,1,1366, | ||
6189 | 2234,16,0,271,1, | ||
6190 | 375,1178,1,1010,2235, | ||
6191 | 16,0,271,1,63, | ||
6192 | 1053,1,1263,2236,16, | ||
6193 | 0,271,1,283,1008, | ||
6194 | 1,66,1063,1,67, | ||
6195 | 1100,1,1158,2237,16, | ||
6196 | 0,271,1,69,1073, | ||
6197 | 1,70,1078,1,68, | ||
6198 | 1068,1,73,2238,16, | ||
6199 | 0,271,1,74,1095, | ||
6200 | 1,494,2239,16,0, | ||
6201 | 271,1,377,1183,1, | ||
6202 | 172,1252,1,1713,2240, | ||
6203 | 16,0,271,1,188, | ||
6204 | 1275,1,82,2241,16, | ||
6205 | 0,271,1,262,975, | ||
6206 | 1,504,956,1,305, | ||
6207 | 1046,1,1527,2242,16, | ||
6208 | 0,271,1,1565,2243, | ||
6209 | 16,0,271,1,403, | ||
6210 | 2244,16,0,271,1, | ||
6211 | 827,2245,16,0,271, | ||
6212 | 1,1046,1105,1,93, | ||
6213 | 2246,16,0,271,1, | ||
6214 | 1402,2247,16,0,271, | ||
6215 | 1,205,2248,16,0, | ||
6216 | 271,1,2207,2249,16, | ||
6217 | 0,271,1,1298,2250, | ||
6218 | 16,0,271,1,1002, | ||
6219 | 1058,1,942,1288,1, | ||
6220 | 1193,2251,16,0,271, | ||
6221 | 1,379,1247,1,478, | ||
6222 | 1325,1,107,2252,16, | ||
6223 | 0,271,1,31,2253, | ||
6224 | 19,269,1,31,2254, | ||
6225 | 5,77,1,328,1110, | ||
6226 | 1,1333,2255,16,0, | ||
6227 | 267,1,1094,1241,1, | ||
6228 | 1438,2256,16,0,267, | ||
6229 | 1,223,2257,16,0, | ||
6230 | 267,1,428,2258,16, | ||
6231 | 0,267,1,118,1162, | ||
6232 | 1,883,2259,16,0, | ||
6233 | 267,1,453,2260,16, | ||
6234 | 0,267,1,1001,994, | ||
6235 | 1,130,1205,1,1112, | ||
6236 | 1145,1,242,2261,16, | ||
6237 | 0,267,1,1769,2262, | ||
6238 | 16,0,267,1,463, | ||
6239 | 1314,1,573,1083,1, | ||
6240 | 1228,2263,16,0,267, | ||
6241 | 1,1011,1089,1,1121, | ||
6242 | 2264,16,0,267,1, | ||
6243 | 143,2265,16,0,267, | ||
6244 | 1,352,1152,1,1674, | ||
6245 | 2266,16,0,267,1, | ||
6246 | 40,1002,1,477,988, | ||
6247 | 1,42,2267,16,0, | ||
6248 | 267,1,479,1330,1, | ||
6249 | 44,1018,1,373,1173, | ||
6250 | 1,47,1019,1,48, | ||
6251 | 1025,1,49,1031,1, | ||
6252 | 50,1036,1,51,1041, | ||
6253 | 1,1482,2268,16,0, | ||
6254 | 267,1,380,1193,1, | ||
6255 | 157,2269,16,0,267, | ||
6256 | 1,476,1303,1,371, | ||
6257 | 1167,1,1366,2270,16, | ||
6258 | 0,267,1,375,1178, | ||
6259 | 1,1010,2271,16,0, | ||
6260 | 267,1,63,1053,1, | ||
6261 | 1263,2272,16,0,267, | ||
6262 | 1,283,1008,1,66, | ||
6263 | 1063,1,67,1100,1, | ||
6264 | 1158,2273,16,0,267, | ||
6265 | 1,69,1073,1,70, | ||
6266 | 1078,1,68,1068,1, | ||
6267 | 73,2274,16,0,267, | ||
6268 | 1,74,1095,1,494, | ||
6269 | 2275,16,0,267,1, | ||
6270 | 377,1183,1,172,1252, | ||
6271 | 1,1713,2276,16,0, | ||
6272 | 267,1,188,1275,1, | ||
6273 | 82,2277,16,0,267, | ||
6274 | 1,262,975,1,504, | ||
6275 | 956,1,305,1046,1, | ||
6276 | 1527,2278,16,0,267, | ||
6277 | 1,1565,2279,16,0, | ||
6278 | 267,1,403,2280,16, | ||
6279 | 0,267,1,827,2281, | ||
6280 | 16,0,267,1,1046, | ||
6281 | 1105,1,93,2282,16, | ||
6282 | 0,267,1,1402,2283, | ||
6283 | 16,0,267,1,205, | ||
6284 | 2284,16,0,267,1, | ||
6285 | 2207,2285,16,0,267, | ||
6286 | 1,1298,2286,16,0, | ||
6287 | 267,1,1002,1058,1, | ||
6288 | 942,1288,1,1193,2287, | ||
6289 | 16,0,267,1,379, | ||
6290 | 1247,1,478,1325,1, | ||
6291 | 107,2288,16,0,267, | ||
6292 | 1,32,2289,19,262, | ||
6293 | 1,32,2290,5,77, | ||
6294 | 1,328,1110,1,1333, | ||
6295 | 2291,16,0,260,1, | ||
6296 | 1094,1241,1,1438,2292, | ||
6297 | 16,0,260,1,223, | ||
6298 | 2293,16,0,260,1, | ||
6299 | 428,2294,16,0,260, | ||
6300 | 1,118,1162,1,883, | ||
6301 | 2295,16,0,260,1, | ||
6302 | 453,2296,16,0,260, | ||
6303 | 1,1001,994,1,130, | ||
6304 | 1205,1,1112,1145,1, | ||
6305 | 242,2297,16,0,260, | ||
6306 | 1,1769,2298,16,0, | ||
6307 | 260,1,463,1314,1, | ||
6308 | 573,1083,1,1228,2299, | ||
6309 | 16,0,260,1,1011, | ||
6310 | 1089,1,1121,2300,16, | ||
6311 | 0,260,1,143,2301, | ||
6312 | 16,0,260,1,352, | ||
6313 | 1152,1,1674,2302,16, | ||
6314 | 0,260,1,40,1002, | ||
6315 | 1,477,988,1,42, | ||
6316 | 2303,16,0,260,1, | ||
6317 | 479,1330,1,44,1018, | ||
6318 | 1,373,1173,1,47, | ||
6319 | 1019,1,48,1025,1, | ||
6320 | 49,1031,1,50,1036, | ||
6321 | 1,51,1041,1,1482, | ||
6322 | 2304,16,0,260,1, | ||
6323 | 380,1193,1,157,2305, | ||
6324 | 16,0,260,1,476, | ||
6325 | 1303,1,371,1167,1, | ||
6326 | 1366,2306,16,0,260, | ||
6327 | 1,375,1178,1,1010, | ||
6328 | 2307,16,0,260,1, | ||
6329 | 63,1053,1,1263,2308, | ||
6330 | 16,0,260,1,283, | ||
6331 | 1008,1,66,1063,1, | ||
6332 | 67,1100,1,1158,2309, | ||
6333 | 16,0,260,1,69, | ||
6334 | 1073,1,70,1078,1, | ||
6335 | 68,1068,1,73,2310, | ||
6336 | 16,0,260,1,74, | ||
6337 | 1095,1,494,2311,16, | ||
6338 | 0,260,1,377,1183, | ||
6339 | 1,172,1252,1,1713, | ||
6340 | 2312,16,0,260,1, | ||
6341 | 188,1275,1,82,2313, | ||
6342 | 16,0,260,1,262, | ||
6343 | 975,1,504,956,1, | ||
6344 | 305,1046,1,1527,2314, | ||
6345 | 16,0,260,1,1565, | ||
6346 | 2315,16,0,260,1, | ||
6347 | 403,2316,16,0,260, | ||
6348 | 1,827,2317,16,0, | ||
6349 | 260,1,1046,1105,1, | ||
6350 | 93,2318,16,0,260, | ||
6351 | 1,1402,2319,16,0, | ||
6352 | 260,1,205,2320,16, | ||
6353 | 0,260,1,2207,2321, | ||
6354 | 16,0,260,1,1298, | ||
6355 | 2322,16,0,260,1, | ||
6356 | 1002,1058,1,942,1288, | ||
6357 | 1,1193,2323,16,0, | ||
6358 | 260,1,379,1247,1, | ||
6359 | 478,1325,1,107,2324, | ||
6360 | 16,0,260,1,33, | ||
6361 | 2325,19,350,1,33, | ||
6362 | 2326,5,77,1,328, | ||
6363 | 1110,1,1333,2327,16, | ||
6364 | 0,348,1,1094,1241, | ||
6365 | 1,1438,2328,16,0, | ||
6366 | 348,1,223,2329,16, | ||
6367 | 0,348,1,428,2330, | ||
6368 | 16,0,348,1,118, | ||
6369 | 1162,1,883,2331,16, | ||
6370 | 0,348,1,453,2332, | ||
6371 | 16,0,348,1,1001, | ||
6372 | 994,1,130,1205,1, | ||
6373 | 1112,1145,1,242,1320, | ||
6374 | 1,1769,2333,16,0, | ||
6375 | 348,1,463,1314,1, | ||
6376 | 573,1083,1,1228,2334, | ||
6377 | 16,0,348,1,1011, | ||
6378 | 1089,1,1121,2335,16, | ||
6379 | 0,348,1,143,1216, | ||
6380 | 1,352,1152,1,1674, | ||
6381 | 2336,16,0,348,1, | ||
6382 | 40,1002,1,477,988, | ||
6383 | 1,42,2337,16,0, | ||
6384 | 348,1,479,1330,1, | ||
6385 | 44,1018,1,373,1173, | ||
6386 | 1,47,1019,1,48, | ||
6387 | 1025,1,49,1031,1, | ||
6388 | 50,1036,1,51,1041, | ||
6389 | 1,1482,2338,16,0, | ||
6390 | 348,1,380,1193,1, | ||
6391 | 157,1236,1,476,1303, | ||
6392 | 1,371,1167,1,1366, | ||
6393 | 2339,16,0,348,1, | ||
6394 | 375,1178,1,1010,2340, | ||
6395 | 16,0,348,1,63, | ||
6396 | 1053,1,1263,2341,16, | ||
6397 | 0,348,1,283,1008, | ||
6398 | 1,66,1063,1,67, | ||
6399 | 1100,1,1158,2342,16, | ||
6400 | 0,348,1,69,1073, | ||
6401 | 1,70,1078,1,68, | ||
6402 | 1068,1,73,2343,16, | ||
6403 | 0,348,1,74,1095, | ||
6404 | 1,494,2344,16,0, | ||
6405 | 348,1,377,1183,1, | ||
6406 | 172,1252,1,1713,2345, | ||
6407 | 16,0,348,1,188, | ||
6408 | 1275,1,82,2346,16, | ||
6409 | 0,348,1,262,975, | ||
6410 | 1,504,956,1,305, | ||
6411 | 1046,1,1527,2347,16, | ||
6412 | 0,348,1,1565,2348, | ||
6413 | 16,0,348,1,403, | ||
6414 | 2349,16,0,348,1, | ||
6415 | 827,2350,16,0,348, | ||
6416 | 1,1046,1105,1,93, | ||
6417 | 2351,16,0,348,1, | ||
6418 | 1402,2352,16,0,348, | ||
6419 | 1,205,2353,16,0, | ||
6420 | 348,1,2207,2354,16, | ||
6421 | 0,348,1,1298,2355, | ||
6422 | 16,0,348,1,1002, | ||
6423 | 1058,1,942,1288,1, | ||
6424 | 1193,2356,16,0,348, | ||
6425 | 1,379,1247,1,478, | ||
6426 | 1325,1,107,2357,16, | ||
6427 | 0,348,1,34,2358, | ||
6428 | 19,344,1,34,2359, | ||
6429 | 5,77,1,328,1110, | ||
6430 | 1,1333,2360,16,0, | ||
6431 | 342,1,1094,1241,1, | ||
6432 | 1438,2361,16,0,342, | ||
6433 | 1,223,1293,1,428, | ||
6434 | 2362,16,0,342,1, | ||
6435 | 118,1162,1,883,2363, | ||
6436 | 16,0,342,1,453, | ||
6437 | 2364,16,0,342,1, | ||
6438 | 1001,994,1,130,1205, | ||
6439 | 1,1112,1145,1,242, | ||
6440 | 1320,1,1769,2365,16, | ||
6441 | 0,342,1,463,1314, | ||
6442 | 1,573,1083,1,1228, | ||
6443 | 2366,16,0,342,1, | ||
6444 | 1011,1089,1,1121,2367, | ||
6445 | 16,0,342,1,143, | ||
6446 | 1216,1,352,1152,1, | ||
6447 | 1674,2368,16,0,342, | ||
6448 | 1,40,1002,1,477, | ||
6449 | 988,1,42,2369,16, | ||
6450 | 0,342,1,479,1330, | ||
6451 | 1,44,1018,1,373, | ||
6452 | 1173,1,47,1019,1, | ||
6453 | 48,1025,1,49,1031, | ||
6454 | 1,50,1036,1,51, | ||
6455 | 1041,1,1482,2370,16, | ||
6456 | 0,342,1,380,1193, | ||
6457 | 1,157,1236,1,476, | ||
6458 | 1303,1,371,1167,1, | ||
6459 | 1366,2371,16,0,342, | ||
6460 | 1,375,1178,1,1010, | ||
6461 | 2372,16,0,342,1, | ||
6462 | 63,1053,1,1263,2373, | ||
6463 | 16,0,342,1,283, | ||
6464 | 1008,1,66,1063,1, | ||
6465 | 67,1100,1,1158,2374, | ||
6466 | 16,0,342,1,69, | ||
6467 | 1073,1,70,1078,1, | ||
6468 | 68,1068,1,73,2375, | ||
6469 | 16,0,342,1,74, | ||
6470 | 1095,1,494,2376,16, | ||
6471 | 0,342,1,377,1183, | ||
6472 | 1,172,1252,1,1713, | ||
6473 | 2377,16,0,342,1, | ||
6474 | 188,1275,1,82,2378, | ||
6475 | 16,0,342,1,262, | ||
6476 | 975,1,504,956,1, | ||
6477 | 305,1046,1,1527,2379, | ||
6478 | 16,0,342,1,1565, | ||
6479 | 2380,16,0,342,1, | ||
6480 | 403,2381,16,0,342, | ||
6481 | 1,827,2382,16,0, | ||
6482 | 342,1,1046,1105,1, | ||
6483 | 93,2383,16,0,342, | ||
6484 | 1,1402,2384,16,0, | ||
6485 | 342,1,205,1281,1, | ||
6486 | 2207,2385,16,0,342, | ||
6487 | 1,1298,2386,16,0, | ||
6488 | 342,1,1002,1058,1, | ||
6489 | 942,1288,1,1193,2387, | ||
6490 | 16,0,342,1,379, | ||
6491 | 1247,1,478,1325,1, | ||
6492 | 107,2388,16,0,342, | ||
6493 | 1,35,2389,19,338, | ||
6494 | 1,35,2390,5,77, | ||
6495 | 1,328,1110,1,1333, | ||
6496 | 2391,16,0,336,1, | ||
6497 | 1094,1241,1,1438,2392, | ||
6498 | 16,0,336,1,223, | ||
6499 | 2393,16,0,336,1, | ||
6500 | 428,2394,16,0,336, | ||
6501 | 1,118,1162,1,883, | ||
6502 | 2395,16,0,336,1, | ||
6503 | 453,2396,16,0,336, | ||
6504 | 1,1001,994,1,130, | ||
6505 | 1205,1,1112,1145,1, | ||
6506 | 242,1320,1,1769,2397, | ||
6507 | 16,0,336,1,463, | ||
6508 | 1314,1,573,1083,1, | ||
6509 | 1228,2398,16,0,336, | ||
6510 | 1,1011,1089,1,1121, | ||
6511 | 2399,16,0,336,1, | ||
6512 | 143,1216,1,352,1152, | ||
6513 | 1,1674,2400,16,0, | ||
6514 | 336,1,40,1002,1, | ||
6515 | 477,988,1,42,2401, | ||
6516 | 16,0,336,1,479, | ||
6517 | 1330,1,44,1018,1, | ||
6518 | 373,1173,1,47,1019, | ||
6519 | 1,48,1025,1,49, | ||
6520 | 1031,1,50,1036,1, | ||
6521 | 51,1041,1,1482,2402, | ||
6522 | 16,0,336,1,380, | ||
6523 | 1193,1,157,1236,1, | ||
6524 | 476,1303,1,371,1167, | ||
6525 | 1,1366,2403,16,0, | ||
6526 | 336,1,375,1178,1, | ||
6527 | 1010,2404,16,0,336, | ||
6528 | 1,63,1053,1,1263, | ||
6529 | 2405,16,0,336,1, | ||
6530 | 283,1008,1,66,1063, | ||
6531 | 1,67,1100,1,1158, | ||
6532 | 2406,16,0,336,1, | ||
6533 | 69,1073,1,70,1078, | ||
6534 | 1,68,1068,1,73, | ||
6535 | 2407,16,0,336,1, | ||
6536 | 74,1095,1,494,2408, | ||
6537 | 16,0,336,1,377, | ||
6538 | 1183,1,172,1252,1, | ||
6539 | 1713,2409,16,0,336, | ||
6540 | 1,188,1275,1,82, | ||
6541 | 2410,16,0,336,1, | ||
6542 | 262,975,1,504,956, | ||
6543 | 1,305,1046,1,1527, | ||
6544 | 2411,16,0,336,1, | ||
6545 | 1565,2412,16,0,336, | ||
6546 | 1,403,2413,16,0, | ||
6547 | 336,1,827,2414,16, | ||
6548 | 0,336,1,1046,1105, | ||
6549 | 1,93,2415,16,0, | ||
6550 | 336,1,1402,2416,16, | ||
6551 | 0,336,1,205,1281, | ||
6552 | 1,2207,2417,16,0, | ||
6553 | 336,1,1298,2418,16, | ||
6554 | 0,336,1,1002,1058, | ||
6555 | 1,942,1288,1,1193, | ||
6556 | 2419,16,0,336,1, | ||
6557 | 379,1247,1,478,1325, | ||
6558 | 1,107,2420,16,0, | ||
6559 | 336,1,36,2421,19, | ||
6560 | 231,1,36,2422,5, | ||
6561 | 76,1,1853,649,1, | ||
6562 | 1854,655,1,1855,660, | ||
6563 | 1,112,2423,16,0, | ||
6564 | 229,1,384,2424,16, | ||
6565 | 0,229,1,1858,667, | ||
6566 | 1,1860,672,1,1862, | ||
6567 | 677,1,1863,682,1, | ||
6568 | 447,2425,16,0,229, | ||
6569 | 1,1611,2426,16,0, | ||
6570 | 229,1,124,2427,16, | ||
6571 | 0,229,1,1760,688, | ||
6572 | 1,236,2428,16,0, | ||
6573 | 229,1,1763,2429,16, | ||
6574 | 0,229,1,2201,2430, | ||
6575 | 16,0,229,1,1222, | ||
6576 | 2431,16,0,229,1, | ||
6577 | 1115,2432,16,0,229, | ||
6578 | 1,1187,2433,16,0, | ||
6579 | 229,1,137,2434,16, | ||
6580 | 0,229,1,217,2435, | ||
6581 | 16,0,229,1,32, | ||
6582 | 2436,16,0,229,1, | ||
6583 | 1668,2437,16,0,229, | ||
6584 | 1,1514,2438,16,0, | ||
6585 | 229,1,256,2439,16, | ||
6586 | 0,229,1,41,2440, | ||
6587 | 16,0,229,1,151, | ||
6588 | 2441,16,0,229,1, | ||
6589 | 43,2442,16,0,229, | ||
6590 | 1,1732,2443,16,0, | ||
6591 | 229,1,1637,710,1, | ||
6592 | 2009,716,1,1639,2444, | ||
6593 | 16,0,229,1,2011, | ||
6594 | 723,1,1467,729,1, | ||
6595 | 1584,2445,16,0,229, | ||
6596 | 1,52,2446,16,0, | ||
6597 | 229,1,381,2447,16, | ||
6598 | 0,229,1,346,2448, | ||
6599 | 16,0,229,1,166, | ||
6600 | 2449,16,0,229,1, | ||
6601 | 1257,2450,16,0,229, | ||
6602 | 1,1694,740,1,1432, | ||
6603 | 2451,16,0,229,1, | ||
6604 | 1152,2452,16,0,229, | ||
6605 | 1,1856,748,1,1965, | ||
6606 | 2453,16,0,229,1, | ||
6607 | 504,2454,16,0,229, | ||
6608 | 1,277,2455,16,0, | ||
6609 | 229,1,397,2456,16, | ||
6610 | 0,229,1,71,2457, | ||
6611 | 16,0,229,1,1707, | ||
6612 | 2458,16,0,229,1, | ||
6613 | 1817,760,1,1818,2459, | ||
6614 | 16,0,229,1,463, | ||
6615 | 2460,16,0,229,1, | ||
6616 | 76,2461,16,0,229, | ||
6617 | 1,1385,769,1,79, | ||
6618 | 2462,16,0,229,1, | ||
6619 | 182,2463,16,0,229, | ||
6620 | 1,299,2464,16,0, | ||
6621 | 229,1,2006,777,1, | ||
6622 | 1559,2465,16,0,229, | ||
6623 | 1,85,2466,16,0, | ||
6624 | 229,1,488,2467,16, | ||
6625 | 0,229,1,1396,2468, | ||
6626 | 16,0,229,1,89, | ||
6627 | 2469,16,0,229,1, | ||
6628 | 199,2470,16,0,229, | ||
6629 | 1,1292,2471,16,0, | ||
6630 | 229,1,422,2472,16, | ||
6631 | 0,229,1,97,2473, | ||
6632 | 16,0,229,1,1469, | ||
6633 | 2474,16,0,229,1, | ||
6634 | 1788,2475,16,0,229, | ||
6635 | 1,102,2476,16,0, | ||
6636 | 229,1,1847,794,1, | ||
6637 | 322,2477,16,0,229, | ||
6638 | 1,1327,2478,16,0, | ||
6639 | 229,1,2005,801,1, | ||
6640 | 1852,806,1,37,2479, | ||
6641 | 19,252,1,37,2480, | ||
6642 | 5,76,1,1853,649, | ||
6643 | 1,1854,655,1,1855, | ||
6644 | 660,1,112,2481,16, | ||
6645 | 0,250,1,384,2482, | ||
6646 | 16,0,250,1,1858, | ||
6647 | 667,1,1860,672,1, | ||
6648 | 1862,677,1,1863,682, | ||
6649 | 1,447,2483,16,0, | ||
6650 | 250,1,1611,2484,16, | ||
6651 | 0,250,1,124,2485, | ||
6652 | 16,0,250,1,1760, | ||
6653 | 688,1,236,2486,16, | ||
6654 | 0,250,1,1763,2487, | ||
6655 | 16,0,250,1,2201, | ||
6656 | 2488,16,0,250,1, | ||
6657 | 1222,2489,16,0,250, | ||
6658 | 1,1115,2490,16,0, | ||
6659 | 250,1,1187,2491,16, | ||
6660 | 0,250,1,137,2492, | ||
6661 | 16,0,250,1,217, | ||
6662 | 2493,16,0,250,1, | ||
6663 | 32,2494,16,0,250, | ||
6664 | 1,1668,2495,16,0, | ||
6665 | 250,1,1514,2496,16, | ||
6666 | 0,250,1,256,2497, | ||
6667 | 16,0,250,1,41, | ||
6668 | 2498,16,0,250,1, | ||
6669 | 151,2499,16,0,250, | ||
6670 | 1,43,2500,16,0, | ||
6671 | 250,1,1732,2501,16, | ||
6672 | 0,250,1,1637,710, | ||
6673 | 1,2009,716,1,1639, | ||
6674 | 2502,16,0,250,1, | ||
6675 | 2011,723,1,1467,729, | ||
6676 | 1,1584,2503,16,0, | ||
6677 | 250,1,52,2504,16, | ||
6678 | 0,250,1,381,2505, | ||
6679 | 16,0,250,1,346, | ||
6680 | 2506,16,0,250,1, | ||
6681 | 166,2507,16,0,250, | ||
6682 | 1,1257,2508,16,0, | ||
6683 | 250,1,1694,740,1, | ||
6684 | 1432,2509,16,0,250, | ||
6685 | 1,1152,2510,16,0, | ||
6686 | 250,1,1856,748,1, | ||
6687 | 1965,2511,16,0,250, | ||
6688 | 1,504,2512,16,0, | ||
6689 | 250,1,277,2513,16, | ||
6690 | 0,250,1,397,2514, | ||
6691 | 16,0,250,1,71, | ||
6692 | 2515,16,0,250,1, | ||
6693 | 1707,2516,16,0,250, | ||
6694 | 1,1817,760,1,1818, | ||
6695 | 2517,16,0,250,1, | ||
6696 | 463,2518,16,0,250, | ||
6697 | 1,76,2519,16,0, | ||
6698 | 250,1,1385,769,1, | ||
6699 | 79,2520,16,0,250, | ||
6700 | 1,182,2521,16,0, | ||
6701 | 250,1,299,2522,16, | ||
6702 | 0,250,1,2006,777, | ||
6703 | 1,1559,2523,16,0, | ||
6704 | 250,1,85,2524,16, | ||
6705 | 0,250,1,488,2525, | ||
6706 | 16,0,250,1,1396, | ||
6707 | 2526,16,0,250,1, | ||
6708 | 89,2527,16,0,250, | ||
6709 | 1,199,2528,16,0, | ||
6710 | 250,1,1292,2529,16, | ||
6711 | 0,250,1,422,2530, | ||
6712 | 16,0,250,1,97, | ||
6713 | 2531,16,0,250,1, | ||
6714 | 1469,2532,16,0,250, | ||
6715 | 1,1788,2533,16,0, | ||
6716 | 250,1,102,2534,16, | ||
6717 | 0,250,1,1847,794, | ||
6718 | 1,322,2535,16,0, | ||
6719 | 250,1,1327,2536,16, | ||
6720 | 0,250,1,2005,801, | ||
6721 | 1,1852,806,1,38, | ||
6722 | 2537,19,248,1,38, | ||
6723 | 2538,5,77,1,328, | ||
6724 | 1110,1,1333,2539,16, | ||
6725 | 0,246,1,1094,1241, | ||
6726 | 1,1438,2540,16,0, | ||
6727 | 246,1,223,1293,1, | ||
6728 | 428,2541,16,0,246, | ||
6729 | 1,118,1162,1,883, | ||
6730 | 1199,1,453,2542,16, | ||
6731 | 0,246,1,1001,994, | ||
6732 | 1,130,1205,1,1112, | ||
6733 | 1145,1,242,1320,1, | ||
6734 | 1769,2543,16,0,246, | ||
6735 | 1,463,1314,1,573, | ||
6736 | 1083,1,1228,2544,16, | ||
6737 | 0,246,1,1011,1089, | ||
6738 | 1,1121,2545,16,0, | ||
6739 | 246,1,143,1216,1, | ||
6740 | 352,1152,1,1674,2546, | ||
6741 | 16,0,246,1,40, | ||
6742 | 1002,1,477,988,1, | ||
6743 | 42,2547,16,0,246, | ||
6744 | 1,479,1330,1,44, | ||
6745 | 1018,1,373,1173,1, | ||
6746 | 47,1019,1,48,1025, | ||
6747 | 1,49,1031,1,50, | ||
6748 | 1036,1,51,1041,1, | ||
6749 | 1482,2548,16,0,246, | ||
6750 | 1,380,1193,1,157, | ||
6751 | 1236,1,476,1303,1, | ||
6752 | 371,1167,1,1366,2549, | ||
6753 | 16,0,246,1,375, | ||
6754 | 1178,1,1010,2550,16, | ||
6755 | 0,246,1,63,1053, | ||
6756 | 1,1263,2551,16,0, | ||
6757 | 246,1,283,1008,1, | ||
6758 | 66,1063,1,67,1100, | ||
6759 | 1,1158,2552,16,0, | ||
6760 | 246,1,69,1073,1, | ||
6761 | 70,1078,1,68,1068, | ||
6762 | 1,73,2553,16,0, | ||
6763 | 246,1,74,1095,1, | ||
6764 | 494,2554,16,0,246, | ||
6765 | 1,377,1183,1,172, | ||
6766 | 1252,1,1713,2555,16, | ||
6767 | 0,246,1,188,1275, | ||
6768 | 1,82,2556,16,0, | ||
6769 | 246,1,262,975,1, | ||
6770 | 504,956,1,305,1046, | ||
6771 | 1,1527,2557,16,0, | ||
6772 | 246,1,1565,2558,16, | ||
6773 | 0,246,1,403,2559, | ||
6774 | 16,0,246,1,827, | ||
6775 | 1188,1,1046,1105,1, | ||
6776 | 93,2560,16,0,246, | ||
6777 | 1,1402,2561,16,0, | ||
6778 | 246,1,205,1281,1, | ||
6779 | 2207,2562,16,0,246, | ||
6780 | 1,1298,2563,16,0, | ||
6781 | 246,1,1002,1058,1, | ||
6782 | 942,1288,1,1193,2564, | ||
6783 | 16,0,246,1,379, | ||
6784 | 1247,1,478,1325,1, | ||
6785 | 107,2565,16,0,246, | ||
6786 | 1,39,2566,19,234, | ||
6787 | 1,39,2567,5,77, | ||
6788 | 1,328,1110,1,1333, | ||
6789 | 2568,16,0,232,1, | ||
6790 | 1094,1241,1,1438,2569, | ||
6791 | 16,0,232,1,223, | ||
6792 | 1293,1,428,2570,16, | ||
6793 | 0,232,1,118,1162, | ||
6794 | 1,883,1199,1,453, | ||
6795 | 2571,16,0,232,1, | ||
6796 | 1001,994,1,130,1205, | ||
6797 | 1,1112,1145,1,242, | ||
6798 | 1320,1,1769,2572,16, | ||
6799 | 0,232,1,463,1314, | ||
6800 | 1,573,1083,1,1228, | ||
6801 | 2573,16,0,232,1, | ||
6802 | 1011,1089,1,1121,2574, | ||
6803 | 16,0,232,1,143, | ||
6804 | 1216,1,352,1152,1, | ||
6805 | 1674,2575,16,0,232, | ||
6806 | 1,40,1002,1,477, | ||
6807 | 988,1,42,2576,16, | ||
6808 | 0,232,1,479,1330, | ||
6809 | 1,44,1018,1,373, | ||
6810 | 1173,1,47,1019,1, | ||
6811 | 48,1025,1,49,1031, | ||
6812 | 1,50,1036,1,51, | ||
6813 | 1041,1,1482,2577,16, | ||
6814 | 0,232,1,380,1193, | ||
6815 | 1,157,1236,1,476, | ||
6816 | 1303,1,371,1167,1, | ||
6817 | 1366,2578,16,0,232, | ||
6818 | 1,375,1178,1,1010, | ||
6819 | 2579,16,0,232,1, | ||
6820 | 63,1053,1,1263,2580, | ||
6821 | 16,0,232,1,283, | ||
6822 | 1008,1,66,1063,1, | ||
6823 | 67,1100,1,1158,2581, | ||
6824 | 16,0,232,1,69, | ||
6825 | 1073,1,70,1078,1, | ||
6826 | 68,1068,1,73,2582, | ||
6827 | 16,0,232,1,74, | ||
6828 | 1095,1,494,2583,16, | ||
6829 | 0,232,1,377,1183, | ||
6830 | 1,172,1252,1,1713, | ||
6831 | 2584,16,0,232,1, | ||
6832 | 188,1275,1,82,2585, | ||
6833 | 16,0,232,1,262, | ||
6834 | 975,1,504,956,1, | ||
6835 | 305,1046,1,1527,2586, | ||
6836 | 16,0,232,1,1565, | ||
6837 | 2587,16,0,232,1, | ||
6838 | 403,2588,16,0,232, | ||
6839 | 1,827,1188,1,1046, | ||
6840 | 1105,1,93,2589,16, | ||
6841 | 0,232,1,1402,2590, | ||
6842 | 16,0,232,1,205, | ||
6843 | 1281,1,2207,2591,16, | ||
6844 | 0,232,1,1298,2592, | ||
6845 | 16,0,232,1,1002, | ||
6846 | 1058,1,942,1288,1, | ||
6847 | 1193,2593,16,0,232, | ||
6848 | 1,379,1247,1,478, | ||
6849 | 1325,1,107,2594,16, | ||
6850 | 0,232,1,40,2595, | ||
6851 | 19,224,1,40,2596, | ||
6852 | 5,77,1,328,1110, | ||
6853 | 1,1333,2597,16,0, | ||
6854 | 222,1,1094,1241,1, | ||
6855 | 1438,2598,16,0,222, | ||
6856 | 1,223,2599,16,0, | ||
6857 | 222,1,428,2600,16, | ||
6858 | 0,222,1,118,2601, | ||
6859 | 16,0,222,1,883, | ||
6860 | 2602,16,0,222,1, | ||
6861 | 453,2603,16,0,222, | ||
6862 | 1,1001,994,1,130, | ||
6863 | 2604,16,0,222,1, | ||
6864 | 1112,1145,1,242,2605, | ||
6865 | 16,0,222,1,1769, | ||
6866 | 2606,16,0,222,1, | ||
6867 | 463,1314,1,573,1083, | ||
6868 | 1,1228,2607,16,0, | ||
6869 | 222,1,1011,1089,1, | ||
6870 | 1121,2608,16,0,222, | ||
6871 | 1,143,2609,16,0, | ||
6872 | 222,1,352,1152,1, | ||
6873 | 1674,2610,16,0,222, | ||
6874 | 1,40,1002,1,477, | ||
6875 | 988,1,42,2611,16, | ||
6876 | 0,222,1,479,1330, | ||
6877 | 1,44,1018,1,373, | ||
6878 | 1173,1,47,1019,1, | ||
6879 | 48,1025,1,49,1031, | ||
6880 | 1,50,1036,1,51, | ||
6881 | 1041,1,1482,2612,16, | ||
6882 | 0,222,1,380,1193, | ||
6883 | 1,157,2613,16,0, | ||
6884 | 222,1,476,1303,1, | ||
6885 | 371,1167,1,1366,2614, | ||
6886 | 16,0,222,1,375, | ||
6887 | 1178,1,1010,2615,16, | ||
6888 | 0,222,1,63,1053, | ||
6889 | 1,1263,2616,16,0, | ||
6890 | 222,1,283,1008,1, | ||
6891 | 66,1063,1,67,1100, | ||
6892 | 1,1158,2617,16,0, | ||
6893 | 222,1,69,1073,1, | ||
6894 | 70,1078,1,68,1068, | ||
6895 | 1,73,2618,16,0, | ||
6896 | 222,1,74,1095,1, | ||
6897 | 494,2619,16,0,222, | ||
6898 | 1,377,1183,1,172, | ||
6899 | 2620,16,0,222,1, | ||
6900 | 1713,2621,16,0,222, | ||
6901 | 1,188,2622,16,0, | ||
6902 | 222,1,82,2623,16, | ||
6903 | 0,222,1,262,975, | ||
6904 | 1,504,956,1,305, | ||
6905 | 1046,1,1527,2624,16, | ||
6906 | 0,222,1,1565,2625, | ||
6907 | 16,0,222,1,403, | ||
6908 | 2626,16,0,222,1, | ||
6909 | 827,2627,16,0,222, | ||
6910 | 1,1046,1105,1,93, | ||
6911 | 2628,16,0,222,1, | ||
6912 | 1402,2629,16,0,222, | ||
6913 | 1,205,2630,16,0, | ||
6914 | 222,1,2207,2631,16, | ||
6915 | 0,222,1,1298,2632, | ||
6916 | 16,0,222,1,1002, | ||
6917 | 1058,1,942,1288,1, | ||
6918 | 1193,2633,16,0,222, | ||
6919 | 1,379,1247,1,478, | ||
6920 | 1325,1,107,2634,16, | ||
6921 | 0,222,1,41,2635, | ||
6922 | 19,194,1,41,2636, | ||
6923 | 5,77,1,328,1110, | ||
6924 | 1,1333,2637,16,0, | ||
6925 | 192,1,1094,1241,1, | ||
6926 | 1438,2638,16,0,192, | ||
6927 | 1,223,2639,16,0, | ||
6928 | 192,1,428,2640,16, | ||
6929 | 0,192,1,118,2641, | ||
6930 | 16,0,192,1,883, | ||
6931 | 2642,16,0,192,1, | ||
6932 | 453,2643,16,0,192, | ||
6933 | 1,1001,994,1,130, | ||
6934 | 2644,16,0,192,1, | ||
6935 | 1112,1145,1,242,2645, | ||
6936 | 16,0,192,1,1769, | ||
6937 | 2646,16,0,192,1, | ||
6938 | 463,1314,1,573,1083, | ||
6939 | 1,1228,2647,16,0, | ||
6940 | 192,1,1011,1089,1, | ||
6941 | 1121,2648,16,0,192, | ||
6942 | 1,143,2649,16,0, | ||
6943 | 192,1,352,1152,1, | ||
6944 | 1674,2650,16,0,192, | ||
6945 | 1,40,1002,1,477, | ||
6946 | 988,1,42,2651,16, | ||
6947 | 0,192,1,479,1330, | ||
6948 | 1,44,1018,1,373, | ||
6949 | 1173,1,47,1019,1, | ||
6950 | 48,1025,1,49,1031, | ||
6951 | 1,50,1036,1,51, | ||
6952 | 1041,1,1482,2652,16, | ||
6953 | 0,192,1,380,1193, | ||
6954 | 1,157,2653,16,0, | ||
6955 | 192,1,476,1303,1, | ||
6956 | 371,1167,1,1366,2654, | ||
6957 | 16,0,192,1,375, | ||
6958 | 1178,1,1010,2655,16, | ||
6959 | 0,192,1,63,1053, | ||
6960 | 1,1263,2656,16,0, | ||
6961 | 192,1,283,1008,1, | ||
6962 | 66,1063,1,67,1100, | ||
6963 | 1,1158,2657,16,0, | ||
6964 | 192,1,69,1073,1, | ||
6965 | 70,1078,1,68,1068, | ||
6966 | 1,73,2658,16,0, | ||
6967 | 192,1,74,1095,1, | ||
6968 | 494,2659,16,0,192, | ||
6969 | 1,377,1183,1,172, | ||
6970 | 2660,16,0,192,1, | ||
6971 | 1713,2661,16,0,192, | ||
6972 | 1,188,2662,16,0, | ||
6973 | 192,1,82,2663,16, | ||
6974 | 0,192,1,262,975, | ||
6975 | 1,504,956,1,305, | ||
6976 | 1046,1,1527,2664,16, | ||
6977 | 0,192,1,1565,2665, | ||
6978 | 16,0,192,1,403, | ||
6979 | 2666,16,0,192,1, | ||
6980 | 827,2667,16,0,192, | ||
6981 | 1,1046,1105,1,93, | ||
6982 | 2668,16,0,192,1, | ||
6983 | 1402,2669,16,0,192, | ||
6984 | 1,205,2670,16,0, | ||
6985 | 192,1,2207,2671,16, | ||
6986 | 0,192,1,1298,2672, | ||
6987 | 16,0,192,1,1002, | ||
6988 | 1058,1,942,1288,1, | ||
6989 | 1193,2673,16,0,192, | ||
6990 | 1,379,1247,1,478, | ||
6991 | 1325,1,107,2674,16, | ||
6992 | 0,192,1,42,2675, | ||
6993 | 19,243,1,42,2676, | ||
6994 | 5,27,1,1852,806, | ||
6995 | 1,1853,649,1,1817, | ||
6996 | 760,1,1818,2677,16, | ||
6997 | 0,241,1,1856,748, | ||
6998 | 1,2005,801,1,1858, | ||
6999 | 667,1,1637,710,1, | ||
7000 | 1860,672,1,2009,716, | ||
7001 | 1,1788,2678,16,0, | ||
7002 | 241,1,1863,682,1, | ||
7003 | 1385,769,1,2006,777, | ||
7004 | 1,1611,2679,16,0, | ||
7005 | 241,1,1760,688,1, | ||
7006 | 2011,723,1,1467,729, | ||
7007 | 1,1639,2680,16,0, | ||
7008 | 241,1,1854,655,1, | ||
7009 | 1855,660,1,1694,740, | ||
7010 | 1,1732,2681,16,0, | ||
7011 | 241,1,1965,2682,16, | ||
7012 | 0,241,1,32,2683, | ||
7013 | 16,0,241,1,1847, | ||
7014 | 794,1,1862,677,1, | ||
7015 | 43,2684,19,283,1, | ||
7016 | 43,2685,5,18,1, | ||
7017 | 1852,806,1,1853,649, | ||
7018 | 1,1817,2686,16,0, | ||
7019 | 281,1,1855,660,1, | ||
7020 | 1856,748,1,1858,667, | ||
7021 | 1,1637,710,1,1860, | ||
7022 | 672,1,1862,677,1, | ||
7023 | 1863,682,1,1385,769, | ||
7024 | 1,1760,688,1,1467, | ||
7025 | 729,1,1854,655,1, | ||
7026 | 1694,740,1,2011,723, | ||
7027 | 1,1847,794,1,2006, | ||
7028 | 777,1,44,2687,19, | ||
7029 | 597,1,44,2688,5, | ||
7030 | 27,1,1852,806,1, | ||
7031 | 1853,649,1,1817,760, | ||
7032 | 1,1818,2689,16,0, | ||
7033 | 595,1,1856,748,1, | ||
7034 | 2005,801,1,1858,667, | ||
7035 | 1,1637,710,1,1860, | ||
7036 | 672,1,2009,716,1, | ||
7037 | 1788,2690,16,0,595, | ||
7038 | 1,1863,682,1,1385, | ||
7039 | 769,1,2006,777,1, | ||
7040 | 1611,2691,16,0,595, | ||
7041 | 1,1760,688,1,2011, | ||
7042 | 723,1,1467,729,1, | ||
7043 | 1639,2692,16,0,595, | ||
7044 | 1,1854,655,1,1855, | ||
7045 | 660,1,1694,740,1, | ||
7046 | 1732,2693,16,0,595, | ||
7047 | 1,1965,2694,16,0, | ||
7048 | 595,1,32,2695,16, | ||
7049 | 0,595,1,1847,794, | ||
7050 | 1,1862,677,1,45, | ||
7051 | 2696,19,179,1,45, | ||
7052 | 2697,5,28,1,1853, | ||
7053 | 649,1,1854,655,1, | ||
7054 | 1637,710,1,1856,748, | ||
7055 | 1,1639,2698,16,0, | ||
7056 | 177,1,1858,667,1, | ||
7057 | 1860,672,1,1862,677, | ||
7058 | 1,1863,682,1,1760, | ||
7059 | 688,1,1666,2699,16, | ||
7060 | 0,607,1,32,2700, | ||
7061 | 16,0,177,1,2005, | ||
7062 | 801,1,1788,2701,16, | ||
7063 | 0,177,1,2009,716, | ||
7064 | 1,2011,723,1,1467, | ||
7065 | 729,1,1694,740,1, | ||
7066 | 1855,660,1,2006,777, | ||
7067 | 1,1965,2702,16,0, | ||
7068 | 177,1,1817,760,1, | ||
7069 | 1818,2703,16,0,177, | ||
7070 | 1,1385,769,1,1611, | ||
7071 | 2704,16,0,177,1, | ||
7072 | 1732,2705,16,0,177, | ||
7073 | 1,1847,794,1,1852, | ||
7074 | 806,1,46,2706,19, | ||
7075 | 423,1,46,2707,5, | ||
7076 | 27,1,1852,806,1, | ||
7077 | 1853,649,1,1817,760, | ||
7078 | 1,1818,2708,16,0, | ||
7079 | 421,1,1856,748,1, | ||
7080 | 2005,801,1,1858,667, | ||
7081 | 1,1637,710,1,1860, | ||
7082 | 672,1,2009,716,1, | ||
7083 | 1788,2709,16,0,421, | ||
7084 | 1,1863,682,1,1385, | ||
7085 | 769,1,2006,777,1, | ||
7086 | 1611,2710,16,0,421, | ||
7087 | 1,1760,688,1,2011, | ||
7088 | 723,1,1467,729,1, | ||
7089 | 1639,2711,16,0,421, | ||
7090 | 1,1854,655,1,1855, | ||
7091 | 660,1,1694,740,1, | ||
7092 | 1732,2712,16,0,421, | ||
7093 | 1,1965,2713,16,0, | ||
7094 | 421,1,32,2714,16, | ||
7095 | 0,421,1,1847,794, | ||
7096 | 1,1862,677,1,47, | ||
7097 | 2715,19,305,1,47, | ||
7098 | 2716,5,19,1,0, | ||
7099 | 2717,16,0,527,1, | ||
7100 | 2258,2718,17,2719,15, | ||
7101 | 2720,4,36,37,0, | ||
7102 | 71,0,108,0,111, | ||
7103 | 0,98,0,97,0, | ||
7104 | 108,0,68,0,101, | ||
7105 | 0,102,0,105,0, | ||
7106 | 110,0,105,0,116, | ||
7107 | 0,105,0,111,0, | ||
7108 | 110,0,115,0,1, | ||
7109 | -1,1,5,2721,20, | ||
7110 | 2722,4,38,71,0, | ||
7111 | 108,0,111,0,98, | ||
7112 | 0,97,0,108,0, | ||
7113 | 68,0,101,0,102, | ||
7114 | 0,105,0,110,0, | ||
7115 | 105,0,116,0,105, | ||
7116 | 0,111,0,110,0, | ||
7117 | 115,0,95,0,51, | ||
7118 | 0,1,141,1,3, | ||
7119 | 1,2,1,1,2723, | ||
7120 | 22,1,5,1,2259, | ||
7121 | 2724,17,2725,15,2720, | ||
7122 | 1,-1,1,5,2726, | ||
7123 | 20,2727,4,38,71, | ||
7124 | 0,108,0,111,0, | ||
7125 | 98,0,97,0,108, | ||
7126 | 0,68,0,101,0, | ||
7127 | 102,0,105,0,110, | ||
7128 | 0,105,0,116,0, | ||
7129 | 105,0,111,0,110, | ||
7130 | 0,115,0,95,0, | ||
7131 | 49,0,1,139,1, | ||
7132 | 3,1,2,1,1, | ||
7133 | 2728,22,1,3,1, | ||
7134 | 2226,2729,17,2730,15, | ||
7135 | 2731,4,52,37,0, | ||
7136 | 71,0,108,0,111, | ||
7137 | 0,98,0,97,0, | ||
7138 | 108,0,86,0,97, | ||
7139 | 0,114,0,105,0, | ||
7140 | 97,0,98,0,108, | ||
7141 | 0,101,0,68,0, | ||
7142 | 101,0,99,0,108, | ||
7143 | 0,97,0,114,0, | ||
7144 | 97,0,116,0,105, | ||
7145 | 0,111,0,110,0, | ||
7146 | 1,-1,1,5,2732, | ||
7147 | 20,2733,4,54,71, | ||
7148 | 0,108,0,111,0, | ||
7149 | 98,0,97,0,108, | ||
7150 | 0,86,0,97,0, | ||
7151 | 114,0,105,0,97, | ||
7152 | 0,98,0,108,0, | ||
7153 | 101,0,68,0,101, | ||
7154 | 0,99,0,108,0, | ||
7155 | 97,0,114,0,97, | ||
7156 | 0,116,0,105,0, | ||
7157 | 111,0,110,0,95, | ||
7158 | 0,50,0,1,144, | ||
7159 | 1,3,1,5,1, | ||
7160 | 4,2734,22,1,8, | ||
7161 | 1,2006,777,1,2198, | ||
7162 | 2735,17,2736,15,2737, | ||
7163 | 4,50,37,0,71, | ||
7164 | 0,108,0,111,0, | ||
7165 | 98,0,97,0,108, | ||
7166 | 0,70,0,117,0, | ||
7167 | 110,0,99,0,116, | ||
7168 | 0,105,0,111,0, | ||
7169 | 110,0,68,0,101, | ||
7170 | 0,102,0,105,0, | ||
7171 | 110,0,105,0,116, | ||
7172 | 0,105,0,111,0, | ||
7173 | 110,0,1,-1,1, | ||
7174 | 5,2738,20,2739,4, | ||
7175 | 52,71,0,108,0, | ||
7176 | 111,0,98,0,97, | ||
7177 | 0,108,0,70,0, | ||
7178 | 117,0,110,0,99, | ||
7179 | 0,116,0,105,0, | ||
7180 | 111,0,110,0,68, | ||
7181 | 0,101,0,102,0, | ||
7182 | 105,0,110,0,105, | ||
7183 | 0,116,0,105,0, | ||
7184 | 111,0,110,0,95, | ||
7185 | 0,49,0,1,145, | ||
7186 | 1,3,1,6,1, | ||
7187 | 5,2740,22,1,9, | ||
7188 | 1,2011,723,1,2013, | ||
7189 | 2741,17,2742,15,2737, | ||
7190 | 1,-1,1,5,2743, | ||
7191 | 20,2744,4,52,71, | ||
7192 | 0,108,0,111,0, | ||
7193 | 98,0,97,0,108, | ||
7194 | 0,70,0,117,0, | ||
7195 | 110,0,99,0,116, | ||
7196 | 0,105,0,111,0, | ||
7197 | 110,0,68,0,101, | ||
7198 | 0,102,0,105,0, | ||
7199 | 110,0,105,0,116, | ||
7200 | 0,105,0,111,0, | ||
7201 | 110,0,95,0,50, | ||
7202 | 0,1,146,1,3, | ||
7203 | 1,7,1,6,2745, | ||
7204 | 22,1,10,1,2237, | ||
7205 | 2746,17,2747,15,2731, | ||
7206 | 1,-1,1,5,2748, | ||
7207 | 20,2749,4,54,71, | ||
7208 | 0,108,0,111,0, | ||
7209 | 98,0,97,0,108, | ||
7210 | 0,86,0,97,0, | ||
7211 | 114,0,105,0,97, | ||
7212 | 0,98,0,108,0, | ||
7213 | 101,0,68,0,101, | ||
7214 | 0,99,0,108,0, | ||
7215 | 97,0,114,0,97, | ||
7216 | 0,116,0,105,0, | ||
7217 | 111,0,110,0,95, | ||
7218 | 0,49,0,1,143, | ||
7219 | 1,3,1,3,1, | ||
7220 | 2,2750,22,1,7, | ||
7221 | 1,2238,2751,16,0, | ||
7222 | 527,1,1849,2752,16, | ||
7223 | 0,303,1,2177,642, | ||
7224 | 1,2249,2753,16,0, | ||
7225 | 527,1,2179,2754,16, | ||
7226 | 0,527,1,2103,620, | ||
7227 | 1,2182,632,1,2183, | ||
7228 | 626,1,2257,2755,17, | ||
7229 | 2756,15,2720,1,-1, | ||
7230 | 1,5,2757,20,2758, | ||
7231 | 4,38,71,0,108, | ||
7232 | 0,111,0,98,0, | ||
7233 | 97,0,108,0,68, | ||
7234 | 0,101,0,102,0, | ||
7235 | 105,0,110,0,105, | ||
7236 | 0,116,0,105,0, | ||
7237 | 111,0,110,0,115, | ||
7238 | 0,95,0,50,0, | ||
7239 | 1,140,1,3,1, | ||
7240 | 3,1,2,2759,22, | ||
7241 | 1,4,1,2256,2760, | ||
7242 | 17,2761,15,2720,1, | ||
7243 | -1,1,5,2762,20, | ||
7244 | 2763,4,38,71,0, | ||
7245 | 108,0,111,0,98, | ||
7246 | 0,97,0,108,0, | ||
7247 | 68,0,101,0,102, | ||
7248 | 0,105,0,110,0, | ||
7249 | 105,0,116,0,105, | ||
7250 | 0,111,0,110,0, | ||
7251 | 115,0,95,0,52, | ||
7252 | 0,1,142,1,3, | ||
7253 | 1,3,1,2,2764, | ||
7254 | 22,1,6,1,48, | ||
7255 | 2765,19,353,1,48, | ||
7256 | 2766,5,43,1,0, | ||
7257 | 2767,16,0,399,1, | ||
7258 | 1854,655,1,1855,660, | ||
7259 | 1,1856,748,1,1694, | ||
7260 | 740,1,1858,667,1, | ||
7261 | 1860,672,1,1862,677, | ||
7262 | 1,1863,682,1,1760, | ||
7263 | 688,1,2198,2735,1, | ||
7264 | 2179,2768,16,0,399, | ||
7265 | 1,32,2769,16,0, | ||
7266 | 351,1,2183,626,1, | ||
7267 | 2257,2755,1,2005,801, | ||
7268 | 1,1788,2770,16,0, | ||
7269 | 351,1,2226,2729,1, | ||
7270 | 2009,716,1,2011,723, | ||
7271 | 1,1467,729,1,2013, | ||
7272 | 2741,1,1639,2771,16, | ||
7273 | 0,351,1,1637,710, | ||
7274 | 1,2237,2746,1,2238, | ||
7275 | 2772,16,0,399,1, | ||
7276 | 1853,649,1,2006,777, | ||
7277 | 1,1965,2773,16,0, | ||
7278 | 351,1,2249,2774,16, | ||
7279 | 0,399,1,2182,632, | ||
7280 | 1,1817,760,1,1818, | ||
7281 | 2775,16,0,351,1, | ||
7282 | 2256,2760,1,1385,769, | ||
7283 | 1,2258,2718,1,2259, | ||
7284 | 2724,1,1611,2776,16, | ||
7285 | 0,351,1,1732,2777, | ||
7286 | 16,0,351,1,2103, | ||
7287 | 620,1,1847,794,1, | ||
7288 | 2177,642,1,1852,806, | ||
7289 | 1,50,2778,19,375, | ||
7290 | 1,50,2779,5,27, | ||
7291 | 1,1852,806,1,1853, | ||
7292 | 649,1,1817,760,1, | ||
7293 | 1818,2780,16,0,373, | ||
7294 | 1,1856,748,1,2005, | ||
7295 | 801,1,1858,667,1, | ||
7296 | 1637,710,1,1860,672, | ||
7297 | 1,2009,716,1,1788, | ||
7298 | 2781,16,0,373,1, | ||
7299 | 1863,682,1,1385,769, | ||
7300 | 1,2006,777,1,1611, | ||
7301 | 2782,16,0,373,1, | ||
7302 | 1760,688,1,2011,723, | ||
7303 | 1,1467,729,1,1639, | ||
7304 | 2783,16,0,373,1, | ||
7305 | 1854,655,1,1855,660, | ||
7306 | 1,1694,740,1,1732, | ||
7307 | 2784,16,0,373,1, | ||
7308 | 1965,2785,16,0,373, | ||
7309 | 1,32,2786,16,0, | ||
7310 | 373,1,1847,794,1, | ||
7311 | 1862,677,1,51,2787, | ||
7312 | 19,127,1,51,2788, | ||
7313 | 5,45,1,0,2789, | ||
7314 | 16,0,125,1,1854, | ||
7315 | 655,1,1855,660,1, | ||
7316 | 1856,748,1,1694,740, | ||
7317 | 1,1858,667,1,1860, | ||
7318 | 672,1,1862,677,1, | ||
7319 | 10,2790,16,0,125, | ||
7320 | 1,1385,769,1,1760, | ||
7321 | 688,1,2198,2735,1, | ||
7322 | 2238,2791,16,0,125, | ||
7323 | 1,21,2792,16,0, | ||
7324 | 125,1,32,2793,16, | ||
7325 | 0,125,1,1514,2794, | ||
7326 | 16,0,125,1,2005, | ||
7327 | 801,1,1788,2795,16, | ||
7328 | 0,125,1,2226,2729, | ||
7329 | 1,2009,716,1,2011, | ||
7330 | 723,1,1467,729,1, | ||
7331 | 2013,2741,1,52,2796, | ||
7332 | 16,0,125,1,1639, | ||
7333 | 2797,16,0,125,1, | ||
7334 | 1637,710,1,2237,2746, | ||
7335 | 1,1584,2798,16,0, | ||
7336 | 125,1,1853,649,1, | ||
7337 | 2006,777,1,1965,2799, | ||
7338 | 16,0,125,1,1863, | ||
7339 | 682,1,1817,760,1, | ||
7340 | 1818,2800,16,0,125, | ||
7341 | 1,2185,2801,16,0, | ||
7342 | 125,1,2256,2760,1, | ||
7343 | 2257,2755,1,2258,2718, | ||
7344 | 1,2259,2724,1,1611, | ||
7345 | 2802,16,0,125,1, | ||
7346 | 2052,2803,16,0,125, | ||
7347 | 1,1732,2804,16,0, | ||
7348 | 125,1,1469,2805,16, | ||
7349 | 0,125,1,1847,794, | ||
7350 | 1,1852,806,1,52, | ||
7351 | 2806,19,124,1,52, | ||
7352 | 2807,5,45,1,0, | ||
7353 | 2808,16,0,122,1, | ||
7354 | 1854,655,1,1855,660, | ||
7355 | 1,1856,748,1,1694, | ||
7356 | 740,1,1858,667,1, | ||
7357 | 1860,672,1,1862,677, | ||
7358 | 1,10,2809,16,0, | ||
7359 | 122,1,1385,769,1, | ||
7360 | 1760,688,1,2198,2735, | ||
7361 | 1,2238,2810,16,0, | ||
7362 | 122,1,21,2811,16, | ||
7363 | 0,122,1,32,2812, | ||
7364 | 16,0,122,1,1514, | ||
7365 | 2813,16,0,122,1, | ||
7366 | 2005,801,1,1788,2814, | ||
7367 | 16,0,122,1,2226, | ||
7368 | 2729,1,2009,716,1, | ||
7369 | 2011,723,1,1467,729, | ||
7370 | 1,2013,2741,1,52, | ||
7371 | 2815,16,0,122,1, | ||
7372 | 1639,2816,16,0,122, | ||
7373 | 1,1637,710,1,2237, | ||
7374 | 2746,1,1584,2817,16, | ||
7375 | 0,122,1,1853,649, | ||
7376 | 1,2006,777,1,1965, | ||
7377 | 2818,16,0,122,1, | ||
7378 | 1863,682,1,1817,760, | ||
7379 | 1,1818,2819,16,0, | ||
7380 | 122,1,2185,2820,16, | ||
7381 | 0,122,1,2256,2760, | ||
7382 | 1,2257,2755,1,2258, | ||
7383 | 2718,1,2259,2724,1, | ||
7384 | 1611,2821,16,0,122, | ||
7385 | 1,2052,2822,16,0, | ||
7386 | 122,1,1732,2823,16, | ||
7387 | 0,122,1,1469,2824, | ||
7388 | 16,0,122,1,1847, | ||
7389 | 794,1,1852,806,1, | ||
7390 | 53,2825,19,121,1, | ||
7391 | 53,2826,5,45,1, | ||
7392 | 0,2827,16,0,119, | ||
7393 | 1,1854,655,1,1855, | ||
7394 | 660,1,1856,748,1, | ||
7395 | 1694,740,1,1858,667, | ||
7396 | 1,1860,672,1,1862, | ||
7397 | 677,1,10,2828,16, | ||
7398 | 0,119,1,1385,769, | ||
7399 | 1,1760,688,1,2198, | ||
7400 | 2735,1,2238,2829,16, | ||
7401 | 0,119,1,21,2830, | ||
7402 | 16,0,119,1,32, | ||
7403 | 2831,16,0,119,1, | ||
7404 | 1514,2832,16,0,119, | ||
7405 | 1,2005,801,1,1788, | ||
7406 | 2833,16,0,119,1, | ||
7407 | 2226,2729,1,2009,716, | ||
7408 | 1,2011,723,1,1467, | ||
7409 | 729,1,2013,2741,1, | ||
7410 | 52,2834,16,0,119, | ||
7411 | 1,1639,2835,16,0, | ||
7412 | 119,1,1637,710,1, | ||
7413 | 2237,2746,1,1584,2836, | ||
7414 | 16,0,119,1,1853, | ||
7415 | 649,1,2006,777,1, | ||
7416 | 1965,2837,16,0,119, | ||
7417 | 1,1863,682,1,1817, | ||
7418 | 760,1,1818,2838,16, | ||
7419 | 0,119,1,2185,2839, | ||
7420 | 16,0,119,1,2256, | ||
7421 | 2760,1,2257,2755,1, | ||
7422 | 2258,2718,1,2259,2724, | ||
7423 | 1,1611,2840,16,0, | ||
7424 | 119,1,2052,2841,16, | ||
7425 | 0,119,1,1732,2842, | ||
7426 | 16,0,119,1,1469, | ||
7427 | 2843,16,0,119,1, | ||
7428 | 1847,794,1,1852,806, | ||
7429 | 1,54,2844,19,118, | ||
7430 | 1,54,2845,5,45, | ||
7431 | 1,0,2846,16,0, | ||
7432 | 116,1,1854,655,1, | ||
7433 | 1855,660,1,1856,748, | ||
7434 | 1,1694,740,1,1858, | ||
7435 | 667,1,1860,672,1, | ||
7436 | 1862,677,1,10,2847, | ||
7437 | 16,0,116,1,1385, | ||
7438 | 769,1,1760,688,1, | ||
7439 | 2198,2735,1,2238,2848, | ||
7440 | 16,0,116,1,21, | ||
7441 | 2849,16,0,116,1, | ||
7442 | 32,2850,16,0,116, | ||
7443 | 1,1514,2851,16,0, | ||
7444 | 116,1,2005,801,1, | ||
7445 | 1788,2852,16,0,116, | ||
7446 | 1,2226,2729,1,2009, | ||
7447 | 716,1,2011,723,1, | ||
7448 | 1467,729,1,2013,2741, | ||
7449 | 1,52,2853,16,0, | ||
7450 | 116,1,1639,2854,16, | ||
7451 | 0,116,1,1637,710, | ||
7452 | 1,2237,2746,1,1584, | ||
7453 | 2855,16,0,116,1, | ||
7454 | 1853,649,1,2006,777, | ||
7455 | 1,1965,2856,16,0, | ||
7456 | 116,1,1863,682,1, | ||
7457 | 1817,760,1,1818,2857, | ||
7458 | 16,0,116,1,2185, | ||
7459 | 2858,16,0,116,1, | ||
7460 | 2256,2760,1,2257,2755, | ||
7461 | 1,2258,2718,1,2259, | ||
7462 | 2724,1,1611,2859,16, | ||
7463 | 0,116,1,2052,2860, | ||
7464 | 16,0,116,1,1732, | ||
7465 | 2861,16,0,116,1, | ||
7466 | 1469,2862,16,0,116, | ||
7467 | 1,1847,794,1,1852, | ||
7468 | 806,1,55,2863,19, | ||
7469 | 115,1,55,2864,5, | ||
7470 | 45,1,0,2865,16, | ||
7471 | 0,113,1,1854,655, | ||
7472 | 1,1855,660,1,1856, | ||
7473 | 748,1,1694,740,1, | ||
7474 | 1858,667,1,1860,672, | ||
7475 | 1,1862,677,1,10, | ||
7476 | 2866,16,0,113,1, | ||
7477 | 1385,769,1,1760,688, | ||
7478 | 1,2198,2735,1,2238, | ||
7479 | 2867,16,0,113,1, | ||
7480 | 21,2868,16,0,113, | ||
7481 | 1,32,2869,16,0, | ||
7482 | 113,1,1514,2870,16, | ||
7483 | 0,113,1,2005,801, | ||
7484 | 1,1788,2871,16,0, | ||
7485 | 113,1,2226,2729,1, | ||
7486 | 2009,716,1,2011,723, | ||
7487 | 1,1467,729,1,2013, | ||
7488 | 2741,1,52,2872,16, | ||
7489 | 0,113,1,1639,2873, | ||
7490 | 16,0,113,1,1637, | ||
7491 | 710,1,2237,2746,1, | ||
7492 | 1584,2874,16,0,113, | ||
7493 | 1,1853,649,1,2006, | ||
7494 | 777,1,1965,2875,16, | ||
7495 | 0,113,1,1863,682, | ||
7496 | 1,1817,760,1,1818, | ||
7497 | 2876,16,0,113,1, | ||
7498 | 2185,2877,16,0,113, | ||
7499 | 1,2256,2760,1,2257, | ||
7500 | 2755,1,2258,2718,1, | ||
7501 | 2259,2724,1,1611,2878, | ||
7502 | 16,0,113,1,2052, | ||
7503 | 2879,16,0,113,1, | ||
7504 | 1732,2880,16,0,113, | ||
7505 | 1,1469,2881,16,0, | ||
7506 | 113,1,1847,794,1, | ||
7507 | 1852,806,1,56,2882, | ||
7508 | 19,112,1,56,2883, | ||
7509 | 5,45,1,0,2884, | ||
7510 | 16,0,110,1,1854, | ||
7511 | 655,1,1855,660,1, | ||
7512 | 1856,748,1,1694,740, | ||
7513 | 1,1858,667,1,1860, | ||
7514 | 672,1,1862,677,1, | ||
7515 | 10,2885,16,0,110, | ||
7516 | 1,1385,769,1,1760, | ||
7517 | 688,1,2198,2735,1, | ||
7518 | 2238,2886,16,0,110, | ||
7519 | 1,21,2887,16,0, | ||
7520 | 110,1,32,2888,16, | ||
7521 | 0,110,1,1514,2889, | ||
7522 | 16,0,110,1,2005, | ||
7523 | 801,1,1788,2890,16, | ||
7524 | 0,110,1,2226,2729, | ||
7525 | 1,2009,716,1,2011, | ||
7526 | 723,1,1467,729,1, | ||
7527 | 2013,2741,1,52,2891, | ||
7528 | 16,0,110,1,1639, | ||
7529 | 2892,16,0,110,1, | ||
7530 | 1637,710,1,2237,2746, | ||
7531 | 1,1584,2893,16,0, | ||
7532 | 110,1,1853,649,1, | ||
7533 | 2006,777,1,1965,2894, | ||
7534 | 16,0,110,1,1863, | ||
7535 | 682,1,1817,760,1, | ||
7536 | 1818,2895,16,0,110, | ||
7537 | 1,2185,2896,16,0, | ||
7538 | 110,1,2256,2760,1, | ||
7539 | 2257,2755,1,2258,2718, | ||
7540 | 1,2259,2724,1,1611, | ||
7541 | 2897,16,0,110,1, | ||
7542 | 2052,2898,16,0,110, | ||
7543 | 1,1732,2899,16,0, | ||
7544 | 110,1,1469,2900,16, | ||
7545 | 0,110,1,1847,794, | ||
7546 | 1,1852,806,1,57, | ||
7547 | 2901,19,109,1,57, | ||
7548 | 2902,5,45,1,0, | ||
7549 | 2903,16,0,107,1, | ||
7550 | 1854,655,1,1855,660, | ||
7551 | 1,1856,748,1,1694, | ||
7552 | 740,1,1858,667,1, | ||
7553 | 1860,672,1,1862,677, | ||
7554 | 1,10,2904,16,0, | ||
7555 | 107,1,1385,769,1, | ||
7556 | 1760,688,1,2198,2735, | ||
7557 | 1,2238,2905,16,0, | ||
7558 | 107,1,21,2906,16, | ||
7559 | 0,107,1,32,2907, | ||
7560 | 16,0,107,1,1514, | ||
7561 | 2908,16,0,107,1, | ||
7562 | 2005,801,1,1788,2909, | ||
7563 | 16,0,107,1,2226, | ||
7564 | 2729,1,2009,716,1, | ||
7565 | 2011,723,1,1467,729, | ||
7566 | 1,2013,2741,1,52, | ||
7567 | 2910,16,0,107,1, | ||
7568 | 1639,2911,16,0,107, | ||
7569 | 1,1637,710,1,2237, | ||
7570 | 2746,1,1584,2912,16, | ||
7571 | 0,107,1,1853,649, | ||
7572 | 1,2006,777,1,1965, | ||
7573 | 2913,16,0,107,1, | ||
7574 | 1863,682,1,1817,760, | ||
7575 | 1,1818,2914,16,0, | ||
7576 | 107,1,2185,2915,16, | ||
7577 | 0,107,1,2256,2760, | ||
7578 | 1,2257,2755,1,2258, | ||
7579 | 2718,1,2259,2724,1, | ||
7580 | 1611,2916,16,0,107, | ||
7581 | 1,2052,2917,16,0, | ||
7582 | 107,1,1732,2918,16, | ||
7583 | 0,107,1,1469,2919, | ||
7584 | 16,0,107,1,1847, | ||
7585 | 794,1,1852,806,1, | ||
7586 | 58,2920,19,237,1, | ||
7587 | 58,2921,5,9,1, | ||
7588 | 2006,777,1,2011,723, | ||
7589 | 1,2017,2922,16,0, | ||
7590 | 235,1,2065,1364,1, | ||
7591 | 2067,2923,16,0,235, | ||
7592 | 1,2141,2924,16,0, | ||
7593 | 235,1,2102,1351,1, | ||
7594 | 2104,1359,1,2106,2925, | ||
7595 | 16,0,235,1,59, | ||
7596 | 2926,19,589,1,59, | ||
7597 | 2927,5,9,1,2006, | ||
7598 | 777,1,2011,723,1, | ||
7599 | 2017,2928,16,0,587, | ||
7600 | 1,2065,1364,1,2067, | ||
7601 | 2929,16,0,587,1, | ||
7602 | 2141,2930,16,0,587, | ||
7603 | 1,2102,1351,1,2104, | ||
7604 | 1359,1,2106,2931,16, | ||
7605 | 0,587,1,60,2932, | ||
7606 | 19,586,1,60,2933, | ||
7607 | 5,9,1,2006,777, | ||
7608 | 1,2011,723,1,2017, | ||
7609 | 2934,16,0,584,1, | ||
7610 | 2065,1364,1,2067,2935, | ||
7611 | 16,0,584,1,2141, | ||
7612 | 2936,16,0,584,1, | ||
7613 | 2102,1351,1,2104,1359, | ||
7614 | 1,2106,2937,16,0, | ||
7615 | 584,1,61,2938,19, | ||
7616 | 546,1,61,2939,5, | ||
7617 | 9,1,2006,777,1, | ||
7618 | 2011,723,1,2017,2940, | ||
7619 | 16,0,544,1,2065, | ||
7620 | 1364,1,2067,2941,16, | ||
7621 | 0,544,1,2141,2942, | ||
7622 | 16,0,544,1,2102, | ||
7623 | 1351,1,2104,1359,1, | ||
7624 | 2106,2943,16,0,544, | ||
7625 | 1,62,2944,19,543, | ||
7626 | 1,62,2945,5,9, | ||
7627 | 1,2006,777,1,2011, | ||
7628 | 723,1,2017,2946,16, | ||
7629 | 0,541,1,2065,1364, | ||
7630 | 1,2067,2947,16,0, | ||
7631 | 541,1,2141,2948,16, | ||
7632 | 0,541,1,2102,1351, | ||
7633 | 1,2104,1359,1,2106, | ||
7634 | 2949,16,0,541,1, | ||
7635 | 63,2950,19,540,1, | ||
7636 | 63,2951,5,9,1, | ||
7637 | 2006,777,1,2011,723, | ||
7638 | 1,2017,2952,16,0, | ||
7639 | 538,1,2065,1364,1, | ||
7640 | 2067,2953,16,0,538, | ||
7641 | 1,2141,2954,16,0, | ||
7642 | 538,1,2102,1351,1, | ||
7643 | 2104,1359,1,2106,2955, | ||
7644 | 16,0,538,1,64, | ||
7645 | 2956,19,537,1,64, | ||
7646 | 2957,5,9,1,2006, | ||
7647 | 777,1,2011,723,1, | ||
7648 | 2017,2958,16,0,535, | ||
7649 | 1,2065,1364,1,2067, | ||
7650 | 2959,16,0,535,1, | ||
7651 | 2141,2960,16,0,535, | ||
7652 | 1,2102,1351,1,2104, | ||
7653 | 1359,1,2106,2961,16, | ||
7654 | 0,535,1,65,2962, | ||
7655 | 19,534,1,65,2963, | ||
7656 | 5,9,1,2006,777, | ||
7657 | 1,2011,723,1,2017, | ||
7658 | 2964,16,0,532,1, | ||
7659 | 2065,1364,1,2067,2965, | ||
7660 | 16,0,532,1,2141, | ||
7661 | 2966,16,0,532,1, | ||
7662 | 2102,1351,1,2104,1359, | ||
7663 | 1,2106,2967,16,0, | ||
7664 | 532,1,66,2968,19, | ||
7665 | 531,1,66,2969,5, | ||
7666 | 9,1,2006,777,1, | ||
7667 | 2011,723,1,2017,2970, | ||
7668 | 16,0,529,1,2065, | ||
7669 | 1364,1,2067,2971,16, | ||
7670 | 0,529,1,2141,2972, | ||
7671 | 16,0,529,1,2102, | ||
7672 | 1351,1,2104,1359,1, | ||
7673 | 2106,2973,16,0,529, | ||
7674 | 1,67,2974,19,467, | ||
7675 | 1,67,2975,5,9, | ||
7676 | 1,2006,777,1,2011, | ||
7677 | 723,1,2017,2976,16, | ||
7678 | 0,465,1,2065,1364, | ||
7679 | 1,2067,2977,16,0, | ||
7680 | 465,1,2141,2978,16, | ||
7681 | 0,465,1,2102,1351, | ||
7682 | 1,2104,1359,1,2106, | ||
7683 | 2979,16,0,465,1, | ||
7684 | 68,2980,19,464,1, | ||
7685 | 68,2981,5,9,1, | ||
7686 | 2006,777,1,2011,723, | ||
7687 | 1,2017,2982,16,0, | ||
7688 | 462,1,2065,1364,1, | ||
7689 | 2067,2983,16,0,462, | ||
7690 | 1,2141,2984,16,0, | ||
7691 | 462,1,2102,1351,1, | ||
7692 | 2104,1359,1,2106,2985, | ||
7693 | 16,0,462,1,69, | ||
7694 | 2986,19,526,1,69, | ||
7695 | 2987,5,9,1,2006, | ||
7696 | 777,1,2011,723,1, | ||
7697 | 2017,2988,16,0,524, | ||
7698 | 1,2065,1364,1,2067, | ||
7699 | 2989,16,0,524,1, | ||
7700 | 2141,2990,16,0,524, | ||
7701 | 1,2102,1351,1,2104, | ||
7702 | 1359,1,2106,2991,16, | ||
7703 | 0,524,1,70,2992, | ||
7704 | 19,460,1,70,2993, | ||
7705 | 5,9,1,2006,777, | ||
7706 | 1,2011,723,1,2017, | ||
7707 | 2994,16,0,458,1, | ||
7708 | 2065,1364,1,2067,2995, | ||
7709 | 16,0,458,1,2141, | ||
7710 | 2996,16,0,458,1, | ||
7711 | 2102,1351,1,2104,1359, | ||
7712 | 1,2106,2997,16,0, | ||
7713 | 458,1,71,2998,19, | ||
7714 | 457,1,71,2999,5, | ||
7715 | 9,1,2006,777,1, | ||
7716 | 2011,723,1,2017,3000, | ||
7717 | 16,0,455,1,2065, | ||
7718 | 1364,1,2067,3001,16, | ||
7719 | 0,455,1,2141,3002, | ||
7720 | 16,0,455,1,2102, | ||
7721 | 1351,1,2104,1359,1, | ||
7722 | 2106,3003,16,0,455, | ||
7723 | 1,72,3004,19,454, | ||
7724 | 1,72,3005,5,9, | ||
7725 | 1,2006,777,1,2011, | ||
7726 | 723,1,2017,3006,16, | ||
7727 | 0,452,1,2065,1364, | ||
7728 | 1,2067,3007,16,0, | ||
7729 | 452,1,2141,3008,16, | ||
7730 | 0,452,1,2102,1351, | ||
7731 | 1,2104,1359,1,2106, | ||
7732 | 3009,16,0,452,1, | ||
7733 | 73,3010,19,451,1, | ||
7734 | 73,3011,5,9,1, | ||
7735 | 2006,777,1,2011,723, | ||
7736 | 1,2017,3012,16,0, | ||
7737 | 449,1,2065,1364,1, | ||
7738 | 2067,3013,16,0,449, | ||
7739 | 1,2141,3014,16,0, | ||
7740 | 449,1,2102,1351,1, | ||
7741 | 2104,1359,1,2106,3015, | ||
7742 | 16,0,449,1,74, | ||
7743 | 3016,19,448,1,74, | ||
7744 | 3017,5,9,1,2006, | ||
7745 | 777,1,2011,723,1, | ||
7746 | 2017,3018,16,0,446, | ||
7747 | 1,2065,1364,1,2067, | ||
7748 | 3019,16,0,446,1, | ||
7749 | 2141,3020,16,0,446, | ||
7750 | 1,2102,1351,1,2104, | ||
7751 | 1359,1,2106,3021,16, | ||
7752 | 0,446,1,75,3022, | ||
7753 | 19,445,1,75,3023, | ||
7754 | 5,9,1,2006,777, | ||
7755 | 1,2011,723,1,2017, | ||
7756 | 3024,16,0,443,1, | ||
7757 | 2065,1364,1,2067,3025, | ||
7758 | 16,0,443,1,2141, | ||
7759 | 3026,16,0,443,1, | ||
7760 | 2102,1351,1,2104,1359, | ||
7761 | 1,2106,3027,16,0, | ||
7762 | 443,1,76,3028,19, | ||
7763 | 442,1,76,3029,5, | ||
7764 | 9,1,2006,777,1, | ||
7765 | 2011,723,1,2017,3030, | ||
7766 | 16,0,440,1,2065, | ||
7767 | 1364,1,2067,3031,16, | ||
7768 | 0,440,1,2141,3032, | ||
7769 | 16,0,440,1,2102, | ||
7770 | 1351,1,2104,1359,1, | ||
7771 | 2106,3033,16,0,440, | ||
7772 | 1,77,3034,19,439, | ||
7773 | 1,77,3035,5,9, | ||
7774 | 1,2006,777,1,2011, | ||
7775 | 723,1,2017,3036,16, | ||
7776 | 0,437,1,2065,1364, | ||
7777 | 1,2067,3037,16,0, | ||
7778 | 437,1,2141,3038,16, | ||
7779 | 0,437,1,2102,1351, | ||
7780 | 1,2104,1359,1,2106, | ||
7781 | 3039,16,0,437,1, | ||
7782 | 78,3040,19,436,1, | ||
7783 | 78,3041,5,9,1, | ||
7784 | 2006,777,1,2011,723, | ||
7785 | 1,2017,3042,16,0, | ||
7786 | 434,1,2065,1364,1, | ||
7787 | 2067,3043,16,0,434, | ||
7788 | 1,2141,3044,16,0, | ||
7789 | 434,1,2102,1351,1, | ||
7790 | 2104,1359,1,2106,3045, | ||
7791 | 16,0,434,1,79, | ||
7792 | 3046,19,433,1,79, | ||
7793 | 3047,5,9,1,2006, | ||
7794 | 777,1,2011,723,1, | ||
7795 | 2017,3048,16,0,431, | ||
7796 | 1,2065,1364,1,2067, | ||
7797 | 3049,16,0,431,1, | ||
7798 | 2141,3050,16,0,431, | ||
7799 | 1,2102,1351,1,2104, | ||
7800 | 1359,1,2106,3051,16, | ||
7801 | 0,431,1,80,3052, | ||
7802 | 19,430,1,80,3053, | ||
7803 | 5,9,1,2006,777, | ||
7804 | 1,2011,723,1,2017, | ||
7805 | 3054,16,0,428,1, | ||
7806 | 2065,1364,1,2067,3055, | ||
7807 | 16,0,428,1,2141, | ||
7808 | 3056,16,0,428,1, | ||
7809 | 2102,1351,1,2104,1359, | ||
7810 | 1,2106,3057,16,0, | ||
7811 | 428,1,81,3058,19, | ||
7812 | 427,1,81,3059,5, | ||
7813 | 9,1,2006,777,1, | ||
7814 | 2011,723,1,2017,3060, | ||
7815 | 16,0,425,1,2065, | ||
7816 | 1364,1,2067,3061,16, | ||
7817 | 0,425,1,2141,3062, | ||
7818 | 16,0,425,1,2102, | ||
7819 | 1351,1,2104,1359,1, | ||
7820 | 2106,3063,16,0,425, | ||
7821 | 1,82,3064,19,517, | ||
7822 | 1,82,3065,5,9, | ||
7823 | 1,2006,777,1,2011, | ||
7824 | 723,1,2017,3066,16, | ||
7825 | 0,515,1,2065,1364, | ||
7826 | 1,2067,3067,16,0, | ||
7827 | 515,1,2141,3068,16, | ||
7828 | 0,515,1,2102,1351, | ||
7829 | 1,2104,1359,1,2106, | ||
7830 | 3069,16,0,515,1, | ||
7831 | 83,3070,19,514,1, | ||
7832 | 83,3071,5,9,1, | ||
7833 | 2006,777,1,2011,723, | ||
7834 | 1,2017,3072,16,0, | ||
7835 | 512,1,2065,1364,1, | ||
7836 | 2067,3073,16,0,512, | ||
7837 | 1,2141,3074,16,0, | ||
7838 | 512,1,2102,1351,1, | ||
7839 | 2104,1359,1,2106,3075, | ||
7840 | 16,0,512,1,84, | ||
7841 | 3076,19,511,1,84, | ||
7842 | 3077,5,9,1,2006, | ||
7843 | 777,1,2011,723,1, | ||
7844 | 2017,3078,16,0,509, | ||
7845 | 1,2065,1364,1,2067, | ||
7846 | 3079,16,0,509,1, | ||
7847 | 2141,3080,16,0,509, | ||
7848 | 1,2102,1351,1,2104, | ||
7849 | 1359,1,2106,3081,16, | ||
7850 | 0,509,1,85,3082, | ||
7851 | 19,508,1,85,3083, | ||
7852 | 5,9,1,2006,777, | ||
7853 | 1,2011,723,1,2017, | ||
7854 | 3084,16,0,506,1, | ||
7855 | 2065,1364,1,2067,3085, | ||
7856 | 16,0,506,1,2141, | ||
7857 | 3086,16,0,506,1, | ||
7858 | 2102,1351,1,2104,1359, | ||
7859 | 1,2106,3087,16,0, | ||
7860 | 506,1,86,3088,19, | ||
7861 | 418,1,86,3089,5, | ||
7862 | 9,1,2006,777,1, | ||
7863 | 2011,723,1,2017,3090, | ||
7864 | 16,0,416,1,2065, | ||
7865 | 1364,1,2067,3091,16, | ||
7866 | 0,416,1,2141,3092, | ||
7867 | 16,0,416,1,2102, | ||
7868 | 1351,1,2104,1359,1, | ||
7869 | 2106,3093,16,0,416, | ||
7870 | 1,87,3094,19,415, | ||
7871 | 1,87,3095,5,9, | ||
7872 | 1,2006,777,1,2011, | ||
7873 | 723,1,2017,3096,16, | ||
7874 | 0,413,1,2065,1364, | ||
7875 | 1,2067,3097,16,0, | ||
7876 | 413,1,2141,3098,16, | ||
7877 | 0,413,1,2102,1351, | ||
7878 | 1,2104,1359,1,2106, | ||
7879 | 3099,16,0,413,1, | ||
7880 | 88,3100,19,412,1, | ||
7881 | 88,3101,5,9,1, | ||
7882 | 2006,777,1,2011,723, | ||
7883 | 1,2017,3102,16,0, | ||
7884 | 410,1,2065,1364,1, | ||
7885 | 2067,3103,16,0,410, | ||
7886 | 1,2141,3104,16,0, | ||
7887 | 410,1,2102,1351,1, | ||
7888 | 2104,1359,1,2106,3105, | ||
7889 | 16,0,410,1,89, | ||
7890 | 3106,19,406,1,89, | ||
7891 | 3107,5,9,1,2006, | ||
7892 | 777,1,2011,723,1, | ||
7893 | 2017,3108,16,0,404, | ||
7894 | 1,2065,1364,1,2067, | ||
7895 | 3109,16,0,404,1, | ||
7896 | 2141,3110,16,0,404, | ||
7897 | 1,2102,1351,1,2104, | ||
7898 | 1359,1,2106,3111,16, | ||
7899 | 0,404,1,90,3112, | ||
7900 | 19,409,1,90,3113, | ||
7901 | 5,9,1,2006,777, | ||
7902 | 1,2011,723,1,2017, | ||
7903 | 3114,16,0,407,1, | ||
7904 | 2065,1364,1,2067,3115, | ||
7905 | 16,0,407,1,2141, | ||
7906 | 3116,16,0,407,1, | ||
7907 | 2102,1351,1,2104,1359, | ||
7908 | 1,2106,3117,16,0, | ||
7909 | 407,1,91,3118,19, | ||
7910 | 133,1,91,3119,5, | ||
7911 | 105,1,0,3120,16, | ||
7912 | 0,160,1,1,1668, | ||
7913 | 1,2,1674,1,3, | ||
7914 | 1679,1,4,1684,1, | ||
7915 | 5,1689,1,6,1694, | ||
7916 | 1,7,1699,1,8, | ||
7917 | 3121,16,0,131,1, | ||
7918 | 256,3122,16,0,195, | ||
7919 | 1,18,3123,16,0, | ||
7920 | 144,1,504,3124,16, | ||
7921 | 0,195,1,277,3125, | ||
7922 | 16,0,195,1,1788, | ||
7923 | 3126,16,0,187,1, | ||
7924 | 32,3127,16,0,187, | ||
7925 | 1,1292,3128,16,0, | ||
7926 | 195,1,2226,2729,1, | ||
7927 | 41,3129,16,0,195, | ||
7928 | 1,43,3130,16,0, | ||
7929 | 195,1,46,3131,16, | ||
7930 | 0,199,1,299,3132, | ||
7931 | 16,0,195,1,52, | ||
7932 | 3133,16,0,195,1, | ||
7933 | 1559,3134,16,0,195, | ||
7934 | 1,1514,3135,16,0, | ||
7935 | 187,1,1760,688,1, | ||
7936 | 1818,3136,16,0,187, | ||
7937 | 1,62,3137,16,0, | ||
7938 | 212,1,1763,3138,16, | ||
7939 | 0,195,1,2009,716, | ||
7940 | 1,2011,723,1,2256, | ||
7941 | 2760,1,2015,3139,16, | ||
7942 | 0,400,1,2259,2724, | ||
7943 | 1,65,3140,16,0, | ||
7944 | 214,1,71,3141,16, | ||
7945 | 0,195,1,76,3142, | ||
7946 | 16,0,195,1,1584, | ||
7947 | 3143,16,0,187,1, | ||
7948 | 79,3144,16,0,195, | ||
7949 | 1,322,3145,16,0, | ||
7950 | 195,1,1257,3146,16, | ||
7951 | 0,195,1,85,3147, | ||
7952 | 16,0,195,1,89, | ||
7953 | 3148,16,0,195,1, | ||
7954 | 1847,794,1,1849,3149, | ||
7955 | 16,0,306,1,346, | ||
7956 | 3150,16,0,195,1, | ||
7957 | 1853,649,1,1854,655, | ||
7958 | 1,1855,660,1,1856, | ||
7959 | 748,1,1858,667,1, | ||
7960 | 97,3151,16,0,195, | ||
7961 | 1,1860,672,1,1862, | ||
7962 | 677,1,1863,682,1, | ||
7963 | 102,3152,16,0,195, | ||
7964 | 1,1115,3153,16,0, | ||
7965 | 195,1,112,3154,16, | ||
7966 | 0,195,1,1327,3155, | ||
7967 | 16,0,195,1,1817, | ||
7968 | 760,1,372,3156,16, | ||
7969 | 0,472,1,374,3157, | ||
7970 | 16,0,474,1,124, | ||
7971 | 3158,16,0,195,1, | ||
7972 | 376,3159,16,0,476, | ||
7973 | 1,2006,777,1,378, | ||
7974 | 3160,16,0,478,1, | ||
7975 | 1385,769,1,1637,710, | ||
7976 | 1,2013,2741,1,137, | ||
7977 | 3161,16,0,195,1, | ||
7978 | 1396,3162,16,0,195, | ||
7979 | 1,381,3163,16,0, | ||
7980 | 195,1,397,3164,16, | ||
7981 | 0,195,1,384,3165, | ||
7982 | 16,0,195,1,1152, | ||
7983 | 3166,16,0,195,1, | ||
7984 | 151,3167,16,0,195, | ||
7985 | 1,1852,806,1,1611, | ||
7986 | 3168,16,0,187,1, | ||
7987 | 1668,3169,16,0,195, | ||
7988 | 1,166,3170,16,0, | ||
7989 | 195,1,422,3171,16, | ||
7990 | 0,195,1,1432,3172, | ||
7991 | 16,0,195,1,1111, | ||
7992 | 3173,16,0,609,1, | ||
7993 | 182,3174,16,0,195, | ||
7994 | 1,1187,3175,16,0, | ||
7995 | 195,1,1639,3176,16, | ||
7996 | 0,187,1,1694,740, | ||
7997 | 1,2198,2735,1,2201, | ||
7998 | 3177,16,0,195,1, | ||
7999 | 447,3178,16,0,195, | ||
8000 | 1,199,3179,16,0, | ||
8001 | 195,1,1707,3180,16, | ||
8002 | 0,195,1,1965,3181, | ||
8003 | 16,0,187,1,1467, | ||
8004 | 729,1,1469,3182,16, | ||
8005 | 0,187,1,217,3183, | ||
8006 | 16,0,195,1,1222, | ||
8007 | 3184,16,0,195,1, | ||
8008 | 1732,3185,16,0,187, | ||
8009 | 1,463,3186,16,0, | ||
8010 | 195,1,2237,2746,1, | ||
8011 | 2238,3187,16,0,160, | ||
8012 | 1,236,3188,16,0, | ||
8013 | 195,1,488,3189,16, | ||
8014 | 0,195,1,2005,801, | ||
8015 | 1,2257,2755,1,2258, | ||
8016 | 2718,1,92,3190,19, | ||
8017 | 571,1,92,3191,5, | ||
8018 | 77,1,1853,649,1, | ||
8019 | 1854,655,1,1855,660, | ||
8020 | 1,112,3192,16,0, | ||
8021 | 569,1,384,3193,16, | ||
8022 | 0,569,1,1858,667, | ||
8023 | 1,1860,672,1,1862, | ||
8024 | 677,1,1863,682,1, | ||
8025 | 447,3194,16,0,569, | ||
8026 | 1,1611,3195,16,0, | ||
8027 | 569,1,124,3196,16, | ||
8028 | 0,569,1,1760,688, | ||
8029 | 1,236,3197,16,0, | ||
8030 | 569,1,1763,3198,16, | ||
8031 | 0,569,1,2201,3199, | ||
8032 | 16,0,569,1,1222, | ||
8033 | 3200,16,0,569,1, | ||
8034 | 1115,3201,16,0,569, | ||
8035 | 1,1187,3202,16,0, | ||
8036 | 569,1,137,3203,16, | ||
8037 | 0,569,1,217,3204, | ||
8038 | 16,0,569,1,32, | ||
8039 | 3205,16,0,569,1, | ||
8040 | 1668,3206,16,0,569, | ||
8041 | 1,1514,3207,16,0, | ||
8042 | 569,1,256,3208,16, | ||
8043 | 0,569,1,41,3209, | ||
8044 | 16,0,569,1,151, | ||
8045 | 3210,16,0,569,1, | ||
8046 | 43,3211,16,0,569, | ||
8047 | 1,1732,3212,16,0, | ||
8048 | 569,1,1637,710,1, | ||
8049 | 2009,716,1,1639,3213, | ||
8050 | 16,0,569,1,2011, | ||
8051 | 723,1,1467,729,1, | ||
8052 | 1584,3214,16,0,569, | ||
8053 | 1,52,3215,16,0, | ||
8054 | 569,1,381,3216,16, | ||
8055 | 0,569,1,346,3217, | ||
8056 | 16,0,569,1,166, | ||
8057 | 3218,16,0,569,1, | ||
8058 | 1257,3219,16,0,569, | ||
8059 | 1,1694,740,1,1432, | ||
8060 | 3220,16,0,569,1, | ||
8061 | 1152,3221,16,0,569, | ||
8062 | 1,1856,748,1,62, | ||
8063 | 3222,16,0,569,1, | ||
8064 | 1965,3223,16,0,569, | ||
8065 | 1,504,3224,16,0, | ||
8066 | 569,1,277,3225,16, | ||
8067 | 0,569,1,397,3226, | ||
8068 | 16,0,569,1,71, | ||
8069 | 3227,16,0,569,1, | ||
8070 | 1707,3228,16,0,569, | ||
8071 | 1,1817,760,1,1818, | ||
8072 | 3229,16,0,569,1, | ||
8073 | 463,3230,16,0,569, | ||
8074 | 1,76,3231,16,0, | ||
8075 | 569,1,1385,769,1, | ||
8076 | 79,3232,16,0,569, | ||
8077 | 1,182,3233,16,0, | ||
8078 | 569,1,299,3234,16, | ||
8079 | 0,569,1,2006,777, | ||
8080 | 1,1559,3235,16,0, | ||
8081 | 569,1,85,3236,16, | ||
8082 | 0,569,1,488,3237, | ||
8083 | 16,0,569,1,1396, | ||
8084 | 3238,16,0,569,1, | ||
8085 | 89,3239,16,0,569, | ||
8086 | 1,199,3240,16,0, | ||
8087 | 569,1,1292,3241,16, | ||
8088 | 0,569,1,422,3242, | ||
8089 | 16,0,569,1,97, | ||
8090 | 3243,16,0,569,1, | ||
8091 | 1469,3244,16,0,569, | ||
8092 | 1,1788,3245,16,0, | ||
8093 | 569,1,102,3246,16, | ||
8094 | 0,569,1,1847,794, | ||
8095 | 1,322,3247,16,0, | ||
8096 | 569,1,1327,3248,16, | ||
8097 | 0,569,1,2005,801, | ||
8098 | 1,1852,806,1,93, | ||
8099 | 3249,19,568,1,93, | ||
8100 | 3250,5,77,1,1853, | ||
8101 | 649,1,1854,655,1, | ||
8102 | 1855,660,1,112,3251, | ||
8103 | 16,0,566,1,384, | ||
8104 | 3252,16,0,566,1, | ||
8105 | 1858,667,1,1860,672, | ||
8106 | 1,1862,677,1,1863, | ||
8107 | 682,1,447,3253,16, | ||
8108 | 0,566,1,1611,3254, | ||
8109 | 16,0,566,1,124, | ||
8110 | 3255,16,0,566,1, | ||
8111 | 1760,688,1,236,3256, | ||
8112 | 16,0,566,1,1763, | ||
8113 | 3257,16,0,566,1, | ||
8114 | 2201,3258,16,0,566, | ||
8115 | 1,1222,3259,16,0, | ||
8116 | 566,1,1115,3260,16, | ||
8117 | 0,566,1,1187,3261, | ||
8118 | 16,0,566,1,137, | ||
8119 | 3262,16,0,566,1, | ||
8120 | 217,3263,16,0,566, | ||
8121 | 1,32,3264,16,0, | ||
8122 | 566,1,1668,3265,16, | ||
8123 | 0,566,1,1514,3266, | ||
8124 | 16,0,566,1,256, | ||
8125 | 3267,16,0,566,1, | ||
8126 | 41,3268,16,0,566, | ||
8127 | 1,151,3269,16,0, | ||
8128 | 566,1,43,3270,16, | ||
8129 | 0,566,1,1732,3271, | ||
8130 | 16,0,566,1,1637, | ||
8131 | 710,1,2009,716,1, | ||
8132 | 1639,3272,16,0,566, | ||
8133 | 1,2011,723,1,1467, | ||
8134 | 729,1,1584,3273,16, | ||
8135 | 0,566,1,52,3274, | ||
8136 | 16,0,566,1,381, | ||
8137 | 3275,16,0,566,1, | ||
8138 | 346,3276,16,0,566, | ||
8139 | 1,166,3277,16,0, | ||
8140 | 566,1,1257,3278,16, | ||
8141 | 0,566,1,1694,740, | ||
8142 | 1,1432,3279,16,0, | ||
8143 | 566,1,1152,3280,16, | ||
8144 | 0,566,1,1856,748, | ||
8145 | 1,62,3281,16,0, | ||
8146 | 566,1,1965,3282,16, | ||
8147 | 0,566,1,504,3283, | ||
8148 | 16,0,566,1,277, | ||
8149 | 3284,16,0,566,1, | ||
8150 | 397,3285,16,0,566, | ||
8151 | 1,71,3286,16,0, | ||
8152 | 566,1,1707,3287,16, | ||
8153 | 0,566,1,1817,760, | ||
8154 | 1,1818,3288,16,0, | ||
8155 | 566,1,463,3289,16, | ||
8156 | 0,566,1,76,3290, | ||
8157 | 16,0,566,1,1385, | ||
8158 | 769,1,79,3291,16, | ||
8159 | 0,566,1,182,3292, | ||
8160 | 16,0,566,1,299, | ||
8161 | 3293,16,0,566,1, | ||
8162 | 2006,777,1,1559,3294, | ||
8163 | 16,0,566,1,85, | ||
8164 | 3295,16,0,566,1, | ||
8165 | 488,3296,16,0,566, | ||
8166 | 1,1396,3297,16,0, | ||
8167 | 566,1,89,3298,16, | ||
8168 | 0,566,1,199,3299, | ||
8169 | 16,0,566,1,1292, | ||
8170 | 3300,16,0,566,1, | ||
8171 | 422,3301,16,0,566, | ||
8172 | 1,97,3302,16,0, | ||
8173 | 566,1,1469,3303,16, | ||
8174 | 0,566,1,1788,3304, | ||
8175 | 16,0,566,1,102, | ||
8176 | 3305,16,0,566,1, | ||
8177 | 1847,794,1,322,3306, | ||
8178 | 16,0,566,1,1327, | ||
8179 | 3307,16,0,566,1, | ||
8180 | 2005,801,1,1852,806, | ||
8181 | 1,94,3308,19,565, | ||
8182 | 1,94,3309,5,77, | ||
8183 | 1,1853,649,1,1854, | ||
8184 | 655,1,1855,660,1, | ||
8185 | 112,3310,16,0,563, | ||
8186 | 1,384,3311,16,0, | ||
8187 | 563,1,1858,667,1, | ||
8188 | 1860,672,1,1862,677, | ||
8189 | 1,1863,682,1,447, | ||
8190 | 3312,16,0,563,1, | ||
8191 | 1611,3313,16,0,563, | ||
8192 | 1,124,3314,16,0, | ||
8193 | 563,1,1760,688,1, | ||
8194 | 236,3315,16,0,563, | ||
8195 | 1,1763,3316,16,0, | ||
8196 | 563,1,2201,3317,16, | ||
8197 | 0,563,1,1222,3318, | ||
8198 | 16,0,563,1,1115, | ||
8199 | 3319,16,0,563,1, | ||
8200 | 1187,3320,16,0,563, | ||
8201 | 1,137,3321,16,0, | ||
8202 | 563,1,217,3322,16, | ||
8203 | 0,563,1,32,3323, | ||
8204 | 16,0,563,1,1668, | ||
8205 | 3324,16,0,563,1, | ||
8206 | 1514,3325,16,0,563, | ||
8207 | 1,256,3326,16,0, | ||
8208 | 563,1,41,3327,16, | ||
8209 | 0,563,1,151,3328, | ||
8210 | 16,0,563,1,43, | ||
8211 | 3329,16,0,563,1, | ||
8212 | 1732,3330,16,0,563, | ||
8213 | 1,1637,710,1,2009, | ||
8214 | 716,1,1639,3331,16, | ||
8215 | 0,563,1,2011,723, | ||
8216 | 1,1467,729,1,1584, | ||
8217 | 3332,16,0,563,1, | ||
8218 | 52,3333,16,0,563, | ||
8219 | 1,381,3334,16,0, | ||
8220 | 563,1,346,3335,16, | ||
8221 | 0,563,1,166,3336, | ||
8222 | 16,0,563,1,1257, | ||
8223 | 3337,16,0,563,1, | ||
8224 | 1694,740,1,1432,3338, | ||
8225 | 16,0,563,1,1152, | ||
8226 | 3339,16,0,563,1, | ||
8227 | 1856,748,1,62,3340, | ||
8228 | 16,0,563,1,1965, | ||
8229 | 3341,16,0,563,1, | ||
8230 | 504,3342,16,0,563, | ||
8231 | 1,277,3343,16,0, | ||
8232 | 563,1,397,3344,16, | ||
8233 | 0,563,1,71,3345, | ||
8234 | 16,0,563,1,1707, | ||
8235 | 3346,16,0,563,1, | ||
8236 | 1817,760,1,1818,3347, | ||
8237 | 16,0,563,1,463, | ||
8238 | 3348,16,0,563,1, | ||
8239 | 76,3349,16,0,563, | ||
8240 | 1,1385,769,1,79, | ||
8241 | 3350,16,0,563,1, | ||
8242 | 182,3351,16,0,563, | ||
8243 | 1,299,3352,16,0, | ||
8244 | 563,1,2006,777,1, | ||
8245 | 1559,3353,16,0,563, | ||
8246 | 1,85,3354,16,0, | ||
8247 | 563,1,488,3355,16, | ||
8248 | 0,563,1,1396,3356, | ||
8249 | 16,0,563,1,89, | ||
8250 | 3357,16,0,563,1, | ||
8251 | 199,3358,16,0,563, | ||
8252 | 1,1292,3359,16,0, | ||
8253 | 563,1,422,3360,16, | ||
8254 | 0,563,1,97,3361, | ||
8255 | 16,0,563,1,1469, | ||
8256 | 3362,16,0,563,1, | ||
8257 | 1788,3363,16,0,563, | ||
8258 | 1,102,3364,16,0, | ||
8259 | 563,1,1847,794,1, | ||
8260 | 322,3365,16,0,563, | ||
8261 | 1,1327,3366,16,0, | ||
8262 | 563,1,2005,801,1, | ||
8263 | 1852,806,1,95,3367, | ||
8264 | 19,103,1,95,3368, | ||
8265 | 5,1,1,0,3369, | ||
8266 | 16,0,104,1,96, | ||
8267 | 3370,19,582,1,96, | ||
8268 | 3371,5,1,1,0, | ||
8269 | 3372,16,0,580,1, | ||
8270 | 97,3373,19,166,1, | ||
8271 | 97,3374,5,2,1, | ||
8272 | 0,3375,16,0,253, | ||
8273 | 1,2238,3376,16,0, | ||
8274 | 164,1,98,3377,19, | ||
8275 | 163,1,98,3378,5, | ||
8276 | 2,1,0,3379,16, | ||
8277 | 0,355,1,2238,3380, | ||
8278 | 16,0,161,1,99, | ||
8279 | 3381,19,293,1,99, | ||
8280 | 3382,5,2,1,0, | ||
8281 | 3383,16,0,583,1, | ||
8282 | 2238,3384,16,0,291, | ||
8283 | 1,100,3385,19,159, | ||
8284 | 1,100,3386,5,4, | ||
8285 | 1,0,3387,16,0, | ||
8286 | 591,1,2179,3388,16, | ||
8287 | 0,157,1,2249,3389, | ||
8288 | 16,0,157,1,2238, | ||
8289 | 3390,16,0,591,1, | ||
8290 | 101,3391,19,497,1, | ||
8291 | 101,3392,5,2,1, | ||
8292 | 2017,3393,16,0,495, | ||
8293 | 1,2106,3394,16,0, | ||
8294 | 604,1,102,3395,19, | ||
8295 | 522,1,102,3396,5, | ||
8296 | 4,1,2017,3397,16, | ||
8297 | 0,577,1,2106,3398, | ||
8298 | 16,0,577,1,2141, | ||
8299 | 3399,16,0,520,1, | ||
8300 | 2067,3400,16,0,520, | ||
8301 | 1,103,3401,19,147, | ||
8302 | 1,103,3402,5,3, | ||
8303 | 1,2052,3403,16,0, | ||
8304 | 492,1,2185,3404,16, | ||
8305 | 0,255,1,10,3405, | ||
8306 | 16,0,145,1,104, | ||
8307 | 3406,19,169,1,104, | ||
8308 | 3407,5,16,1,0, | ||
8309 | 3408,16,0,599,1, | ||
8310 | 2185,3409,16,0,398, | ||
8311 | 1,1965,3410,16,0, | ||
8312 | 385,1,1818,3411,16, | ||
8313 | 0,385,1,1584,3412, | ||
8314 | 16,0,498,1,10, | ||
8315 | 3413,16,0,398,1, | ||
8316 | 1639,3414,16,0,385, | ||
8317 | 1,1788,3415,16,0, | ||
8318 | 385,1,2052,3416,16, | ||
8319 | 0,398,1,2238,3417, | ||
8320 | 16,0,599,1,1611, | ||
8321 | 3418,16,0,385,1, | ||
8322 | 21,3419,16,0,167, | ||
8323 | 1,1469,3420,16,0, | ||
8324 | 498,1,1732,3421,16, | ||
8325 | 0,385,1,32,3422, | ||
8326 | 16,0,385,1,1514, | ||
8327 | 3423,16,0,498,1, | ||
8328 | 105,3424,19,130,1, | ||
8329 | 105,3425,5,17,1, | ||
8330 | 0,3426,16,0,128, | ||
8331 | 1,2185,3427,16,0, | ||
8332 | 143,1,1965,3428,16, | ||
8333 | 0,143,1,1818,3429, | ||
8334 | 16,0,143,1,1584, | ||
8335 | 3430,16,0,143,1, | ||
8336 | 10,3431,16,0,143, | ||
8337 | 1,1639,3432,16,0, | ||
8338 | 143,1,1788,3433,16, | ||
8339 | 0,143,1,52,3434, | ||
8340 | 16,0,210,1,2052, | ||
8341 | 3435,16,0,143,1, | ||
8342 | 2238,3436,16,0,128, | ||
8343 | 1,1611,3437,16,0, | ||
8344 | 143,1,21,3438,16, | ||
8345 | 0,143,1,1469,3439, | ||
8346 | 16,0,143,1,1732, | ||
8347 | 3440,16,0,143,1, | ||
8348 | 32,3441,16,0,143, | ||
8349 | 1,1514,3442,16,0, | ||
8350 | 143,1,106,3443,19, | ||
8351 | 552,1,106,3444,5, | ||
8352 | 4,1,2017,3445,16, | ||
8353 | 0,550,1,2106,3446, | ||
8354 | 16,0,550,1,2141, | ||
8355 | 3447,16,0,550,1, | ||
8356 | 2067,3448,16,0,550, | ||
8357 | 1,107,3449,19,309, | ||
8358 | 1,107,3450,5,10, | ||
8359 | 1,1965,3451,16,0, | ||
8360 | 307,1,1818,3452,16, | ||
8361 | 0,307,1,1639,3453, | ||
8362 | 16,0,307,1,1788, | ||
8363 | 3454,16,0,307,1, | ||
8364 | 2196,3455,16,0,598, | ||
8365 | 1,1611,3456,16,0, | ||
8366 | 307,1,2063,3457,16, | ||
8367 | 0,494,1,1732,3458, | ||
8368 | 16,0,307,1,31, | ||
8369 | 3459,16,0,397,1, | ||
8370 | 32,3460,16,0,307, | ||
8371 | 1,108,3461,19,380, | ||
8372 | 1,108,3462,5,1, | ||
8373 | 1,32,3463,16,0, | ||
8374 | 378,1,109,3464,19, | ||
8375 | 280,1,109,3465,5, | ||
8376 | 7,1,1639,3466,16, | ||
8377 | 0,606,1,1818,3467, | ||
8378 | 16,0,299,1,1732, | ||
8379 | 3468,16,0,339,1, | ||
8380 | 1788,3469,16,0,278, | ||
8381 | 1,1965,3470,16,0, | ||
8382 | 391,1,1611,3471,16, | ||
8383 | 0,594,1,32,3472, | ||
8384 | 16,0,395,1,110, | ||
8385 | 3473,19,361,1,110, | ||
8386 | 3474,5,10,1,1965, | ||
8387 | 3475,16,0,359,1, | ||
8388 | 1818,3476,16,0,359, | ||
8389 | 1,1639,3477,16,0, | ||
8390 | 359,1,1788,3478,16, | ||
8391 | 0,359,1,1732,3479, | ||
8392 | 16,0,359,1,1611, | ||
8393 | 3480,16,0,359,1, | ||
8394 | 1469,3481,16,0,367, | ||
8395 | 1,1584,3482,16,0, | ||
8396 | 367,1,32,3483,16, | ||
8397 | 0,359,1,1514,3484, | ||
8398 | 16,0,547,1,111, | ||
8399 | 3485,19,358,1,111, | ||
8400 | 3486,5,7,1,1639, | ||
8401 | 3487,16,0,356,1, | ||
8402 | 1818,3488,16,0,356, | ||
8403 | 1,1732,3489,16,0, | ||
8404 | 356,1,1788,3490,16, | ||
8405 | 0,356,1,1965,3491, | ||
8406 | 16,0,356,1,1611, | ||
8407 | 3492,16,0,356,1, | ||
8408 | 32,3493,16,0,356, | ||
8409 | 1,112,3494,19,324, | ||
8410 | 1,112,3495,5,7, | ||
8411 | 1,1639,3496,16,0, | ||
8412 | 322,1,1818,3497,16, | ||
8413 | 0,322,1,1732,3498, | ||
8414 | 16,0,322,1,1788, | ||
8415 | 3499,16,0,322,1, | ||
8416 | 1965,3500,16,0,322, | ||
8417 | 1,1611,3501,16,0, | ||
8418 | 322,1,32,3502,16, | ||
8419 | 0,322,1,113,3503, | ||
8420 | 19,321,1,113,3504, | ||
8421 | 5,7,1,1639,3505, | ||
8422 | 16,0,319,1,1818, | ||
8423 | 3506,16,0,319,1, | ||
8424 | 1732,3507,16,0,319, | ||
8425 | 1,1788,3508,16,0, | ||
8426 | 319,1,1965,3509,16, | ||
8427 | 0,319,1,1611,3510, | ||
8428 | 16,0,319,1,32, | ||
8429 | 3511,16,0,319,1, | ||
8430 | 114,3512,19,318,1, | ||
8431 | 114,3513,5,7,1, | ||
8432 | 1639,3514,16,0,316, | ||
8433 | 1,1818,3515,16,0, | ||
8434 | 316,1,1732,3516,16, | ||
8435 | 0,316,1,1788,3517, | ||
8436 | 16,0,316,1,1965, | ||
8437 | 3518,16,0,316,1, | ||
8438 | 1611,3519,16,0,316, | ||
8439 | 1,32,3520,16,0, | ||
8440 | 316,1,115,3521,19, | ||
8441 | 315,1,115,3522,5, | ||
8442 | 7,1,1639,3523,16, | ||
8443 | 0,313,1,1818,3524, | ||
8444 | 16,0,313,1,1732, | ||
8445 | 3525,16,0,313,1, | ||
8446 | 1788,3526,16,0,313, | ||
8447 | 1,1965,3527,16,0, | ||
8448 | 313,1,1611,3528,16, | ||
8449 | 0,313,1,32,3529, | ||
8450 | 16,0,313,1,116, | ||
8451 | 3530,19,312,1,116, | ||
8452 | 3531,5,7,1,1639, | ||
8453 | 3532,16,0,310,1, | ||
8454 | 1818,3533,16,0,310, | ||
8455 | 1,1732,3534,16,0, | ||
8456 | 310,1,1788,3535,16, | ||
8457 | 0,310,1,1965,3536, | ||
8458 | 16,0,310,1,1611, | ||
8459 | 3537,16,0,310,1, | ||
8460 | 32,3538,16,0,310, | ||
8461 | 1,117,3539,19,501, | ||
8462 | 1,117,3540,5,2, | ||
8463 | 1,1584,3541,16,0, | ||
8464 | 575,1,1469,3542,16, | ||
8465 | 0,499,1,118,3543, | ||
8466 | 19,470,1,118,3544, | ||
8467 | 5,57,1,1584,3545, | ||
8468 | 16,0,468,1,1639, | ||
8469 | 3546,16,0,468,1, | ||
8470 | 112,3547,16,0,468, | ||
8471 | 1,384,3548,16,0, | ||
8472 | 468,1,447,3549,16, | ||
8473 | 0,468,1,124,3550, | ||
8474 | 16,0,468,1,236, | ||
8475 | 3551,16,0,468,1, | ||
8476 | 1763,3552,16,0,468, | ||
8477 | 1,2201,3553,16,0, | ||
8478 | 468,1,1222,3554,16, | ||
8479 | 0,468,1,1115,3555, | ||
8480 | 16,0,468,1,1187, | ||
8481 | 3556,16,0,468,1, | ||
8482 | 137,3557,16,0,468, | ||
8483 | 1,346,3558,16,0, | ||
8484 | 468,1,32,3559,16, | ||
8485 | 0,468,1,1668,3560, | ||
8486 | 16,0,468,1,1514, | ||
8487 | 3561,16,0,468,1, | ||
8488 | 256,3562,16,0,468, | ||
8489 | 1,41,3563,16,0, | ||
8490 | 468,1,151,3564,16, | ||
8491 | 0,468,1,43,3565, | ||
8492 | 16,0,468,1,1788, | ||
8493 | 3566,16,0,468,1, | ||
8494 | 52,3567,16,0,468, | ||
8495 | 1,381,3568,16,0, | ||
8496 | 468,1,166,3569,16, | ||
8497 | 0,468,1,1257,3570, | ||
8498 | 16,0,468,1,277, | ||
8499 | 3571,16,0,468,1, | ||
8500 | 1432,3572,16,0,468, | ||
8501 | 1,1152,3573,16,0, | ||
8502 | 468,1,62,3574,16, | ||
8503 | 0,548,1,1965,3575, | ||
8504 | 16,0,468,1,504, | ||
8505 | 3576,16,0,468,1, | ||
8506 | 488,3577,16,0,468, | ||
8507 | 1,397,3578,16,0, | ||
8508 | 468,1,71,3579,16, | ||
8509 | 0,468,1,1707,3580, | ||
8510 | 16,0,468,1,182, | ||
8511 | 3581,16,0,468,1, | ||
8512 | 1818,3582,16,0,468, | ||
8513 | 1,463,3583,16,0, | ||
8514 | 468,1,76,3584,16, | ||
8515 | 0,468,1,79,3585, | ||
8516 | 16,0,468,1,1611, | ||
8517 | 3586,16,0,468,1, | ||
8518 | 299,3587,16,0,468, | ||
8519 | 1,1559,3588,16,0, | ||
8520 | 468,1,85,3589,16, | ||
8521 | 0,468,1,1396,3590, | ||
8522 | 16,0,468,1,89, | ||
8523 | 3591,16,0,468,1, | ||
8524 | 199,3592,16,0,468, | ||
8525 | 1,1292,3593,16,0, | ||
8526 | 468,1,422,3594,16, | ||
8527 | 0,468,1,97,3595, | ||
8528 | 16,0,468,1,1469, | ||
8529 | 3596,16,0,468,1, | ||
8530 | 1732,3597,16,0,468, | ||
8531 | 1,102,3598,16,0, | ||
8532 | 468,1,322,3599,16, | ||
8533 | 0,468,1,1327,3600, | ||
8534 | 16,0,468,1,217, | ||
8535 | 3601,16,0,468,1, | ||
8536 | 119,3602,19,487,1, | ||
8537 | 119,3603,5,2,1, | ||
8538 | 381,3604,16,0,485, | ||
8539 | 1,41,3605,16,0, | ||
8540 | 601,1,120,3606,19, | ||
8541 | 142,1,120,3607,5, | ||
8542 | 3,1,381,3608,16, | ||
8543 | 0,140,1,41,3609, | ||
8544 | 16,0,140,1,384, | ||
8545 | 3610,16,0,490,1, | ||
8546 | 121,3611,19,3612,4, | ||
8547 | 36,69,0,120,0, | ||
8548 | 112,0,114,0,101, | ||
8549 | 0,115,0,115,0, | ||
8550 | 105,0,111,0,110, | ||
8551 | 0,65,0,114,0, | ||
8552 | 103,0,117,0,109, | ||
8553 | 0,101,0,110,0, | ||
8554 | 116,0,1,121,3607, | ||
8555 | 1,122,3613,19,481, | ||
8556 | 1,122,3614,5,57, | ||
8557 | 1,1584,3615,16,0, | ||
8558 | 479,1,1639,3616,16, | ||
8559 | 0,479,1,112,3617, | ||
8560 | 16,0,479,1,384, | ||
8561 | 3618,16,0,479,1, | ||
8562 | 447,3619,16,0,479, | ||
8563 | 1,124,3620,16,0, | ||
8564 | 479,1,236,3621,16, | ||
8565 | 0,479,1,1763,3622, | ||
8566 | 16,0,479,1,2201, | ||
8567 | 3623,16,0,479,1, | ||
8568 | 1222,3624,16,0,479, | ||
8569 | 1,1115,3625,16,0, | ||
8570 | 479,1,1187,3626,16, | ||
8571 | 0,479,1,137,3627, | ||
8572 | 16,0,479,1,346, | ||
8573 | 3628,16,0,479,1, | ||
8574 | 32,3629,16,0,479, | ||
8575 | 1,1668,3630,16,0, | ||
8576 | 479,1,1514,3631,16, | ||
8577 | 0,479,1,256,3632, | ||
8578 | 16,0,479,1,41, | ||
8579 | 3633,16,0,479,1, | ||
8580 | 151,3634,16,0,479, | ||
8581 | 1,43,3635,16,0, | ||
8582 | 479,1,1788,3636,16, | ||
8583 | 0,479,1,52,3637, | ||
8584 | 16,0,479,1,381, | ||
8585 | 3638,16,0,479,1, | ||
8586 | 166,3639,16,0,479, | ||
8587 | 1,1257,3640,16,0, | ||
8588 | 479,1,277,3641,16, | ||
8589 | 0,479,1,1432,3642, | ||
8590 | 16,0,479,1,1152, | ||
8591 | 3643,16,0,479,1, | ||
8592 | 62,3644,16,0,590, | ||
8593 | 1,1965,3645,16,0, | ||
8594 | 479,1,504,3646,16, | ||
8595 | 0,479,1,488,3647, | ||
8596 | 16,0,479,1,397, | ||
8597 | 3648,16,0,479,1, | ||
8598 | 71,3649,16,0,479, | ||
8599 | 1,1707,3650,16,0, | ||
8600 | 479,1,182,3651,16, | ||
8601 | 0,479,1,1818,3652, | ||
8602 | 16,0,479,1,463, | ||
8603 | 3653,16,0,479,1, | ||
8604 | 76,3654,16,0,479, | ||
8605 | 1,79,3655,16,0, | ||
8606 | 479,1,1611,3656,16, | ||
8607 | 0,479,1,299,3657, | ||
8608 | 16,0,479,1,1559, | ||
8609 | 3658,16,0,479,1, | ||
8610 | 85,3659,16,0,479, | ||
8611 | 1,1396,3660,16,0, | ||
8612 | 479,1,89,3661,16, | ||
8613 | 0,479,1,199,3662, | ||
8614 | 16,0,479,1,1292, | ||
8615 | 3663,16,0,479,1, | ||
8616 | 422,3664,16,0,479, | ||
8617 | 1,97,3665,16,0, | ||
8618 | 479,1,1469,3666,16, | ||
8619 | 0,479,1,1732,3667, | ||
8620 | 16,0,479,1,102, | ||
8621 | 3668,16,0,479,1, | ||
8622 | 322,3669,16,0,479, | ||
8623 | 1,1327,3670,16,0, | ||
8624 | 479,1,217,3671,16, | ||
8625 | 0,479,1,123,3672, | ||
8626 | 19,3673,4,28,86, | ||
8627 | 0,101,0,99,0, | ||
8628 | 116,0,111,0,114, | ||
8629 | 0,67,0,111,0, | ||
8630 | 110,0,115,0,116, | ||
8631 | 0,97,0,110,0, | ||
8632 | 116,0,1,123,3614, | ||
8633 | 1,124,3674,19,3675, | ||
8634 | 4,32,82,0,111, | ||
8635 | 0,116,0,97,0, | ||
8636 | 116,0,105,0,111, | ||
8637 | 0,110,0,67,0, | ||
8638 | 111,0,110,0,115, | ||
8639 | 0,116,0,97,0, | ||
8640 | 110,0,116,0,1, | ||
8641 | 124,3614,1,125,3676, | ||
8642 | 19,3677,4,24,76, | ||
8643 | 0,105,0,115,0, | ||
8644 | 116,0,67,0,111, | ||
8645 | 0,110,0,115,0, | ||
8646 | 116,0,97,0,110, | ||
8647 | 0,116,0,1,125, | ||
8648 | 3614,1,126,3678,19, | ||
8649 | 191,1,126,3679,5, | ||
8650 | 56,1,1584,3680,16, | ||
8651 | 0,461,1,1639,3681, | ||
8652 | 16,0,362,1,112, | ||
8653 | 3682,16,0,265,1, | ||
8654 | 384,3683,16,0,189, | ||
8655 | 1,447,3684,16,0, | ||
8656 | 558,1,124,3685,16, | ||
8657 | 0,270,1,236,3686, | ||
8658 | 16,0,354,1,1763, | ||
8659 | 3687,16,0,249,1, | ||
8660 | 2201,3688,16,0,602, | ||
8661 | 1,1222,3689,16,0, | ||
8662 | 263,1,1115,3690,16, | ||
8663 | 0,227,1,1187,3691, | ||
8664 | 16,0,225,1,137, | ||
8665 | 3692,16,0,289,1, | ||
8666 | 346,3693,16,0,419, | ||
8667 | 1,32,3694,16,0, | ||
8668 | 362,1,1668,3695,16, | ||
8669 | 0,209,1,1514,3696, | ||
8670 | 16,0,505,1,256, | ||
8671 | 3697,16,0,366,1, | ||
8672 | 41,3698,16,0,189, | ||
8673 | 1,151,3699,16,0, | ||
8674 | 290,1,43,3700,16, | ||
8675 | 0,573,1,1788,3701, | ||
8676 | 16,0,362,1,52, | ||
8677 | 3702,16,0,555,1, | ||
8678 | 381,3703,16,0,189, | ||
8679 | 1,166,3704,16,0, | ||
8680 | 297,1,1257,3705,16, | ||
8681 | 0,284,1,277,3706, | ||
8682 | 16,0,376,1,1432, | ||
8683 | 3707,16,0,388,1, | ||
8684 | 1152,3708,16,0,266, | ||
8685 | 1,1965,3709,16,0, | ||
8686 | 362,1,504,3710,16, | ||
8687 | 0,326,1,488,3711, | ||
8688 | 16,0,574,1,397, | ||
8689 | 3712,16,0,503,1, | ||
8690 | 71,3713,16,0,220, | ||
8691 | 1,1707,3714,16,0, | ||
8692 | 288,1,182,3715,16, | ||
8693 | 0,326,1,1818,3716, | ||
8694 | 16,0,362,1,463, | ||
8695 | 3717,16,0,326,1, | ||
8696 | 76,3718,16,0,489, | ||
8697 | 1,79,3719,16,0, | ||
8698 | 228,1,1611,3720,16, | ||
8699 | 0,362,1,299,3721, | ||
8700 | 16,0,384,1,1559, | ||
8701 | 3722,16,0,554,1, | ||
8702 | 85,3723,16,0,389, | ||
8703 | 1,1396,3724,16,0, | ||
8704 | 377,1,89,3725,16, | ||
8705 | 0,245,1,199,3726, | ||
8706 | 16,0,340,1,1292, | ||
8707 | 3727,16,0,347,1, | ||
8708 | 422,3728,16,0,519, | ||
8709 | 1,97,3729,16,0, | ||
8710 | 368,1,1469,3730,16, | ||
8711 | 0,461,1,1732,3731, | ||
8712 | 16,0,362,1,102, | ||
8713 | 3732,16,0,256,1, | ||
8714 | 322,3733,16,0,390, | ||
8715 | 1,1327,3734,16,0, | ||
8716 | 345,1,217,3735,16, | ||
8717 | 0,346,1,127,3736, | ||
8718 | 19,3737,4,36,67, | ||
8719 | 0,111,0,110,0, | ||
8720 | 115,0,116,0,97, | ||
8721 | 0,110,0,116,0, | ||
8722 | 69,0,120,0,112, | ||
8723 | 0,114,0,101,0, | ||
8724 | 115,0,115,0,105, | ||
8725 | 0,111,0,110,0, | ||
8726 | 1,127,3679,1,128, | ||
8727 | 3738,19,3739,4,30, | ||
8728 | 73,0,100,0,101, | ||
8729 | 0,110,0,116,0, | ||
8730 | 69,0,120,0,112, | ||
8731 | 0,114,0,101,0, | ||
8732 | 115,0,115,0,105, | ||
8733 | 0,111,0,110,0, | ||
8734 | 1,128,3679,1,129, | ||
8735 | 3740,19,3741,4,36, | ||
8736 | 73,0,100,0,101, | ||
8737 | 0,110,0,116,0, | ||
8738 | 68,0,111,0,116, | ||
8739 | 0,69,0,120,0, | ||
8740 | 112,0,114,0,101, | ||
8741 | 0,115,0,115,0, | ||
8742 | 105,0,111,0,110, | ||
8743 | 0,1,129,3679,1, | ||
8744 | 130,3742,19,3743,4, | ||
8745 | 44,70,0,117,0, | ||
8746 | 110,0,99,0,116, | ||
8747 | 0,105,0,111,0, | ||
8748 | 110,0,67,0,97, | ||
8749 | 0,108,0,108,0, | ||
8750 | 69,0,120,0,112, | ||
8751 | 0,114,0,101,0, | ||
8752 | 115,0,115,0,105, | ||
8753 | 0,111,0,110,0, | ||
8754 | 1,130,3679,1,131, | ||
8755 | 3744,19,3745,4,32, | ||
8756 | 66,0,105,0,110, | ||
8757 | 0,97,0,114,0, | ||
8758 | 121,0,69,0,120, | ||
8759 | 0,112,0,114,0, | ||
8760 | 101,0,115,0,115, | ||
8761 | 0,105,0,111,0, | ||
8762 | 110,0,1,131,3679, | ||
8763 | 1,132,3746,19,3747, | ||
8764 | 4,30,85,0,110, | ||
8765 | 0,97,0,114,0, | ||
8766 | 121,0,69,0,120, | ||
8767 | 0,112,0,114,0, | ||
8768 | 101,0,115,0,115, | ||
8769 | 0,105,0,111,0, | ||
8770 | 110,0,1,132,3679, | ||
8771 | 1,133,3748,19,3749, | ||
8772 | 4,36,84,0,121, | ||
8773 | 0,112,0,101,0, | ||
8774 | 99,0,97,0,115, | ||
8775 | 0,116,0,69,0, | ||
8776 | 120,0,112,0,114, | ||
8777 | 0,101,0,115,0, | ||
8778 | 115,0,105,0,111, | ||
8779 | 0,110,0,1,133, | ||
8780 | 3679,1,134,3750,19, | ||
8781 | 3751,4,42,80,0, | ||
8782 | 97,0,114,0,101, | ||
8783 | 0,110,0,116,0, | ||
8784 | 104,0,101,0,115, | ||
8785 | 0,105,0,115,0, | ||
8786 | 69,0,120,0,112, | ||
8787 | 0,114,0,101,0, | ||
8788 | 115,0,115,0,105, | ||
8789 | 0,111,0,110,0, | ||
8790 | 1,134,3679,1,135, | ||
8791 | 3752,19,3753,4,56, | ||
8792 | 73,0,110,0,99, | ||
8793 | 0,114,0,101,0, | ||
8794 | 109,0,101,0,110, | ||
8795 | 0,116,0,68,0, | ||
8796 | 101,0,99,0,114, | ||
8797 | 0,101,0,109,0, | ||
8798 | 101,0,110,0,116, | ||
8799 | 0,69,0,120,0, | ||
8800 | 112,0,114,0,101, | ||
8801 | 0,115,0,115,0, | ||
8802 | 105,0,111,0,110, | ||
8803 | 0,1,135,3679,1, | ||
8804 | 137,3754,19,640,1, | ||
8805 | 137,3368,1,138,3755, | ||
8806 | 19,618,1,138,3368, | ||
8807 | 1,139,3756,19,2727, | ||
8808 | 1,139,3371,1,140, | ||
8809 | 3757,19,2758,1,140, | ||
8810 | 3371,1,141,3758,19, | ||
8811 | 2722,1,141,3371,1, | ||
8812 | 142,3759,19,2763,1, | ||
8813 | 142,3371,1,143,3760, | ||
8814 | 19,2749,1,143,3374, | ||
8815 | 1,144,3761,19,2733, | ||
8816 | 1,144,3374,1,145, | ||
8817 | 3762,19,2739,1,145, | ||
8818 | 3378,1,146,3763,19, | ||
8819 | 2744,1,146,3378,1, | ||
8820 | 147,3764,19,630,1, | ||
8821 | 147,3382,1,148,3765, | ||
8822 | 19,635,1,148,3382, | ||
8823 | 1,149,3766,19,645, | ||
8824 | 1,149,3386,1,150, | ||
8825 | 3767,19,624,1,150, | ||
8826 | 3386,1,151,3768,19, | ||
8827 | 1362,1,151,3392,1, | ||
8828 | 152,3769,19,1355,1, | ||
8829 | 152,3392,1,153,3770, | ||
8830 | 19,1368,1,153,3396, | ||
8831 | 1,154,3771,19,1378, | ||
8832 | 1,154,3402,1,155, | ||
8833 | 3772,19,1388,1,155, | ||
8834 | 3402,1,156,3773,19, | ||
8835 | 973,1,156,3407,1, | ||
8836 | 157,3774,19,727,1, | ||
8837 | 157,3450,1,158,3775, | ||
8838 | 19,780,1,158,3450, | ||
8839 | 1,159,3776,19,720, | ||
8840 | 1,159,3462,1,160, | ||
8841 | 3777,19,804,1,160, | ||
8842 | 3462,1,161,3778,19, | ||
8843 | 732,1,161,3465,1, | ||
8844 | 162,3779,19,680,1, | ||
8845 | 162,3465,1,163,3780, | ||
8846 | 19,772,1,163,3465, | ||
8847 | 1,164,3781,19,675, | ||
8848 | 1,164,3465,1,165, | ||
8849 | 3782,19,670,1,165, | ||
8850 | 3465,1,166,3783,19, | ||
8851 | 751,1,166,3465,1, | ||
8852 | 167,3784,19,663,1, | ||
8853 | 167,3465,1,168,3785, | ||
8854 | 19,658,1,168,3465, | ||
8855 | 1,169,3786,19,653, | ||
8856 | 1,169,3465,1,170, | ||
8857 | 3787,19,809,1,170, | ||
8858 | 3465,1,171,3788,19, | ||
8859 | 1135,1,171,3495,1, | ||
8860 | 172,3789,19,1130,1, | ||
8861 | 172,3495,1,173,3790, | ||
8862 | 19,764,1,173,3504, | ||
8863 | 1,174,3791,19,797, | ||
8864 | 1,174,3504,1,175, | ||
8865 | 3792,19,692,1,175, | ||
8866 | 3513,1,176,3793,19, | ||
8867 | 744,1,176,3522,1, | ||
8868 | 177,3794,19,714,1, | ||
8869 | 177,3531,1,178,3795, | ||
8870 | 19,1312,1,178,3540, | ||
8871 | 1,179,3796,19,1261, | ||
8872 | 1,179,3540,1,180, | ||
8873 | 3797,19,986,1,180, | ||
8874 | 3540,1,181,3798,19, | ||
8875 | 1229,1,181,3540,1, | ||
8876 | 182,3799,19,1266,1, | ||
8877 | 182,3474,1,183,3800, | ||
8878 | 19,1118,1,183,3474, | ||
8879 | 1,184,3801,19,1016, | ||
8880 | 1,184,3474,1,185, | ||
8881 | 3802,19,967,1,185, | ||
8882 | 3474,1,186,3803,19, | ||
8883 | 1301,1,186,3474,1, | ||
8884 | 187,3804,19,1272,1, | ||
8885 | 187,3474,1,188,3805, | ||
8886 | 19,1234,1,188,3474, | ||
8887 | 1,189,3806,19,1160, | ||
8888 | 1,189,3474,1,190, | ||
8889 | 3807,19,1224,1,190, | ||
8890 | 3486,1,191,3808,19, | ||
8891 | 1214,1,191,3486,1, | ||
8892 | 192,3809,19,1333,1, | ||
8893 | 192,3614,1,193,3810, | ||
8894 | 19,1328,1,193,3614, | ||
8895 | 1,194,3811,19,992, | ||
8896 | 1,194,3614,1,195, | ||
8897 | 3812,19,1306,1,195, | ||
8898 | 3614,1,196,3813,19, | ||
8899 | 1318,1,196,3614,1, | ||
8900 | 197,3814,19,960,1, | ||
8901 | 197,3614,1,198,3815, | ||
8902 | 19,1087,1,198,3614, | ||
8903 | 1,199,3816,19,1197, | ||
8904 | 1,199,3679,1,200, | ||
8905 | 3817,19,1006,1,200, | ||
8906 | 3679,1,201,3818,19, | ||
8907 | 1023,1,201,3679,1, | ||
8908 | 202,3819,19,1044,1, | ||
8909 | 202,3679,1,203,3820, | ||
8910 | 19,1039,1,203,3679, | ||
8911 | 1,204,3821,19,1034, | ||
8912 | 1,204,3679,1,205, | ||
8913 | 3822,19,1029,1,205, | ||
8914 | 3679,1,206,3823,19, | ||
8915 | 1186,1,206,3679,1, | ||
8916 | 207,3824,19,1176,1, | ||
8917 | 207,3679,1,208,3825, | ||
8918 | 19,1250,1,208,3679, | ||
8919 | 1,209,3826,19,1181, | ||
8920 | 1,209,3679,1,210, | ||
8921 | 3827,19,1171,1,210, | ||
8922 | 3679,1,211,3828,19, | ||
8923 | 1155,1,211,3679,1, | ||
8924 | 212,3829,19,1113,1, | ||
8925 | 212,3679,1,213,3830, | ||
8926 | 19,1049,1,213,3679, | ||
8927 | 1,214,3831,19,1011, | ||
8928 | 1,214,3679,1,215, | ||
8929 | 3832,19,979,1,215, | ||
8930 | 3679,1,216,3833,19, | ||
8931 | 1323,1,216,3679,1, | ||
8932 | 217,3834,19,1296,1, | ||
8933 | 217,3679,1,218,3835, | ||
8934 | 19,1284,1,218,3679, | ||
8935 | 1,219,3836,19,1278, | ||
8936 | 1,219,3679,1,220, | ||
8937 | 3837,19,1255,1,220, | ||
8938 | 3679,1,221,3838,19, | ||
8939 | 1239,1,221,3679,1, | ||
8940 | 222,3839,19,1219,1, | ||
8941 | 222,3679,1,223,3840, | ||
8942 | 19,1208,1,223,3679, | ||
8943 | 1,224,3841,19,1165, | ||
8944 | 1,224,3679,1,225, | ||
8945 | 3842,19,1191,1,225, | ||
8946 | 3679,1,226,3843,19, | ||
8947 | 1202,1,226,3679,1, | ||
8948 | 227,3844,19,1291,1, | ||
8949 | 227,3679,1,228,3845, | ||
8950 | 19,1108,1,228,3679, | ||
8951 | 1,229,3846,19,1143, | ||
8952 | 1,229,3679,1,230, | ||
8953 | 3847,19,1149,1,230, | ||
8954 | 3679,1,231,3848,19, | ||
8955 | 1124,1,231,3679,1, | ||
8956 | 232,3849,19,1093,1, | ||
8957 | 232,3679,1,233,3850, | ||
8958 | 19,1061,1,233,3679, | ||
8959 | 1,234,3851,19,1056, | ||
8960 | 1,234,3679,1,235, | ||
8961 | 3852,19,1066,1,235, | ||
8962 | 3679,1,236,3853,19, | ||
8963 | 1081,1,236,3679,1, | ||
8964 | 237,3854,19,1071,1, | ||
8965 | 237,3679,1,238,3855, | ||
8966 | 19,1076,1,238,3679, | ||
8967 | 1,239,3856,19,1103, | ||
8968 | 1,239,3679,1,240, | ||
8969 | 3857,19,998,1,240, | ||
8970 | 3679,1,241,3858,19, | ||
8971 | 1098,1,241,3679,1, | ||
8972 | 242,3859,19,1245,1, | ||
8973 | 242,3544,1,243,3860, | ||
8974 | 19,1404,1,243,3603, | ||
8975 | 1,244,3861,19,1414, | ||
8976 | 1,244,3603,1,245, | ||
8977 | 3862,19,1398,1,245, | ||
8978 | 3607,1,246,3863,19, | ||
8979 | 1702,1,246,3425,1, | ||
8980 | 247,3864,19,1697,1, | ||
8981 | 247,3425,1,248,3865, | ||
8982 | 19,1692,1,248,3425, | ||
8983 | 1,249,3866,19,1687, | ||
8984 | 1,249,3425,1,250, | ||
8985 | 3867,19,1682,1,250, | ||
8986 | 3425,1,251,3868,19, | ||
8987 | 1677,1,251,3425,1, | ||
8988 | 252,3869,19,1672,1, | ||
8989 | 252,3425,1,253,3870, | ||
8990 | 19,1574,1,253,3444, | ||
8991 | 1,254,3871,19,1639, | ||
8992 | 1,254,3444,1,255, | ||
8993 | 3872,19,1634,1,255, | ||
8994 | 3444,1,256,3873,19, | ||
8995 | 1567,1,256,3444,1, | ||
8996 | 257,3874,19,1562,1, | ||
8997 | 257,3444,1,258,3875, | ||
8998 | 19,1628,1,258,3444, | ||
8999 | 1,259,3876,19,1556, | ||
9000 | 1,259,3444,1,260, | ||
9001 | 3877,19,1551,1,260, | ||
9002 | 3444,1,261,3878,19, | ||
9003 | 1546,1,261,3444,1, | ||
9004 | 262,3879,19,1541,1, | ||
9005 | 262,3444,1,263,3880, | ||
9006 | 19,1661,1,263,3444, | ||
9007 | 1,264,3881,19,1621, | ||
9008 | 1,264,3444,1,265, | ||
9009 | 3882,19,1534,1,265, | ||
9010 | 3444,1,266,3883,19, | ||
9011 | 1529,1,266,3444,1, | ||
9012 | 267,3884,19,1524,1, | ||
9013 | 267,3444,1,268,3885, | ||
9014 | 19,1519,1,268,3444, | ||
9015 | 1,269,3886,19,1601, | ||
9016 | 1,269,3444,1,270, | ||
9017 | 3887,19,1513,1,270, | ||
9018 | 3444,1,271,3888,19, | ||
9019 | 1508,1,271,3444,1, | ||
9020 | 272,3889,19,1503,1, | ||
9021 | 272,3444,1,273,3890, | ||
9022 | 19,1498,1,273,3444, | ||
9023 | 1,274,3891,19,1493, | ||
9024 | 1,274,3444,1,275, | ||
9025 | 3892,19,1488,1,275, | ||
9026 | 3444,1,276,3893,19, | ||
9027 | 1483,1,276,3444,1, | ||
9028 | 277,3894,19,1478,1, | ||
9029 | 277,3444,1,278,3895, | ||
9030 | 19,1473,1,278,3444, | ||
9031 | 1,279,3896,19,1468, | ||
9032 | 1,279,3444,1,280, | ||
9033 | 3897,19,1593,1,280, | ||
9034 | 3444,1,281,3898,19, | ||
9035 | 1462,1,281,3444,1, | ||
9036 | 282,3899,19,1457,1, | ||
9037 | 282,3444,1,283,3900, | ||
9038 | 19,1452,1,283,3444, | ||
9039 | 1,284,3901,19,1447, | ||
9040 | 1,284,3444,1,285, | ||
9041 | 3902,19,1442,1,285, | ||
9042 | 3444,1,286,3903,19, | ||
9043 | 3904,4,50,65,0, | ||
9044 | 114,0,103,0,117, | ||
9045 | 0,109,0,101,0, | ||
9046 | 110,0,116,0,68, | ||
9047 | 0,101,0,99,0, | ||
9048 | 108,0,97,0,114, | ||
9049 | 0,97,0,116,0, | ||
9050 | 105,0,111,0,110, | ||
9051 | 0,76,0,105,0, | ||
9052 | 115,0,116,0,95, | ||
9053 | 0,51,0,1,286, | ||
9054 | 3402,1,287,3905,19, | ||
9055 | 3906,4,28,65,0, | ||
9056 | 114,0,103,0,117, | ||
9057 | 0,109,0,101,0, | ||
9058 | 110,0,116,0,76, | ||
9059 | 0,105,0,115,0, | ||
9060 | 116,0,95,0,51, | ||
9061 | 0,1,287,3603,1, | ||
9062 | 288,3907,19,3908,4, | ||
9063 | 24,83,0,116,0, | ||
9064 | 97,0,116,0,101, | ||
9065 | 0,109,0,101,0, | ||
9066 | 110,0,116,0,95, | ||
9067 | 0,49,0,49,0, | ||
9068 | 1,288,3465,1,289, | ||
9069 | 3909,19,3910,4,28, | ||
9070 | 65,0,114,0,103, | ||
9071 | 0,117,0,109,0, | ||
9072 | 101,0,110,0,116, | ||
9073 | 0,76,0,105,0, | ||
9074 | 115,0,116,0,95, | ||
9075 | 0,52,0,1,289, | ||
9076 | 3603,1,290,3911,19, | ||
9077 | 3912,4,50,65,0, | ||
9078 | 114,0,103,0,117, | ||
9079 | 0,109,0,101,0, | ||
9080 | 110,0,116,0,68, | ||
9081 | 0,101,0,99,0, | ||
9082 | 108,0,97,0,114, | ||
9083 | 0,97,0,116,0, | ||
9084 | 105,0,111,0,110, | ||
9085 | 0,76,0,105,0, | ||
9086 | 115,0,116,0,95, | ||
9087 | 0,52,0,1,290, | ||
9088 | 3402,1,291,3913,19, | ||
9089 | 3914,4,50,65,0, | ||
9090 | 114,0,103,0,117, | ||
9091 | 0,109,0,101,0, | ||
9092 | 110,0,116,0,68, | ||
9093 | 0,101,0,99,0, | ||
9094 | 108,0,97,0,114, | ||
9095 | 0,97,0,116,0, | ||
9096 | 105,0,111,0,110, | ||
9097 | 0,76,0,105,0, | ||
9098 | 115,0,116,0,95, | ||
9099 | 0,53,0,1,291, | ||
9100 | 3402,2,0,0}; | ||
9101 | new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory)); | ||
9102 | new Sfactory(this,"StatementList_1",new SCreator(StatementList_1_factory)); | ||
9103 | new Sfactory(this,"StateChange_1",new SCreator(StateChange_1_factory)); | ||
9104 | new Sfactory(this,"StateChange_2",new SCreator(StateChange_2_factory)); | ||
9105 | new Sfactory(this,"Declaration",new SCreator(Declaration_factory)); | ||
9106 | new Sfactory(this,"IdentExpression",new SCreator(IdentExpression_factory)); | ||
9107 | new Sfactory(this,"error",new SCreator(error_factory)); | ||
9108 | new Sfactory(this,"BinaryExpression_2",new SCreator(BinaryExpression_2_factory)); | ||
9109 | new Sfactory(this,"BinaryExpression_3",new SCreator(BinaryExpression_3_factory)); | ||
9110 | new Sfactory(this,"BinaryExpression_4",new SCreator(BinaryExpression_4_factory)); | ||
9111 | new Sfactory(this,"BinaryExpression_5",new SCreator(BinaryExpression_5_factory)); | ||
9112 | new Sfactory(this,"ReturnStatement_2",new SCreator(ReturnStatement_2_factory)); | ||
9113 | new Sfactory(this,"BinaryExpression_8",new SCreator(BinaryExpression_8_factory)); | ||
9114 | new Sfactory(this,"BinaryExpression_9",new SCreator(BinaryExpression_9_factory)); | ||
9115 | new Sfactory(this,"VectorConstant_1",new SCreator(VectorConstant_1_factory)); | ||
9116 | new Sfactory(this,"ParenthesisExpression",new SCreator(ParenthesisExpression_factory)); | ||
9117 | new Sfactory(this,"UnaryExpression",new SCreator(UnaryExpression_factory)); | ||
9118 | new Sfactory(this,"IdentDotExpression_1",new SCreator(IdentDotExpression_1_factory)); | ||
9119 | new Sfactory(this,"Typename",new SCreator(Typename_factory)); | ||
9120 | new Sfactory(this,"IfStatement_1",new SCreator(IfStatement_1_factory)); | ||
9121 | new Sfactory(this,"Assignment",new SCreator(Assignment_factory)); | ||
9122 | new Sfactory(this,"CompoundStatement_1",new SCreator(CompoundStatement_1_factory)); | ||
9123 | new Sfactory(this,"CompoundStatement_2",new SCreator(CompoundStatement_2_factory)); | ||
9124 | new Sfactory(this,"ReturnStatement_1",new SCreator(ReturnStatement_1_factory)); | ||
9125 | new Sfactory(this,"IdentDotExpression",new SCreator(IdentDotExpression_factory)); | ||
9126 | new Sfactory(this,"Argument",new SCreator(Argument_factory)); | ||
9127 | new Sfactory(this,"State_2",new SCreator(State_2_factory)); | ||
9128 | new Sfactory(this,"WhileStatement_1",new SCreator(WhileStatement_1_factory)); | ||
9129 | new Sfactory(this,"GlobalDefinitions_3",new SCreator(GlobalDefinitions_3_factory)); | ||
9130 | new Sfactory(this,"GlobalDefinitions_4",new SCreator(GlobalDefinitions_4_factory)); | ||
9131 | new Sfactory(this,"Event_1",new SCreator(Event_1_factory)); | ||
9132 | new Sfactory(this,"ListConstant",new SCreator(ListConstant_factory)); | ||
9133 | new Sfactory(this,"Event_3",new SCreator(Event_3_factory)); | ||
9134 | new Sfactory(this,"Event_4",new SCreator(Event_4_factory)); | ||
9135 | new Sfactory(this,"Event_6",new SCreator(Event_6_factory)); | ||
9136 | new Sfactory(this,"Typename_1",new SCreator(Typename_1_factory)); | ||
9137 | new Sfactory(this,"Typename_2",new SCreator(Typename_2_factory)); | ||
9138 | new Sfactory(this,"Typename_3",new SCreator(Typename_3_factory)); | ||
9139 | new Sfactory(this,"Typename_4",new SCreator(Typename_4_factory)); | ||
9140 | new Sfactory(this,"Typename_5",new SCreator(Typename_5_factory)); | ||
9141 | new Sfactory(this,"Typename_6",new SCreator(Typename_6_factory)); | ||
9142 | new Sfactory(this,"Typename_7",new SCreator(Typename_7_factory)); | ||
9143 | new Sfactory(this,"ArgumentDeclarationList",new SCreator(ArgumentDeclarationList_factory)); | ||
9144 | new Sfactory(this,"ConstantExpression",new SCreator(ConstantExpression_factory)); | ||
9145 | new Sfactory(this,"LSLProgramRoot_1",new SCreator(LSLProgramRoot_1_factory)); | ||
9146 | new Sfactory(this,"LSLProgramRoot_2",new SCreator(LSLProgramRoot_2_factory)); | ||
9147 | new Sfactory(this,"States_1",new SCreator(States_1_factory)); | ||
9148 | new Sfactory(this,"States_2",new SCreator(States_2_factory)); | ||
9149 | new Sfactory(this,"FunctionCallExpression_1",new SCreator(FunctionCallExpression_1_factory)); | ||
9150 | new Sfactory(this,"ForLoopStatement",new SCreator(ForLoopStatement_factory)); | ||
9151 | new Sfactory(this,"DoWhileStatement_1",new SCreator(DoWhileStatement_1_factory)); | ||
9152 | new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory)); | ||
9153 | new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory)); | ||
9154 | new Sfactory(this,"Assignment_4",new SCreator(Assignment_4_factory)); | ||
9155 | new Sfactory(this,"Assignment_6",new SCreator(Assignment_6_factory)); | ||
9156 | new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory)); | ||
9157 | new Sfactory(this,"TypecastExpression_4",new SCreator(TypecastExpression_4_factory)); | ||
9158 | new Sfactory(this,"TypecastExpression_5",new SCreator(TypecastExpression_5_factory)); | ||
9159 | new Sfactory(this,"TypecastExpression_6",new SCreator(TypecastExpression_6_factory)); | ||
9160 | new Sfactory(this,"TypecastExpression_9",new SCreator(TypecastExpression_9_factory)); | ||
9161 | new Sfactory(this,"ArgumentDeclarationList_1",new SCreator(ArgumentDeclarationList_1_factory)); | ||
9162 | new Sfactory(this,"ArgumentDeclarationList_2",new SCreator(ArgumentDeclarationList_2_factory)); | ||
9163 | new Sfactory(this,"ArgumentDeclarationList_3",new SCreator(ArgumentDeclarationList_3_factory)); | ||
9164 | new Sfactory(this,"GlobalDefinitions_1",new SCreator(GlobalDefinitions_1_factory)); | ||
9165 | new Sfactory(this,"GlobalDefinitions_2",new SCreator(GlobalDefinitions_2_factory)); | ||
9166 | new Sfactory(this,"IncrementDecrementExpression",new SCreator(IncrementDecrementExpression_factory)); | ||
9167 | new Sfactory(this,"GlobalVariableDeclaration",new SCreator(GlobalVariableDeclaration_factory)); | ||
9168 | new Sfactory(this,"Event_11",new SCreator(Event_11_factory)); | ||
9169 | new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory)); | ||
9170 | new Sfactory(this,"TypecastExpression_3",new SCreator(TypecastExpression_3_factory)); | ||
9171 | new Sfactory(this,"TypecastExpression_8",new SCreator(TypecastExpression_8_factory)); | ||
9172 | new Sfactory(this,"Constant_1",new SCreator(Constant_1_factory)); | ||
9173 | new Sfactory(this,"Expression",new SCreator(Expression_factory)); | ||
9174 | new Sfactory(this,"Constant_3",new SCreator(Constant_3_factory)); | ||
9175 | new Sfactory(this,"Constant_4",new SCreator(Constant_4_factory)); | ||
9176 | new Sfactory(this,"BinaryExpression_1",new SCreator(BinaryExpression_1_factory)); | ||
9177 | new Sfactory(this,"IfStatement_2",new SCreator(IfStatement_2_factory)); | ||
9178 | new Sfactory(this,"ReturnStatement",new SCreator(ReturnStatement_factory)); | ||
9179 | new Sfactory(this,"Event_2",new SCreator(Event_2_factory)); | ||
9180 | new Sfactory(this,"RotationConstant",new SCreator(RotationConstant_factory)); | ||
9181 | new Sfactory(this,"UnaryExpression_1",new SCreator(UnaryExpression_1_factory)); | ||
9182 | new Sfactory(this,"UnaryExpression_2",new SCreator(UnaryExpression_2_factory)); | ||
9183 | new Sfactory(this,"UnaryExpression_3",new SCreator(UnaryExpression_3_factory)); | ||
9184 | new Sfactory(this,"ArgumentList_1",new SCreator(ArgumentList_1_factory)); | ||
9185 | new Sfactory(this,"ArgumentList_2",new SCreator(ArgumentList_2_factory)); | ||
9186 | new Sfactory(this,"ArgumentList_3",new SCreator(ArgumentList_3_factory)); | ||
9187 | new Sfactory(this,"Constant",new SCreator(Constant_factory)); | ||
9188 | new Sfactory(this,"State",new SCreator(State_factory)); | ||
9189 | new Sfactory(this,"LSLProgramRoot",new SCreator(LSLProgramRoot_factory)); | ||
9190 | new Sfactory(this,"StateChange",new SCreator(StateChange_factory)); | ||
9191 | new Sfactory(this,"IncrementDecrementExpression_2",new SCreator(IncrementDecrementExpression_2_factory)); | ||
9192 | new Sfactory(this,"GlobalVariableDeclaration_1",new SCreator(GlobalVariableDeclaration_1_factory)); | ||
9193 | new Sfactory(this,"GlobalVariableDeclaration_2",new SCreator(GlobalVariableDeclaration_2_factory)); | ||
9194 | new Sfactory(this,"IncrementDecrementExpression_5",new SCreator(IncrementDecrementExpression_5_factory)); | ||
9195 | new Sfactory(this,"GlobalFunctionDefinition_2",new SCreator(GlobalFunctionDefinition_2_factory)); | ||
9196 | new Sfactory(this,"IncrementDecrementExpression_7",new SCreator(IncrementDecrementExpression_7_factory)); | ||
9197 | new Sfactory(this,"IncrementDecrementExpression_8",new SCreator(IncrementDecrementExpression_8_factory)); | ||
9198 | new Sfactory(this,"Assignment_1",new SCreator(Assignment_1_factory)); | ||
9199 | new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory)); | ||
9200 | new Sfactory(this,"Assignment_3",new SCreator(Assignment_3_factory)); | ||
9201 | new Sfactory(this,"Assignment_5",new SCreator(Assignment_5_factory)); | ||
9202 | new Sfactory(this,"Assignment_7",new SCreator(Assignment_7_factory)); | ||
9203 | new Sfactory(this,"Assignment_8",new SCreator(Assignment_8_factory)); | ||
9204 | new Sfactory(this,"Event_22",new SCreator(Event_22_factory)); | ||
9205 | new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory)); | ||
9206 | new Sfactory(this,"RotationConstant_1",new SCreator(RotationConstant_1_factory)); | ||
9207 | new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory)); | ||
9208 | new Sfactory(this,"Statement_2",new SCreator(Statement_2_factory)); | ||
9209 | new Sfactory(this,"Statement_3",new SCreator(Statement_3_factory)); | ||
9210 | new Sfactory(this,"Statement_4",new SCreator(Statement_4_factory)); | ||
9211 | new Sfactory(this,"Statement_5",new SCreator(Statement_5_factory)); | ||
9212 | new Sfactory(this,"Statement_6",new SCreator(Statement_6_factory)); | ||
9213 | new Sfactory(this,"Statement_7",new SCreator(Statement_7_factory)); | ||
9214 | new Sfactory(this,"Statement_8",new SCreator(Statement_8_factory)); | ||
9215 | new Sfactory(this,"Statement_9",new SCreator(Statement_9_factory)); | ||
9216 | new Sfactory(this,"ExpressionArgument",new SCreator(ExpressionArgument_factory)); | ||
9217 | new Sfactory(this,"GlobalFunctionDefinition",new SCreator(GlobalFunctionDefinition_factory)); | ||
9218 | new Sfactory(this,"State_1",new SCreator(State_1_factory)); | ||
9219 | new Sfactory(this,"DoWhileStatement",new SCreator(DoWhileStatement_factory)); | ||
9220 | new Sfactory(this,"ParenthesisExpression_1",new SCreator(ParenthesisExpression_1_factory)); | ||
9221 | new Sfactory(this,"Event_5",new SCreator(Event_5_factory)); | ||
9222 | new Sfactory(this,"StateBody",new SCreator(StateBody_factory)); | ||
9223 | new Sfactory(this,"Event_7",new SCreator(Event_7_factory)); | ||
9224 | new Sfactory(this,"Event_8",new SCreator(Event_8_factory)); | ||
9225 | new Sfactory(this,"IncrementDecrementExpression_1",new SCreator(IncrementDecrementExpression_1_factory)); | ||
9226 | new Sfactory(this,"IncrementDecrementExpression_3",new SCreator(IncrementDecrementExpression_3_factory)); | ||
9227 | new Sfactory(this,"IncrementDecrementExpression_4",new SCreator(IncrementDecrementExpression_4_factory)); | ||
9228 | new Sfactory(this,"IncrementDecrementExpression_6",new SCreator(IncrementDecrementExpression_6_factory)); | ||
9229 | new Sfactory(this,"StateEvent",new SCreator(StateEvent_factory)); | ||
9230 | new Sfactory(this,"Event_20",new SCreator(Event_20_factory)); | ||
9231 | new Sfactory(this,"Event_24",new SCreator(Event_24_factory)); | ||
9232 | new Sfactory(this,"Event_26",new SCreator(Event_26_factory)); | ||
9233 | new Sfactory(this,"Event",new SCreator(Event_factory)); | ||
9234 | new Sfactory(this,"Statement_10",new SCreator(Statement_10_factory)); | ||
9235 | new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory)); | ||
9236 | new Sfactory(this,"Event_13",new SCreator(Event_13_factory)); | ||
9237 | new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory)); | ||
9238 | new Sfactory(this,"Event_15",new SCreator(Event_15_factory)); | ||
9239 | new Sfactory(this,"Event_16",new SCreator(Event_16_factory)); | ||
9240 | new Sfactory(this,"Event_32",new SCreator(Event_32_factory)); | ||
9241 | new Sfactory(this,"BinaryExpression",new SCreator(BinaryExpression_factory)); | ||
9242 | new Sfactory(this,"FunctionCallExpression",new SCreator(FunctionCallExpression_factory)); | ||
9243 | new Sfactory(this,"BinaryExpression_11",new SCreator(BinaryExpression_11_factory)); | ||
9244 | new Sfactory(this,"StateBody_1",new SCreator(StateBody_1_factory)); | ||
9245 | new Sfactory(this,"StatementList_2",new SCreator(StatementList_2_factory)); | ||
9246 | new Sfactory(this,"BinaryExpression_14",new SCreator(BinaryExpression_14_factory)); | ||
9247 | new Sfactory(this,"BinaryExpression_15",new SCreator(BinaryExpression_15_factory)); | ||
9248 | new Sfactory(this,"BinaryExpression_16",new SCreator(BinaryExpression_16_factory)); | ||
9249 | new Sfactory(this,"BinaryExpression_17",new SCreator(BinaryExpression_17_factory)); | ||
9250 | new Sfactory(this,"BinaryExpression_18",new SCreator(BinaryExpression_18_factory)); | ||
9251 | new Sfactory(this,"Event_25",new SCreator(Event_25_factory)); | ||
9252 | new Sfactory(this,"Event_9",new SCreator(Event_9_factory)); | ||
9253 | new Sfactory(this,"Statement",new SCreator(Statement_factory)); | ||
9254 | new Sfactory(this,"BinaryExpression_10",new SCreator(BinaryExpression_10_factory)); | ||
9255 | new Sfactory(this,"BinaryExpression_12",new SCreator(BinaryExpression_12_factory)); | ||
9256 | new Sfactory(this,"BinaryExpression_13",new SCreator(BinaryExpression_13_factory)); | ||
9257 | new Sfactory(this,"BinaryExpression_6",new SCreator(BinaryExpression_6_factory)); | ||
9258 | new Sfactory(this,"BinaryExpression_7",new SCreator(BinaryExpression_7_factory)); | ||
9259 | new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory)); | ||
9260 | new Sfactory(this,"Event_10",new SCreator(Event_10_factory)); | ||
9261 | new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory)); | ||
9262 | new Sfactory(this,"Event_12",new SCreator(Event_12_factory)); | ||
9263 | new Sfactory(this,"Event_14",new SCreator(Event_14_factory)); | ||
9264 | new Sfactory(this,"Event_17",new SCreator(Event_17_factory)); | ||
9265 | new Sfactory(this,"Event_18",new SCreator(Event_18_factory)); | ||
9266 | new Sfactory(this,"Event_19",new SCreator(Event_19_factory)); | ||
9267 | new Sfactory(this,"StateEvent_1",new SCreator(StateEvent_1_factory)); | ||
9268 | new Sfactory(this,"VectorConstant",new SCreator(VectorConstant_factory)); | ||
9269 | new Sfactory(this,"Event_21",new SCreator(Event_21_factory)); | ||
9270 | new Sfactory(this,"Event_23",new SCreator(Event_23_factory)); | ||
9271 | new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory)); | ||
9272 | new Sfactory(this,"FunctionCall",new SCreator(FunctionCall_factory)); | ||
9273 | new Sfactory(this,"Event_27",new SCreator(Event_27_factory)); | ||
9274 | new Sfactory(this,"Event_28",new SCreator(Event_28_factory)); | ||
9275 | new Sfactory(this,"Event_29",new SCreator(Event_29_factory)); | ||
9276 | new Sfactory(this,"ListConstant_1",new SCreator(ListConstant_1_factory)); | ||
9277 | new Sfactory(this,"Declaration_1",new SCreator(Declaration_1_factory)); | ||
9278 | new Sfactory(this,"ForLoop",new SCreator(ForLoop_factory)); | ||
9279 | new Sfactory(this,"Event_30",new SCreator(Event_30_factory)); | ||
9280 | new Sfactory(this,"Event_31",new SCreator(Event_31_factory)); | ||
9281 | new Sfactory(this,"Event_33",new SCreator(Event_33_factory)); | ||
9282 | new Sfactory(this,"GlobalFunctionDefinition_1",new SCreator(GlobalFunctionDefinition_1_factory)); | ||
9283 | new Sfactory(this,"ArgumentList_4",new SCreator(ArgumentList_4_factory)); | ||
9284 | new Sfactory(this,"IfStatement",new SCreator(IfStatement_factory)); | ||
9285 | new Sfactory(this,"ForLoopStatement_1",new SCreator(ForLoopStatement_1_factory)); | ||
9286 | new Sfactory(this,"ForLoopStatement_2",new SCreator(ForLoopStatement_2_factory)); | ||
9287 | new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory)); | ||
9288 | new Sfactory(this,"ForLoopStatement_4",new SCreator(ForLoopStatement_4_factory)); | ||
9289 | new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory)); | ||
9290 | new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory)); | ||
9291 | new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory)); | ||
9292 | new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory)); | ||
9293 | new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory)); | ||
9294 | new Sfactory(this,"StatementList",new SCreator(StatementList_factory)); | ||
9295 | new Sfactory(this,"StateBody_2",new SCreator(StateBody_2_factory)); | ||
9296 | new Sfactory(this,"IdentExpression_1",new SCreator(IdentExpression_1_factory)); | ||
9297 | new Sfactory(this,"States",new SCreator(States_factory)); | ||
9298 | } | ||
9299 | public static object ExpressionArgument_1_factory(Parser yyp) { return new ExpressionArgument_1(yyp); } | ||
9300 | public static object StatementList_1_factory(Parser yyp) { return new StatementList_1(yyp); } | ||
9301 | public static object StateChange_1_factory(Parser yyp) { return new StateChange_1(yyp); } | ||
9302 | public static object StateChange_2_factory(Parser yyp) { return new StateChange_2(yyp); } | ||
9303 | public static object Declaration_factory(Parser yyp) { return new Declaration(yyp); } | ||
9304 | public static object IdentExpression_factory(Parser yyp) { return new IdentExpression(yyp); } | ||
9305 | public static object error_factory(Parser yyp) { return new error(yyp); } | ||
9306 | public static object BinaryExpression_2_factory(Parser yyp) { return new BinaryExpression_2(yyp); } | ||
9307 | public static object BinaryExpression_3_factory(Parser yyp) { return new BinaryExpression_3(yyp); } | ||
9308 | public static object BinaryExpression_4_factory(Parser yyp) { return new BinaryExpression_4(yyp); } | ||
9309 | public static object BinaryExpression_5_factory(Parser yyp) { return new BinaryExpression_5(yyp); } | ||
9310 | public static object ReturnStatement_2_factory(Parser yyp) { return new ReturnStatement_2(yyp); } | ||
9311 | public static object BinaryExpression_8_factory(Parser yyp) { return new BinaryExpression_8(yyp); } | ||
9312 | public static object BinaryExpression_9_factory(Parser yyp) { return new BinaryExpression_9(yyp); } | ||
9313 | public static object VectorConstant_1_factory(Parser yyp) { return new VectorConstant_1(yyp); } | ||
9314 | public static object ParenthesisExpression_factory(Parser yyp) { return new ParenthesisExpression(yyp); } | ||
9315 | public static object UnaryExpression_factory(Parser yyp) { return new UnaryExpression(yyp); } | ||
9316 | public static object IdentDotExpression_1_factory(Parser yyp) { return new IdentDotExpression_1(yyp); } | ||
9317 | public static object Typename_factory(Parser yyp) { return new Typename(yyp); } | ||
9318 | public static object IfStatement_1_factory(Parser yyp) { return new IfStatement_1(yyp); } | ||
9319 | public static object Assignment_factory(Parser yyp) { return new Assignment(yyp); } | ||
9320 | public static object CompoundStatement_1_factory(Parser yyp) { return new CompoundStatement_1(yyp); } | ||
9321 | public static object CompoundStatement_2_factory(Parser yyp) { return new CompoundStatement_2(yyp); } | ||
9322 | public static object ReturnStatement_1_factory(Parser yyp) { return new ReturnStatement_1(yyp); } | ||
9323 | public static object IdentDotExpression_factory(Parser yyp) { return new IdentDotExpression(yyp); } | ||
9324 | public static object Argument_factory(Parser yyp) { return new Argument(yyp); } | ||
9325 | public static object State_2_factory(Parser yyp) { return new State_2(yyp); } | ||
9326 | public static object WhileStatement_1_factory(Parser yyp) { return new WhileStatement_1(yyp); } | ||
9327 | public static object GlobalDefinitions_3_factory(Parser yyp) { return new GlobalDefinitions_3(yyp); } | ||
9328 | public static object GlobalDefinitions_4_factory(Parser yyp) { return new GlobalDefinitions_4(yyp); } | ||
9329 | public static object Event_1_factory(Parser yyp) { return new Event_1(yyp); } | ||
9330 | public static object ListConstant_factory(Parser yyp) { return new ListConstant(yyp); } | ||
9331 | public static object Event_3_factory(Parser yyp) { return new Event_3(yyp); } | ||
9332 | public static object Event_4_factory(Parser yyp) { return new Event_4(yyp); } | ||
9333 | public static object Event_6_factory(Parser yyp) { return new Event_6(yyp); } | ||
9334 | public static object Typename_1_factory(Parser yyp) { return new Typename_1(yyp); } | ||
9335 | public static object Typename_2_factory(Parser yyp) { return new Typename_2(yyp); } | ||
9336 | public static object Typename_3_factory(Parser yyp) { return new Typename_3(yyp); } | ||
9337 | public static object Typename_4_factory(Parser yyp) { return new Typename_4(yyp); } | ||
9338 | public static object Typename_5_factory(Parser yyp) { return new Typename_5(yyp); } | ||
9339 | public static object Typename_6_factory(Parser yyp) { return new Typename_6(yyp); } | ||
9340 | public static object Typename_7_factory(Parser yyp) { return new Typename_7(yyp); } | ||
9341 | public static object ArgumentDeclarationList_factory(Parser yyp) { return new ArgumentDeclarationList(yyp); } | ||
9342 | public static object ConstantExpression_factory(Parser yyp) { return new ConstantExpression(yyp); } | ||
9343 | public static object LSLProgramRoot_1_factory(Parser yyp) { return new LSLProgramRoot_1(yyp); } | ||
9344 | public static object LSLProgramRoot_2_factory(Parser yyp) { return new LSLProgramRoot_2(yyp); } | ||
9345 | public static object States_1_factory(Parser yyp) { return new States_1(yyp); } | ||
9346 | public static object States_2_factory(Parser yyp) { return new States_2(yyp); } | ||
9347 | public static object FunctionCallExpression_1_factory(Parser yyp) { return new FunctionCallExpression_1(yyp); } | ||
9348 | public static object ForLoopStatement_factory(Parser yyp) { return new ForLoopStatement(yyp); } | ||
9349 | public static object DoWhileStatement_1_factory(Parser yyp) { return new DoWhileStatement_1(yyp); } | ||
9350 | public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); } | ||
9351 | public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); } | ||
9352 | public static object Assignment_4_factory(Parser yyp) { return new Assignment_4(yyp); } | ||
9353 | public static object Assignment_6_factory(Parser yyp) { return new Assignment_6(yyp); } | ||
9354 | public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); } | ||
9355 | public static object TypecastExpression_4_factory(Parser yyp) { return new TypecastExpression_4(yyp); } | ||
9356 | public static object TypecastExpression_5_factory(Parser yyp) { return new TypecastExpression_5(yyp); } | ||
9357 | public static object TypecastExpression_6_factory(Parser yyp) { return new TypecastExpression_6(yyp); } | ||
9358 | public static object TypecastExpression_9_factory(Parser yyp) { return new TypecastExpression_9(yyp); } | ||
9359 | public static object ArgumentDeclarationList_1_factory(Parser yyp) { return new ArgumentDeclarationList_1(yyp); } | ||
9360 | public static object ArgumentDeclarationList_2_factory(Parser yyp) { return new ArgumentDeclarationList_2(yyp); } | ||
9361 | public static object ArgumentDeclarationList_3_factory(Parser yyp) { return new ArgumentDeclarationList_3(yyp); } | ||
9362 | public static object GlobalDefinitions_1_factory(Parser yyp) { return new GlobalDefinitions_1(yyp); } | ||
9363 | public static object GlobalDefinitions_2_factory(Parser yyp) { return new GlobalDefinitions_2(yyp); } | ||
9364 | public static object IncrementDecrementExpression_factory(Parser yyp) { return new IncrementDecrementExpression(yyp); } | ||
9365 | public static object GlobalVariableDeclaration_factory(Parser yyp) { return new GlobalVariableDeclaration(yyp); } | ||
9366 | public static object Event_11_factory(Parser yyp) { return new Event_11(yyp); } | ||
9367 | public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); } | ||
9368 | public static object TypecastExpression_3_factory(Parser yyp) { return new TypecastExpression_3(yyp); } | ||
9369 | public static object TypecastExpression_8_factory(Parser yyp) { return new TypecastExpression_8(yyp); } | ||
9370 | public static object Constant_1_factory(Parser yyp) { return new Constant_1(yyp); } | ||
9371 | public static object Expression_factory(Parser yyp) { return new Expression(yyp); } | ||
9372 | public static object Constant_3_factory(Parser yyp) { return new Constant_3(yyp); } | ||
9373 | public static object Constant_4_factory(Parser yyp) { return new Constant_4(yyp); } | ||
9374 | public static object BinaryExpression_1_factory(Parser yyp) { return new BinaryExpression_1(yyp); } | ||
9375 | public static object IfStatement_2_factory(Parser yyp) { return new IfStatement_2(yyp); } | ||
9376 | public static object ReturnStatement_factory(Parser yyp) { return new ReturnStatement(yyp); } | ||
9377 | public static object Event_2_factory(Parser yyp) { return new Event_2(yyp); } | ||
9378 | public static object RotationConstant_factory(Parser yyp) { return new RotationConstant(yyp); } | ||
9379 | public static object UnaryExpression_1_factory(Parser yyp) { return new UnaryExpression_1(yyp); } | ||
9380 | public static object UnaryExpression_2_factory(Parser yyp) { return new UnaryExpression_2(yyp); } | ||
9381 | public static object UnaryExpression_3_factory(Parser yyp) { return new UnaryExpression_3(yyp); } | ||
9382 | public static object ArgumentList_1_factory(Parser yyp) { return new ArgumentList_1(yyp); } | ||
9383 | public static object ArgumentList_2_factory(Parser yyp) { return new ArgumentList_2(yyp); } | ||
9384 | public static object ArgumentList_3_factory(Parser yyp) { return new ArgumentList_3(yyp); } | ||
9385 | public static object Constant_factory(Parser yyp) { return new Constant(yyp); } | ||
9386 | public static object State_factory(Parser yyp) { return new State(yyp); } | ||
9387 | public static object LSLProgramRoot_factory(Parser yyp) { return new LSLProgramRoot(yyp); } | ||
9388 | public static object StateChange_factory(Parser yyp) { return new StateChange(yyp); } | ||
9389 | public static object IncrementDecrementExpression_2_factory(Parser yyp) { return new IncrementDecrementExpression_2(yyp); } | ||
9390 | public static object GlobalVariableDeclaration_1_factory(Parser yyp) { return new GlobalVariableDeclaration_1(yyp); } | ||
9391 | public static object GlobalVariableDeclaration_2_factory(Parser yyp) { return new GlobalVariableDeclaration_2(yyp); } | ||
9392 | public static object IncrementDecrementExpression_5_factory(Parser yyp) { return new IncrementDecrementExpression_5(yyp); } | ||
9393 | public static object GlobalFunctionDefinition_2_factory(Parser yyp) { return new GlobalFunctionDefinition_2(yyp); } | ||
9394 | public static object IncrementDecrementExpression_7_factory(Parser yyp) { return new IncrementDecrementExpression_7(yyp); } | ||
9395 | public static object IncrementDecrementExpression_8_factory(Parser yyp) { return new IncrementDecrementExpression_8(yyp); } | ||
9396 | public static object Assignment_1_factory(Parser yyp) { return new Assignment_1(yyp); } | ||
9397 | public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); } | ||
9398 | public static object Assignment_3_factory(Parser yyp) { return new Assignment_3(yyp); } | ||
9399 | public static object Assignment_5_factory(Parser yyp) { return new Assignment_5(yyp); } | ||
9400 | public static object Assignment_7_factory(Parser yyp) { return new Assignment_7(yyp); } | ||
9401 | public static object Assignment_8_factory(Parser yyp) { return new Assignment_8(yyp); } | ||
9402 | public static object Event_22_factory(Parser yyp) { return new Event_22(yyp); } | ||
9403 | public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); } | ||
9404 | public static object RotationConstant_1_factory(Parser yyp) { return new RotationConstant_1(yyp); } | ||
9405 | public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); } | ||
9406 | public static object Statement_2_factory(Parser yyp) { return new Statement_2(yyp); } | ||
9407 | public static object Statement_3_factory(Parser yyp) { return new Statement_3(yyp); } | ||
9408 | public static object Statement_4_factory(Parser yyp) { return new Statement_4(yyp); } | ||
9409 | public static object Statement_5_factory(Parser yyp) { return new Statement_5(yyp); } | ||
9410 | public static object Statement_6_factory(Parser yyp) { return new Statement_6(yyp); } | ||
9411 | public static object Statement_7_factory(Parser yyp) { return new Statement_7(yyp); } | ||
9412 | public static object Statement_8_factory(Parser yyp) { return new Statement_8(yyp); } | ||
9413 | public static object Statement_9_factory(Parser yyp) { return new Statement_9(yyp); } | ||
9414 | public static object ExpressionArgument_factory(Parser yyp) { return new ExpressionArgument(yyp); } | ||
9415 | public static object GlobalFunctionDefinition_factory(Parser yyp) { return new GlobalFunctionDefinition(yyp); } | ||
9416 | public static object State_1_factory(Parser yyp) { return new State_1(yyp); } | ||
9417 | public static object DoWhileStatement_factory(Parser yyp) { return new DoWhileStatement(yyp); } | ||
9418 | public static object ParenthesisExpression_1_factory(Parser yyp) { return new ParenthesisExpression_1(yyp); } | ||
9419 | public static object Event_5_factory(Parser yyp) { return new Event_5(yyp); } | ||
9420 | public static object StateBody_factory(Parser yyp) { return new StateBody(yyp); } | ||
9421 | public static object Event_7_factory(Parser yyp) { return new Event_7(yyp); } | ||
9422 | public static object Event_8_factory(Parser yyp) { return new Event_8(yyp); } | ||
9423 | public static object IncrementDecrementExpression_1_factory(Parser yyp) { return new IncrementDecrementExpression_1(yyp); } | ||
9424 | public static object IncrementDecrementExpression_3_factory(Parser yyp) { return new IncrementDecrementExpression_3(yyp); } | ||
9425 | public static object IncrementDecrementExpression_4_factory(Parser yyp) { return new IncrementDecrementExpression_4(yyp); } | ||
9426 | public static object IncrementDecrementExpression_6_factory(Parser yyp) { return new IncrementDecrementExpression_6(yyp); } | ||
9427 | public static object StateEvent_factory(Parser yyp) { return new StateEvent(yyp); } | ||
9428 | public static object Event_20_factory(Parser yyp) { return new Event_20(yyp); } | ||
9429 | public static object Event_24_factory(Parser yyp) { return new Event_24(yyp); } | ||
9430 | public static object Event_26_factory(Parser yyp) { return new Event_26(yyp); } | ||
9431 | public static object Event_factory(Parser yyp) { return new Event(yyp); } | ||
9432 | public static object Statement_10_factory(Parser yyp) { return new Statement_10(yyp); } | ||
9433 | public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); } | ||
9434 | public static object Event_13_factory(Parser yyp) { return new Event_13(yyp); } | ||
9435 | public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); } | ||
9436 | public static object Event_15_factory(Parser yyp) { return new Event_15(yyp); } | ||
9437 | public static object Event_16_factory(Parser yyp) { return new Event_16(yyp); } | ||
9438 | public static object Event_32_factory(Parser yyp) { return new Event_32(yyp); } | ||
9439 | public static object BinaryExpression_factory(Parser yyp) { return new BinaryExpression(yyp); } | ||
9440 | public static object FunctionCallExpression_factory(Parser yyp) { return new FunctionCallExpression(yyp); } | ||
9441 | public static object BinaryExpression_11_factory(Parser yyp) { return new BinaryExpression_11(yyp); } | ||
9442 | public static object StateBody_1_factory(Parser yyp) { return new StateBody_1(yyp); } | ||
9443 | public static object StatementList_2_factory(Parser yyp) { return new StatementList_2(yyp); } | ||
9444 | public static object BinaryExpression_14_factory(Parser yyp) { return new BinaryExpression_14(yyp); } | ||
9445 | public static object BinaryExpression_15_factory(Parser yyp) { return new BinaryExpression_15(yyp); } | ||
9446 | public static object BinaryExpression_16_factory(Parser yyp) { return new BinaryExpression_16(yyp); } | ||
9447 | public static object BinaryExpression_17_factory(Parser yyp) { return new BinaryExpression_17(yyp); } | ||
9448 | public static object BinaryExpression_18_factory(Parser yyp) { return new BinaryExpression_18(yyp); } | ||
9449 | public static object Event_25_factory(Parser yyp) { return new Event_25(yyp); } | ||
9450 | public static object Event_9_factory(Parser yyp) { return new Event_9(yyp); } | ||
9451 | public static object Statement_factory(Parser yyp) { return new Statement(yyp); } | ||
9452 | public static object BinaryExpression_10_factory(Parser yyp) { return new BinaryExpression_10(yyp); } | ||
9453 | public static object BinaryExpression_12_factory(Parser yyp) { return new BinaryExpression_12(yyp); } | ||
9454 | public static object BinaryExpression_13_factory(Parser yyp) { return new BinaryExpression_13(yyp); } | ||
9455 | public static object BinaryExpression_6_factory(Parser yyp) { return new BinaryExpression_6(yyp); } | ||
9456 | public static object BinaryExpression_7_factory(Parser yyp) { return new BinaryExpression_7(yyp); } | ||
9457 | public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); } | ||
9458 | public static object Event_10_factory(Parser yyp) { return new Event_10(yyp); } | ||
9459 | public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); } | ||
9460 | public static object Event_12_factory(Parser yyp) { return new Event_12(yyp); } | ||
9461 | public static object Event_14_factory(Parser yyp) { return new Event_14(yyp); } | ||
9462 | public static object Event_17_factory(Parser yyp) { return new Event_17(yyp); } | ||
9463 | public static object Event_18_factory(Parser yyp) { return new Event_18(yyp); } | ||
9464 | public static object Event_19_factory(Parser yyp) { return new Event_19(yyp); } | ||
9465 | public static object StateEvent_1_factory(Parser yyp) { return new StateEvent_1(yyp); } | ||
9466 | public static object VectorConstant_factory(Parser yyp) { return new VectorConstant(yyp); } | ||
9467 | public static object Event_21_factory(Parser yyp) { return new Event_21(yyp); } | ||
9468 | public static object Event_23_factory(Parser yyp) { return new Event_23(yyp); } | ||
9469 | public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); } | ||
9470 | public static object FunctionCall_factory(Parser yyp) { return new FunctionCall(yyp); } | ||
9471 | public static object Event_27_factory(Parser yyp) { return new Event_27(yyp); } | ||
9472 | public static object Event_28_factory(Parser yyp) { return new Event_28(yyp); } | ||
9473 | public static object Event_29_factory(Parser yyp) { return new Event_29(yyp); } | ||
9474 | public static object ListConstant_1_factory(Parser yyp) { return new ListConstant_1(yyp); } | ||
9475 | public static object Declaration_1_factory(Parser yyp) { return new Declaration_1(yyp); } | ||
9476 | public static object ForLoop_factory(Parser yyp) { return new ForLoop(yyp); } | ||
9477 | public static object Event_30_factory(Parser yyp) { return new Event_30(yyp); } | ||
9478 | public static object Event_31_factory(Parser yyp) { return new Event_31(yyp); } | ||
9479 | public static object Event_33_factory(Parser yyp) { return new Event_33(yyp); } | ||
9480 | public static object GlobalFunctionDefinition_1_factory(Parser yyp) { return new GlobalFunctionDefinition_1(yyp); } | ||
9481 | public static object ArgumentList_4_factory(Parser yyp) { return new ArgumentList_4(yyp); } | ||
9482 | public static object IfStatement_factory(Parser yyp) { return new IfStatement(yyp); } | ||
9483 | public static object ForLoopStatement_1_factory(Parser yyp) { return new ForLoopStatement_1(yyp); } | ||
9484 | public static object ForLoopStatement_2_factory(Parser yyp) { return new ForLoopStatement_2(yyp); } | ||
9485 | public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); } | ||
9486 | public static object ForLoopStatement_4_factory(Parser yyp) { return new ForLoopStatement_4(yyp); } | ||
9487 | public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); } | ||
9488 | public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); } | ||
9489 | public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); } | ||
9490 | public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); } | ||
9491 | public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); } | ||
9492 | public static object StatementList_factory(Parser yyp) { return new StatementList(yyp); } | ||
9493 | public static object StateBody_2_factory(Parser yyp) { return new StateBody_2(yyp); } | ||
9494 | public static object IdentExpression_1_factory(Parser yyp) { return new IdentExpression_1(yyp); } | ||
9495 | public static object States_factory(Parser yyp) { return new States(yyp); } | ||
9496 | } | ||
9497 | public class LSLSyntax | ||
9498 | : Parser { | ||
9499 | public LSLSyntax | ||
9500 | ():base(new yyLSLSyntax | ||
9501 | (),new LSLTokens()) {} | ||
9502 | public LSLSyntax | ||
9503 | (YyParser syms):base(syms,new LSLTokens()) {} | ||
9504 | public LSLSyntax | ||
9505 | (YyParser syms,ErrorHandler erh):base(syms,new LSLTokens(erh)) {} | ||
9506 | |||
9507 | } | ||