diff --git a/pkgs/base/info.rkt b/pkgs/base/info.rkt index 8590b2af27..339b282d45 100644 --- a/pkgs/base/info.rkt +++ b/pkgs/base/info.rkt @@ -12,7 +12,7 @@ (define collection 'multi) -(define version "6.2.900.9") +(define version "6.2.900.10") (define deps `("racket-lib" ["racket" #:version ,version])) diff --git a/pkgs/racket-doc/scribblings/reference/stx-trans.scrbl b/pkgs/racket-doc/scribblings/reference/stx-trans.scrbl index 8b87be0dd3..b2a26def63 100644 --- a/pkgs/racket-doc/scribblings/reference/stx-trans.scrbl +++ b/pkgs/racket-doc/scribblings/reference/stx-trans.scrbl @@ -348,7 +348,12 @@ forms, and the expansion of @racket[stx] is the last expression in the @racket[begin]. The @racket[lift-ctx] value is reported by @racket[syntax-local-lift-context] during local expansion. The lifted expressions are not expanded, but instead left as provided in the -@racket[begin] form.} +@racket[begin] form. + +If @racket[context-v] is @racket['top-level] or @racket['module], then +@racket[module] forms can appear in the result as added via +@racket[syntax-local-lift-module]. If @racket[context-v] is +@racket['module], then @racket[module*] forms can appear, too.} @defproc[(local-transformer-expand/capture-lifts [stx any/c] @@ -578,6 +583,28 @@ for caching lift information to avoid redundant lifts. @transform-time[]} +@defproc[(syntax-local-lift-module [stx syntax?]) + void?]{ + +Cooperates with the @racket[module] form or top-level expansion to add +@racket[stx] as a module declaration in the enclosing module or top-level. +The @racket[stx] form must start with @racket[module] or @racket[module*], +where the latter is only allowed within the expansion of a module. + +The module is not immediately declared when +@racket[syntax-local-lift-module] returns. Instead, the module +declaration is recorded for processing when expansion returns to the +enclosing module body or top-level sequence. + +@transform-time[] If the current expression being transformed is not +within a @racket[module] form or within a top-level expansion, then +the @exnraise[exn:fail:contract]. If @racket[stx] form does start with +@racket[module] or @racket[module*], or if it starts with @racket[module*] +in a top-level context, the @exnraise[exn:fail:contract]. + +@history[#:added "6.2.900.10"]} + + @defproc[(syntax-local-lift-module-end-declaration [stx syntax?]) void?]{ diff --git a/pkgs/racket-test-core/tests/racket/macro.rktl b/pkgs/racket-test-core/tests/racket/macro.rktl index 44a373b56e..669056f3e1 100644 --- a/pkgs/racket-test-core/tests/racket/macro.rktl +++ b/pkgs/racket-test-core/tests/racket/macro.rktl @@ -1019,6 +1019,66 @@ (eval `(require 'm))) (test "2\n" get-output-string o)) +(parameterize ([current-namespace (make-base-namespace)]) + (eval `(module m racket/base + (require (for-syntax racket/base)) + (define x 10) + (let-syntax ([x (syntax-local-lift-module #'(module m racket/base + (provide x) + (define x 10)))]) + (void)))) + (test 10 eval `(dynamic-require '(submod 'm m) 'x))) + +;; ---------------------------------------- +;; Check module lifting in a top-level context + +(define-syntax (do-lift-example-1 stx) + (syntax-local-lift-module + #'(module lift-example-1 racket/base + (provide x) + (define x 10))) + #'(void)) +(do-lift-example-1) +(test 10 dynamic-require ''lift-example-1 'x) + +(test '(begin + (module lift-example-1 racket/base + (provide x) + (define x 10)) + (#%app void)) + 'local-expand/capture-lifts + (let-syntax ([quote-local-expand + (lambda (stx) + (syntax-case stx () + [(_ e) + #`(quote #,(local-expand/capture-lifts #'e 'top-level null))]))]) + (quote-local-expand (do-lift-example-1)))) + +(define-syntax (do-lift-example-1* stx) + (syntax-local-lift-module + #'(module* lift-example-1* racket/base + (provide x) + (define x 10))) + #'(void)) + +(err/rt-test (expand '(do-lift-example-1*)) + (lambda (exn) + (and (exn:fail:contract? exn) + (regexp-match #rx"cannot lift.*module[*]" (exn-message exn))))) + +(test '(begin + (module* lift-example-1* racket/base + (provide x) + (define x 10)) + (#%app void)) + 'local-expand/capture-lifts + (let-syntax ([quote-local-expand + (lambda (stx) + (syntax-case stx () + [(_ e) + #`(quote #,(local-expand/capture-lifts #'e 'module null))]))]) + (quote-local-expand (do-lift-example-1*)))) + ;; ---------------------------------------- ;; Lifting should not introduce `#%top` around ;; the reference to the lifted identifier: diff --git a/pkgs/racket-test-core/tests/racket/module.rktl b/pkgs/racket-test-core/tests/racket/module.rktl index 2384ca4427..1219adc878 100644 --- a/pkgs/racket-test-core/tests/racket/module.rktl +++ b/pkgs/racket-test-core/tests/racket/module.rktl @@ -1430,6 +1430,54 @@ case of module-leve bindings; it doesn't cover local bindings. (test #t syntax? (expand-syntax (expand lifted-require-of-submodule))) +;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; Check module lifting + +(module module-lift-example-1 racket/base + (require (for-syntax racket/base)) + (define-syntax (m stx) + (syntax-local-lift-module + #'(module m racket/base + (provide x) + (define x 10))) + #'(begin + (require 'm) + (define out x) + (provide out))) + (m)) + +(test 10 dynamic-require ''module-lift-example-1 'out) + +(module module-lift-example-2 racket/base + (require (for-syntax racket/base)) + (define-syntax (m stx) + (syntax-local-lift-module #'(module* sub #f + (provide s) + (define s (add1 a)))) + #'(void)) + (m) + (define a 1)) + +(test 2 dynamic-require '(submod 'module-lift-example-2 sub) 's) + + +(module module-lift-example-3 racket/base + (require (for-syntax racket/base)) + (define-syntax (m stx) + (syntax-local-lift-module #'(module m racket/base + (provide x) + (define x 11))) + (syntax-local-lift-module-end-declaration + #'(let () + (local-require (submod "." m)) + (set! out x))) + #'(void)) + (define out -10) + (m) + (provide out)) + +(test 11 dynamic-require ''module-lift-example-3 'out) + ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Check addition of 'disappeared-use by `provide` diff --git a/racket/src/racket/src/compenv.c b/racket/src/racket/src/compenv.c index 5ba2ade4c9..d9e1ce51fe 100644 --- a/racket/src/racket/src/compenv.c +++ b/racket/src/racket/src/compenv.c @@ -398,7 +398,8 @@ scheme_add_compilation_binding(int index, Scheme_Object *val, Scheme_Comp_Env *f void scheme_frame_captures_lifts(Scheme_Comp_Env *env, Scheme_Lift_Capture_Proc cp, Scheme_Object *data, Scheme_Object *end_stmts, Scheme_Object *context_key, - Scheme_Object *requires, Scheme_Object *provides) + Scheme_Object *requires, Scheme_Object *provides, + Scheme_Object *module_lifts) { Scheme_Lift_Capture_Proc *pp; Scheme_Object *vec; @@ -406,7 +407,7 @@ void scheme_frame_captures_lifts(Scheme_Comp_Env *env, Scheme_Lift_Capture_Proc pp = (Scheme_Lift_Capture_Proc *)scheme_malloc_atomic(sizeof(Scheme_Lift_Capture_Proc)); *pp = cp; - vec = scheme_make_vector(8, NULL); + vec = scheme_make_vector(9, NULL); SCHEME_VEC_ELS(vec)[0] = scheme_null; SCHEME_VEC_ELS(vec)[1] = (Scheme_Object *)pp; SCHEME_VEC_ELS(vec)[2] = data; @@ -415,6 +416,7 @@ void scheme_frame_captures_lifts(Scheme_Comp_Env *env, Scheme_Lift_Capture_Proc SCHEME_VEC_ELS(vec)[5] = (requires ? requires : scheme_false); SCHEME_VEC_ELS(vec)[6] = scheme_null; /* accumulated requires */ SCHEME_VEC_ELS(vec)[7] = provides; + SCHEME_VEC_ELS(vec)[8] = module_lifts; /* #f => disallowed; #t or (void) => add to slot 0; (void) => `module*` allowed */ env->lifts = vec; } @@ -433,7 +435,7 @@ void scheme_propagate_require_lift_capture(Scheme_Comp_Env *orig_env, Scheme_Com p = scheme_make_raw_pair(NULL, (Scheme_Object *)orig_env); - vec = scheme_make_vector(8, NULL); + vec = scheme_make_vector(9, NULL); SCHEME_VEC_ELS(vec)[0] = scheme_false; SCHEME_VEC_ELS(vec)[1] = scheme_void; SCHEME_VEC_ELS(vec)[2] = scheme_void; @@ -442,6 +444,7 @@ void scheme_propagate_require_lift_capture(Scheme_Comp_Env *orig_env, Scheme_Com SCHEME_VEC_ELS(vec)[5] = p; /* (rcons NULL env) => continue with env */ SCHEME_VEC_ELS(vec)[6] = scheme_null; SCHEME_VEC_ELS(vec)[7] = scheme_false; + SCHEME_VEC_ELS(vec)[8] = scheme_false; env->lifts = vec; } @@ -457,6 +460,11 @@ Scheme_Object *scheme_frame_get_end_statement_lifts(Scheme_Comp_Env *env) return SCHEME_VEC_ELS(env->lifts)[3]; } +Scheme_Object *scheme_frame_get_modules(Scheme_Comp_Env *env) +{ + return SCHEME_VEC_ELS(env->lifts)[8]; +} + Scheme_Object *scheme_frame_get_require_lifts(Scheme_Comp_Env *env) { return SCHEME_VEC_ELS(env->lifts)[6]; @@ -2087,6 +2095,18 @@ Scheme_Comp_Env *scheme_get_module_lift_env(Scheme_Comp_Env *env) return env; } +static Scheme_Comp_Env *get_lift_env_for_module(Scheme_Comp_Env *env) +{ + while (env) { + if ((env->lifts) + && SCHEME_TRUEP(SCHEME_VEC_ELS(env->lifts)[8])) + break; + env = env->next; + } + + return env; +} + Scheme_Object * scheme_local_lift_end_statement(Scheme_Object *expr, Scheme_Object *local_scope, Scheme_Comp_Env *env) { @@ -2113,6 +2133,63 @@ scheme_local_lift_end_statement(Scheme_Object *expr, Scheme_Object *local_scope, return scheme_void; } +Scheme_Object * +scheme_local_lift_module(Scheme_Object *expr, Scheme_Object *local_scope, Scheme_Comp_Env *env) +{ + Scheme_Object *pr; + Scheme_Object *orig_expr; + int star_ok, slot; + + env = get_lift_env_for_module(env); + + if (!env) + scheme_contract_error("syntax-local-lift-module", + "not currently transforming within a module declaration or top level", + NULL); + + if (local_scope) + expr = scheme_stx_flip_scope(expr, local_scope, scheme_env_phase(env->genv)); + orig_expr = expr; + + star_ok = !SAME_OBJ(scheme_true, SCHEME_VEC_ELS(env->lifts)[8]); + + if (SCHEME_STX_PAIRP(expr)) { + pr = SCHEME_STX_CAR(expr); + if (scheme_stx_free_eq3(pr, scheme_module_stx, scheme_env_phase(env->genv), scheme_make_integer(0))) { + /* ok */ + } else if (scheme_stx_free_eq3(pr, scheme_modulestar_stx, scheme_env_phase(env->genv), scheme_make_integer(0))) { + if (!star_ok) + scheme_contract_error("syntax-local-lift-module", + "cannot lift `module*' to a top-level context", + "syntax", 1, expr, + NULL); + /* otherwise, ok */ + } else + pr = NULL; + } else + pr = NULL; + + if (!pr) + scheme_contract_error("syntax-local-lift-module", + "not a module declaration", + "syntax", 1, expr, + NULL); + + /* Add to separate list or mingle with definitions? */ + if (SCHEME_NULLP(SCHEME_VEC_ELS(env->lifts)[8]) + || SCHEME_PAIRP(SCHEME_VEC_ELS(env->lifts)[8])) + slot = 8; + else + slot = 0; + + pr = scheme_make_pair(expr, SCHEME_VEC_ELS(env->lifts)[slot]); + SCHEME_VEC_ELS(env->lifts)[slot] = pr; + + SCHEME_EXPAND_OBSERVE_LIFT_STATEMENT(scheme_get_expand_observe(), orig_expr); + + return scheme_void; +} + Scheme_Object *scheme_local_lift_require(Scheme_Object *form, Scheme_Object *orig_form, intptr_t phase, Scheme_Object *local_scope, Scheme_Comp_Env *cenv) { diff --git a/racket/src/racket/src/compile.c b/racket/src/racket/src/compile.c index 029ac93d48..431033e2d2 100644 --- a/racket/src/racket/src/compile.c +++ b/racket/src/racket/src/compile.c @@ -3508,7 +3508,8 @@ begin_for_syntax_expand(Scheme_Object *orig_form, Scheme_Comp_Env *in_env, Schem while (1) { scheme_frame_captures_lifts(env, scheme_make_lifted_defn, scheme_sys_wraps(env), - scheme_false, scheme_top_level_lifts_key(env), scheme_null, scheme_false); + scheme_false, scheme_top_level_lifts_key(env), scheme_null, + scheme_false, scheme_true); if (rec[drec].comp) { scheme_init_compile_recs(rec, drec, recs, 1); @@ -5589,7 +5590,7 @@ compile_expand_expr_lift_to_let(Scheme_Object *form, Scheme_Comp_Env *env, context_key = scheme_generate_lifts_key(); scheme_frame_captures_lifts(inserted, scheme_pair_lifted, (Scheme_Object *)ip, scheme_false, - context_key, NULL, scheme_false); + context_key, NULL, scheme_false, scheme_false); if (rec[drec].comp) { scheme_init_compile_recs(rec, drec, recs, 2); diff --git a/racket/src/racket/src/cstartup.inc b/racket/src/racket/src/cstartup.inc index b486bc703a..f1a704a83a 100644 --- a/racket/src/racket/src/cstartup.inc +++ b/racket/src/racket/src/cstartup.inc @@ -1,842 +1,863 @@ { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,9,54,46,50,46,57,48,48,46,57,84,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,1,0,0,8,0, -18,0,22,0,26,0,31,0,38,0,42,0,47,0,59,0,66,0,69,0,82, -0,89,0,94,0,103,0,109,0,123,0,137,0,140,0,146,0,157,0,159,0, -173,0,180,0,202,0,204,0,218,0,246,0,251,0,255,0,72,1,79,1,90, -1,128,1,135,1,144,1,177,1,210,1,16,2,21,2,102,2,107,2,112,2, -133,2,30,3,51,3,104,3,173,3,242,3,132,4,24,5,35,5,118,5,0, -0,147,7,0,0,3,1,5,105,110,115,112,48,71,35,37,109,105,110,45,115, -116,120,29,11,11,11,65,97,110,100,66,99,111,110,100,68,100,101,102,105,110, -101,65,108,101,116,66,108,101,116,42,73,108,101,116,42,45,118,97,108,117,101, -115,68,108,101,116,114,101,99,64,111,114,74,112,97,114,97,109,101,116,101,114, -105,122,101,68,117,110,108,101,115,115,66,119,104,101,110,70,104,101,114,101,45, -115,116,120,67,113,117,111,116,101,29,94,2,16,70,35,37,107,101,114,110,101, -108,11,29,94,2,16,70,35,37,112,97,114,97,109,122,11,64,105,102,67,98, -101,103,105,110,72,108,101,116,45,118,97,108,117,101,115,63,120,75,108,101,116, -114,101,99,45,118,97,108,117,101,115,68,108,97,109,98,100,97,1,20,112,97, -114,97,109,101,116,101,114,105,122,97,116,105,111,110,45,107,101,121,63,118,75, -100,101,102,105,110,101,45,118,97,108,117,101,115,38,28,16,3,93,16,2,29, -11,11,11,2,3,2,29,93,143,16,5,39,2,31,40,2,34,2,2,39,38, -29,93,2,30,36,30,0,39,36,31,1,145,40,143,2,32,16,4,2,17,39, -39,2,1,143,2,32,16,4,2,18,39,39,2,1,16,22,2,4,2,33,2, -5,2,33,2,6,2,33,2,7,2,33,2,8,2,33,2,9,2,33,2,10, -2,33,2,11,2,33,2,12,2,33,2,13,2,33,2,14,2,33,38,32,143, -2,31,2,29,38,33,93,143,2,32,143,2,1,2,3,36,34,2,144,40,143, -2,35,16,4,2,17,40,39,2,1,16,2,2,15,93,143,2,35,147,2,1, -2,3,40,2,15,143,2,3,40,2,15,38,35,143,2,34,2,29,18,143,66, -104,101,114,101,2,28,27,248,22,164,4,195,249,22,157,4,80,143,42,39,251, -22,90,2,19,248,22,102,199,12,249,22,80,2,20,248,22,104,201,27,248,22, -164,4,195,249,22,157,4,80,143,42,39,251,22,90,2,19,248,22,102,199,249, -22,80,2,20,248,22,104,201,12,27,248,22,82,248,22,164,4,196,28,248,22, -88,193,20,14,144,40,39,40,28,248,22,88,248,22,82,194,248,22,162,20,193, -249,22,157,4,80,143,42,39,251,22,90,2,19,248,22,162,20,199,249,22,80, -2,4,248,22,163,20,201,11,18,143,10,2,28,27,248,22,82,248,22,164,4, -196,28,248,22,88,193,20,14,144,40,39,40,28,248,22,88,248,22,82,194,248, -22,162,20,193,249,22,157,4,80,143,42,39,250,22,90,2,21,248,22,90,249, -22,90,248,22,90,2,22,248,22,162,20,201,251,22,90,2,19,2,22,2,22, -249,22,80,2,11,248,22,163,20,204,18,143,11,2,28,248,22,164,4,193,27, -248,22,164,4,194,249,22,80,248,22,90,248,22,81,196,248,22,163,20,195,27, -248,22,82,248,22,164,4,23,197,1,249,22,157,4,80,143,42,39,28,248,22, -64,248,22,158,4,248,22,81,23,198,2,27,249,22,2,32,0,88,148,8,36, -40,46,11,9,222,33,43,248,22,164,4,248,22,102,23,200,2,250,22,90,2, -23,248,22,90,249,22,90,248,22,90,248,22,162,20,23,204,2,250,22,91,2, -24,249,22,2,22,81,23,204,2,248,22,104,23,206,2,249,22,80,248,22,162, -20,23,202,1,249,22,2,22,102,23,200,1,250,22,91,2,21,249,22,2,32, -0,88,148,8,36,40,50,11,9,222,33,44,248,22,164,4,248,22,162,20,201, -248,22,163,20,198,27,248,22,164,4,194,249,22,80,248,22,90,248,22,81,196, -248,22,163,20,195,27,248,22,82,248,22,164,4,23,197,1,249,22,157,4,80, -143,42,39,250,22,91,2,23,249,22,2,32,0,88,148,8,36,40,50,11,9, -222,33,46,248,22,164,4,248,22,81,201,248,22,163,20,198,27,248,22,82,248, -22,164,4,196,27,248,22,164,4,248,22,81,195,249,22,157,4,80,143,43,39, -28,248,22,88,195,250,22,91,2,21,9,248,22,163,20,199,250,22,90,2,7, -248,22,90,248,22,81,199,250,22,91,2,8,248,22,163,20,201,248,22,163,20, -202,27,248,22,82,248,22,164,4,196,27,248,22,164,4,248,22,81,195,249,22, -157,4,80,143,43,39,28,248,22,88,195,250,22,91,2,21,9,248,22,163,20, -199,250,22,90,2,21,248,22,90,248,22,81,199,250,22,91,2,9,248,22,163, -20,201,248,22,163,20,202,27,248,22,82,248,22,164,4,23,197,1,27,249,22, -1,22,94,249,22,2,22,164,4,248,22,164,4,248,22,81,199,248,22,185,4, -249,22,157,4,80,143,44,39,251,22,90,1,22,119,105,116,104,45,99,111,110, -116,105,110,117,97,116,105,111,110,45,109,97,114,107,2,25,250,22,91,1,23, -101,120,116,101,110,100,45,112,97,114,97,109,101,116,101,114,105,122,97,116,105, -111,110,21,95,1,27,99,111,110,116,105,110,117,97,116,105,111,110,45,109,97, -114,107,45,115,101,116,45,102,105,114,115,116,11,2,25,202,250,22,91,2,21, -9,248,22,163,20,204,27,248,22,82,248,22,164,4,196,28,248,22,88,193,20, -14,144,40,39,40,249,22,157,4,80,143,42,39,27,248,22,164,4,248,22,81, -197,28,249,22,169,9,64,61,62,248,22,158,4,248,22,102,196,250,22,90,2, -21,248,22,90,249,22,90,21,93,2,26,248,22,162,20,199,250,22,91,2,5, -249,22,90,2,26,249,22,90,248,22,111,203,2,26,248,22,163,20,202,251,22, -90,2,19,28,249,22,169,9,248,22,158,4,248,22,162,20,200,66,101,108,115, -101,10,248,22,162,20,197,250,22,91,2,21,9,248,22,163,20,200,249,22,80, -2,5,248,22,163,20,202,18,143,94,10,66,118,111,105,100,2,28,27,248,22, -82,248,22,164,4,196,249,22,157,4,80,143,42,39,28,248,22,64,248,22,158, -4,248,22,81,197,250,22,90,2,27,248,22,90,248,22,162,20,199,248,22,102, -198,27,248,22,158,4,248,22,162,20,197,250,22,90,2,27,248,22,90,248,22, -81,197,250,22,91,2,24,248,22,163,20,199,248,22,163,20,202,144,39,20,121, -145,2,1,39,16,1,11,16,0,20,27,15,61,9,2,2,2,2,2,3,11, -11,11,11,9,9,11,11,11,10,39,80,143,39,39,20,121,145,2,1,39,16, -0,16,0,41,42,39,16,0,39,16,0,39,11,11,11,16,11,2,4,2,5, -2,6,2,7,2,8,2,9,2,10,2,11,2,12,2,13,2,14,16,11,11, -11,11,11,11,11,11,11,11,11,11,16,11,2,4,2,5,2,6,2,7,2, -8,2,9,2,10,2,11,2,12,2,13,2,14,39,50,40,16,0,39,16,1, -2,15,40,11,11,11,16,0,16,0,16,0,39,39,11,12,11,11,16,0,16, -0,16,0,39,39,16,12,16,5,11,20,15,16,2,20,14,144,39,39,40,80, -143,39,39,39,20,121,145,2,1,39,16,1,2,15,16,1,33,36,10,16,5, -2,13,88,148,8,36,40,56,40,9,223,0,33,37,39,20,121,145,2,1,39, -16,1,2,15,16,0,11,16,5,2,14,88,148,8,36,40,56,40,9,223,0, -33,38,39,20,121,145,2,1,39,16,1,2,15,16,0,11,16,5,2,4,88, -148,8,36,40,56,42,9,223,0,33,39,39,20,121,145,2,1,39,16,1,2, -15,16,1,33,40,11,16,5,2,11,88,148,8,36,40,59,42,9,223,0,33, -41,39,20,121,145,2,1,39,16,1,2,15,16,1,33,42,11,16,5,2,7, -88,148,8,36,40,61,40,9,223,0,33,45,39,20,121,145,2,1,39,16,1, -2,15,16,0,11,16,5,2,10,88,148,8,36,40,56,40,9,223,0,33,47, -39,20,121,145,2,1,39,16,1,2,15,16,0,11,16,5,2,8,88,148,8, -36,40,57,40,9,223,0,33,48,39,20,121,145,2,1,39,16,1,2,15,16, -0,11,16,5,2,9,88,148,8,36,40,57,40,9,223,0,33,49,39,20,121, -145,2,1,39,16,1,2,15,16,0,11,16,5,2,12,88,148,8,36,40,59, -40,9,223,0,33,50,39,20,121,145,2,1,39,16,1,2,15,16,0,11,16, -5,2,5,88,148,8,36,40,61,42,9,223,0,33,51,39,20,121,145,2,1, -39,16,1,2,15,16,1,33,52,11,16,5,2,6,88,148,8,36,40,57,40, -9,223,0,33,53,39,20,121,145,2,1,39,16,1,2,15,16,0,11,16,0, -94,2,17,2,18,93,2,17,9,9,39,9,0}; - EVAL_ONE_SIZED_STR((char *)expr, 2091); + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,10,54,46,50,46,57,48,48,46,49,48,84,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,1,0,0,8, +0,18,0,22,0,26,0,31,0,38,0,42,0,47,0,59,0,66,0,69,0, +82,0,89,0,94,0,103,0,109,0,123,0,137,0,140,0,146,0,157,0,159, +0,173,0,180,0,202,0,204,0,218,0,246,0,251,0,255,0,72,1,79,1, +90,1,128,1,135,1,144,1,177,1,210,1,16,2,21,2,102,2,107,2,112, +2,133,2,30,3,51,3,104,3,173,3,242,3,132,4,24,5,35,5,118,5, +0,0,147,7,0,0,3,1,5,105,110,115,112,48,71,35,37,109,105,110,45, +115,116,120,29,11,11,11,65,97,110,100,66,99,111,110,100,68,100,101,102,105, +110,101,65,108,101,116,66,108,101,116,42,73,108,101,116,42,45,118,97,108,117, +101,115,68,108,101,116,114,101,99,64,111,114,74,112,97,114,97,109,101,116,101, +114,105,122,101,68,117,110,108,101,115,115,66,119,104,101,110,70,104,101,114,101, +45,115,116,120,67,113,117,111,116,101,29,94,2,16,70,35,37,107,101,114,110, +101,108,11,29,94,2,16,70,35,37,112,97,114,97,109,122,11,64,105,102,67, +98,101,103,105,110,72,108,101,116,45,118,97,108,117,101,115,63,120,75,108,101, +116,114,101,99,45,118,97,108,117,101,115,68,108,97,109,98,100,97,1,20,112, +97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,45,107,101,121,63,118, +75,100,101,102,105,110,101,45,118,97,108,117,101,115,38,28,16,3,93,16,2, +29,11,11,11,2,3,2,29,93,143,16,5,39,2,31,40,2,34,2,2,39, +38,29,93,2,30,36,30,0,39,36,31,1,145,40,143,2,32,16,4,2,17, +39,39,2,1,143,2,32,16,4,2,18,39,39,2,1,16,22,2,4,2,33, +2,5,2,33,2,6,2,33,2,7,2,33,2,8,2,33,2,9,2,33,2, +10,2,33,2,11,2,33,2,12,2,33,2,13,2,33,2,14,2,33,38,32, +143,2,31,2,29,38,33,93,143,2,32,143,2,1,2,3,36,34,2,144,40, +143,2,35,16,4,2,17,40,39,2,1,16,2,2,15,93,143,2,35,147,2, +1,2,3,40,2,15,143,2,3,40,2,15,38,35,143,2,34,2,29,18,143, +66,104,101,114,101,2,28,27,248,22,164,4,195,249,22,157,4,80,143,42,39, +251,22,90,2,19,248,22,102,199,12,249,22,80,2,20,248,22,104,201,27,248, +22,164,4,195,249,22,157,4,80,143,42,39,251,22,90,2,19,248,22,102,199, +249,22,80,2,20,248,22,104,201,12,27,248,22,82,248,22,164,4,196,28,248, +22,88,193,20,14,144,40,39,40,28,248,22,88,248,22,82,194,248,22,163,20, +193,249,22,157,4,80,143,42,39,251,22,90,2,19,248,22,163,20,199,249,22, +80,2,4,248,22,164,20,201,11,18,143,10,2,28,27,248,22,82,248,22,164, +4,196,28,248,22,88,193,20,14,144,40,39,40,28,248,22,88,248,22,82,194, +248,22,163,20,193,249,22,157,4,80,143,42,39,250,22,90,2,21,248,22,90, +249,22,90,248,22,90,2,22,248,22,163,20,201,251,22,90,2,19,2,22,2, +22,249,22,80,2,11,248,22,164,20,204,18,143,11,2,28,248,22,164,4,193, +27,248,22,164,4,194,249,22,80,248,22,90,248,22,81,196,248,22,164,20,195, +27,248,22,82,248,22,164,4,23,197,1,249,22,157,4,80,143,42,39,28,248, +22,64,248,22,158,4,248,22,81,23,198,2,27,249,22,2,32,0,88,148,8, +36,40,46,11,9,222,33,43,248,22,164,4,248,22,102,23,200,2,250,22,90, +2,23,248,22,90,249,22,90,248,22,90,248,22,163,20,23,204,2,250,22,91, +2,24,249,22,2,22,81,23,204,2,248,22,104,23,206,2,249,22,80,248,22, +163,20,23,202,1,249,22,2,22,102,23,200,1,250,22,91,2,21,249,22,2, +32,0,88,148,8,36,40,50,11,9,222,33,44,248,22,164,4,248,22,163,20, +201,248,22,164,20,198,27,248,22,164,4,194,249,22,80,248,22,90,248,22,81, +196,248,22,164,20,195,27,248,22,82,248,22,164,4,23,197,1,249,22,157,4, +80,143,42,39,250,22,91,2,23,249,22,2,32,0,88,148,8,36,40,50,11, +9,222,33,46,248,22,164,4,248,22,81,201,248,22,164,20,198,27,248,22,82, +248,22,164,4,196,27,248,22,164,4,248,22,81,195,249,22,157,4,80,143,43, +39,28,248,22,88,195,250,22,91,2,21,9,248,22,164,20,199,250,22,90,2, +7,248,22,90,248,22,81,199,250,22,91,2,8,248,22,164,20,201,248,22,164, +20,202,27,248,22,82,248,22,164,4,196,27,248,22,164,4,248,22,81,195,249, +22,157,4,80,143,43,39,28,248,22,88,195,250,22,91,2,21,9,248,22,164, +20,199,250,22,90,2,21,248,22,90,248,22,81,199,250,22,91,2,9,248,22, +164,20,201,248,22,164,20,202,27,248,22,82,248,22,164,4,23,197,1,27,249, +22,1,22,94,249,22,2,22,164,4,248,22,164,4,248,22,81,199,248,22,185, +4,249,22,157,4,80,143,44,39,251,22,90,1,22,119,105,116,104,45,99,111, +110,116,105,110,117,97,116,105,111,110,45,109,97,114,107,2,25,250,22,91,1, +23,101,120,116,101,110,100,45,112,97,114,97,109,101,116,101,114,105,122,97,116, +105,111,110,21,95,1,27,99,111,110,116,105,110,117,97,116,105,111,110,45,109, +97,114,107,45,115,101,116,45,102,105,114,115,116,11,2,25,202,250,22,91,2, +21,9,248,22,164,20,204,27,248,22,82,248,22,164,4,196,28,248,22,88,193, +20,14,144,40,39,40,249,22,157,4,80,143,42,39,27,248,22,164,4,248,22, +81,197,28,249,22,169,9,64,61,62,248,22,158,4,248,22,102,196,250,22,90, +2,21,248,22,90,249,22,90,21,93,2,26,248,22,163,20,199,250,22,91,2, +5,249,22,90,2,26,249,22,90,248,22,111,203,2,26,248,22,164,20,202,251, +22,90,2,19,28,249,22,169,9,248,22,158,4,248,22,163,20,200,66,101,108, +115,101,10,248,22,163,20,197,250,22,91,2,21,9,248,22,164,20,200,249,22, +80,2,5,248,22,164,20,202,18,143,94,10,66,118,111,105,100,2,28,27,248, +22,82,248,22,164,4,196,249,22,157,4,80,143,42,39,28,248,22,64,248,22, +158,4,248,22,81,197,250,22,90,2,27,248,22,90,248,22,163,20,199,248,22, +102,198,27,248,22,158,4,248,22,163,20,197,250,22,90,2,27,248,22,90,248, +22,81,197,250,22,91,2,24,248,22,164,20,199,248,22,164,20,202,144,39,20, +121,145,2,1,39,16,1,11,16,0,20,27,15,61,9,2,2,2,2,2,3, +11,11,11,11,9,9,11,11,11,10,39,80,143,39,39,20,121,145,2,1,39, +16,0,16,0,41,42,39,16,0,39,16,0,39,11,11,11,16,11,2,4,2, +5,2,6,2,7,2,8,2,9,2,10,2,11,2,12,2,13,2,14,16,11, +11,11,11,11,11,11,11,11,11,11,11,16,11,2,4,2,5,2,6,2,7, +2,8,2,9,2,10,2,11,2,12,2,13,2,14,39,50,40,16,0,39,16, +1,2,15,40,11,11,11,16,0,16,0,16,0,39,39,11,12,11,11,16,0, +16,0,16,0,39,39,16,12,16,5,11,20,15,16,2,20,14,144,39,39,40, +80,143,39,39,39,20,121,145,2,1,39,16,1,2,15,16,1,33,36,10,16, +5,2,13,88,148,8,36,40,56,40,9,223,0,33,37,39,20,121,145,2,1, +39,16,1,2,15,16,0,11,16,5,2,14,88,148,8,36,40,56,40,9,223, +0,33,38,39,20,121,145,2,1,39,16,1,2,15,16,0,11,16,5,2,4, +88,148,8,36,40,56,42,9,223,0,33,39,39,20,121,145,2,1,39,16,1, +2,15,16,1,33,40,11,16,5,2,11,88,148,8,36,40,59,42,9,223,0, +33,41,39,20,121,145,2,1,39,16,1,2,15,16,1,33,42,11,16,5,2, +7,88,148,8,36,40,61,40,9,223,0,33,45,39,20,121,145,2,1,39,16, +1,2,15,16,0,11,16,5,2,10,88,148,8,36,40,56,40,9,223,0,33, +47,39,20,121,145,2,1,39,16,1,2,15,16,0,11,16,5,2,8,88,148, +8,36,40,57,40,9,223,0,33,48,39,20,121,145,2,1,39,16,1,2,15, +16,0,11,16,5,2,9,88,148,8,36,40,57,40,9,223,0,33,49,39,20, +121,145,2,1,39,16,1,2,15,16,0,11,16,5,2,12,88,148,8,36,40, +59,40,9,223,0,33,50,39,20,121,145,2,1,39,16,1,2,15,16,0,11, +16,5,2,5,88,148,8,36,40,61,42,9,223,0,33,51,39,20,121,145,2, +1,39,16,1,2,15,16,1,33,52,11,16,5,2,6,88,148,8,36,40,57, +40,9,223,0,33,53,39,20,121,145,2,1,39,16,1,2,15,16,0,11,16, +0,94,2,17,2,18,93,2,17,9,9,39,9,0}; + EVAL_ONE_SIZED_STR((char *)expr, 2092); } { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,9,54,46,50,46,57,48,48,46,57,84,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,1,0,0,8,0, -16,0,29,0,34,0,51,0,63,0,85,0,114,0,158,0,164,0,178,0,193, -0,211,0,223,0,239,0,253,0,19,1,39,1,73,1,90,1,107,1,130,1, -145,1,184,1,202,1,233,1,245,1,6,2,18,2,33,2,57,2,89,2,118, -2,134,2,152,2,172,2,193,2,211,2,242,2,0,3,17,3,61,3,69,3, -74,3,118,3,125,3,135,3,150,3,159,3,164,3,166,3,199,3,223,3,244, -3,1,4,11,4,20,4,31,4,49,4,62,4,72,4,82,4,88,4,93,4, -105,4,108,4,112,4,117,4,160,4,173,4,176,4,200,4,239,4,246,4,3, -5,25,5,36,5,66,5,89,5,97,5,121,5,142,5,86,6,116,6,197,9, -220,9,237,9,161,11,8,12,22,12,226,12,202,14,211,14,220,14,234,14,244, -14,5,16,108,16,221,16,38,17,111,17,215,17,244,17,59,18,197,18,12,19, -225,19,87,20,100,20,218,20,231,20,70,21,137,21,150,21,161,21,57,22,175, -22,219,22,74,23,152,25,176,25,38,26,120,27,127,27,179,27,192,27,182,28, -198,28,53,29,212,29,219,29,96,31,173,31,190,31,90,32,110,32,170,32,177, -32,37,33,91,33,110,33,61,34,77,34,38,35,27,36,64,36,73,36,150,37, -251,39,11,40,78,40,99,40,119,40,139,40,196,40,156,43,122,44,138,44,109, -45,167,45,200,45,76,46,235,46,251,46,92,47,109,47,187,49,238,51,254,51, -228,53,160,54,162,54,189,54,205,54,221,54,62,55,129,56,61,57,77,57,86, -57,93,57,159,58,225,59,87,60,133,63,7,64,139,64,84,66,34,67,76,67, -184,67,0,0,131,75,0,0,3,1,5,105,110,115,112,48,69,35,37,117,116, -105,108,115,74,112,97,116,104,45,115,116,114,105,110,103,63,66,98,115,98,115, -78,110,111,114,109,97,108,45,99,97,115,101,45,112,97,116,104,73,114,101,114, -111,111,116,45,112,97,116,104,1,20,102,105,110,100,45,101,120,101,99,117,116, -97,98,108,101,45,112,97,116,104,1,27,112,97,116,104,45,108,105,115,116,45, -115,116,114,105,110,103,45,62,112,97,116,104,45,108,105,115,116,1,42,99,97, -108,108,45,119,105,116,104,45,100,101,102,97,117,108,116,45,114,101,97,100,105, -110,103,45,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,67,113, -117,111,116,101,29,94,2,10,70,35,37,112,97,114,97,109,122,11,76,45,99, -104,101,99,107,45,114,101,108,112,97,116,104,79,45,99,104,101,99,107,45,99, -111,108,108,101,99,116,105,111,110,73,45,99,104,101,99,107,45,102,97,105,108, -77,99,111,108,108,101,99,116,105,111,110,45,112,97,116,104,75,102,105,110,100, -45,99,111,108,45,102,105,108,101,1,20,99,111,108,108,101,99,116,105,111,110, -45,102,105,108,101,45,112,97,116,104,1,18,102,105,110,100,45,109,97,105,110, -45,99,111,108,108,101,99,116,115,1,32,101,120,101,45,114,101,108,97,116,105, -118,101,45,112,97,116,104,45,62,99,111,109,112,108,101,116,101,45,112,97,116, -104,78,102,105,110,100,45,109,97,105,110,45,99,111,110,102,105,103,78,103,101, -116,45,99,111,110,102,105,103,45,116,97,98,108,101,1,21,103,101,116,45,105, -110,115,116,97,108,108,97,116,105,111,110,45,110,97,109,101,76,99,111,101,114, -99,101,45,116,111,45,112,97,116,104,1,37,99,111,108,108,101,99,116,115,45, -114,101,108,97,116,105,118,101,45,112,97,116,104,45,62,99,111,109,112,108,101, -116,101,45,112,97,116,104,79,97,100,100,45,99,111,110,102,105,103,45,115,101, -97,114,99,104,1,29,102,105,110,100,45,108,105,98,114,97,114,121,45,99,111, -108,108,101,99,116,105,111,110,45,108,105,110,107,115,73,108,105,110,107,115,45, -99,97,99,104,101,78,115,116,97,109,112,45,112,114,111,109,112,116,45,116,97, -103,73,102,105,108,101,45,62,115,116,97,109,112,76,110,111,45,102,105,108,101, -45,115,116,97,109,112,63,1,22,103,101,116,45,108,105,110,107,101,100,45,99, -111,108,108,101,99,116,105,111,110,115,1,30,110,111,114,109,97,108,105,122,101, -45,99,111,108,108,101,99,116,105,111,110,45,114,101,102,101,114,101,110,99,101, -1,27,102,105,108,101,45,101,120,105,115,116,115,63,47,109,97,121,98,101,45, -99,111,109,112,105,108,101,100,77,112,97,116,104,45,97,100,100,45,115,117,102, -102,105,120,79,99,104,101,99,107,45,115,117,102,102,105,120,45,99,97,108,108, -1,18,112,97,116,104,45,97,100,106,117,115,116,45,115,117,102,102,105,120,1, -19,112,97,116,104,45,114,101,112,108,97,99,101,45,115,117,102,102,105,120,79, -108,111,97,100,47,117,115,101,45,99,111,109,112,105,108,101,100,1,29,102,105, -110,100,45,108,105,98,114,97,114,121,45,99,111,108,108,101,99,116,105,111,110, -45,112,97,116,104,115,75,101,109,98,101,100,100,101,100,45,108,111,97,100,78, -110,111,114,109,97,108,45,112,97,116,104,45,99,97,115,101,6,41,41,40,111, -114,47,99,32,112,97,116,104,45,102,111,114,45,115,111,109,101,45,115,121,115, -116,101,109,63,32,112,97,116,104,45,115,116,114,105,110,103,63,41,69,119,105, -110,100,111,119,115,6,2,2,92,49,6,41,41,40,111,114,47,99,32,112,97, -116,104,45,115,116,114,105,110,103,63,32,112,97,116,104,45,102,111,114,45,115, -111,109,101,45,115,121,115,116,101,109,63,41,6,4,4,112,97,116,104,5,8, -92,92,63,92,82,69,76,92,6,12,12,112,97,116,104,45,115,116,114,105,110, -103,63,70,114,101,108,97,116,105,118,101,66,108,111,111,112,5,0,6,30,30, -40,112,114,111,99,101,100,117,114,101,45,97,114,105,116,121,45,105,110,99,108, -117,100,101,115,47,99,32,48,41,6,21,21,105,110,118,97,108,105,100,32,114, -101,108,97,116,105,118,101,32,112,97,116,104,6,18,18,40,97,110,121,47,99, -32,46,32,45,62,32,46,32,97,110,121,41,74,99,111,108,108,101,99,116,115, -45,100,105,114,71,101,120,101,99,45,102,105,108,101,70,111,114,105,103,45,100, -105,114,72,99,111,110,102,105,103,45,100,105,114,79,105,110,115,116,97,108,108, -97,116,105,111,110,45,110,97,109,101,6,10,10,108,105,110,107,115,46,114,107, -116,100,71,97,100,100,111,110,45,100,105,114,71,102,115,45,99,104,97,110,103, -101,67,101,114,114,111,114,66,114,111,111,116,73,115,116,97,116,105,99,45,114, -111,111,116,6,0,0,6,1,1,47,5,3,46,122,111,6,40,40,114,101,109, -111,118,105,110,103,32,115,117,102,102,105,120,32,109,97,107,101,115,32,112,97, -116,104,32,101,108,101,109,101,110,116,32,101,109,112,116,121,6,10,10,103,105, -118,101,110,32,112,97,116,104,5,1,95,6,21,21,40,111,114,47,99,32,115, -116,114,105,110,103,63,32,98,121,116,101,115,63,41,6,36,36,99,97,110,110, -111,116,32,97,100,100,32,97,32,115,117,102,102,105,120,32,116,111,32,97,32, -114,111,111,116,32,112,97,116,104,58,32,68,102,105,110,105,115,104,5,11,80, -76,84,67,79,76,76,69,67,84,83,1,20,99,111,108,108,101,99,116,115,45, -115,101,97,114,99,104,45,100,105,114,115,6,8,8,99,111,108,108,101,99,116, -115,27,248,22,174,15,194,28,192,192,28,248,22,153,7,194,27,248,22,133,16, -195,28,192,192,248,22,134,16,195,11,0,21,35,114,120,34,94,91,92,92,93, -91,92,92,93,91,63,93,91,92,92,93,34,0,6,35,114,120,34,47,34,0, -22,35,114,120,34,91,47,92,92,93,91,46,32,93,43,91,47,92,92,93,42, -36,34,0,19,35,114,120,34,91,32,46,93,43,40,91,47,92,92,93,42,41, -36,34,86,94,28,28,248,22,175,15,23,195,2,10,28,248,22,174,15,23,195, -2,10,28,248,22,153,7,23,195,2,28,248,22,133,16,23,195,2,10,248,22, -134,16,23,195,2,11,12,250,22,181,11,2,41,2,42,23,197,2,28,28,248, -22,175,15,23,195,2,249,22,169,9,248,22,176,15,23,197,2,2,43,249,22, -169,9,247,22,180,8,2,43,27,28,248,22,153,7,23,196,2,23,195,2,248, -22,165,8,248,22,179,15,23,197,2,28,249,22,171,16,2,79,23,195,2,28, -248,22,153,7,195,248,22,182,15,195,194,27,248,22,128,8,23,195,1,249,22, -183,15,248,22,168,8,250,22,179,16,2,80,28,249,22,171,16,2,81,23,201, -2,23,199,1,250,22,179,16,2,82,23,202,1,2,44,80,144,47,40,41,2, -43,28,248,22,153,7,194,248,22,182,15,194,193,0,28,35,114,120,34,94,92, -92,92,92,92,92,92,92,91,63,93,92,92,92,92,85,78,67,92,92,92,92, -34,86,95,28,28,28,248,22,174,15,23,195,2,10,28,248,22,153,7,23,195, -2,28,248,22,133,16,23,195,2,10,248,22,134,16,23,195,2,11,10,248,22, -175,15,23,195,2,12,252,22,181,11,2,6,2,45,39,23,199,2,23,200,2, -28,28,28,248,22,174,15,23,196,2,10,28,248,22,153,7,23,196,2,28,248, -22,133,16,23,196,2,10,248,22,134,16,23,196,2,11,10,248,22,175,15,23, -196,2,12,252,22,181,11,2,6,2,45,40,23,199,2,23,200,2,27,28,248, -22,175,15,23,196,2,248,22,176,15,23,196,2,247,22,177,15,86,95,28,28, -248,22,135,16,23,196,2,10,249,22,169,9,247,22,177,15,23,195,2,12,253, -22,183,11,2,6,6,54,54,112,97,116,104,32,105,115,32,110,111,116,32,99, -111,109,112,108,101,116,101,32,97,110,100,32,110,111,116,32,116,104,101,32,112, -108,97,116,102,111,114,109,39,115,32,99,111,110,118,101,110,116,105,111,110,2, -46,23,201,2,6,24,24,112,108,97,116,102,111,114,109,32,99,111,110,118,101, -110,116,105,111,110,32,116,121,112,101,247,22,177,15,28,249,22,169,9,28,248, -22,175,15,23,199,2,248,22,176,15,23,199,2,247,22,177,15,23,195,2,12, -253,22,183,11,2,6,6,37,37,103,105,118,101,110,32,112,97,116,104,115,32, -117,115,101,32,100,105,102,102,101,114,101,110,116,32,99,111,110,118,101,110,116, -105,111,110,115,2,46,23,201,2,6,9,9,114,111,111,116,32,112,97,116,104, -23,202,2,27,27,248,22,139,16,28,248,22,135,16,23,199,2,23,198,1,248, -22,136,16,23,199,1,86,94,28,28,248,22,175,15,23,194,2,10,28,248,22, -174,15,23,194,2,10,28,248,22,153,7,23,194,2,28,248,22,133,16,23,194, -2,10,248,22,134,16,23,194,2,11,12,250,22,181,11,2,41,2,42,23,196, -2,28,28,248,22,175,15,23,194,2,249,22,169,9,248,22,176,15,23,196,2, -2,43,249,22,169,9,247,22,180,8,2,43,27,28,248,22,153,7,23,195,2, -23,194,2,248,22,165,8,248,22,179,15,23,196,2,28,249,22,171,16,2,79, -23,195,2,28,248,22,153,7,194,248,22,182,15,194,193,27,248,22,128,8,23, -195,1,249,22,183,15,248,22,168,8,250,22,179,16,2,80,28,249,22,171,16, -2,81,23,201,2,23,199,1,250,22,179,16,2,82,23,202,1,2,44,80,144, -50,40,41,2,43,28,248,22,153,7,193,248,22,182,15,193,192,27,248,22,179, -15,23,195,2,28,249,22,169,9,23,197,2,66,117,110,105,120,28,249,22,150, -8,194,5,1,47,28,248,22,175,15,198,197,248,22,182,15,198,249,22,128,16, -199,249,22,183,15,249,22,153,8,248,22,179,15,200,40,198,28,249,22,169,9, -23,197,2,2,43,249,22,128,16,23,200,1,249,22,183,15,28,249,22,171,16, -0,27,35,114,120,34,94,92,92,92,92,92,92,92,92,91,63,93,92,92,92, -92,91,97,45,122,93,58,34,23,199,2,251,22,154,8,2,47,250,22,153,8, -203,43,44,5,1,92,249,22,153,8,202,45,28,249,22,171,16,2,84,23,199, -2,249,22,154,8,2,47,249,22,153,8,200,43,28,249,22,171,16,2,84,23, -199,2,249,22,154,8,2,47,249,22,153,8,200,43,28,249,22,171,16,0,14, -35,114,120,34,94,92,92,92,92,92,92,92,92,34,23,199,2,249,22,154,8, -5,4,85,78,67,92,249,22,153,8,200,41,28,249,22,171,16,0,12,35,114, -120,34,94,91,97,45,122,93,58,34,198,249,22,154,8,250,22,153,8,201,39, -40,249,22,153,8,200,41,12,198,12,32,86,88,148,8,36,42,56,11,72,102, -111,117,110,100,45,101,120,101,99,222,33,89,32,87,88,148,8,36,43,61,11, -66,110,101,120,116,222,33,88,27,248,22,137,16,23,196,2,28,249,22,171,9, -23,195,2,23,197,1,11,28,248,22,133,16,23,194,2,27,249,22,128,16,23, -197,1,23,196,1,28,23,197,2,90,144,42,11,89,146,42,39,11,248,22,131, -16,23,197,2,86,95,23,195,1,23,194,1,27,28,23,202,2,27,248,22,137, -16,23,199,2,28,249,22,171,9,23,195,2,23,200,2,11,28,248,22,133,16, -23,194,2,250,2,86,23,205,2,23,206,2,249,22,128,16,23,200,2,23,198, -1,250,2,86,23,205,2,23,206,2,23,196,1,11,28,23,193,2,192,86,94, -23,193,1,27,28,248,22,174,15,23,196,2,27,249,22,128,16,23,198,2,23, -205,2,28,28,248,22,187,15,193,10,248,22,186,15,193,192,11,11,28,23,193, -2,192,86,94,23,193,1,28,23,203,2,11,27,248,22,137,16,23,200,2,28, -249,22,171,9,194,23,201,1,11,28,248,22,133,16,193,250,2,86,205,206,249, -22,128,16,200,197,250,2,86,205,206,195,192,86,94,23,194,1,28,23,196,2, -90,144,42,11,89,146,42,39,11,248,22,131,16,23,197,2,86,95,23,195,1, -23,194,1,27,28,23,201,2,27,248,22,137,16,23,199,2,28,249,22,171,9, -23,195,2,23,200,2,11,28,248,22,133,16,23,194,2,250,2,86,23,204,2, -23,205,2,249,22,128,16,23,200,2,23,198,1,250,2,86,23,204,2,23,205, -2,23,196,1,11,28,23,193,2,192,86,94,23,193,1,27,28,248,22,174,15, -23,196,2,27,249,22,128,16,23,198,2,23,204,2,28,28,248,22,187,15,193, -10,248,22,186,15,193,192,11,11,28,23,193,2,192,86,94,23,193,1,28,23, -202,2,11,27,248,22,137,16,23,200,2,28,249,22,171,9,194,23,201,1,11, -28,248,22,133,16,193,250,2,86,204,205,249,22,128,16,200,197,250,2,86,204, -205,195,192,28,23,193,2,90,144,42,11,89,146,42,39,11,248,22,131,16,23, -199,2,86,95,23,195,1,23,194,1,27,28,23,198,2,251,2,87,23,198,2, -23,203,2,23,201,2,23,202,2,11,28,23,193,2,192,86,94,23,193,1,27, -28,248,22,174,15,195,27,249,22,128,16,197,200,28,28,248,22,187,15,193,10, -248,22,186,15,193,192,11,11,28,192,192,28,198,11,251,2,87,198,203,201,202, -194,32,90,88,148,8,36,43,60,11,2,50,222,33,91,28,248,22,88,23,197, -2,11,27,249,22,128,16,248,22,136,16,248,22,81,23,201,2,23,196,2,28, -248,22,186,15,23,194,2,250,2,86,197,198,195,86,94,23,193,1,27,248,22, -163,20,23,199,1,28,248,22,88,23,194,2,11,27,249,22,128,16,248,22,136, -16,248,22,81,23,198,2,23,198,2,28,248,22,186,15,23,194,2,250,2,86, -199,200,195,86,94,23,193,1,27,248,22,163,20,23,196,1,28,248,22,88,23, + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,10,54,46,50,46,57,48,48,46,49,48,84,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,1,0,0,8, +0,16,0,29,0,34,0,51,0,63,0,85,0,114,0,158,0,164,0,178,0, +193,0,211,0,223,0,239,0,253,0,19,1,39,1,73,1,90,1,107,1,130, +1,145,1,184,1,202,1,233,1,245,1,6,2,18,2,33,2,57,2,89,2, +118,2,134,2,152,2,172,2,193,2,211,2,242,2,0,3,17,3,61,3,69, +3,74,3,118,3,125,3,135,3,150,3,159,3,164,3,166,3,199,3,223,3, +244,3,1,4,11,4,20,4,31,4,49,4,62,4,72,4,82,4,88,4,93, +4,105,4,108,4,112,4,117,4,160,4,173,4,176,4,200,4,239,4,246,4, +3,5,25,5,36,5,66,5,89,5,97,5,121,5,142,5,86,6,116,6,197, +9,220,9,237,9,161,11,8,12,22,12,226,12,202,14,211,14,220,14,234,14, +244,14,5,16,108,16,221,16,38,17,111,17,215,17,244,17,59,18,197,18,12, +19,225,19,87,20,100,20,218,20,231,20,70,21,137,21,150,21,161,21,57,22, +175,22,219,22,74,23,152,25,176,25,38,26,120,27,127,27,179,27,192,27,182, +28,198,28,53,29,212,29,219,29,96,31,173,31,190,31,90,32,110,32,170,32, +177,32,37,33,91,33,110,33,61,34,77,34,38,35,27,36,64,36,73,36,150, +37,251,39,11,40,78,40,99,40,119,40,139,40,196,40,156,43,122,44,138,44, +109,45,167,45,200,45,76,46,235,46,251,46,92,47,109,47,187,49,238,51,254, +51,228,53,160,54,162,54,189,54,205,54,221,54,62,55,129,56,61,57,77,57, +86,57,93,57,159,58,225,59,87,60,133,63,7,64,139,64,84,66,34,67,76, +67,184,67,0,0,131,75,0,0,3,1,5,105,110,115,112,48,69,35,37,117, +116,105,108,115,74,112,97,116,104,45,115,116,114,105,110,103,63,66,98,115,98, +115,78,110,111,114,109,97,108,45,99,97,115,101,45,112,97,116,104,73,114,101, +114,111,111,116,45,112,97,116,104,1,20,102,105,110,100,45,101,120,101,99,117, +116,97,98,108,101,45,112,97,116,104,1,27,112,97,116,104,45,108,105,115,116, +45,115,116,114,105,110,103,45,62,112,97,116,104,45,108,105,115,116,1,42,99, +97,108,108,45,119,105,116,104,45,100,101,102,97,117,108,116,45,114,101,97,100, +105,110,103,45,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,67, +113,117,111,116,101,29,94,2,10,70,35,37,112,97,114,97,109,122,11,76,45, +99,104,101,99,107,45,114,101,108,112,97,116,104,79,45,99,104,101,99,107,45, +99,111,108,108,101,99,116,105,111,110,73,45,99,104,101,99,107,45,102,97,105, +108,77,99,111,108,108,101,99,116,105,111,110,45,112,97,116,104,75,102,105,110, +100,45,99,111,108,45,102,105,108,101,1,20,99,111,108,108,101,99,116,105,111, +110,45,102,105,108,101,45,112,97,116,104,1,18,102,105,110,100,45,109,97,105, +110,45,99,111,108,108,101,99,116,115,1,32,101,120,101,45,114,101,108,97,116, +105,118,101,45,112,97,116,104,45,62,99,111,109,112,108,101,116,101,45,112,97, +116,104,78,102,105,110,100,45,109,97,105,110,45,99,111,110,102,105,103,78,103, +101,116,45,99,111,110,102,105,103,45,116,97,98,108,101,1,21,103,101,116,45, +105,110,115,116,97,108,108,97,116,105,111,110,45,110,97,109,101,76,99,111,101, +114,99,101,45,116,111,45,112,97,116,104,1,37,99,111,108,108,101,99,116,115, +45,114,101,108,97,116,105,118,101,45,112,97,116,104,45,62,99,111,109,112,108, +101,116,101,45,112,97,116,104,79,97,100,100,45,99,111,110,102,105,103,45,115, +101,97,114,99,104,1,29,102,105,110,100,45,108,105,98,114,97,114,121,45,99, +111,108,108,101,99,116,105,111,110,45,108,105,110,107,115,73,108,105,110,107,115, +45,99,97,99,104,101,78,115,116,97,109,112,45,112,114,111,109,112,116,45,116, +97,103,73,102,105,108,101,45,62,115,116,97,109,112,76,110,111,45,102,105,108, +101,45,115,116,97,109,112,63,1,22,103,101,116,45,108,105,110,107,101,100,45, +99,111,108,108,101,99,116,105,111,110,115,1,30,110,111,114,109,97,108,105,122, +101,45,99,111,108,108,101,99,116,105,111,110,45,114,101,102,101,114,101,110,99, +101,1,27,102,105,108,101,45,101,120,105,115,116,115,63,47,109,97,121,98,101, +45,99,111,109,112,105,108,101,100,77,112,97,116,104,45,97,100,100,45,115,117, +102,102,105,120,79,99,104,101,99,107,45,115,117,102,102,105,120,45,99,97,108, +108,1,18,112,97,116,104,45,97,100,106,117,115,116,45,115,117,102,102,105,120, +1,19,112,97,116,104,45,114,101,112,108,97,99,101,45,115,117,102,102,105,120, +79,108,111,97,100,47,117,115,101,45,99,111,109,112,105,108,101,100,1,29,102, +105,110,100,45,108,105,98,114,97,114,121,45,99,111,108,108,101,99,116,105,111, +110,45,112,97,116,104,115,75,101,109,98,101,100,100,101,100,45,108,111,97,100, +78,110,111,114,109,97,108,45,112,97,116,104,45,99,97,115,101,6,41,41,40, +111,114,47,99,32,112,97,116,104,45,102,111,114,45,115,111,109,101,45,115,121, +115,116,101,109,63,32,112,97,116,104,45,115,116,114,105,110,103,63,41,69,119, +105,110,100,111,119,115,6,2,2,92,49,6,41,41,40,111,114,47,99,32,112, +97,116,104,45,115,116,114,105,110,103,63,32,112,97,116,104,45,102,111,114,45, +115,111,109,101,45,115,121,115,116,101,109,63,41,6,4,4,112,97,116,104,5, +8,92,92,63,92,82,69,76,92,6,12,12,112,97,116,104,45,115,116,114,105, +110,103,63,70,114,101,108,97,116,105,118,101,66,108,111,111,112,5,0,6,30, +30,40,112,114,111,99,101,100,117,114,101,45,97,114,105,116,121,45,105,110,99, +108,117,100,101,115,47,99,32,48,41,6,21,21,105,110,118,97,108,105,100,32, +114,101,108,97,116,105,118,101,32,112,97,116,104,6,18,18,40,97,110,121,47, +99,32,46,32,45,62,32,46,32,97,110,121,41,74,99,111,108,108,101,99,116, +115,45,100,105,114,71,101,120,101,99,45,102,105,108,101,70,111,114,105,103,45, +100,105,114,72,99,111,110,102,105,103,45,100,105,114,79,105,110,115,116,97,108, +108,97,116,105,111,110,45,110,97,109,101,6,10,10,108,105,110,107,115,46,114, +107,116,100,71,97,100,100,111,110,45,100,105,114,71,102,115,45,99,104,97,110, +103,101,67,101,114,114,111,114,66,114,111,111,116,73,115,116,97,116,105,99,45, +114,111,111,116,6,0,0,6,1,1,47,5,3,46,122,111,6,40,40,114,101, +109,111,118,105,110,103,32,115,117,102,102,105,120,32,109,97,107,101,115,32,112, +97,116,104,32,101,108,101,109,101,110,116,32,101,109,112,116,121,6,10,10,103, +105,118,101,110,32,112,97,116,104,5,1,95,6,21,21,40,111,114,47,99,32, +115,116,114,105,110,103,63,32,98,121,116,101,115,63,41,6,36,36,99,97,110, +110,111,116,32,97,100,100,32,97,32,115,117,102,102,105,120,32,116,111,32,97, +32,114,111,111,116,32,112,97,116,104,58,32,68,102,105,110,105,115,104,5,11, +80,76,84,67,79,76,76,69,67,84,83,1,20,99,111,108,108,101,99,116,115, +45,115,101,97,114,99,104,45,100,105,114,115,6,8,8,99,111,108,108,101,99, +116,115,27,248,22,174,15,194,28,192,192,28,248,22,153,7,194,27,248,22,133, +16,195,28,192,192,248,22,134,16,195,11,0,21,35,114,120,34,94,91,92,92, +93,91,92,92,93,91,63,93,91,92,92,93,34,0,6,35,114,120,34,47,34, +0,22,35,114,120,34,91,47,92,92,93,91,46,32,93,43,91,47,92,92,93, +42,36,34,0,19,35,114,120,34,91,32,46,93,43,40,91,47,92,92,93,42, +41,36,34,86,94,28,28,248,22,175,15,23,195,2,10,28,248,22,174,15,23, +195,2,10,28,248,22,153,7,23,195,2,28,248,22,133,16,23,195,2,10,248, +22,134,16,23,195,2,11,12,250,22,181,11,2,41,2,42,23,197,2,28,28, +248,22,175,15,23,195,2,249,22,169,9,248,22,176,15,23,197,2,2,43,249, +22,169,9,247,22,180,8,2,43,27,28,248,22,153,7,23,196,2,23,195,2, +248,22,165,8,248,22,179,15,23,197,2,28,249,22,171,16,2,79,23,195,2, +28,248,22,153,7,195,248,22,182,15,195,194,27,248,22,128,8,23,195,1,249, +22,183,15,248,22,168,8,250,22,179,16,2,80,28,249,22,171,16,2,81,23, +201,2,23,199,1,250,22,179,16,2,82,23,202,1,2,44,80,144,47,40,41, +2,43,28,248,22,153,7,194,248,22,182,15,194,193,0,28,35,114,120,34,94, +92,92,92,92,92,92,92,92,91,63,93,92,92,92,92,85,78,67,92,92,92, +92,34,86,95,28,28,28,248,22,174,15,23,195,2,10,28,248,22,153,7,23, +195,2,28,248,22,133,16,23,195,2,10,248,22,134,16,23,195,2,11,10,248, +22,175,15,23,195,2,12,252,22,181,11,2,6,2,45,39,23,199,2,23,200, +2,28,28,28,248,22,174,15,23,196,2,10,28,248,22,153,7,23,196,2,28, +248,22,133,16,23,196,2,10,248,22,134,16,23,196,2,11,10,248,22,175,15, +23,196,2,12,252,22,181,11,2,6,2,45,40,23,199,2,23,200,2,27,28, +248,22,175,15,23,196,2,248,22,176,15,23,196,2,247,22,177,15,86,95,28, +28,248,22,135,16,23,196,2,10,249,22,169,9,247,22,177,15,23,195,2,12, +253,22,183,11,2,6,6,54,54,112,97,116,104,32,105,115,32,110,111,116,32, +99,111,109,112,108,101,116,101,32,97,110,100,32,110,111,116,32,116,104,101,32, +112,108,97,116,102,111,114,109,39,115,32,99,111,110,118,101,110,116,105,111,110, +2,46,23,201,2,6,24,24,112,108,97,116,102,111,114,109,32,99,111,110,118, +101,110,116,105,111,110,32,116,121,112,101,247,22,177,15,28,249,22,169,9,28, +248,22,175,15,23,199,2,248,22,176,15,23,199,2,247,22,177,15,23,195,2, +12,253,22,183,11,2,6,6,37,37,103,105,118,101,110,32,112,97,116,104,115, +32,117,115,101,32,100,105,102,102,101,114,101,110,116,32,99,111,110,118,101,110, +116,105,111,110,115,2,46,23,201,2,6,9,9,114,111,111,116,32,112,97,116, +104,23,202,2,27,27,248,22,139,16,28,248,22,135,16,23,199,2,23,198,1, +248,22,136,16,23,199,1,86,94,28,28,248,22,175,15,23,194,2,10,28,248, +22,174,15,23,194,2,10,28,248,22,153,7,23,194,2,28,248,22,133,16,23, +194,2,10,248,22,134,16,23,194,2,11,12,250,22,181,11,2,41,2,42,23, +196,2,28,28,248,22,175,15,23,194,2,249,22,169,9,248,22,176,15,23,196, +2,2,43,249,22,169,9,247,22,180,8,2,43,27,28,248,22,153,7,23,195, +2,23,194,2,248,22,165,8,248,22,179,15,23,196,2,28,249,22,171,16,2, +79,23,195,2,28,248,22,153,7,194,248,22,182,15,194,193,27,248,22,128,8, +23,195,1,249,22,183,15,248,22,168,8,250,22,179,16,2,80,28,249,22,171, +16,2,81,23,201,2,23,199,1,250,22,179,16,2,82,23,202,1,2,44,80, +144,50,40,41,2,43,28,248,22,153,7,193,248,22,182,15,193,192,27,248,22, +179,15,23,195,2,28,249,22,169,9,23,197,2,66,117,110,105,120,28,249,22, +150,8,194,5,1,47,28,248,22,175,15,198,197,248,22,182,15,198,249,22,128, +16,199,249,22,183,15,249,22,153,8,248,22,179,15,200,40,198,28,249,22,169, +9,23,197,2,2,43,249,22,128,16,23,200,1,249,22,183,15,28,249,22,171, +16,0,27,35,114,120,34,94,92,92,92,92,92,92,92,92,91,63,93,92,92, +92,92,91,97,45,122,93,58,34,23,199,2,251,22,154,8,2,47,250,22,153, +8,203,43,44,5,1,92,249,22,153,8,202,45,28,249,22,171,16,2,84,23, +199,2,249,22,154,8,2,47,249,22,153,8,200,43,28,249,22,171,16,2,84, +23,199,2,249,22,154,8,2,47,249,22,153,8,200,43,28,249,22,171,16,0, +14,35,114,120,34,94,92,92,92,92,92,92,92,92,34,23,199,2,249,22,154, +8,5,4,85,78,67,92,249,22,153,8,200,41,28,249,22,171,16,0,12,35, +114,120,34,94,91,97,45,122,93,58,34,198,249,22,154,8,250,22,153,8,201, +39,40,249,22,153,8,200,41,12,198,12,32,86,88,148,8,36,42,56,11,72, +102,111,117,110,100,45,101,120,101,99,222,33,89,32,87,88,148,8,36,43,61, +11,66,110,101,120,116,222,33,88,27,248,22,137,16,23,196,2,28,249,22,171, +9,23,195,2,23,197,1,11,28,248,22,133,16,23,194,2,27,249,22,128,16, +23,197,1,23,196,1,28,23,197,2,90,144,42,11,89,146,42,39,11,248,22, +131,16,23,197,2,86,95,23,195,1,23,194,1,27,28,23,202,2,27,248,22, +137,16,23,199,2,28,249,22,171,9,23,195,2,23,200,2,11,28,248,22,133, +16,23,194,2,250,2,86,23,205,2,23,206,2,249,22,128,16,23,200,2,23, +198,1,250,2,86,23,205,2,23,206,2,23,196,1,11,28,23,193,2,192,86, +94,23,193,1,27,28,248,22,174,15,23,196,2,27,249,22,128,16,23,198,2, +23,205,2,28,28,248,22,187,15,193,10,248,22,186,15,193,192,11,11,28,23, +193,2,192,86,94,23,193,1,28,23,203,2,11,27,248,22,137,16,23,200,2, +28,249,22,171,9,194,23,201,1,11,28,248,22,133,16,193,250,2,86,205,206, +249,22,128,16,200,197,250,2,86,205,206,195,192,86,94,23,194,1,28,23,196, +2,90,144,42,11,89,146,42,39,11,248,22,131,16,23,197,2,86,95,23,195, +1,23,194,1,27,28,23,201,2,27,248,22,137,16,23,199,2,28,249,22,171, +9,23,195,2,23,200,2,11,28,248,22,133,16,23,194,2,250,2,86,23,204, +2,23,205,2,249,22,128,16,23,200,2,23,198,1,250,2,86,23,204,2,23, +205,2,23,196,1,11,28,23,193,2,192,86,94,23,193,1,27,28,248,22,174, +15,23,196,2,27,249,22,128,16,23,198,2,23,204,2,28,28,248,22,187,15, +193,10,248,22,186,15,193,192,11,11,28,23,193,2,192,86,94,23,193,1,28, +23,202,2,11,27,248,22,137,16,23,200,2,28,249,22,171,9,194,23,201,1, +11,28,248,22,133,16,193,250,2,86,204,205,249,22,128,16,200,197,250,2,86, +204,205,195,192,28,23,193,2,90,144,42,11,89,146,42,39,11,248,22,131,16, +23,199,2,86,95,23,195,1,23,194,1,27,28,23,198,2,251,2,87,23,198, +2,23,203,2,23,201,2,23,202,2,11,28,23,193,2,192,86,94,23,193,1, +27,28,248,22,174,15,195,27,249,22,128,16,197,200,28,28,248,22,187,15,193, +10,248,22,186,15,193,192,11,11,28,192,192,28,198,11,251,2,87,198,203,201, +202,194,32,90,88,148,8,36,43,60,11,2,50,222,33,91,28,248,22,88,23, +197,2,11,27,249,22,128,16,248,22,136,16,248,22,81,23,201,2,23,196,2, +28,248,22,186,15,23,194,2,250,2,86,197,198,195,86,94,23,193,1,27,248, +22,164,20,23,199,1,28,248,22,88,23,194,2,11,27,249,22,128,16,248,22, +136,16,248,22,81,23,198,2,23,198,2,28,248,22,186,15,23,194,2,250,2, +86,199,200,195,86,94,23,193,1,27,248,22,164,20,23,196,1,28,248,22,88, +23,194,2,11,27,249,22,128,16,248,22,136,16,248,22,81,23,198,2,23,200, +2,28,248,22,186,15,23,194,2,250,2,86,201,202,195,86,94,23,193,1,27, +248,22,164,20,23,196,1,28,248,22,88,23,194,2,11,27,249,22,128,16,248, +22,136,16,248,22,81,197,201,28,248,22,186,15,193,250,2,86,203,204,195,251, +2,90,203,204,205,248,22,164,20,198,86,95,28,28,248,22,174,15,23,195,2, +10,28,248,22,153,7,23,195,2,28,248,22,133,16,23,195,2,10,248,22,134, +16,23,195,2,11,12,250,22,181,11,2,7,2,48,23,197,2,28,28,23,195, +2,28,28,248,22,174,15,23,196,2,10,28,248,22,153,7,23,196,2,28,248, +22,133,16,23,196,2,10,248,22,134,16,23,196,2,11,248,22,133,16,23,196, +2,11,10,12,250,22,181,11,2,7,6,45,45,40,111,114,47,99,32,35,102, +32,40,97,110,100,47,99,32,112,97,116,104,45,115,116,114,105,110,103,63,32, +114,101,108,97,116,105,118,101,45,112,97,116,104,63,41,41,23,198,2,28,28, +248,22,133,16,23,195,2,90,144,42,11,89,146,42,39,11,248,22,131,16,23, +198,2,249,22,169,9,194,2,49,11,27,249,22,175,8,247,22,174,8,5,4, +80,65,84,72,27,28,23,194,2,249,80,143,43,44,249,22,165,8,23,198,1, +7,63,9,86,94,23,194,1,9,27,28,249,22,169,9,247,22,180,8,2,43, +249,22,80,248,22,183,15,5,1,46,23,196,1,23,194,1,28,248,22,88,23, 194,2,11,27,249,22,128,16,248,22,136,16,248,22,81,23,198,2,23,200,2, 28,248,22,186,15,23,194,2,250,2,86,201,202,195,86,94,23,193,1,27,248, -22,163,20,23,196,1,28,248,22,88,23,194,2,11,27,249,22,128,16,248,22, -136,16,248,22,81,197,201,28,248,22,186,15,193,250,2,86,203,204,195,251,2, -90,203,204,205,248,22,163,20,198,86,95,28,28,248,22,174,15,23,195,2,10, -28,248,22,153,7,23,195,2,28,248,22,133,16,23,195,2,10,248,22,134,16, -23,195,2,11,12,250,22,181,11,2,7,2,48,23,197,2,28,28,23,195,2, -28,28,248,22,174,15,23,196,2,10,28,248,22,153,7,23,196,2,28,248,22, -133,16,23,196,2,10,248,22,134,16,23,196,2,11,248,22,133,16,23,196,2, -11,10,12,250,22,181,11,2,7,6,45,45,40,111,114,47,99,32,35,102,32, -40,97,110,100,47,99,32,112,97,116,104,45,115,116,114,105,110,103,63,32,114, -101,108,97,116,105,118,101,45,112,97,116,104,63,41,41,23,198,2,28,28,248, -22,133,16,23,195,2,90,144,42,11,89,146,42,39,11,248,22,131,16,23,198, -2,249,22,169,9,194,2,49,11,27,249,22,175,8,247,22,174,8,5,4,80, -65,84,72,27,28,23,194,2,249,80,143,43,44,249,22,165,8,23,198,1,7, -63,9,86,94,23,194,1,9,27,28,249,22,169,9,247,22,180,8,2,43,249, -22,80,248,22,183,15,5,1,46,23,196,1,23,194,1,28,248,22,88,23,194, -2,11,27,249,22,128,16,248,22,136,16,248,22,81,23,198,2,23,200,2,28, -248,22,186,15,23,194,2,250,2,86,201,202,195,86,94,23,193,1,27,248,22, -163,20,23,196,1,28,248,22,88,23,194,2,11,27,249,22,128,16,248,22,136, -16,248,22,81,23,198,2,23,202,2,28,248,22,186,15,23,194,2,250,2,86, -203,204,195,86,94,23,193,1,27,248,22,163,20,23,196,1,28,248,22,88,23, -194,2,11,27,249,22,128,16,248,22,136,16,248,22,81,23,198,2,23,204,2, -28,248,22,186,15,23,194,2,250,2,86,205,206,195,86,94,23,193,1,27,248, -22,163,20,23,196,1,28,248,22,88,23,194,2,11,27,249,22,128,16,248,22, -136,16,248,22,81,197,205,28,248,22,186,15,193,250,2,86,23,15,23,16,195, -251,2,90,23,15,23,16,23,17,248,22,163,20,198,27,248,22,136,16,23,196, -1,28,248,22,186,15,193,250,2,86,198,199,195,11,250,80,144,42,43,42,196, -197,11,250,80,144,42,43,42,196,11,11,32,95,88,148,8,36,42,58,11,2, -50,222,33,97,0,8,35,114,120,35,34,92,34,34,27,249,22,167,16,23,197, -2,23,198,2,28,23,193,2,86,94,23,196,1,27,248,22,102,23,195,2,27, -27,248,22,111,23,197,1,27,249,22,167,16,23,201,2,23,196,2,28,23,193, -2,86,94,23,194,1,27,248,22,102,23,195,2,27,250,2,95,202,23,204,1, -248,22,111,23,199,1,27,28,249,22,169,9,247,22,180,8,2,43,250,22,179, -16,2,96,23,198,1,2,51,194,28,249,22,150,8,194,2,51,249,22,94,202, -195,249,22,80,248,22,183,15,195,195,86,95,23,199,1,23,193,1,27,28,249, -22,169,9,247,22,180,8,2,43,250,22,179,16,2,96,23,198,1,2,51,194, -28,249,22,150,8,194,2,51,249,22,94,200,9,249,22,80,248,22,183,15,195, -9,27,28,249,22,169,9,247,22,180,8,2,43,250,22,179,16,2,96,23,198, -1,2,51,194,28,249,22,150,8,194,2,51,249,22,94,198,195,249,22,80,248, -22,183,15,195,195,86,94,23,193,1,27,28,249,22,169,9,247,22,180,8,2, -43,250,22,179,16,2,96,23,200,1,2,51,196,28,249,22,150,8,194,2,51, -249,22,94,196,9,249,22,80,248,22,183,15,195,9,86,95,28,28,248,22,142, -8,194,10,248,22,153,7,194,12,250,22,181,11,2,8,6,21,21,40,111,114, -47,99,32,98,121,116,101,115,63,32,115,116,114,105,110,103,63,41,196,28,28, -248,22,89,195,249,22,4,22,174,15,196,11,12,250,22,181,11,2,8,6,14, -14,40,108,105,115,116,111,102,32,112,97,116,104,63,41,197,250,2,95,197,195, -28,248,22,153,7,197,248,22,167,8,197,196,28,28,248,22,0,23,195,2,249, -22,48,23,196,2,39,11,20,13,144,80,144,39,46,40,26,29,80,144,8,29, -47,40,249,22,31,11,80,144,8,31,46,40,22,144,15,10,22,145,15,10,22, -146,15,10,22,149,15,10,22,148,15,11,22,150,15,10,22,147,15,10,22,151, -15,10,22,152,15,10,22,153,15,10,22,154,15,10,22,155,15,11,22,156,15, -10,22,142,15,11,247,23,194,1,250,22,181,11,2,9,2,52,23,197,1,86, -94,28,28,248,22,174,15,23,195,2,10,28,248,22,153,7,23,195,2,28,248, -22,133,16,23,195,2,10,248,22,134,16,23,195,2,11,12,250,22,181,11,23, -196,2,2,48,23,197,2,28,248,22,133,16,23,195,2,12,251,22,183,11,23, -197,1,2,53,2,46,23,198,1,86,94,28,28,248,22,174,15,23,195,2,10, -28,248,22,153,7,23,195,2,28,248,22,133,16,23,195,2,10,248,22,134,16, -23,195,2,11,12,250,22,181,11,23,196,2,2,48,23,197,2,28,248,22,133, -16,23,195,2,12,251,22,183,11,23,197,1,2,53,2,46,23,198,1,86,94, +22,164,20,23,196,1,28,248,22,88,23,194,2,11,27,249,22,128,16,248,22, +136,16,248,22,81,23,198,2,23,202,2,28,248,22,186,15,23,194,2,250,2, +86,203,204,195,86,94,23,193,1,27,248,22,164,20,23,196,1,28,248,22,88, +23,194,2,11,27,249,22,128,16,248,22,136,16,248,22,81,23,198,2,23,204, +2,28,248,22,186,15,23,194,2,250,2,86,205,206,195,86,94,23,193,1,27, +248,22,164,20,23,196,1,28,248,22,88,23,194,2,11,27,249,22,128,16,248, +22,136,16,248,22,81,197,205,28,248,22,186,15,193,250,2,86,23,15,23,16, +195,251,2,90,23,15,23,16,23,17,248,22,164,20,198,27,248,22,136,16,23, +196,1,28,248,22,186,15,193,250,2,86,198,199,195,11,250,80,144,42,43,42, +196,197,11,250,80,144,42,43,42,196,11,11,32,95,88,148,8,36,42,58,11, +2,50,222,33,97,0,8,35,114,120,35,34,92,34,34,27,249,22,167,16,23, +197,2,23,198,2,28,23,193,2,86,94,23,196,1,27,248,22,102,23,195,2, +27,27,248,22,111,23,197,1,27,249,22,167,16,23,201,2,23,196,2,28,23, +193,2,86,94,23,194,1,27,248,22,102,23,195,2,27,250,2,95,202,23,204, +1,248,22,111,23,199,1,27,28,249,22,169,9,247,22,180,8,2,43,250,22, +179,16,2,96,23,198,1,2,51,194,28,249,22,150,8,194,2,51,249,22,94, +202,195,249,22,80,248,22,183,15,195,195,86,95,23,199,1,23,193,1,27,28, +249,22,169,9,247,22,180,8,2,43,250,22,179,16,2,96,23,198,1,2,51, +194,28,249,22,150,8,194,2,51,249,22,94,200,9,249,22,80,248,22,183,15, +195,9,27,28,249,22,169,9,247,22,180,8,2,43,250,22,179,16,2,96,23, +198,1,2,51,194,28,249,22,150,8,194,2,51,249,22,94,198,195,249,22,80, +248,22,183,15,195,195,86,94,23,193,1,27,28,249,22,169,9,247,22,180,8, +2,43,250,22,179,16,2,96,23,200,1,2,51,196,28,249,22,150,8,194,2, +51,249,22,94,196,9,249,22,80,248,22,183,15,195,9,86,95,28,28,248,22, +142,8,194,10,248,22,153,7,194,12,250,22,181,11,2,8,6,21,21,40,111, +114,47,99,32,98,121,116,101,115,63,32,115,116,114,105,110,103,63,41,196,28, +28,248,22,89,195,249,22,4,22,174,15,196,11,12,250,22,181,11,2,8,6, +14,14,40,108,105,115,116,111,102,32,112,97,116,104,63,41,197,250,2,95,197, +195,28,248,22,153,7,197,248,22,167,8,197,196,28,28,248,22,0,23,195,2, +249,22,48,23,196,2,39,11,20,13,144,80,144,39,46,40,26,29,80,144,8, +29,47,40,249,22,31,11,80,144,8,31,46,40,22,144,15,10,22,145,15,10, +22,146,15,10,22,149,15,10,22,148,15,11,22,150,15,10,22,147,15,10,22, +151,15,10,22,152,15,10,22,153,15,10,22,154,15,10,22,155,15,11,22,156, +15,10,22,142,15,11,247,23,194,1,250,22,181,11,2,9,2,52,23,197,1, 86,94,28,28,248,22,174,15,23,195,2,10,28,248,22,153,7,23,195,2,28, 248,22,133,16,23,195,2,10,248,22,134,16,23,195,2,11,12,250,22,181,11, -23,196,2,2,48,23,197,2,28,248,22,133,16,23,195,2,86,94,23,194,1, -12,251,22,183,11,23,197,2,2,53,2,46,23,198,1,249,22,3,20,20,94, -88,148,8,36,40,50,11,9,223,2,33,101,23,195,1,23,197,1,28,28,248, -22,0,23,195,2,249,22,48,23,196,2,40,11,12,250,22,181,11,23,196,1, -2,54,23,197,1,86,94,28,28,248,22,174,15,23,194,2,10,28,248,22,153, +23,196,2,2,48,23,197,2,28,248,22,133,16,23,195,2,12,251,22,183,11, +23,197,1,2,53,2,46,23,198,1,86,94,28,28,248,22,174,15,23,195,2, +10,28,248,22,153,7,23,195,2,28,248,22,133,16,23,195,2,10,248,22,134, +16,23,195,2,11,12,250,22,181,11,23,196,2,2,48,23,197,2,28,248,22, +133,16,23,195,2,12,251,22,183,11,23,197,1,2,53,2,46,23,198,1,86, +94,86,94,28,28,248,22,174,15,23,195,2,10,28,248,22,153,7,23,195,2, +28,248,22,133,16,23,195,2,10,248,22,134,16,23,195,2,11,12,250,22,181, +11,23,196,2,2,48,23,197,2,28,248,22,133,16,23,195,2,86,94,23,194, +1,12,251,22,183,11,23,197,2,2,53,2,46,23,198,1,249,22,3,20,20, +94,88,148,8,36,40,50,11,9,223,2,33,101,23,195,1,23,197,1,28,28, +248,22,0,23,195,2,249,22,48,23,196,2,40,11,12,250,22,181,11,23,196, +1,2,54,23,197,1,86,94,28,28,248,22,174,15,23,194,2,10,28,248,22, +153,7,23,194,2,28,248,22,133,16,23,194,2,10,248,22,134,16,23,194,2, +11,12,250,22,181,11,2,15,2,48,23,196,2,28,248,22,133,16,23,194,2, +12,251,22,183,11,2,15,2,53,2,46,23,197,1,86,95,86,94,86,94,28, +28,248,22,174,15,23,196,2,10,28,248,22,153,7,23,196,2,28,248,22,133, +16,23,196,2,10,248,22,134,16,23,196,2,11,12,250,22,181,11,2,15,2, +48,23,198,2,28,248,22,133,16,23,196,2,12,251,22,183,11,2,15,2,53, +2,46,23,199,2,249,22,3,32,0,88,148,8,36,40,49,11,9,222,33,104, +23,198,2,28,28,248,22,0,23,195,2,249,22,48,23,196,2,40,11,12,250, +22,181,11,2,15,2,54,23,197,2,252,80,143,44,52,23,199,1,23,200,1, +23,201,1,11,11,86,94,28,28,248,22,174,15,23,194,2,10,28,248,22,153, 7,23,194,2,28,248,22,133,16,23,194,2,10,248,22,134,16,23,194,2,11, -12,250,22,181,11,2,15,2,48,23,196,2,28,248,22,133,16,23,194,2,12, -251,22,183,11,2,15,2,53,2,46,23,197,1,86,95,86,94,86,94,28,28, -248,22,174,15,23,196,2,10,28,248,22,153,7,23,196,2,28,248,22,133,16, -23,196,2,10,248,22,134,16,23,196,2,11,12,250,22,181,11,2,15,2,48, -23,198,2,28,248,22,133,16,23,196,2,12,251,22,183,11,2,15,2,53,2, -46,23,199,2,249,22,3,32,0,88,148,8,36,40,49,11,9,222,33,104,23, -198,2,28,28,248,22,0,23,195,2,249,22,48,23,196,2,40,11,12,250,22, -181,11,2,15,2,54,23,197,2,252,80,143,44,52,23,199,1,23,200,1,23, -201,1,11,11,86,94,28,28,248,22,174,15,23,194,2,10,28,248,22,153,7, -23,194,2,28,248,22,133,16,23,194,2,10,248,22,134,16,23,194,2,11,12, -250,22,181,11,2,17,2,48,23,196,2,28,248,22,133,16,23,194,2,12,251, -22,183,11,2,17,2,53,2,46,23,197,1,86,96,86,94,28,28,248,22,174, -15,23,197,2,10,28,248,22,153,7,23,197,2,28,248,22,133,16,23,197,2, -10,248,22,134,16,23,197,2,11,12,250,22,181,11,2,17,2,48,23,199,2, -28,248,22,133,16,23,197,2,12,251,22,183,11,2,17,2,53,2,46,23,200, -2,86,94,86,94,28,28,248,22,174,15,23,198,2,10,28,248,22,153,7,23, -198,2,28,248,22,133,16,23,198,2,10,248,22,134,16,23,198,2,11,12,250, -22,181,11,2,17,2,48,23,200,2,28,248,22,133,16,23,198,2,12,251,22, -183,11,2,17,2,53,2,46,23,201,2,249,22,3,32,0,88,148,8,36,40, -49,11,9,222,33,106,23,200,2,28,28,248,22,0,23,195,2,249,22,48,23, -196,2,40,11,12,250,22,181,11,2,17,2,54,23,197,2,252,80,143,44,52, -23,199,1,23,202,1,23,203,1,23,201,1,23,200,1,27,248,22,151,16,2, -55,28,248,22,135,16,23,194,2,248,22,138,16,23,194,1,28,248,22,134,16, -23,194,2,90,144,42,11,89,146,42,39,11,248,22,131,16,249,22,136,16,250, -80,144,49,43,42,248,22,151,16,2,56,11,11,248,22,151,16,2,57,86,95, -23,195,1,23,194,1,248,22,138,16,249,22,136,16,23,199,1,23,196,1,27, -250,80,144,44,43,42,248,22,151,16,2,56,23,197,1,10,28,23,193,2,248, -22,138,16,23,194,1,11,249,80,144,41,55,40,39,80,144,41,8,40,42,27, -248,22,151,16,2,58,28,248,22,135,16,23,194,2,248,22,138,16,23,194,1, -28,248,22,134,16,23,194,2,90,144,42,11,89,146,42,39,11,248,22,131,16, -249,22,136,16,250,80,144,49,43,42,248,22,151,16,2,56,11,11,248,22,151, -16,2,57,86,95,23,195,1,23,194,1,248,22,138,16,249,22,136,16,23,199, -1,23,196,1,27,250,80,144,44,43,42,248,22,151,16,2,56,23,197,1,10, -28,23,193,2,248,22,138,16,23,194,1,11,249,80,144,41,55,40,40,80,144, -41,8,41,42,27,20,13,144,80,144,40,46,40,26,29,80,144,8,30,47,40, -249,22,31,11,80,144,8,32,46,40,22,144,15,10,22,145,15,10,22,146,15, -10,22,149,15,10,22,148,15,11,22,150,15,10,22,147,15,10,22,151,15,10, -22,152,15,10,22,153,15,10,22,154,15,10,22,155,15,11,22,156,15,10,22, -142,15,11,247,22,148,6,28,248,22,149,2,193,192,11,27,28,23,195,2,249, -22,128,16,23,197,1,6,11,11,99,111,110,102,105,103,46,114,107,116,100,86, -94,23,195,1,11,27,28,23,194,2,28,248,22,186,15,23,195,2,249,22,140, -6,23,196,1,80,144,43,8,42,42,11,11,28,192,192,21,17,1,0,250,22, -158,2,23,196,1,2,59,247,22,171,8,250,22,158,2,195,2,59,247,22,171, -8,28,248,22,153,7,23,195,2,27,248,22,182,15,23,196,1,28,248,22,135, -16,23,194,2,192,249,22,136,16,23,195,1,27,247,80,144,43,54,42,28,23, -193,2,192,86,94,23,193,1,247,22,152,16,28,248,22,142,8,23,195,2,27, -248,22,183,15,23,196,1,28,248,22,135,16,23,194,2,192,249,22,136,16,23, -195,1,27,247,80,144,43,54,42,28,23,193,2,192,86,94,23,193,1,247,22, -152,16,28,248,22,174,15,23,195,2,28,248,22,135,16,23,195,2,193,249,22, -136,16,23,196,1,27,247,80,144,42,54,42,28,23,193,2,192,86,94,23,193, -1,247,22,152,16,193,27,248,22,151,16,2,55,28,248,22,135,16,23,194,2, -248,22,138,16,23,194,1,28,248,22,134,16,23,194,2,90,144,42,11,89,146, -42,39,11,248,22,131,16,249,22,136,16,250,80,144,49,43,42,248,22,151,16, -2,56,11,11,248,22,151,16,2,57,86,95,23,195,1,23,194,1,248,22,138, -16,249,22,136,16,23,199,1,23,196,1,27,250,80,144,44,43,42,248,22,151, -16,2,56,23,197,1,10,28,23,193,2,248,22,138,16,23,194,1,11,28,248, -22,135,16,23,195,2,193,249,22,136,16,23,196,1,27,249,80,144,44,55,40, -39,80,144,44,8,43,42,28,23,193,2,192,86,94,23,193,1,247,22,152,16, -28,248,22,135,16,23,195,2,248,22,138,16,23,195,1,28,248,22,134,16,23, -195,2,90,144,42,11,89,146,42,39,11,248,22,131,16,249,22,136,16,250,80, -144,48,43,42,248,22,151,16,2,56,11,11,248,22,151,16,2,57,86,95,23, -195,1,23,194,1,248,22,138,16,249,22,136,16,23,200,1,23,196,1,27,250, -80,144,43,43,42,248,22,151,16,2,56,23,198,1,10,28,23,193,2,248,22, -138,16,23,194,1,11,28,248,22,88,23,196,2,9,28,248,22,81,23,196,2, -249,22,80,27,248,22,162,20,23,199,2,28,248,22,153,7,23,194,2,27,248, -22,182,15,23,195,1,28,248,22,135,16,23,194,2,192,249,22,136,16,23,195, -1,27,247,80,144,46,54,42,28,23,193,2,192,86,94,23,193,1,247,22,152, -16,28,248,22,142,8,23,194,2,27,248,22,183,15,23,195,1,28,248,22,135, -16,23,194,2,192,249,22,136,16,23,195,1,27,247,80,144,46,54,42,28,23, -193,2,192,86,94,23,193,1,247,22,152,16,28,248,22,174,15,23,194,2,28, -248,22,135,16,23,194,2,192,249,22,136,16,23,195,1,27,247,80,144,45,54, -42,28,23,193,2,192,86,94,23,193,1,247,22,152,16,192,27,248,22,163,20, -23,199,1,28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,249,22,80, -248,80,144,45,60,42,248,22,162,20,23,197,2,27,248,22,163,20,23,197,1, -28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,249,22,80,248,80,144, -48,60,42,248,22,162,20,23,197,2,249,80,144,49,8,44,42,23,204,1,248, -22,163,20,23,198,1,249,22,94,23,202,2,249,80,144,49,8,44,42,23,204, -1,248,22,163,20,23,198,1,249,22,94,23,199,2,27,248,22,163,20,23,197, +12,250,22,181,11,2,17,2,48,23,196,2,28,248,22,133,16,23,194,2,12, +251,22,183,11,2,17,2,53,2,46,23,197,1,86,96,86,94,28,28,248,22, +174,15,23,197,2,10,28,248,22,153,7,23,197,2,28,248,22,133,16,23,197, +2,10,248,22,134,16,23,197,2,11,12,250,22,181,11,2,17,2,48,23,199, +2,28,248,22,133,16,23,197,2,12,251,22,183,11,2,17,2,53,2,46,23, +200,2,86,94,86,94,28,28,248,22,174,15,23,198,2,10,28,248,22,153,7, +23,198,2,28,248,22,133,16,23,198,2,10,248,22,134,16,23,198,2,11,12, +250,22,181,11,2,17,2,48,23,200,2,28,248,22,133,16,23,198,2,12,251, +22,183,11,2,17,2,53,2,46,23,201,2,249,22,3,32,0,88,148,8,36, +40,49,11,9,222,33,106,23,200,2,28,28,248,22,0,23,195,2,249,22,48, +23,196,2,40,11,12,250,22,181,11,2,17,2,54,23,197,2,252,80,143,44, +52,23,199,1,23,202,1,23,203,1,23,201,1,23,200,1,27,248,22,151,16, +2,55,28,248,22,135,16,23,194,2,248,22,138,16,23,194,1,28,248,22,134, +16,23,194,2,90,144,42,11,89,146,42,39,11,248,22,131,16,249,22,136,16, +250,80,144,49,43,42,248,22,151,16,2,56,11,11,248,22,151,16,2,57,86, +95,23,195,1,23,194,1,248,22,138,16,249,22,136,16,23,199,1,23,196,1, +27,250,80,144,44,43,42,248,22,151,16,2,56,23,197,1,10,28,23,193,2, +248,22,138,16,23,194,1,11,249,80,144,41,55,40,39,80,144,41,8,40,42, +27,248,22,151,16,2,58,28,248,22,135,16,23,194,2,248,22,138,16,23,194, +1,28,248,22,134,16,23,194,2,90,144,42,11,89,146,42,39,11,248,22,131, +16,249,22,136,16,250,80,144,49,43,42,248,22,151,16,2,56,11,11,248,22, +151,16,2,57,86,95,23,195,1,23,194,1,248,22,138,16,249,22,136,16,23, +199,1,23,196,1,27,250,80,144,44,43,42,248,22,151,16,2,56,23,197,1, +10,28,23,193,2,248,22,138,16,23,194,1,11,249,80,144,41,55,40,40,80, +144,41,8,41,42,27,20,13,144,80,144,40,46,40,26,29,80,144,8,30,47, +40,249,22,31,11,80,144,8,32,46,40,22,144,15,10,22,145,15,10,22,146, +15,10,22,149,15,10,22,148,15,11,22,150,15,10,22,147,15,10,22,151,15, +10,22,152,15,10,22,153,15,10,22,154,15,10,22,155,15,11,22,156,15,10, +22,142,15,11,247,22,148,6,28,248,22,149,2,193,192,11,27,28,23,195,2, +249,22,128,16,23,197,1,6,11,11,99,111,110,102,105,103,46,114,107,116,100, +86,94,23,195,1,11,27,28,23,194,2,28,248,22,186,15,23,195,2,249,22, +140,6,23,196,1,80,144,43,8,42,42,11,11,28,192,192,21,17,1,0,250, +22,158,2,23,196,1,2,59,247,22,171,8,250,22,158,2,195,2,59,247,22, +171,8,28,248,22,153,7,23,195,2,27,248,22,182,15,23,196,1,28,248,22, +135,16,23,194,2,192,249,22,136,16,23,195,1,27,247,80,144,43,54,42,28, +23,193,2,192,86,94,23,193,1,247,22,152,16,28,248,22,142,8,23,195,2, +27,248,22,183,15,23,196,1,28,248,22,135,16,23,194,2,192,249,22,136,16, +23,195,1,27,247,80,144,43,54,42,28,23,193,2,192,86,94,23,193,1,247, +22,152,16,28,248,22,174,15,23,195,2,28,248,22,135,16,23,195,2,193,249, +22,136,16,23,196,1,27,247,80,144,42,54,42,28,23,193,2,192,86,94,23, +193,1,247,22,152,16,193,27,248,22,151,16,2,55,28,248,22,135,16,23,194, +2,248,22,138,16,23,194,1,28,248,22,134,16,23,194,2,90,144,42,11,89, +146,42,39,11,248,22,131,16,249,22,136,16,250,80,144,49,43,42,248,22,151, +16,2,56,11,11,248,22,151,16,2,57,86,95,23,195,1,23,194,1,248,22, +138,16,249,22,136,16,23,199,1,23,196,1,27,250,80,144,44,43,42,248,22, +151,16,2,56,23,197,1,10,28,23,193,2,248,22,138,16,23,194,1,11,28, +248,22,135,16,23,195,2,193,249,22,136,16,23,196,1,27,249,80,144,44,55, +40,39,80,144,44,8,43,42,28,23,193,2,192,86,94,23,193,1,247,22,152, +16,28,248,22,135,16,23,195,2,248,22,138,16,23,195,1,28,248,22,134,16, +23,195,2,90,144,42,11,89,146,42,39,11,248,22,131,16,249,22,136,16,250, +80,144,48,43,42,248,22,151,16,2,56,11,11,248,22,151,16,2,57,86,95, +23,195,1,23,194,1,248,22,138,16,249,22,136,16,23,200,1,23,196,1,27, +250,80,144,43,43,42,248,22,151,16,2,56,23,198,1,10,28,23,193,2,248, +22,138,16,23,194,1,11,28,248,22,88,23,196,2,9,28,248,22,81,23,196, +2,249,22,80,27,248,22,163,20,23,199,2,28,248,22,153,7,23,194,2,27, +248,22,182,15,23,195,1,28,248,22,135,16,23,194,2,192,249,22,136,16,23, +195,1,27,247,80,144,46,54,42,28,23,193,2,192,86,94,23,193,1,247,22, +152,16,28,248,22,142,8,23,194,2,27,248,22,183,15,23,195,1,28,248,22, +135,16,23,194,2,192,249,22,136,16,23,195,1,27,247,80,144,46,54,42,28, +23,193,2,192,86,94,23,193,1,247,22,152,16,28,248,22,174,15,23,194,2, +28,248,22,135,16,23,194,2,192,249,22,136,16,23,195,1,27,247,80,144,45, +54,42,28,23,193,2,192,86,94,23,193,1,247,22,152,16,192,27,248,22,164, +20,23,199,1,28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,249,22, +80,248,80,144,45,60,42,248,22,163,20,23,197,2,27,248,22,164,20,23,197, 1,28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,249,22,80,248,80, -144,48,60,42,248,22,162,20,23,197,2,249,80,144,49,8,44,42,23,204,1, -248,22,163,20,23,198,1,249,22,94,23,202,2,249,80,144,49,8,44,42,23, -204,1,248,22,163,20,23,198,1,249,22,94,23,196,2,27,248,22,163,20,23, -199,1,28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,249,22,80,248, -80,144,45,60,42,248,22,162,20,23,197,2,27,248,22,163,20,23,197,1,28, -248,22,88,23,194,2,9,28,248,22,81,23,194,2,249,22,80,248,80,144,48, -60,42,248,22,162,20,23,197,2,249,80,144,49,8,44,42,23,204,1,248,22, -163,20,23,198,1,249,22,94,23,202,2,249,80,144,49,8,44,42,23,204,1, -248,22,163,20,23,198,1,249,22,94,23,199,2,27,248,22,163,20,23,197,1, +144,48,60,42,248,22,163,20,23,197,2,249,80,144,49,8,44,42,23,204,1, +248,22,164,20,23,198,1,249,22,94,23,202,2,249,80,144,49,8,44,42,23, +204,1,248,22,164,20,23,198,1,249,22,94,23,199,2,27,248,22,164,20,23, +197,1,28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,249,22,80,248, +80,144,48,60,42,248,22,163,20,23,197,2,249,80,144,49,8,44,42,23,204, +1,248,22,164,20,23,198,1,249,22,94,23,202,2,249,80,144,49,8,44,42, +23,204,1,248,22,164,20,23,198,1,249,22,94,23,196,2,27,248,22,164,20, +23,199,1,28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,249,22,80, +248,80,144,45,60,42,248,22,163,20,23,197,2,27,248,22,164,20,23,197,1, 28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,249,22,80,248,80,144, -48,60,42,248,22,162,20,23,197,2,249,80,144,49,8,44,42,23,204,1,248, -22,163,20,23,198,1,249,22,94,23,202,2,249,80,144,49,8,44,42,23,204, -1,248,22,163,20,23,198,1,27,250,22,158,2,23,198,1,23,199,1,11,28, -192,249,80,144,42,8,44,42,198,194,196,27,248,22,151,16,2,58,28,248,22, -135,16,23,194,2,248,22,138,16,23,194,1,28,248,22,134,16,23,194,2,90, -144,42,11,89,146,42,39,11,248,22,131,16,249,22,136,16,250,80,144,49,43, -42,248,22,151,16,2,56,11,11,248,22,151,16,2,57,86,95,23,195,1,23, -194,1,248,22,138,16,249,22,136,16,23,199,1,23,196,1,27,250,80,144,44, -43,42,248,22,151,16,2,56,23,197,1,10,28,23,193,2,248,22,138,16,23, -194,1,11,27,248,80,144,41,58,42,249,80,144,43,55,40,40,80,144,43,8, -45,42,27,27,250,22,158,2,23,198,2,72,108,105,110,107,115,45,102,105,108, -101,11,27,28,23,194,2,23,194,1,86,94,23,194,1,249,22,128,16,27,250, -22,158,2,23,202,2,71,115,104,97,114,101,45,100,105,114,11,28,192,192,249, -22,128,16,64,117,112,6,5,5,115,104,97,114,101,2,60,28,248,22,153,7, -23,194,2,27,248,22,182,15,23,195,1,28,248,22,135,16,23,194,2,192,249, -22,136,16,23,195,1,27,247,80,144,47,54,42,28,23,193,2,192,86,94,23, -193,1,247,22,152,16,28,248,22,142,8,23,194,2,27,248,22,183,15,23,195, -1,28,248,22,135,16,23,194,2,192,249,22,136,16,23,195,1,27,247,80,144, -47,54,42,28,23,193,2,192,86,94,23,193,1,247,22,152,16,28,248,22,174, -15,23,194,2,28,248,22,135,16,23,194,2,192,249,22,136,16,23,195,1,27, -247,80,144,46,54,42,28,23,193,2,192,86,94,23,193,1,247,22,152,16,192, -250,22,94,248,22,90,11,28,247,22,159,16,28,247,22,160,16,248,22,90,250, -22,128,16,248,22,151,16,2,61,250,22,158,2,23,204,2,2,59,247,22,171, -8,2,60,9,9,28,247,22,160,16,250,80,144,47,8,23,42,23,200,1,1, -18,108,105,110,107,115,45,115,101,97,114,99,104,45,102,105,108,101,115,248,22, -90,23,200,1,9,248,22,173,13,23,194,1,249,22,14,80,144,41,8,26,41, -28,248,22,129,13,23,197,2,86,94,23,196,1,32,0,88,148,8,36,39,44, -11,9,222,11,20,20,94,88,148,8,36,39,46,11,9,223,3,33,124,23,196, -1,32,126,88,148,39,40,59,11,2,50,222,33,127,90,144,42,11,89,146,42, -39,11,248,22,131,16,23,197,1,86,95,23,195,1,23,194,1,28,248,22,174, -15,23,194,2,28,248,22,187,15,23,194,2,249,22,145,6,23,195,1,32,0, -88,148,8,36,39,44,11,9,222,11,90,144,42,11,89,146,42,39,11,248,22, -131,16,23,197,1,86,95,23,195,1,23,194,1,28,248,22,174,15,23,194,2, -28,248,22,187,15,23,194,2,249,22,145,6,23,195,1,32,0,88,148,8,36, -39,44,11,9,222,11,90,144,42,11,89,146,42,39,11,248,22,131,16,23,197, -1,86,95,23,195,1,23,194,1,28,248,22,174,15,23,194,2,28,248,22,187, -15,23,194,2,249,22,145,6,23,195,1,32,0,88,148,8,36,39,44,11,9, -222,11,90,144,42,11,89,146,42,39,11,248,22,131,16,23,197,1,86,95,23, -195,1,23,194,1,28,248,22,174,15,23,194,2,28,248,22,187,15,23,194,2, -249,22,145,6,23,195,1,32,0,88,148,8,36,39,44,11,9,222,11,248,2, -126,23,194,1,11,11,11,11,32,128,2,88,148,8,36,40,58,11,2,50,222, -33,129,2,27,249,22,163,6,8,128,128,23,196,2,28,248,22,148,7,23,194, -2,9,249,22,80,23,195,1,27,249,22,163,6,8,128,128,23,199,2,28,248, -22,148,7,23,194,2,9,249,22,80,23,195,1,27,249,22,163,6,8,128,128, -23,202,2,28,248,22,148,7,23,194,2,9,249,22,80,23,195,1,27,249,22, -163,6,8,128,128,23,205,2,28,248,22,148,7,23,194,2,9,249,22,80,23, -195,1,248,2,128,2,23,206,1,27,249,22,163,6,8,128,128,23,196,2,28, -248,22,142,8,23,194,2,28,249,22,132,4,248,22,147,8,23,196,2,8,128, -128,249,22,1,22,154,8,249,22,80,23,197,1,27,249,22,163,6,8,128,128, -23,201,2,28,248,22,148,7,23,194,2,9,249,22,80,23,195,1,27,249,22, -163,6,8,128,128,23,204,2,28,248,22,148,7,23,194,2,9,249,22,80,23, -195,1,27,249,22,163,6,8,128,128,23,207,2,28,248,22,148,7,23,194,2, -9,249,22,80,23,195,1,27,249,22,163,6,8,128,128,23,210,2,28,248,22, -148,7,23,194,2,9,249,22,80,23,195,1,248,2,128,2,23,211,1,192,192, -248,22,133,6,23,194,1,20,13,144,80,144,40,8,28,40,80,144,40,8,46, -42,27,28,249,22,189,8,248,22,180,8,2,62,41,90,144,42,11,89,146,42, -39,11,248,22,131,16,23,198,2,86,95,23,195,1,23,194,1,28,248,22,174, -15,23,194,2,28,248,22,187,15,23,194,2,249,22,145,6,23,195,1,32,0, -88,148,8,36,39,44,11,9,222,11,90,144,42,11,89,146,42,39,11,248,22, -131,16,23,197,1,86,95,23,195,1,23,194,1,28,248,22,174,15,23,194,2, -28,248,22,187,15,23,194,2,249,22,145,6,23,195,1,32,0,88,148,8,36, -39,44,11,9,222,11,90,144,42,11,89,146,42,39,11,248,22,131,16,23,197, -1,86,95,23,195,1,23,194,1,28,248,22,174,15,23,194,2,28,248,22,187, -15,23,194,2,249,22,145,6,23,195,1,32,0,88,148,8,36,39,44,11,9, -222,11,90,144,42,11,89,146,42,39,11,248,22,131,16,23,197,1,86,95,23, -195,1,23,194,1,28,248,22,174,15,23,194,2,28,248,22,187,15,23,194,2, -249,22,145,6,23,195,1,32,0,88,148,8,36,39,44,11,9,222,11,248,2, -126,23,194,1,11,11,11,11,11,28,248,22,186,15,23,195,2,27,28,249,22, -189,8,248,22,180,8,2,62,41,249,22,145,6,23,197,2,32,0,88,148,8, -36,39,44,11,9,222,11,11,86,94,28,23,194,2,248,22,147,6,23,195,1, -86,94,23,194,1,12,249,22,80,27,248,22,188,5,23,199,1,250,22,44,22, -35,88,148,39,39,8,24,11,9,223,3,33,130,2,20,20,94,88,148,8,36, -39,46,11,9,223,3,33,131,2,23,196,1,194,249,22,80,11,194,28,28,23, -195,2,28,248,22,82,23,196,2,248,22,167,9,249,22,175,14,39,248,22,163, -20,23,199,2,11,11,194,86,94,23,195,1,249,22,12,20,20,94,88,148,8, -32,39,61,16,4,39,8,128,80,8,240,0,64,0,0,39,9,224,2,3,33, -132,2,23,196,1,80,144,41,8,26,41,27,248,22,167,9,194,28,192,192,248, -22,167,9,248,22,81,195,86,95,28,248,22,150,12,23,198,2,27,247,22,142, -12,28,249,22,132,12,23,195,2,2,63,251,22,138,12,23,197,1,2,63,250, -22,137,8,6,42,42,101,114,114,111,114,32,114,101,97,100,105,110,103,32,99, -111,108,108,101,99,116,105,111,110,32,108,105,110,107,115,32,102,105,108,101,32, -126,115,58,32,126,97,23,203,2,248,22,146,12,23,206,2,247,22,27,12,12, -28,23,193,2,250,22,156,2,80,144,45,8,25,41,23,198,1,249,22,80,23, -198,1,21,17,0,0,86,95,23,195,1,23,193,1,12,28,248,22,150,12,23, -198,2,86,94,23,197,1,248,23,195,1,247,22,138,2,196,88,148,39,40,58, -8,240,0,0,0,2,9,226,0,2,1,3,33,135,2,20,20,94,248,22,148, -6,23,194,2,28,248,22,148,7,248,22,148,6,23,195,1,12,248,22,177,11, -6,30,30,101,120,112,101,99,116,101,100,32,97,32,115,105,110,103,108,101,32, -83,45,101,120,112,114,101,115,115,105,111,110,248,22,133,6,23,194,1,28,248, -22,89,193,28,28,249,22,128,4,41,248,22,93,195,10,249,22,128,4,42,248, -22,93,195,28,28,248,22,153,7,248,22,81,194,10,28,249,22,169,9,2,64, -248,22,162,20,195,10,249,22,169,9,2,65,248,22,162,20,195,28,27,248,22, -102,194,28,248,22,174,15,193,10,28,248,22,153,7,193,28,248,22,133,16,193, -10,248,22,134,16,193,11,27,248,22,88,248,22,104,195,28,192,192,248,22,180, -16,248,22,111,195,11,11,11,11,28,248,22,187,15,249,22,128,16,23,196,2, -23,198,2,27,248,22,68,248,22,178,15,23,198,1,250,22,156,2,23,198,2, -23,196,2,249,22,80,23,199,1,250,22,158,2,23,203,1,23,201,1,9,12, -250,22,156,2,23,197,1,23,198,1,249,22,80,23,198,1,23,201,1,28,28, -248,22,88,248,22,104,23,197,2,10,249,22,171,16,248,22,111,23,198,2,247, -22,171,8,27,248,22,138,16,249,22,136,16,248,22,102,23,200,2,23,198,1, -28,249,22,169,9,248,22,162,20,23,199,2,2,65,86,94,23,196,1,249,22, -3,20,20,94,88,148,8,36,40,56,11,9,224,3,2,33,140,2,23,196,1, -248,22,141,16,23,196,1,28,249,22,169,9,248,22,162,20,23,199,2,2,64, -86,94,23,196,1,86,94,28,250,22,158,2,23,197,2,11,11,12,250,22,156, -2,23,197,2,11,9,249,22,164,2,23,196,2,20,20,95,88,148,8,36,41, -53,11,9,224,3,2,33,141,2,23,195,1,23,196,1,27,248,22,68,248,22, -162,20,23,199,1,250,22,156,2,23,198,2,23,196,2,249,22,80,248,22,129, -2,23,200,1,250,22,158,2,23,203,1,23,201,1,9,12,250,22,156,2,23, -196,1,23,197,1,248,22,95,23,199,1,27,28,28,23,194,2,248,22,167,9, -248,22,81,23,196,2,10,9,27,249,22,188,5,23,198,2,68,98,105,110,97, -114,121,250,22,44,22,35,88,148,8,36,39,47,11,9,223,3,33,137,2,20, -20,94,88,148,8,36,39,46,11,9,223,3,33,138,2,23,196,1,86,94,28, -28,248,22,89,23,194,2,249,22,4,32,0,88,148,8,36,40,48,11,9,222, -33,139,2,23,195,2,11,12,248,22,177,11,6,18,18,105,108,108,45,102,111, -114,109,101,100,32,99,111,110,116,101,110,116,27,247,22,138,2,27,90,144,42, -11,89,146,42,39,11,248,22,131,16,23,201,2,192,86,96,249,22,3,20,20, -94,88,148,8,36,40,57,11,9,224,2,3,33,142,2,23,195,1,23,197,1, -249,22,164,2,195,88,148,8,36,41,51,11,9,223,3,33,143,2,250,22,156, -2,80,144,47,8,25,41,23,200,1,249,22,80,23,201,1,198,193,20,13,144, -80,144,40,8,28,40,250,80,144,43,8,47,42,23,198,2,23,196,2,11,27, -250,22,158,2,80,144,44,8,25,41,23,197,2,21,143,11,17,0,0,27,248, -22,81,23,195,2,27,249,80,144,45,8,27,42,23,198,2,23,196,2,28,249, -22,171,9,23,195,2,23,196,1,248,22,163,20,195,86,94,23,195,1,20,13, -144,80,144,43,8,28,40,250,80,144,46,8,47,42,23,201,1,23,199,2,23, -196,2,27,20,20,95,88,148,8,36,39,55,8,240,0,0,0,2,9,225,5, -4,1,33,144,2,23,194,1,23,197,1,28,249,22,48,23,195,2,39,20,13, -144,80,144,44,46,40,26,29,80,144,8,34,47,40,249,22,31,11,80,144,8, -36,46,40,22,144,15,10,22,145,15,10,22,146,15,10,22,149,15,10,22,148, -15,11,22,150,15,10,22,147,15,10,22,151,15,10,22,152,15,10,22,153,15, -10,22,154,15,10,22,155,15,11,22,156,15,10,22,142,15,11,247,23,193,1, -250,22,181,11,2,9,2,52,23,196,1,248,22,8,20,20,94,88,148,39,40, -8,43,16,4,8,128,6,8,128,104,8,240,0,128,0,0,39,9,224,1,2, -33,145,2,23,195,1,0,7,35,114,120,34,47,43,34,28,248,22,153,7,23, -195,2,27,249,22,169,16,2,147,2,23,197,2,28,23,193,2,28,249,22,128, -4,248,22,101,23,196,2,248,22,182,3,248,22,156,7,23,199,2,249,22,7, -250,22,175,7,23,200,1,39,248,22,101,23,199,1,23,198,1,249,22,7,250, -22,175,7,23,200,2,39,248,22,101,23,199,2,249,22,80,249,22,175,7,23, -201,1,248,22,103,23,200,1,23,200,1,249,22,7,23,197,1,23,198,1,90, -144,42,11,89,146,42,39,11,248,22,131,16,23,198,1,86,94,23,195,1,28, -249,22,169,9,23,195,2,2,49,86,94,23,193,1,249,22,7,23,196,1,23, -200,1,27,249,22,80,23,197,1,23,201,1,28,248,22,153,7,23,195,2,27, -249,22,169,16,2,147,2,23,197,2,28,23,193,2,28,249,22,128,4,248,22, -101,23,196,2,248,22,182,3,248,22,156,7,23,199,2,249,22,7,250,22,175, -7,23,200,1,39,248,22,101,23,199,1,23,196,1,249,22,7,250,22,175,7, -23,200,2,39,248,22,101,23,199,2,249,22,80,249,22,175,7,23,201,1,248, -22,103,23,200,1,23,198,1,249,22,7,23,197,1,23,196,1,90,144,42,11, -89,146,42,39,11,248,22,131,16,23,198,1,86,94,23,195,1,28,249,22,169, -9,23,195,2,2,49,86,94,23,193,1,249,22,7,23,196,1,23,198,1,249, -80,144,48,8,31,42,194,249,22,80,197,199,28,248,22,88,23,196,2,9,28, -248,22,81,23,196,2,28,248,22,149,2,248,22,162,20,23,197,2,250,22,94, -249,22,2,22,129,2,250,22,158,2,248,22,162,20,23,204,2,23,202,2,9, -250,22,158,2,248,22,162,20,23,202,2,11,9,27,248,22,163,20,23,200,1, -28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,28,248,22,149,2,248, -22,162,20,23,195,2,250,22,94,249,22,2,22,129,2,250,22,158,2,248,22, -162,20,23,202,2,23,206,2,9,250,22,158,2,248,22,162,20,23,200,2,11, -9,249,80,144,48,8,48,42,23,203,1,248,22,163,20,23,199,1,27,248,80, -144,45,8,30,42,248,22,162,20,23,196,2,250,22,94,250,22,158,2,23,199, -2,23,205,2,9,250,22,158,2,23,199,1,11,9,249,80,144,49,8,48,42, -23,204,1,248,22,163,20,23,200,1,249,22,94,247,22,155,16,249,80,144,47, -8,48,42,23,202,1,248,22,163,20,23,198,1,27,248,80,144,41,8,30,42, -248,22,162,20,23,198,2,250,22,94,250,22,158,2,23,199,2,23,201,2,9, -250,22,158,2,23,199,1,11,9,27,248,22,163,20,23,201,1,28,248,22,88, -23,194,2,9,28,248,22,81,23,194,2,28,248,22,149,2,248,22,162,20,23, -195,2,250,22,94,249,22,2,22,129,2,250,22,158,2,248,22,162,20,23,202, -2,23,207,2,9,250,22,158,2,248,22,162,20,23,200,2,11,9,249,80,144, -49,8,48,42,23,204,1,248,22,163,20,23,199,1,27,248,80,144,46,8,30, -42,248,22,162,20,23,196,2,250,22,94,250,22,158,2,23,199,2,23,206,2, -9,250,22,158,2,23,199,1,11,9,249,80,144,50,8,48,42,23,205,1,248, -22,163,20,23,200,1,249,22,94,247,22,155,16,249,80,144,48,8,48,42,23, -203,1,248,22,163,20,23,198,1,249,22,94,247,22,155,16,27,248,22,163,20, -23,199,1,28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,28,248,22, -149,2,248,22,162,20,23,195,2,250,22,94,249,22,2,22,129,2,250,22,158, -2,248,22,162,20,23,202,2,23,205,2,9,250,22,158,2,248,22,162,20,23, -200,2,11,9,249,80,144,47,8,48,42,23,202,1,248,22,163,20,23,199,1, -27,248,80,144,44,8,30,42,248,22,162,20,23,196,2,250,22,94,250,22,158, -2,23,199,2,23,204,2,9,250,22,158,2,23,199,1,11,9,249,80,144,48, -8,48,42,23,203,1,248,22,163,20,23,200,1,249,22,94,247,22,155,16,249, -80,144,46,8,48,42,23,201,1,248,22,163,20,23,198,1,32,150,2,88,148, -8,36,40,50,11,2,50,222,33,151,2,28,248,22,88,248,22,82,23,195,2, -248,22,90,27,248,22,162,20,195,28,248,22,174,15,193,248,22,178,15,193,192, -250,22,91,27,248,22,162,20,23,198,2,28,248,22,174,15,193,248,22,178,15, -193,192,2,67,248,2,150,2,248,22,163,20,23,198,1,250,22,137,8,6,7, -7,10,32,126,97,32,126,97,6,1,1,32,23,196,1,249,22,137,8,6,6, -6,10,32,32,32,126,97,248,22,132,2,23,196,1,32,154,2,88,148,39,41, -51,11,68,102,105,108,116,101,114,222,33,155,2,28,248,22,88,23,195,2,9, -28,248,23,194,2,248,22,81,23,196,2,249,22,80,248,22,162,20,23,197,2, -249,2,154,2,23,197,1,248,22,163,20,23,199,1,249,2,154,2,23,195,1, -248,22,163,20,23,197,1,28,248,22,88,23,201,2,86,95,23,200,1,23,199, -1,28,23,201,2,28,197,249,22,128,16,202,199,200,27,28,248,22,88,23,198, -2,2,66,249,22,1,22,176,7,248,2,150,2,23,200,2,248,23,199,1,251, -22,137,8,6,70,70,99,111,108,108,101,99,116,105,111,110,32,110,111,116,32, -102,111,117,110,100,10,32,32,99,111,108,108,101,99,116,105,111,110,58,32,126, -115,10,32,32,105,110,32,99,111,108,108,101,99,116,105,111,110,32,100,105,114, -101,99,116,111,114,105,101,115,58,126,97,126,97,28,248,22,88,23,203,1,28, -248,22,174,15,23,202,2,248,22,178,15,23,202,1,23,201,1,250,22,176,7, -28,248,22,174,15,23,205,2,248,22,178,15,23,205,1,23,204,1,2,67,23, -201,2,249,22,1,22,176,7,249,22,2,32,0,88,148,8,36,40,48,11,9, -222,33,152,2,27,248,22,93,23,206,2,27,248,22,93,247,22,155,16,28,249, -22,129,4,249,22,184,3,23,198,2,23,197,2,44,23,206,2,249,22,94,247, -22,155,16,248,22,90,249,22,137,8,6,50,50,46,46,46,32,91,126,97,32, -97,100,100,105,116,105,111,110,97,108,32,108,105,110,107,101,100,32,97,110,100, -32,112,97,99,107,97,103,101,32,100,105,114,101,99,116,111,114,105,101,115,93, -249,22,184,3,23,201,1,23,200,1,28,249,22,5,22,131,2,23,202,2,250, -22,137,8,6,49,49,10,32,32,32,115,117,98,45,99,111,108,108,101,99,116, -105,111,110,58,32,126,115,10,32,32,105,110,32,112,97,114,101,110,116,32,100, -105,114,101,99,116,111,114,105,101,115,58,126,97,23,201,1,249,22,1,22,176, -7,249,22,2,32,0,88,148,8,36,40,48,11,9,222,33,153,2,249,2,154, -2,22,131,2,23,209,1,86,95,23,200,1,23,198,1,2,66,27,248,22,81, -23,202,2,27,28,248,22,174,15,23,195,2,249,22,128,16,23,196,1,23,199, -2,248,22,132,2,23,195,1,28,28,248,22,174,15,248,22,162,20,23,204,2, -248,22,187,15,23,194,2,10,27,250,22,1,22,128,16,23,197,1,23,202,2, -28,28,248,22,88,23,200,2,10,248,22,187,15,23,194,2,28,23,201,2,28, -28,250,80,144,45,8,32,42,195,203,204,10,27,28,248,22,174,15,202,248,22, -178,15,202,201,19,248,22,156,7,23,195,2,27,28,249,22,132,4,23,196,4, -43,28,249,22,159,7,6,4,4,46,114,107,116,249,22,175,7,23,199,2,249, -22,184,3,23,200,4,43,249,22,176,7,250,22,175,7,23,200,1,39,249,22, -184,3,23,201,4,43,6,3,3,46,115,115,86,94,23,195,1,11,11,28,23, -193,2,250,80,144,48,8,32,42,198,23,196,1,23,15,11,2,28,200,249,22, -128,16,194,202,192,26,8,80,144,50,8,49,42,204,205,206,23,15,23,16,23, -17,248,22,163,20,23,19,28,23,19,23,19,200,192,26,8,80,144,50,8,49, -42,204,205,206,23,15,23,16,23,17,248,22,163,20,23,19,23,19,26,8,80, -144,49,8,49,42,203,204,205,206,23,15,23,16,248,22,163,20,23,18,23,18, -90,144,41,11,89,146,41,39,11,249,80,144,43,8,31,42,23,199,1,23,200, -1,27,248,22,68,28,248,22,174,15,195,248,22,178,15,195,194,27,27,247,22, -156,16,28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,28,248,22,149, -2,248,22,162,20,23,195,2,250,22,94,249,22,2,22,129,2,250,22,158,2, -248,22,162,20,23,202,2,23,203,2,9,250,22,158,2,248,22,162,20,23,200, -2,11,9,249,80,144,49,8,48,42,23,200,1,248,22,163,20,23,199,1,27, -248,80,144,46,8,30,42,248,22,162,20,23,196,2,250,22,94,250,22,158,2, -23,199,2,23,202,2,9,250,22,158,2,23,199,1,11,9,249,80,144,50,8, -48,42,23,201,1,248,22,163,20,23,200,1,249,22,94,247,22,155,16,249,80, -144,48,8,48,42,23,199,1,248,22,163,20,23,198,1,26,8,80,144,51,8, -49,42,200,202,203,205,23,16,23,17,200,11,32,158,2,88,148,8,36,42,59, -11,2,50,222,33,159,2,28,248,22,133,4,23,196,2,86,94,23,195,1,19, -248,22,147,8,23,195,2,19,248,22,147,8,23,196,2,249,22,184,15,27,251, -22,154,8,250,22,153,8,23,205,2,39,23,204,4,2,51,249,22,153,8,23, -204,1,23,202,4,2,68,28,248,22,133,4,248,22,147,8,23,195,2,86,94, -23,193,1,251,22,183,11,2,37,2,69,2,70,202,192,28,248,22,175,15,198, -248,22,176,15,198,247,22,177,15,2,2,27,248,22,182,3,23,197,1,28,249, -22,169,9,8,46,249,22,148,8,23,198,2,23,197,2,27,248,22,181,3,23, -195,2,249,22,184,15,27,251,22,154,8,250,22,153,8,23,205,2,39,23,204, -1,2,71,249,22,153,8,23,204,1,23,202,1,2,68,28,248,22,133,4,248, -22,147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2,70, -202,192,28,248,22,175,15,198,248,22,176,15,198,247,22,177,15,250,2,158,2, -196,197,195,248,22,186,15,27,250,22,128,16,23,200,1,23,202,1,23,199,1, -28,249,22,169,9,23,197,2,66,115,97,109,101,192,28,248,22,133,16,23,196, -2,249,22,128,16,194,196,249,80,144,46,42,42,23,195,1,23,197,1,249,22, -5,20,20,96,88,148,39,40,54,47,9,226,5,4,2,6,33,160,2,23,199, -1,23,195,1,23,197,1,23,196,1,27,248,22,186,15,249,22,128,16,23,198, -2,23,199,2,28,23,193,2,192,86,94,23,193,1,28,23,197,1,27,90,144, -41,11,89,146,41,39,11,250,80,144,46,8,34,42,23,202,2,2,68,2,37, -27,248,22,180,15,23,196,1,27,250,2,158,2,23,197,2,23,204,1,248,22, -147,8,23,198,1,28,248,22,175,15,195,249,22,128,16,196,194,192,27,247,22, -157,16,249,22,5,20,20,96,88,148,39,40,51,47,9,226,5,6,2,3,33, -161,2,23,196,1,23,195,1,23,199,1,247,22,158,16,11,86,95,28,28,248, -22,175,15,23,194,2,10,28,248,22,174,15,23,194,2,10,28,248,22,153,7, -23,194,2,28,248,22,133,16,23,194,2,10,248,22,134,16,23,194,2,11,12, -252,22,181,11,23,200,2,2,42,39,23,198,2,23,199,2,28,28,248,22,153, -7,23,195,2,10,248,22,142,8,23,195,2,86,94,23,194,1,12,252,22,181, -11,23,200,2,2,72,40,23,198,2,23,199,1,90,144,42,11,89,146,42,39, -11,248,22,131,16,23,197,2,86,94,23,195,1,86,94,28,23,193,2,86,95, -23,198,1,23,196,1,12,250,22,184,11,23,201,1,2,73,23,199,1,249,22, -7,23,195,1,23,196,1,32,164,2,88,148,8,36,46,61,11,2,74,222,33, -165,2,249,22,184,15,27,251,22,154,8,250,22,153,8,23,203,2,39,23,207, -1,23,205,1,249,23,203,1,23,202,1,23,208,1,28,248,22,153,7,23,204, -2,249,22,168,8,23,205,1,8,63,23,203,1,28,248,22,133,4,248,22,147, -8,23,195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2,70,201,192, -28,248,22,175,15,197,248,22,176,15,197,247,22,177,15,32,166,2,88,148,8, -36,45,8,24,11,2,50,222,33,167,2,28,248,22,133,4,23,199,2,86,95, -23,198,1,23,194,1,19,248,22,147,8,23,195,2,19,248,22,147,8,23,196, -2,249,22,184,15,27,251,22,154,8,250,22,153,8,23,205,2,39,23,204,4, -2,51,249,23,206,1,23,204,1,23,202,4,28,248,22,153,7,23,207,2,249, -22,168,8,23,208,1,8,63,23,206,1,28,248,22,133,4,248,22,147,8,23, -195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2,70,204,192,28,248, -22,175,15,200,248,22,176,15,200,247,22,177,15,2,2,27,248,22,182,3,23, -200,1,28,249,22,169,9,8,46,249,22,148,8,23,198,2,23,197,2,27,248, -22,181,3,23,195,2,249,22,184,15,27,251,22,154,8,250,22,153,8,23,205, -2,39,23,204,1,23,203,1,249,23,206,1,23,204,1,23,202,1,28,248,22, -153,7,23,207,2,249,22,168,8,23,208,1,8,63,23,206,1,28,248,22,133, -4,248,22,147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37,2,69, -2,70,204,192,28,248,22,175,15,200,248,22,176,15,200,247,22,177,15,28,248, -22,133,4,23,194,2,86,95,23,195,1,23,193,1,19,248,22,147,8,23,196, -2,19,248,22,147,8,23,197,2,249,22,184,15,27,251,22,154,8,250,22,153, -8,23,206,2,39,23,204,4,2,51,249,23,207,1,23,205,1,23,202,4,28, -248,22,153,7,23,208,2,249,22,168,8,23,209,1,8,63,23,207,1,28,248, -22,133,4,248,22,147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37, -2,69,2,70,205,192,28,248,22,175,15,201,248,22,176,15,201,247,22,177,15, -2,2,27,248,22,182,3,23,195,1,28,249,22,169,9,8,46,249,22,148,8, -23,199,2,23,197,2,27,248,22,181,3,23,195,2,249,22,184,15,27,251,22, -154,8,250,22,153,8,23,206,2,39,23,204,1,23,204,1,249,23,207,1,23, -205,1,23,202,1,28,248,22,153,7,23,208,2,249,22,168,8,23,209,1,8, -63,23,207,1,28,248,22,133,4,248,22,147,8,23,195,2,86,94,23,193,1, -251,22,183,11,2,37,2,69,2,70,205,192,28,248,22,175,15,201,248,22,176, -15,201,247,22,177,15,28,248,22,133,4,193,254,2,164,2,201,203,204,205,248, -22,147,8,202,2,51,248,22,147,8,202,27,248,22,182,3,194,28,249,22,169, -9,8,46,249,22,148,8,199,196,254,2,164,2,202,204,205,206,199,203,248,22, -181,3,200,253,2,166,2,201,202,203,204,205,198,90,144,41,11,89,146,41,39, -11,86,95,28,28,248,22,175,15,23,199,2,10,28,248,22,174,15,23,199,2, -10,28,248,22,153,7,23,199,2,28,248,22,133,16,23,199,2,10,248,22,134, -16,23,199,2,11,12,252,22,181,11,23,200,2,2,42,39,23,203,2,23,204, -2,28,28,248,22,153,7,23,200,2,10,248,22,142,8,23,200,2,12,252,22, -181,11,23,200,2,2,72,40,23,203,2,23,204,2,90,144,42,11,89,146,42, -39,11,248,22,131,16,23,202,2,86,94,23,195,1,86,94,28,192,12,250,22, -184,11,23,201,1,2,73,23,204,2,249,22,7,194,195,27,248,22,180,15,23, -196,1,27,19,248,22,147,8,23,196,2,28,248,22,133,4,23,194,4,86,94, -23,199,1,19,248,22,147,8,23,197,2,19,248,22,147,8,23,198,2,249,22, -184,15,27,251,22,154,8,250,22,153,8,23,207,2,39,23,204,4,2,51,249, -23,211,1,23,206,1,23,202,4,28,248,22,153,7,23,212,2,249,22,168,8, -23,213,1,8,63,23,211,1,28,248,22,133,4,248,22,147,8,23,195,2,86, -94,23,193,1,251,22,183,11,2,37,2,69,2,70,23,17,192,28,248,22,175, -15,205,248,22,176,15,205,247,22,177,15,2,2,27,248,22,182,3,23,195,4, -28,249,22,169,9,8,46,249,22,148,8,23,200,2,23,197,2,27,248,22,181, -3,23,195,2,249,22,184,15,27,251,22,154,8,250,22,153,8,23,207,2,39, -23,204,1,23,208,1,249,23,211,1,23,206,1,23,202,1,28,248,22,153,7, -23,212,2,249,22,168,8,23,213,1,8,63,23,211,1,28,248,22,133,4,248, -22,147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2,70, -23,17,192,28,248,22,175,15,205,248,22,176,15,205,247,22,177,15,28,248,22, -133,4,23,194,2,86,95,23,200,1,23,193,1,254,2,164,2,23,203,2,23, -208,1,23,209,1,23,210,1,248,22,147,8,23,204,2,2,51,248,22,147,8, -23,204,1,27,248,22,182,3,23,195,1,28,249,22,169,9,8,46,249,22,148, -8,23,201,2,23,197,2,254,2,164,2,23,204,1,23,209,1,23,210,1,23, -211,1,23,200,2,23,208,1,248,22,181,3,23,201,1,253,2,166,2,23,203, -1,23,207,1,23,208,1,23,209,1,23,210,1,23,199,1,2,28,248,22,175, -15,195,249,22,128,16,196,194,192,32,169,2,88,148,8,36,43,61,11,2,50, -222,33,170,2,28,248,22,133,4,23,197,2,86,94,23,196,1,19,248,22,147, -8,23,195,2,35,248,22,147,8,23,196,2,249,22,184,15,27,251,22,154,8, -250,22,153,8,23,205,1,39,23,204,4,2,51,2,51,28,248,22,153,7,23, -205,2,249,22,168,8,23,206,1,8,63,23,204,1,28,248,22,133,4,248,22, -147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2,70,202, -192,28,248,22,175,15,198,248,22,176,15,198,247,22,177,15,2,27,248,22,182, -3,23,198,1,28,249,22,169,9,8,46,249,22,148,8,23,198,2,23,197,2, -35,248,22,181,3,23,195,2,249,22,184,15,27,251,22,154,8,250,22,153,8, -23,205,1,39,23,204,1,2,51,2,51,28,248,22,153,7,23,205,2,249,22, -168,8,23,206,1,8,63,23,204,1,28,248,22,133,4,248,22,147,8,23,195, -2,86,94,23,193,1,251,22,183,11,2,37,2,69,2,70,202,192,28,248,22, -175,15,198,248,22,176,15,198,247,22,177,15,28,248,22,133,4,23,194,2,86, -94,23,193,1,19,248,22,147,8,23,196,2,35,248,22,147,8,23,197,2,249, -22,184,15,27,251,22,154,8,250,22,153,8,23,206,1,39,23,204,4,2,51, -2,51,28,248,22,153,7,23,206,2,249,22,168,8,23,207,1,8,63,23,205, -1,28,248,22,133,4,248,22,147,8,23,195,2,86,94,23,193,1,251,22,183, -11,2,37,2,69,2,70,203,192,28,248,22,175,15,199,248,22,176,15,199,247, -22,177,15,2,27,248,22,182,3,23,195,1,28,249,22,169,9,8,46,249,22, -148,8,23,199,2,23,197,2,35,248,22,181,3,23,195,2,249,22,184,15,27, -251,22,154,8,250,22,153,8,23,206,1,39,23,204,1,2,51,2,51,28,248, -22,153,7,23,206,2,249,22,168,8,23,207,1,8,63,23,205,1,28,248,22, +48,60,42,248,22,163,20,23,197,2,249,80,144,49,8,44,42,23,204,1,248, +22,164,20,23,198,1,249,22,94,23,202,2,249,80,144,49,8,44,42,23,204, +1,248,22,164,20,23,198,1,249,22,94,23,199,2,27,248,22,164,20,23,197, +1,28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,249,22,80,248,80, +144,48,60,42,248,22,163,20,23,197,2,249,80,144,49,8,44,42,23,204,1, +248,22,164,20,23,198,1,249,22,94,23,202,2,249,80,144,49,8,44,42,23, +204,1,248,22,164,20,23,198,1,27,250,22,158,2,23,198,1,23,199,1,11, +28,192,249,80,144,42,8,44,42,198,194,196,27,248,22,151,16,2,58,28,248, +22,135,16,23,194,2,248,22,138,16,23,194,1,28,248,22,134,16,23,194,2, +90,144,42,11,89,146,42,39,11,248,22,131,16,249,22,136,16,250,80,144,49, +43,42,248,22,151,16,2,56,11,11,248,22,151,16,2,57,86,95,23,195,1, +23,194,1,248,22,138,16,249,22,136,16,23,199,1,23,196,1,27,250,80,144, +44,43,42,248,22,151,16,2,56,23,197,1,10,28,23,193,2,248,22,138,16, +23,194,1,11,27,248,80,144,41,58,42,249,80,144,43,55,40,40,80,144,43, +8,45,42,27,27,250,22,158,2,23,198,2,72,108,105,110,107,115,45,102,105, +108,101,11,27,28,23,194,2,23,194,1,86,94,23,194,1,249,22,128,16,27, +250,22,158,2,23,202,2,71,115,104,97,114,101,45,100,105,114,11,28,192,192, +249,22,128,16,64,117,112,6,5,5,115,104,97,114,101,2,60,28,248,22,153, +7,23,194,2,27,248,22,182,15,23,195,1,28,248,22,135,16,23,194,2,192, +249,22,136,16,23,195,1,27,247,80,144,47,54,42,28,23,193,2,192,86,94, +23,193,1,247,22,152,16,28,248,22,142,8,23,194,2,27,248,22,183,15,23, +195,1,28,248,22,135,16,23,194,2,192,249,22,136,16,23,195,1,27,247,80, +144,47,54,42,28,23,193,2,192,86,94,23,193,1,247,22,152,16,28,248,22, +174,15,23,194,2,28,248,22,135,16,23,194,2,192,249,22,136,16,23,195,1, +27,247,80,144,46,54,42,28,23,193,2,192,86,94,23,193,1,247,22,152,16, +192,250,22,94,248,22,90,11,28,247,22,159,16,28,247,22,160,16,248,22,90, +250,22,128,16,248,22,151,16,2,61,250,22,158,2,23,204,2,2,59,247,22, +171,8,2,60,9,9,28,247,22,160,16,250,80,144,47,8,23,42,23,200,1, +1,18,108,105,110,107,115,45,115,101,97,114,99,104,45,102,105,108,101,115,248, +22,90,23,200,1,9,248,22,173,13,23,194,1,249,22,14,80,144,41,8,26, +41,28,248,22,129,13,23,197,2,86,94,23,196,1,32,0,88,148,8,36,39, +44,11,9,222,11,20,20,94,88,148,8,36,39,46,11,9,223,3,33,124,23, +196,1,32,126,88,148,39,40,59,11,2,50,222,33,127,90,144,42,11,89,146, +42,39,11,248,22,131,16,23,197,1,86,95,23,195,1,23,194,1,28,248,22, +174,15,23,194,2,28,248,22,187,15,23,194,2,249,22,145,6,23,195,1,32, +0,88,148,8,36,39,44,11,9,222,11,90,144,42,11,89,146,42,39,11,248, +22,131,16,23,197,1,86,95,23,195,1,23,194,1,28,248,22,174,15,23,194, +2,28,248,22,187,15,23,194,2,249,22,145,6,23,195,1,32,0,88,148,8, +36,39,44,11,9,222,11,90,144,42,11,89,146,42,39,11,248,22,131,16,23, +197,1,86,95,23,195,1,23,194,1,28,248,22,174,15,23,194,2,28,248,22, +187,15,23,194,2,249,22,145,6,23,195,1,32,0,88,148,8,36,39,44,11, +9,222,11,90,144,42,11,89,146,42,39,11,248,22,131,16,23,197,1,86,95, +23,195,1,23,194,1,28,248,22,174,15,23,194,2,28,248,22,187,15,23,194, +2,249,22,145,6,23,195,1,32,0,88,148,8,36,39,44,11,9,222,11,248, +2,126,23,194,1,11,11,11,11,32,128,2,88,148,8,36,40,58,11,2,50, +222,33,129,2,27,249,22,163,6,8,128,128,23,196,2,28,248,22,148,7,23, +194,2,9,249,22,80,23,195,1,27,249,22,163,6,8,128,128,23,199,2,28, +248,22,148,7,23,194,2,9,249,22,80,23,195,1,27,249,22,163,6,8,128, +128,23,202,2,28,248,22,148,7,23,194,2,9,249,22,80,23,195,1,27,249, +22,163,6,8,128,128,23,205,2,28,248,22,148,7,23,194,2,9,249,22,80, +23,195,1,248,2,128,2,23,206,1,27,249,22,163,6,8,128,128,23,196,2, +28,248,22,142,8,23,194,2,28,249,22,132,4,248,22,147,8,23,196,2,8, +128,128,249,22,1,22,154,8,249,22,80,23,197,1,27,249,22,163,6,8,128, +128,23,201,2,28,248,22,148,7,23,194,2,9,249,22,80,23,195,1,27,249, +22,163,6,8,128,128,23,204,2,28,248,22,148,7,23,194,2,9,249,22,80, +23,195,1,27,249,22,163,6,8,128,128,23,207,2,28,248,22,148,7,23,194, +2,9,249,22,80,23,195,1,27,249,22,163,6,8,128,128,23,210,2,28,248, +22,148,7,23,194,2,9,249,22,80,23,195,1,248,2,128,2,23,211,1,192, +192,248,22,133,6,23,194,1,20,13,144,80,144,40,8,28,40,80,144,40,8, +46,42,27,28,249,22,189,8,248,22,180,8,2,62,41,90,144,42,11,89,146, +42,39,11,248,22,131,16,23,198,2,86,95,23,195,1,23,194,1,28,248,22, +174,15,23,194,2,28,248,22,187,15,23,194,2,249,22,145,6,23,195,1,32, +0,88,148,8,36,39,44,11,9,222,11,90,144,42,11,89,146,42,39,11,248, +22,131,16,23,197,1,86,95,23,195,1,23,194,1,28,248,22,174,15,23,194, +2,28,248,22,187,15,23,194,2,249,22,145,6,23,195,1,32,0,88,148,8, +36,39,44,11,9,222,11,90,144,42,11,89,146,42,39,11,248,22,131,16,23, +197,1,86,95,23,195,1,23,194,1,28,248,22,174,15,23,194,2,28,248,22, +187,15,23,194,2,249,22,145,6,23,195,1,32,0,88,148,8,36,39,44,11, +9,222,11,90,144,42,11,89,146,42,39,11,248,22,131,16,23,197,1,86,95, +23,195,1,23,194,1,28,248,22,174,15,23,194,2,28,248,22,187,15,23,194, +2,249,22,145,6,23,195,1,32,0,88,148,8,36,39,44,11,9,222,11,248, +2,126,23,194,1,11,11,11,11,11,28,248,22,186,15,23,195,2,27,28,249, +22,189,8,248,22,180,8,2,62,41,249,22,145,6,23,197,2,32,0,88,148, +8,36,39,44,11,9,222,11,11,86,94,28,23,194,2,248,22,147,6,23,195, +1,86,94,23,194,1,12,249,22,80,27,248,22,188,5,23,199,1,250,22,44, +22,35,88,148,39,39,8,24,11,9,223,3,33,130,2,20,20,94,88,148,8, +36,39,46,11,9,223,3,33,131,2,23,196,1,194,249,22,80,11,194,28,28, +23,195,2,28,248,22,82,23,196,2,248,22,167,9,249,22,175,14,39,248,22, +164,20,23,199,2,11,11,194,86,94,23,195,1,249,22,12,20,20,94,88,148, +8,32,39,61,16,4,39,8,128,80,8,240,0,64,0,0,39,9,224,2,3, +33,132,2,23,196,1,80,144,41,8,26,41,27,248,22,167,9,194,28,192,192, +248,22,167,9,248,22,81,195,86,95,28,248,22,150,12,23,198,2,27,247,22, +142,12,28,249,22,132,12,23,195,2,2,63,251,22,138,12,23,197,1,2,63, +250,22,137,8,6,42,42,101,114,114,111,114,32,114,101,97,100,105,110,103,32, +99,111,108,108,101,99,116,105,111,110,32,108,105,110,107,115,32,102,105,108,101, +32,126,115,58,32,126,97,23,203,2,248,22,146,12,23,206,2,247,22,27,12, +12,28,23,193,2,250,22,156,2,80,144,45,8,25,41,23,198,1,249,22,80, +23,198,1,21,17,0,0,86,95,23,195,1,23,193,1,12,28,248,22,150,12, +23,198,2,86,94,23,197,1,248,23,195,1,247,22,138,2,196,88,148,39,40, +58,8,240,0,0,0,2,9,226,0,2,1,3,33,135,2,20,20,94,248,22, +148,6,23,194,2,28,248,22,148,7,248,22,148,6,23,195,1,12,248,22,177, +11,6,30,30,101,120,112,101,99,116,101,100,32,97,32,115,105,110,103,108,101, +32,83,45,101,120,112,114,101,115,115,105,111,110,248,22,133,6,23,194,1,28, +248,22,89,193,28,28,249,22,128,4,41,248,22,93,195,10,249,22,128,4,42, +248,22,93,195,28,28,248,22,153,7,248,22,81,194,10,28,249,22,169,9,2, +64,248,22,163,20,195,10,249,22,169,9,2,65,248,22,163,20,195,28,27,248, +22,102,194,28,248,22,174,15,193,10,28,248,22,153,7,193,28,248,22,133,16, +193,10,248,22,134,16,193,11,27,248,22,88,248,22,104,195,28,192,192,248,22, +180,16,248,22,111,195,11,11,11,11,28,248,22,187,15,249,22,128,16,23,196, +2,23,198,2,27,248,22,68,248,22,178,15,23,198,1,250,22,156,2,23,198, +2,23,196,2,249,22,80,23,199,1,250,22,158,2,23,203,1,23,201,1,9, +12,250,22,156,2,23,197,1,23,198,1,249,22,80,23,198,1,23,201,1,28, +28,248,22,88,248,22,104,23,197,2,10,249,22,171,16,248,22,111,23,198,2, +247,22,171,8,27,248,22,138,16,249,22,136,16,248,22,102,23,200,2,23,198, +1,28,249,22,169,9,248,22,163,20,23,199,2,2,65,86,94,23,196,1,249, +22,3,20,20,94,88,148,8,36,40,56,11,9,224,3,2,33,140,2,23,196, +1,248,22,141,16,23,196,1,28,249,22,169,9,248,22,163,20,23,199,2,2, +64,86,94,23,196,1,86,94,28,250,22,158,2,23,197,2,11,11,12,250,22, +156,2,23,197,2,11,9,249,22,164,2,23,196,2,20,20,95,88,148,8,36, +41,53,11,9,224,3,2,33,141,2,23,195,1,23,196,1,27,248,22,68,248, +22,163,20,23,199,1,250,22,156,2,23,198,2,23,196,2,249,22,80,248,22, +129,2,23,200,1,250,22,158,2,23,203,1,23,201,1,9,12,250,22,156,2, +23,196,1,23,197,1,248,22,95,23,199,1,27,28,28,23,194,2,248,22,167, +9,248,22,81,23,196,2,10,9,27,249,22,188,5,23,198,2,68,98,105,110, +97,114,121,250,22,44,22,35,88,148,8,36,39,47,11,9,223,3,33,137,2, +20,20,94,88,148,8,36,39,46,11,9,223,3,33,138,2,23,196,1,86,94, +28,28,248,22,89,23,194,2,249,22,4,32,0,88,148,8,36,40,48,11,9, +222,33,139,2,23,195,2,11,12,248,22,177,11,6,18,18,105,108,108,45,102, +111,114,109,101,100,32,99,111,110,116,101,110,116,27,247,22,138,2,27,90,144, +42,11,89,146,42,39,11,248,22,131,16,23,201,2,192,86,96,249,22,3,20, +20,94,88,148,8,36,40,57,11,9,224,2,3,33,142,2,23,195,1,23,197, +1,249,22,164,2,195,88,148,8,36,41,51,11,9,223,3,33,143,2,250,22, +156,2,80,144,47,8,25,41,23,200,1,249,22,80,23,201,1,198,193,20,13, +144,80,144,40,8,28,40,250,80,144,43,8,47,42,23,198,2,23,196,2,11, +27,250,22,158,2,80,144,44,8,25,41,23,197,2,21,143,11,17,0,0,27, +248,22,81,23,195,2,27,249,80,144,45,8,27,42,23,198,2,23,196,2,28, +249,22,171,9,23,195,2,23,196,1,248,22,164,20,195,86,94,23,195,1,20, +13,144,80,144,43,8,28,40,250,80,144,46,8,47,42,23,201,1,23,199,2, +23,196,2,27,20,20,95,88,148,8,36,39,55,8,240,0,0,0,2,9,225, +5,4,1,33,144,2,23,194,1,23,197,1,28,249,22,48,23,195,2,39,20, +13,144,80,144,44,46,40,26,29,80,144,8,34,47,40,249,22,31,11,80,144, +8,36,46,40,22,144,15,10,22,145,15,10,22,146,15,10,22,149,15,10,22, +148,15,11,22,150,15,10,22,147,15,10,22,151,15,10,22,152,15,10,22,153, +15,10,22,154,15,10,22,155,15,11,22,156,15,10,22,142,15,11,247,23,193, +1,250,22,181,11,2,9,2,52,23,196,1,248,22,8,20,20,94,88,148,39, +40,8,43,16,4,8,128,6,8,128,104,8,240,0,128,0,0,39,9,224,1, +2,33,145,2,23,195,1,0,7,35,114,120,34,47,43,34,28,248,22,153,7, +23,195,2,27,249,22,169,16,2,147,2,23,197,2,28,23,193,2,28,249,22, +128,4,248,22,101,23,196,2,248,22,182,3,248,22,156,7,23,199,2,249,22, +7,250,22,175,7,23,200,1,39,248,22,101,23,199,1,23,198,1,249,22,7, +250,22,175,7,23,200,2,39,248,22,101,23,199,2,249,22,80,249,22,175,7, +23,201,1,248,22,103,23,200,1,23,200,1,249,22,7,23,197,1,23,198,1, +90,144,42,11,89,146,42,39,11,248,22,131,16,23,198,1,86,94,23,195,1, +28,249,22,169,9,23,195,2,2,49,86,94,23,193,1,249,22,7,23,196,1, +23,200,1,27,249,22,80,23,197,1,23,201,1,28,248,22,153,7,23,195,2, +27,249,22,169,16,2,147,2,23,197,2,28,23,193,2,28,249,22,128,4,248, +22,101,23,196,2,248,22,182,3,248,22,156,7,23,199,2,249,22,7,250,22, +175,7,23,200,1,39,248,22,101,23,199,1,23,196,1,249,22,7,250,22,175, +7,23,200,2,39,248,22,101,23,199,2,249,22,80,249,22,175,7,23,201,1, +248,22,103,23,200,1,23,198,1,249,22,7,23,197,1,23,196,1,90,144,42, +11,89,146,42,39,11,248,22,131,16,23,198,1,86,94,23,195,1,28,249,22, +169,9,23,195,2,2,49,86,94,23,193,1,249,22,7,23,196,1,23,198,1, +249,80,144,48,8,31,42,194,249,22,80,197,199,28,248,22,88,23,196,2,9, +28,248,22,81,23,196,2,28,248,22,149,2,248,22,163,20,23,197,2,250,22, +94,249,22,2,22,129,2,250,22,158,2,248,22,163,20,23,204,2,23,202,2, +9,250,22,158,2,248,22,163,20,23,202,2,11,9,27,248,22,164,20,23,200, +1,28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,28,248,22,149,2, +248,22,163,20,23,195,2,250,22,94,249,22,2,22,129,2,250,22,158,2,248, +22,163,20,23,202,2,23,206,2,9,250,22,158,2,248,22,163,20,23,200,2, +11,9,249,80,144,48,8,48,42,23,203,1,248,22,164,20,23,199,1,27,248, +80,144,45,8,30,42,248,22,163,20,23,196,2,250,22,94,250,22,158,2,23, +199,2,23,205,2,9,250,22,158,2,23,199,1,11,9,249,80,144,49,8,48, +42,23,204,1,248,22,164,20,23,200,1,249,22,94,247,22,155,16,249,80,144, +47,8,48,42,23,202,1,248,22,164,20,23,198,1,27,248,80,144,41,8,30, +42,248,22,163,20,23,198,2,250,22,94,250,22,158,2,23,199,2,23,201,2, +9,250,22,158,2,23,199,1,11,9,27,248,22,164,20,23,201,1,28,248,22, +88,23,194,2,9,28,248,22,81,23,194,2,28,248,22,149,2,248,22,163,20, +23,195,2,250,22,94,249,22,2,22,129,2,250,22,158,2,248,22,163,20,23, +202,2,23,207,2,9,250,22,158,2,248,22,163,20,23,200,2,11,9,249,80, +144,49,8,48,42,23,204,1,248,22,164,20,23,199,1,27,248,80,144,46,8, +30,42,248,22,163,20,23,196,2,250,22,94,250,22,158,2,23,199,2,23,206, +2,9,250,22,158,2,23,199,1,11,9,249,80,144,50,8,48,42,23,205,1, +248,22,164,20,23,200,1,249,22,94,247,22,155,16,249,80,144,48,8,48,42, +23,203,1,248,22,164,20,23,198,1,249,22,94,247,22,155,16,27,248,22,164, +20,23,199,1,28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,28,248, +22,149,2,248,22,163,20,23,195,2,250,22,94,249,22,2,22,129,2,250,22, +158,2,248,22,163,20,23,202,2,23,205,2,9,250,22,158,2,248,22,163,20, +23,200,2,11,9,249,80,144,47,8,48,42,23,202,1,248,22,164,20,23,199, +1,27,248,80,144,44,8,30,42,248,22,163,20,23,196,2,250,22,94,250,22, +158,2,23,199,2,23,204,2,9,250,22,158,2,23,199,1,11,9,249,80,144, +48,8,48,42,23,203,1,248,22,164,20,23,200,1,249,22,94,247,22,155,16, +249,80,144,46,8,48,42,23,201,1,248,22,164,20,23,198,1,32,150,2,88, +148,8,36,40,50,11,2,50,222,33,151,2,28,248,22,88,248,22,82,23,195, +2,248,22,90,27,248,22,163,20,195,28,248,22,174,15,193,248,22,178,15,193, +192,250,22,91,27,248,22,163,20,23,198,2,28,248,22,174,15,193,248,22,178, +15,193,192,2,67,248,2,150,2,248,22,164,20,23,198,1,250,22,137,8,6, +7,7,10,32,126,97,32,126,97,6,1,1,32,23,196,1,249,22,137,8,6, +6,6,10,32,32,32,126,97,248,22,132,2,23,196,1,32,154,2,88,148,39, +41,51,11,68,102,105,108,116,101,114,222,33,155,2,28,248,22,88,23,195,2, +9,28,248,23,194,2,248,22,81,23,196,2,249,22,80,248,22,163,20,23,197, +2,249,2,154,2,23,197,1,248,22,164,20,23,199,1,249,2,154,2,23,195, +1,248,22,164,20,23,197,1,28,248,22,88,23,201,2,86,95,23,200,1,23, +199,1,28,23,201,2,28,197,249,22,128,16,202,199,200,27,28,248,22,88,23, +198,2,2,66,249,22,1,22,176,7,248,2,150,2,23,200,2,248,23,199,1, +251,22,137,8,6,70,70,99,111,108,108,101,99,116,105,111,110,32,110,111,116, +32,102,111,117,110,100,10,32,32,99,111,108,108,101,99,116,105,111,110,58,32, +126,115,10,32,32,105,110,32,99,111,108,108,101,99,116,105,111,110,32,100,105, +114,101,99,116,111,114,105,101,115,58,126,97,126,97,28,248,22,88,23,203,1, +28,248,22,174,15,23,202,2,248,22,178,15,23,202,1,23,201,1,250,22,176, +7,28,248,22,174,15,23,205,2,248,22,178,15,23,205,1,23,204,1,2,67, +23,201,2,249,22,1,22,176,7,249,22,2,32,0,88,148,8,36,40,48,11, +9,222,33,152,2,27,248,22,93,23,206,2,27,248,22,93,247,22,155,16,28, +249,22,129,4,249,22,184,3,23,198,2,23,197,2,44,23,206,2,249,22,94, +247,22,155,16,248,22,90,249,22,137,8,6,50,50,46,46,46,32,91,126,97, +32,97,100,100,105,116,105,111,110,97,108,32,108,105,110,107,101,100,32,97,110, +100,32,112,97,99,107,97,103,101,32,100,105,114,101,99,116,111,114,105,101,115, +93,249,22,184,3,23,201,1,23,200,1,28,249,22,5,22,131,2,23,202,2, +250,22,137,8,6,49,49,10,32,32,32,115,117,98,45,99,111,108,108,101,99, +116,105,111,110,58,32,126,115,10,32,32,105,110,32,112,97,114,101,110,116,32, +100,105,114,101,99,116,111,114,105,101,115,58,126,97,23,201,1,249,22,1,22, +176,7,249,22,2,32,0,88,148,8,36,40,48,11,9,222,33,153,2,249,2, +154,2,22,131,2,23,209,1,86,95,23,200,1,23,198,1,2,66,27,248,22, +81,23,202,2,27,28,248,22,174,15,23,195,2,249,22,128,16,23,196,1,23, +199,2,248,22,132,2,23,195,1,28,28,248,22,174,15,248,22,163,20,23,204, +2,248,22,187,15,23,194,2,10,27,250,22,1,22,128,16,23,197,1,23,202, +2,28,28,248,22,88,23,200,2,10,248,22,187,15,23,194,2,28,23,201,2, +28,28,250,80,144,45,8,32,42,195,203,204,10,27,28,248,22,174,15,202,248, +22,178,15,202,201,19,248,22,156,7,23,195,2,27,28,249,22,132,4,23,196, +4,43,28,249,22,159,7,6,4,4,46,114,107,116,249,22,175,7,23,199,2, +249,22,184,3,23,200,4,43,249,22,176,7,250,22,175,7,23,200,1,39,249, +22,184,3,23,201,4,43,6,3,3,46,115,115,86,94,23,195,1,11,11,28, +23,193,2,250,80,144,48,8,32,42,198,23,196,1,23,15,11,2,28,200,249, +22,128,16,194,202,192,26,8,80,144,50,8,49,42,204,205,206,23,15,23,16, +23,17,248,22,164,20,23,19,28,23,19,23,19,200,192,26,8,80,144,50,8, +49,42,204,205,206,23,15,23,16,23,17,248,22,164,20,23,19,23,19,26,8, +80,144,49,8,49,42,203,204,205,206,23,15,23,16,248,22,164,20,23,18,23, +18,90,144,41,11,89,146,41,39,11,249,80,144,43,8,31,42,23,199,1,23, +200,1,27,248,22,68,28,248,22,174,15,195,248,22,178,15,195,194,27,27,247, +22,156,16,28,248,22,88,23,194,2,9,28,248,22,81,23,194,2,28,248,22, +149,2,248,22,163,20,23,195,2,250,22,94,249,22,2,22,129,2,250,22,158, +2,248,22,163,20,23,202,2,23,203,2,9,250,22,158,2,248,22,163,20,23, +200,2,11,9,249,80,144,49,8,48,42,23,200,1,248,22,164,20,23,199,1, +27,248,80,144,46,8,30,42,248,22,163,20,23,196,2,250,22,94,250,22,158, +2,23,199,2,23,202,2,9,250,22,158,2,23,199,1,11,9,249,80,144,50, +8,48,42,23,201,1,248,22,164,20,23,200,1,249,22,94,247,22,155,16,249, +80,144,48,8,48,42,23,199,1,248,22,164,20,23,198,1,26,8,80,144,51, +8,49,42,200,202,203,205,23,16,23,17,200,11,32,158,2,88,148,8,36,42, +59,11,2,50,222,33,159,2,28,248,22,133,4,23,196,2,86,94,23,195,1, +19,248,22,147,8,23,195,2,19,248,22,147,8,23,196,2,249,22,184,15,27, +251,22,154,8,250,22,153,8,23,205,2,39,23,204,4,2,51,249,22,153,8, +23,204,1,23,202,4,2,68,28,248,22,133,4,248,22,147,8,23,195,2,86, +94,23,193,1,251,22,183,11,2,37,2,69,2,70,202,192,28,248,22,175,15, +198,248,22,176,15,198,247,22,177,15,2,2,27,248,22,182,3,23,197,1,28, +249,22,169,9,8,46,249,22,148,8,23,198,2,23,197,2,27,248,22,181,3, +23,195,2,249,22,184,15,27,251,22,154,8,250,22,153,8,23,205,2,39,23, +204,1,2,71,249,22,153,8,23,204,1,23,202,1,2,68,28,248,22,133,4, +248,22,147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2, +70,202,192,28,248,22,175,15,198,248,22,176,15,198,247,22,177,15,250,2,158, +2,196,197,195,248,22,186,15,27,250,22,128,16,23,200,1,23,202,1,23,199, +1,28,249,22,169,9,23,197,2,66,115,97,109,101,192,28,248,22,133,16,23, +196,2,249,22,128,16,194,196,249,80,144,46,42,42,23,195,1,23,197,1,249, +22,5,20,20,96,88,148,39,40,54,47,9,226,5,4,2,6,33,160,2,23, +199,1,23,195,1,23,197,1,23,196,1,27,248,22,186,15,249,22,128,16,23, +198,2,23,199,2,28,23,193,2,192,86,94,23,193,1,28,23,197,1,27,90, +144,41,11,89,146,41,39,11,250,80,144,46,8,34,42,23,202,2,2,68,2, +37,27,248,22,180,15,23,196,1,27,250,2,158,2,23,197,2,23,204,1,248, +22,147,8,23,198,1,28,248,22,175,15,195,249,22,128,16,196,194,192,27,247, +22,157,16,249,22,5,20,20,96,88,148,39,40,51,47,9,226,5,6,2,3, +33,161,2,23,196,1,23,195,1,23,199,1,247,22,158,16,11,86,95,28,28, +248,22,175,15,23,194,2,10,28,248,22,174,15,23,194,2,10,28,248,22,153, +7,23,194,2,28,248,22,133,16,23,194,2,10,248,22,134,16,23,194,2,11, +12,252,22,181,11,23,200,2,2,42,39,23,198,2,23,199,2,28,28,248,22, +153,7,23,195,2,10,248,22,142,8,23,195,2,86,94,23,194,1,12,252,22, +181,11,23,200,2,2,72,40,23,198,2,23,199,1,90,144,42,11,89,146,42, +39,11,248,22,131,16,23,197,2,86,94,23,195,1,86,94,28,23,193,2,86, +95,23,198,1,23,196,1,12,250,22,184,11,23,201,1,2,73,23,199,1,249, +22,7,23,195,1,23,196,1,32,164,2,88,148,8,36,46,61,11,2,74,222, +33,165,2,249,22,184,15,27,251,22,154,8,250,22,153,8,23,203,2,39,23, +207,1,23,205,1,249,23,203,1,23,202,1,23,208,1,28,248,22,153,7,23, +204,2,249,22,168,8,23,205,1,8,63,23,203,1,28,248,22,133,4,248,22, +147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2,70,201, +192,28,248,22,175,15,197,248,22,176,15,197,247,22,177,15,32,166,2,88,148, +8,36,45,8,24,11,2,50,222,33,167,2,28,248,22,133,4,23,199,2,86, +95,23,198,1,23,194,1,19,248,22,147,8,23,195,2,19,248,22,147,8,23, +196,2,249,22,184,15,27,251,22,154,8,250,22,153,8,23,205,2,39,23,204, +4,2,51,249,23,206,1,23,204,1,23,202,4,28,248,22,153,7,23,207,2, +249,22,168,8,23,208,1,8,63,23,206,1,28,248,22,133,4,248,22,147,8, +23,195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2,70,204,192,28, +248,22,175,15,200,248,22,176,15,200,247,22,177,15,2,2,27,248,22,182,3, +23,200,1,28,249,22,169,9,8,46,249,22,148,8,23,198,2,23,197,2,27, +248,22,181,3,23,195,2,249,22,184,15,27,251,22,154,8,250,22,153,8,23, +205,2,39,23,204,1,23,203,1,249,23,206,1,23,204,1,23,202,1,28,248, +22,153,7,23,207,2,249,22,168,8,23,208,1,8,63,23,206,1,28,248,22, 133,4,248,22,147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37,2, -69,2,70,203,192,28,248,22,175,15,199,248,22,176,15,199,247,22,177,15,251, -2,169,2,198,199,200,196,90,144,41,11,89,146,41,39,11,86,95,28,28,248, -22,175,15,23,196,2,10,28,248,22,174,15,23,196,2,10,28,248,22,153,7, -23,196,2,28,248,22,133,16,23,196,2,10,248,22,134,16,23,196,2,11,12, -252,22,181,11,2,37,2,42,39,23,200,2,23,201,2,28,28,248,22,153,7, -23,197,2,10,248,22,142,8,23,197,2,12,252,22,181,11,2,37,2,72,40, -23,200,2,23,201,2,90,144,42,11,89,146,42,39,11,248,22,131,16,23,199, -2,86,94,23,195,1,86,94,28,192,12,250,22,184,11,2,37,2,73,23,201, -2,249,22,7,194,195,27,248,22,180,15,23,196,1,27,251,2,169,2,23,198, -2,23,201,1,23,202,1,248,22,147,8,23,199,1,28,248,22,175,15,195,249, -22,128,16,196,194,192,2,51,252,80,144,44,8,35,42,2,37,2,51,32,0, -88,148,8,36,41,46,11,9,222,33,172,2,198,199,32,174,2,88,148,8,36, -43,60,11,2,50,222,33,177,2,32,175,2,88,148,8,36,45,60,11,2,74, -222,33,176,2,249,22,184,15,27,251,22,154,8,250,22,153,8,23,203,2,39, -23,206,1,23,204,1,249,22,153,8,23,202,1,23,207,1,28,248,22,153,7, -23,203,2,249,22,168,8,23,204,1,8,63,23,202,1,28,248,22,133,4,248, +69,2,70,204,192,28,248,22,175,15,200,248,22,176,15,200,247,22,177,15,28, +248,22,133,4,23,194,2,86,95,23,195,1,23,193,1,19,248,22,147,8,23, +196,2,19,248,22,147,8,23,197,2,249,22,184,15,27,251,22,154,8,250,22, +153,8,23,206,2,39,23,204,4,2,51,249,23,207,1,23,205,1,23,202,4, +28,248,22,153,7,23,208,2,249,22,168,8,23,209,1,8,63,23,207,1,28, +248,22,133,4,248,22,147,8,23,195,2,86,94,23,193,1,251,22,183,11,2, +37,2,69,2,70,205,192,28,248,22,175,15,201,248,22,176,15,201,247,22,177, +15,2,2,27,248,22,182,3,23,195,1,28,249,22,169,9,8,46,249,22,148, +8,23,199,2,23,197,2,27,248,22,181,3,23,195,2,249,22,184,15,27,251, +22,154,8,250,22,153,8,23,206,2,39,23,204,1,23,204,1,249,23,207,1, +23,205,1,23,202,1,28,248,22,153,7,23,208,2,249,22,168,8,23,209,1, +8,63,23,207,1,28,248,22,133,4,248,22,147,8,23,195,2,86,94,23,193, +1,251,22,183,11,2,37,2,69,2,70,205,192,28,248,22,175,15,201,248,22, +176,15,201,247,22,177,15,28,248,22,133,4,193,254,2,164,2,201,203,204,205, +248,22,147,8,202,2,51,248,22,147,8,202,27,248,22,182,3,194,28,249,22, +169,9,8,46,249,22,148,8,199,196,254,2,164,2,202,204,205,206,199,203,248, +22,181,3,200,253,2,166,2,201,202,203,204,205,198,90,144,41,11,89,146,41, +39,11,86,95,28,28,248,22,175,15,23,199,2,10,28,248,22,174,15,23,199, +2,10,28,248,22,153,7,23,199,2,28,248,22,133,16,23,199,2,10,248,22, +134,16,23,199,2,11,12,252,22,181,11,23,200,2,2,42,39,23,203,2,23, +204,2,28,28,248,22,153,7,23,200,2,10,248,22,142,8,23,200,2,12,252, +22,181,11,23,200,2,2,72,40,23,203,2,23,204,2,90,144,42,11,89,146, +42,39,11,248,22,131,16,23,202,2,86,94,23,195,1,86,94,28,192,12,250, +22,184,11,23,201,1,2,73,23,204,2,249,22,7,194,195,27,248,22,180,15, +23,196,1,27,19,248,22,147,8,23,196,2,28,248,22,133,4,23,194,4,86, +94,23,199,1,19,248,22,147,8,23,197,2,19,248,22,147,8,23,198,2,249, +22,184,15,27,251,22,154,8,250,22,153,8,23,207,2,39,23,204,4,2,51, +249,23,211,1,23,206,1,23,202,4,28,248,22,153,7,23,212,2,249,22,168, +8,23,213,1,8,63,23,211,1,28,248,22,133,4,248,22,147,8,23,195,2, +86,94,23,193,1,251,22,183,11,2,37,2,69,2,70,23,17,192,28,248,22, +175,15,205,248,22,176,15,205,247,22,177,15,2,2,27,248,22,182,3,23,195, +4,28,249,22,169,9,8,46,249,22,148,8,23,200,2,23,197,2,27,248,22, +181,3,23,195,2,249,22,184,15,27,251,22,154,8,250,22,153,8,23,207,2, +39,23,204,1,23,208,1,249,23,211,1,23,206,1,23,202,1,28,248,22,153, +7,23,212,2,249,22,168,8,23,213,1,8,63,23,211,1,28,248,22,133,4, +248,22,147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2, +70,23,17,192,28,248,22,175,15,205,248,22,176,15,205,247,22,177,15,28,248, +22,133,4,23,194,2,86,95,23,200,1,23,193,1,254,2,164,2,23,203,2, +23,208,1,23,209,1,23,210,1,248,22,147,8,23,204,2,2,51,248,22,147, +8,23,204,1,27,248,22,182,3,23,195,1,28,249,22,169,9,8,46,249,22, +148,8,23,201,2,23,197,2,254,2,164,2,23,204,1,23,209,1,23,210,1, +23,211,1,23,200,2,23,208,1,248,22,181,3,23,201,1,253,2,166,2,23, +203,1,23,207,1,23,208,1,23,209,1,23,210,1,23,199,1,2,28,248,22, +175,15,195,249,22,128,16,196,194,192,32,169,2,88,148,8,36,43,61,11,2, +50,222,33,170,2,28,248,22,133,4,23,197,2,86,94,23,196,1,19,248,22, +147,8,23,195,2,35,248,22,147,8,23,196,2,249,22,184,15,27,251,22,154, +8,250,22,153,8,23,205,1,39,23,204,4,2,51,2,51,28,248,22,153,7, +23,205,2,249,22,168,8,23,206,1,8,63,23,204,1,28,248,22,133,4,248, 22,147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2,70, -200,192,28,248,22,175,15,196,248,22,176,15,196,247,22,177,15,28,248,22,133, -4,23,197,2,86,94,23,196,1,19,248,22,147,8,23,195,2,19,248,22,147, -8,23,196,2,249,22,184,15,27,251,22,154,8,250,22,153,8,23,205,2,39, -23,204,4,2,51,249,22,153,8,23,204,1,23,202,4,28,248,22,153,7,23, -205,2,249,22,168,8,23,206,1,8,63,23,204,1,28,248,22,133,4,248,22, -147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2,70,202, -192,28,248,22,175,15,198,248,22,176,15,198,247,22,177,15,2,2,27,248,22, +202,192,28,248,22,175,15,198,248,22,176,15,198,247,22,177,15,2,27,248,22, 182,3,23,198,1,28,249,22,169,9,8,46,249,22,148,8,23,198,2,23,197, -2,27,248,22,181,3,23,195,2,249,22,184,15,27,251,22,154,8,250,22,153, -8,23,205,2,39,23,204,1,2,71,249,22,153,8,23,204,1,23,202,1,28, -248,22,153,7,23,205,2,249,22,168,8,23,206,1,8,63,23,204,1,28,248, +2,35,248,22,181,3,23,195,2,249,22,184,15,27,251,22,154,8,250,22,153, +8,23,205,1,39,23,204,1,2,51,2,51,28,248,22,153,7,23,205,2,249, +22,168,8,23,206,1,8,63,23,204,1,28,248,22,133,4,248,22,147,8,23, +195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2,70,202,192,28,248, +22,175,15,198,248,22,176,15,198,247,22,177,15,28,248,22,133,4,23,194,2, +86,94,23,193,1,19,248,22,147,8,23,196,2,35,248,22,147,8,23,197,2, +249,22,184,15,27,251,22,154,8,250,22,153,8,23,206,1,39,23,204,4,2, +51,2,51,28,248,22,153,7,23,206,2,249,22,168,8,23,207,1,8,63,23, +205,1,28,248,22,133,4,248,22,147,8,23,195,2,86,94,23,193,1,251,22, +183,11,2,37,2,69,2,70,203,192,28,248,22,175,15,199,248,22,176,15,199, +247,22,177,15,2,27,248,22,182,3,23,195,1,28,249,22,169,9,8,46,249, +22,148,8,23,199,2,23,197,2,35,248,22,181,3,23,195,2,249,22,184,15, +27,251,22,154,8,250,22,153,8,23,206,1,39,23,204,1,2,51,2,51,28, +248,22,153,7,23,206,2,249,22,168,8,23,207,1,8,63,23,205,1,28,248, 22,133,4,248,22,147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37, -2,69,2,70,202,192,28,248,22,175,15,198,248,22,176,15,198,247,22,177,15, -28,248,22,133,4,193,253,2,175,2,199,200,201,248,22,147,8,200,2,51,248, -22,147,8,200,27,248,22,182,3,194,28,249,22,169,9,8,46,249,22,148,8, -198,196,253,2,175,2,200,201,202,198,2,71,248,22,181,3,199,251,2,174,2, -198,199,200,196,90,144,41,11,89,146,41,39,11,86,95,28,28,248,22,175,15, -23,196,2,10,28,248,22,174,15,23,196,2,10,28,248,22,153,7,23,196,2, -28,248,22,133,16,23,196,2,10,248,22,134,16,23,196,2,11,12,252,22,181, -11,2,37,2,42,39,23,200,2,23,201,2,28,28,248,22,153,7,23,197,2, -10,248,22,142,8,23,197,2,12,252,22,181,11,2,37,2,72,40,23,200,2, -23,201,2,90,144,42,11,89,146,42,39,11,248,22,131,16,23,199,2,86,94, -23,195,1,86,94,28,192,12,250,22,184,11,2,37,2,73,23,201,2,249,22, -7,194,195,27,248,22,180,15,23,196,1,27,251,2,174,2,23,198,2,23,201, -1,23,202,1,248,22,147,8,23,199,1,28,248,22,175,15,195,249,22,128,16, -196,194,192,252,80,144,44,8,35,42,2,37,2,71,22,153,8,198,199,249,247, -22,176,5,23,195,1,11,249,247,22,176,5,194,11,28,248,22,88,23,195,2, -9,27,27,248,22,81,23,197,2,28,248,22,135,16,23,194,2,248,22,138,16, -23,194,1,28,248,22,134,16,23,194,2,90,144,42,11,89,146,42,39,11,248, -22,131,16,249,22,136,16,250,80,144,50,43,42,248,22,151,16,2,56,11,11, -248,22,151,16,2,57,86,95,23,195,1,23,194,1,248,22,138,16,249,22,136, -16,23,199,1,23,196,1,27,250,80,144,45,43,42,248,22,151,16,2,56,23, -197,1,10,28,23,193,2,248,22,138,16,23,194,1,11,28,23,193,2,249,22, -80,248,22,138,16,249,22,136,16,23,198,1,247,22,152,16,27,248,22,163,20, -23,199,1,28,248,22,88,23,194,2,9,27,248,80,144,45,56,42,248,22,81, -23,196,2,28,23,193,2,249,22,80,248,22,138,16,249,22,136,16,23,198,1, -247,22,152,16,248,80,144,47,8,50,42,248,22,163,20,23,198,1,86,94,23, -193,1,248,80,144,45,8,50,42,248,22,163,20,23,196,1,86,94,23,193,1, -27,248,22,163,20,23,197,1,28,248,22,88,23,194,2,9,27,248,80,144,43, -56,42,248,22,81,23,196,2,28,23,193,2,249,22,80,248,22,138,16,249,22, -136,16,23,198,1,247,22,152,16,248,80,144,45,8,50,42,248,22,163,20,23, -198,1,86,94,23,193,1,248,80,144,43,8,50,42,248,22,163,20,23,196,1, +2,69,2,70,203,192,28,248,22,175,15,199,248,22,176,15,199,247,22,177,15, +251,2,169,2,198,199,200,196,90,144,41,11,89,146,41,39,11,86,95,28,28, +248,22,175,15,23,196,2,10,28,248,22,174,15,23,196,2,10,28,248,22,153, +7,23,196,2,28,248,22,133,16,23,196,2,10,248,22,134,16,23,196,2,11, +12,252,22,181,11,2,37,2,42,39,23,200,2,23,201,2,28,28,248,22,153, +7,23,197,2,10,248,22,142,8,23,197,2,12,252,22,181,11,2,37,2,72, +40,23,200,2,23,201,2,90,144,42,11,89,146,42,39,11,248,22,131,16,23, +199,2,86,94,23,195,1,86,94,28,192,12,250,22,184,11,2,37,2,73,23, +201,2,249,22,7,194,195,27,248,22,180,15,23,196,1,27,251,2,169,2,23, +198,2,23,201,1,23,202,1,248,22,147,8,23,199,1,28,248,22,175,15,195, +249,22,128,16,196,194,192,2,51,252,80,144,44,8,35,42,2,37,2,51,32, +0,88,148,8,36,41,46,11,9,222,33,172,2,198,199,32,174,2,88,148,8, +36,43,60,11,2,50,222,33,177,2,32,175,2,88,148,8,36,45,60,11,2, +74,222,33,176,2,249,22,184,15,27,251,22,154,8,250,22,153,8,23,203,2, +39,23,206,1,23,204,1,249,22,153,8,23,202,1,23,207,1,28,248,22,153, +7,23,203,2,249,22,168,8,23,204,1,8,63,23,202,1,28,248,22,133,4, +248,22,147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2, +70,200,192,28,248,22,175,15,196,248,22,176,15,196,247,22,177,15,28,248,22, +133,4,23,197,2,86,94,23,196,1,19,248,22,147,8,23,195,2,19,248,22, +147,8,23,196,2,249,22,184,15,27,251,22,154,8,250,22,153,8,23,205,2, +39,23,204,4,2,51,249,22,153,8,23,204,1,23,202,4,28,248,22,153,7, +23,205,2,249,22,168,8,23,206,1,8,63,23,204,1,28,248,22,133,4,248, +22,147,8,23,195,2,86,94,23,193,1,251,22,183,11,2,37,2,69,2,70, +202,192,28,248,22,175,15,198,248,22,176,15,198,247,22,177,15,2,2,27,248, +22,182,3,23,198,1,28,249,22,169,9,8,46,249,22,148,8,23,198,2,23, +197,2,27,248,22,181,3,23,195,2,249,22,184,15,27,251,22,154,8,250,22, +153,8,23,205,2,39,23,204,1,2,71,249,22,153,8,23,204,1,23,202,1, +28,248,22,153,7,23,205,2,249,22,168,8,23,206,1,8,63,23,204,1,28, +248,22,133,4,248,22,147,8,23,195,2,86,94,23,193,1,251,22,183,11,2, +37,2,69,2,70,202,192,28,248,22,175,15,198,248,22,176,15,198,247,22,177, +15,28,248,22,133,4,193,253,2,175,2,199,200,201,248,22,147,8,200,2,51, +248,22,147,8,200,27,248,22,182,3,194,28,249,22,169,9,8,46,249,22,148, +8,198,196,253,2,175,2,200,201,202,198,2,71,248,22,181,3,199,251,2,174, +2,198,199,200,196,90,144,41,11,89,146,41,39,11,86,95,28,28,248,22,175, +15,23,196,2,10,28,248,22,174,15,23,196,2,10,28,248,22,153,7,23,196, +2,28,248,22,133,16,23,196,2,10,248,22,134,16,23,196,2,11,12,252,22, +181,11,2,37,2,42,39,23,200,2,23,201,2,28,28,248,22,153,7,23,197, +2,10,248,22,142,8,23,197,2,12,252,22,181,11,2,37,2,72,40,23,200, +2,23,201,2,90,144,42,11,89,146,42,39,11,248,22,131,16,23,199,2,86, +94,23,195,1,86,94,28,192,12,250,22,184,11,2,37,2,73,23,201,2,249, +22,7,194,195,27,248,22,180,15,23,196,1,27,251,2,174,2,23,198,2,23, +201,1,23,202,1,248,22,147,8,23,199,1,28,248,22,175,15,195,249,22,128, +16,196,194,192,252,80,144,44,8,35,42,2,37,2,71,22,153,8,198,199,249, +247,22,176,5,23,195,1,11,249,247,22,176,5,194,11,28,248,22,88,23,195, +2,9,27,27,248,22,81,23,197,2,28,248,22,135,16,23,194,2,248,22,138, +16,23,194,1,28,248,22,134,16,23,194,2,90,144,42,11,89,146,42,39,11, +248,22,131,16,249,22,136,16,250,80,144,50,43,42,248,22,151,16,2,56,11, +11,248,22,151,16,2,57,86,95,23,195,1,23,194,1,248,22,138,16,249,22, +136,16,23,199,1,23,196,1,27,250,80,144,45,43,42,248,22,151,16,2,56, +23,197,1,10,28,23,193,2,248,22,138,16,23,194,1,11,28,23,193,2,249, +22,80,248,22,138,16,249,22,136,16,23,198,1,247,22,152,16,27,248,22,164, +20,23,199,1,28,248,22,88,23,194,2,9,27,248,80,144,45,56,42,248,22, +81,23,196,2,28,23,193,2,249,22,80,248,22,138,16,249,22,136,16,23,198, +1,247,22,152,16,248,80,144,47,8,50,42,248,22,164,20,23,198,1,86,94, +23,193,1,248,80,144,45,8,50,42,248,22,164,20,23,196,1,86,94,23,193, +1,27,248,22,164,20,23,197,1,28,248,22,88,23,194,2,9,27,248,80,144, +43,56,42,248,22,81,23,196,2,28,23,193,2,249,22,80,248,22,138,16,249, +22,136,16,23,198,1,247,22,152,16,248,80,144,45,8,50,42,248,22,164,20, +23,198,1,86,94,23,193,1,248,80,144,43,8,50,42,248,22,164,20,23,196, +1,28,248,22,88,23,195,2,9,27,27,248,22,81,23,197,2,28,248,22,135, +16,23,194,2,248,22,138,16,23,194,1,28,248,22,134,16,23,194,2,90,144, +42,11,89,146,42,39,11,248,22,131,16,249,22,136,16,250,80,144,50,43,42, +248,22,151,16,2,56,11,11,248,22,151,16,2,57,86,95,23,195,1,23,194, +1,248,22,138,16,249,22,136,16,23,199,1,23,196,1,27,250,80,144,45,43, +42,248,22,151,16,2,56,23,197,1,10,28,23,193,2,248,22,138,16,23,194, +1,11,28,23,193,2,249,22,80,248,22,138,16,249,22,136,16,23,198,1,247, +22,152,16,27,248,22,164,20,23,199,1,28,248,22,88,23,194,2,9,27,248, +80,144,45,56,42,248,22,81,23,196,2,28,23,193,2,249,22,80,248,22,138, +16,249,22,136,16,23,198,1,247,22,152,16,248,80,144,47,8,51,42,248,22, +164,20,23,198,1,86,94,23,193,1,248,80,144,45,8,51,42,248,22,164,20, +23,196,1,86,94,23,193,1,27,248,22,164,20,23,197,1,28,248,22,88,23, +194,2,9,27,248,80,144,43,56,42,248,22,81,23,196,2,28,23,193,2,249, +22,80,248,22,138,16,249,22,136,16,23,198,1,247,22,152,16,248,80,144,45, +8,51,42,248,22,164,20,23,198,1,86,94,23,193,1,248,80,144,43,8,51, +42,248,22,164,20,23,196,1,27,248,22,151,16,2,58,28,248,22,135,16,23, +194,2,248,22,138,16,23,194,1,28,248,22,134,16,23,194,2,90,144,42,11, +89,146,42,39,11,248,22,131,16,249,22,136,16,250,80,144,49,43,42,248,22, +151,16,2,56,11,11,248,22,151,16,2,57,86,95,23,195,1,23,194,1,248, +22,138,16,249,22,136,16,23,199,1,23,196,1,27,250,80,144,44,43,42,248, +22,151,16,2,56,23,197,1,10,28,23,193,2,248,22,138,16,23,194,1,11, 28,248,22,88,23,195,2,9,27,27,248,22,81,23,197,2,28,248,22,135,16, 23,194,2,248,22,138,16,23,194,1,28,248,22,134,16,23,194,2,90,144,42, 11,89,146,42,39,11,248,22,131,16,249,22,136,16,250,80,144,50,43,42,248, @@ -844,730 +865,709 @@ 248,22,138,16,249,22,136,16,23,199,1,23,196,1,27,250,80,144,45,43,42, 248,22,151,16,2,56,23,197,1,10,28,23,193,2,248,22,138,16,23,194,1, 11,28,23,193,2,249,22,80,248,22,138,16,249,22,136,16,23,198,1,247,22, -152,16,27,248,22,163,20,23,199,1,28,248,22,88,23,194,2,9,27,248,80, -144,45,56,42,248,22,81,23,196,2,28,23,193,2,249,22,80,248,22,138,16, -249,22,136,16,23,198,1,247,22,152,16,248,80,144,47,8,51,42,248,22,163, -20,23,198,1,86,94,23,193,1,248,80,144,45,8,51,42,248,22,163,20,23, -196,1,86,94,23,193,1,27,248,22,163,20,23,197,1,28,248,22,88,23,194, -2,9,27,248,80,144,43,56,42,248,22,81,23,196,2,28,23,193,2,249,22, -80,248,22,138,16,249,22,136,16,23,198,1,247,22,152,16,248,80,144,45,8, -51,42,248,22,163,20,23,198,1,86,94,23,193,1,248,80,144,43,8,51,42, -248,22,163,20,23,196,1,27,248,22,151,16,2,58,28,248,22,135,16,23,194, -2,248,22,138,16,23,194,1,28,248,22,134,16,23,194,2,90,144,42,11,89, -146,42,39,11,248,22,131,16,249,22,136,16,250,80,144,49,43,42,248,22,151, -16,2,56,11,11,248,22,151,16,2,57,86,95,23,195,1,23,194,1,248,22, -138,16,249,22,136,16,23,199,1,23,196,1,27,250,80,144,44,43,42,248,22, -151,16,2,56,23,197,1,10,28,23,193,2,248,22,138,16,23,194,1,11,28, -248,22,88,23,195,2,9,27,27,248,22,81,23,197,2,28,248,22,135,16,23, -194,2,248,22,138,16,23,194,1,28,248,22,134,16,23,194,2,90,144,42,11, -89,146,42,39,11,248,22,131,16,249,22,136,16,250,80,144,50,43,42,248,22, -151,16,2,56,11,11,248,22,151,16,2,57,86,95,23,195,1,23,194,1,248, -22,138,16,249,22,136,16,23,199,1,23,196,1,27,250,80,144,45,43,42,248, -22,151,16,2,56,23,197,1,10,28,23,193,2,248,22,138,16,23,194,1,11, -28,23,193,2,249,22,80,248,22,138,16,249,22,136,16,23,198,1,247,22,152, -16,27,248,22,163,20,23,199,1,28,248,22,88,23,194,2,9,27,27,248,22, +152,16,27,248,22,164,20,23,199,1,28,248,22,88,23,194,2,9,27,27,248, +22,81,23,196,2,28,248,22,135,16,23,194,2,248,22,138,16,23,194,1,28, +248,22,134,16,23,194,2,90,144,42,11,89,146,42,39,11,248,22,131,16,249, +22,136,16,250,80,144,54,43,42,248,22,151,16,2,56,11,11,248,22,151,16, +2,57,86,95,23,195,1,23,194,1,248,22,138,16,249,22,136,16,23,199,1, +23,196,1,27,250,80,144,49,43,42,248,22,151,16,2,56,23,197,1,10,28, +23,193,2,248,22,138,16,23,194,1,11,28,23,193,2,249,22,80,248,22,138, +16,249,22,136,16,23,198,1,247,22,152,16,27,248,22,164,20,23,198,1,28, +248,22,88,23,194,2,9,27,248,80,144,49,56,42,248,22,81,23,196,2,28, +23,193,2,249,22,80,248,22,138,16,249,22,136,16,23,198,1,247,22,152,16, +248,80,144,51,8,53,42,248,22,164,20,23,198,1,86,94,23,193,1,248,80, +144,49,8,53,42,248,22,164,20,23,196,1,86,94,23,193,1,27,248,22,164, +20,23,196,1,28,248,22,88,23,194,2,9,27,248,80,144,47,56,42,248,22, +81,23,196,2,28,23,193,2,249,22,80,248,22,138,16,249,22,136,16,23,198, +1,247,22,152,16,248,80,144,49,8,53,42,248,22,164,20,23,198,1,86,94, +23,193,1,248,80,144,47,8,53,42,248,22,164,20,23,196,1,86,94,23,193, +1,27,248,22,164,20,23,197,1,28,248,22,88,23,194,2,9,27,27,248,22, 81,23,196,2,28,248,22,135,16,23,194,2,248,22,138,16,23,194,1,28,248, 22,134,16,23,194,2,90,144,42,11,89,146,42,39,11,248,22,131,16,249,22, -136,16,250,80,144,54,43,42,248,22,151,16,2,56,11,11,248,22,151,16,2, +136,16,250,80,144,52,43,42,248,22,151,16,2,56,11,11,248,22,151,16,2, 57,86,95,23,195,1,23,194,1,248,22,138,16,249,22,136,16,23,199,1,23, -196,1,27,250,80,144,49,43,42,248,22,151,16,2,56,23,197,1,10,28,23, +196,1,27,250,80,144,47,43,42,248,22,151,16,2,56,23,197,1,10,28,23, 193,2,248,22,138,16,23,194,1,11,28,23,193,2,249,22,80,248,22,138,16, -249,22,136,16,23,198,1,247,22,152,16,27,248,22,163,20,23,198,1,28,248, -22,88,23,194,2,9,27,248,80,144,49,56,42,248,22,81,23,196,2,28,23, +249,22,136,16,23,198,1,247,22,152,16,27,248,22,164,20,23,198,1,28,248, +22,88,23,194,2,9,27,248,80,144,47,56,42,248,22,81,23,196,2,28,23, 193,2,249,22,80,248,22,138,16,249,22,136,16,23,198,1,247,22,152,16,248, -80,144,51,8,53,42,248,22,163,20,23,198,1,86,94,23,193,1,248,80,144, -49,8,53,42,248,22,163,20,23,196,1,86,94,23,193,1,27,248,22,163,20, -23,196,1,28,248,22,88,23,194,2,9,27,248,80,144,47,56,42,248,22,81, +80,144,49,8,53,42,248,22,164,20,23,198,1,86,94,23,193,1,248,80,144, +47,8,53,42,248,22,164,20,23,196,1,86,94,23,193,1,27,248,22,164,20, +23,196,1,28,248,22,88,23,194,2,9,27,248,80,144,45,56,42,248,22,81, 23,196,2,28,23,193,2,249,22,80,248,22,138,16,249,22,136,16,23,198,1, -247,22,152,16,248,80,144,49,8,53,42,248,22,163,20,23,198,1,86,94,23, -193,1,248,80,144,47,8,53,42,248,22,163,20,23,196,1,86,94,23,193,1, -27,248,22,163,20,23,197,1,28,248,22,88,23,194,2,9,27,27,248,22,81, -23,196,2,28,248,22,135,16,23,194,2,248,22,138,16,23,194,1,28,248,22, -134,16,23,194,2,90,144,42,11,89,146,42,39,11,248,22,131,16,249,22,136, -16,250,80,144,52,43,42,248,22,151,16,2,56,11,11,248,22,151,16,2,57, -86,95,23,195,1,23,194,1,248,22,138,16,249,22,136,16,23,199,1,23,196, -1,27,250,80,144,47,43,42,248,22,151,16,2,56,23,197,1,10,28,23,193, -2,248,22,138,16,23,194,1,11,28,23,193,2,249,22,80,248,22,138,16,249, -22,136,16,23,198,1,247,22,152,16,27,248,22,163,20,23,198,1,28,248,22, -88,23,194,2,9,27,248,80,144,47,56,42,248,22,81,23,196,2,28,23,193, -2,249,22,80,248,22,138,16,249,22,136,16,23,198,1,247,22,152,16,248,80, -144,49,8,53,42,248,22,163,20,23,198,1,86,94,23,193,1,248,80,144,47, -8,53,42,248,22,163,20,23,196,1,86,94,23,193,1,27,248,22,163,20,23, -196,1,28,248,22,88,23,194,2,9,27,248,80,144,45,56,42,248,22,81,23, -196,2,28,23,193,2,249,22,80,248,22,138,16,249,22,136,16,23,198,1,247, -22,152,16,248,80,144,47,8,53,42,248,22,163,20,23,198,1,86,94,23,193, -1,248,80,144,45,8,53,42,248,22,163,20,23,196,1,27,247,22,159,16,27, -248,80,144,42,58,42,247,80,144,42,57,42,249,80,144,43,44,41,28,23,196, -2,27,249,22,175,8,247,22,174,8,2,75,28,192,249,22,165,8,194,7,63, -2,66,2,66,250,80,144,46,8,23,42,23,198,2,2,76,27,28,23,200,1, -250,22,128,16,248,22,151,16,2,61,250,22,158,2,23,205,1,2,59,247,22, -171,8,2,77,86,94,23,199,1,11,27,248,80,144,49,8,50,42,250,22,94, -9,248,22,90,248,22,151,16,2,55,9,28,193,249,22,80,195,194,192,27,247, -22,159,16,27,248,80,144,42,58,42,247,80,144,42,57,42,249,80,144,43,44, -41,28,23,196,2,27,249,22,175,8,247,22,174,8,2,75,28,192,249,22,165, -8,194,7,63,2,66,2,66,250,80,144,46,8,23,42,23,198,2,2,76,27, -28,23,200,1,250,22,128,16,248,22,151,16,2,61,250,22,158,2,23,205,1, -2,59,247,22,171,8,2,77,86,94,23,199,1,11,27,248,80,144,49,8,51, -42,250,22,94,23,207,1,248,22,90,248,22,151,16,2,55,9,28,193,249,22, -80,195,194,192,27,247,22,159,16,27,248,80,144,42,58,42,249,80,144,44,55, -40,40,80,144,44,8,52,42,249,80,144,43,44,41,28,23,196,2,27,249,22, -175,8,247,22,174,8,2,75,28,192,249,22,165,8,194,7,63,2,66,2,66, -250,80,144,46,8,23,42,23,198,2,2,76,27,28,23,200,1,250,22,128,16, -248,22,151,16,2,61,250,22,158,2,23,205,1,2,59,247,22,171,8,2,77, -86,94,23,199,1,11,27,27,250,22,94,23,207,1,248,22,90,248,22,151,16, -2,55,23,208,1,28,248,22,88,23,194,2,9,27,27,248,22,81,23,196,2, -28,248,22,135,16,23,194,2,248,22,138,16,23,194,1,28,248,22,134,16,23, -194,2,90,144,42,11,89,146,42,39,11,248,22,131,16,249,22,136,16,250,80, -144,60,43,42,248,22,151,16,2,56,11,11,248,22,151,16,2,57,86,95,23, -195,1,23,194,1,248,22,138,16,249,22,136,16,23,199,1,23,196,1,27,250, -80,144,55,43,42,248,22,151,16,2,56,23,197,1,10,28,23,193,2,248,22, -138,16,23,194,1,11,28,23,193,2,249,22,80,248,22,138,16,249,22,136,16, -23,198,1,247,22,152,16,27,248,22,163,20,23,198,1,28,248,22,88,23,194, -2,9,27,248,80,144,55,56,42,248,22,81,23,196,2,28,23,193,2,249,22, -80,248,22,138,16,249,22,136,16,23,198,1,247,22,152,16,248,80,144,57,8, -53,42,248,22,163,20,23,198,1,86,94,23,193,1,248,80,144,55,8,53,42, -248,22,163,20,23,196,1,86,94,23,193,1,27,248,22,163,20,23,196,1,28, -248,22,88,23,194,2,9,27,248,80,144,53,56,42,248,22,81,23,196,2,28, -23,193,2,249,22,80,248,22,138,16,249,22,136,16,23,198,1,247,22,152,16, -248,80,144,55,8,53,42,248,22,163,20,23,198,1,86,94,23,193,1,248,80, -144,53,8,53,42,248,22,163,20,23,196,1,28,193,249,22,80,195,194,192,27, -20,13,144,80,144,40,46,40,26,9,80,144,49,47,40,249,22,31,11,80,144, -51,46,40,22,148,15,10,22,155,15,10,22,156,15,10,22,157,15,10,248,22, -148,6,23,196,2,28,248,22,148,7,23,194,2,12,86,94,248,22,177,9,23, -194,1,27,20,13,144,80,144,41,46,40,26,9,80,144,50,47,40,249,22,31, -11,80,144,52,46,40,22,148,15,10,22,155,15,10,22,156,15,10,22,157,15, -10,248,22,148,6,23,197,2,28,248,22,148,7,23,194,2,12,86,94,248,22, -177,9,23,194,1,27,20,13,144,80,144,42,46,40,26,9,80,144,51,47,40, -249,22,31,11,80,144,53,46,40,22,148,15,10,22,155,15,10,22,156,15,10, -22,157,15,10,248,22,148,6,23,198,2,28,248,22,148,7,23,194,2,12,86, -94,248,22,177,9,23,194,1,248,80,144,43,8,54,42,197,86,94,249,22,139, -7,247,22,172,5,23,196,2,248,22,163,6,249,22,136,4,39,249,22,184,3, -28,23,198,2,23,198,1,86,94,23,198,1,39,23,199,1,27,248,22,189,5, -28,23,198,2,86,95,23,197,1,23,196,1,23,198,1,86,94,23,198,1,27, -250,80,144,45,43,42,248,22,151,16,2,56,11,11,27,248,22,139,4,23,199, -1,27,28,23,194,2,23,194,1,86,94,23,194,1,39,27,248,22,139,4,23, -202,1,249,22,140,6,23,198,1,20,20,95,88,148,8,36,39,51,11,9,224, -3,2,33,190,2,23,195,1,23,196,1,248,80,144,41,8,54,42,193,144,39, -20,121,145,2,1,39,16,1,11,16,0,20,27,15,56,9,2,2,2,2,29, -11,11,11,11,11,11,11,9,9,11,11,11,10,46,80,143,39,39,20,121,145, -2,1,54,16,40,2,3,2,4,2,5,2,6,2,7,2,8,2,9,30,2, -11,1,20,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,45,107, -101,121,11,6,30,2,11,1,23,101,120,116,101,110,100,45,112,97,114,97,109, -101,116,101,114,105,122,97,116,105,111,110,11,4,2,12,2,13,2,14,2,15, -2,16,2,17,2,18,30,2,11,1,19,99,97,99,104,101,45,99,111,110,102, -105,103,117,114,97,116,105,111,110,11,1,2,19,2,20,2,21,2,22,2,23, -2,24,2,25,2,26,2,27,2,28,2,29,30,2,11,1,21,101,120,99,101, -112,116,105,111,110,45,104,97,110,100,108,101,114,45,107,101,121,11,3,2,30, -2,31,2,32,2,33,2,34,2,35,2,36,2,37,2,38,2,39,2,40,16, -0,40,42,39,16,0,39,16,19,2,13,2,14,2,12,2,25,2,4,2,35, -2,23,2,24,2,19,2,29,2,33,2,21,2,22,2,31,2,27,2,30,2, -32,2,36,2,28,58,11,11,11,16,17,2,9,2,17,2,15,2,40,2,16, -2,7,2,26,2,39,2,18,2,20,2,38,2,5,2,34,2,8,2,37,2, -3,2,6,16,17,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, -11,16,17,2,9,2,17,2,15,2,40,2,16,2,7,2,26,2,39,2,18, -2,20,2,38,2,5,2,34,2,8,2,37,2,3,2,6,56,56,40,12,11, -11,16,0,16,0,16,0,39,39,11,12,11,11,16,0,16,0,16,0,39,39, -16,51,20,15,16,2,32,0,88,148,8,36,40,48,11,2,3,222,33,78,80, -144,39,39,40,20,15,16,2,249,22,155,7,7,92,7,92,80,144,39,40,40, -20,15,16,2,88,148,8,36,40,57,41,2,5,223,0,33,83,80,144,39,41, -40,20,15,16,2,88,148,8,36,41,61,41,2,6,223,0,33,85,80,144,39, -42,40,20,15,16,2,20,26,96,2,7,88,148,8,36,42,8,24,8,32,9, -223,0,33,92,88,148,8,36,41,50,55,9,223,0,33,93,88,148,8,36,40, -49,55,9,223,0,33,94,80,144,39,43,40,20,15,16,2,27,248,22,163,16, -248,22,167,8,27,28,249,22,169,9,247,22,180,8,2,43,6,1,1,59,6, -1,1,58,250,22,137,8,6,14,14,40,91,94,126,97,93,42,41,126,97,40, -46,42,41,23,196,2,23,196,1,88,148,8,36,41,51,11,2,8,223,0,33, -98,80,144,39,44,40,20,15,16,2,88,148,39,40,8,38,8,128,6,2,9, -223,0,33,99,80,144,39,45,40,20,15,16,2,32,0,88,148,8,36,41,50, -11,2,12,222,33,100,80,144,39,48,40,20,15,16,2,32,0,88,148,8,36, -42,51,11,2,13,222,33,102,80,144,39,49,40,20,15,16,2,32,0,88,148, -8,36,41,49,11,2,14,222,33,103,80,144,39,50,40,20,15,16,2,88,148, -39,42,53,8,128,128,2,15,223,0,33,105,80,144,39,51,40,20,15,16,2, -88,148,39,44,55,8,128,128,2,17,223,0,33,107,80,144,39,53,40,20,15, -16,2,88,148,39,39,56,55,9,223,0,33,108,80,144,39,8,40,42,20,15, -16,2,88,148,39,39,47,16,4,39,40,8,128,4,39,2,18,223,0,33,109, -80,144,39,54,40,20,15,16,2,88,148,39,39,56,55,9,223,0,33,110,80, -144,39,8,41,42,20,15,16,2,88,148,39,39,47,16,4,39,40,8,128,8, -39,2,20,223,0,33,111,80,144,39,57,40,20,15,16,2,88,148,8,36,39, -8,38,8,128,6,9,223,0,33,112,80,144,39,8,42,42,20,15,16,2,88, -148,8,36,40,50,16,4,39,39,8,128,16,39,2,21,223,0,33,113,80,144, -39,58,40,20,15,16,2,20,28,143,32,0,88,148,39,40,48,11,2,22,222, -33,114,32,0,88,148,39,40,48,11,2,22,222,33,115,80,144,39,59,40,20, -15,16,2,88,148,8,36,40,50,8,240,0,128,0,0,2,23,223,0,33,116, -80,144,39,60,40,20,15,16,2,88,148,39,39,56,55,9,223,0,33,117,80, -144,39,8,43,42,20,15,16,2,88,148,8,36,40,51,16,4,39,40,8,128, -32,39,2,24,223,0,33,118,80,144,39,61,40,20,15,16,2,88,148,39,40, -56,55,2,19,223,0,33,119,80,144,39,56,40,20,15,16,2,88,148,8,36, -41,58,16,4,8,240,0,128,0,0,8,32,8,128,64,39,2,50,223,0,33, -120,80,144,39,8,44,42,20,15,16,2,88,148,8,36,42,52,16,4,39,39, -8,128,64,39,2,25,223,0,33,121,80,144,39,8,23,40,20,15,16,2,88, -148,39,39,56,55,9,223,0,33,122,80,144,39,8,45,42,20,15,16,2,88, -148,8,36,39,57,16,4,8,240,0,128,0,0,8,137,2,8,128,128,39,2, -26,223,0,33,123,80,144,39,8,24,40,20,15,16,2,247,22,140,2,80,144, -39,8,25,40,20,15,16,2,248,22,16,67,115,116,97,109,112,80,144,39,8, -26,40,20,15,16,2,88,148,39,40,49,8,240,0,0,0,4,9,223,0,33, -125,80,144,39,8,46,42,20,15,16,2,88,148,39,41,51,16,4,39,8,128, -80,8,240,0,64,0,0,39,2,29,223,0,33,133,2,80,144,39,8,27,40, -20,15,16,2,32,0,88,148,8,36,40,48,11,2,30,222,33,134,2,80,144, -39,8,29,40,20,15,16,2,88,148,8,36,42,48,8,240,0,0,0,2,74, -109,97,107,101,45,104,97,110,100,108,101,114,223,0,33,136,2,80,144,39,8, -47,42,20,15,16,2,88,148,39,40,47,16,4,8,128,6,8,128,104,8,240, -0,128,0,0,39,2,31,223,0,33,146,2,80,144,39,8,30,40,20,15,16, -2,88,148,39,41,59,16,2,39,8,240,0,128,0,0,2,32,223,0,33,148, -2,80,144,39,8,31,40,20,15,16,2,88,148,8,36,41,61,16,4,39,8, -240,0,64,0,0,39,40,2,50,223,0,33,149,2,80,144,39,8,48,42,20, -15,16,2,88,148,39,47,8,33,16,4,39,39,40,41,67,99,108,111,111,112, -223,0,33,156,2,80,144,39,8,49,42,20,15,16,2,88,148,39,44,8,25, -16,4,39,8,240,0,192,0,0,39,42,2,16,223,0,33,157,2,80,144,39, -52,40,20,15,16,2,88,148,39,42,58,16,4,47,39,43,39,2,33,223,0, -33,162,2,80,144,39,8,32,40,20,15,16,2,32,0,88,148,39,42,53,11, -2,35,222,33,163,2,80,144,39,8,34,40,20,15,16,2,32,0,88,148,8, -36,44,8,27,11,2,36,222,33,168,2,80,144,39,8,35,40,20,15,16,2, -20,28,143,32,0,88,148,8,36,41,55,11,2,37,222,33,171,2,88,148,8, -100,41,52,16,4,39,39,47,39,2,37,223,0,33,173,2,80,144,39,8,36, -40,20,15,16,2,20,28,143,32,0,88,148,8,36,41,55,11,2,34,222,33, -178,2,88,148,8,100,41,52,16,4,39,39,47,39,2,34,223,0,33,179,2, -80,144,39,8,33,40,20,15,16,2,20,28,143,32,0,88,148,39,40,47,11, -2,38,222,33,180,2,32,0,88,148,39,40,47,11,2,38,222,33,181,2,80, -144,39,8,37,40,20,15,16,2,88,148,8,36,40,58,16,4,55,41,39,43, -2,50,223,0,33,182,2,80,144,39,8,50,42,20,15,16,2,88,148,8,36, -40,58,16,4,55,41,39,47,2,50,223,0,33,183,2,80,144,39,8,51,42, -20,15,16,2,88,148,39,39,56,55,9,223,0,33,184,2,80,144,39,8,52, -42,20,15,16,2,88,148,8,36,40,8,23,16,4,55,41,39,8,32,2,50, -223,0,33,185,2,80,144,39,8,53,42,20,15,16,2,20,26,96,2,39,88, -148,39,39,60,16,4,8,32,8,140,2,39,43,9,223,0,33,186,2,88,148, -39,40,61,16,4,8,32,8,140,2,39,47,9,223,0,33,187,2,88,148,39, -41,8,30,16,4,8,48,8,139,2,39,8,48,9,223,0,33,188,2,80,144, -39,8,38,40,20,15,16,2,88,148,8,36,40,60,16,4,8,128,6,39,39, -8,64,2,50,223,0,33,189,2,80,144,39,8,54,42,20,15,16,2,88,148, -8,36,42,56,16,4,55,39,39,8,64,2,40,223,0,33,191,2,80,144,39, -8,39,40,95,29,94,2,10,70,35,37,107,101,114,110,101,108,11,29,94,2, -10,71,35,37,109,105,110,45,115,116,120,11,2,11,9,9,9,39,9,0}; - EVAL_ONE_SIZED_STR((char *)expr, 19759); +247,22,152,16,248,80,144,47,8,53,42,248,22,164,20,23,198,1,86,94,23, +193,1,248,80,144,45,8,53,42,248,22,164,20,23,196,1,27,247,22,159,16, +27,248,80,144,42,58,42,247,80,144,42,57,42,249,80,144,43,44,41,28,23, +196,2,27,249,22,175,8,247,22,174,8,2,75,28,192,249,22,165,8,194,7, +63,2,66,2,66,250,80,144,46,8,23,42,23,198,2,2,76,27,28,23,200, +1,250,22,128,16,248,22,151,16,2,61,250,22,158,2,23,205,1,2,59,247, +22,171,8,2,77,86,94,23,199,1,11,27,248,80,144,49,8,50,42,250,22, +94,9,248,22,90,248,22,151,16,2,55,9,28,193,249,22,80,195,194,192,27, +247,22,159,16,27,248,80,144,42,58,42,247,80,144,42,57,42,249,80,144,43, +44,41,28,23,196,2,27,249,22,175,8,247,22,174,8,2,75,28,192,249,22, +165,8,194,7,63,2,66,2,66,250,80,144,46,8,23,42,23,198,2,2,76, +27,28,23,200,1,250,22,128,16,248,22,151,16,2,61,250,22,158,2,23,205, +1,2,59,247,22,171,8,2,77,86,94,23,199,1,11,27,248,80,144,49,8, +51,42,250,22,94,23,207,1,248,22,90,248,22,151,16,2,55,9,28,193,249, +22,80,195,194,192,27,247,22,159,16,27,248,80,144,42,58,42,249,80,144,44, +55,40,40,80,144,44,8,52,42,249,80,144,43,44,41,28,23,196,2,27,249, +22,175,8,247,22,174,8,2,75,28,192,249,22,165,8,194,7,63,2,66,2, +66,250,80,144,46,8,23,42,23,198,2,2,76,27,28,23,200,1,250,22,128, +16,248,22,151,16,2,61,250,22,158,2,23,205,1,2,59,247,22,171,8,2, +77,86,94,23,199,1,11,27,27,250,22,94,23,207,1,248,22,90,248,22,151, +16,2,55,23,208,1,28,248,22,88,23,194,2,9,27,27,248,22,81,23,196, +2,28,248,22,135,16,23,194,2,248,22,138,16,23,194,1,28,248,22,134,16, +23,194,2,90,144,42,11,89,146,42,39,11,248,22,131,16,249,22,136,16,250, +80,144,60,43,42,248,22,151,16,2,56,11,11,248,22,151,16,2,57,86,95, +23,195,1,23,194,1,248,22,138,16,249,22,136,16,23,199,1,23,196,1,27, +250,80,144,55,43,42,248,22,151,16,2,56,23,197,1,10,28,23,193,2,248, +22,138,16,23,194,1,11,28,23,193,2,249,22,80,248,22,138,16,249,22,136, +16,23,198,1,247,22,152,16,27,248,22,164,20,23,198,1,28,248,22,88,23, +194,2,9,27,248,80,144,55,56,42,248,22,81,23,196,2,28,23,193,2,249, +22,80,248,22,138,16,249,22,136,16,23,198,1,247,22,152,16,248,80,144,57, +8,53,42,248,22,164,20,23,198,1,86,94,23,193,1,248,80,144,55,8,53, +42,248,22,164,20,23,196,1,86,94,23,193,1,27,248,22,164,20,23,196,1, +28,248,22,88,23,194,2,9,27,248,80,144,53,56,42,248,22,81,23,196,2, +28,23,193,2,249,22,80,248,22,138,16,249,22,136,16,23,198,1,247,22,152, +16,248,80,144,55,8,53,42,248,22,164,20,23,198,1,86,94,23,193,1,248, +80,144,53,8,53,42,248,22,164,20,23,196,1,28,193,249,22,80,195,194,192, +27,20,13,144,80,144,40,46,40,26,9,80,144,49,47,40,249,22,31,11,80, +144,51,46,40,22,148,15,10,22,155,15,10,22,156,15,10,22,157,15,10,248, +22,148,6,23,196,2,28,248,22,148,7,23,194,2,12,86,94,248,22,177,9, +23,194,1,27,20,13,144,80,144,41,46,40,26,9,80,144,50,47,40,249,22, +31,11,80,144,52,46,40,22,148,15,10,22,155,15,10,22,156,15,10,22,157, +15,10,248,22,148,6,23,197,2,28,248,22,148,7,23,194,2,12,86,94,248, +22,177,9,23,194,1,27,20,13,144,80,144,42,46,40,26,9,80,144,51,47, +40,249,22,31,11,80,144,53,46,40,22,148,15,10,22,155,15,10,22,156,15, +10,22,157,15,10,248,22,148,6,23,198,2,28,248,22,148,7,23,194,2,12, +86,94,248,22,177,9,23,194,1,248,80,144,43,8,54,42,197,86,94,249,22, +139,7,247,22,172,5,23,196,2,248,22,163,6,249,22,136,4,39,249,22,184, +3,28,23,198,2,23,198,1,86,94,23,198,1,39,23,199,1,27,248,22,189, +5,28,23,198,2,86,95,23,197,1,23,196,1,23,198,1,86,94,23,198,1, +27,250,80,144,45,43,42,248,22,151,16,2,56,11,11,27,248,22,139,4,23, +199,1,27,28,23,194,2,23,194,1,86,94,23,194,1,39,27,248,22,139,4, +23,202,1,249,22,140,6,23,198,1,20,20,95,88,148,8,36,39,51,11,9, +224,3,2,33,190,2,23,195,1,23,196,1,248,80,144,41,8,54,42,193,144, +39,20,121,145,2,1,39,16,1,11,16,0,20,27,15,56,9,2,2,2,2, +29,11,11,11,11,11,11,11,9,9,11,11,11,10,46,80,143,39,39,20,121, +145,2,1,54,16,40,2,3,2,4,2,5,2,6,2,7,2,8,2,9,30, +2,11,1,20,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,45, +107,101,121,11,6,30,2,11,1,23,101,120,116,101,110,100,45,112,97,114,97, +109,101,116,101,114,105,122,97,116,105,111,110,11,4,2,12,2,13,2,14,2, +15,2,16,2,17,2,18,30,2,11,1,19,99,97,99,104,101,45,99,111,110, +102,105,103,117,114,97,116,105,111,110,11,1,2,19,2,20,2,21,2,22,2, +23,2,24,2,25,2,26,2,27,2,28,2,29,30,2,11,1,21,101,120,99, +101,112,116,105,111,110,45,104,97,110,100,108,101,114,45,107,101,121,11,3,2, +30,2,31,2,32,2,33,2,34,2,35,2,36,2,37,2,38,2,39,2,40, +16,0,40,42,39,16,0,39,16,19,2,13,2,14,2,12,2,25,2,4,2, +35,2,23,2,24,2,19,2,29,2,33,2,21,2,22,2,31,2,27,2,30, +2,32,2,36,2,28,58,11,11,11,16,17,2,9,2,17,2,15,2,40,2, +16,2,7,2,26,2,39,2,18,2,20,2,38,2,5,2,34,2,8,2,37, +2,3,2,6,16,17,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, +11,11,16,17,2,9,2,17,2,15,2,40,2,16,2,7,2,26,2,39,2, +18,2,20,2,38,2,5,2,34,2,8,2,37,2,3,2,6,56,56,40,12, +11,11,16,0,16,0,16,0,39,39,11,12,11,11,16,0,16,0,16,0,39, +39,16,51,20,15,16,2,32,0,88,148,8,36,40,48,11,2,3,222,33,78, +80,144,39,39,40,20,15,16,2,249,22,155,7,7,92,7,92,80,144,39,40, +40,20,15,16,2,88,148,8,36,40,57,41,2,5,223,0,33,83,80,144,39, +41,40,20,15,16,2,88,148,8,36,41,61,41,2,6,223,0,33,85,80,144, +39,42,40,20,15,16,2,20,26,96,2,7,88,148,8,36,42,8,24,8,32, +9,223,0,33,92,88,148,8,36,41,50,55,9,223,0,33,93,88,148,8,36, +40,49,55,9,223,0,33,94,80,144,39,43,40,20,15,16,2,27,248,22,163, +16,248,22,167,8,27,28,249,22,169,9,247,22,180,8,2,43,6,1,1,59, +6,1,1,58,250,22,137,8,6,14,14,40,91,94,126,97,93,42,41,126,97, +40,46,42,41,23,196,2,23,196,1,88,148,8,36,41,51,11,2,8,223,0, +33,98,80,144,39,44,40,20,15,16,2,88,148,39,40,8,38,8,128,6,2, +9,223,0,33,99,80,144,39,45,40,20,15,16,2,32,0,88,148,8,36,41, +50,11,2,12,222,33,100,80,144,39,48,40,20,15,16,2,32,0,88,148,8, +36,42,51,11,2,13,222,33,102,80,144,39,49,40,20,15,16,2,32,0,88, +148,8,36,41,49,11,2,14,222,33,103,80,144,39,50,40,20,15,16,2,88, +148,39,42,53,8,128,128,2,15,223,0,33,105,80,144,39,51,40,20,15,16, +2,88,148,39,44,55,8,128,128,2,17,223,0,33,107,80,144,39,53,40,20, +15,16,2,88,148,39,39,56,55,9,223,0,33,108,80,144,39,8,40,42,20, +15,16,2,88,148,39,39,47,16,4,39,40,8,128,4,39,2,18,223,0,33, +109,80,144,39,54,40,20,15,16,2,88,148,39,39,56,55,9,223,0,33,110, +80,144,39,8,41,42,20,15,16,2,88,148,39,39,47,16,4,39,40,8,128, +8,39,2,20,223,0,33,111,80,144,39,57,40,20,15,16,2,88,148,8,36, +39,8,38,8,128,6,9,223,0,33,112,80,144,39,8,42,42,20,15,16,2, +88,148,8,36,40,50,16,4,39,39,8,128,16,39,2,21,223,0,33,113,80, +144,39,58,40,20,15,16,2,20,28,143,32,0,88,148,39,40,48,11,2,22, +222,33,114,32,0,88,148,39,40,48,11,2,22,222,33,115,80,144,39,59,40, +20,15,16,2,88,148,8,36,40,50,8,240,0,128,0,0,2,23,223,0,33, +116,80,144,39,60,40,20,15,16,2,88,148,39,39,56,55,9,223,0,33,117, +80,144,39,8,43,42,20,15,16,2,88,148,8,36,40,51,16,4,39,40,8, +128,32,39,2,24,223,0,33,118,80,144,39,61,40,20,15,16,2,88,148,39, +40,56,55,2,19,223,0,33,119,80,144,39,56,40,20,15,16,2,88,148,8, +36,41,58,16,4,8,240,0,128,0,0,8,32,8,128,64,39,2,50,223,0, +33,120,80,144,39,8,44,42,20,15,16,2,88,148,8,36,42,52,16,4,39, +39,8,128,64,39,2,25,223,0,33,121,80,144,39,8,23,40,20,15,16,2, +88,148,39,39,56,55,9,223,0,33,122,80,144,39,8,45,42,20,15,16,2, +88,148,8,36,39,57,16,4,8,240,0,128,0,0,8,137,2,8,128,128,39, +2,26,223,0,33,123,80,144,39,8,24,40,20,15,16,2,247,22,140,2,80, +144,39,8,25,40,20,15,16,2,248,22,16,67,115,116,97,109,112,80,144,39, +8,26,40,20,15,16,2,88,148,39,40,49,8,240,0,0,0,4,9,223,0, +33,125,80,144,39,8,46,42,20,15,16,2,88,148,39,41,51,16,4,39,8, +128,80,8,240,0,64,0,0,39,2,29,223,0,33,133,2,80,144,39,8,27, +40,20,15,16,2,32,0,88,148,8,36,40,48,11,2,30,222,33,134,2,80, +144,39,8,29,40,20,15,16,2,88,148,8,36,42,48,8,240,0,0,0,2, +74,109,97,107,101,45,104,97,110,100,108,101,114,223,0,33,136,2,80,144,39, +8,47,42,20,15,16,2,88,148,39,40,47,16,4,8,128,6,8,128,104,8, +240,0,128,0,0,39,2,31,223,0,33,146,2,80,144,39,8,30,40,20,15, +16,2,88,148,39,41,59,16,2,39,8,240,0,128,0,0,2,32,223,0,33, +148,2,80,144,39,8,31,40,20,15,16,2,88,148,8,36,41,61,16,4,39, +8,240,0,64,0,0,39,40,2,50,223,0,33,149,2,80,144,39,8,48,42, +20,15,16,2,88,148,39,47,8,33,16,4,39,39,40,41,67,99,108,111,111, +112,223,0,33,156,2,80,144,39,8,49,42,20,15,16,2,88,148,39,44,8, +25,16,4,39,8,240,0,192,0,0,39,42,2,16,223,0,33,157,2,80,144, +39,52,40,20,15,16,2,88,148,39,42,58,16,4,47,39,43,39,2,33,223, +0,33,162,2,80,144,39,8,32,40,20,15,16,2,32,0,88,148,39,42,53, +11,2,35,222,33,163,2,80,144,39,8,34,40,20,15,16,2,32,0,88,148, +8,36,44,8,27,11,2,36,222,33,168,2,80,144,39,8,35,40,20,15,16, +2,20,28,143,32,0,88,148,8,36,41,55,11,2,37,222,33,171,2,88,148, +8,100,41,52,16,4,39,39,47,39,2,37,223,0,33,173,2,80,144,39,8, +36,40,20,15,16,2,20,28,143,32,0,88,148,8,36,41,55,11,2,34,222, +33,178,2,88,148,8,100,41,52,16,4,39,39,47,39,2,34,223,0,33,179, +2,80,144,39,8,33,40,20,15,16,2,20,28,143,32,0,88,148,39,40,47, +11,2,38,222,33,180,2,32,0,88,148,39,40,47,11,2,38,222,33,181,2, +80,144,39,8,37,40,20,15,16,2,88,148,8,36,40,58,16,4,55,41,39, +43,2,50,223,0,33,182,2,80,144,39,8,50,42,20,15,16,2,88,148,8, +36,40,58,16,4,55,41,39,47,2,50,223,0,33,183,2,80,144,39,8,51, +42,20,15,16,2,88,148,39,39,56,55,9,223,0,33,184,2,80,144,39,8, +52,42,20,15,16,2,88,148,8,36,40,8,23,16,4,55,41,39,8,32,2, +50,223,0,33,185,2,80,144,39,8,53,42,20,15,16,2,20,26,96,2,39, +88,148,39,39,60,16,4,8,32,8,140,2,39,43,9,223,0,33,186,2,88, +148,39,40,61,16,4,8,32,8,140,2,39,47,9,223,0,33,187,2,88,148, +39,41,8,30,16,4,8,48,8,139,2,39,8,48,9,223,0,33,188,2,80, +144,39,8,38,40,20,15,16,2,88,148,8,36,40,60,16,4,8,128,6,39, +39,8,64,2,50,223,0,33,189,2,80,144,39,8,54,42,20,15,16,2,88, +148,8,36,42,56,16,4,55,39,39,8,64,2,40,223,0,33,191,2,80,144, +39,8,39,40,95,29,94,2,10,70,35,37,107,101,114,110,101,108,11,29,94, +2,10,71,35,37,109,105,110,45,115,116,120,11,2,11,9,9,9,39,9,0}; + EVAL_ONE_SIZED_STR((char *)expr, 19760); } { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,9,54,46,50,46,57,48,48,46,57,84,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,1,0,0,8,0, -23,0,48,0,65,0,83,0,105,0,128,0,149,0,171,0,180,0,189,0,196, -0,205,0,212,0,0,0,247,1,0,0,3,1,5,105,110,115,112,48,76,35, -37,112,108,97,99,101,45,115,116,114,117,99,116,1,23,115,116,114,117,99,116, -58,84,72,45,112,108,97,99,101,45,99,104,97,110,110,101,108,78,84,72,45, -112,108,97,99,101,45,99,104,97,110,110,101,108,79,84,72,45,112,108,97,99, -101,45,99,104,97,110,110,101,108,63,1,20,84,72,45,112,108,97,99,101,45, -99,104,97,110,110,101,108,45,114,101,102,1,21,84,72,45,112,108,97,99,101, -45,99,104,97,110,110,101,108,45,115,101,116,33,1,19,84,72,45,112,108,97, -99,101,45,99,104,97,110,110,101,108,45,105,110,1,20,84,72,45,112,108,97, -99,101,45,99,104,97,110,110,101,108,45,111,117,116,249,80,143,41,42,23,196, -1,39,249,80,143,41,42,23,196,1,39,249,80,143,41,42,195,39,249,80,143, -41,42,23,196,1,40,249,80,143,41,42,195,40,144,39,20,121,145,2,1,39, -16,1,11,16,0,20,27,15,56,9,2,2,2,2,29,11,11,11,11,11,11, -11,9,9,11,11,11,10,48,80,143,39,39,20,121,145,2,1,39,16,7,2, -3,2,4,2,5,2,6,2,7,2,8,2,9,16,0,40,42,39,16,0,39, -16,2,2,6,2,7,41,11,11,11,16,5,2,4,2,8,2,9,2,5,2, -3,16,5,11,11,11,11,11,16,5,2,4,2,8,2,9,2,5,2,3,44, -44,40,12,11,11,16,0,16,0,16,0,39,39,11,12,11,11,16,0,16,0, -16,0,39,39,16,3,20,15,16,6,253,22,189,10,2,4,11,41,39,11,248, -22,90,249,22,80,22,175,10,88,148,39,40,48,47,9,223,9,33,10,80,144, -39,39,40,80,144,39,40,40,80,144,39,41,40,80,144,39,42,40,80,144,39, -43,40,20,15,16,2,20,28,143,88,148,39,40,48,47,9,223,0,33,11,88, -148,39,40,48,47,9,223,0,33,12,80,144,39,44,40,20,15,16,2,20,28, -143,88,148,39,40,48,47,9,223,0,33,13,88,148,39,40,48,47,9,223,0, -33,14,80,144,39,45,40,93,29,94,67,113,117,111,116,101,70,35,37,107,101, -114,110,101,108,11,9,9,9,39,9,0}; - EVAL_ONE_SIZED_STR((char *)expr, 577); + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,10,54,46,50,46,57,48,48,46,49,48,84,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,1,0,0,8, +0,23,0,48,0,65,0,83,0,105,0,128,0,149,0,171,0,180,0,189,0, +196,0,205,0,212,0,0,0,247,1,0,0,3,1,5,105,110,115,112,48,76, +35,37,112,108,97,99,101,45,115,116,114,117,99,116,1,23,115,116,114,117,99, +116,58,84,72,45,112,108,97,99,101,45,99,104,97,110,110,101,108,78,84,72, +45,112,108,97,99,101,45,99,104,97,110,110,101,108,79,84,72,45,112,108,97, +99,101,45,99,104,97,110,110,101,108,63,1,20,84,72,45,112,108,97,99,101, +45,99,104,97,110,110,101,108,45,114,101,102,1,21,84,72,45,112,108,97,99, +101,45,99,104,97,110,110,101,108,45,115,101,116,33,1,19,84,72,45,112,108, +97,99,101,45,99,104,97,110,110,101,108,45,105,110,1,20,84,72,45,112,108, +97,99,101,45,99,104,97,110,110,101,108,45,111,117,116,249,80,143,41,42,23, +196,1,39,249,80,143,41,42,23,196,1,39,249,80,143,41,42,195,39,249,80, +143,41,42,23,196,1,40,249,80,143,41,42,195,40,144,39,20,121,145,2,1, +39,16,1,11,16,0,20,27,15,56,9,2,2,2,2,29,11,11,11,11,11, +11,11,9,9,11,11,11,10,48,80,143,39,39,20,121,145,2,1,39,16,7, +2,3,2,4,2,5,2,6,2,7,2,8,2,9,16,0,40,42,39,16,0, +39,16,2,2,6,2,7,41,11,11,11,16,5,2,4,2,8,2,9,2,5, +2,3,16,5,11,11,11,11,11,16,5,2,4,2,8,2,9,2,5,2,3, +44,44,40,12,11,11,16,0,16,0,16,0,39,39,11,12,11,11,16,0,16, +0,16,0,39,39,16,3,20,15,16,6,253,22,189,10,2,4,11,41,39,11, +248,22,90,249,22,80,22,175,10,88,148,39,40,48,47,9,223,9,33,10,80, +144,39,39,40,80,144,39,40,40,80,144,39,41,40,80,144,39,42,40,80,144, +39,43,40,20,15,16,2,20,28,143,88,148,39,40,48,47,9,223,0,33,11, +88,148,39,40,48,47,9,223,0,33,12,80,144,39,44,40,20,15,16,2,20, +28,143,88,148,39,40,48,47,9,223,0,33,13,88,148,39,40,48,47,9,223, +0,33,14,80,144,39,45,40,93,29,94,67,113,117,111,116,101,70,35,37,107, +101,114,110,101,108,11,9,9,9,39,9,0}; + EVAL_ONE_SIZED_STR((char *)expr, 578); } { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,9,54,46,50,46,57,48,48,46,57,84,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,1,0,0,8,0, -15,0,26,0,53,0,59,0,73,0,86,0,112,0,129,0,151,0,159,0,171, -0,186,0,202,0,220,0,241,0,253,0,13,1,36,1,60,1,72,1,103,1, -108,1,113,1,131,1,137,1,142,1,151,1,156,1,162,1,167,1,171,1,186, -1,193,1,198,1,202,1,207,1,214,1,225,1,232,1,240,1,87,2,122,2, -225,2,4,3,98,3,133,3,227,3,6,4,7,11,37,11,88,11,163,11,179, -11,195,11,209,11,225,11,44,12,60,12,76,12,92,12,167,12,74,13,90,13, -165,13,160,14,40,15,115,15,22,16,35,16,188,16,116,17,159,17,241,17,113, -18,174,18,182,18,193,18,227,19,74,20,102,20,115,20,36,21,43,21,203,21, -223,21,67,22,89,22,99,22,113,22,151,22,250,22,254,22,5,23,211,23,104, -32,157,32,181,32,205,32,0,0,253,36,0,0,3,1,5,105,110,115,112,48, -68,35,37,98,111,111,116,72,100,108,108,45,115,117,102,102,105,120,1,25,100, -101,102,97,117,108,116,45,108,111,97,100,47,117,115,101,45,99,111,109,112,105, -108,101,100,67,113,117,111,116,101,29,94,2,5,70,35,37,112,97,114,97,109, -122,11,29,94,2,5,69,35,37,117,116,105,108,115,11,1,24,45,109,111,100, -117,108,101,45,104,97,115,104,45,116,97,98,108,101,45,116,97,98,108,101,78, -114,101,103,105,115,116,101,114,45,122,111,45,112,97,116,104,1,20,100,101,102, -97,117,108,116,45,114,101,97,100,101,114,45,103,117,97,114,100,69,67,65,67, -72,69,45,78,73,45,112,97,116,104,45,99,97,99,104,101,76,112,97,116,104, -45,99,97,99,104,101,45,103,101,116,77,112,97,116,104,45,99,97,99,104,101, -45,115,101,116,33,79,45,108,111,97,100,105,110,103,45,102,105,108,101,110,97, -109,101,1,19,45,108,111,97,100,105,110,103,45,112,114,111,109,112,116,45,116, -97,103,73,45,112,114,101,118,45,114,101,108,116,111,77,45,112,114,101,118,45, -114,101,108,116,111,45,100,105,114,1,21,115,112,108,105,116,45,114,101,108,97, -116,105,118,101,45,115,116,114,105,110,103,1,22,102,111,114,109,97,116,45,115, -111,117,114,99,101,45,108,111,99,97,116,105,111,110,73,111,114,105,103,45,112, -97,114,97,109,122,1,29,115,116,97,110,100,97,114,100,45,109,111,100,117,108, -101,45,110,97,109,101,45,114,101,115,111,108,118,101,114,66,98,111,111,116,66, -115,101,97,108,79,108,111,97,100,47,117,115,101,45,99,111,109,112,105,108,101, -100,5,4,46,114,107,116,66,115,97,109,101,6,6,6,110,97,116,105,118,101, -5,3,46,122,111,67,105,108,111,111,112,66,108,111,111,112,65,108,105,98,6, -12,12,109,111,100,117,108,101,45,112,97,116,104,63,68,115,117,98,109,111,100, -6,2,2,46,46,6,1,1,46,66,102,105,108,101,68,112,108,97,110,101,116, -6,8,8,109,97,105,110,46,114,107,116,6,4,4,46,114,107,116,69,105,103, -110,111,114,101,100,27,252,22,128,16,28,249,22,169,9,23,201,2,2,27,86, -94,23,199,1,23,200,1,28,248,22,133,16,23,200,2,249,22,128,16,23,202, -1,23,201,1,249,80,144,50,45,42,23,202,1,23,201,1,23,203,1,2,28, -247,22,181,8,249,80,144,50,46,42,23,203,1,80,144,50,39,41,27,250,22, -146,16,196,11,32,0,88,148,8,36,39,44,11,9,222,11,28,192,249,22,80, -195,194,11,249,22,5,20,20,96,88,148,8,36,40,57,8,129,3,9,226,5, -4,3,6,33,42,23,199,1,23,196,1,23,197,1,23,195,1,27,252,22,128, -16,28,249,22,169,9,23,201,2,2,27,86,94,23,199,1,23,200,1,28,248, -22,133,16,23,200,2,249,22,128,16,23,202,1,23,201,1,249,80,144,50,45, -42,23,202,1,23,201,1,23,203,1,2,28,247,22,181,8,249,80,144,50,46, -42,23,203,1,80,144,50,39,41,27,250,22,146,16,196,11,32,0,88,148,8, -36,39,44,11,9,222,11,28,192,249,22,80,195,194,11,249,22,5,20,20,96, -88,148,8,36,40,57,8,129,3,9,226,5,4,3,6,33,44,23,199,1,23, -196,1,23,197,1,23,195,1,27,250,22,128,16,28,249,22,169,9,23,199,2, -2,27,86,94,23,197,1,23,198,1,28,248,22,133,16,23,198,2,249,22,128, -16,23,200,1,23,199,1,249,80,144,48,45,42,23,200,1,23,199,1,23,201, -1,249,80,144,48,46,42,23,201,1,2,29,27,250,22,146,16,196,11,32,0, -88,148,8,36,39,44,11,9,222,11,28,192,249,22,80,195,194,11,249,22,5, -20,20,96,88,148,8,36,40,55,8,128,3,9,226,5,4,3,6,33,46,23, -199,1,23,196,1,23,197,1,23,195,1,27,250,22,128,16,28,249,22,169,9, -23,199,2,2,27,86,94,23,197,1,23,198,1,28,248,22,133,16,23,198,2, -249,22,128,16,23,200,1,23,199,1,249,80,144,48,45,42,23,200,1,23,199, -1,23,201,1,249,80,144,48,46,42,23,201,1,2,29,27,250,22,146,16,196, -11,32,0,88,148,8,36,39,44,11,9,222,11,28,192,249,22,80,195,194,11, -249,22,5,20,20,96,88,148,8,36,40,55,8,128,3,9,226,5,4,3,6, -33,48,23,199,1,23,196,1,23,197,1,23,195,1,86,95,28,248,80,144,40, -43,42,23,195,2,12,250,22,181,11,2,25,6,12,12,112,97,116,104,45,115, -116,114,105,110,103,63,23,197,2,28,28,23,195,2,28,248,22,64,23,196,2, -10,28,248,22,89,23,196,2,28,249,22,130,4,248,22,93,23,198,2,40,28, -28,248,22,64,248,22,81,23,197,2,10,248,22,167,9,248,22,162,20,23,197, -2,249,22,4,22,64,248,22,163,20,23,198,2,11,11,11,10,12,250,22,181, -11,2,25,6,71,71,40,111,114,47,99,32,35,102,32,115,121,109,98,111,108, -63,32,40,99,111,110,115,47,99,32,40,111,114,47,99,32,35,102,32,115,121, -109,98,111,108,63,41,32,40,110,111,110,45,101,109,112,116,121,45,108,105,115, -116,111,102,32,115,121,109,98,111,108,63,41,41,41,23,197,2,27,28,23,196, -2,247,22,191,4,11,27,28,23,194,2,250,22,158,2,80,143,44,44,248,22, -128,17,247,22,144,14,11,11,27,28,23,194,2,250,22,158,2,248,22,82,23, -198,2,23,198,2,11,11,28,23,193,2,86,96,23,197,1,23,195,1,23,194, -1,20,13,144,80,144,42,41,40,250,80,144,45,42,40,249,22,31,11,80,144, -47,41,40,22,128,5,248,22,102,23,197,2,27,248,22,111,23,195,2,20,13, -144,80,144,43,41,40,250,80,144,46,42,40,249,22,31,11,80,144,48,41,40, -22,177,5,28,248,22,174,15,23,197,2,23,196,1,86,94,23,196,1,247,22, -152,16,249,247,22,175,5,248,22,162,20,23,197,1,23,201,1,86,94,23,193, -1,27,28,248,22,135,16,23,199,2,23,198,2,27,247,22,177,5,28,192,249, -22,136,16,23,201,2,194,23,199,2,90,144,42,11,89,146,42,39,11,248,22, -131,16,23,202,1,86,94,23,195,1,90,144,41,11,89,146,41,39,11,28,23, -204,2,27,248,22,179,15,23,198,2,19,248,22,147,8,194,28,28,249,22,132, -4,23,195,4,43,249,22,150,8,2,26,249,22,153,8,197,249,22,184,3,23, -199,4,43,11,249,22,7,23,200,2,248,22,183,15,249,22,154,8,250,22,153, -8,201,39,249,22,184,3,23,203,4,43,5,3,46,115,115,249,22,7,23,200, -2,11,2,249,22,7,23,198,2,11,27,28,249,22,169,9,23,196,2,23,199, -2,23,199,2,249,22,128,16,23,198,2,23,196,2,27,28,23,196,2,28,249, -22,169,9,23,198,2,23,200,1,23,200,1,86,94,23,200,1,249,22,128,16, -23,199,2,23,198,2,86,94,23,198,1,11,27,28,249,22,169,9,23,200,2, -70,114,101,108,97,116,105,118,101,86,94,23,198,1,2,27,23,198,1,27,247, -22,157,16,27,247,22,158,16,27,250,22,146,16,23,201,2,11,32,0,88,148, -8,36,39,44,11,9,222,11,27,28,23,194,2,249,22,80,23,201,2,23,196, -1,86,94,23,194,1,11,27,28,23,199,2,28,23,194,2,11,27,250,22,146, -16,23,203,2,11,32,0,88,148,8,36,39,44,11,9,222,11,28,192,249,22, -80,23,202,2,194,11,11,27,28,23,195,2,23,195,2,23,194,2,27,28,23, -196,2,23,196,2,248,22,167,9,23,196,2,27,28,23,205,2,28,23,196,2, -86,94,23,197,1,23,196,2,248,22,167,9,23,198,1,11,27,28,23,195,2, -27,249,22,5,88,148,39,40,51,8,129,3,9,226,24,15,12,11,33,43,23, -203,2,27,28,23,198,2,11,193,28,192,192,28,193,28,23,198,2,28,249,22, -132,4,248,22,82,196,248,22,82,23,201,2,193,11,11,11,11,28,23,193,2, -86,105,23,213,1,23,212,1,23,206,1,23,205,1,23,204,1,23,203,1,23, -201,1,23,200,1,23,197,1,23,196,1,23,195,1,23,194,1,20,13,144,80, -144,60,41,40,250,80,144,8,24,42,40,249,22,31,11,80,144,8,26,41,40, -22,128,5,11,20,13,144,80,144,60,41,40,250,80,144,8,24,42,40,249,22, -31,11,80,144,8,26,41,40,22,177,5,28,248,22,174,15,23,206,2,23,205, -1,86,94,23,205,1,247,22,152,16,249,247,22,162,16,248,22,81,23,196,1, -23,218,1,86,94,23,193,1,27,28,23,195,2,27,249,22,5,88,148,39,40, -51,8,129,3,9,226,25,17,13,12,33,45,23,204,2,27,28,23,200,2,11, -193,28,192,192,28,193,28,199,28,249,22,132,4,248,22,82,196,248,22,82,202, -193,11,11,11,11,28,23,193,2,86,103,23,214,1,23,213,1,23,207,1,23, -206,1,23,205,1,23,202,1,23,201,1,23,197,1,23,196,1,23,195,1,20, -13,144,80,144,61,41,40,250,80,144,8,25,42,40,249,22,31,11,80,144,8, -27,41,40,22,128,5,23,207,1,20,13,144,80,144,61,41,40,250,80,144,8, -25,42,40,249,22,31,11,80,144,8,27,41,40,22,177,5,28,248,22,174,15, -23,207,2,23,206,1,86,94,23,206,1,247,22,152,16,249,247,22,162,16,248, -22,81,23,196,1,23,219,1,86,94,23,193,1,27,28,23,197,2,27,249,22, -5,20,20,94,88,148,39,40,51,8,128,3,9,226,26,17,14,13,33,47,23, -210,1,23,205,2,27,28,23,200,2,11,193,28,192,192,28,193,28,23,200,2, -28,249,22,132,4,248,22,82,196,248,22,82,23,203,2,193,11,11,11,86,94, -23,207,1,11,28,23,193,2,86,101,23,208,1,23,206,1,23,205,1,23,203, -1,23,202,1,23,198,1,23,197,1,23,196,1,86,94,27,248,22,81,23,195, -2,28,23,215,2,250,22,156,2,248,22,82,23,219,1,23,219,1,250,22,90, -23,199,1,11,23,211,2,12,20,13,144,80,144,8,23,41,40,250,80,144,8, -26,42,40,249,22,31,11,80,144,8,28,41,40,22,128,5,11,20,13,144,80, -144,8,23,41,40,250,80,144,8,26,42,40,249,22,31,11,80,144,8,28,41, -40,22,177,5,28,248,22,174,15,23,208,2,23,207,1,86,94,23,207,1,247, -22,152,16,249,247,22,175,5,248,22,162,20,23,196,1,23,220,1,86,94,23, -193,1,27,28,23,197,1,27,249,22,5,20,20,95,88,148,39,40,51,8,128, -3,9,226,27,19,15,14,33,49,23,207,1,23,212,1,23,206,1,27,28,23, -201,2,11,193,28,192,192,28,193,28,200,28,249,22,132,4,248,22,82,196,248, -22,82,203,193,11,11,11,86,96,23,209,1,23,204,1,23,203,1,11,28,23, -193,2,86,95,23,207,1,23,198,1,86,94,27,248,22,81,23,195,2,28,23, -216,2,250,22,156,2,248,22,82,23,220,1,23,220,1,250,22,90,23,199,1, -23,213,2,23,212,2,12,20,13,144,80,144,8,24,41,40,250,80,144,8,27, -42,40,249,22,31,11,80,144,8,29,41,40,22,128,5,23,209,1,20,13,144, -80,144,8,24,41,40,250,80,144,8,27,42,40,249,22,31,11,80,144,8,29, -41,40,22,177,5,28,248,22,174,15,23,209,2,23,208,1,86,94,23,208,1, -247,22,152,16,249,247,22,175,5,248,22,162,20,23,196,1,23,221,1,86,94, -23,193,1,28,28,248,22,78,23,220,2,248,22,162,20,23,220,2,10,27,28, -23,199,2,86,94,23,207,1,23,208,1,86,94,23,208,1,23,207,1,28,28, -248,22,78,23,221,2,248,22,167,9,248,22,186,15,23,195,2,11,12,20,13, -144,80,144,8,25,41,40,250,80,144,8,28,42,40,249,22,31,11,80,144,8, -30,41,40,22,128,5,28,23,223,2,28,23,202,1,11,23,196,2,86,94,23, -202,1,11,20,13,144,80,144,8,25,41,40,250,80,144,8,28,42,40,249,22, -31,11,80,144,8,30,41,40,22,177,5,28,248,22,174,15,23,210,2,23,209, -1,86,94,23,209,1,247,22,152,16,249,247,22,175,5,23,195,1,23,222,1, -12,28,23,194,2,250,22,156,2,248,22,82,23,198,1,23,196,1,250,22,90, -23,201,1,23,202,1,23,203,1,12,27,249,22,189,8,80,144,42,50,41,249, -22,191,3,248,22,187,3,248,22,173,2,200,8,128,8,27,28,193,248,22,176, -2,194,11,28,192,27,249,22,100,198,195,28,192,248,22,82,193,11,11,27,249, -22,191,3,248,22,187,3,248,22,173,2,23,199,2,8,128,8,27,249,22,189, -8,80,144,43,50,41,23,196,2,250,22,190,8,80,144,44,50,41,23,197,1, -248,22,175,2,249,22,80,249,22,80,23,204,1,23,205,1,27,28,23,200,2, -248,22,176,2,200,11,28,192,192,9,32,54,88,149,8,38,42,54,11,2,30, -39,223,3,33,69,32,55,88,149,8,38,42,53,11,2,30,39,223,3,33,68, -32,56,88,148,8,36,40,53,11,2,31,222,33,67,32,57,88,149,8,38,42, -53,11,2,30,39,223,3,33,58,28,249,22,128,4,23,197,2,23,195,4,248, + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,10,54,46,50,46,57,48,48,46,49,48,84,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,1,0,0,8, +0,15,0,26,0,53,0,59,0,73,0,86,0,112,0,129,0,151,0,159,0, +171,0,186,0,202,0,220,0,241,0,253,0,13,1,36,1,60,1,72,1,103, +1,108,1,113,1,131,1,137,1,142,1,151,1,156,1,162,1,167,1,171,1, +186,1,193,1,198,1,202,1,207,1,214,1,225,1,232,1,240,1,87,2,122, +2,225,2,4,3,98,3,133,3,227,3,6,4,7,11,37,11,88,11,163,11, +179,11,195,11,209,11,225,11,44,12,60,12,76,12,92,12,167,12,74,13,90, +13,165,13,160,14,40,15,115,15,22,16,35,16,188,16,116,17,159,17,241,17, +113,18,174,18,182,18,193,18,227,19,74,20,102,20,115,20,36,21,43,21,203, +21,223,21,67,22,89,22,99,22,113,22,151,22,250,22,254,22,5,23,211,23, +104,32,157,32,181,32,205,32,0,0,253,36,0,0,3,1,5,105,110,115,112, +48,68,35,37,98,111,111,116,72,100,108,108,45,115,117,102,102,105,120,1,25, +100,101,102,97,117,108,116,45,108,111,97,100,47,117,115,101,45,99,111,109,112, +105,108,101,100,67,113,117,111,116,101,29,94,2,5,70,35,37,112,97,114,97, +109,122,11,29,94,2,5,69,35,37,117,116,105,108,115,11,1,24,45,109,111, +100,117,108,101,45,104,97,115,104,45,116,97,98,108,101,45,116,97,98,108,101, +78,114,101,103,105,115,116,101,114,45,122,111,45,112,97,116,104,1,20,100,101, +102,97,117,108,116,45,114,101,97,100,101,114,45,103,117,97,114,100,69,67,65, +67,72,69,45,78,73,45,112,97,116,104,45,99,97,99,104,101,76,112,97,116, +104,45,99,97,99,104,101,45,103,101,116,77,112,97,116,104,45,99,97,99,104, +101,45,115,101,116,33,79,45,108,111,97,100,105,110,103,45,102,105,108,101,110, +97,109,101,1,19,45,108,111,97,100,105,110,103,45,112,114,111,109,112,116,45, +116,97,103,73,45,112,114,101,118,45,114,101,108,116,111,77,45,112,114,101,118, +45,114,101,108,116,111,45,100,105,114,1,21,115,112,108,105,116,45,114,101,108, +97,116,105,118,101,45,115,116,114,105,110,103,1,22,102,111,114,109,97,116,45, +115,111,117,114,99,101,45,108,111,99,97,116,105,111,110,73,111,114,105,103,45, +112,97,114,97,109,122,1,29,115,116,97,110,100,97,114,100,45,109,111,100,117, +108,101,45,110,97,109,101,45,114,101,115,111,108,118,101,114,66,98,111,111,116, +66,115,101,97,108,79,108,111,97,100,47,117,115,101,45,99,111,109,112,105,108, +101,100,5,4,46,114,107,116,66,115,97,109,101,6,6,6,110,97,116,105,118, +101,5,3,46,122,111,67,105,108,111,111,112,66,108,111,111,112,65,108,105,98, +6,12,12,109,111,100,117,108,101,45,112,97,116,104,63,68,115,117,98,109,111, +100,6,2,2,46,46,6,1,1,46,66,102,105,108,101,68,112,108,97,110,101, +116,6,8,8,109,97,105,110,46,114,107,116,6,4,4,46,114,107,116,69,105, +103,110,111,114,101,100,27,252,22,128,16,28,249,22,169,9,23,201,2,2,27, +86,94,23,199,1,23,200,1,28,248,22,133,16,23,200,2,249,22,128,16,23, +202,1,23,201,1,249,80,144,50,45,42,23,202,1,23,201,1,23,203,1,2, +28,247,22,181,8,249,80,144,50,46,42,23,203,1,80,144,50,39,41,27,250, +22,146,16,196,11,32,0,88,148,8,36,39,44,11,9,222,11,28,192,249,22, +80,195,194,11,249,22,5,20,20,96,88,148,8,36,40,57,8,129,3,9,226, +5,4,3,6,33,42,23,199,1,23,196,1,23,197,1,23,195,1,27,252,22, +128,16,28,249,22,169,9,23,201,2,2,27,86,94,23,199,1,23,200,1,28, +248,22,133,16,23,200,2,249,22,128,16,23,202,1,23,201,1,249,80,144,50, +45,42,23,202,1,23,201,1,23,203,1,2,28,247,22,181,8,249,80,144,50, +46,42,23,203,1,80,144,50,39,41,27,250,22,146,16,196,11,32,0,88,148, +8,36,39,44,11,9,222,11,28,192,249,22,80,195,194,11,249,22,5,20,20, +96,88,148,8,36,40,57,8,129,3,9,226,5,4,3,6,33,44,23,199,1, +23,196,1,23,197,1,23,195,1,27,250,22,128,16,28,249,22,169,9,23,199, +2,2,27,86,94,23,197,1,23,198,1,28,248,22,133,16,23,198,2,249,22, +128,16,23,200,1,23,199,1,249,80,144,48,45,42,23,200,1,23,199,1,23, +201,1,249,80,144,48,46,42,23,201,1,2,29,27,250,22,146,16,196,11,32, +0,88,148,8,36,39,44,11,9,222,11,28,192,249,22,80,195,194,11,249,22, +5,20,20,96,88,148,8,36,40,55,8,128,3,9,226,5,4,3,6,33,46, +23,199,1,23,196,1,23,197,1,23,195,1,27,250,22,128,16,28,249,22,169, +9,23,199,2,2,27,86,94,23,197,1,23,198,1,28,248,22,133,16,23,198, +2,249,22,128,16,23,200,1,23,199,1,249,80,144,48,45,42,23,200,1,23, +199,1,23,201,1,249,80,144,48,46,42,23,201,1,2,29,27,250,22,146,16, +196,11,32,0,88,148,8,36,39,44,11,9,222,11,28,192,249,22,80,195,194, +11,249,22,5,20,20,96,88,148,8,36,40,55,8,128,3,9,226,5,4,3, +6,33,48,23,199,1,23,196,1,23,197,1,23,195,1,86,95,28,248,80,144, +40,43,42,23,195,2,12,250,22,181,11,2,25,6,12,12,112,97,116,104,45, +115,116,114,105,110,103,63,23,197,2,28,28,23,195,2,28,248,22,64,23,196, +2,10,28,248,22,89,23,196,2,28,249,22,130,4,248,22,93,23,198,2,40, +28,28,248,22,64,248,22,81,23,197,2,10,248,22,167,9,248,22,163,20,23, +197,2,249,22,4,22,64,248,22,164,20,23,198,2,11,11,11,10,12,250,22, +181,11,2,25,6,71,71,40,111,114,47,99,32,35,102,32,115,121,109,98,111, +108,63,32,40,99,111,110,115,47,99,32,40,111,114,47,99,32,35,102,32,115, +121,109,98,111,108,63,41,32,40,110,111,110,45,101,109,112,116,121,45,108,105, +115,116,111,102,32,115,121,109,98,111,108,63,41,41,41,23,197,2,27,28,23, +196,2,247,22,191,4,11,27,28,23,194,2,250,22,158,2,80,143,44,44,248, +22,128,17,247,22,144,14,11,11,27,28,23,194,2,250,22,158,2,248,22,82, +23,198,2,23,198,2,11,11,28,23,193,2,86,96,23,197,1,23,195,1,23, +194,1,20,13,144,80,144,42,41,40,250,80,144,45,42,40,249,22,31,11,80, +144,47,41,40,22,128,5,248,22,102,23,197,2,27,248,22,111,23,195,2,20, +13,144,80,144,43,41,40,250,80,144,46,42,40,249,22,31,11,80,144,48,41, +40,22,177,5,28,248,22,174,15,23,197,2,23,196,1,86,94,23,196,1,247, +22,152,16,249,247,22,175,5,248,22,163,20,23,197,1,23,201,1,86,94,23, +193,1,27,28,248,22,135,16,23,199,2,23,198,2,27,247,22,177,5,28,192, +249,22,136,16,23,201,2,194,23,199,2,90,144,42,11,89,146,42,39,11,248, +22,131,16,23,202,1,86,94,23,195,1,90,144,41,11,89,146,41,39,11,28, +23,204,2,27,248,22,179,15,23,198,2,19,248,22,147,8,194,28,28,249,22, +132,4,23,195,4,43,249,22,150,8,2,26,249,22,153,8,197,249,22,184,3, +23,199,4,43,11,249,22,7,23,200,2,248,22,183,15,249,22,154,8,250,22, +153,8,201,39,249,22,184,3,23,203,4,43,5,3,46,115,115,249,22,7,23, +200,2,11,2,249,22,7,23,198,2,11,27,28,249,22,169,9,23,196,2,23, +199,2,23,199,2,249,22,128,16,23,198,2,23,196,2,27,28,23,196,2,28, +249,22,169,9,23,198,2,23,200,1,23,200,1,86,94,23,200,1,249,22,128, +16,23,199,2,23,198,2,86,94,23,198,1,11,27,28,249,22,169,9,23,200, +2,70,114,101,108,97,116,105,118,101,86,94,23,198,1,2,27,23,198,1,27, +247,22,157,16,27,247,22,158,16,27,250,22,146,16,23,201,2,11,32,0,88, +148,8,36,39,44,11,9,222,11,27,28,23,194,2,249,22,80,23,201,2,23, +196,1,86,94,23,194,1,11,27,28,23,199,2,28,23,194,2,11,27,250,22, +146,16,23,203,2,11,32,0,88,148,8,36,39,44,11,9,222,11,28,192,249, +22,80,23,202,2,194,11,11,27,28,23,195,2,23,195,2,23,194,2,27,28, +23,196,2,23,196,2,248,22,167,9,23,196,2,27,28,23,205,2,28,23,196, +2,86,94,23,197,1,23,196,2,248,22,167,9,23,198,1,11,27,28,23,195, +2,27,249,22,5,88,148,39,40,51,8,129,3,9,226,24,15,12,11,33,43, +23,203,2,27,28,23,198,2,11,193,28,192,192,28,193,28,23,198,2,28,249, +22,132,4,248,22,82,196,248,22,82,23,201,2,193,11,11,11,11,28,23,193, +2,86,105,23,213,1,23,212,1,23,206,1,23,205,1,23,204,1,23,203,1, +23,201,1,23,200,1,23,197,1,23,196,1,23,195,1,23,194,1,20,13,144, +80,144,60,41,40,250,80,144,8,24,42,40,249,22,31,11,80,144,8,26,41, +40,22,128,5,11,20,13,144,80,144,60,41,40,250,80,144,8,24,42,40,249, +22,31,11,80,144,8,26,41,40,22,177,5,28,248,22,174,15,23,206,2,23, +205,1,86,94,23,205,1,247,22,152,16,249,247,22,162,16,248,22,81,23,196, +1,23,218,1,86,94,23,193,1,27,28,23,195,2,27,249,22,5,88,148,39, +40,51,8,129,3,9,226,25,17,13,12,33,45,23,204,2,27,28,23,200,2, +11,193,28,192,192,28,193,28,199,28,249,22,132,4,248,22,82,196,248,22,82, +202,193,11,11,11,11,28,23,193,2,86,103,23,214,1,23,213,1,23,207,1, +23,206,1,23,205,1,23,202,1,23,201,1,23,197,1,23,196,1,23,195,1, +20,13,144,80,144,61,41,40,250,80,144,8,25,42,40,249,22,31,11,80,144, +8,27,41,40,22,128,5,23,207,1,20,13,144,80,144,61,41,40,250,80,144, +8,25,42,40,249,22,31,11,80,144,8,27,41,40,22,177,5,28,248,22,174, +15,23,207,2,23,206,1,86,94,23,206,1,247,22,152,16,249,247,22,162,16, +248,22,81,23,196,1,23,219,1,86,94,23,193,1,27,28,23,197,2,27,249, +22,5,20,20,94,88,148,39,40,51,8,128,3,9,226,26,17,14,13,33,47, +23,210,1,23,205,2,27,28,23,200,2,11,193,28,192,192,28,193,28,23,200, +2,28,249,22,132,4,248,22,82,196,248,22,82,23,203,2,193,11,11,11,86, +94,23,207,1,11,28,23,193,2,86,101,23,208,1,23,206,1,23,205,1,23, +203,1,23,202,1,23,198,1,23,197,1,23,196,1,86,94,27,248,22,81,23, +195,2,28,23,215,2,250,22,156,2,248,22,82,23,219,1,23,219,1,250,22, +90,23,199,1,11,23,211,2,12,20,13,144,80,144,8,23,41,40,250,80,144, +8,26,42,40,249,22,31,11,80,144,8,28,41,40,22,128,5,11,20,13,144, +80,144,8,23,41,40,250,80,144,8,26,42,40,249,22,31,11,80,144,8,28, +41,40,22,177,5,28,248,22,174,15,23,208,2,23,207,1,86,94,23,207,1, +247,22,152,16,249,247,22,175,5,248,22,163,20,23,196,1,23,220,1,86,94, +23,193,1,27,28,23,197,1,27,249,22,5,20,20,95,88,148,39,40,51,8, +128,3,9,226,27,19,15,14,33,49,23,207,1,23,212,1,23,206,1,27,28, +23,201,2,11,193,28,192,192,28,193,28,200,28,249,22,132,4,248,22,82,196, +248,22,82,203,193,11,11,11,86,96,23,209,1,23,204,1,23,203,1,11,28, +23,193,2,86,95,23,207,1,23,198,1,86,94,27,248,22,81,23,195,2,28, +23,216,2,250,22,156,2,248,22,82,23,220,1,23,220,1,250,22,90,23,199, +1,23,213,2,23,212,2,12,20,13,144,80,144,8,24,41,40,250,80,144,8, +27,42,40,249,22,31,11,80,144,8,29,41,40,22,128,5,23,209,1,20,13, +144,80,144,8,24,41,40,250,80,144,8,27,42,40,249,22,31,11,80,144,8, +29,41,40,22,177,5,28,248,22,174,15,23,209,2,23,208,1,86,94,23,208, +1,247,22,152,16,249,247,22,175,5,248,22,163,20,23,196,1,23,221,1,86, +94,23,193,1,28,28,248,22,78,23,220,2,248,22,163,20,23,220,2,10,27, +28,23,199,2,86,94,23,207,1,23,208,1,86,94,23,208,1,23,207,1,28, +28,248,22,78,23,221,2,248,22,167,9,248,22,186,15,23,195,2,11,12,20, +13,144,80,144,8,25,41,40,250,80,144,8,28,42,40,249,22,31,11,80,144, +8,30,41,40,22,128,5,28,23,223,2,28,23,202,1,11,23,196,2,86,94, +23,202,1,11,20,13,144,80,144,8,25,41,40,250,80,144,8,28,42,40,249, +22,31,11,80,144,8,30,41,40,22,177,5,28,248,22,174,15,23,210,2,23, +209,1,86,94,23,209,1,247,22,152,16,249,247,22,175,5,23,195,1,23,222, +1,12,28,23,194,2,250,22,156,2,248,22,82,23,198,1,23,196,1,250,22, +90,23,201,1,23,202,1,23,203,1,12,27,249,22,189,8,80,144,42,50,41, +249,22,191,3,248,22,187,3,248,22,173,2,200,8,128,8,27,28,193,248,22, +176,2,194,11,28,192,27,249,22,100,198,195,28,192,248,22,82,193,11,11,27, +249,22,191,3,248,22,187,3,248,22,173,2,23,199,2,8,128,8,27,249,22, +189,8,80,144,43,50,41,23,196,2,250,22,190,8,80,144,44,50,41,23,197, +1,248,22,175,2,249,22,80,249,22,80,23,204,1,23,205,1,27,28,23,200, +2,248,22,176,2,200,11,28,192,192,9,32,54,88,149,8,38,42,54,11,2, +30,39,223,3,33,69,32,55,88,149,8,38,42,53,11,2,30,39,223,3,33, +68,32,56,88,148,8,36,40,53,11,2,31,222,33,67,32,57,88,149,8,38, +42,53,11,2,30,39,223,3,33,58,28,249,22,128,4,23,197,2,23,195,4, +248,22,90,194,28,249,22,136,9,7,47,249,22,157,7,23,198,2,23,199,2, +249,22,80,250,22,175,7,23,199,2,39,23,200,2,248,2,56,249,22,175,7, +23,199,1,248,22,181,3,23,201,1,250,2,57,23,196,4,196,248,22,181,3, +198,32,59,88,149,8,38,42,55,11,2,30,39,223,3,33,66,32,60,88,149, +8,38,42,54,11,2,30,39,223,3,33,63,32,61,88,149,8,38,42,53,11, +2,30,39,223,3,33,62,28,249,22,128,4,23,197,2,23,195,4,248,22,90, +194,28,249,22,136,9,7,47,249,22,157,7,23,198,2,23,199,2,249,22,80, +250,22,175,7,23,199,2,39,23,200,2,248,2,56,249,22,175,7,23,199,1, +248,22,181,3,23,201,1,250,2,61,23,196,4,196,248,22,181,3,198,28,249, +22,128,4,23,197,2,23,195,4,248,22,90,194,28,249,22,136,9,7,47,249, +22,157,7,23,198,2,23,199,2,249,22,80,250,22,175,7,23,199,2,39,23, +200,2,27,249,22,175,7,23,199,1,248,22,181,3,23,201,1,19,248,22,156, +7,23,195,2,250,2,61,23,196,4,23,197,1,39,2,27,248,22,181,3,23, +197,1,28,249,22,128,4,23,195,2,23,196,4,248,22,90,195,28,249,22,136, +9,7,47,249,22,157,7,23,199,2,23,197,2,249,22,80,250,22,175,7,23, +200,2,39,23,198,2,248,2,56,249,22,175,7,23,200,1,248,22,181,3,23, +199,1,250,2,60,23,197,4,197,248,22,181,3,196,32,64,88,149,8,38,42, +53,11,2,30,39,223,3,33,65,28,249,22,128,4,23,197,2,23,195,4,248, 22,90,194,28,249,22,136,9,7,47,249,22,157,7,23,198,2,23,199,2,249, 22,80,250,22,175,7,23,199,2,39,23,200,2,248,2,56,249,22,175,7,23, -199,1,248,22,181,3,23,201,1,250,2,57,23,196,4,196,248,22,181,3,198, -32,59,88,149,8,38,42,55,11,2,30,39,223,3,33,66,32,60,88,149,8, -38,42,54,11,2,30,39,223,3,33,63,32,61,88,149,8,38,42,53,11,2, -30,39,223,3,33,62,28,249,22,128,4,23,197,2,23,195,4,248,22,90,194, -28,249,22,136,9,7,47,249,22,157,7,23,198,2,23,199,2,249,22,80,250, -22,175,7,23,199,2,39,23,200,2,248,2,56,249,22,175,7,23,199,1,248, -22,181,3,23,201,1,250,2,61,23,196,4,196,248,22,181,3,198,28,249,22, -128,4,23,197,2,23,195,4,248,22,90,194,28,249,22,136,9,7,47,249,22, -157,7,23,198,2,23,199,2,249,22,80,250,22,175,7,23,199,2,39,23,200, -2,27,249,22,175,7,23,199,1,248,22,181,3,23,201,1,19,248,22,156,7, -23,195,2,250,2,61,23,196,4,23,197,1,39,2,27,248,22,181,3,23,197, -1,28,249,22,128,4,23,195,2,23,196,4,248,22,90,195,28,249,22,136,9, -7,47,249,22,157,7,23,199,2,23,197,2,249,22,80,250,22,175,7,23,200, -2,39,23,198,2,248,2,56,249,22,175,7,23,200,1,248,22,181,3,23,199, -1,250,2,60,23,197,4,197,248,22,181,3,196,32,64,88,149,8,38,42,53, -11,2,30,39,223,3,33,65,28,249,22,128,4,23,197,2,23,195,4,248,22, -90,194,28,249,22,136,9,7,47,249,22,157,7,23,198,2,23,199,2,249,22, -80,250,22,175,7,23,199,2,39,23,200,2,248,2,56,249,22,175,7,23,199, -1,248,22,181,3,23,201,1,250,2,64,23,196,4,196,248,22,181,3,198,28, -249,22,128,4,23,197,2,23,195,4,248,22,90,194,28,249,22,136,9,7,47, -249,22,157,7,23,198,2,23,199,2,249,22,80,250,22,175,7,23,199,2,39, -23,200,2,27,249,22,175,7,23,199,1,248,22,181,3,23,201,1,19,248,22, -156,7,23,195,2,250,2,60,23,196,4,23,197,1,39,2,27,248,22,181,3, -23,197,1,28,249,22,128,4,23,195,2,23,196,4,248,22,90,195,28,249,22, -136,9,7,47,249,22,157,7,23,199,2,23,197,2,249,22,80,250,22,175,7, -23,200,2,39,23,198,2,27,249,22,175,7,23,200,1,248,22,181,3,23,199, -1,19,248,22,156,7,23,195,2,250,2,64,23,196,4,23,197,1,39,2,27, -248,22,181,3,23,195,1,28,249,22,128,4,23,195,2,23,197,4,248,22,90, -196,28,249,22,136,9,7,47,249,22,157,7,23,200,2,23,197,2,249,22,80, -250,22,175,7,23,201,2,39,23,198,2,248,2,56,249,22,175,7,23,201,1, -248,22,181,3,23,199,1,250,2,59,23,198,4,198,248,22,181,3,196,19,248, -22,156,7,23,195,2,28,249,22,128,4,39,23,195,4,248,22,90,194,28,249, -22,136,9,7,47,249,22,157,7,23,198,2,39,249,22,80,250,22,175,7,23, -199,2,39,39,27,249,22,175,7,23,199,1,40,19,248,22,156,7,23,195,2, -250,2,57,23,196,4,23,197,1,39,2,28,249,22,128,4,40,23,195,4,248, -22,90,194,28,249,22,136,9,7,47,249,22,157,7,23,198,2,40,249,22,80, -250,22,175,7,23,199,2,39,40,248,2,56,249,22,175,7,23,199,1,41,250, -2,59,23,196,4,196,41,2,28,249,22,128,4,23,197,2,23,195,4,248,22, -90,194,28,249,22,136,9,7,47,249,22,157,7,23,198,2,23,199,2,249,22, -80,250,22,175,7,23,199,2,39,23,200,2,248,2,56,249,22,175,7,23,199, -1,248,22,181,3,23,201,1,250,2,55,23,196,4,196,248,22,181,3,198,28, -249,22,128,4,23,197,2,23,195,4,248,22,90,194,28,249,22,136,9,7,47, -249,22,157,7,23,198,2,23,199,2,249,22,80,250,22,175,7,23,199,2,39, -23,200,2,27,249,22,175,7,23,199,1,248,22,181,3,23,201,1,19,248,22, -156,7,23,195,2,250,2,55,23,196,4,23,197,1,39,2,27,248,22,181,3, -23,197,1,28,249,22,128,4,23,195,2,23,196,4,248,22,90,195,28,249,22, -136,9,7,47,249,22,157,7,23,199,2,23,197,2,249,22,80,250,22,175,7, -23,200,2,39,23,198,2,248,2,56,249,22,175,7,23,200,1,248,22,181,3, -23,199,1,250,2,54,23,197,4,197,248,22,181,3,196,32,70,88,148,39,40, -58,11,2,31,222,33,71,28,248,22,88,248,22,82,23,195,2,249,22,7,9, -248,22,162,20,23,196,1,90,144,41,11,89,146,41,39,11,27,248,22,163,20, -23,197,2,28,248,22,88,248,22,82,23,195,2,249,22,7,9,248,22,162,20, -195,90,144,41,11,89,146,41,39,11,27,248,22,163,20,196,28,248,22,88,248, -22,82,23,195,2,249,22,7,9,248,22,162,20,195,90,144,41,11,89,146,41, -39,11,248,2,70,248,22,163,20,196,249,22,7,249,22,80,248,22,162,20,199, -196,195,249,22,7,249,22,80,248,22,162,20,199,196,195,249,22,7,249,22,80, -248,22,162,20,23,200,1,23,197,1,23,196,1,27,19,248,22,156,7,23,196, -2,250,2,54,23,196,4,23,198,1,39,2,28,23,195,1,192,28,248,22,88, -248,22,82,23,195,2,249,22,7,9,248,22,162,20,23,196,1,27,248,22,163, -20,23,195,2,90,144,41,11,89,146,41,39,11,28,248,22,88,248,22,82,23, -197,2,249,22,7,9,248,22,162,20,23,198,1,27,248,22,163,20,23,197,2, -90,144,41,11,89,146,41,39,11,28,248,22,88,248,22,82,23,197,2,249,22, -7,9,248,22,162,20,197,90,144,41,11,89,146,41,39,11,248,2,70,248,22, -163,20,198,249,22,7,249,22,80,248,22,162,20,201,196,195,249,22,7,249,22, -80,248,22,162,20,23,203,1,196,195,249,22,7,249,22,80,248,22,162,20,23, -201,1,23,197,1,23,196,1,248,22,143,12,252,22,162,10,248,22,163,4,23, -200,2,248,22,159,4,23,200,2,248,22,160,4,23,200,2,248,22,161,4,23, -200,2,248,22,162,4,23,200,1,28,24,194,2,12,20,13,144,80,144,39,41, -40,80,143,39,59,89,146,40,40,10,249,22,130,5,21,94,2,32,6,19,19, -112,108,97,110,101,116,47,114,101,115,111,108,118,101,114,46,114,107,116,1,27, -112,108,97,110,101,116,45,109,111,100,117,108,101,45,110,97,109,101,45,114,101, -115,111,108,118,101,114,12,27,28,23,195,2,28,249,22,169,9,23,197,2,80, -143,42,55,86,94,23,195,1,80,143,40,56,27,248,22,153,5,23,197,2,27, -28,248,22,78,23,195,2,248,22,162,20,23,195,1,23,194,1,28,248,22,174, -15,23,194,2,90,144,42,11,89,146,42,39,11,248,22,131,16,23,197,1,86, -95,20,18,144,11,80,143,45,55,199,20,18,144,11,80,143,45,56,192,192,11, -11,28,23,193,2,192,86,94,23,193,1,27,247,22,177,5,28,23,193,2,192, -86,94,23,193,1,247,22,152,16,90,144,42,11,89,146,42,39,11,248,22,131, -16,23,198,2,86,95,23,195,1,23,193,1,28,249,22,167,16,0,11,35,114, -120,34,91,46,93,115,115,36,34,248,22,179,15,23,197,1,249,80,144,44,61, -42,23,199,1,2,26,196,249,80,144,41,57,42,195,10,249,22,12,23,196,1, -80,144,41,54,41,86,96,28,248,22,151,5,23,196,2,12,250,22,181,11,2, -22,6,21,21,114,101,115,111,108,118,101,100,45,109,111,100,117,108,101,45,112, -97,116,104,63,23,198,2,28,28,23,196,2,248,22,145,14,23,197,2,10,12, -250,22,181,11,2,22,6,20,20,40,111,114,47,99,32,35,102,32,110,97,109, -101,115,112,97,99,101,63,41,23,199,2,28,24,193,2,248,24,194,1,23,196, -2,86,94,23,193,1,12,27,250,22,158,2,80,144,44,44,41,248,22,128,17, -247,22,144,14,11,27,28,23,194,2,23,194,1,86,94,23,194,1,27,249,22, -80,247,22,138,2,247,22,138,2,86,94,250,22,156,2,80,144,46,44,41,248, -22,128,17,247,22,144,14,195,192,86,94,250,22,156,2,248,22,81,23,197,2, -23,200,2,70,100,101,99,108,97,114,101,100,28,23,198,2,27,28,248,22,78, -248,22,153,5,23,200,2,248,22,152,5,248,22,81,248,22,153,5,23,201,1, -23,198,1,27,250,22,158,2,80,144,47,44,41,248,22,128,17,23,204,1,11, -28,23,193,2,27,250,22,158,2,248,22,82,23,198,1,23,198,2,11,28,23, -193,2,250,22,156,2,248,22,163,20,23,200,1,23,198,1,23,196,1,12,12, -12,86,94,251,22,138,12,247,22,142,12,67,101,114,114,111,114,6,69,69,100, -101,102,97,117,108,116,32,109,111,100,117,108,101,32,110,97,109,101,32,114,101, -115,111,108,118,101,114,32,99,97,108,108,101,100,32,119,105,116,104,32,116,104, -114,101,101,32,97,114,103,117,109,101,110,116,115,32,40,100,101,112,114,101,99, -97,116,101,100,41,11,251,24,197,1,23,198,1,23,199,1,23,200,1,10,32, -81,88,148,39,41,50,11,78,102,108,97,116,116,101,110,45,115,117,98,45,112, -97,116,104,222,33,84,32,82,88,148,39,43,57,11,2,31,222,33,83,28,248, -22,88,23,197,2,28,248,22,88,195,192,249,22,80,194,248,22,95,197,28,249, -22,171,9,248,22,81,23,199,2,2,35,28,248,22,88,23,196,2,86,95,23, -196,1,23,195,1,250,22,177,11,2,22,6,37,37,116,111,111,32,109,97,110, -121,32,34,46,46,34,115,32,105,110,32,115,117,98,109,111,100,117,108,101,32, -112,97,116,104,58,32,126,46,115,250,22,91,2,34,28,249,22,171,9,23,201, -2,2,36,23,199,1,28,248,22,174,15,23,200,2,23,199,1,249,22,90,28, -248,22,64,23,202,2,2,5,2,37,23,201,1,23,200,1,251,2,82,196,197, -248,22,82,199,248,22,163,20,200,251,2,82,196,197,249,22,80,248,22,162,20, -202,200,248,22,163,20,200,251,2,82,196,197,9,197,27,250,22,176,7,27,28, -23,199,2,28,247,22,130,12,248,80,144,47,58,42,23,200,2,11,11,28,192, -192,6,29,29,115,116,97,110,100,97,114,100,45,109,111,100,117,108,101,45,110, -97,109,101,45,114,101,115,111,108,118,101,114,6,2,2,58,32,250,22,178,16, -0,7,35,114,120,34,92,110,34,23,203,1,249,22,137,8,6,23,23,10,32, -32,102,111,114,32,109,111,100,117,108,101,32,112,97,116,104,58,32,126,115,10, -23,202,2,248,22,173,13,28,23,196,2,251,22,181,12,23,198,1,247,22,27, -248,22,90,23,201,1,23,199,1,86,94,23,196,1,250,22,144,13,23,197,1, -247,22,27,23,198,1,32,86,88,148,8,36,40,53,11,69,115,115,45,62,114, -107,116,222,33,87,19,248,22,156,7,194,28,249,22,132,4,23,195,4,42,28, -249,22,169,9,7,46,249,22,157,7,197,249,22,184,3,23,199,4,42,28,28, -249,22,169,9,7,115,249,22,157,7,197,249,22,184,3,23,199,4,41,249,22, -169,9,7,115,249,22,157,7,197,249,22,184,3,23,199,4,40,11,249,22,176, -7,250,22,175,7,198,39,249,22,184,3,23,200,4,42,2,40,193,193,193,2, -28,249,22,159,7,194,2,36,2,27,28,249,22,159,7,194,2,35,64,117,112, -192,0,8,35,114,120,34,91,46,93,34,32,90,88,148,8,36,40,50,11,2, -31,222,33,91,28,248,22,88,23,194,2,9,250,22,91,6,4,4,10,32,32, -32,248,22,178,15,248,22,103,23,198,2,248,2,90,248,22,163,20,23,198,1, -28,249,22,171,9,248,22,82,23,200,2,23,197,1,28,249,22,169,9,248,22, -162,20,23,200,1,23,196,1,251,22,177,11,2,22,6,41,41,99,121,99,108, -101,32,105,110,32,108,111,97,100,105,110,103,10,32,32,97,116,32,112,97,116, -104,58,32,126,97,10,32,32,112,97,116,104,115,58,126,97,23,200,1,249,22, -1,22,176,7,248,2,90,248,22,95,23,201,1,12,12,247,23,193,1,250,22, -157,4,11,196,195,20,13,144,80,144,49,53,41,249,22,80,249,22,80,23,198, -1,23,202,1,23,195,1,20,13,144,80,144,49,41,40,252,80,144,54,42,40, -249,22,31,11,80,144,56,41,40,22,191,4,23,201,2,22,129,5,248,28,23, -208,2,20,20,94,88,148,8,36,40,49,11,9,223,15,33,94,23,208,1,86, -94,23,208,1,22,7,28,248,22,64,23,207,2,23,206,1,28,28,248,22,78, -23,207,2,249,22,169,9,248,22,162,20,23,209,2,2,32,11,23,206,1,86, -94,23,206,1,28,248,22,151,5,23,203,2,27,248,22,153,5,23,204,2,28, -248,22,64,193,249,22,90,2,5,194,192,23,202,2,249,247,22,176,5,23,201, -1,27,248,22,68,248,22,178,15,23,202,1,28,23,204,2,28,250,22,158,2, -248,22,162,20,23,202,1,23,202,1,11,249,22,80,11,205,249,22,80,194,205, -192,86,96,28,248,22,161,5,23,196,2,12,28,248,22,155,4,23,198,2,250, -22,179,11,11,6,15,15,98,97,100,32,109,111,100,117,108,101,32,112,97,116, -104,23,200,2,250,22,181,11,2,22,2,33,23,198,2,28,28,23,196,2,248, -22,151,5,23,197,2,10,12,250,22,181,11,2,22,6,31,31,40,111,114,47, -99,32,35,102,32,114,101,115,111,108,118,101,100,45,109,111,100,117,108,101,45, -112,97,116,104,63,41,23,199,2,28,28,23,197,2,248,22,155,4,23,198,2, -10,12,250,22,181,11,2,22,6,17,17,40,111,114,47,99,32,35,102,32,115, -121,110,116,97,120,63,41,23,200,2,28,28,248,22,78,23,196,2,249,22,169, -9,248,22,162,20,23,198,2,2,5,11,86,97,23,198,1,23,197,1,23,196, -1,23,193,1,248,22,152,5,248,22,102,23,197,1,28,28,248,22,78,23,196, -2,28,249,22,169,9,248,22,162,20,23,198,2,2,34,28,248,22,78,248,22, -102,23,197,2,249,22,169,9,248,22,106,23,198,2,2,5,11,11,11,86,97, -23,198,1,23,197,1,23,196,1,23,193,1,248,22,152,5,249,2,81,248,22, -119,23,199,2,248,22,104,23,199,1,28,28,248,22,78,23,196,2,28,249,22, -169,9,248,22,162,20,23,198,2,2,34,28,28,249,22,171,9,248,22,102,23, -198,2,2,36,10,249,22,171,9,248,22,102,23,198,2,2,35,28,23,196,2, -27,248,22,153,5,23,198,2,28,248,22,64,193,10,28,248,22,78,193,248,22, -64,248,22,162,20,194,11,11,11,11,11,86,96,23,198,1,23,197,1,23,193, -1,27,248,22,153,5,23,198,1,248,22,152,5,249,2,81,28,248,22,78,23, -197,2,248,22,162,20,23,197,2,23,196,2,27,28,249,22,171,9,248,22,102, -23,203,2,2,35,248,22,163,20,200,248,22,104,200,28,248,22,78,23,198,2, -249,22,94,248,22,163,20,199,194,192,28,28,248,22,78,23,196,2,249,22,169, -9,248,22,162,20,23,198,2,2,38,11,86,94,248,80,144,41,8,28,42,23, -194,2,253,24,199,1,23,201,1,23,202,1,23,203,1,23,204,1,11,80,143, -46,59,28,28,248,22,78,23,196,2,28,249,22,169,9,248,22,162,20,23,198, -2,2,34,28,248,22,78,248,22,102,23,197,2,249,22,169,9,248,22,106,23, -198,2,2,38,11,11,11,86,94,248,80,144,41,8,28,42,23,194,2,253,24, -199,1,248,22,102,23,202,2,23,202,1,23,203,1,23,204,1,248,22,104,23, -202,1,80,143,46,59,86,94,23,193,1,27,88,148,8,36,40,57,8,240,0, -0,8,0,1,19,115,104,111,119,45,99,111,108,108,101,99,116,105,111,110,45, -101,114,114,225,2,5,3,33,85,27,28,248,22,78,23,198,2,28,249,22,169, -9,2,34,248,22,162,20,23,200,2,27,248,22,102,23,199,2,28,28,249,22, -171,9,23,195,2,2,36,10,249,22,171,9,23,195,2,2,35,86,94,23,193, -1,28,23,199,2,27,248,22,153,5,23,201,2,28,248,22,78,193,248,22,162, -20,193,192,250,22,177,11,2,22,6,45,45,110,111,32,98,97,115,101,32,112, -97,116,104,32,102,111,114,32,114,101,108,97,116,105,118,101,32,115,117,98,109, -111,100,117,108,101,32,112,97,116,104,58,32,126,46,115,23,201,2,192,23,197, -2,23,197,2,27,28,248,22,78,23,199,2,28,249,22,169,9,2,34,248,22, -162,20,23,201,2,27,28,28,28,249,22,171,9,248,22,102,23,202,2,2,36, -10,249,22,171,9,248,22,102,23,202,2,2,35,23,200,2,11,27,248,22,153, -5,23,202,2,27,28,249,22,171,9,248,22,102,23,204,2,2,35,248,22,163, -20,23,202,1,248,22,104,23,202,1,28,248,22,78,23,195,2,249,2,81,248, -22,162,20,23,197,2,249,22,94,248,22,163,20,23,199,1,23,197,1,249,2, -81,23,196,1,23,195,1,249,2,81,2,36,28,249,22,171,9,248,22,102,23, -204,2,2,35,248,22,163,20,23,202,1,248,22,104,23,202,1,28,248,22,78, -193,248,22,163,20,193,11,11,11,27,28,248,22,64,23,196,2,27,248,80,144, -46,51,42,249,22,80,23,199,2,248,22,128,17,247,22,144,14,28,23,193,2, -192,86,94,23,193,1,90,144,41,11,89,146,41,39,11,249,80,144,49,57,42, -248,22,71,23,201,2,11,27,28,248,22,88,23,195,2,2,39,249,22,176,7, -23,197,2,2,40,252,80,144,53,8,23,42,23,205,1,28,248,22,88,23,200, -2,23,200,1,86,94,23,200,1,248,22,81,23,200,2,28,248,22,88,23,200, -2,86,94,23,199,1,9,248,22,82,23,200,1,23,198,1,10,28,248,22,153, -7,23,196,2,86,94,23,196,1,27,248,80,144,46,8,29,42,23,202,2,27, -248,80,144,47,51,42,249,22,80,23,200,2,23,197,2,28,23,193,2,192,86, -94,23,193,1,90,144,41,11,89,146,41,39,11,249,80,144,50,57,42,23,201, -2,11,28,248,22,88,23,194,2,86,94,23,193,1,249,22,128,16,23,198,1, -248,2,86,23,197,1,250,22,1,22,128,16,23,199,1,249,22,94,249,22,2, -32,0,88,148,8,36,40,47,11,9,222,33,88,23,200,1,248,22,90,248,2, -86,23,201,1,28,248,22,174,15,23,196,2,86,94,23,196,1,248,80,144,45, -8,30,42,248,22,138,16,28,248,22,135,16,23,198,2,23,197,2,249,22,136, -16,23,199,2,248,80,144,49,8,29,42,23,205,2,28,249,22,169,9,248,22, -81,23,198,2,2,32,27,248,80,144,46,51,42,249,22,80,23,199,2,248,22, -128,17,247,22,144,14,28,23,193,2,192,86,94,23,193,1,90,144,41,11,89, -146,41,39,11,249,80,144,49,57,42,248,22,102,23,201,2,11,27,28,248,22, -88,248,22,104,23,201,2,28,248,22,88,23,195,2,249,22,171,16,2,89,23, -197,2,11,10,27,28,23,194,2,248,2,86,23,197,2,28,248,22,88,23,196, -2,2,39,28,249,22,171,16,2,89,23,198,2,248,2,86,23,197,2,249,22, -176,7,23,198,2,2,40,27,28,23,195,1,86,94,23,197,1,249,22,94,28, -248,22,88,248,22,104,23,205,2,21,93,6,5,5,109,122,108,105,98,249,22, -1,22,94,249,22,2,80,144,56,8,31,42,248,22,104,23,208,2,23,198,1, -28,248,22,88,23,197,2,86,94,23,196,1,248,22,90,23,198,1,86,94,23, -197,1,23,196,1,252,80,144,55,8,23,42,23,207,1,248,22,81,23,199,2, -248,22,163,20,23,199,1,23,199,1,10,28,249,22,169,9,248,22,162,20,23, -198,2,2,37,248,80,144,45,8,30,42,248,22,138,16,249,22,136,16,248,22, -140,16,248,22,102,23,201,2,248,80,144,49,8,29,42,23,205,2,12,86,94, -28,28,248,22,174,15,23,194,2,10,248,22,184,8,23,194,2,12,28,23,201, -2,250,22,179,11,69,114,101,113,117,105,114,101,249,22,137,8,6,17,17,98, -97,100,32,109,111,100,117,108,101,32,112,97,116,104,126,97,28,23,198,2,248, -22,81,23,199,2,6,0,0,23,204,2,250,22,181,11,2,22,2,33,23,198, -2,27,28,248,22,184,8,23,195,2,249,22,189,8,23,196,2,39,249,22,138, -16,248,22,139,16,23,197,2,11,27,28,248,22,184,8,23,196,2,249,22,189, -8,23,197,2,40,248,80,144,47,8,24,42,23,195,2,90,144,42,11,89,146, -42,39,11,28,248,22,184,8,23,199,2,250,22,7,2,41,249,22,189,8,23, -203,2,41,2,41,248,22,131,16,23,198,2,86,95,23,195,1,23,193,1,27, -28,248,22,184,8,23,200,2,249,22,189,8,23,201,2,42,249,80,144,52,61, -42,23,197,2,5,0,27,28,248,22,184,8,23,201,2,249,22,189,8,23,202, -2,43,248,22,152,5,23,200,2,27,250,22,158,2,80,144,55,44,41,248,22, -128,17,247,22,144,14,11,27,28,23,194,2,23,194,1,86,94,23,194,1,27, -249,22,80,247,22,138,2,247,22,138,2,86,94,250,22,156,2,80,144,57,44, -41,248,22,128,17,247,22,144,14,195,192,27,28,23,204,2,248,22,152,5,249, -22,80,248,22,153,5,23,200,2,23,207,2,23,196,2,86,95,28,23,212,2, -28,250,22,158,2,248,22,81,23,198,2,195,11,86,96,23,211,1,23,204,1, -23,194,1,12,27,251,22,31,11,80,144,59,53,41,9,28,248,22,15,80,144, -60,54,41,80,144,59,54,41,247,22,17,27,248,22,128,17,247,22,144,14,86, -94,249,22,3,88,148,8,36,40,57,11,9,226,13,12,2,3,33,92,23,196, -2,248,28,248,22,15,80,144,58,54,41,32,0,88,148,39,40,45,11,9,222, -33,93,80,144,57,8,32,42,20,20,98,88,148,39,39,8,25,8,240,12,64, -0,0,9,233,18,21,14,15,12,11,7,6,4,1,2,33,95,23,195,1,23, -194,1,23,197,1,23,207,1,23,214,1,12,28,28,248,22,184,8,23,204,1, -86,94,23,212,1,11,28,23,212,1,28,248,22,153,7,23,206,2,10,28,248, -22,64,23,206,2,10,28,248,22,78,23,206,2,249,22,169,9,248,22,162,20, -23,208,2,2,32,11,11,249,80,144,56,52,42,28,248,22,153,7,23,208,2, -249,22,80,23,209,1,248,80,144,59,8,29,42,23,215,1,86,94,23,212,1, -249,22,80,23,209,1,248,22,128,17,247,22,144,14,252,22,186,8,23,209,1, -23,208,1,23,206,1,23,204,1,23,203,1,12,192,86,96,20,18,144,11,80, -143,39,59,248,80,144,40,8,27,40,249,22,31,11,80,144,42,41,40,248,22, -190,4,80,144,40,60,41,248,22,176,5,80,144,40,40,42,248,22,143,15,80, -144,40,48,42,20,18,144,11,80,143,39,59,248,80,144,40,8,27,40,249,22, -31,11,80,144,42,41,40,20,18,144,11,80,143,39,59,248,80,144,40,8,27, -40,249,22,31,11,80,144,42,41,40,144,39,20,121,145,2,1,39,16,1,11, -16,0,20,27,15,56,9,2,2,2,2,29,11,11,11,11,11,11,11,9,9, -11,11,11,10,41,80,143,39,39,20,121,145,2,1,44,16,28,2,3,2,4, -30,2,6,1,20,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110, -45,107,101,121,11,6,30,2,6,1,23,101,120,116,101,110,100,45,112,97,114, -97,109,101,116,101,114,105,122,97,116,105,111,110,11,4,30,2,7,74,112,97, -116,104,45,115,116,114,105,110,103,63,42,196,15,2,8,30,2,7,73,114,101, -114,111,111,116,45,112,97,116,104,44,196,16,30,2,7,77,112,97,116,104,45, -97,100,100,45,115,117,102,102,105,120,44,196,12,2,9,2,10,2,11,2,12, -2,13,2,14,2,15,2,16,2,17,2,18,2,19,2,20,2,21,2,22,30, -2,7,1,19,112,97,116,104,45,114,101,112,108,97,99,101,45,115,117,102,102, -105,120,44,196,14,30,2,7,75,102,105,110,100,45,99,111,108,45,102,105,108, -101,49,196,4,30,2,7,78,110,111,114,109,97,108,45,99,97,115,101,45,112, -97,116,104,42,196,11,2,23,2,24,30,2,6,76,114,101,112,97,114,97,109, -101,116,101,114,105,122,101,11,7,16,0,40,42,39,16,0,39,16,16,2,15, -2,16,2,8,2,12,2,17,2,18,2,11,2,4,2,10,2,3,2,20,2, -13,2,14,2,9,2,19,2,22,55,11,11,11,16,3,2,23,2,21,2,24, -16,3,11,11,11,16,3,2,23,2,21,2,24,42,42,40,12,11,11,16,0, -16,0,16,0,39,39,11,12,11,11,16,0,16,0,16,0,39,39,16,24,20, -15,16,2,248,22,180,8,71,115,111,45,115,117,102,102,105,120,80,144,39,39, -40,20,15,16,2,88,148,39,41,8,39,8,189,3,2,4,223,0,33,50,80, -144,39,40,40,20,15,16,2,32,0,88,148,8,36,44,55,11,2,9,222,33, -51,80,144,39,47,40,20,15,16,2,20,28,143,32,0,88,148,8,36,40,45, -11,2,10,222,192,32,0,88,148,8,36,40,45,11,2,10,222,192,80,144,39, -48,40,20,15,16,2,247,22,141,2,80,144,39,44,40,20,15,16,2,8,128, -8,80,144,39,49,40,20,15,16,2,249,22,185,8,8,128,8,11,80,144,39, -50,40,20,15,16,2,88,148,8,36,40,53,8,128,32,2,13,223,0,33,52, -80,144,39,51,40,20,15,16,2,88,148,8,36,41,57,8,128,32,2,14,223, -0,33,53,80,144,39,52,40,20,15,16,2,247,22,76,80,144,39,53,40,20, -15,16,2,248,22,16,76,109,111,100,117,108,101,45,108,111,97,100,105,110,103, -80,144,39,54,40,20,15,16,2,11,80,143,39,55,20,15,16,2,11,80,143, -39,56,20,15,16,2,32,0,88,148,39,41,60,11,2,19,222,33,72,80,144, -39,57,40,20,15,16,2,32,0,88,148,8,36,40,52,11,2,20,222,33,73, -80,144,39,58,40,20,15,16,2,11,80,143,39,59,20,15,16,2,88,149,8, -34,40,48,8,240,4,0,16,0,1,21,112,114,101,112,45,112,108,97,110,101, -116,45,114,101,115,111,108,118,101,114,33,40,224,1,0,33,74,80,144,39,8, -28,42,20,15,16,2,88,148,39,40,53,8,240,0,0,3,0,69,103,101,116, -45,100,105,114,223,0,33,75,80,144,39,8,29,42,20,15,16,2,88,148,39, -40,52,8,240,0,0,64,0,74,112,97,116,104,45,115,115,45,62,114,107,116, -223,0,33,76,80,144,39,8,30,42,20,15,16,2,88,148,8,36,40,48,8, -240,0,0,4,0,9,223,0,33,77,80,144,39,8,31,42,20,15,16,2,88, -148,39,40,48,8,240,0,128,0,0,9,223,0,33,78,80,144,39,8,32,42, -20,15,16,2,27,11,20,19,143,39,90,144,40,10,89,146,40,39,10,20,26, -96,2,22,88,148,8,36,41,57,8,32,9,224,2,1,33,79,88,148,39,42, -52,11,9,223,0,33,80,88,148,39,43,8,32,16,4,8,240,44,240,0,0, -8,240,220,241,0,0,40,39,9,224,2,1,33,96,207,80,144,39,60,40,20, -15,16,2,88,148,39,39,48,16,2,8,134,8,8,176,32,2,23,223,0,33, -97,80,144,39,8,25,40,20,15,16,2,20,28,143,88,148,8,36,39,48,16, -2,43,8,144,32,2,24,223,0,33,98,88,148,8,36,39,48,16,2,43,8, -144,32,2,24,223,0,33,99,80,144,39,8,26,40,96,29,94,2,5,70,35, -37,107,101,114,110,101,108,11,29,94,2,5,71,35,37,109,105,110,45,115,116, -120,11,2,7,2,6,9,9,9,39,9,0}; - EVAL_ONE_SIZED_STR((char *)expr, 9713); +199,1,248,22,181,3,23,201,1,250,2,64,23,196,4,196,248,22,181,3,198, +28,249,22,128,4,23,197,2,23,195,4,248,22,90,194,28,249,22,136,9,7, +47,249,22,157,7,23,198,2,23,199,2,249,22,80,250,22,175,7,23,199,2, +39,23,200,2,27,249,22,175,7,23,199,1,248,22,181,3,23,201,1,19,248, +22,156,7,23,195,2,250,2,60,23,196,4,23,197,1,39,2,27,248,22,181, +3,23,197,1,28,249,22,128,4,23,195,2,23,196,4,248,22,90,195,28,249, +22,136,9,7,47,249,22,157,7,23,199,2,23,197,2,249,22,80,250,22,175, +7,23,200,2,39,23,198,2,27,249,22,175,7,23,200,1,248,22,181,3,23, +199,1,19,248,22,156,7,23,195,2,250,2,64,23,196,4,23,197,1,39,2, +27,248,22,181,3,23,195,1,28,249,22,128,4,23,195,2,23,197,4,248,22, +90,196,28,249,22,136,9,7,47,249,22,157,7,23,200,2,23,197,2,249,22, +80,250,22,175,7,23,201,2,39,23,198,2,248,2,56,249,22,175,7,23,201, +1,248,22,181,3,23,199,1,250,2,59,23,198,4,198,248,22,181,3,196,19, +248,22,156,7,23,195,2,28,249,22,128,4,39,23,195,4,248,22,90,194,28, +249,22,136,9,7,47,249,22,157,7,23,198,2,39,249,22,80,250,22,175,7, +23,199,2,39,39,27,249,22,175,7,23,199,1,40,19,248,22,156,7,23,195, +2,250,2,57,23,196,4,23,197,1,39,2,28,249,22,128,4,40,23,195,4, +248,22,90,194,28,249,22,136,9,7,47,249,22,157,7,23,198,2,40,249,22, +80,250,22,175,7,23,199,2,39,40,248,2,56,249,22,175,7,23,199,1,41, +250,2,59,23,196,4,196,41,2,28,249,22,128,4,23,197,2,23,195,4,248, +22,90,194,28,249,22,136,9,7,47,249,22,157,7,23,198,2,23,199,2,249, +22,80,250,22,175,7,23,199,2,39,23,200,2,248,2,56,249,22,175,7,23, +199,1,248,22,181,3,23,201,1,250,2,55,23,196,4,196,248,22,181,3,198, +28,249,22,128,4,23,197,2,23,195,4,248,22,90,194,28,249,22,136,9,7, +47,249,22,157,7,23,198,2,23,199,2,249,22,80,250,22,175,7,23,199,2, +39,23,200,2,27,249,22,175,7,23,199,1,248,22,181,3,23,201,1,19,248, +22,156,7,23,195,2,250,2,55,23,196,4,23,197,1,39,2,27,248,22,181, +3,23,197,1,28,249,22,128,4,23,195,2,23,196,4,248,22,90,195,28,249, +22,136,9,7,47,249,22,157,7,23,199,2,23,197,2,249,22,80,250,22,175, +7,23,200,2,39,23,198,2,248,2,56,249,22,175,7,23,200,1,248,22,181, +3,23,199,1,250,2,54,23,197,4,197,248,22,181,3,196,32,70,88,148,39, +40,58,11,2,31,222,33,71,28,248,22,88,248,22,82,23,195,2,249,22,7, +9,248,22,163,20,23,196,1,90,144,41,11,89,146,41,39,11,27,248,22,164, +20,23,197,2,28,248,22,88,248,22,82,23,195,2,249,22,7,9,248,22,163, +20,195,90,144,41,11,89,146,41,39,11,27,248,22,164,20,196,28,248,22,88, +248,22,82,23,195,2,249,22,7,9,248,22,163,20,195,90,144,41,11,89,146, +41,39,11,248,2,70,248,22,164,20,196,249,22,7,249,22,80,248,22,163,20, +199,196,195,249,22,7,249,22,80,248,22,163,20,199,196,195,249,22,7,249,22, +80,248,22,163,20,23,200,1,23,197,1,23,196,1,27,19,248,22,156,7,23, +196,2,250,2,54,23,196,4,23,198,1,39,2,28,23,195,1,192,28,248,22, +88,248,22,82,23,195,2,249,22,7,9,248,22,163,20,23,196,1,27,248,22, +164,20,23,195,2,90,144,41,11,89,146,41,39,11,28,248,22,88,248,22,82, +23,197,2,249,22,7,9,248,22,163,20,23,198,1,27,248,22,164,20,23,197, +2,90,144,41,11,89,146,41,39,11,28,248,22,88,248,22,82,23,197,2,249, +22,7,9,248,22,163,20,197,90,144,41,11,89,146,41,39,11,248,2,70,248, +22,164,20,198,249,22,7,249,22,80,248,22,163,20,201,196,195,249,22,7,249, +22,80,248,22,163,20,23,203,1,196,195,249,22,7,249,22,80,248,22,163,20, +23,201,1,23,197,1,23,196,1,248,22,143,12,252,22,162,10,248,22,163,4, +23,200,2,248,22,159,4,23,200,2,248,22,160,4,23,200,2,248,22,161,4, +23,200,2,248,22,162,4,23,200,1,28,24,194,2,12,20,13,144,80,144,39, +41,40,80,143,39,59,89,146,40,40,10,249,22,130,5,21,94,2,32,6,19, +19,112,108,97,110,101,116,47,114,101,115,111,108,118,101,114,46,114,107,116,1, +27,112,108,97,110,101,116,45,109,111,100,117,108,101,45,110,97,109,101,45,114, +101,115,111,108,118,101,114,12,27,28,23,195,2,28,249,22,169,9,23,197,2, +80,143,42,55,86,94,23,195,1,80,143,40,56,27,248,22,153,5,23,197,2, +27,28,248,22,78,23,195,2,248,22,163,20,23,195,1,23,194,1,28,248,22, +174,15,23,194,2,90,144,42,11,89,146,42,39,11,248,22,131,16,23,197,1, +86,95,20,18,144,11,80,143,45,55,199,20,18,144,11,80,143,45,56,192,192, +11,11,28,23,193,2,192,86,94,23,193,1,27,247,22,177,5,28,23,193,2, +192,86,94,23,193,1,247,22,152,16,90,144,42,11,89,146,42,39,11,248,22, +131,16,23,198,2,86,95,23,195,1,23,193,1,28,249,22,167,16,0,11,35, +114,120,34,91,46,93,115,115,36,34,248,22,179,15,23,197,1,249,80,144,44, +61,42,23,199,1,2,26,196,249,80,144,41,57,42,195,10,249,22,12,23,196, +1,80,144,41,54,41,86,96,28,248,22,151,5,23,196,2,12,250,22,181,11, +2,22,6,21,21,114,101,115,111,108,118,101,100,45,109,111,100,117,108,101,45, +112,97,116,104,63,23,198,2,28,28,23,196,2,248,22,145,14,23,197,2,10, +12,250,22,181,11,2,22,6,20,20,40,111,114,47,99,32,35,102,32,110,97, +109,101,115,112,97,99,101,63,41,23,199,2,28,24,193,2,248,24,194,1,23, +196,2,86,94,23,193,1,12,27,250,22,158,2,80,144,44,44,41,248,22,128, +17,247,22,144,14,11,27,28,23,194,2,23,194,1,86,94,23,194,1,27,249, +22,80,247,22,138,2,247,22,138,2,86,94,250,22,156,2,80,144,46,44,41, +248,22,128,17,247,22,144,14,195,192,86,94,250,22,156,2,248,22,81,23,197, +2,23,200,2,70,100,101,99,108,97,114,101,100,28,23,198,2,27,28,248,22, +78,248,22,153,5,23,200,2,248,22,152,5,248,22,81,248,22,153,5,23,201, +1,23,198,1,27,250,22,158,2,80,144,47,44,41,248,22,128,17,23,204,1, +11,28,23,193,2,27,250,22,158,2,248,22,82,23,198,1,23,198,2,11,28, +23,193,2,250,22,156,2,248,22,164,20,23,200,1,23,198,1,23,196,1,12, +12,12,86,94,251,22,138,12,247,22,142,12,67,101,114,114,111,114,6,69,69, +100,101,102,97,117,108,116,32,109,111,100,117,108,101,32,110,97,109,101,32,114, +101,115,111,108,118,101,114,32,99,97,108,108,101,100,32,119,105,116,104,32,116, +104,114,101,101,32,97,114,103,117,109,101,110,116,115,32,40,100,101,112,114,101, +99,97,116,101,100,41,11,251,24,197,1,23,198,1,23,199,1,23,200,1,10, +32,81,88,148,39,41,50,11,78,102,108,97,116,116,101,110,45,115,117,98,45, +112,97,116,104,222,33,84,32,82,88,148,39,43,57,11,2,31,222,33,83,28, +248,22,88,23,197,2,28,248,22,88,195,192,249,22,80,194,248,22,95,197,28, +249,22,171,9,248,22,81,23,199,2,2,35,28,248,22,88,23,196,2,86,95, +23,196,1,23,195,1,250,22,177,11,2,22,6,37,37,116,111,111,32,109,97, +110,121,32,34,46,46,34,115,32,105,110,32,115,117,98,109,111,100,117,108,101, +32,112,97,116,104,58,32,126,46,115,250,22,91,2,34,28,249,22,171,9,23, +201,2,2,36,23,199,1,28,248,22,174,15,23,200,2,23,199,1,249,22,90, +28,248,22,64,23,202,2,2,5,2,37,23,201,1,23,200,1,251,2,82,196, +197,248,22,82,199,248,22,164,20,200,251,2,82,196,197,249,22,80,248,22,163, +20,202,200,248,22,164,20,200,251,2,82,196,197,9,197,27,250,22,176,7,27, +28,23,199,2,28,247,22,130,12,248,80,144,47,58,42,23,200,2,11,11,28, +192,192,6,29,29,115,116,97,110,100,97,114,100,45,109,111,100,117,108,101,45, +110,97,109,101,45,114,101,115,111,108,118,101,114,6,2,2,58,32,250,22,178, +16,0,7,35,114,120,34,92,110,34,23,203,1,249,22,137,8,6,23,23,10, +32,32,102,111,114,32,109,111,100,117,108,101,32,112,97,116,104,58,32,126,115, +10,23,202,2,248,22,173,13,28,23,196,2,251,22,181,12,23,198,1,247,22, +27,248,22,90,23,201,1,23,199,1,86,94,23,196,1,250,22,144,13,23,197, +1,247,22,27,23,198,1,32,86,88,148,8,36,40,53,11,69,115,115,45,62, +114,107,116,222,33,87,19,248,22,156,7,194,28,249,22,132,4,23,195,4,42, +28,249,22,169,9,7,46,249,22,157,7,197,249,22,184,3,23,199,4,42,28, +28,249,22,169,9,7,115,249,22,157,7,197,249,22,184,3,23,199,4,41,249, +22,169,9,7,115,249,22,157,7,197,249,22,184,3,23,199,4,40,11,249,22, +176,7,250,22,175,7,198,39,249,22,184,3,23,200,4,42,2,40,193,193,193, +2,28,249,22,159,7,194,2,36,2,27,28,249,22,159,7,194,2,35,64,117, +112,192,0,8,35,114,120,34,91,46,93,34,32,90,88,148,8,36,40,50,11, +2,31,222,33,91,28,248,22,88,23,194,2,9,250,22,91,6,4,4,10,32, +32,32,248,22,178,15,248,22,103,23,198,2,248,2,90,248,22,164,20,23,198, +1,28,249,22,171,9,248,22,82,23,200,2,23,197,1,28,249,22,169,9,248, +22,163,20,23,200,1,23,196,1,251,22,177,11,2,22,6,41,41,99,121,99, +108,101,32,105,110,32,108,111,97,100,105,110,103,10,32,32,97,116,32,112,97, +116,104,58,32,126,97,10,32,32,112,97,116,104,115,58,126,97,23,200,1,249, +22,1,22,176,7,248,2,90,248,22,95,23,201,1,12,12,247,23,193,1,250, +22,157,4,11,196,195,20,13,144,80,144,49,53,41,249,22,80,249,22,80,23, +198,1,23,202,1,23,195,1,20,13,144,80,144,49,41,40,252,80,144,54,42, +40,249,22,31,11,80,144,56,41,40,22,191,4,23,201,2,22,129,5,248,28, +23,208,2,20,20,94,88,148,8,36,40,49,11,9,223,15,33,94,23,208,1, +86,94,23,208,1,22,7,28,248,22,64,23,207,2,23,206,1,28,28,248,22, +78,23,207,2,249,22,169,9,248,22,163,20,23,209,2,2,32,11,23,206,1, +86,94,23,206,1,28,248,22,151,5,23,203,2,27,248,22,153,5,23,204,2, +28,248,22,64,193,249,22,90,2,5,194,192,23,202,2,249,247,22,176,5,23, +201,1,27,248,22,68,248,22,178,15,23,202,1,28,23,204,2,28,250,22,158, +2,248,22,163,20,23,202,1,23,202,1,11,249,22,80,11,205,249,22,80,194, +205,192,86,96,28,248,22,161,5,23,196,2,12,28,248,22,155,4,23,198,2, +250,22,179,11,11,6,15,15,98,97,100,32,109,111,100,117,108,101,32,112,97, +116,104,23,200,2,250,22,181,11,2,22,2,33,23,198,2,28,28,23,196,2, +248,22,151,5,23,197,2,10,12,250,22,181,11,2,22,6,31,31,40,111,114, +47,99,32,35,102,32,114,101,115,111,108,118,101,100,45,109,111,100,117,108,101, +45,112,97,116,104,63,41,23,199,2,28,28,23,197,2,248,22,155,4,23,198, +2,10,12,250,22,181,11,2,22,6,17,17,40,111,114,47,99,32,35,102,32, +115,121,110,116,97,120,63,41,23,200,2,28,28,248,22,78,23,196,2,249,22, +169,9,248,22,163,20,23,198,2,2,5,11,86,97,23,198,1,23,197,1,23, +196,1,23,193,1,248,22,152,5,248,22,102,23,197,1,28,28,248,22,78,23, +196,2,28,249,22,169,9,248,22,163,20,23,198,2,2,34,28,248,22,78,248, +22,102,23,197,2,249,22,169,9,248,22,106,23,198,2,2,5,11,11,11,86, +97,23,198,1,23,197,1,23,196,1,23,193,1,248,22,152,5,249,2,81,248, +22,119,23,199,2,248,22,104,23,199,1,28,28,248,22,78,23,196,2,28,249, +22,169,9,248,22,163,20,23,198,2,2,34,28,28,249,22,171,9,248,22,102, +23,198,2,2,36,10,249,22,171,9,248,22,102,23,198,2,2,35,28,23,196, +2,27,248,22,153,5,23,198,2,28,248,22,64,193,10,28,248,22,78,193,248, +22,64,248,22,163,20,194,11,11,11,11,11,86,96,23,198,1,23,197,1,23, +193,1,27,248,22,153,5,23,198,1,248,22,152,5,249,2,81,28,248,22,78, +23,197,2,248,22,163,20,23,197,2,23,196,2,27,28,249,22,171,9,248,22, +102,23,203,2,2,35,248,22,164,20,200,248,22,104,200,28,248,22,78,23,198, +2,249,22,94,248,22,164,20,199,194,192,28,28,248,22,78,23,196,2,249,22, +169,9,248,22,163,20,23,198,2,2,38,11,86,94,248,80,144,41,8,28,42, +23,194,2,253,24,199,1,23,201,1,23,202,1,23,203,1,23,204,1,11,80, +143,46,59,28,28,248,22,78,23,196,2,28,249,22,169,9,248,22,163,20,23, +198,2,2,34,28,248,22,78,248,22,102,23,197,2,249,22,169,9,248,22,106, +23,198,2,2,38,11,11,11,86,94,248,80,144,41,8,28,42,23,194,2,253, +24,199,1,248,22,102,23,202,2,23,202,1,23,203,1,23,204,1,248,22,104, +23,202,1,80,143,46,59,86,94,23,193,1,27,88,148,8,36,40,57,8,240, +0,0,8,0,1,19,115,104,111,119,45,99,111,108,108,101,99,116,105,111,110, +45,101,114,114,225,2,5,3,33,85,27,28,248,22,78,23,198,2,28,249,22, +169,9,2,34,248,22,163,20,23,200,2,27,248,22,102,23,199,2,28,28,249, +22,171,9,23,195,2,2,36,10,249,22,171,9,23,195,2,2,35,86,94,23, +193,1,28,23,199,2,27,248,22,153,5,23,201,2,28,248,22,78,193,248,22, +163,20,193,192,250,22,177,11,2,22,6,45,45,110,111,32,98,97,115,101,32, +112,97,116,104,32,102,111,114,32,114,101,108,97,116,105,118,101,32,115,117,98, +109,111,100,117,108,101,32,112,97,116,104,58,32,126,46,115,23,201,2,192,23, +197,2,23,197,2,27,28,248,22,78,23,199,2,28,249,22,169,9,2,34,248, +22,163,20,23,201,2,27,28,28,28,249,22,171,9,248,22,102,23,202,2,2, +36,10,249,22,171,9,248,22,102,23,202,2,2,35,23,200,2,11,27,248,22, +153,5,23,202,2,27,28,249,22,171,9,248,22,102,23,204,2,2,35,248,22, +164,20,23,202,1,248,22,104,23,202,1,28,248,22,78,23,195,2,249,2,81, +248,22,163,20,23,197,2,249,22,94,248,22,164,20,23,199,1,23,197,1,249, +2,81,23,196,1,23,195,1,249,2,81,2,36,28,249,22,171,9,248,22,102, +23,204,2,2,35,248,22,164,20,23,202,1,248,22,104,23,202,1,28,248,22, +78,193,248,22,164,20,193,11,11,11,27,28,248,22,64,23,196,2,27,248,80, +144,46,51,42,249,22,80,23,199,2,248,22,128,17,247,22,144,14,28,23,193, +2,192,86,94,23,193,1,90,144,41,11,89,146,41,39,11,249,80,144,49,57, +42,248,22,71,23,201,2,11,27,28,248,22,88,23,195,2,2,39,249,22,176, +7,23,197,2,2,40,252,80,144,53,8,23,42,23,205,1,28,248,22,88,23, +200,2,23,200,1,86,94,23,200,1,248,22,81,23,200,2,28,248,22,88,23, +200,2,86,94,23,199,1,9,248,22,82,23,200,1,23,198,1,10,28,248,22, +153,7,23,196,2,86,94,23,196,1,27,248,80,144,46,8,29,42,23,202,2, +27,248,80,144,47,51,42,249,22,80,23,200,2,23,197,2,28,23,193,2,192, +86,94,23,193,1,90,144,41,11,89,146,41,39,11,249,80,144,50,57,42,23, +201,2,11,28,248,22,88,23,194,2,86,94,23,193,1,249,22,128,16,23,198, +1,248,2,86,23,197,1,250,22,1,22,128,16,23,199,1,249,22,94,249,22, +2,32,0,88,148,8,36,40,47,11,9,222,33,88,23,200,1,248,22,90,248, +2,86,23,201,1,28,248,22,174,15,23,196,2,86,94,23,196,1,248,80,144, +45,8,30,42,248,22,138,16,28,248,22,135,16,23,198,2,23,197,2,249,22, +136,16,23,199,2,248,80,144,49,8,29,42,23,205,2,28,249,22,169,9,248, +22,81,23,198,2,2,32,27,248,80,144,46,51,42,249,22,80,23,199,2,248, +22,128,17,247,22,144,14,28,23,193,2,192,86,94,23,193,1,90,144,41,11, +89,146,41,39,11,249,80,144,49,57,42,248,22,102,23,201,2,11,27,28,248, +22,88,248,22,104,23,201,2,28,248,22,88,23,195,2,249,22,171,16,2,89, +23,197,2,11,10,27,28,23,194,2,248,2,86,23,197,2,28,248,22,88,23, +196,2,2,39,28,249,22,171,16,2,89,23,198,2,248,2,86,23,197,2,249, +22,176,7,23,198,2,2,40,27,28,23,195,1,86,94,23,197,1,249,22,94, +28,248,22,88,248,22,104,23,205,2,21,93,6,5,5,109,122,108,105,98,249, +22,1,22,94,249,22,2,80,144,56,8,31,42,248,22,104,23,208,2,23,198, +1,28,248,22,88,23,197,2,86,94,23,196,1,248,22,90,23,198,1,86,94, +23,197,1,23,196,1,252,80,144,55,8,23,42,23,207,1,248,22,81,23,199, +2,248,22,164,20,23,199,1,23,199,1,10,28,249,22,169,9,248,22,163,20, +23,198,2,2,37,248,80,144,45,8,30,42,248,22,138,16,249,22,136,16,248, +22,140,16,248,22,102,23,201,2,248,80,144,49,8,29,42,23,205,2,12,86, +94,28,28,248,22,174,15,23,194,2,10,248,22,184,8,23,194,2,12,28,23, +201,2,250,22,179,11,69,114,101,113,117,105,114,101,249,22,137,8,6,17,17, +98,97,100,32,109,111,100,117,108,101,32,112,97,116,104,126,97,28,23,198,2, +248,22,81,23,199,2,6,0,0,23,204,2,250,22,181,11,2,22,2,33,23, +198,2,27,28,248,22,184,8,23,195,2,249,22,189,8,23,196,2,39,249,22, +138,16,248,22,139,16,23,197,2,11,27,28,248,22,184,8,23,196,2,249,22, +189,8,23,197,2,40,248,80,144,47,8,24,42,23,195,2,90,144,42,11,89, +146,42,39,11,28,248,22,184,8,23,199,2,250,22,7,2,41,249,22,189,8, +23,203,2,41,2,41,248,22,131,16,23,198,2,86,95,23,195,1,23,193,1, +27,28,248,22,184,8,23,200,2,249,22,189,8,23,201,2,42,249,80,144,52, +61,42,23,197,2,5,0,27,28,248,22,184,8,23,201,2,249,22,189,8,23, +202,2,43,248,22,152,5,23,200,2,27,250,22,158,2,80,144,55,44,41,248, +22,128,17,247,22,144,14,11,27,28,23,194,2,23,194,1,86,94,23,194,1, +27,249,22,80,247,22,138,2,247,22,138,2,86,94,250,22,156,2,80,144,57, +44,41,248,22,128,17,247,22,144,14,195,192,27,28,23,204,2,248,22,152,5, +249,22,80,248,22,153,5,23,200,2,23,207,2,23,196,2,86,95,28,23,212, +2,28,250,22,158,2,248,22,81,23,198,2,195,11,86,96,23,211,1,23,204, +1,23,194,1,12,27,251,22,31,11,80,144,59,53,41,9,28,248,22,15,80, +144,60,54,41,80,144,59,54,41,247,22,17,27,248,22,128,17,247,22,144,14, +86,94,249,22,3,88,148,8,36,40,57,11,9,226,13,12,2,3,33,92,23, +196,2,248,28,248,22,15,80,144,58,54,41,32,0,88,148,39,40,45,11,9, +222,33,93,80,144,57,8,32,42,20,20,98,88,148,39,39,8,25,8,240,12, +64,0,0,9,233,18,21,14,15,12,11,7,6,4,1,2,33,95,23,195,1, +23,194,1,23,197,1,23,207,1,23,214,1,12,28,28,248,22,184,8,23,204, +1,86,94,23,212,1,11,28,23,212,1,28,248,22,153,7,23,206,2,10,28, +248,22,64,23,206,2,10,28,248,22,78,23,206,2,249,22,169,9,248,22,163, +20,23,208,2,2,32,11,11,249,80,144,56,52,42,28,248,22,153,7,23,208, +2,249,22,80,23,209,1,248,80,144,59,8,29,42,23,215,1,86,94,23,212, +1,249,22,80,23,209,1,248,22,128,17,247,22,144,14,252,22,186,8,23,209, +1,23,208,1,23,206,1,23,204,1,23,203,1,12,192,86,96,20,18,144,11, +80,143,39,59,248,80,144,40,8,27,40,249,22,31,11,80,144,42,41,40,248, +22,190,4,80,144,40,60,41,248,22,176,5,80,144,40,40,42,248,22,143,15, +80,144,40,48,42,20,18,144,11,80,143,39,59,248,80,144,40,8,27,40,249, +22,31,11,80,144,42,41,40,20,18,144,11,80,143,39,59,248,80,144,40,8, +27,40,249,22,31,11,80,144,42,41,40,144,39,20,121,145,2,1,39,16,1, +11,16,0,20,27,15,56,9,2,2,2,2,29,11,11,11,11,11,11,11,9, +9,11,11,11,10,41,80,143,39,39,20,121,145,2,1,44,16,28,2,3,2, +4,30,2,6,1,20,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111, +110,45,107,101,121,11,6,30,2,6,1,23,101,120,116,101,110,100,45,112,97, +114,97,109,101,116,101,114,105,122,97,116,105,111,110,11,4,30,2,7,74,112, +97,116,104,45,115,116,114,105,110,103,63,42,196,15,2,8,30,2,7,73,114, +101,114,111,111,116,45,112,97,116,104,44,196,16,30,2,7,77,112,97,116,104, +45,97,100,100,45,115,117,102,102,105,120,44,196,12,2,9,2,10,2,11,2, +12,2,13,2,14,2,15,2,16,2,17,2,18,2,19,2,20,2,21,2,22, +30,2,7,1,19,112,97,116,104,45,114,101,112,108,97,99,101,45,115,117,102, +102,105,120,44,196,14,30,2,7,75,102,105,110,100,45,99,111,108,45,102,105, +108,101,49,196,4,30,2,7,78,110,111,114,109,97,108,45,99,97,115,101,45, +112,97,116,104,42,196,11,2,23,2,24,30,2,6,76,114,101,112,97,114,97, +109,101,116,101,114,105,122,101,11,7,16,0,40,42,39,16,0,39,16,16,2, +15,2,16,2,8,2,12,2,17,2,18,2,11,2,4,2,10,2,3,2,20, +2,13,2,14,2,9,2,19,2,22,55,11,11,11,16,3,2,23,2,21,2, +24,16,3,11,11,11,16,3,2,23,2,21,2,24,42,42,40,12,11,11,16, +0,16,0,16,0,39,39,11,12,11,11,16,0,16,0,16,0,39,39,16,24, +20,15,16,2,248,22,180,8,71,115,111,45,115,117,102,102,105,120,80,144,39, +39,40,20,15,16,2,88,148,39,41,8,39,8,189,3,2,4,223,0,33,50, +80,144,39,40,40,20,15,16,2,32,0,88,148,8,36,44,55,11,2,9,222, +33,51,80,144,39,47,40,20,15,16,2,20,28,143,32,0,88,148,8,36,40, +45,11,2,10,222,192,32,0,88,148,8,36,40,45,11,2,10,222,192,80,144, +39,48,40,20,15,16,2,247,22,141,2,80,144,39,44,40,20,15,16,2,8, +128,8,80,144,39,49,40,20,15,16,2,249,22,185,8,8,128,8,11,80,144, +39,50,40,20,15,16,2,88,148,8,36,40,53,8,128,32,2,13,223,0,33, +52,80,144,39,51,40,20,15,16,2,88,148,8,36,41,57,8,128,32,2,14, +223,0,33,53,80,144,39,52,40,20,15,16,2,247,22,76,80,144,39,53,40, +20,15,16,2,248,22,16,76,109,111,100,117,108,101,45,108,111,97,100,105,110, +103,80,144,39,54,40,20,15,16,2,11,80,143,39,55,20,15,16,2,11,80, +143,39,56,20,15,16,2,32,0,88,148,39,41,60,11,2,19,222,33,72,80, +144,39,57,40,20,15,16,2,32,0,88,148,8,36,40,52,11,2,20,222,33, +73,80,144,39,58,40,20,15,16,2,11,80,143,39,59,20,15,16,2,88,149, +8,34,40,48,8,240,4,0,16,0,1,21,112,114,101,112,45,112,108,97,110, +101,116,45,114,101,115,111,108,118,101,114,33,40,224,1,0,33,74,80,144,39, +8,28,42,20,15,16,2,88,148,39,40,53,8,240,0,0,3,0,69,103,101, +116,45,100,105,114,223,0,33,75,80,144,39,8,29,42,20,15,16,2,88,148, +39,40,52,8,240,0,0,64,0,74,112,97,116,104,45,115,115,45,62,114,107, +116,223,0,33,76,80,144,39,8,30,42,20,15,16,2,88,148,8,36,40,48, +8,240,0,0,4,0,9,223,0,33,77,80,144,39,8,31,42,20,15,16,2, +88,148,39,40,48,8,240,0,128,0,0,9,223,0,33,78,80,144,39,8,32, +42,20,15,16,2,27,11,20,19,143,39,90,144,40,10,89,146,40,39,10,20, +26,96,2,22,88,148,8,36,41,57,8,32,9,224,2,1,33,79,88,148,39, +42,52,11,9,223,0,33,80,88,148,39,43,8,32,16,4,8,240,44,240,0, +0,8,240,220,241,0,0,40,39,9,224,2,1,33,96,207,80,144,39,60,40, +20,15,16,2,88,148,39,39,48,16,2,8,134,8,8,176,32,2,23,223,0, +33,97,80,144,39,8,25,40,20,15,16,2,20,28,143,88,148,8,36,39,48, +16,2,43,8,144,32,2,24,223,0,33,98,88,148,8,36,39,48,16,2,43, +8,144,32,2,24,223,0,33,99,80,144,39,8,26,40,96,29,94,2,5,70, +35,37,107,101,114,110,101,108,11,29,94,2,5,71,35,37,109,105,110,45,115, +116,120,11,2,7,2,6,9,9,9,39,9,0}; + EVAL_ONE_SIZED_STR((char *)expr, 9714); } { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,9,54,46,50,46,57,48,48,46,57,84,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,1,0,0,8,0, -18,0,24,0,38,0,52,0,64,0,84,0,98,0,113,0,126,0,131,0,135, -0,147,0,231,0,238,0,8,1,0,0,198,1,0,0,3,1,5,105,110,115, -112,48,71,35,37,98,117,105,108,116,105,110,67,113,117,111,116,101,29,94,2, -3,70,35,37,107,101,114,110,101,108,11,29,94,2,3,70,35,37,101,120,112, -111,98,115,11,29,94,2,3,68,35,37,98,111,111,116,11,29,94,2,3,76, -35,37,112,108,97,99,101,45,115,116,114,117,99,116,11,29,94,2,3,70,35, -37,112,97,114,97,109,122,11,29,94,2,3,71,35,37,110,101,116,119,111,114, -107,11,29,94,2,3,69,35,37,117,116,105,108,115,11,38,11,93,2,12,36, -12,0,39,38,13,93,143,16,3,39,2,14,2,2,39,36,14,1,150,40,143, -2,15,16,4,2,4,39,39,2,1,143,2,15,16,4,2,5,39,39,2,1, -143,2,15,16,4,2,6,39,39,2,1,143,2,15,16,4,2,7,39,39,2, -1,143,2,15,16,4,2,8,39,39,2,1,143,2,15,16,4,2,9,39,39, -2,1,143,2,15,16,4,2,10,39,39,2,1,16,0,38,15,143,2,14,2, -11,18,143,16,2,143,10,16,3,9,2,11,2,13,143,11,16,3,9,9,2, -13,16,3,9,9,9,144,39,20,121,145,2,1,39,16,1,11,16,0,20,27, -15,56,9,2,2,2,2,29,11,11,11,11,11,11,11,9,9,11,11,11,33, -16,39,80,143,39,39,20,121,145,2,1,39,16,0,16,0,40,42,39,16,0, -39,16,0,39,11,11,11,16,0,16,0,16,0,39,39,40,12,11,11,16,0, -16,0,16,0,39,39,11,12,11,11,16,0,16,0,16,0,39,39,16,0,104, -2,4,2,5,29,94,2,3,71,35,37,102,111,114,101,105,103,110,11,29,94, -2,3,70,35,37,117,110,115,97,102,101,11,29,94,2,3,71,35,37,102,108, -102,120,110,117,109,11,2,6,2,7,2,8,2,9,2,10,29,94,2,3,69, -35,37,112,108,97,99,101,11,29,94,2,3,71,35,37,102,117,116,117,114,101, -115,11,9,9,9,39,9,0}; - EVAL_ONE_SIZED_STR((char *)expr, 532); + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,10,54,46,50,46,57,48,48,46,49,48,84,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,1,0,0,8, +0,18,0,24,0,38,0,52,0,64,0,84,0,98,0,113,0,126,0,131,0, +135,0,147,0,231,0,238,0,8,1,0,0,198,1,0,0,3,1,5,105,110, +115,112,48,71,35,37,98,117,105,108,116,105,110,67,113,117,111,116,101,29,94, +2,3,70,35,37,107,101,114,110,101,108,11,29,94,2,3,70,35,37,101,120, +112,111,98,115,11,29,94,2,3,68,35,37,98,111,111,116,11,29,94,2,3, +76,35,37,112,108,97,99,101,45,115,116,114,117,99,116,11,29,94,2,3,70, +35,37,112,97,114,97,109,122,11,29,94,2,3,71,35,37,110,101,116,119,111, +114,107,11,29,94,2,3,69,35,37,117,116,105,108,115,11,38,11,93,2,12, +36,12,0,39,38,13,93,143,16,3,39,2,14,2,2,39,36,14,1,150,40, +143,2,15,16,4,2,4,39,39,2,1,143,2,15,16,4,2,5,39,39,2, +1,143,2,15,16,4,2,6,39,39,2,1,143,2,15,16,4,2,7,39,39, +2,1,143,2,15,16,4,2,8,39,39,2,1,143,2,15,16,4,2,9,39, +39,2,1,143,2,15,16,4,2,10,39,39,2,1,16,0,38,15,143,2,14, +2,11,18,143,16,2,143,10,16,3,9,2,11,2,13,143,11,16,3,9,9, +2,13,16,3,9,9,9,144,39,20,121,145,2,1,39,16,1,11,16,0,20, +27,15,56,9,2,2,2,2,29,11,11,11,11,11,11,11,9,9,11,11,11, +33,16,39,80,143,39,39,20,121,145,2,1,39,16,0,16,0,40,42,39,16, +0,39,16,0,39,11,11,11,16,0,16,0,16,0,39,39,40,12,11,11,16, +0,16,0,16,0,39,39,11,12,11,11,16,0,16,0,16,0,39,39,16,0, +104,2,4,2,5,29,94,2,3,71,35,37,102,111,114,101,105,103,110,11,29, +94,2,3,70,35,37,117,110,115,97,102,101,11,29,94,2,3,71,35,37,102, +108,102,120,110,117,109,11,2,6,2,7,2,8,2,9,2,10,29,94,2,3, +69,35,37,112,108,97,99,101,11,29,94,2,3,71,35,37,102,117,116,117,114, +101,115,11,9,9,9,39,9,0}; + EVAL_ONE_SIZED_STR((char *)expr, 533); } diff --git a/racket/src/racket/src/env.c b/racket/src/racket/src/env.c index 4d4f541641..2db6ad4505 100644 --- a/racket/src/racket/src/env.c +++ b/racket/src/racket/src/env.c @@ -114,6 +114,7 @@ static Scheme_Object *local_lift_expr(int argc, Scheme_Object *argv[]); static Scheme_Object *local_lift_exprs(int argc, Scheme_Object *argv[]); static Scheme_Object *local_lift_context(int argc, Scheme_Object *argv[]); static Scheme_Object *local_lift_end_statement(int argc, Scheme_Object *argv[]); +static Scheme_Object *local_lift_module(int argc, Scheme_Object *argv[]); static Scheme_Object *local_lift_require(int argc, Scheme_Object *argv[]); static Scheme_Object *local_lift_provide(int argc, Scheme_Object *argv[]); static Scheme_Object *make_introducer(int argc, Scheme_Object *argv[]); @@ -804,6 +805,7 @@ static void make_kernel_env(void) GLOBAL_PRIM_W_ARITY("syntax-local-lift-values-expression", local_lift_exprs, 2, 2, env); GLOBAL_PRIM_W_ARITY("syntax-local-lift-context", local_lift_context, 0, 0, env); GLOBAL_PRIM_W_ARITY("syntax-local-lift-module-end-declaration", local_lift_end_statement, 1, 1, env); + GLOBAL_PRIM_W_ARITY("syntax-local-lift-module", local_lift_module, 1, 1, env); GLOBAL_PRIM_W_ARITY("syntax-local-lift-require", local_lift_require, 2, 2, env); GLOBAL_PRIM_W_ARITY("syntax-local-lift-provide", local_lift_provide, 1, 1, env); @@ -2772,6 +2774,25 @@ local_lift_end_statement(int argc, Scheme_Object *argv[]) return scheme_local_lift_end_statement(expr, local_scope, env); } +static Scheme_Object * +local_lift_module(int argc, Scheme_Object *argv[]) +{ + Scheme_Comp_Env *env; + Scheme_Object *local_scope, *expr; + + expr = argv[0]; + if (!SCHEME_STXP(expr)) + scheme_wrong_contract("syntax-local-lift-module", "syntax?", 0, argc, argv); + + env = scheme_current_thread->current_local_env; + local_scope = scheme_current_thread->current_local_scope; + + if (!env) + not_currently_transforming("syntax-local-lift-module"); + + return scheme_local_lift_module(expr, local_scope, env); +} + static Scheme_Object *local_lift_require(int argc, Scheme_Object *argv[]) { Scheme_Comp_Env *env; diff --git a/racket/src/racket/src/eval.c b/racket/src/racket/src/eval.c index 4b95814f19..01cf3f8cee 100644 --- a/racket/src/racket/src/eval.c +++ b/racket/src/racket/src/eval.c @@ -4148,7 +4148,9 @@ static void *compile_k(void) before the rest. */ while (1) { scheme_frame_captures_lifts(cenv, scheme_make_lifted_defn, scheme_sys_wraps(cenv), - scheme_false, scheme_top_level_lifts_key(cenv), scheme_null, scheme_false); + scheme_false, scheme_top_level_lifts_key(cenv), scheme_null, scheme_false, + /* lifted modules like definitions: */ + scheme_true); form = scheme_check_immediate_macro(form, cenv, &rec, 0, &gval, @@ -4195,7 +4197,9 @@ static void *compile_k(void) while (1) { scheme_frame_captures_lifts(cenv, scheme_make_lifted_defn, scheme_sys_wraps(cenv), - scheme_false, scheme_top_level_lifts_key(cenv), scheme_null, scheme_false); + scheme_false, scheme_top_level_lifts_key(cenv), scheme_null, scheme_false, + /* lifted modules like definitions: */ + scheme_true); scheme_init_compile_recs(&rec, 0, &rec2, 1); @@ -4650,7 +4654,13 @@ static void *expand_k(void) data, scheme_false, catch_lifts_key, (!as_local && catch_lifts_key) ? scheme_null : NULL, - scheme_false); + scheme_false, + /* lifted modules like definitions: */ + ((env->flags & SCHEME_TOPLEVEL_FRAME) + ? scheme_true /* lifted `module` like definition */ + : ((env->flags & SCHEME_MODULE_FRAME) + ? scheme_void /* lifted `module[*]` like definition */ + : scheme_false))); } if (just_to_top) { @@ -5268,7 +5278,12 @@ do_local_expand(const char *name, int for_stx, int catch_lifts, int for_expr, in data, scheme_top_level_lifts_key(env), catch_lifts_key, NULL, - scheme_false); + scheme_false, + ((kind & SCHEME_TOPLEVEL_FRAME) + ? scheme_true /* lifted `module` like definition */ + : ((kind & SCHEME_MODULE_FRAME) + ? scheme_void /* lifted `module[*]` like definition */ + : scheme_false))); /* no lifted modules */ } memset(drec, 0, sizeof(drec)); diff --git a/racket/src/racket/src/module.c b/racket/src/racket/src/module.c index bf6cc7b660..e16754cbcf 100644 --- a/racket/src/racket/src/module.c +++ b/racket/src/racket/src/module.c @@ -8563,6 +8563,79 @@ static Scheme_Object *revert_use_site_scopes_via_context(Scheme_Object *o, Schem SCHEME_STX_REMOVE); } +static Scheme_Object *handle_submodule_form(const char *who, + Scheme_Object *e, + Scheme_Comp_Env *env, int phase, + Scheme_Object *rn_set, Scheme_Object *observer, + Module_Begin_Expand_State *bxs, + Scheme_Compile_Expand_Info *rec, int drec, + Scheme_Compile_Expand_Info *erec, int derec, + int *_kind) +{ + Scheme_Object *name = NULL, *fst, *p; + int is_star; + + fst = SCHEME_STX_CAR(e); + + is_star = scheme_stx_free_eq_x(scheme_modulestar_stx, fst, phase); + + e = revert_use_site_scopes_via_context(e, rn_set, phase); + + SCHEME_EXPAND_OBSERVE_ENTER_PRIM(observer, e); + if (is_star) { + SCHEME_EXPAND_OBSERVE_PRIM_SUBMODULE_STAR(observer); + } else { + SCHEME_EXPAND_OBSERVE_PRIM_SUBMODULE(observer); + } + + if (SCHEME_STX_PAIRP(e)) { + p = SCHEME_STX_CDR(e); + if (SCHEME_STX_PAIRP(p)) { + name = SCHEME_STX_CAR(p); + p = SCHEME_STX_CDR(p); + if (!SCHEME_STX_SYMBOLP(name) + || !SCHEME_STX_PAIRP(p)) { + name = NULL; + } + } + } + if (!name) { + scheme_wrong_syntax(who, NULL, e, NULL); + } + + if (!bxs->submodule_names) { + Scheme_Hash_Table *smn; + smn = scheme_make_hash_table(SCHEME_hash_ptr); + bxs->submodule_names = smn; + } + if (scheme_hash_get(bxs->submodule_names, SCHEME_STX_VAL(name))) { + scheme_wrong_syntax(who, name, fst, "duplicate submodule definition"); + } + scheme_hash_set(bxs->submodule_names, + SCHEME_STX_VAL(name), + is_star ? scheme_void : scheme_true); + + if (!is_star) { + p = expand_submodules(erec ? erec : rec, erec ? derec :drec, env, + scheme_make_pair(scheme_make_pair(e, scheme_make_integer(phase)), scheme_null), 0, + bxs, !!erec); + if (erec) + e = SCHEME_CAR(p); + else + e = NULL; + *_kind = DONE_MODFORM_KIND; + } else { + p = scheme_make_pair(scheme_make_pair(e, scheme_make_integer(phase)), + bxs->saved_submodules); + bxs->saved_submodules = p; + *_kind = MODULE_MODFORM_KIND; + } + + SCHEME_EXPAND_OBSERVE_EXIT_PRIM(observer,e); + + return e; +} + static Scheme_Object *do_module_begin_k(void) { Scheme_Thread *p = scheme_current_thread; @@ -8784,7 +8857,7 @@ static Scheme_Object *do_module_begin_at_phase(Scheme_Object *form, Scheme_Comp_ ? scheme_frame_get_provide_lifts(xenv) : scheme_null); scheme_frame_captures_lifts(xenv, scheme_make_lifted_defn, scheme_sys_wraps(xenv), - p, lift_ctx, req_data, prev_p); + p, lift_ctx, req_data, prev_p, scheme_void); maybe_has_lifts = 1; { @@ -8981,7 +9054,7 @@ static Scheme_Object *do_module_begin_at_phase(Scheme_Object *form, Scheme_Comp_ 0); if (!for_stx) scheme_frame_captures_lifts(eenv, NULL, NULL, scheme_false, scheme_false, - req_data, scheme_false); + req_data, scheme_false, scheme_false); oenv = env; @@ -9220,63 +9293,14 @@ static Scheme_Object *do_module_begin_at_phase(Scheme_Object *form, Scheme_Comp_ || scheme_stx_free_eq_x(scheme_modulestar_stx, fst, phase)) { /************ module[*] *************/ /* check outer syntax & name, then expand pre-module or remember for post-module pass */ - Scheme_Object *name = NULL; - int is_star; - - is_star = scheme_stx_free_eq_x(scheme_modulestar_stx, fst, phase); - - e = revert_use_site_scopes_via_context(e, rn_set, phase); - - SCHEME_EXPAND_OBSERVE_ENTER_PRIM(observer, e); - if (is_star) { - SCHEME_EXPAND_OBSERVE_PRIM_SUBMODULE_STAR(observer); - } else { - SCHEME_EXPAND_OBSERVE_PRIM_SUBMODULE(observer); - } - - if (SCHEME_STX_PAIRP(e)) { - p = SCHEME_STX_CDR(e); - if (SCHEME_STX_PAIRP(p)) { - name = SCHEME_STX_CAR(p); - p = SCHEME_STX_CDR(p); - if (!SCHEME_STX_SYMBOLP(name) - || !SCHEME_STX_PAIRP(p)) { - name = NULL; - } - } - } - if (!name) { - scheme_wrong_syntax(who, NULL, e, NULL); - } - - if (!bxs->submodule_names) { - Scheme_Hash_Table *smn; - smn = scheme_make_hash_table(SCHEME_hash_ptr); - bxs->submodule_names = smn; - } - if (scheme_hash_get(bxs->submodule_names, SCHEME_STX_VAL(name))) { - scheme_wrong_syntax(who, name, fst, "duplicate submodule definition"); - } - scheme_hash_set(bxs->submodule_names, - SCHEME_STX_VAL(name), - is_star ? scheme_void : scheme_true); - - if (!is_star) { - p = expand_submodules(erec ? erec : rec, erec ? derec :drec, env, - scheme_make_pair(scheme_make_pair(e, scheme_make_integer(phase)), scheme_null), 0, - bxs, !!erec); - if (erec) - e = SCHEME_CAR(p); - else - e = NULL; - kind = DONE_MODFORM_KIND; - } else { - p = scheme_make_pair(scheme_make_pair(e, scheme_make_integer(phase)), - bxs->saved_submodules); - bxs->saved_submodules = p; - kind = MODULE_MODFORM_KIND; - } - SCHEME_EXPAND_OBSERVE_EXIT_PRIM(observer,e); + int k; + e = handle_submodule_form(who, + e, env, phase, + rn_set, observer, + bxs, + rec, drec, erec, derec, + &k); + kind = k; } else { kind = EXPR_MODFORM_KIND; non_phaseless |= NON_PHASELESS_FORM; @@ -9400,7 +9424,7 @@ static Scheme_Object *do_module_begin_at_phase(Scheme_Object *form, Scheme_Comp_ ll = (maybe_has_lifts ? scheme_frame_get_provide_lifts(cenv) : scheme_null); - scheme_frame_captures_lifts(cenv, add_lifted_defn, lift_data, l, lift_ctx, req_data, ll); + scheme_frame_captures_lifts(cenv, add_lifted_defn, lift_data, l, lift_ctx, req_data, ll, scheme_void); maybe_has_lifts = 1; if (kind == DEFN_MODFORM_KIND) @@ -9436,6 +9460,7 @@ static Scheme_Object *do_module_begin_at_phase(Scheme_Object *form, Scheme_Comp_ p = SCHEME_CDR(p); } else { /* Lifts - insert them and try again */ + Scheme_Object *fst; *bxs->all_simple_bindings = 0; SCHEME_EXPAND_OBSERVE_MODULE_LIFT_LOOP(observer, scheme_copy_list(l)); if (erec) { @@ -9447,7 +9472,29 @@ static Scheme_Object *do_module_begin_at_phase(Scheme_Object *form, Scheme_Comp_ e = scheme_make_pair(e, scheme_make_integer(DONE_MODFORM_KIND)); /* don't re-compile/-expand */ SCHEME_CAR(p) = e; for (ll = l; SCHEME_PAIRP(ll); ll = SCHEME_CDR(ll)) { - e = scheme_make_pair(SCHEME_CAR(ll), scheme_make_integer(DEFN_MODFORM_KIND)); + e = SCHEME_CAR(ll); + if (SCHEME_STX_PAIRP(SCHEME_CAR(e))) + fst = SCHEME_STX_CAR(SCHEME_CAR(e)); + else + fst = NULL; + if (fst + && (scheme_stx_free_eq3(fst, scheme_module_stx, scheme_make_integer(phase), scheme_make_integer(0)) + || scheme_stx_free_eq3(fst, scheme_modulestar_stx, scheme_make_integer(phase), scheme_make_integer(0)))) { + /* a `module` or `module*` form; handle as in first pass */ + int k; + e = handle_submodule_form(who, + e, env, phase, + rn_set, observer, + bxs, + rec, drec, erec, derec, + &k); + if (e) + e = scheme_make_pair(e, scheme_make_integer(k)); + else + e = scheme_make_pair(scheme_void, DONE_MODFORM_KIND); + } else { + e = scheme_make_pair(e, scheme_make_integer(DEFN_MODFORM_KIND)); + } SCHEME_CAR(ll) = e; } p = scheme_append(l, p); diff --git a/racket/src/racket/src/schminc.h b/racket/src/racket/src/schminc.h index 45e66df415..0e2a470120 100644 --- a/racket/src/racket/src/schminc.h +++ b/racket/src/racket/src/schminc.h @@ -14,7 +14,7 @@ #define USE_COMPILED_STARTUP 1 -#define EXPECTED_PRIM_COUNT 1133 +#define EXPECTED_PRIM_COUNT 1134 #define EXPECTED_UNSAFE_COUNT 106 #define EXPECTED_FLFXNUM_COUNT 69 #define EXPECTED_EXTFL_COUNT 45 diff --git a/racket/src/racket/src/schpriv.h b/racket/src/racket/src/schpriv.h index e4effeefaa..d477767b74 100644 --- a/racket/src/racket/src/schpriv.h +++ b/racket/src/racket/src/schpriv.h @@ -2835,6 +2835,8 @@ Scheme_Object *scheme_do_local_lift_expr(const char *who, int stx_pos, Scheme_Object *scheme_local_lift_context(Scheme_Comp_Env *env); Scheme_Object *scheme_local_lift_end_statement(Scheme_Object *expr, Scheme_Object *local_scope, Scheme_Comp_Env *env); +Scheme_Object *scheme_local_lift_module(Scheme_Object *expr, Scheme_Object *local_scope, + Scheme_Comp_Env *env); Scheme_Object *scheme_local_lift_require(Scheme_Object *form, Scheme_Object *orig_form, intptr_t phase, Scheme_Object *local_scope, Scheme_Comp_Env *env); @@ -2890,10 +2892,12 @@ Scheme_Object *scheme_extract_foreign(Scheme_Object *o); typedef Scheme_Object *(*Scheme_Lift_Capture_Proc)(Scheme_Object *, Scheme_Object **, Scheme_Object *, Scheme_Comp_Env *); void scheme_frame_captures_lifts(Scheme_Comp_Env *env, Scheme_Lift_Capture_Proc cp, Scheme_Object *data, Scheme_Object *end_stmts, Scheme_Object *context_key, - Scheme_Object *require_lifts, Scheme_Object *provide_lifts); + Scheme_Object *require_lifts, Scheme_Object *provide_lifts, + Scheme_Object *module_lifts); void scheme_propagate_require_lift_capture(Scheme_Comp_Env *orig_env, Scheme_Comp_Env *env); Scheme_Object *scheme_frame_get_lifts(Scheme_Comp_Env *env); Scheme_Object *scheme_frame_get_end_statement_lifts(Scheme_Comp_Env *env); +Scheme_Object *scheme_frame_get_end_modules(Scheme_Comp_Env *env); Scheme_Object *scheme_frame_get_require_lifts(Scheme_Comp_Env *env); Scheme_Object *scheme_frame_get_provide_lifts(Scheme_Comp_Env *env); Scheme_Object *scheme_generate_lifts_key(void); diff --git a/racket/src/racket/src/schvers.h b/racket/src/racket/src/schvers.h index 2dd3e70717..403bb94c3b 100644 --- a/racket/src/racket/src/schvers.h +++ b/racket/src/racket/src/schvers.h @@ -13,12 +13,12 @@ consistently.) */ -#define MZSCHEME_VERSION "6.2.900.9" +#define MZSCHEME_VERSION "6.2.900.10" #define MZSCHEME_VERSION_X 6 #define MZSCHEME_VERSION_Y 2 #define MZSCHEME_VERSION_Z 900 -#define MZSCHEME_VERSION_W 9 +#define MZSCHEME_VERSION_W 10 #define MZSCHEME_VERSION_MAJOR ((MZSCHEME_VERSION_X * 100) + MZSCHEME_VERSION_Y) #define MZSCHEME_VERSION_MINOR ((MZSCHEME_VERSION_Z * 1000) + MZSCHEME_VERSION_W)