diff --git a/packages/bun-types/globals.d.ts b/packages/bun-types/globals.d.ts index c7585bbda5..f51de85b0f 100644 --- a/packages/bun-types/globals.d.ts +++ b/packages/bun-types/globals.d.ts @@ -1,3 +1,5 @@ +import * as tls from 'node:tls'; + /** * "blob" is not supported yet */ @@ -1288,6 +1290,7 @@ interface RequestInit { } interface FetchRequestInit extends RequestInit { + /** * Log the raw HTTP request & response to stdout. This API may be * removed in a future version of Bun without notice. @@ -1300,6 +1303,14 @@ interface FetchRequestInit extends RequestInit { * This is a custom property that is not part of the Fetch API specification. */ proxy?: string; + + /** + * Override the default TLS options + */ + tls?: { + rejectUnauthorized?: boolean | undefined; // Defaults to true + checkServerIdentity?: typeof tls.checkServerIdentity | undefined; + }; } /** diff --git a/packages/bun-usockets/src/crypto/openssl.c b/packages/bun-usockets/src/crypto/openssl.c index 418baa2a0b..a247e88cd7 100644 --- a/packages/bun-usockets/src/crypto/openssl.c +++ b/packages/bun-usockets/src/crypto/openssl.c @@ -83,7 +83,6 @@ struct us_internal_ssl_socket_context_t { /* Pointer to sni tree, created when the context is created and freed likewise when freed */ void *sni; - int pending_handshake; us_internal_on_handshake_t on_handshake; void* handshake_data; }; @@ -94,6 +93,7 @@ struct us_internal_ssl_socket_t { SSL *ssl; int ssl_write_wants_read; // we use this for now int ssl_read_wants_write; + int pending_handshake; }; int passphrase_cb(char *buf, int size, int rwflag, void *u) { @@ -161,6 +161,7 @@ int BIO_s_custom_read(BIO *bio, char *dst, int length) { struct us_internal_ssl_socket_t *ssl_on_open(struct us_internal_ssl_socket_t *s, int is_client, char *ip, int ip_length) { struct us_internal_ssl_socket_context_t *context = (struct us_internal_ssl_socket_context_t *) us_socket_context(0, &s->s); + struct us_loop_t *loop = us_socket_context_loop(0, &context->sc); struct loop_ssl_data *loop_ssl_data = (struct loop_ssl_data *) loop->data.ssl_data; @@ -183,7 +184,9 @@ struct us_internal_ssl_socket_t *ssl_on_open(struct us_internal_ssl_socket_t *s, struct us_internal_ssl_socket_t * result = (struct us_internal_ssl_socket_t *) context->on_open(s, is_client, ip, ip_length); // Hello Message! - if(context->pending_handshake) { + // always handshake after open if on_handshake is set + if(context->on_handshake || s->pending_handshake) { + s->pending_handshake = 1; us_internal_ssl_handshake(s, context->on_handshake, context->handshake_data); } @@ -191,8 +194,7 @@ struct us_internal_ssl_socket_t *ssl_on_open(struct us_internal_ssl_socket_t *s, } -void us_internal_on_ssl_handshake(struct us_internal_ssl_socket_context_t * context, us_internal_on_handshake_t on_handshake, void* custom_data) { - context->pending_handshake = 1; +void us_internal_on_ssl_handshake(struct us_internal_ssl_socket_context_t * context, void (*on_handshake)(struct us_internal_ssl_socket_t *, int success, struct us_bun_verify_error_t verify_error, void* custom_data), void* custom_data) { context->on_handshake = on_handshake; context->handshake_data = custom_data; } @@ -203,7 +205,7 @@ void us_internal_ssl_handshake(struct us_internal_ssl_socket_t *s, us_internal_o // will start on_open, on_writable or on_data if(!s->ssl) { - context->pending_handshake = 1; + s->pending_handshake = 1; context->on_handshake = on_handshake; context->handshake_data = custom_data; return; @@ -215,9 +217,7 @@ void us_internal_ssl_handshake(struct us_internal_ssl_socket_t *s, us_internal_o loop_ssl_data->ssl_socket = &s->s; if (us_socket_is_closed(0, &s->s) || us_internal_ssl_socket_is_shut_down(s)) { - context->pending_handshake = 0; - context->on_handshake = NULL; - context->handshake_data = NULL; + s->pending_handshake = 0; struct us_bun_verify_error_t verify_error = (struct us_bun_verify_error_t) { .error = 0, .code = NULL, .reason = NULL }; if(on_handshake != NULL) { @@ -233,9 +233,7 @@ void us_internal_ssl_handshake(struct us_internal_ssl_socket_t *s, us_internal_o int err = SSL_get_error(s->ssl, result); // as far as I know these are the only errors we want to handle if (err != SSL_ERROR_WANT_READ && err != SSL_ERROR_WANT_WRITE) { - context->pending_handshake = 0; - context->on_handshake = NULL; - context->handshake_data = NULL; + s->pending_handshake = 0; struct us_bun_verify_error_t verify_error = us_internal_verify_error(s); // clear per thread error queue if it may contain something @@ -249,7 +247,7 @@ void us_internal_ssl_handshake(struct us_internal_ssl_socket_t *s, us_internal_o } return; } else { - context->pending_handshake = 1; + s->pending_handshake = 1; context->on_handshake = on_handshake; context->handshake_data = custom_data; // Ensure that we'll cycle through internal openssl's state @@ -259,10 +257,7 @@ void us_internal_ssl_handshake(struct us_internal_ssl_socket_t *s, us_internal_o } } else { - context->pending_handshake = 0; - context->on_handshake = NULL; - context->handshake_data = NULL; - + s->pending_handshake = 0; struct us_bun_verify_error_t verify_error = us_internal_verify_error(s); // success @@ -280,16 +275,16 @@ void us_internal_ssl_handshake(struct us_internal_ssl_socket_t *s, us_internal_o struct us_internal_ssl_socket_t *us_internal_ssl_socket_close(struct us_internal_ssl_socket_t *s, int code, void *reason) { struct us_internal_ssl_socket_context_t *context = (struct us_internal_ssl_socket_context_t *) us_socket_context(0, &s->s); - if (context->pending_handshake) { - context->pending_handshake = 0; + if (s->pending_handshake) { + s->pending_handshake = 0; } return (struct us_internal_ssl_socket_t *) us_socket_close(0, (struct us_socket_t *) s, code, reason); } struct us_internal_ssl_socket_t *ssl_on_close(struct us_internal_ssl_socket_t *s, int code, void *reason) { struct us_internal_ssl_socket_context_t *context = (struct us_internal_ssl_socket_context_t *) us_socket_context(0, &s->s); - if (context->pending_handshake) { - context->pending_handshake = 0; + if (s->pending_handshake) { + s->pending_handshake = 0; } SSL_free(s->ssl); @@ -297,11 +292,8 @@ struct us_internal_ssl_socket_t *ssl_on_close(struct us_internal_ssl_socket_t *s } struct us_internal_ssl_socket_t *ssl_on_end(struct us_internal_ssl_socket_t *s) { - if(s != NULL) { - struct us_internal_ssl_socket_context_t *context = (struct us_internal_ssl_socket_context_t *) us_socket_context(0, &s->s); - if (context && context->pending_handshake) { - context->pending_handshake = 0; - } + if (s && s->pending_handshake) { + s->pending_handshake = 0; } // whatever state we are in, a TCP FIN is always an answered shutdown @@ -319,7 +311,7 @@ struct us_internal_ssl_socket_t *ssl_on_data(struct us_internal_ssl_socket_t *s, struct us_loop_t *loop = us_socket_context_loop(0, &context->sc); struct loop_ssl_data *loop_ssl_data = (struct loop_ssl_data *) loop->data.ssl_data; - if(context->pending_handshake) { + if(s->pending_handshake) { us_internal_ssl_handshake(s, context->on_handshake, context->handshake_data); } @@ -474,7 +466,7 @@ struct us_internal_ssl_socket_t *ssl_on_writable(struct us_internal_ssl_socket_t struct us_internal_ssl_socket_context_t *context = (struct us_internal_ssl_socket_context_t *) us_socket_context(0, &s->s); - if(context->pending_handshake) { + if(s->pending_handshake) { us_internal_ssl_handshake(s, context->on_handshake, context->handshake_data); } @@ -1214,10 +1206,8 @@ struct us_internal_ssl_socket_context_t *us_internal_create_ssl_socket_context(s context->ssl_context = ssl_context;//create_ssl_context_from_options(options); context->is_parent = 1; - context->pending_handshake = 0; context->on_handshake = NULL; context->handshake_data = NULL; - /* We, as parent context, may ignore data */ context->sc.is_low_prio = (int (*)(struct us_socket_t *)) ssl_is_low_prio; @@ -1252,10 +1242,9 @@ struct us_internal_ssl_socket_context_t *us_internal_bun_create_ssl_socket_conte /* Then we extend its SSL parts */ context->ssl_context = ssl_context;//create_ssl_context_from_options(options); context->is_parent = 1; - context->pending_handshake = 0; + context->on_handshake = NULL; context->handshake_data = NULL; - /* We, as parent context, may ignore data */ context->sc.is_low_prio = (int (*)(struct us_socket_t *)) ssl_is_low_prio; diff --git a/src/bun.js/api/bun/socket.zig b/src/bun.js/api/bun/socket.zig index ad5823a1b2..a0106d369e 100644 --- a/src/bun.js/api/bun/socket.zig +++ b/src/bun.js/api/bun/socket.zig @@ -1393,6 +1393,7 @@ fn NewSocket(comptime ssl: bool) type { pub fn onHandshake(this: *This, socket: Socket, success: i32, ssl_error: uws.us_bun_verify_error_t) void { log("onHandshake({d})", .{success}); JSC.markBinding(@src()); + if (this.detached) return; const authorized = if (success == 1) true else false; diff --git a/src/bun.js/api/bun/x509.zig b/src/bun.js/api/bun/x509.zig index 20ab16547b..9c902b39cb 100644 --- a/src/bun.js/api/bun/x509.zig +++ b/src/bun.js/api/bun/x509.zig @@ -72,7 +72,7 @@ fn x509GetNameObject(globalObject: *JSGlobalObject, name: ?*BoringSSL.X509_NAME) return result; } -inline fn isSafeAltName(name: []const u8, utf8: bool) bool { +pub inline fn isSafeAltName(name: []const u8, utf8: bool) bool { for (name) |c| { switch (c) { '"', @@ -417,7 +417,7 @@ fn getSerialNumber(cert: *BoringSSL.X509, globalObject: *JSGlobalObject) JSValue fn getRawDERCertificate(cert: *BoringSSL.X509, globalObject: *JSGlobalObject) JSValue { const size = BoringSSL.i2d_X509(cert, null); var buffer = JSValue.createBufferFromLength(globalObject, @as(usize, @intCast(size))); - var buffer_ptr = @as([*c]u8, @ptrCast(buffer.asArrayBuffer(globalObject).?.ptr)); + var buffer_ptr = buffer.asArrayBuffer(globalObject).?.ptr; const result_size = BoringSSL.i2d_X509(cert, &buffer_ptr); std.debug.assert(result_size == size); return buffer; diff --git a/src/bun.js/bindings/bindings.zig b/src/bun.js/bindings/bindings.zig index 5842da20a2..8da2eff348 100644 --- a/src/bun.js/bindings/bindings.zig +++ b/src/bun.js/bindings/bindings.zig @@ -2030,6 +2030,10 @@ pub const JSPromise = extern struct { return this.strong.get().?; } + pub fn valueOrEmpty(this: *Strong) JSValue { + return this.strong.get() orelse .zero; + } + pub fn swap(this: *Strong) *JSC.JSPromise { var prom = this.strong.swap().asPromise().?; this.strong.deinit(); diff --git a/src/bun.js/webcore/response.zig b/src/bun.js/webcore/response.zig index 74f5e90ea9..2e09d93695 100644 --- a/src/bun.js/webcore/response.zig +++ b/src/bun.js/webcore/response.zig @@ -55,6 +55,9 @@ const Request = JSC.WebCore.Request; const Blob = JSC.WebCore.Blob; const Async = bun.Async; +const BoringSSL = bun.BoringSSL; +const X509 = @import("../api/bun/x509.zig"); + pub const Response = struct { const ResponseMixin = BodyMixin(@This()); pub usingnamespace JSC.Codegen.JSResponse; @@ -655,9 +658,14 @@ pub const Fetch = struct { // must be stored because AbortSignal stores reason weakly abort_reason: JSValue = JSValue.zero, + + // custom checkServerIdentity + check_server_identity: JSC.Strong = .{}, + reject_unauthorized: bool = true, // Custom Hostname hostname: ?[]u8 = null, is_waiting_body: bool = false, + is_waiting_abort: bool = false, mutex: Mutex, tracker: JSC.AsyncTaskTracker, @@ -733,6 +741,8 @@ pub const Fetch = struct { if (this.abort_reason != .zero) this.abort_reason.unprotect(); + this.check_server_identity.deinit(); + if (this.signal) |signal| { this.signal = null; signal.detach(this); @@ -896,11 +906,30 @@ pub const Fetch = struct { if (this.is_waiting_body) { return this.onBodyReceived(); } - this.mutex.lock(); + // if we abort because of cert error + // we wait the Http Client because we already have the response + // we just need to deinit const globalThis = this.global_this; + this.mutex.lock(); + + if (this.is_waiting_abort) { + // has_more will be false when the request is aborted/finished + if (this.result.has_more) { + this.mutex.unlock(); + return; + } + this.mutex.unlock(); + var poll_ref = this.poll_ref; + var vm = globalThis.bunVM(); + + poll_ref.unref(vm); + this.clearData(); + this.deinit(); + return; + } var ref = this.promise; - const promise_value = ref.value(); + const promise_value = ref.valueOrEmpty(); var poll_ref = this.poll_ref; var vm = globalThis.bunVM(); @@ -916,6 +945,46 @@ pub const Fetch = struct { return; } + if (this.result.certificate_info) |certificate_info| { + this.result.certificate_info = null; + defer certificate_info.deinit(bun.default_allocator); + + // we receive some error + if (this.reject_unauthorized and !this.checkServerIdentity(certificate_info)) { + log("onProgressUpdate: aborted due certError", .{}); + // we need to abort the request + const promise = promise_value.asAnyPromise().?; + const tracker = this.tracker; + const result = this.onReject(); + + result.ensureStillAlive(); + promise_value.ensureStillAlive(); + + promise.reject(globalThis, result); + + tracker.didDispatch(globalThis); + ref.strong.deinit(); + this.has_schedule_callback.store(false, .Monotonic); + this.mutex.unlock(); + if (this.is_waiting_abort) { + return; + } + // we are already done we can deinit + poll_ref.unref(vm); + this.clearData(); + this.deinit(); + return; + } + // everything ok + if (this.metadata == null) { + log("onProgressUpdate: metadata is null", .{}); + this.has_schedule_callback.store(false, .Monotonic); + // cannot continue without metadata + this.mutex.unlock(); + return; + } + } + const promise = promise_value.asAnyPromise().?; const tracker = this.tracker; tracker.willDispatch(globalThis); @@ -950,6 +1019,43 @@ pub const Fetch = struct { } } + pub fn checkServerIdentity(this: *FetchTasklet, certificate_info: HTTPClient.CertificateInfo) bool { + if (this.check_server_identity.get()) |check_server_identity| { + if (certificate_info.cert.len > 0) { + var cert = certificate_info.cert; + var cert_ptr = cert.ptr; + if (BoringSSL.d2i_X509(null, &cert_ptr, @intCast(cert.len))) |x509| { + defer BoringSSL.X509_free(x509); + const globalObject = this.global_this; + const js_cert = X509.toJS(x509, globalObject); + var hostname: bun.String = bun.String.create(certificate_info.hostname); + const js_hostname = hostname.toJS(globalObject); + const check_result = check_server_identity.callWithThis(globalObject, JSC.JSValue.jsUndefined(), &[_]JSC.JSValue{ js_hostname, js_cert }); + // if check failed abort the request + if (check_result.isAnyError()) { + // mark to wait until deinit + this.is_waiting_abort = this.result.has_more; + + check_result.ensureStillAlive(); + check_result.protect(); + this.abort_reason = check_result; + this.signal_store.aborted.store(true, .Monotonic); + this.tracker.didCancel(this.global_this); + + // we need to abort the request + if (this.http != null) { + HTTPClient.http_thread.scheduleShutdown(this.http.?); + } + this.result.fail = error.ERR_TLS_CERT_ALTNAME_INVALID; + return false; + } + return true; + } + } + } + this.result.fail = error.ERR_TLS_CERT_ALTNAME_INVALID; + return false; + } pub fn onReject(this: *FetchTasklet) JSValue { log("onReject", .{}); @@ -1152,6 +1258,8 @@ pub const Fetch = struct { .hostname = fetch_options.hostname, .tracker = JSC.AsyncTaskTracker.init(jsc_vm), .memory_reporter = fetch_options.memory_reporter, + .check_server_identity = fetch_options.check_server_identity, + .reject_unauthorized = fetch_options.reject_unauthorized, }; fetch_tasklet.signals = fetch_tasklet.signal_store.to(); @@ -1170,8 +1278,14 @@ pub const Fetch = struct { proxy = jsc_vm.bundler.env.getHttpProxy(fetch_options.url); } - if (fetch_tasklet.signal == null) { - fetch_tasklet.signals.aborted = null; + if (fetch_tasklet.check_server_identity.has() and fetch_tasklet.reject_unauthorized) { + fetch_tasklet.signal_store.cert_errors.store(true, .Monotonic); + } else { + fetch_tasklet.signals.cert_errors = null; + // we use aborted to signal that we should abort reject_unauthorized after check with check_server_identity + if (fetch_tasklet.signal == null) { + fetch_tasklet.signals.aborted = null; + } } fetch_tasklet.http.?.* = HTTPClient.AsyncHTTP.init( @@ -1204,6 +1318,8 @@ pub const Fetch = struct { fetch_tasklet.http.?.client.verbose = fetch_options.verbose; fetch_tasklet.http.?.client.disable_keepalive = fetch_options.disable_keepalive; fetch_tasklet.http.?.client.disable_decompression = fetch_options.disable_decompression; + fetch_tasklet.http.?.client.reject_unauthorized = fetch_options.reject_unauthorized; + // we wanna to return after headers are received fetch_tasklet.signal_store.header_progress.store(true, .Monotonic); @@ -1240,6 +1356,7 @@ pub const Fetch = struct { disable_timeout: bool, disable_keepalive: bool, disable_decompression: bool, + reject_unauthorized: bool, url: ZigURL, verbose: bool = false, redirect_type: FetchRedirect = FetchRedirect.follow, @@ -1249,8 +1366,8 @@ pub const Fetch = struct { globalThis: ?*JSGlobalObject, // Custom Hostname hostname: ?[]u8 = null, - memory_reporter: *JSC.MemoryReportingAllocator, + check_server_identity: JSC.Strong = .{}, }; pub fn queue( @@ -1284,6 +1401,7 @@ pub const Fetch = struct { // metadata should be provided only once so we preserve it until we consume it if (result.metadata) |metadata| { + log("added callback metadata", .{}); std.debug.assert(task.metadata == null); task.metadata = metadata; } @@ -1406,7 +1524,8 @@ pub const Fetch = struct { var url_proxy_buffer: []const u8 = undefined; var is_file_url = false; - + var reject_unauthorized = true; + var check_server_identity: JSValue = .zero; // TODO: move this into a DRYer implementation // The status quo is very repetitive and very bug prone if (first_arg.as(Request)) |request| { @@ -1554,6 +1673,24 @@ pub const Fetch = struct { } } + if (options.get(ctx, "tls")) |tls| { + if (!tls.isEmptyOrUndefinedOrNull() and tls.isObject()) { + if (tls.get(ctx, "rejectUnauthorized")) |reject| { + if (reject.isBoolean()) { + reject_unauthorized = reject.asBoolean(); + } else if (reject.isNumber()) { + reject_unauthorized = reject.to(i32) != 0; + } + } + + if (tls.get(ctx, "checkServerIdentity")) |checkServerIdentity| { + if (checkServerIdentity.isCell() and checkServerIdentity.isCallable(globalThis.vm())) { + check_server_identity = checkServerIdentity; + } + } + } + } + if (options.get(globalThis, "proxy")) |proxy_arg| { if (proxy_arg.isString() and proxy_arg.getLength(ctx) > 0) { var href = JSC.URL.hrefFromJS(proxy_arg, globalThis); @@ -1729,6 +1866,24 @@ pub const Fetch = struct { } } + if (options.get(ctx, "tls")) |tls| { + if (!tls.isEmptyOrUndefinedOrNull() and tls.isObject()) { + if (tls.get(ctx, "rejectUnauthorized")) |reject| { + if (reject.isBoolean()) { + reject_unauthorized = reject.asBoolean(); + } else if (reject.isNumber()) { + reject_unauthorized = reject.to(i32) != 0; + } + } + + if (tls.get(ctx, "checkServerIdentity")) |checkServerIdentity| { + if (checkServerIdentity.isCell() and checkServerIdentity.isCallable(globalThis.vm())) { + check_server_identity = checkServerIdentity; + } + } + } + } + if (options.getTruthy(globalThis, "proxy")) |proxy_arg| { if (proxy_arg.isString() and proxy_arg.getLength(globalThis) > 0) { var href = JSC.URL.hrefFromJS(proxy_arg, globalThis); @@ -1983,6 +2138,7 @@ pub const Fetch = struct { .disable_keepalive = disable_keepalive, .disable_timeout = disable_timeout, .disable_decompression = disable_decompression, + .reject_unauthorized = reject_unauthorized, .redirect_type = redirect_type, .verbose = verbose, .proxy = proxy, @@ -1991,6 +2147,7 @@ pub const Fetch = struct { .globalThis = globalThis, .hostname = hostname, .memory_reporter = memory_reporter, + .check_server_identity = if (check_server_identity.isEmptyOrUndefinedOrNull()) .{} else JSC.Strong.create(check_server_identity, globalThis), }, // Pass the Strong value instead of creating a new one, or else we // will leak it diff --git a/src/deps/boringssl.translated.zig b/src/deps/boringssl.translated.zig index bc92a99814..3e7ef479ce 100644 --- a/src/deps/boringssl.translated.zig +++ b/src/deps/boringssl.translated.zig @@ -2834,9 +2834,9 @@ pub extern fn X509_up_ref(x509: ?*X509) c_int; pub extern fn X509_chain_up_ref(chain: ?*struct_stack_st_X509) ?*struct_stack_st_X509; pub extern fn X509_dup(x509: ?*X509) ?*X509; pub extern fn X509_free(x509: ?*X509) void; -pub extern fn d2i_X509(out: [*c]?*X509, inp: [*c][*c]const u8, len: c_long) ?*X509; +pub extern fn d2i_X509(out: [*c]?*X509, inp: *[*]const u8, len: c_long) ?*X509; pub extern fn X509_parse_from_buffer(buf: ?*CRYPTO_BUFFER) ?*X509; -pub extern fn i2d_X509(x509: ?*X509, outp: [*c][*c]u8) c_int; +pub extern fn i2d_X509(x509: ?*X509, outp: ?*[*]u8) c_int; pub extern fn X509_get_version(x509: ?*const X509) c_long; pub extern fn X509_get0_serialNumber(x509: ?*const X509) [*c]const ASN1_INTEGER; pub extern fn X509_get0_notBefore(x509: ?*const X509) [*c]const ASN1_TIME; diff --git a/src/http_client_async.zig b/src/http_client_async.zig index bbf7e07b83..a08d87eee2 100644 --- a/src/http_client_async.zig +++ b/src/http_client_async.zig @@ -24,12 +24,14 @@ const Zlib = @import("./zlib.zig"); const StringBuilder = @import("./string_builder.zig"); const AsyncIO = bun.AsyncIO; const ThreadPool = bun.ThreadPool; -const BoringSSL = bun.BoringSSL; pub const NetworkThread = @import("./network_thread.zig"); const ObjectPool = @import("./pool.zig").ObjectPool; const SOCK = os.SOCK; const Arena = @import("./mimalloc_arena.zig").Arena; const ZlibPool = @import("./http/zlib.zig"); +const BoringSSL = bun.BoringSSL; +const X509 = @import("./bun.js/api/bun/x509.zig"); +const c_ares = @import("./deps/c_ares.zig"); const URLBufferPool = ObjectPool([4096]u8, null, false, 10); const uws = bun.uws; @@ -64,17 +66,20 @@ pub const Signals = struct { header_progress: ?*std.atomic.Atomic(bool) = null, body_streaming: ?*std.atomic.Atomic(bool) = null, aborted: ?*std.atomic.Atomic(bool) = null, + cert_errors: ?*std.atomic.Atomic(bool) = null, pub const Store = struct { header_progress: std.atomic.Atomic(bool) = std.atomic.Atomic(bool).init(false), body_streaming: std.atomic.Atomic(bool) = std.atomic.Atomic(bool).init(false), aborted: std.atomic.Atomic(bool) = std.atomic.Atomic(bool).init(false), + cert_errors: std.atomic.Atomic(bool) = std.atomic.Atomic(bool).init(false), pub fn to(this: *Store) Signals { return .{ .header_progress = &this.header_progress, .body_streaming = &this.body_streaming, .aborted = &this.aborted, + .cert_errors = &this.cert_errors, }; } }; @@ -303,6 +308,12 @@ const ProxyTunnel = struct { } }; +pub const HTTPCertError = struct { + error_no: i32 = 0, + code: [:0]const u8 = "", + reason: [:0]const u8 = "", +}; + fn NewHTTPContext(comptime ssl: bool) type { return struct { const pool_size = 64; @@ -345,10 +356,19 @@ fn NewHTTPContext(comptime ssl: bool) type { } pub fn init(this: *@This()) !void { - var opts: uws.us_socket_context_options_t = .{}; - this.us_socket_context = uws.us_create_socket_context(ssl_int, http_thread.loop, @sizeOf(usize), opts).?; if (comptime ssl) { + var opts: uws.us_bun_socket_context_options_t = .{ + // we request the cert so we load root certs and can verify it + .request_cert = 1, + // we manually abort the connection if the hostname doesn't match + .reject_unauthorized = 0, + }; + this.us_socket_context = uws.us_create_bun_socket_context(ssl_int, http_thread.loop, @sizeOf(usize), opts).?; + this.sslCtx().setup(); + } else { + var opts: uws.us_socket_context_options_t = .{}; + this.us_socket_context = uws.us_create_socket_context(ssl_int, http_thread.loop, @sizeOf(usize), opts).?; } HTTPSocket.configure( @@ -412,6 +432,51 @@ fn NewHTTPContext(comptime ssl: bool) type { std.debug.assert(false); } } + pub fn onHandshake( + ptr: *anyopaque, + socket: HTTPSocket, + success: i32, + ssl_error: uws.us_bun_verify_error_t, + ) void { + const authorized = if (success == 1) true else false; + + const handshake_error = HTTPCertError{ + .error_no = ssl_error.error_no, + .code = if (ssl_error.code == null) "" else ssl_error.code[0..bun.len(ssl_error.code) :0], + .reason = if (ssl_error.code == null) "" else ssl_error.reason[0..bun.len(ssl_error.reason) :0], + }; + log("onHandshake(0x{}) authorized: {} error: {s}", .{ bun.fmt.hexIntUpper(@intFromPtr(socket.socket)), authorized, handshake_error.code }); + + const active = ActiveSocket.from(bun.cast(**anyopaque, ptr).*); + if (active.get(HTTPClient)) |client| { + if (authorized) { + // we only call onCertError if error is not 0 + if (handshake_error.error_no != 0) { + // if onCertError returns false, we dont call open this means that the connection was rejected + if (!client.onCertError(comptime ssl, socket, handshake_error)) { + return; + } + } + return client.firstCall(comptime ssl, socket); + } else { + // if authorized it self is false, this means that the connection was rejected + return client.onConnectError( + comptime ssl, + socket, + ); + } + } + + if (active.get(PooledSocket)) |pooled| { + std.debug.assert(context().pending_sockets.put(pooled)); + } + + socket.ext(**anyopaque).?.* = bun.cast(**anyopaque, ActiveSocket.init(&dead_socket).ptr()); + socket.close(0, null); + if (comptime Environment.allow_assert) { + std.debug.assert(false); + } + } pub fn onClose( ptr: *anyopaque, socket: HTTPSocket, @@ -578,6 +643,9 @@ fn NewHTTPContext(comptime ssl: bool) type { sock.ext(**anyopaque).?.* = bun.cast(**anyopaque, ActiveSocket.init(client).ptr()); client.allow_retry = true; client.onOpen(comptime ssl, sock); + if (comptime ssl) { + client.firstCall(comptime ssl, sock); + } return sock; } } @@ -773,6 +841,167 @@ pub const HTTPThread = struct { const log = Output.scoped(.fetch, false); var temp_hostname: [8096]u8 = undefined; + +const INET6_ADDRSTRLEN = if (bun.Environment.isWindows) 65 else 46; + +/// converts IP string to canonicalized IP string +/// return null when the IP is invalid +fn canonicalizeIP(addr_str: []const u8, outIP: *[INET6_ADDRSTRLEN + 1]u8) ?[]const u8 { + if (addr_str.len >= INET6_ADDRSTRLEN) { + return null; + } + var ip_std_text: [INET6_ADDRSTRLEN + 1]u8 = undefined; + // we need a null terminated string as input + bun.copy(u8, outIP, addr_str); + outIP[addr_str.len] = 0; + + var af: c_int = std.os.AF.INET; + // get the standard text representation of the IP + if (c_ares.ares_inet_pton(af, outIP, &ip_std_text) != 1) { + af = std.os.AF.INET6; + if (c_ares.ares_inet_pton(af, outIP, &ip_std_text) != 1) { + return null; + } + } + // ip_addr will contain the null-terminated string of the cannonicalized IP + if (c_ares.ares_inet_ntop(af, &ip_std_text, outIP, outIP.len) == null) { + return null; + } + // use the null-terminated size to return the string + const size = bun.len(bun.cast([*:0]u8, outIP)); + return outIP[0..size]; +} + +/// converts ASN1_OCTET_STRING to canonicalized IP string +/// return null when the IP is invalid +fn ip2String(ip: *BoringSSL.ASN1_OCTET_STRING, outIP: *[INET6_ADDRSTRLEN + 1]u8) ?[]const u8 { + const af: c_int = if (ip.length == 4) std.os.AF.INET else std.os.AF.INET6; + if (c_ares.ares_inet_ntop(af, ip.data, outIP, outIP.len) == null) { + return null; + } + + // use the null-terminated size to return the string + const size = bun.len(bun.cast([*:0]u8, outIP)); + return outIP[0..size]; +} + +pub fn onCertError( + client: *HTTPClient, + comptime is_ssl: bool, + socket: NewHTTPContext(is_ssl).HTTPSocket, + certError: HTTPCertError, +) bool { + if (comptime is_ssl == false) { + @panic("onCertError called on non-ssl socket"); + } + if (client.reject_unauthorized) { + const ssl_ptr = @as(*BoringSSL.SSL, @ptrCast(socket.getNativeHandle())); + if (BoringSSL.SSL_get_peer_cert_chain(ssl_ptr)) |cert_chain| { + if (BoringSSL.sk_X509_value(cert_chain, 0)) |x509| { + + // check if we need to report the error (probably to `checkServerIdentity` was informed from JS side) + // this is the slow path + if (client.signals.get(.cert_errors)) { + // clone the relevant data + const cert_size = BoringSSL.i2d_X509(x509, null); + var cert = bun.default_allocator.alloc(u8, @intCast(cert_size)) catch @panic("OOM"); + var cert_ptr = cert.ptr; + const result_size = BoringSSL.i2d_X509(x509, &cert_ptr); + std.debug.assert(result_size == cert_size); + + var hostname = client.hostname orelse client.url.hostname; + if (client.http_proxy) |proxy| { + hostname = proxy.hostname; + } + + client.state.certificate_info = .{ + .cert = cert, + .hostname = bun.default_allocator.dupe(u8, hostname) catch @panic("OOM"), + .cert_error = .{ + .error_no = certError.error_no, + .code = bun.default_allocator.dupeZ(u8, certError.code) catch @panic("OOM"), + .reason = bun.default_allocator.dupeZ(u8, certError.reason) catch @panic("OOM"), + }, + }; + + // we inform the user that the cert is invalid + client.progressUpdate(true, &http_thread.https_context, socket); + // continue until we are aborted or not + return true; + } else { + // we check with native code if the cert is valid + // fast path + + const index = BoringSSL.X509_get_ext_by_NID(x509, BoringSSL.NID_subject_alt_name, -1); + if (index >= 0) { + // we can check hostname + if (BoringSSL.X509_get_ext(x509, index)) |ext| { + const method = BoringSSL.X509V3_EXT_get(ext); + if (method != BoringSSL.X509V3_EXT_get_nid(BoringSSL.NID_subject_alt_name)) { + client.fail(error.ERR_TLS_CERT_ALTNAME_INVALID); + return false; + } + var hostname = client.hostname orelse client.url.hostname; + if (client.http_proxy) |proxy| { + hostname = proxy.hostname; + } + + if (strings.isIPAddress(hostname)) { + // we safely ensure buffer size with max len + 1 + var canonicalIPBuf: [INET6_ADDRSTRLEN + 1]u8 = undefined; + var certIPBuf: [INET6_ADDRSTRLEN + 1]u8 = undefined; + // we try to canonicalize the IP before comparing + var host_ip = canonicalizeIP(hostname, &canonicalIPBuf) orelse hostname; + + if (BoringSSL.X509V3_EXT_d2i(ext)) |names_| { + const names: *BoringSSL.struct_stack_st_GENERAL_NAME = bun.cast(*BoringSSL.struct_stack_st_GENERAL_NAME, names_); + defer BoringSSL.sk_GENERAL_NAME_pop_free(names, BoringSSL.sk_GENERAL_NAME_free); + for (0..BoringSSL.sk_GENERAL_NAME_num(names)) |i| { + const gen = BoringSSL.sk_GENERAL_NAME_value(names, i); + if (gen) |name| { + if (name.name_type == .GEN_IPADD) { + if (ip2String(name.d.ip, &certIPBuf)) |cert_ip| { + if (strings.eql(host_ip, cert_ip)) { + return true; + } + } + } + } + } + } + } else { + if (BoringSSL.X509V3_EXT_d2i(ext)) |names_| { + const names: *BoringSSL.struct_stack_st_GENERAL_NAME = bun.cast(*BoringSSL.struct_stack_st_GENERAL_NAME, names_); + defer BoringSSL.sk_GENERAL_NAME_pop_free(names, BoringSSL.sk_GENERAL_NAME_free); + for (0..BoringSSL.sk_GENERAL_NAME_num(names)) |i| { + const gen = BoringSSL.sk_GENERAL_NAME_value(names, i); + if (gen) |name| { + if (name.name_type == .GEN_DNS) { + const dnsName = name.d.dNSName; + var dnsNameSlice = dnsName.data[0..@as(usize, @intCast(dnsName.length))]; + if (X509.isSafeAltName(dnsNameSlice, false)) { + if (strings.eql(dnsNameSlice, hostname)) { + return true; + } + } + } + } + } + } + } + } + } + } + } + } + // SSL error so we fail the connection + client.fail(error.ERR_TLS_CERT_ALTNAME_INVALID); + return false; + } + // we allow the connection to continue anyway + return true; +} + pub fn onOpen( client: *HTTPClient, comptime is_ssl: bool, @@ -796,8 +1025,8 @@ pub fn onOpen( } if (comptime is_ssl) { - var ssl: *BoringSSL.SSL = @as(*BoringSSL.SSL, @ptrCast(socket.getNativeHandle())); - if (!ssl.isInitFinished()) { + var ssl_ptr: *BoringSSL.SSL = @as(*BoringSSL.SSL, @ptrCast(socket.getNativeHandle())); + if (!ssl_ptr.isInitFinished()) { var _hostname = client.hostname orelse client.url.hostname; if (client.http_proxy) |proxy| { _hostname = proxy.hostname; @@ -818,10 +1047,18 @@ pub fn onOpen( defer if (hostname_needs_free) bun.default_allocator.free(hostname); - ssl.configureHTTPClient(hostname); + ssl_ptr.configureHTTPClient(hostname); } + } else { + client.firstCall(is_ssl, socket); } +} +pub fn firstCall( + client: *HTTPClient, + comptime is_ssl: bool, + socket: NewHTTPContext(is_ssl).HTTPSocket, +) void { if (client.state.request_stage == .pending) { client.onWritable(true, comptime is_ssl, socket); } @@ -1015,6 +1252,18 @@ pub const HTTPStage = enum { proxy_body, }; +pub const CertificateInfo = struct { + cert: []const u8, + cert_error: HTTPCertError, + hostname: []const u8, + pub fn deinit(this: *const CertificateInfo, allocator: std.mem.Allocator) void { + allocator.free(this.cert); + allocator.free(this.cert_error.code); + allocator.free(this.cert_error.reason); + allocator.free(this.hostname); + } +}; + pub const InternalState = struct { response_message_buffer: MutableString = undefined, /// pending response is the temporary storage for the response headers, url and status code @@ -1047,6 +1296,7 @@ pub const InternalState = struct { fail: anyerror = error.NoError, request_stage: HTTPStage = .pending, response_stage: HTTPStage = .pending, + certificate_info: ?CertificateInfo = null, pub fn init(body: HTTPRequestBody, body_out_str: *MutableString) InternalState { return .{ @@ -1084,12 +1334,19 @@ pub const InternalState = struct { this.cloned_metadata = null; } + // if exists we own this info + if (this.certificate_info) |info| { + this.certificate_info = null; + info.deinit(bun.default_allocator); + } + this.* = .{ .body_out_str = body_msg, .compressed_body = MutableString{ .allocator = default_allocator, .list = .{} }, .response_message_buffer = MutableString{ .allocator = default_allocator, .list = .{} }, .original_request_body = .{ .bytes = "" }, .request_body = "", + .certificate_info = null, }; } @@ -1237,6 +1494,7 @@ proxy_tunnel: ?ProxyTunnel = null, signals: Signals = .{}, async_http_id: u32 = 0, hostname: ?[]u8 = null, +reject_unauthorized: bool = true, pub fn init( allocator: std.mem.Allocator, @@ -2608,6 +2866,10 @@ fn fail(this: *HTTPClient, err: anyerror) void { if (this.signals.aborted != null) { _ = socket_async_http_abort_tracker.swapRemove(this.async_http_id); } + + this.state.reset(this.allocator); + this.proxy_tunneling = false; + this.state.request_stage = .fail; this.state.response_stage = .fail; this.state.fail = err; @@ -2615,9 +2877,6 @@ fn fail(this: *HTTPClient, err: anyerror) void { const callback = this.result_callback; const result = this.toResult(); - this.state.reset(this.allocator); - this.proxy_tunneling = false; - callback.run(result); } @@ -2668,7 +2927,10 @@ pub fn setTimeout(this: *HTTPClient, socket: anytype, amount: c_uint) void { pub fn progressUpdate(this: *HTTPClient, comptime is_ssl: bool, ctx: *NewHTTPContext(is_ssl), socket: NewHTTPContext(is_ssl).HTTPSocket) void { if (this.state.stage != .done and this.state.stage != .fail) { - const is_done = this.state.isDone(); + var out_str = this.state.body_out_str.?; + var body = out_str.*; + const result = this.toResult(); + const is_done = !result.has_more; if (this.signals.aborted != null and is_done) { _ = socket_async_http_abort_tracker.swapRemove(this.async_http_id); @@ -2676,9 +2938,6 @@ pub fn progressUpdate(this: *HTTPClient, comptime is_ssl: bool, ctx: *NewHTTPCon log("progressUpdate {}", .{is_done}); - var out_str = this.state.body_out_str.?; - var body = out_str.*; - const result = this.toResult(); const callback = this.result_callback; if (is_done) { @@ -2729,6 +2988,7 @@ pub const HTTPClientResult = struct { /// If is not chunked encoded and Content-Length is not provided this will be unknown body_size: BodySize = .unknown, redirected: bool = false, + certificate_info: ?CertificateInfo = null, pub const BodySize = union(enum) { total_received: usize, @@ -2783,7 +3043,13 @@ pub fn toResult(this: *HTTPClient) HTTPClientResult { .{ .content_length = content_length } else .{ .unknown = {} }; - if (this.state.cloned_metadata) |metadata| { + + var certificate_info: ?CertificateInfo = null; + if (this.state.certificate_info) |info| { + // transfer owner ship of the certificate info here + this.state.certificate_info = null; + certificate_info = info; + } else if (this.state.cloned_metadata) |metadata| { // transfer owner ship of the metadata here this.state.cloned_metadata = null; return HTTPClientResult{ @@ -2791,16 +3057,20 @@ pub fn toResult(this: *HTTPClient) HTTPClientResult { .body = this.state.body_out_str, .redirected = this.remaining_redirect_count != default_redirect_count, .fail = this.state.fail, + // check if we are reporting cert errors, do not have a fail state and we are not done .has_more = this.state.fail == error.NoError and !this.state.isDone(), .body_size = body_size, + .certificate_info = null, }; } return HTTPClientResult{ .body = this.state.body_out_str, .metadata = null, .fail = this.state.fail, - .has_more = this.state.fail == error.NoError and !this.state.isDone(), + // check if we are reporting cert errors, do not have a fail state and we are not done + .has_more = certificate_info != null or (this.state.fail == error.NoError and !this.state.isDone()), .body_size = body_size, + .certificate_info = certificate_info, }; } diff --git a/src/js/node/tls.js b/src/js/node/tls.js index fc2d9065a2..bdf06faac3 100644 --- a/src/js/node/tls.js +++ b/src/js/node/tls.js @@ -197,7 +197,7 @@ function checkServerIdentity(hostname, cert) { let error = new Error(`ERR_TLS_CERT_ALTNAME_INVALID: Hostname/IP does not match certificate's altnames: ${reason}`); error.name = "ERR_TLS_CERT_ALTNAME_INVALID"; error.reason = reason; - error.host = host; + error.host = hostname; error.cert = cert; return error; } diff --git a/src/js/out/InternalModuleRegistryConstants.h b/src/js/out/InternalModuleRegistryConstants.h index 63e1e95e4d..f60ecbad98 100644 --- a/src/js/out/InternalModuleRegistryConstants.h +++ b/src/js/out/InternalModuleRegistryConstants.h @@ -301,7 +301,7 @@ static constexpr ASCIILiteral NodeTimersPromisesCode = ASCIILiteral::fromLiteral // -static constexpr const char NodeTLSCodeBytes[18536] = {40,102,117,110,99,116,105,111,110,32,40,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,47,47,32,115,114,99,47,106,115,47,111,117,116,47,116,109,112,47,110,111,100,101,47,116,108,115,46,116,115,10,118,97,114,32,112,97,114,115,101,67,101,114,116,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,10,32,32,116,104,114,111,119,78,111,116,73,109,112,108,101,109,101,110,116,101,100,40,34,78,111,116,32,105,109,112,108,101,109,101,110,116,101,100,34,41,59,10,125,44,32,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,32,61,32,102,117,110,99,116,105,111,110,40,111,98,106,41,32,123,10,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,32,61,61,61,32,34,115,116,114,105,110,103,34,32,124,124,32,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,41,32,124,124,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,32,124,124,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,66,108,111,98,41,10,32,32,32,32,114,101,116,117,114,110,32,33,48,59,10,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,98,106,41,41,32,123,10,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,105,32,60,32,111,98,106,46,108,101,110,103,116,104,59,32,105,43,43,41,10,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,32,33,61,61,32,34,115,116,114,105,110,103,34,32,38,38,32,33,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,41,32,38,38,32,33,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,41,32,38,38,32,33,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,66,108,111,98,41,41,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,32,32,114,101,116,117,114,110,32,33,48,59,10,32,32,125,10,125,44,32,117,110,102,113,100,110,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,50,41,32,123,10,32,32,114,101,116,117,114,110,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,91,46,93,36,47,44,32,104,111,115,116,50,44,32,34,34,41,59,10,125,44,32,116,111,76,111,119,101,114,67,97,115,101,32,61,32,102,117,110,99,116,105,111,110,40,99,41,32,123,10,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,70,114,111,109,67,104,97,114,67,111,100,101,46,99,97,108,108,40,51,50,32,43,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,67,104,97,114,67,111,100,101,65,116,46,99,97,108,108,40,99,44,32,48,41,41,59,10,125,44,32,115,112,108,105,116,72,111,115,116,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,50,41,32,123,10,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,91,65,45,90,93,47,103,44,32,117,110,102,113,100,110,40,104,111,115,116,50,41,44,32,116,111,76,111,119,101,114,67,97,115,101,41,44,32,34,46,34,41,59,10,125,44,32,99,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,80,97,114,116,115,44,32,112,97,116,116,101,114,110,44,32,119,105,108,100,99,97,114,100,115,41,32,123,10,32,32,105,102,32,40,33,112,97,116,116,101,114,110,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,112,97,116,116,101,114,110,80,97,114,116,115,32,61,32,115,112,108,105,116,72,111,115,116,40,112,97,116,116,101,114,110,41,59,10,32,32,105,102,32,40,104,111,115,116,80,97,114,116,115,46,108,101,110,103,116,104,32,33,61,61,32,112,97,116,116,101,114,110,80,97,114,116,115,46,108,101,110,103,116,104,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,112,97,116,116,101,114,110,80,97,114,116,115,44,32,34,34,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,105,115,66,97,100,32,61,32,40,115,41,32,61,62,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,46,99,97,108,108,40,47,91,94,92,117,48,48,50,49,45,92,117,48,48,55,70,93,47,117,44,32,115,41,32,33,61,61,32,110,117,108,108,59,10,32,32,105,102,32,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,112,97,116,116,101,114,110,80,97,114,116,115,44,32,105,115,66,97,100,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,104,111,115,116,80,97,114,116,115,46,108,101,110,103,116,104,32,45,32,49,59,105,32,62,32,48,59,32,105,32,45,61,32,49,41,10,32,32,32,32,105,102,32,40,104,111,115,116,80,97,114,116,115,91,105,93,32,33,61,61,32,112,97,116,116,101,114,110,80,97,114,116,115,91,105,93,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,104,111,115,116,83,117,98,100,111,109,97,105,110,32,61,32,104,111,115,116,80,97,114,116,115,91,48,93,44,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,32,61,32,112,97,116,116,101,114,110,80,97,114,116,115,91,48,93,44,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,44,32,34,42,34,41,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,124,124,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,44,32,34,120,110,45,45,34,41,41,10,32,32,32,32,114,101,116,117,114,110,32,104,111,115,116,83,117,98,100,111,109,97,105,110,32,61,61,61,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,59,10,32,32,105,102,32,40,33,119,105,108,100,99,97,114,100,115,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,46,108,101,110,103,116,104,32,62,32,50,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,80,97,114,116,115,46,108,101,110,103,116,104,32,60,61,32,50,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,123,32,48,58,32,112,114,101,102,105,120,44,32,49,58,32,115,117,102,102,105,120,32,125,32,61,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,59,10,32,32,105,102,32,40,112,114,101,102,105,120,46,108,101,110,103,116,104,32,43,32,115,117,102,102,105,120,46,108,101,110,103,116,104,32,62,32,104,111,115,116,83,117,98,100,111,109,97,105,110,46,108,101,110,103,116,104,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,33,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,104,111,115,116,83,117,98,100,111,109,97,105,110,44,32,112,114,101,102,105,120,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,33,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,69,110,100,115,87,105,116,104,46,99,97,108,108,40,104,111,115,116,83,117,98,100,111,109,97,105,110,44,32,115,117,102,102,105,120,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,114,101,116,117,114,110,32,33,48,59,10,125,44,32,115,112,108,105,116,69,115,99,97,112,101,100,65,108,116,78,97,109,101,115,32,61,32,102,117,110,99,116,105,111,110,40,97,108,116,78,97,109,101,115,41,32,123,10,32,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,91,93,59,10,32,32,108,101,116,32,99,117,114,114,101,110,116,84,111,107,101,110,32,61,32,34,34,44,32,111,102,102,115,101,116,32,61,32,48,59,10,32,32,119,104,105,108,101,32,40,111,102,102,115,101,116,32,33,61,61,32,97,108,116,78,97,109,101,115,46,108,101,110,103,116,104,41,32,123,10,32,32,32,32,99,111,110,115,116,32,110,101,120,116,83,101,112,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,34,44,32,34,44,32,111,102,102,115,101,116,41,44,32,110,101,120,116,81,117,111,116,101,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,39,34,39,44,32,111,102,102,115,101,116,41,59,10,32,32,32,32,105,102,32,40,110,101,120,116,81,117,111,116,101,32,33,61,61,32,45,49,32,38,38,32,40,110,101,120,116,83,101,112,32,61,61,61,32,45,49,32,124,124,32,110,101,120,116,81,117,111,116,101,32,60,32,110,101,120,116,83,101,112,41,41,32,123,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,44,32,110,101,120,116,81,117,111,116,101,41,59,10,32,32,32,32,32,32,99,111,110,115,116,32,109,97,116,99,104,32,61,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,46,99,97,108,108,40,106,115,111,110,83,116,114,105,110,103,80,97,116,116,101,114,110,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,110,101,120,116,81,117,111,116,101,41,41,59,10,32,32,32,32,32,32,105,102,32,40,33,109,97,116,99,104,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,83,121,110,116,97,120,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,70,79,82,77,65,84,58,32,73,110,118,97,108,105,100,32,115,117,98,106,101,99,116,32,97,108,116,101,114,110,97,116,105,118,101,32,110,97,109,101,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,70,79,82,77,65,84,44,32,101,114,114,111,114,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,74,83,79,78,46,112,97,114,115,101,40,109,97,116,99,104,91,48,93,41,44,32,111,102,102,115,101,116,32,61,32,110,101,120,116,81,117,111,116,101,32,43,32,109,97,116,99,104,91,48,93,46,108,101,110,103,116,104,59,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,120,116,83,101,112,32,33,61,61,32,45,49,41,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,44,32,110,101,120,116,83,101,112,41,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,114,101,115,117,108,116,44,32,99,117,114,114,101,110,116,84,111,107,101,110,41,44,32,99,117,114,114,101,110,116,84,111,107,101,110,32,61,32,34,34,44,32,111,102,102,115,101,116,32,61,32,110,101,120,116,83,101,112,32,43,32,50,59,10,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,41,44,32,111,102,102,115,101,116,32,61,32,97,108,116,78,97,109,101,115,46,108,101,110,103,116,104,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,114,101,115,117,108,116,44,32,99,117,114,114,101,110,116,84,111,107,101,110,41,44,32,114,101,115,117,108,116,59,10,125,44,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,110,97,109,101,44,32,99,101,114,116,41,32,123,10,32,32,99,111,110,115,116,32,123,32,115,117,98,106,101,99,116,44,32,115,117,98,106,101,99,116,97,108,116,110,97,109,101,58,32,97,108,116,78,97,109,101,115,32,125,32,61,32,99,101,114,116,44,32,100,110,115,78,97,109,101,115,32,61,32,91,93,44,32,105,112,115,32,61,32,91,93,59,10,32,32,105,102,32,40,104,111,115,116,110,97,109,101,32,61,32,34,34,32,43,32,104,111,115,116,110,97,109,101,44,32,97,108,116,78,97,109,101,115,41,32,123,10,32,32,32,32,99,111,110,115,116,32,115,112,108,105,116,65,108,116,78,97,109,101,115,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,39,34,39,41,32,63,32,115,112,108,105,116,69,115,99,97,112,101,100,65,108,116,78,97,109,101,115,40,97,108,116,78,97,109,101,115,41,32,58,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,34,44,32,34,41,59,10,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,70,111,114,69,97,99,104,46,99,97,108,108,40,115,112,108,105,116,65,108,116,78,97,109,101,115,44,32,40,110,97,109,101,41,32,61,62,32,123,10,32,32,32,32,32,32,105,102,32,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,110,97,109,101,44,32,34,68,78,83,58,34,41,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,100,110,115,78,97,109,101,115,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,46,99,97,108,108,40,110,97,109,101,44,32,52,41,41,59,10,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,110,97,109,101,44,32,34,73,80,32,65,100,100,114,101,115,115,58,34,41,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,105,112,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,46,99,97,108,108,40,110,97,109,101,44,32,49,49,41,41,41,59,10,32,32,32,32,125,41,59,10,32,32,125,10,32,32,108,101,116,32,118,97,108,105,100,32,61,32,33,49,44,32,114,101,97,115,111,110,32,61,32,34,85,110,107,110,111,119,110,32,114,101,97,115,111,110,34,59,10,32,32,105,102,32,40,104,111,115,116,110,97,109,101,32,61,32,117,110,102,113,100,110,40,104,111,115,116,110,97,109,101,41,44,32,110,101,116,46,105,115,73,80,40,104,111,115,116,110,97,109,101,41,41,32,123,10,32,32,32,32,105,102,32,40,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,105,112,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,40,104,111,115,116,110,97,109,101,41,41,44,32,33,118,97,108,105,100,41,10,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,73,80,58,32,36,123,104,111,115,116,110,97,109,101,125,32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99,101,114,116,39,115,32,108,105,115,116,58,32,96,32,43,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,74,111,105,110,46,99,97,108,108,40,105,112,115,44,32,34,44,32,34,41,59,10,32,32,125,32,101,108,115,101,32,105,102,32,40,100,110,115,78,97,109,101,115,46,108,101,110,103,116,104,32,62,32,48,32,124,124,32,115,117,98,106,101,99,116,63,46,67,78,41,32,123,10,32,32,32,32,99,111,110,115,116,32,104,111,115,116,80,97,114,116,115,32,61,32,115,112,108,105,116,72,111,115,116,40,104,111,115,116,110,97,109,101,41,44,32,119,105,108,100,99,97,114,100,32,61,32,40,112,97,116,116,101,114,110,41,32,61,62,32,99,104,101,99,107,40,104,111,115,116,80,97,114,116,115,44,32,112,97,116,116,101,114,110,44,32,33,48,41,59,10,32,32,32,32,105,102,32,40,100,110,115,78,97,109,101,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,10,32,32,32,32,32,32,105,102,32,40,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,100,110,115,78,97,109,101,115,44,32,119,105,108,100,99,97,114,100,41,44,32,33,118,97,108,105,100,41,10,32,32,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,72,111,115,116,58,32,36,123,104,111,115,116,110,97,109,101,125,46,32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99,101,114,116,39,115,32,97,108,116,110,97,109,101,115,58,32,36,123,97,108,116,78,97,109,101,115,125,96,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,99,110,32,61,32,115,117,98,106,101,99,116,46,67,78,59,10,32,32,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,110,41,41,10,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,99,110,44,32,119,105,108,100,99,97,114,100,41,59,10,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,110,41,10,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,119,105,108,100,99,97,114,100,40,99,110,41,59,10,32,32,32,32,32,32,105,102,32,40,33,118,97,108,105,100,41,10,32,32,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,72,111,115,116,58,32,36,123,104,111,115,116,110,97,109,101,125,46,32,105,115,32,110,111,116,32,99,101,114,116,39,115,32,67,78,58,32,36,123,99,110,125,96,59,10,32,32,32,32,125,10,32,32,125,32,101,108,115,101,10,32,32,32,32,114,101,97,115,111,110,32,61,32,34,67,101,114,116,32,100,111,101,115,32,110,111,116,32,99,111,110,116,97,105,110,32,97,32,68,78,83,32,110,97,109,101,34,59,10,32,32,105,102,32,40,33,118,97,108,105,100,41,32,123,10,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,96,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,73,78,86,65,76,73,68,58,32,72,111,115,116,110,97,109,101,47,73,80,32,100,111,101,115,32,110,111,116,32,109,97,116,99,104,32,99,101,114,116,105,102,105,99,97,116,101,39,115,32,97,108,116,110,97,109,101,115,58,32,36,123,114,101,97,115,111,110,125,96,41,59,10,32,32,32,32,114,101,116,117,114,110,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,73,78,86,65,76,73,68,34,44,32,101,114,114,111,114,46,114,101,97,115,111,110,32,61,32,114,101,97,115,111,110,44,32,101,114,114,111,114,46,104,111,115,116,32,61,32,104,111,115,116,44,32,101,114,114,111,114,46,99,101,114,116,32,61,32,99,101,114,116,44,32,101,114,114,111,114,59,10,32,32,125,10,125,44,32,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,125,44,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,125,44,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,99,41,32,123,10,32,32,105,102,32,40,33,99,41,10,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,10,32,32,105,102,32,40,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,33,61,32,110,117,108,108,32,38,38,32,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,33,61,61,32,99,41,10,32,32,32,32,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,61,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,41,59,10,32,32,105,102,32,40,99,46,105,110,102,111,65,99,99,101,115,115,32,33,61,32,110,117,108,108,41,32,123,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,32,61,32,99,46,105,110,102,111,65,99,99,101,115,115,59,10,32,32,32,32,99,46,105,110,102,111,65,99,99,101,115,115,32,61,32,123,32,95,95,112,114,111,116,111,95,95,58,32,110,117,108,108,32,125,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,40,91,94,92,110,58,93,42,41,58,40,91,94,92,110,93,42,41,40,63,58,92,110,124,36,41,47,103,44,32,105,110,102,111,44,32,40,97,108,108,44,32,107,101,121,44,32,118,97,108,41,32,61,62,32,123,10,32,32,32,32,32,32,105,102,32,40,118,97,108,46,99,104,97,114,67,111,100,101,65,116,40,48,41,32,61,61,61,32,51,52,41,10,32,32,32,32,32,32,32,32,118,97,108,32,61,32,74,83,79,78,80,97,114,115,101,40,118,97,108,41,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,32,105,110,32,99,46,105,110,102,111,65,99,99,101,115,115,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,99,46,105,110,102,111,65,99,99,101,115,115,91,107,101,121,93,44,32,118,97,108,41,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,99,46,105,110,102,111,65,99,99,101,115,115,91,107,101,121,93,32,61,32,91,118,97,108,93,59,10,32,32,32,32,125,41,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,99,59,10,125,44,32,99,114,101,97,116,101,83,101,114,118,101,114,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,44,32,99,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,114,118,101,114,40,111,112,116,105,111,110,115,44,32,99,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,59,10,125,44,32,103,101,116,67,105,112,104,101,114,115,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,10,32,32,114,101,116,117,114,110,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,46,115,112,108,105,116,40,34,58,34,41,59,10,125,44,32,99,111,110,118,101,114,116,80,114,111,116,111,99,111,108,115,32,61,32,102,117,110,99,116,105,111,110,40,112,114,111,116,111,99,111,108,115,41,32,123,10,32,32,99,111,110,115,116,32,108,101,110,115,32,61,32,110,101,119,32,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,46,108,101,110,103,116,104,41,44,32,98,117,102,102,32,61,32,66,117,102,102,101,114,46,97,108,108,111,99,85,110,115,97,102,101,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,82,101,100,117,99,101,46,99,97,108,108,40,112,114,111,116,111,99,111,108,115,44,32,40,112,44,32,99,44,32,105,41,32,61,62,32,123,10,32,32,32,32,99,111,110,115,116,32,108,101,110,32,61,32,66,117,102,102,101,114,46,98,121,116,101,76,101,110,103,116,104,40,99,41,59,10,32,32,32,32,105,102,32,40,108,101,110,32,62,32,50,53,53,41,10,32,32,32,32,32,32,64,116,104,114,111,119,82,97,110,103,101,69,114,114,111,114,40,34,84,104,101,32,98,121,116,101,32,108,101,110,103,116,104,32,111,102,32,116,104,101,32,112,114,111,116,111,99,111,108,32,97,116,32,105,110,100,101,120,32,34,32,43,32,96,36,123,105,125,32,101,120,99,101,101,100,115,32,116,104,101,32,109,97,120,105,109,117,109,32,108,101,110,103,116,104,46,96,44,32,34,60,61,32,50,53,53,34,44,32,108,101,110,44,32,33,48,41,59,10,32,32,32,32,114,101,116,117,114,110,32,108,101,110,115,91,105,93,32,61,32,108,101,110,44,32,112,32,43,32,49,32,43,32,108,101,110,59,10,32,32,125,44,32,48,41,41,59,10,32,32,108,101,116,32,111,102,102,115,101,116,32,61,32,48,59,10,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,44,32,99,32,61,32,112,114,111,116,111,99,111,108,115,46,108,101,110,103,116,104,59,105,32,60,32,99,59,32,105,43,43,41,10,32,32,32,32,98,117,102,102,91,111,102,102,115,101,116,43,43,93,32,61,32,108,101,110,115,91,105,93,44,32,98,117,102,102,46,119,114,105,116,101,40,112,114,111,116,111,99,111,108,115,91,105,93,44,32,111,102,102,115,101,116,41,44,32,111,102,102,115,101,116,32,43,61,32,108,101,110,115,91,105,93,59,10,32,32,114,101,116,117,114,110,32,98,117,102,102,59,10,125,44,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,102,117,110,99,116,105,111,110,40,112,114,111,116,111,99,111,108,115,44,32,111,117,116,41,32,123,10,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,99,111,110,118,101,114,116,80,114,111,116,111,99,111,108,115,40,112,114,111,116,111,99,111,108,115,41,59,10,32,32,101,108,115,101,32,105,102,32,40,105,115,84,121,112,101,100,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,112,114,111,116,111,99,111,108,115,41,59,10,32,32,101,108,115,101,32,105,102,32,40,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,112,114,111,116,111,99,111,108,115,46,98,117,102,102,101,114,46,115,108,105,99,101,40,112,114,111,116,111,99,111,108,115,46,98,121,116,101,79,102,102,115,101,116,44,32,112,114,111,116,111,99,111,108,115,46,98,121,116,101,79,102,102,115,101,116,32,43,32,112,114,111,116,111,99,111,108,115,46,98,121,116,101,76,101,110,103,116,104,41,41,59,10,32,32,101,108,115,101,32,105,102,32,40,66,117,102,102,101,114,46,105,115,66,117,102,102,101,114,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,112,114,111,116,111,99,111,108,115,59,10,125,44,32,36,44,32,123,32,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,44,32,105,115,84,121,112,101,100,65,114,114,97,121,32,125,32,61,32,64,114,101,113,117,105,114,101,78,97,116,105,118,101,77,111,100,117,108,101,40,34,110,111,100,101,58,117,116,105,108,47,116,121,112,101,115,34,41,44,32,110,101,116,32,61,32,64,103,101,116,73,110,116,101,114,110,97,108,70,105,101,108,100,40,64,105,110,116,101,114,110,97,108,77,111,100,117,108,101,82,101,103,105,115,116,114,121,44,32,50,53,41,32,124,124,32,64,99,114,101,97,116,101,73,110,116,101,114,110,97,108,77,111,100,117,108,101,66,121,73,100,40,50,53,41,44,32,123,32,83,101,114,118,101,114,58,32,78,101,116,83,101,114,118,101,114,44,32,91,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,116,101,114,110,97,108,58,58,34,41,93,58,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,125,32,61,32,110,101,116,44,32,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,32,61,32,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,110,101,116,115,111,99,107,101,116,105,110,116,101,114,110,97,108,58,58,34,41,44,32,123,32,114,111,111,116,67,101,114,116,105,102,105,99,97,116,101,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,32,125,32,61,32,103,108,111,98,97,108,84,104,105,115,91,103,108,111,98,97,108,84,104,105,115,46,83,121,109,98,111,108,46,102,111,114,40,39,66,117,110,46,108,97,122,121,39,41,93,40,34,105,110,116,101,114,110,97,108,47,116,108,115,34,41,44,32,83,121,109,98,111,108,82,101,112,108,97,99,101,32,61,32,83,121,109,98,111,108,46,114,101,112,108,97,99,101,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,83,121,109,98,111,108,82,101,112,108,97,99,101,93,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,46,101,120,101,99,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,116,97,114,116,115,87,105,116,104,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,112,108,105,116,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,116,114,105,110,103,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,69,110,100,115,87,105,116,104,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,101,110,100,115,87,105,116,104,44,32,83,116,114,105,110,103,70,114,111,109,67,104,97,114,67,111,100,101,32,61,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,67,104,97,114,67,111,100,101,65,116,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,99,104,97,114,67,111,100,101,65,116,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,74,111,105,110,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,70,111,114,69,97,99,104,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,111,109,101,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,82,101,100,117,99,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,114,101,100,117,99,101,44,32,106,115,111,110,83,116,114,105,110,103,80,97,116,116,101,114,110,32,61,32,47,94,34,40,63,58,91,94,34,92,92,92,117,48,48,48,48,45,92,117,48,48,49,102,93,124,92,92,40,63,58,91,34,92,92,47,98,102,110,114,116,93,124,117,91,48,45,57,97,45,102,65,45,70,93,123,52,125,41,41,42,34,47,44,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,99,108,97,115,115,32,83,101,99,117,114,101,67,111,110,116,101,120,116,50,32,123,10,32,32,99,111,110,116,101,120,116,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,120,116,32,61,32,123,125,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,32,32,108,101,116,32,107,101,121,32,61,32,111,112,116,105,111,110,115,46,107,101,121,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,107,101,121,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,107,101,121,32,61,32,107,101,121,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,101,114,116,32,61,32,111,112,116,105,111,110,115,46,99,101,114,116,59,10,32,32,32,32,32,32,105,102,32,40,99,101,114,116,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,101,114,116,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,101,114,116,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,101,114,116,32,61,32,99,101,114,116,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,97,32,61,32,111,112,116,105,111,110,115,46,99,97,59,10,32,32,32,32,32,32,105,102,32,40,99,97,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,97,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,97,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,32,61,32,99,97,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,112,97,115,115,112,104,114,97,115,101,32,61,32,111,112,116,105,111,110,115,46,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,105,102,32,40,112,97,115,115,112,104,114,97,115,101,32,38,38,32,116,121,112,101,111,102,32,112,97,115,115,112,104,114,97,115,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,112,97,115,115,112,104,114,97,115,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,32,61,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,114,118,101,114,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,105,102,32,40,115,101,114,118,101,114,110,97,109,101,32,38,38,32,116,121,112,101,111,102,32,115,101,114,118,101,114,110,97,109,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,114,118,101,114,110,97,109,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,124,124,32,48,59,10,32,32,32,32,32,32,105,102,32,40,115,101,99,117,114,101,79,112,116,105,111,110,115,32,38,38,32,116,121,112,101,111,102,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,33,61,61,32,34,110,117,109,98,101,114,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,99,117,114,101,79,112,116,105,111,110,115,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,110,117,109,98,101,114,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,10,32,32,125,10,125,44,32,98,117,110,116,108,115,32,61,32,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,116,108,115,58,58,34,41,44,32,83,111,99,107,101,116,67,108,97,115,115,44,32,84,76,83,83,111,99,107,101,116,32,61,32,102,117,110,99,116,105,111,110,40,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,41,32,123,10,32,32,114,101,116,117,114,110,32,83,111,99,107,101,116,67,108,97,115,115,32,61,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,44,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,83,111,99,107,101,116,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,44,32,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,44,32,123,10,32,32,32,32,118,97,108,117,101,58,32,34,84,76,83,83,111,99,107,101,116,34,44,10,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,33,49,10,32,32,125,41,44,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,102,117,110,99,116,105,111,110,32,83,111,99,107,101,116,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,40,111,112,116,105,111,110,115,41,59,10,32,32,125,44,32,83,121,109,98,111,108,46,104,97,115,73,110,115,116,97,110,99,101,44,32,123,10,32,32,32,32,118,97,108,117,101,40,105,110,115,116,97,110,99,101,41,32,123,10,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,59,10,32,32,32,32,125,10,32,32,125,41,59,10,125,40,99,108,97,115,115,32,84,76,83,83,111,99,107,101,116,50,32,101,120,116,101,110,100,115,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,123,10,32,32,35,115,101,99,117,114,101,67,111,110,116,101,120,116,59,10,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,59,10,32,32,35,115,111,99,107,101,116,59,10,32,32,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,59,10,32,32,35,115,101,115,115,105,111,110,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,115,111,99,107,101,116,44,32,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,115,117,112,101,114,40,115,111,99,107,101,116,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,63,32,111,112,116,105,111,110,115,32,58,32,111,112,116,105,111,110,115,32,124,124,32,115,111,99,107,101,116,41,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,32,124,124,32,115,111,99,107,101,116,32,124,124,32,123,125,44,32,116,121,112,101,111,102,32,111,112,116,105,111,110,115,32,61,61,61,32,34,111,98,106,101,99,116,34,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,111,112,116,105,111,110,115,59,10,32,32,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,116,104,105,115,41,59,10,32,32,32,32,32,32,105,102,32,40,115,111,99,107,101,116,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,35,115,111,99,107,101,116,32,61,32,115,111,99,107,101,116,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,35,115,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,67,111,110,116,101,120,116,32,124,124,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,44,32,116,104,105,115,46,97,117,116,104,111,114,105,122,101,100,32,61,32,33,49,44,32,116,104,105,115,46,115,101,99,117,114,101,67,111,110,110,101,99,116,105,110,103,32,61,32,33,48,44,32,116,104,105,115,46,95,115,101,99,117,114,101,69,115,116,97,98,108,105,115,104,101,100,32,61,32,33,49,44,32,116,104,105,115,46,95,115,101,99,117,114,101,80,101,110,100,105,110,103,32,61,32,33,48,44,32,116,104,105,115,46,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,61,32,111,112,116,105,111,110,115,46,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,124,124,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,32,116,104,105,115,46,35,115,101,115,115,105,111,110,32,61,32,111,112,116,105,111,110,115,46,115,101,115,115,105,111,110,32,124,124,32,110,117,108,108,59,10,32,32,125,10,32,32,95,115,101,99,117,114,101,69,115,116,97,98,108,105,115,104,101,100,32,61,32,33,49,59,10,32,32,95,115,101,99,117,114,101,80,101,110,100,105,110,103,32,61,32,33,48,59,10,32,32,95,110,101,119,83,101,115,115,105,111,110,80,101,110,100,105,110,103,59,10,32,32,95,99,111,110,116,114,111,108,82,101,108,101,97,115,101,100,59,10,32,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,110,103,32,61,32,33,49,59,10,32,32,95,83,78,73,67,97,108,108,98,97,99,107,59,10,32,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,97,117,116,104,111,114,105,122,101,100,32,61,32,33,49,59,10,32,32,97,117,116,104,111,114,105,122,97,116,105,111,110,69,114,114,111,114,59,10,32,32,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,32,61,32,33,49,59,10,32,32,101,110,99,114,121,112,116,101,100,32,61,32,33,48,59,10,32,32,95,115,116,97,114,116,40,41,32,123,10,32,32,32,32,116,104,105,115,46,99,111,110,110,101,99,116,40,41,59,10,32,32,125,10,32,32,103,101,116,83,101,115,115,105,111,110,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,83,101,115,115,105,111,110,40,41,59,10,32,32,125,10,32,32,103,101,116,69,112,104,101,109,101,114,97,108,75,101,121,73,110,102,111,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,69,112,104,101,109,101,114,97,108,75,101,121,73,110,102,111,40,41,59,10,32,32,125,10,32,32,103,101,116,67,105,112,104,101,114,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,67,105,112,104,101,114,40,41,59,10,32,32,125,10,32,32,103,101,116,83,104,97,114,101,100,83,105,103,97,108,103,115,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,83,104,97,114,101,100,83,105,103,97,108,103,115,40,41,59,10,32,32,125,10,32,32,103,101,116,80,114,111,116,111,99,111,108,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,86,101,114,115,105,111,110,40,41,59,10,32,32,125,10,32,32,103,101,116,70,105,110,105,115,104,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,70,105,110,105,115,104,101,100,77,101,115,115,97,103,101,40,41,32,124,124,32,118,111,105,100,32,48,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,70,105,110,105,115,104,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,80,101,101,114,70,105,110,105,115,104,101,100,77,101,115,115,97,103,101,40,41,32,124,124,32,118,111,105,100,32,48,59,10,32,32,125,10,32,32,105,115,83,101,115,115,105,111,110,82,101,117,115,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,33,33,116,104,105,115,46,35,115,101,115,115,105,111,110,59,10,32,32,125,10,32,32,114,101,110,101,103,111,116,105,97,116,101,40,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,82,69,78,69,71,79,84,73,65,84,73,79,78,95,68,73,83,65,66,76,69,68,58,32,84,76,83,32,115,101,115,115,105,111,110,32,114,101,110,101,103,111,116,105,97,116,105,111,110,32,100,105,115,97,98,108,101,100,32,102,111,114,32,116,104,105,115,32,115,111,99,107,101,116,34,41,59,10,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,82,69,78,69,71,79,84,73,65,84,73,79,78,95,68,73,83,65,66,76,69,68,34,44,32,101,114,114,111,114,59,10,32,32,32,32,125,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,100,105,115,97,98,108,101,82,101,110,101,103,111,116,105,97,116,105,111,110,40,41,32,123,10,32,32,32,32,116,104,105,115,46,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,32,61,32,33,48,59,10,32,32,125,10,32,32,103,101,116,84,76,83,84,105,99,107,101,116,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,84,105,99,107,101,116,40,41,59,10,32,32,125,10,32,32,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,44,32,99,111,110,116,101,120,116,41,32,123,10,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,44,32,99,111,110,116,101,120,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,41,59,10,32,32,125,10,32,32,115,101,116,77,97,120,83,101,110,100,70,114,97,103,109,101,110,116,40,115,105,122,101,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,77,97,120,83,101,110,100,70,114,97,103,109,101,110,116,40,115,105,122,101,41,32,124,124,32,33,49,59,10,32,32,125,10,32,32,101,110,97,98,108,101,84,114,97,99,101,40,41,32,123,10,32,32,125,10,32,32,115,101,116,83,101,114,118,101,114,110,97,109,101,40,110,97,109,101,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,114,118,101,114,41,32,123,10,32,32,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,83,78,73,95,70,82,79,77,95,83,69,82,86,69,82,58,32,67,97,110,110,111,116,32,105,115,115,117,101,32,83,78,73,32,102,114,111,109,32,97,32,84,76,83,32,115,101,114,118,101,114,45,115,105,100,101,32,115,111,99,107,101,116,34,41,59,10,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,83,78,73,95,70,82,79,77,95,83,69,82,86,69,82,34,44,32,101,114,114,111,114,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,110,97,109,101,44,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,83,101,114,118,101,114,110,97,109,101,40,110,97,109,101,41,59,10,32,32,125,10,32,32,115,101,116,83,101,115,115,105,111,110,40,115,101,115,115,105,111,110,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,35,115,101,115,115,105,111,110,32,61,32,115,101,115,115,105,111,110,44,32,116,121,112,101,111,102,32,115,101,115,115,105,111,110,32,61,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,115,101,115,115,105,111,110,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,115,101,115,115,105,111,110,44,32,34,108,97,116,105,110,49,34,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,83,101,115,115,105,111,110,40,115,101,115,115,105,111,110,41,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,97,98,98,114,101,118,105,97,116,101,100,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,101,114,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,49,32,63,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,41,32,58,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,97,98,98,114,101,118,105,97,116,101,100,41,59,10,32,32,32,32,105,102,32,40,99,101,114,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,101,114,116,41,59,10,32,32,125,10,32,32,103,101,116,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,101,114,116,32,61,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,67,101,114,116,105,102,105,99,97,116,101,40,41,59,10,32,32,32,32,105,102,32,40,99,101,114,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,101,114,116,41,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,88,53,48,57,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,103,101,116,88,53,48,57,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,103,101,116,32,97,108,112,110,80,114,111,116,111,99,111,108,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,97,108,112,110,80,114,111,116,111,99,111,108,59,10,32,32,125,10,32,32,91,98,117,110,116,108,115,93,40,112,111,114,116,44,32,104,111,115,116,50,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,123,10,32,32,32,32,32,32,115,111,99,107,101,116,58,32,116,104,105,115,46,35,115,111,99,107,101,116,44,10,32,32,32,32,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,58,32,116,104,105,115,46,65,76,80,78,80,114,111,116,111,99,111,108,115,44,10,32,32,32,32,32,32,115,101,114,118,101,114,78,97,109,101,58,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,124,124,32,104,111,115,116,50,32,124,124,32,34,108,111,99,97,108,104,111,115,116,34,44,10,32,32,32,32,32,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,58,32,116,104,105,115,46,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,10,32,32,32,32,32,32,115,101,115,115,105,111,110,58,32,116,104,105,115,46,35,115,101,115,115,105,111,110,44,10,32,32,32,32,32,32,46,46,46,116,104,105,115,46,35,115,101,99,117,114,101,67,111,110,116,101,120,116,10,32,32,32,32,125,59,10,32,32,125,10,125,41,59,10,10,99,108,97,115,115,32,83,101,114,118,101,114,32,101,120,116,101,110,100,115,32,78,101,116,83,101,114,118,101,114,32,123,10,32,32,107,101,121,59,10,32,32,99,101,114,116,59,10,32,32,99,97,59,10,32,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,59,10,32,32,95,114,101,113,117,101,115,116,67,101,114,116,59,10,32,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,111,112,116,105,111,110,115,44,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,32,123,10,32,32,32,32,115,117,112,101,114,40,111,112,116,105,111,110,115,44,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,59,10,32,32,32,32,116,104,105,115,46,115,101,116,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,32,32,125,10,32,32,115,101,116,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,41,10,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,99,111,110,116,101,120,116,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,111,112,116,105,111,110,115,59,10,32,32,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,116,104,105,115,41,59,10,32,32,32,32,32,32,108,101,116,32,107,101,121,32,61,32,111,112,116,105,111,110,115,46,107,101,121,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,107,101,121,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,107,101,121,32,61,32,107,101,121,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,101,114,116,32,61,32,111,112,116,105,111,110,115,46,99,101,114,116,59,10,32,32,32,32,32,32,105,102,32,40,99,101,114,116,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,101,114,116,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,101,114,116,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,101,114,116,32,61,32,99,101,114,116,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,97,32,61,32,111,112,116,105,111,110,115,46,99,97,59,10,32,32,32,32,32,32,105,102,32,40,99,97,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,97,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,97,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,32,61,32,99,97,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,112,97,115,115,112,104,114,97,115,101,32,61,32,111,112,116,105,111,110,115,46,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,105,102,32,40,112,97,115,115,112,104,114,97,115,101,32,38,38,32,116,121,112,101,111,102,32,112,97,115,115,112,104,114,97,115,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,112,97,115,115,112,104,114,97,115,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,32,61,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,114,118,101,114,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,105,102,32,40,115,101,114,118,101,114,110,97,109,101,32,38,38,32,116,121,112,101,111,102,32,115,101,114,118,101,114,110,97,109,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,114,118,101,114,110,97,109,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,124,124,32,48,59,10,32,32,32,32,32,32,105,102,32,40,115,101,99,117,114,101,79,112,116,105,111,110,115,32,38,38,32,116,121,112,101,111,102,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,33,61,61,32,34,110,117,109,98,101,114,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,99,117,114,101,79,112,116,105,111,110,115,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,110,117,109,98,101,114,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,32,32,32,32,99,111,110,115,116,32,114,101,113,117,101,115,116,67,101,114,116,32,61,32,111,112,116,105,111,110,115,46,114,101,113,117,101,115,116,67,101,114,116,32,124,124,32,33,49,59,10,32,32,32,32,32,32,105,102,32,40,114,101,113,117,101,115,116,67,101,114,116,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,32,61,32,114,101,113,117,101,115,116,67,101,114,116,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,32,61,32,118,111,105,100,32,48,59,10,32,32,32,32,32,32,99,111,110,115,116,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,111,112,116,105,111,110,115,46,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,124,124,32,33,49,59,10,32,32,32,32,32,32,105,102,32,40,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,118,111,105,100,32,48,59,10,32,32,32,32,125,10,32,32,125,10,32,32,103,101,116,84,105,99,107,101,116,75,101,121,115,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,115,101,116,84,105,99,107,101,116,75,101,121,115,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,91,98,117,110,116,108,115,93,40,112,111,114,116,44,32,104,111,115,116,50,44,32,105,115,67,108,105,101,110,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,91,10,32,32,32,32,32,32,123,10,32,32,32,32,32,32,32,32,115,101,114,118,101,114,78,97,109,101,58,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,124,124,32,104,111,115,116,50,32,124,124,32,34,108,111,99,97,108,104,111,115,116,34,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,46,107,101,121,44,10,32,32,32,32,32,32,32,32,99,101,114,116,58,32,116,104,105,115,46,99,101,114,116,44,10,32,32,32,32,32,32,32,32,99,97,58,32,116,104,105,115,46,99,97,44,10,32,32,32,32,32,32,32,32,112,97,115,115,112,104,114,97,115,101,58,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,44,10,32,32,32,32,32,32,32,32,115,101,99,117,114,101,79,112,116,105,111,110,115,58,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,44,10,32,32,32,32,32,32,32,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,58,32,105,115,67,108,105,101,110,116,32,63,32,33,49,32,58,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,44,10,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,67,101,114,116,58,32,105,115,67,108,105,101,110,116,32,63,32,33,49,32,58,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,44,10,32,32,32,32,32,32,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,58,32,116,104,105,115,46,65,76,80,78,80,114,111,116,111,99,111,108,115,10,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,83,111,99,107,101,116,67,108,97,115,115,10,32,32,32,32,93,59,10,32,32,125,10,125,10,118,97,114,32,67,76,73,69,78,84,95,82,69,78,69,71,95,76,73,77,73,84,32,61,32,51,44,32,67,76,73,69,78,84,95,82,69,78,69,71,95,87,73,78,68,79,87,32,61,32,54,48,48,44,32,68,69,70,65,85,76,84,95,69,67,68,72,95,67,85,82,86,69,32,61,32,34,97,117,116,111,34,44,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,32,61,32,34,68,72,69,45,82,83,65,45,65,69,83,50,53,54,45,71,67,77,45,83,72,65,51,56,52,58,68,72,69,45,82,83,65,45,65,69,83,49,50,56,45,71,67,77,45,83,72,65,50,53,54,58,69,67,68,72,69,45,82,83,65,45,65,69,83,50,53,54,45,71,67,77,45,83,72,65,51,56,52,58,69,67,68,72,69,45,82,83,65,45,65,69,83,49,50,56,45,71,67,77,45,83,72,65,50,53,54,34,44,32,68,69,70,65,85,76,84,95,77,73,78,95,86,69,82,83,73,79,78,32,61,32,34,84,76,83,118,49,46,50,34,44,32,68,69,70,65,85,76,84,95,77,65,88,95,86,69,82,83,73,79,78,32,61,32,34,84,76,83,118,49,46,51,34,44,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,32,61,32,40,112,111,114,116,44,32,104,111,115,116,50,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,32,61,62,32,123,10,32,32,105,102,32,40,116,121,112,101,111,102,32,112,111,114,116,32,61,61,61,32,34,111,98,106,101,99,116,34,41,32,123,10,32,32,32,32,112,111,114,116,46,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,59,10,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,112,111,114,116,59,10,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,112,111,114,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,84,76,83,83,111,99,107,101,116,40,112,111,114,116,41,46,99,111,110,110,101,99,116,40,112,111,114,116,44,32,104,111,115,116,50,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,110,101,119,32,84,76,83,83,111,99,107,101,116,40,41,46,99,111,110,110,101,99,116,40,112,111,114,116,44,32,104,111,115,116,50,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,59,10,125,44,32,99,111,110,110,101,99,116,32,61,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,59,10,36,32,61,32,123,10,32,32,67,76,73,69,78,84,95,82,69,78,69,71,95,76,73,77,73,84,44,10,32,32,67,76,73,69,78,84,95,82,69,78,69,71,95,87,73,78,68,79,87,44,10,32,32,99,111,110,110,101,99,116,44,10,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,44,10,32,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,44,10,32,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,44,10,32,32,99,114,101,97,116,101,83,101,114,118,101,114,44,10,32,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,44,10,32,32,68,69,70,65,85,76,84,95,69,67,68,72,95,67,85,82,86,69,44,10,32,32,68,69,70,65,85,76,84,95,77,65,88,95,86,69,82,83,73,79,78,44,10,32,32,68,69,70,65,85,76,84,95,77,73,78,95,86,69,82,83,73,79,78,44,10,32,32,103,101,116,67,105,112,104,101,114,115,44,10,32,32,112,97,114,115,101,67,101,114,116,83,116,114,105,110,103,44,10,32,32,83,101,99,117,114,101,67,111,110,116,101,120,116,44,10,32,32,83,101,114,118,101,114,44,10,32,32,84,76,83,83,111,99,107,101,116,44,10,32,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,10,32,32,114,111,111,116,67,101,114,116,105,102,105,99,97,116,101,115,10,125,59,10,114,101,116,117,114,110,32,36,125,41,10,10,0}; +static constexpr const char NodeTLSCodeBytes[18529] = {40,102,117,110,99,116,105,111,110,32,40,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,47,47,32,115,114,99,47,106,115,47,111,117,116,47,116,109,112,47,110,111,100,101,47,116,108,115,46,116,115,10,118,97,114,32,112,97,114,115,101,67,101,114,116,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,10,32,32,116,104,114,111,119,78,111,116,73,109,112,108,101,109,101,110,116,101,100,40,34,78,111,116,32,105,109,112,108,101,109,101,110,116,101,100,34,41,59,10,125,44,32,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,32,61,32,102,117,110,99,116,105,111,110,40,111,98,106,41,32,123,10,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,32,61,61,61,32,34,115,116,114,105,110,103,34,32,124,124,32,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,41,32,124,124,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,32,124,124,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,66,108,111,98,41,10,32,32,32,32,114,101,116,117,114,110,32,33,48,59,10,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,98,106,41,41,32,123,10,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,105,32,60,32,111,98,106,46,108,101,110,103,116,104,59,32,105,43,43,41,10,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,32,33,61,61,32,34,115,116,114,105,110,103,34,32,38,38,32,33,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,41,32,38,38,32,33,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,41,32,38,38,32,33,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,66,108,111,98,41,41,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,32,32,114,101,116,117,114,110,32,33,48,59,10,32,32,125,10,125,44,32,117,110,102,113,100,110,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,41,32,123,10,32,32,114,101,116,117,114,110,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,91,46,93,36,47,44,32,104,111,115,116,44,32,34,34,41,59,10,125,44,32,116,111,76,111,119,101,114,67,97,115,101,32,61,32,102,117,110,99,116,105,111,110,40,99,41,32,123,10,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,70,114,111,109,67,104,97,114,67,111,100,101,46,99,97,108,108,40,51,50,32,43,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,67,104,97,114,67,111,100,101,65,116,46,99,97,108,108,40,99,44,32,48,41,41,59,10,125,44,32,115,112,108,105,116,72,111,115,116,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,41,32,123,10,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,91,65,45,90,93,47,103,44,32,117,110,102,113,100,110,40,104,111,115,116,41,44,32,116,111,76,111,119,101,114,67,97,115,101,41,44,32,34,46,34,41,59,10,125,44,32,99,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,80,97,114,116,115,44,32,112,97,116,116,101,114,110,44,32,119,105,108,100,99,97,114,100,115,41,32,123,10,32,32,105,102,32,40,33,112,97,116,116,101,114,110,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,112,97,116,116,101,114,110,80,97,114,116,115,32,61,32,115,112,108,105,116,72,111,115,116,40,112,97,116,116,101,114,110,41,59,10,32,32,105,102,32,40,104,111,115,116,80,97,114,116,115,46,108,101,110,103,116,104,32,33,61,61,32,112,97,116,116,101,114,110,80,97,114,116,115,46,108,101,110,103,116,104,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,112,97,116,116,101,114,110,80,97,114,116,115,44,32,34,34,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,105,115,66,97,100,32,61,32,40,115,41,32,61,62,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,46,99,97,108,108,40,47,91,94,92,117,48,48,50,49,45,92,117,48,48,55,70,93,47,117,44,32,115,41,32,33,61,61,32,110,117,108,108,59,10,32,32,105,102,32,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,112,97,116,116,101,114,110,80,97,114,116,115,44,32,105,115,66,97,100,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,104,111,115,116,80,97,114,116,115,46,108,101,110,103,116,104,32,45,32,49,59,105,32,62,32,48,59,32,105,32,45,61,32,49,41,10,32,32,32,32,105,102,32,40,104,111,115,116,80,97,114,116,115,91,105,93,32,33,61,61,32,112,97,116,116,101,114,110,80,97,114,116,115,91,105,93,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,104,111,115,116,83,117,98,100,111,109,97,105,110,32,61,32,104,111,115,116,80,97,114,116,115,91,48,93,44,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,32,61,32,112,97,116,116,101,114,110,80,97,114,116,115,91,48,93,44,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,44,32,34,42,34,41,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,124,124,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,44,32,34,120,110,45,45,34,41,41,10,32,32,32,32,114,101,116,117,114,110,32,104,111,115,116,83,117,98,100,111,109,97,105,110,32,61,61,61,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,59,10,32,32,105,102,32,40,33,119,105,108,100,99,97,114,100,115,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,46,108,101,110,103,116,104,32,62,32,50,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,80,97,114,116,115,46,108,101,110,103,116,104,32,60,61,32,50,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,123,32,48,58,32,112,114,101,102,105,120,44,32,49,58,32,115,117,102,102,105,120,32,125,32,61,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,59,10,32,32,105,102,32,40,112,114,101,102,105,120,46,108,101,110,103,116,104,32,43,32,115,117,102,102,105,120,46,108,101,110,103,116,104,32,62,32,104,111,115,116,83,117,98,100,111,109,97,105,110,46,108,101,110,103,116,104,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,33,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,104,111,115,116,83,117,98,100,111,109,97,105,110,44,32,112,114,101,102,105,120,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,33,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,69,110,100,115,87,105,116,104,46,99,97,108,108,40,104,111,115,116,83,117,98,100,111,109,97,105,110,44,32,115,117,102,102,105,120,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,114,101,116,117,114,110,32,33,48,59,10,125,44,32,115,112,108,105,116,69,115,99,97,112,101,100,65,108,116,78,97,109,101,115,32,61,32,102,117,110,99,116,105,111,110,40,97,108,116,78,97,109,101,115,41,32,123,10,32,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,91,93,59,10,32,32,108,101,116,32,99,117,114,114,101,110,116,84,111,107,101,110,32,61,32,34,34,44,32,111,102,102,115,101,116,32,61,32,48,59,10,32,32,119,104,105,108,101,32,40,111,102,102,115,101,116,32,33,61,61,32,97,108,116,78,97,109,101,115,46,108,101,110,103,116,104,41,32,123,10,32,32,32,32,99,111,110,115,116,32,110,101,120,116,83,101,112,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,34,44,32,34,44,32,111,102,102,115,101,116,41,44,32,110,101,120,116,81,117,111,116,101,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,39,34,39,44,32,111,102,102,115,101,116,41,59,10,32,32,32,32,105,102,32,40,110,101,120,116,81,117,111,116,101,32,33,61,61,32,45,49,32,38,38,32,40,110,101,120,116,83,101,112,32,61,61,61,32,45,49,32,124,124,32,110,101,120,116,81,117,111,116,101,32,60,32,110,101,120,116,83,101,112,41,41,32,123,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,44,32,110,101,120,116,81,117,111,116,101,41,59,10,32,32,32,32,32,32,99,111,110,115,116,32,109,97,116,99,104,32,61,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,46,99,97,108,108,40,106,115,111,110,83,116,114,105,110,103,80,97,116,116,101,114,110,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,110,101,120,116,81,117,111,116,101,41,41,59,10,32,32,32,32,32,32,105,102,32,40,33,109,97,116,99,104,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,83,121,110,116,97,120,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,70,79,82,77,65,84,58,32,73,110,118,97,108,105,100,32,115,117,98,106,101,99,116,32,97,108,116,101,114,110,97,116,105,118,101,32,110,97,109,101,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,70,79,82,77,65,84,44,32,101,114,114,111,114,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,74,83,79,78,46,112,97,114,115,101,40,109,97,116,99,104,91,48,93,41,44,32,111,102,102,115,101,116,32,61,32,110,101,120,116,81,117,111,116,101,32,43,32,109,97,116,99,104,91,48,93,46,108,101,110,103,116,104,59,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,120,116,83,101,112,32,33,61,61,32,45,49,41,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,44,32,110,101,120,116,83,101,112,41,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,114,101,115,117,108,116,44,32,99,117,114,114,101,110,116,84,111,107,101,110,41,44,32,99,117,114,114,101,110,116,84,111,107,101,110,32,61,32,34,34,44,32,111,102,102,115,101,116,32,61,32,110,101,120,116,83,101,112,32,43,32,50,59,10,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,41,44,32,111,102,102,115,101,116,32,61,32,97,108,116,78,97,109,101,115,46,108,101,110,103,116,104,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,114,101,115,117,108,116,44,32,99,117,114,114,101,110,116,84,111,107,101,110,41,44,32,114,101,115,117,108,116,59,10,125,44,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,110,97,109,101,44,32,99,101,114,116,41,32,123,10,32,32,99,111,110,115,116,32,123,32,115,117,98,106,101,99,116,44,32,115,117,98,106,101,99,116,97,108,116,110,97,109,101,58,32,97,108,116,78,97,109,101,115,32,125,32,61,32,99,101,114,116,44,32,100,110,115,78,97,109,101,115,32,61,32,91,93,44,32,105,112,115,32,61,32,91,93,59,10,32,32,105,102,32,40,104,111,115,116,110,97,109,101,32,61,32,34,34,32,43,32,104,111,115,116,110,97,109,101,44,32,97,108,116,78,97,109,101,115,41,32,123,10,32,32,32,32,99,111,110,115,116,32,115,112,108,105,116,65,108,116,78,97,109,101,115,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,39,34,39,41,32,63,32,115,112,108,105,116,69,115,99,97,112,101,100,65,108,116,78,97,109,101,115,40,97,108,116,78,97,109,101,115,41,32,58,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,34,44,32,34,41,59,10,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,70,111,114,69,97,99,104,46,99,97,108,108,40,115,112,108,105,116,65,108,116,78,97,109,101,115,44,32,40,110,97,109,101,41,32,61,62,32,123,10,32,32,32,32,32,32,105,102,32,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,110,97,109,101,44,32,34,68,78,83,58,34,41,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,100,110,115,78,97,109,101,115,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,46,99,97,108,108,40,110,97,109,101,44,32,52,41,41,59,10,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,110,97,109,101,44,32,34,73,80,32,65,100,100,114,101,115,115,58,34,41,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,105,112,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,46,99,97,108,108,40,110,97,109,101,44,32,49,49,41,41,41,59,10,32,32,32,32,125,41,59,10,32,32,125,10,32,32,108,101,116,32,118,97,108,105,100,32,61,32,33,49,44,32,114,101,97,115,111,110,32,61,32,34,85,110,107,110,111,119,110,32,114,101,97,115,111,110,34,59,10,32,32,105,102,32,40,104,111,115,116,110,97,109,101,32,61,32,117,110,102,113,100,110,40,104,111,115,116,110,97,109,101,41,44,32,110,101,116,46,105,115,73,80,40,104,111,115,116,110,97,109,101,41,41,32,123,10,32,32,32,32,105,102,32,40,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,105,112,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,40,104,111,115,116,110,97,109,101,41,41,44,32,33,118,97,108,105,100,41,10,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,73,80,58,32,36,123,104,111,115,116,110,97,109,101,125,32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99,101,114,116,39,115,32,108,105,115,116,58,32,96,32,43,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,74,111,105,110,46,99,97,108,108,40,105,112,115,44,32,34,44,32,34,41,59,10,32,32,125,32,101,108,115,101,32,105,102,32,40,100,110,115,78,97,109,101,115,46,108,101,110,103,116,104,32,62,32,48,32,124,124,32,115,117,98,106,101,99,116,63,46,67,78,41,32,123,10,32,32,32,32,99,111,110,115,116,32,104,111,115,116,80,97,114,116,115,32,61,32,115,112,108,105,116,72,111,115,116,40,104,111,115,116,110,97,109,101,41,44,32,119,105,108,100,99,97,114,100,32,61,32,40,112,97,116,116,101,114,110,41,32,61,62,32,99,104,101,99,107,40,104,111,115,116,80,97,114,116,115,44,32,112,97,116,116,101,114,110,44,32,33,48,41,59,10,32,32,32,32,105,102,32,40,100,110,115,78,97,109,101,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,10,32,32,32,32,32,32,105,102,32,40,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,100,110,115,78,97,109,101,115,44,32,119,105,108,100,99,97,114,100,41,44,32,33,118,97,108,105,100,41,10,32,32,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,72,111,115,116,58,32,36,123,104,111,115,116,110,97,109,101,125,46,32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99,101,114,116,39,115,32,97,108,116,110,97,109,101,115,58,32,36,123,97,108,116,78,97,109,101,115,125,96,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,99,110,32,61,32,115,117,98,106,101,99,116,46,67,78,59,10,32,32,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,110,41,41,10,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,99,110,44,32,119,105,108,100,99,97,114,100,41,59,10,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,110,41,10,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,119,105,108,100,99,97,114,100,40,99,110,41,59,10,32,32,32,32,32,32,105,102,32,40,33,118,97,108,105,100,41,10,32,32,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,72,111,115,116,58,32,36,123,104,111,115,116,110,97,109,101,125,46,32,105,115,32,110,111,116,32,99,101,114,116,39,115,32,67,78,58,32,36,123,99,110,125,96,59,10,32,32,32,32,125,10,32,32,125,32,101,108,115,101,10,32,32,32,32,114,101,97,115,111,110,32,61,32,34,67,101,114,116,32,100,111,101,115,32,110,111,116,32,99,111,110,116,97,105,110,32,97,32,68,78,83,32,110,97,109,101,34,59,10,32,32,105,102,32,40,33,118,97,108,105,100,41,32,123,10,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,96,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,73,78,86,65,76,73,68,58,32,72,111,115,116,110,97,109,101,47,73,80,32,100,111,101,115,32,110,111,116,32,109,97,116,99,104,32,99,101,114,116,105,102,105,99,97,116,101,39,115,32,97,108,116,110,97,109,101,115,58,32,36,123,114,101,97,115,111,110,125,96,41,59,10,32,32,32,32,114,101,116,117,114,110,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,73,78,86,65,76,73,68,34,44,32,101,114,114,111,114,46,114,101,97,115,111,110,32,61,32,114,101,97,115,111,110,44,32,101,114,114,111,114,46,104,111,115,116,32,61,32,104,111,115,116,110,97,109,101,44,32,101,114,114,111,114,46,99,101,114,116,32,61,32,99,101,114,116,44,32,101,114,114,111,114,59,10,32,32,125,10,125,44,32,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,125,44,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,125,44,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,99,41,32,123,10,32,32,105,102,32,40,33,99,41,10,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,10,32,32,105,102,32,40,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,33,61,32,110,117,108,108,32,38,38,32,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,33,61,61,32,99,41,10,32,32,32,32,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,61,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,41,59,10,32,32,105,102,32,40,99,46,105,110,102,111,65,99,99,101,115,115,32,33,61,32,110,117,108,108,41,32,123,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,32,61,32,99,46,105,110,102,111,65,99,99,101,115,115,59,10,32,32,32,32,99,46,105,110,102,111,65,99,99,101,115,115,32,61,32,123,32,95,95,112,114,111,116,111,95,95,58,32,110,117,108,108,32,125,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,40,91,94,92,110,58,93,42,41,58,40,91,94,92,110,93,42,41,40,63,58,92,110,124,36,41,47,103,44,32,105,110,102,111,44,32,40,97,108,108,44,32,107,101,121,44,32,118,97,108,41,32,61,62,32,123,10,32,32,32,32,32,32,105,102,32,40,118,97,108,46,99,104,97,114,67,111,100,101,65,116,40,48,41,32,61,61,61,32,51,52,41,10,32,32,32,32,32,32,32,32,118,97,108,32,61,32,74,83,79,78,80,97,114,115,101,40,118,97,108,41,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,32,105,110,32,99,46,105,110,102,111,65,99,99,101,115,115,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,99,46,105,110,102,111,65,99,99,101,115,115,91,107,101,121,93,44,32,118,97,108,41,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,99,46,105,110,102,111,65,99,99,101,115,115,91,107,101,121,93,32,61,32,91,118,97,108,93,59,10,32,32,32,32,125,41,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,99,59,10,125,44,32,99,114,101,97,116,101,83,101,114,118,101,114,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,44,32,99,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,114,118,101,114,40,111,112,116,105,111,110,115,44,32,99,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,59,10,125,44,32,103,101,116,67,105,112,104,101,114,115,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,10,32,32,114,101,116,117,114,110,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,46,115,112,108,105,116,40,34,58,34,41,59,10,125,44,32,99,111,110,118,101,114,116,80,114,111,116,111,99,111,108,115,32,61,32,102,117,110,99,116,105,111,110,40,112,114,111,116,111,99,111,108,115,41,32,123,10,32,32,99,111,110,115,116,32,108,101,110,115,32,61,32,110,101,119,32,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,46,108,101,110,103,116,104,41,44,32,98,117,102,102,32,61,32,66,117,102,102,101,114,46,97,108,108,111,99,85,110,115,97,102,101,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,82,101,100,117,99,101,46,99,97,108,108,40,112,114,111,116,111,99,111,108,115,44,32,40,112,44,32,99,44,32,105,41,32,61,62,32,123,10,32,32,32,32,99,111,110,115,116,32,108,101,110,32,61,32,66,117,102,102,101,114,46,98,121,116,101,76,101,110,103,116,104,40,99,41,59,10,32,32,32,32,105,102,32,40,108,101,110,32,62,32,50,53,53,41,10,32,32,32,32,32,32,64,116,104,114,111,119,82,97,110,103,101,69,114,114,111,114,40,34,84,104,101,32,98,121,116,101,32,108,101,110,103,116,104,32,111,102,32,116,104,101,32,112,114,111,116,111,99,111,108,32,97,116,32,105,110,100,101,120,32,34,32,43,32,96,36,123,105,125,32,101,120,99,101,101,100,115,32,116,104,101,32,109,97,120,105,109,117,109,32,108,101,110,103,116,104,46,96,44,32,34,60,61,32,50,53,53,34,44,32,108,101,110,44,32,33,48,41,59,10,32,32,32,32,114,101,116,117,114,110,32,108,101,110,115,91,105,93,32,61,32,108,101,110,44,32,112,32,43,32,49,32,43,32,108,101,110,59,10,32,32,125,44,32,48,41,41,59,10,32,32,108,101,116,32,111,102,102,115,101,116,32,61,32,48,59,10,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,44,32,99,32,61,32,112,114,111,116,111,99,111,108,115,46,108,101,110,103,116,104,59,105,32,60,32,99,59,32,105,43,43,41,10,32,32,32,32,98,117,102,102,91,111,102,102,115,101,116,43,43,93,32,61,32,108,101,110,115,91,105,93,44,32,98,117,102,102,46,119,114,105,116,101,40,112,114,111,116,111,99,111,108,115,91,105,93,44,32,111,102,102,115,101,116,41,44,32,111,102,102,115,101,116,32,43,61,32,108,101,110,115,91,105,93,59,10,32,32,114,101,116,117,114,110,32,98,117,102,102,59,10,125,44,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,102,117,110,99,116,105,111,110,40,112,114,111,116,111,99,111,108,115,44,32,111,117,116,41,32,123,10,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,99,111,110,118,101,114,116,80,114,111,116,111,99,111,108,115,40,112,114,111,116,111,99,111,108,115,41,59,10,32,32,101,108,115,101,32,105,102,32,40,105,115,84,121,112,101,100,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,112,114,111,116,111,99,111,108,115,41,59,10,32,32,101,108,115,101,32,105,102,32,40,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,112,114,111,116,111,99,111,108,115,46,98,117,102,102,101,114,46,115,108,105,99,101,40,112,114,111,116,111,99,111,108,115,46,98,121,116,101,79,102,102,115,101,116,44,32,112,114,111,116,111,99,111,108,115,46,98,121,116,101,79,102,102,115,101,116,32,43,32,112,114,111,116,111,99,111,108,115,46,98,121,116,101,76,101,110,103,116,104,41,41,59,10,32,32,101,108,115,101,32,105,102,32,40,66,117,102,102,101,114,46,105,115,66,117,102,102,101,114,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,112,114,111,116,111,99,111,108,115,59,10,125,44,32,36,44,32,123,32,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,44,32,105,115,84,121,112,101,100,65,114,114,97,121,32,125,32,61,32,64,114,101,113,117,105,114,101,78,97,116,105,118,101,77,111,100,117,108,101,40,34,110,111,100,101,58,117,116,105,108,47,116,121,112,101,115,34,41,44,32,110,101,116,32,61,32,64,103,101,116,73,110,116,101,114,110,97,108,70,105,101,108,100,40,64,105,110,116,101,114,110,97,108,77,111,100,117,108,101,82,101,103,105,115,116,114,121,44,32,50,53,41,32,124,124,32,64,99,114,101,97,116,101,73,110,116,101,114,110,97,108,77,111,100,117,108,101,66,121,73,100,40,50,53,41,44,32,123,32,83,101,114,118,101,114,58,32,78,101,116,83,101,114,118,101,114,44,32,91,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,116,101,114,110,97,108,58,58,34,41,93,58,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,125,32,61,32,110,101,116,44,32,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,32,61,32,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,110,101,116,115,111,99,107,101,116,105,110,116,101,114,110,97,108,58,58,34,41,44,32,123,32,114,111,111,116,67,101,114,116,105,102,105,99,97,116,101,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,32,125,32,61,32,103,108,111,98,97,108,84,104,105,115,91,103,108,111,98,97,108,84,104,105,115,46,83,121,109,98,111,108,46,102,111,114,40,39,66,117,110,46,108,97,122,121,39,41,93,40,34,105,110,116,101,114,110,97,108,47,116,108,115,34,41,44,32,83,121,109,98,111,108,82,101,112,108,97,99,101,32,61,32,83,121,109,98,111,108,46,114,101,112,108,97,99,101,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,83,121,109,98,111,108,82,101,112,108,97,99,101,93,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,46,101,120,101,99,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,116,97,114,116,115,87,105,116,104,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,112,108,105,116,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,116,114,105,110,103,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,69,110,100,115,87,105,116,104,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,101,110,100,115,87,105,116,104,44,32,83,116,114,105,110,103,70,114,111,109,67,104,97,114,67,111,100,101,32,61,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,67,104,97,114,67,111,100,101,65,116,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,99,104,97,114,67,111,100,101,65,116,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,74,111,105,110,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,70,111,114,69,97,99,104,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,111,109,101,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,82,101,100,117,99,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,114,101,100,117,99,101,44,32,106,115,111,110,83,116,114,105,110,103,80,97,116,116,101,114,110,32,61,32,47,94,34,40,63,58,91,94,34,92,92,92,117,48,48,48,48,45,92,117,48,48,49,102,93,124,92,92,40,63,58,91,34,92,92,47,98,102,110,114,116,93,124,117,91,48,45,57,97,45,102,65,45,70,93,123,52,125,41,41,42,34,47,44,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,99,108,97,115,115,32,83,101,99,117,114,101,67,111,110,116,101,120,116,50,32,123,10,32,32,99,111,110,116,101,120,116,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,120,116,32,61,32,123,125,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,32,32,108,101,116,32,107,101,121,32,61,32,111,112,116,105,111,110,115,46,107,101,121,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,107,101,121,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,107,101,121,32,61,32,107,101,121,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,101,114,116,32,61,32,111,112,116,105,111,110,115,46,99,101,114,116,59,10,32,32,32,32,32,32,105,102,32,40,99,101,114,116,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,101,114,116,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,101,114,116,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,101,114,116,32,61,32,99,101,114,116,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,97,32,61,32,111,112,116,105,111,110,115,46,99,97,59,10,32,32,32,32,32,32,105,102,32,40,99,97,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,97,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,97,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,32,61,32,99,97,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,112,97,115,115,112,104,114,97,115,101,32,61,32,111,112,116,105,111,110,115,46,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,105,102,32,40,112,97,115,115,112,104,114,97,115,101,32,38,38,32,116,121,112,101,111,102,32,112,97,115,115,112,104,114,97,115,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,112,97,115,115,112,104,114,97,115,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,32,61,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,114,118,101,114,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,105,102,32,40,115,101,114,118,101,114,110,97,109,101,32,38,38,32,116,121,112,101,111,102,32,115,101,114,118,101,114,110,97,109,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,114,118,101,114,110,97,109,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,124,124,32,48,59,10,32,32,32,32,32,32,105,102,32,40,115,101,99,117,114,101,79,112,116,105,111,110,115,32,38,38,32,116,121,112,101,111,102,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,33,61,61,32,34,110,117,109,98,101,114,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,99,117,114,101,79,112,116,105,111,110,115,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,110,117,109,98,101,114,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,10,32,32,125,10,125,44,32,98,117,110,116,108,115,32,61,32,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,116,108,115,58,58,34,41,44,32,83,111,99,107,101,116,67,108,97,115,115,44,32,84,76,83,83,111,99,107,101,116,32,61,32,102,117,110,99,116,105,111,110,40,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,41,32,123,10,32,32,114,101,116,117,114,110,32,83,111,99,107,101,116,67,108,97,115,115,32,61,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,44,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,83,111,99,107,101,116,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,44,32,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,44,32,123,10,32,32,32,32,118,97,108,117,101,58,32,34,84,76,83,83,111,99,107,101,116,34,44,10,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,33,49,10,32,32,125,41,44,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,102,117,110,99,116,105,111,110,32,83,111,99,107,101,116,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,40,111,112,116,105,111,110,115,41,59,10,32,32,125,44,32,83,121,109,98,111,108,46,104,97,115,73,110,115,116,97,110,99,101,44,32,123,10,32,32,32,32,118,97,108,117,101,40,105,110,115,116,97,110,99,101,41,32,123,10,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,59,10,32,32,32,32,125,10,32,32,125,41,59,10,125,40,99,108,97,115,115,32,84,76,83,83,111,99,107,101,116,50,32,101,120,116,101,110,100,115,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,123,10,32,32,35,115,101,99,117,114,101,67,111,110,116,101,120,116,59,10,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,59,10,32,32,35,115,111,99,107,101,116,59,10,32,32,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,59,10,32,32,35,115,101,115,115,105,111,110,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,115,111,99,107,101,116,44,32,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,115,117,112,101,114,40,115,111,99,107,101,116,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,63,32,111,112,116,105,111,110,115,32,58,32,111,112,116,105,111,110,115,32,124,124,32,115,111,99,107,101,116,41,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,32,124,124,32,115,111,99,107,101,116,32,124,124,32,123,125,44,32,116,121,112,101,111,102,32,111,112,116,105,111,110,115,32,61,61,61,32,34,111,98,106,101,99,116,34,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,111,112,116,105,111,110,115,59,10,32,32,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,116,104,105,115,41,59,10,32,32,32,32,32,32,105,102,32,40,115,111,99,107,101,116,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,35,115,111,99,107,101,116,32,61,32,115,111,99,107,101,116,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,35,115,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,67,111,110,116,101,120,116,32,124,124,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,44,32,116,104,105,115,46,97,117,116,104,111,114,105,122,101,100,32,61,32,33,49,44,32,116,104,105,115,46,115,101,99,117,114,101,67,111,110,110,101,99,116,105,110,103,32,61,32,33,48,44,32,116,104,105,115,46,95,115,101,99,117,114,101,69,115,116,97,98,108,105,115,104,101,100,32,61,32,33,49,44,32,116,104,105,115,46,95,115,101,99,117,114,101,80,101,110,100,105,110,103,32,61,32,33,48,44,32,116,104,105,115,46,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,61,32,111,112,116,105,111,110,115,46,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,124,124,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,32,116,104,105,115,46,35,115,101,115,115,105,111,110,32,61,32,111,112,116,105,111,110,115,46,115,101,115,115,105,111,110,32,124,124,32,110,117,108,108,59,10,32,32,125,10,32,32,95,115,101,99,117,114,101,69,115,116,97,98,108,105,115,104,101,100,32,61,32,33,49,59,10,32,32,95,115,101,99,117,114,101,80,101,110,100,105,110,103,32,61,32,33,48,59,10,32,32,95,110,101,119,83,101,115,115,105,111,110,80,101,110,100,105,110,103,59,10,32,32,95,99,111,110,116,114,111,108,82,101,108,101,97,115,101,100,59,10,32,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,110,103,32,61,32,33,49,59,10,32,32,95,83,78,73,67,97,108,108,98,97,99,107,59,10,32,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,97,117,116,104,111,114,105,122,101,100,32,61,32,33,49,59,10,32,32,97,117,116,104,111,114,105,122,97,116,105,111,110,69,114,114,111,114,59,10,32,32,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,32,61,32,33,49,59,10,32,32,101,110,99,114,121,112,116,101,100,32,61,32,33,48,59,10,32,32,95,115,116,97,114,116,40,41,32,123,10,32,32,32,32,116,104,105,115,46,99,111,110,110,101,99,116,40,41,59,10,32,32,125,10,32,32,103,101,116,83,101,115,115,105,111,110,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,83,101,115,115,105,111,110,40,41,59,10,32,32,125,10,32,32,103,101,116,69,112,104,101,109,101,114,97,108,75,101,121,73,110,102,111,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,69,112,104,101,109,101,114,97,108,75,101,121,73,110,102,111,40,41,59,10,32,32,125,10,32,32,103,101,116,67,105,112,104,101,114,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,67,105,112,104,101,114,40,41,59,10,32,32,125,10,32,32,103,101,116,83,104,97,114,101,100,83,105,103,97,108,103,115,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,83,104,97,114,101,100,83,105,103,97,108,103,115,40,41,59,10,32,32,125,10,32,32,103,101,116,80,114,111,116,111,99,111,108,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,86,101,114,115,105,111,110,40,41,59,10,32,32,125,10,32,32,103,101,116,70,105,110,105,115,104,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,70,105,110,105,115,104,101,100,77,101,115,115,97,103,101,40,41,32,124,124,32,118,111,105,100,32,48,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,70,105,110,105,115,104,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,80,101,101,114,70,105,110,105,115,104,101,100,77,101,115,115,97,103,101,40,41,32,124,124,32,118,111,105,100,32,48,59,10,32,32,125,10,32,32,105,115,83,101,115,115,105,111,110,82,101,117,115,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,33,33,116,104,105,115,46,35,115,101,115,115,105,111,110,59,10,32,32,125,10,32,32,114,101,110,101,103,111,116,105,97,116,101,40,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,82,69,78,69,71,79,84,73,65,84,73,79,78,95,68,73,83,65,66,76,69,68,58,32,84,76,83,32,115,101,115,115,105,111,110,32,114,101,110,101,103,111,116,105,97,116,105,111,110,32,100,105,115,97,98,108,101,100,32,102,111,114,32,116,104,105,115,32,115,111,99,107,101,116,34,41,59,10,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,82,69,78,69,71,79,84,73,65,84,73,79,78,95,68,73,83,65,66,76,69,68,34,44,32,101,114,114,111,114,59,10,32,32,32,32,125,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,100,105,115,97,98,108,101,82,101,110,101,103,111,116,105,97,116,105,111,110,40,41,32,123,10,32,32,32,32,116,104,105,115,46,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,32,61,32,33,48,59,10,32,32,125,10,32,32,103,101,116,84,76,83,84,105,99,107,101,116,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,84,105,99,107,101,116,40,41,59,10,32,32,125,10,32,32,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,44,32,99,111,110,116,101,120,116,41,32,123,10,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,44,32,99,111,110,116,101,120,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,41,59,10,32,32,125,10,32,32,115,101,116,77,97,120,83,101,110,100,70,114,97,103,109,101,110,116,40,115,105,122,101,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,77,97,120,83,101,110,100,70,114,97,103,109,101,110,116,40,115,105,122,101,41,32,124,124,32,33,49,59,10,32,32,125,10,32,32,101,110,97,98,108,101,84,114,97,99,101,40,41,32,123,10,32,32,125,10,32,32,115,101,116,83,101,114,118,101,114,110,97,109,101,40,110,97,109,101,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,114,118,101,114,41,32,123,10,32,32,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,83,78,73,95,70,82,79,77,95,83,69,82,86,69,82,58,32,67,97,110,110,111,116,32,105,115,115,117,101,32,83,78,73,32,102,114,111,109,32,97,32,84,76,83,32,115,101,114,118,101,114,45,115,105,100,101,32,115,111,99,107,101,116,34,41,59,10,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,83,78,73,95,70,82,79,77,95,83,69,82,86,69,82,34,44,32,101,114,114,111,114,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,110,97,109,101,44,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,83,101,114,118,101,114,110,97,109,101,40,110,97,109,101,41,59,10,32,32,125,10,32,32,115,101,116,83,101,115,115,105,111,110,40,115,101,115,115,105,111,110,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,35,115,101,115,115,105,111,110,32,61,32,115,101,115,115,105,111,110,44,32,116,121,112,101,111,102,32,115,101,115,115,105,111,110,32,61,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,115,101,115,115,105,111,110,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,115,101,115,115,105,111,110,44,32,34,108,97,116,105,110,49,34,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,83,101,115,115,105,111,110,40,115,101,115,115,105,111,110,41,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,97,98,98,114,101,118,105,97,116,101,100,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,101,114,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,49,32,63,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,41,32,58,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,97,98,98,114,101,118,105,97,116,101,100,41,59,10,32,32,32,32,105,102,32,40,99,101,114,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,101,114,116,41,59,10,32,32,125,10,32,32,103,101,116,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,101,114,116,32,61,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,67,101,114,116,105,102,105,99,97,116,101,40,41,59,10,32,32,32,32,105,102,32,40,99,101,114,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,101,114,116,41,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,88,53,48,57,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,103,101,116,88,53,48,57,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,103,101,116,32,97,108,112,110,80,114,111,116,111,99,111,108,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,97,108,112,110,80,114,111,116,111,99,111,108,59,10,32,32,125,10,32,32,91,98,117,110,116,108,115,93,40,112,111,114,116,44,32,104,111,115,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,123,10,32,32,32,32,32,32,115,111,99,107,101,116,58,32,116,104,105,115,46,35,115,111,99,107,101,116,44,10,32,32,32,32,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,58,32,116,104,105,115,46,65,76,80,78,80,114,111,116,111,99,111,108,115,44,10,32,32,32,32,32,32,115,101,114,118,101,114,78,97,109,101,58,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,124,124,32,104,111,115,116,32,124,124,32,34,108,111,99,97,108,104,111,115,116,34,44,10,32,32,32,32,32,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,58,32,116,104,105,115,46,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,10,32,32,32,32,32,32,115,101,115,115,105,111,110,58,32,116,104,105,115,46,35,115,101,115,115,105,111,110,44,10,32,32,32,32,32,32,46,46,46,116,104,105,115,46,35,115,101,99,117,114,101,67,111,110,116,101,120,116,10,32,32,32,32,125,59,10,32,32,125,10,125,41,59,10,10,99,108,97,115,115,32,83,101,114,118,101,114,32,101,120,116,101,110,100,115,32,78,101,116,83,101,114,118,101,114,32,123,10,32,32,107,101,121,59,10,32,32,99,101,114,116,59,10,32,32,99,97,59,10,32,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,59,10,32,32,95,114,101,113,117,101,115,116,67,101,114,116,59,10,32,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,111,112,116,105,111,110,115,44,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,32,123,10,32,32,32,32,115,117,112,101,114,40,111,112,116,105,111,110,115,44,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,59,10,32,32,32,32,116,104,105,115,46,115,101,116,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,32,32,125,10,32,32,115,101,116,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,41,10,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,99,111,110,116,101,120,116,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,111,112,116,105,111,110,115,59,10,32,32,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,116,104,105,115,41,59,10,32,32,32,32,32,32,108,101,116,32,107,101,121,32,61,32,111,112,116,105,111,110,115,46,107,101,121,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,107,101,121,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,107,101,121,32,61,32,107,101,121,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,101,114,116,32,61,32,111,112,116,105,111,110,115,46,99,101,114,116,59,10,32,32,32,32,32,32,105,102,32,40,99,101,114,116,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,101,114,116,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,101,114,116,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,101,114,116,32,61,32,99,101,114,116,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,97,32,61,32,111,112,116,105,111,110,115,46,99,97,59,10,32,32,32,32,32,32,105,102,32,40,99,97,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,97,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,97,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,32,61,32,99,97,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,112,97,115,115,112,104,114,97,115,101,32,61,32,111,112,116,105,111,110,115,46,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,105,102,32,40,112,97,115,115,112,104,114,97,115,101,32,38,38,32,116,121,112,101,111,102,32,112,97,115,115,112,104,114,97,115,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,112,97,115,115,112,104,114,97,115,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,32,61,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,114,118,101,114,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,105,102,32,40,115,101,114,118,101,114,110,97,109,101,32,38,38,32,116,121,112,101,111,102,32,115,101,114,118,101,114,110,97,109,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,114,118,101,114,110,97,109,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,124,124,32,48,59,10,32,32,32,32,32,32,105,102,32,40,115,101,99,117,114,101,79,112,116,105,111,110,115,32,38,38,32,116,121,112,101,111,102,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,33,61,61,32,34,110,117,109,98,101,114,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,99,117,114,101,79,112,116,105,111,110,115,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,110,117,109,98,101,114,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,32,32,32,32,99,111,110,115,116,32,114,101,113,117,101,115,116,67,101,114,116,32,61,32,111,112,116,105,111,110,115,46,114,101,113,117,101,115,116,67,101,114,116,32,124,124,32,33,49,59,10,32,32,32,32,32,32,105,102,32,40,114,101,113,117,101,115,116,67,101,114,116,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,32,61,32,114,101,113,117,101,115,116,67,101,114,116,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,32,61,32,118,111,105,100,32,48,59,10,32,32,32,32,32,32,99,111,110,115,116,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,111,112,116,105,111,110,115,46,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,124,124,32,33,49,59,10,32,32,32,32,32,32,105,102,32,40,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,118,111,105,100,32,48,59,10,32,32,32,32,125,10,32,32,125,10,32,32,103,101,116,84,105,99,107,101,116,75,101,121,115,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,115,101,116,84,105,99,107,101,116,75,101,121,115,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,91,98,117,110,116,108,115,93,40,112,111,114,116,44,32,104,111,115,116,44,32,105,115,67,108,105,101,110,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,91,10,32,32,32,32,32,32,123,10,32,32,32,32,32,32,32,32,115,101,114,118,101,114,78,97,109,101,58,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,124,124,32,104,111,115,116,32,124,124,32,34,108,111,99,97,108,104,111,115,116,34,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,46,107,101,121,44,10,32,32,32,32,32,32,32,32,99,101,114,116,58,32,116,104,105,115,46,99,101,114,116,44,10,32,32,32,32,32,32,32,32,99,97,58,32,116,104,105,115,46,99,97,44,10,32,32,32,32,32,32,32,32,112,97,115,115,112,104,114,97,115,101,58,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,44,10,32,32,32,32,32,32,32,32,115,101,99,117,114,101,79,112,116,105,111,110,115,58,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,44,10,32,32,32,32,32,32,32,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,58,32,105,115,67,108,105,101,110,116,32,63,32,33,49,32,58,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,44,10,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,67,101,114,116,58,32,105,115,67,108,105,101,110,116,32,63,32,33,49,32,58,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,44,10,32,32,32,32,32,32,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,58,32,116,104,105,115,46,65,76,80,78,80,114,111,116,111,99,111,108,115,10,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,83,111,99,107,101,116,67,108,97,115,115,10,32,32,32,32,93,59,10,32,32,125,10,125,10,118,97,114,32,67,76,73,69,78,84,95,82,69,78,69,71,95,76,73,77,73,84,32,61,32,51,44,32,67,76,73,69,78,84,95,82,69,78,69,71,95,87,73,78,68,79,87,32,61,32,54,48,48,44,32,68,69,70,65,85,76,84,95,69,67,68,72,95,67,85,82,86,69,32,61,32,34,97,117,116,111,34,44,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,32,61,32,34,68,72,69,45,82,83,65,45,65,69,83,50,53,54,45,71,67,77,45,83,72,65,51,56,52,58,68,72,69,45,82,83,65,45,65,69,83,49,50,56,45,71,67,77,45,83,72,65,50,53,54,58,69,67,68,72,69,45,82,83,65,45,65,69,83,50,53,54,45,71,67,77,45,83,72,65,51,56,52,58,69,67,68,72,69,45,82,83,65,45,65,69,83,49,50,56,45,71,67,77,45,83,72,65,50,53,54,34,44,32,68,69,70,65,85,76,84,95,77,73,78,95,86,69,82,83,73,79,78,32,61,32,34,84,76,83,118,49,46,50,34,44,32,68,69,70,65,85,76,84,95,77,65,88,95,86,69,82,83,73,79,78,32,61,32,34,84,76,83,118,49,46,51,34,44,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,32,61,32,40,112,111,114,116,44,32,104,111,115,116,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,32,61,62,32,123,10,32,32,105,102,32,40,116,121,112,101,111,102,32,112,111,114,116,32,61,61,61,32,34,111,98,106,101,99,116,34,41,32,123,10,32,32,32,32,112,111,114,116,46,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,59,10,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,112,111,114,116,59,10,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,112,111,114,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,84,76,83,83,111,99,107,101,116,40,112,111,114,116,41,46,99,111,110,110,101,99,116,40,112,111,114,116,44,32,104,111,115,116,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,110,101,119,32,84,76,83,83,111,99,107,101,116,40,41,46,99,111,110,110,101,99,116,40,112,111,114,116,44,32,104,111,115,116,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,59,10,125,44,32,99,111,110,110,101,99,116,32,61,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,59,10,36,32,61,32,123,10,32,32,67,76,73,69,78,84,95,82,69,78,69,71,95,76,73,77,73,84,44,10,32,32,67,76,73,69,78,84,95,82,69,78,69,71,95,87,73,78,68,79,87,44,10,32,32,99,111,110,110,101,99,116,44,10,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,44,10,32,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,44,10,32,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,44,10,32,32,99,114,101,97,116,101,83,101,114,118,101,114,44,10,32,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,44,10,32,32,68,69,70,65,85,76,84,95,69,67,68,72,95,67,85,82,86,69,44,10,32,32,68,69,70,65,85,76,84,95,77,65,88,95,86,69,82,83,73,79,78,44,10,32,32,68,69,70,65,85,76,84,95,77,73,78,95,86,69,82,83,73,79,78,44,10,32,32,103,101,116,67,105,112,104,101,114,115,44,10,32,32,112,97,114,115,101,67,101,114,116,83,116,114,105,110,103,44,10,32,32,83,101,99,117,114,101,67,111,110,116,101,120,116,44,10,32,32,83,101,114,118,101,114,44,10,32,32,84,76,83,83,111,99,107,101,116,44,10,32,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,10,32,32,114,111,111,116,67,101,114,116,105,102,105,99,97,116,101,115,10,125,59,10,114,101,116,117,114,110,32,36,125,41,10,10,0}; static constexpr ASCIILiteral NodeTLSCode = ASCIILiteral::fromLiteralUnsafe(NodeTLSCodeBytes); // @@ -722,7 +722,7 @@ static constexpr ASCIILiteral NodeTimersPromisesCode = ASCIILiteral::fromLiteral // -static constexpr const char NodeTLSCodeBytes[18536] = {40,102,117,110,99,116,105,111,110,32,40,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,47,47,32,115,114,99,47,106,115,47,111,117,116,47,116,109,112,47,110,111,100,101,47,116,108,115,46,116,115,10,118,97,114,32,112,97,114,115,101,67,101,114,116,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,10,32,32,116,104,114,111,119,78,111,116,73,109,112,108,101,109,101,110,116,101,100,40,34,78,111,116,32,105,109,112,108,101,109,101,110,116,101,100,34,41,59,10,125,44,32,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,32,61,32,102,117,110,99,116,105,111,110,40,111,98,106,41,32,123,10,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,32,61,61,61,32,34,115,116,114,105,110,103,34,32,124,124,32,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,41,32,124,124,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,32,124,124,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,66,108,111,98,41,10,32,32,32,32,114,101,116,117,114,110,32,33,48,59,10,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,98,106,41,41,32,123,10,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,105,32,60,32,111,98,106,46,108,101,110,103,116,104,59,32,105,43,43,41,10,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,32,33,61,61,32,34,115,116,114,105,110,103,34,32,38,38,32,33,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,41,32,38,38,32,33,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,41,32,38,38,32,33,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,66,108,111,98,41,41,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,32,32,114,101,116,117,114,110,32,33,48,59,10,32,32,125,10,125,44,32,117,110,102,113,100,110,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,50,41,32,123,10,32,32,114,101,116,117,114,110,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,91,46,93,36,47,44,32,104,111,115,116,50,44,32,34,34,41,59,10,125,44,32,116,111,76,111,119,101,114,67,97,115,101,32,61,32,102,117,110,99,116,105,111,110,40,99,41,32,123,10,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,70,114,111,109,67,104,97,114,67,111,100,101,46,99,97,108,108,40,51,50,32,43,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,67,104,97,114,67,111,100,101,65,116,46,99,97,108,108,40,99,44,32,48,41,41,59,10,125,44,32,115,112,108,105,116,72,111,115,116,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,50,41,32,123,10,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,91,65,45,90,93,47,103,44,32,117,110,102,113,100,110,40,104,111,115,116,50,41,44,32,116,111,76,111,119,101,114,67,97,115,101,41,44,32,34,46,34,41,59,10,125,44,32,99,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,80,97,114,116,115,44,32,112,97,116,116,101,114,110,44,32,119,105,108,100,99,97,114,100,115,41,32,123,10,32,32,105,102,32,40,33,112,97,116,116,101,114,110,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,112,97,116,116,101,114,110,80,97,114,116,115,32,61,32,115,112,108,105,116,72,111,115,116,40,112,97,116,116,101,114,110,41,59,10,32,32,105,102,32,40,104,111,115,116,80,97,114,116,115,46,108,101,110,103,116,104,32,33,61,61,32,112,97,116,116,101,114,110,80,97,114,116,115,46,108,101,110,103,116,104,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,112,97,116,116,101,114,110,80,97,114,116,115,44,32,34,34,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,105,115,66,97,100,32,61,32,40,115,41,32,61,62,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,46,99,97,108,108,40,47,91,94,92,117,48,48,50,49,45,92,117,48,48,55,70,93,47,117,44,32,115,41,32,33,61,61,32,110,117,108,108,59,10,32,32,105,102,32,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,112,97,116,116,101,114,110,80,97,114,116,115,44,32,105,115,66,97,100,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,104,111,115,116,80,97,114,116,115,46,108,101,110,103,116,104,32,45,32,49,59,105,32,62,32,48,59,32,105,32,45,61,32,49,41,10,32,32,32,32,105,102,32,40,104,111,115,116,80,97,114,116,115,91,105,93,32,33,61,61,32,112,97,116,116,101,114,110,80,97,114,116,115,91,105,93,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,104,111,115,116,83,117,98,100,111,109,97,105,110,32,61,32,104,111,115,116,80,97,114,116,115,91,48,93,44,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,32,61,32,112,97,116,116,101,114,110,80,97,114,116,115,91,48,93,44,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,44,32,34,42,34,41,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,124,124,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,44,32,34,120,110,45,45,34,41,41,10,32,32,32,32,114,101,116,117,114,110,32,104,111,115,116,83,117,98,100,111,109,97,105,110,32,61,61,61,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,59,10,32,32,105,102,32,40,33,119,105,108,100,99,97,114,100,115,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,46,108,101,110,103,116,104,32,62,32,50,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,80,97,114,116,115,46,108,101,110,103,116,104,32,60,61,32,50,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,123,32,48,58,32,112,114,101,102,105,120,44,32,49,58,32,115,117,102,102,105,120,32,125,32,61,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,59,10,32,32,105,102,32,40,112,114,101,102,105,120,46,108,101,110,103,116,104,32,43,32,115,117,102,102,105,120,46,108,101,110,103,116,104,32,62,32,104,111,115,116,83,117,98,100,111,109,97,105,110,46,108,101,110,103,116,104,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,33,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,104,111,115,116,83,117,98,100,111,109,97,105,110,44,32,112,114,101,102,105,120,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,33,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,69,110,100,115,87,105,116,104,46,99,97,108,108,40,104,111,115,116,83,117,98,100,111,109,97,105,110,44,32,115,117,102,102,105,120,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,114,101,116,117,114,110,32,33,48,59,10,125,44,32,115,112,108,105,116,69,115,99,97,112,101,100,65,108,116,78,97,109,101,115,32,61,32,102,117,110,99,116,105,111,110,40,97,108,116,78,97,109,101,115,41,32,123,10,32,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,91,93,59,10,32,32,108,101,116,32,99,117,114,114,101,110,116,84,111,107,101,110,32,61,32,34,34,44,32,111,102,102,115,101,116,32,61,32,48,59,10,32,32,119,104,105,108,101,32,40,111,102,102,115,101,116,32,33,61,61,32,97,108,116,78,97,109,101,115,46,108,101,110,103,116,104,41,32,123,10,32,32,32,32,99,111,110,115,116,32,110,101,120,116,83,101,112,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,34,44,32,34,44,32,111,102,102,115,101,116,41,44,32,110,101,120,116,81,117,111,116,101,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,39,34,39,44,32,111,102,102,115,101,116,41,59,10,32,32,32,32,105,102,32,40,110,101,120,116,81,117,111,116,101,32,33,61,61,32,45,49,32,38,38,32,40,110,101,120,116,83,101,112,32,61,61,61,32,45,49,32,124,124,32,110,101,120,116,81,117,111,116,101,32,60,32,110,101,120,116,83,101,112,41,41,32,123,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,44,32,110,101,120,116,81,117,111,116,101,41,59,10,32,32,32,32,32,32,99,111,110,115,116,32,109,97,116,99,104,32,61,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,46,99,97,108,108,40,106,115,111,110,83,116,114,105,110,103,80,97,116,116,101,114,110,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,110,101,120,116,81,117,111,116,101,41,41,59,10,32,32,32,32,32,32,105,102,32,40,33,109,97,116,99,104,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,83,121,110,116,97,120,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,70,79,82,77,65,84,58,32,73,110,118,97,108,105,100,32,115,117,98,106,101,99,116,32,97,108,116,101,114,110,97,116,105,118,101,32,110,97,109,101,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,70,79,82,77,65,84,44,32,101,114,114,111,114,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,74,83,79,78,46,112,97,114,115,101,40,109,97,116,99,104,91,48,93,41,44,32,111,102,102,115,101,116,32,61,32,110,101,120,116,81,117,111,116,101,32,43,32,109,97,116,99,104,91,48,93,46,108,101,110,103,116,104,59,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,120,116,83,101,112,32,33,61,61,32,45,49,41,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,44,32,110,101,120,116,83,101,112,41,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,114,101,115,117,108,116,44,32,99,117,114,114,101,110,116,84,111,107,101,110,41,44,32,99,117,114,114,101,110,116,84,111,107,101,110,32,61,32,34,34,44,32,111,102,102,115,101,116,32,61,32,110,101,120,116,83,101,112,32,43,32,50,59,10,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,41,44,32,111,102,102,115,101,116,32,61,32,97,108,116,78,97,109,101,115,46,108,101,110,103,116,104,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,114,101,115,117,108,116,44,32,99,117,114,114,101,110,116,84,111,107,101,110,41,44,32,114,101,115,117,108,116,59,10,125,44,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,110,97,109,101,44,32,99,101,114,116,41,32,123,10,32,32,99,111,110,115,116,32,123,32,115,117,98,106,101,99,116,44,32,115,117,98,106,101,99,116,97,108,116,110,97,109,101,58,32,97,108,116,78,97,109,101,115,32,125,32,61,32,99,101,114,116,44,32,100,110,115,78,97,109,101,115,32,61,32,91,93,44,32,105,112,115,32,61,32,91,93,59,10,32,32,105,102,32,40,104,111,115,116,110,97,109,101,32,61,32,34,34,32,43,32,104,111,115,116,110,97,109,101,44,32,97,108,116,78,97,109,101,115,41,32,123,10,32,32,32,32,99,111,110,115,116,32,115,112,108,105,116,65,108,116,78,97,109,101,115,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,39,34,39,41,32,63,32,115,112,108,105,116,69,115,99,97,112,101,100,65,108,116,78,97,109,101,115,40,97,108,116,78,97,109,101,115,41,32,58,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,34,44,32,34,41,59,10,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,70,111,114,69,97,99,104,46,99,97,108,108,40,115,112,108,105,116,65,108,116,78,97,109,101,115,44,32,40,110,97,109,101,41,32,61,62,32,123,10,32,32,32,32,32,32,105,102,32,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,110,97,109,101,44,32,34,68,78,83,58,34,41,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,100,110,115,78,97,109,101,115,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,46,99,97,108,108,40,110,97,109,101,44,32,52,41,41,59,10,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,110,97,109,101,44,32,34,73,80,32,65,100,100,114,101,115,115,58,34,41,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,105,112,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,46,99,97,108,108,40,110,97,109,101,44,32,49,49,41,41,41,59,10,32,32,32,32,125,41,59,10,32,32,125,10,32,32,108,101,116,32,118,97,108,105,100,32,61,32,33,49,44,32,114,101,97,115,111,110,32,61,32,34,85,110,107,110,111,119,110,32,114,101,97,115,111,110,34,59,10,32,32,105,102,32,40,104,111,115,116,110,97,109,101,32,61,32,117,110,102,113,100,110,40,104,111,115,116,110,97,109,101,41,44,32,110,101,116,46,105,115,73,80,40,104,111,115,116,110,97,109,101,41,41,32,123,10,32,32,32,32,105,102,32,40,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,105,112,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,40,104,111,115,116,110,97,109,101,41,41,44,32,33,118,97,108,105,100,41,10,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,73,80,58,32,36,123,104,111,115,116,110,97,109,101,125,32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99,101,114,116,39,115,32,108,105,115,116,58,32,96,32,43,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,74,111,105,110,46,99,97,108,108,40,105,112,115,44,32,34,44,32,34,41,59,10,32,32,125,32,101,108,115,101,32,105,102,32,40,100,110,115,78,97,109,101,115,46,108,101,110,103,116,104,32,62,32,48,32,124,124,32,115,117,98,106,101,99,116,63,46,67,78,41,32,123,10,32,32,32,32,99,111,110,115,116,32,104,111,115,116,80,97,114,116,115,32,61,32,115,112,108,105,116,72,111,115,116,40,104,111,115,116,110,97,109,101,41,44,32,119,105,108,100,99,97,114,100,32,61,32,40,112,97,116,116,101,114,110,41,32,61,62,32,99,104,101,99,107,40,104,111,115,116,80,97,114,116,115,44,32,112,97,116,116,101,114,110,44,32,33,48,41,59,10,32,32,32,32,105,102,32,40,100,110,115,78,97,109,101,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,10,32,32,32,32,32,32,105,102,32,40,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,100,110,115,78,97,109,101,115,44,32,119,105,108,100,99,97,114,100,41,44,32,33,118,97,108,105,100,41,10,32,32,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,72,111,115,116,58,32,36,123,104,111,115,116,110,97,109,101,125,46,32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99,101,114,116,39,115,32,97,108,116,110,97,109,101,115,58,32,36,123,97,108,116,78,97,109,101,115,125,96,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,99,110,32,61,32,115,117,98,106,101,99,116,46,67,78,59,10,32,32,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,110,41,41,10,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,99,110,44,32,119,105,108,100,99,97,114,100,41,59,10,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,110,41,10,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,119,105,108,100,99,97,114,100,40,99,110,41,59,10,32,32,32,32,32,32,105,102,32,40,33,118,97,108,105,100,41,10,32,32,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,72,111,115,116,58,32,36,123,104,111,115,116,110,97,109,101,125,46,32,105,115,32,110,111,116,32,99,101,114,116,39,115,32,67,78,58,32,36,123,99,110,125,96,59,10,32,32,32,32,125,10,32,32,125,32,101,108,115,101,10,32,32,32,32,114,101,97,115,111,110,32,61,32,34,67,101,114,116,32,100,111,101,115,32,110,111,116,32,99,111,110,116,97,105,110,32,97,32,68,78,83,32,110,97,109,101,34,59,10,32,32,105,102,32,40,33,118,97,108,105,100,41,32,123,10,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,96,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,73,78,86,65,76,73,68,58,32,72,111,115,116,110,97,109,101,47,73,80,32,100,111,101,115,32,110,111,116,32,109,97,116,99,104,32,99,101,114,116,105,102,105,99,97,116,101,39,115,32,97,108,116,110,97,109,101,115,58,32,36,123,114,101,97,115,111,110,125,96,41,59,10,32,32,32,32,114,101,116,117,114,110,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,73,78,86,65,76,73,68,34,44,32,101,114,114,111,114,46,114,101,97,115,111,110,32,61,32,114,101,97,115,111,110,44,32,101,114,114,111,114,46,104,111,115,116,32,61,32,104,111,115,116,44,32,101,114,114,111,114,46,99,101,114,116,32,61,32,99,101,114,116,44,32,101,114,114,111,114,59,10,32,32,125,10,125,44,32,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,125,44,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,125,44,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,99,41,32,123,10,32,32,105,102,32,40,33,99,41,10,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,10,32,32,105,102,32,40,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,33,61,32,110,117,108,108,32,38,38,32,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,33,61,61,32,99,41,10,32,32,32,32,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,61,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,41,59,10,32,32,105,102,32,40,99,46,105,110,102,111,65,99,99,101,115,115,32,33,61,32,110,117,108,108,41,32,123,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,32,61,32,99,46,105,110,102,111,65,99,99,101,115,115,59,10,32,32,32,32,99,46,105,110,102,111,65,99,99,101,115,115,32,61,32,123,32,95,95,112,114,111,116,111,95,95,58,32,110,117,108,108,32,125,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,40,91,94,92,110,58,93,42,41,58,40,91,94,92,110,93,42,41,40,63,58,92,110,124,36,41,47,103,44,32,105,110,102,111,44,32,40,97,108,108,44,32,107,101,121,44,32,118,97,108,41,32,61,62,32,123,10,32,32,32,32,32,32,105,102,32,40,118,97,108,46,99,104,97,114,67,111,100,101,65,116,40,48,41,32,61,61,61,32,51,52,41,10,32,32,32,32,32,32,32,32,118,97,108,32,61,32,74,83,79,78,80,97,114,115,101,40,118,97,108,41,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,32,105,110,32,99,46,105,110,102,111,65,99,99,101,115,115,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,99,46,105,110,102,111,65,99,99,101,115,115,91,107,101,121,93,44,32,118,97,108,41,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,99,46,105,110,102,111,65,99,99,101,115,115,91,107,101,121,93,32,61,32,91,118,97,108,93,59,10,32,32,32,32,125,41,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,99,59,10,125,44,32,99,114,101,97,116,101,83,101,114,118,101,114,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,44,32,99,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,114,118,101,114,40,111,112,116,105,111,110,115,44,32,99,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,59,10,125,44,32,103,101,116,67,105,112,104,101,114,115,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,10,32,32,114,101,116,117,114,110,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,46,115,112,108,105,116,40,34,58,34,41,59,10,125,44,32,99,111,110,118,101,114,116,80,114,111,116,111,99,111,108,115,32,61,32,102,117,110,99,116,105,111,110,40,112,114,111,116,111,99,111,108,115,41,32,123,10,32,32,99,111,110,115,116,32,108,101,110,115,32,61,32,110,101,119,32,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,46,108,101,110,103,116,104,41,44,32,98,117,102,102,32,61,32,66,117,102,102,101,114,46,97,108,108,111,99,85,110,115,97,102,101,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,82,101,100,117,99,101,46,99,97,108,108,40,112,114,111,116,111,99,111,108,115,44,32,40,112,44,32,99,44,32,105,41,32,61,62,32,123,10,32,32,32,32,99,111,110,115,116,32,108,101,110,32,61,32,66,117,102,102,101,114,46,98,121,116,101,76,101,110,103,116,104,40,99,41,59,10,32,32,32,32,105,102,32,40,108,101,110,32,62,32,50,53,53,41,10,32,32,32,32,32,32,64,116,104,114,111,119,82,97,110,103,101,69,114,114,111,114,40,34,84,104,101,32,98,121,116,101,32,108,101,110,103,116,104,32,111,102,32,116,104,101,32,112,114,111,116,111,99,111,108,32,97,116,32,105,110,100,101,120,32,34,32,43,32,96,36,123,105,125,32,101,120,99,101,101,100,115,32,116,104,101,32,109,97,120,105,109,117,109,32,108,101,110,103,116,104,46,96,44,32,34,60,61,32,50,53,53,34,44,32,108,101,110,44,32,33,48,41,59,10,32,32,32,32,114,101,116,117,114,110,32,108,101,110,115,91,105,93,32,61,32,108,101,110,44,32,112,32,43,32,49,32,43,32,108,101,110,59,10,32,32,125,44,32,48,41,41,59,10,32,32,108,101,116,32,111,102,102,115,101,116,32,61,32,48,59,10,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,44,32,99,32,61,32,112,114,111,116,111,99,111,108,115,46,108,101,110,103,116,104,59,105,32,60,32,99,59,32,105,43,43,41,10,32,32,32,32,98,117,102,102,91,111,102,102,115,101,116,43,43,93,32,61,32,108,101,110,115,91,105,93,44,32,98,117,102,102,46,119,114,105,116,101,40,112,114,111,116,111,99,111,108,115,91,105,93,44,32,111,102,102,115,101,116,41,44,32,111,102,102,115,101,116,32,43,61,32,108,101,110,115,91,105,93,59,10,32,32,114,101,116,117,114,110,32,98,117,102,102,59,10,125,44,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,102,117,110,99,116,105,111,110,40,112,114,111,116,111,99,111,108,115,44,32,111,117,116,41,32,123,10,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,99,111,110,118,101,114,116,80,114,111,116,111,99,111,108,115,40,112,114,111,116,111,99,111,108,115,41,59,10,32,32,101,108,115,101,32,105,102,32,40,105,115,84,121,112,101,100,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,112,114,111,116,111,99,111,108,115,41,59,10,32,32,101,108,115,101,32,105,102,32,40,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,112,114,111,116,111,99,111,108,115,46,98,117,102,102,101,114,46,115,108,105,99,101,40,112,114,111,116,111,99,111,108,115,46,98,121,116,101,79,102,102,115,101,116,44,32,112,114,111,116,111,99,111,108,115,46,98,121,116,101,79,102,102,115,101,116,32,43,32,112,114,111,116,111,99,111,108,115,46,98,121,116,101,76,101,110,103,116,104,41,41,59,10,32,32,101,108,115,101,32,105,102,32,40,66,117,102,102,101,114,46,105,115,66,117,102,102,101,114,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,112,114,111,116,111,99,111,108,115,59,10,125,44,32,36,44,32,123,32,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,44,32,105,115,84,121,112,101,100,65,114,114,97,121,32,125,32,61,32,64,114,101,113,117,105,114,101,78,97,116,105,118,101,77,111,100,117,108,101,40,34,110,111,100,101,58,117,116,105,108,47,116,121,112,101,115,34,41,44,32,110,101,116,32,61,32,64,103,101,116,73,110,116,101,114,110,97,108,70,105,101,108,100,40,64,105,110,116,101,114,110,97,108,77,111,100,117,108,101,82,101,103,105,115,116,114,121,44,32,50,53,41,32,124,124,32,64,99,114,101,97,116,101,73,110,116,101,114,110,97,108,77,111,100,117,108,101,66,121,73,100,40,50,53,41,44,32,123,32,83,101,114,118,101,114,58,32,78,101,116,83,101,114,118,101,114,44,32,91,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,116,101,114,110,97,108,58,58,34,41,93,58,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,125,32,61,32,110,101,116,44,32,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,32,61,32,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,110,101,116,115,111,99,107,101,116,105,110,116,101,114,110,97,108,58,58,34,41,44,32,123,32,114,111,111,116,67,101,114,116,105,102,105,99,97,116,101,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,32,125,32,61,32,103,108,111,98,97,108,84,104,105,115,91,103,108,111,98,97,108,84,104,105,115,46,83,121,109,98,111,108,46,102,111,114,40,39,66,117,110,46,108,97,122,121,39,41,93,40,34,105,110,116,101,114,110,97,108,47,116,108,115,34,41,44,32,83,121,109,98,111,108,82,101,112,108,97,99,101,32,61,32,83,121,109,98,111,108,46,114,101,112,108,97,99,101,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,83,121,109,98,111,108,82,101,112,108,97,99,101,93,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,46,101,120,101,99,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,116,97,114,116,115,87,105,116,104,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,112,108,105,116,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,116,114,105,110,103,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,69,110,100,115,87,105,116,104,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,101,110,100,115,87,105,116,104,44,32,83,116,114,105,110,103,70,114,111,109,67,104,97,114,67,111,100,101,32,61,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,67,104,97,114,67,111,100,101,65,116,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,99,104,97,114,67,111,100,101,65,116,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,74,111,105,110,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,70,111,114,69,97,99,104,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,111,109,101,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,82,101,100,117,99,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,114,101,100,117,99,101,44,32,106,115,111,110,83,116,114,105,110,103,80,97,116,116,101,114,110,32,61,32,47,94,34,40,63,58,91,94,34,92,92,92,117,48,48,48,48,45,92,117,48,48,49,102,93,124,92,92,40,63,58,91,34,92,92,47,98,102,110,114,116,93,124,117,91,48,45,57,97,45,102,65,45,70,93,123,52,125,41,41,42,34,47,44,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,99,108,97,115,115,32,83,101,99,117,114,101,67,111,110,116,101,120,116,50,32,123,10,32,32,99,111,110,116,101,120,116,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,120,116,32,61,32,123,125,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,32,32,108,101,116,32,107,101,121,32,61,32,111,112,116,105,111,110,115,46,107,101,121,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,107,101,121,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,107,101,121,32,61,32,107,101,121,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,101,114,116,32,61,32,111,112,116,105,111,110,115,46,99,101,114,116,59,10,32,32,32,32,32,32,105,102,32,40,99,101,114,116,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,101,114,116,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,101,114,116,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,101,114,116,32,61,32,99,101,114,116,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,97,32,61,32,111,112,116,105,111,110,115,46,99,97,59,10,32,32,32,32,32,32,105,102,32,40,99,97,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,97,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,97,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,32,61,32,99,97,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,112,97,115,115,112,104,114,97,115,101,32,61,32,111,112,116,105,111,110,115,46,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,105,102,32,40,112,97,115,115,112,104,114,97,115,101,32,38,38,32,116,121,112,101,111,102,32,112,97,115,115,112,104,114,97,115,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,112,97,115,115,112,104,114,97,115,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,32,61,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,114,118,101,114,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,105,102,32,40,115,101,114,118,101,114,110,97,109,101,32,38,38,32,116,121,112,101,111,102,32,115,101,114,118,101,114,110,97,109,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,114,118,101,114,110,97,109,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,124,124,32,48,59,10,32,32,32,32,32,32,105,102,32,40,115,101,99,117,114,101,79,112,116,105,111,110,115,32,38,38,32,116,121,112,101,111,102,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,33,61,61,32,34,110,117,109,98,101,114,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,99,117,114,101,79,112,116,105,111,110,115,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,110,117,109,98,101,114,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,10,32,32,125,10,125,44,32,98,117,110,116,108,115,32,61,32,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,116,108,115,58,58,34,41,44,32,83,111,99,107,101,116,67,108,97,115,115,44,32,84,76,83,83,111,99,107,101,116,32,61,32,102,117,110,99,116,105,111,110,40,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,41,32,123,10,32,32,114,101,116,117,114,110,32,83,111,99,107,101,116,67,108,97,115,115,32,61,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,44,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,83,111,99,107,101,116,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,44,32,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,44,32,123,10,32,32,32,32,118,97,108,117,101,58,32,34,84,76,83,83,111,99,107,101,116,34,44,10,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,33,49,10,32,32,125,41,44,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,102,117,110,99,116,105,111,110,32,83,111,99,107,101,116,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,40,111,112,116,105,111,110,115,41,59,10,32,32,125,44,32,83,121,109,98,111,108,46,104,97,115,73,110,115,116,97,110,99,101,44,32,123,10,32,32,32,32,118,97,108,117,101,40,105,110,115,116,97,110,99,101,41,32,123,10,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,59,10,32,32,32,32,125,10,32,32,125,41,59,10,125,40,99,108,97,115,115,32,84,76,83,83,111,99,107,101,116,50,32,101,120,116,101,110,100,115,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,123,10,32,32,35,115,101,99,117,114,101,67,111,110,116,101,120,116,59,10,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,59,10,32,32,35,115,111,99,107,101,116,59,10,32,32,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,59,10,32,32,35,115,101,115,115,105,111,110,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,115,111,99,107,101,116,44,32,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,115,117,112,101,114,40,115,111,99,107,101,116,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,63,32,111,112,116,105,111,110,115,32,58,32,111,112,116,105,111,110,115,32,124,124,32,115,111,99,107,101,116,41,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,32,124,124,32,115,111,99,107,101,116,32,124,124,32,123,125,44,32,116,121,112,101,111,102,32,111,112,116,105,111,110,115,32,61,61,61,32,34,111,98,106,101,99,116,34,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,111,112,116,105,111,110,115,59,10,32,32,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,116,104,105,115,41,59,10,32,32,32,32,32,32,105,102,32,40,115,111,99,107,101,116,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,35,115,111,99,107,101,116,32,61,32,115,111,99,107,101,116,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,35,115,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,67,111,110,116,101,120,116,32,124,124,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,44,32,116,104,105,115,46,97,117,116,104,111,114,105,122,101,100,32,61,32,33,49,44,32,116,104,105,115,46,115,101,99,117,114,101,67,111,110,110,101,99,116,105,110,103,32,61,32,33,48,44,32,116,104,105,115,46,95,115,101,99,117,114,101,69,115,116,97,98,108,105,115,104,101,100,32,61,32,33,49,44,32,116,104,105,115,46,95,115,101,99,117,114,101,80,101,110,100,105,110,103,32,61,32,33,48,44,32,116,104,105,115,46,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,61,32,111,112,116,105,111,110,115,46,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,124,124,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,32,116,104,105,115,46,35,115,101,115,115,105,111,110,32,61,32,111,112,116,105,111,110,115,46,115,101,115,115,105,111,110,32,124,124,32,110,117,108,108,59,10,32,32,125,10,32,32,95,115,101,99,117,114,101,69,115,116,97,98,108,105,115,104,101,100,32,61,32,33,49,59,10,32,32,95,115,101,99,117,114,101,80,101,110,100,105,110,103,32,61,32,33,48,59,10,32,32,95,110,101,119,83,101,115,115,105,111,110,80,101,110,100,105,110,103,59,10,32,32,95,99,111,110,116,114,111,108,82,101,108,101,97,115,101,100,59,10,32,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,110,103,32,61,32,33,49,59,10,32,32,95,83,78,73,67,97,108,108,98,97,99,107,59,10,32,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,97,117,116,104,111,114,105,122,101,100,32,61,32,33,49,59,10,32,32,97,117,116,104,111,114,105,122,97,116,105,111,110,69,114,114,111,114,59,10,32,32,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,32,61,32,33,49,59,10,32,32,101,110,99,114,121,112,116,101,100,32,61,32,33,48,59,10,32,32,95,115,116,97,114,116,40,41,32,123,10,32,32,32,32,116,104,105,115,46,99,111,110,110,101,99,116,40,41,59,10,32,32,125,10,32,32,103,101,116,83,101,115,115,105,111,110,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,83,101,115,115,105,111,110,40,41,59,10,32,32,125,10,32,32,103,101,116,69,112,104,101,109,101,114,97,108,75,101,121,73,110,102,111,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,69,112,104,101,109,101,114,97,108,75,101,121,73,110,102,111,40,41,59,10,32,32,125,10,32,32,103,101,116,67,105,112,104,101,114,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,67,105,112,104,101,114,40,41,59,10,32,32,125,10,32,32,103,101,116,83,104,97,114,101,100,83,105,103,97,108,103,115,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,83,104,97,114,101,100,83,105,103,97,108,103,115,40,41,59,10,32,32,125,10,32,32,103,101,116,80,114,111,116,111,99,111,108,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,86,101,114,115,105,111,110,40,41,59,10,32,32,125,10,32,32,103,101,116,70,105,110,105,115,104,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,70,105,110,105,115,104,101,100,77,101,115,115,97,103,101,40,41,32,124,124,32,118,111,105,100,32,48,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,70,105,110,105,115,104,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,80,101,101,114,70,105,110,105,115,104,101,100,77,101,115,115,97,103,101,40,41,32,124,124,32,118,111,105,100,32,48,59,10,32,32,125,10,32,32,105,115,83,101,115,115,105,111,110,82,101,117,115,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,33,33,116,104,105,115,46,35,115,101,115,115,105,111,110,59,10,32,32,125,10,32,32,114,101,110,101,103,111,116,105,97,116,101,40,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,82,69,78,69,71,79,84,73,65,84,73,79,78,95,68,73,83,65,66,76,69,68,58,32,84,76,83,32,115,101,115,115,105,111,110,32,114,101,110,101,103,111,116,105,97,116,105,111,110,32,100,105,115,97,98,108,101,100,32,102,111,114,32,116,104,105,115,32,115,111,99,107,101,116,34,41,59,10,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,82,69,78,69,71,79,84,73,65,84,73,79,78,95,68,73,83,65,66,76,69,68,34,44,32,101,114,114,111,114,59,10,32,32,32,32,125,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,100,105,115,97,98,108,101,82,101,110,101,103,111,116,105,97,116,105,111,110,40,41,32,123,10,32,32,32,32,116,104,105,115,46,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,32,61,32,33,48,59,10,32,32,125,10,32,32,103,101,116,84,76,83,84,105,99,107,101,116,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,84,105,99,107,101,116,40,41,59,10,32,32,125,10,32,32,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,44,32,99,111,110,116,101,120,116,41,32,123,10,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,44,32,99,111,110,116,101,120,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,41,59,10,32,32,125,10,32,32,115,101,116,77,97,120,83,101,110,100,70,114,97,103,109,101,110,116,40,115,105,122,101,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,77,97,120,83,101,110,100,70,114,97,103,109,101,110,116,40,115,105,122,101,41,32,124,124,32,33,49,59,10,32,32,125,10,32,32,101,110,97,98,108,101,84,114,97,99,101,40,41,32,123,10,32,32,125,10,32,32,115,101,116,83,101,114,118,101,114,110,97,109,101,40,110,97,109,101,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,114,118,101,114,41,32,123,10,32,32,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,83,78,73,95,70,82,79,77,95,83,69,82,86,69,82,58,32,67,97,110,110,111,116,32,105,115,115,117,101,32,83,78,73,32,102,114,111,109,32,97,32,84,76,83,32,115,101,114,118,101,114,45,115,105,100,101,32,115,111,99,107,101,116,34,41,59,10,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,83,78,73,95,70,82,79,77,95,83,69,82,86,69,82,34,44,32,101,114,114,111,114,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,110,97,109,101,44,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,83,101,114,118,101,114,110,97,109,101,40,110,97,109,101,41,59,10,32,32,125,10,32,32,115,101,116,83,101,115,115,105,111,110,40,115,101,115,115,105,111,110,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,35,115,101,115,115,105,111,110,32,61,32,115,101,115,115,105,111,110,44,32,116,121,112,101,111,102,32,115,101,115,115,105,111,110,32,61,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,115,101,115,115,105,111,110,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,115,101,115,115,105,111,110,44,32,34,108,97,116,105,110,49,34,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,83,101,115,115,105,111,110,40,115,101,115,115,105,111,110,41,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,97,98,98,114,101,118,105,97,116,101,100,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,101,114,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,49,32,63,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,41,32,58,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,97,98,98,114,101,118,105,97,116,101,100,41,59,10,32,32,32,32,105,102,32,40,99,101,114,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,101,114,116,41,59,10,32,32,125,10,32,32,103,101,116,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,101,114,116,32,61,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,67,101,114,116,105,102,105,99,97,116,101,40,41,59,10,32,32,32,32,105,102,32,40,99,101,114,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,101,114,116,41,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,88,53,48,57,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,103,101,116,88,53,48,57,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,103,101,116,32,97,108,112,110,80,114,111,116,111,99,111,108,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,97,108,112,110,80,114,111,116,111,99,111,108,59,10,32,32,125,10,32,32,91,98,117,110,116,108,115,93,40,112,111,114,116,44,32,104,111,115,116,50,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,123,10,32,32,32,32,32,32,115,111,99,107,101,116,58,32,116,104,105,115,46,35,115,111,99,107,101,116,44,10,32,32,32,32,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,58,32,116,104,105,115,46,65,76,80,78,80,114,111,116,111,99,111,108,115,44,10,32,32,32,32,32,32,115,101,114,118,101,114,78,97,109,101,58,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,124,124,32,104,111,115,116,50,32,124,124,32,34,108,111,99,97,108,104,111,115,116,34,44,10,32,32,32,32,32,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,58,32,116,104,105,115,46,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,10,32,32,32,32,32,32,115,101,115,115,105,111,110,58,32,116,104,105,115,46,35,115,101,115,115,105,111,110,44,10,32,32,32,32,32,32,46,46,46,116,104,105,115,46,35,115,101,99,117,114,101,67,111,110,116,101,120,116,10,32,32,32,32,125,59,10,32,32,125,10,125,41,59,10,10,99,108,97,115,115,32,83,101,114,118,101,114,32,101,120,116,101,110,100,115,32,78,101,116,83,101,114,118,101,114,32,123,10,32,32,107,101,121,59,10,32,32,99,101,114,116,59,10,32,32,99,97,59,10,32,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,59,10,32,32,95,114,101,113,117,101,115,116,67,101,114,116,59,10,32,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,111,112,116,105,111,110,115,44,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,32,123,10,32,32,32,32,115,117,112,101,114,40,111,112,116,105,111,110,115,44,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,59,10,32,32,32,32,116,104,105,115,46,115,101,116,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,32,32,125,10,32,32,115,101,116,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,41,10,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,99,111,110,116,101,120,116,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,111,112,116,105,111,110,115,59,10,32,32,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,116,104,105,115,41,59,10,32,32,32,32,32,32,108,101,116,32,107,101,121,32,61,32,111,112,116,105,111,110,115,46,107,101,121,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,107,101,121,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,107,101,121,32,61,32,107,101,121,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,101,114,116,32,61,32,111,112,116,105,111,110,115,46,99,101,114,116,59,10,32,32,32,32,32,32,105,102,32,40,99,101,114,116,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,101,114,116,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,101,114,116,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,101,114,116,32,61,32,99,101,114,116,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,97,32,61,32,111,112,116,105,111,110,115,46,99,97,59,10,32,32,32,32,32,32,105,102,32,40,99,97,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,97,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,97,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,32,61,32,99,97,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,112,97,115,115,112,104,114,97,115,101,32,61,32,111,112,116,105,111,110,115,46,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,105,102,32,40,112,97,115,115,112,104,114,97,115,101,32,38,38,32,116,121,112,101,111,102,32,112,97,115,115,112,104,114,97,115,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,112,97,115,115,112,104,114,97,115,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,32,61,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,114,118,101,114,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,105,102,32,40,115,101,114,118,101,114,110,97,109,101,32,38,38,32,116,121,112,101,111,102,32,115,101,114,118,101,114,110,97,109,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,114,118,101,114,110,97,109,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,124,124,32,48,59,10,32,32,32,32,32,32,105,102,32,40,115,101,99,117,114,101,79,112,116,105,111,110,115,32,38,38,32,116,121,112,101,111,102,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,33,61,61,32,34,110,117,109,98,101,114,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,99,117,114,101,79,112,116,105,111,110,115,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,110,117,109,98,101,114,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,32,32,32,32,99,111,110,115,116,32,114,101,113,117,101,115,116,67,101,114,116,32,61,32,111,112,116,105,111,110,115,46,114,101,113,117,101,115,116,67,101,114,116,32,124,124,32,33,49,59,10,32,32,32,32,32,32,105,102,32,40,114,101,113,117,101,115,116,67,101,114,116,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,32,61,32,114,101,113,117,101,115,116,67,101,114,116,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,32,61,32,118,111,105,100,32,48,59,10,32,32,32,32,32,32,99,111,110,115,116,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,111,112,116,105,111,110,115,46,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,124,124,32,33,49,59,10,32,32,32,32,32,32,105,102,32,40,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,118,111,105,100,32,48,59,10,32,32,32,32,125,10,32,32,125,10,32,32,103,101,116,84,105,99,107,101,116,75,101,121,115,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,115,101,116,84,105,99,107,101,116,75,101,121,115,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,91,98,117,110,116,108,115,93,40,112,111,114,116,44,32,104,111,115,116,50,44,32,105,115,67,108,105,101,110,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,91,10,32,32,32,32,32,32,123,10,32,32,32,32,32,32,32,32,115,101,114,118,101,114,78,97,109,101,58,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,124,124,32,104,111,115,116,50,32,124,124,32,34,108,111,99,97,108,104,111,115,116,34,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,46,107,101,121,44,10,32,32,32,32,32,32,32,32,99,101,114,116,58,32,116,104,105,115,46,99,101,114,116,44,10,32,32,32,32,32,32,32,32,99,97,58,32,116,104,105,115,46,99,97,44,10,32,32,32,32,32,32,32,32,112,97,115,115,112,104,114,97,115,101,58,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,44,10,32,32,32,32,32,32,32,32,115,101,99,117,114,101,79,112,116,105,111,110,115,58,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,44,10,32,32,32,32,32,32,32,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,58,32,105,115,67,108,105,101,110,116,32,63,32,33,49,32,58,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,44,10,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,67,101,114,116,58,32,105,115,67,108,105,101,110,116,32,63,32,33,49,32,58,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,44,10,32,32,32,32,32,32,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,58,32,116,104,105,115,46,65,76,80,78,80,114,111,116,111,99,111,108,115,10,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,83,111,99,107,101,116,67,108,97,115,115,10,32,32,32,32,93,59,10,32,32,125,10,125,10,118,97,114,32,67,76,73,69,78,84,95,82,69,78,69,71,95,76,73,77,73,84,32,61,32,51,44,32,67,76,73,69,78,84,95,82,69,78,69,71,95,87,73,78,68,79,87,32,61,32,54,48,48,44,32,68,69,70,65,85,76,84,95,69,67,68,72,95,67,85,82,86,69,32,61,32,34,97,117,116,111,34,44,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,32,61,32,34,68,72,69,45,82,83,65,45,65,69,83,50,53,54,45,71,67,77,45,83,72,65,51,56,52,58,68,72,69,45,82,83,65,45,65,69,83,49,50,56,45,71,67,77,45,83,72,65,50,53,54,58,69,67,68,72,69,45,82,83,65,45,65,69,83,50,53,54,45,71,67,77,45,83,72,65,51,56,52,58,69,67,68,72,69,45,82,83,65,45,65,69,83,49,50,56,45,71,67,77,45,83,72,65,50,53,54,34,44,32,68,69,70,65,85,76,84,95,77,73,78,95,86,69,82,83,73,79,78,32,61,32,34,84,76,83,118,49,46,50,34,44,32,68,69,70,65,85,76,84,95,77,65,88,95,86,69,82,83,73,79,78,32,61,32,34,84,76,83,118,49,46,51,34,44,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,32,61,32,40,112,111,114,116,44,32,104,111,115,116,50,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,32,61,62,32,123,10,32,32,105,102,32,40,116,121,112,101,111,102,32,112,111,114,116,32,61,61,61,32,34,111,98,106,101,99,116,34,41,32,123,10,32,32,32,32,112,111,114,116,46,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,59,10,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,112,111,114,116,59,10,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,112,111,114,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,84,76,83,83,111,99,107,101,116,40,112,111,114,116,41,46,99,111,110,110,101,99,116,40,112,111,114,116,44,32,104,111,115,116,50,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,110,101,119,32,84,76,83,83,111,99,107,101,116,40,41,46,99,111,110,110,101,99,116,40,112,111,114,116,44,32,104,111,115,116,50,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,59,10,125,44,32,99,111,110,110,101,99,116,32,61,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,59,10,36,32,61,32,123,10,32,32,67,76,73,69,78,84,95,82,69,78,69,71,95,76,73,77,73,84,44,10,32,32,67,76,73,69,78,84,95,82,69,78,69,71,95,87,73,78,68,79,87,44,10,32,32,99,111,110,110,101,99,116,44,10,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,44,10,32,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,44,10,32,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,44,10,32,32,99,114,101,97,116,101,83,101,114,118,101,114,44,10,32,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,44,10,32,32,68,69,70,65,85,76,84,95,69,67,68,72,95,67,85,82,86,69,44,10,32,32,68,69,70,65,85,76,84,95,77,65,88,95,86,69,82,83,73,79,78,44,10,32,32,68,69,70,65,85,76,84,95,77,73,78,95,86,69,82,83,73,79,78,44,10,32,32,103,101,116,67,105,112,104,101,114,115,44,10,32,32,112,97,114,115,101,67,101,114,116,83,116,114,105,110,103,44,10,32,32,83,101,99,117,114,101,67,111,110,116,101,120,116,44,10,32,32,83,101,114,118,101,114,44,10,32,32,84,76,83,83,111,99,107,101,116,44,10,32,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,10,32,32,114,111,111,116,67,101,114,116,105,102,105,99,97,116,101,115,10,125,59,10,114,101,116,117,114,110,32,36,125,41,10,10,0}; +static constexpr const char NodeTLSCodeBytes[18529] = {40,102,117,110,99,116,105,111,110,32,40,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,47,47,32,115,114,99,47,106,115,47,111,117,116,47,116,109,112,47,110,111,100,101,47,116,108,115,46,116,115,10,118,97,114,32,112,97,114,115,101,67,101,114,116,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,10,32,32,116,104,114,111,119,78,111,116,73,109,112,108,101,109,101,110,116,101,100,40,34,78,111,116,32,105,109,112,108,101,109,101,110,116,101,100,34,41,59,10,125,44,32,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,32,61,32,102,117,110,99,116,105,111,110,40,111,98,106,41,32,123,10,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,32,61,61,61,32,34,115,116,114,105,110,103,34,32,124,124,32,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,41,32,124,124,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,32,124,124,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,66,108,111,98,41,10,32,32,32,32,114,101,116,117,114,110,32,33,48,59,10,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,98,106,41,41,32,123,10,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,105,32,60,32,111,98,106,46,108,101,110,103,116,104,59,32,105,43,43,41,10,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,32,33,61,61,32,34,115,116,114,105,110,103,34,32,38,38,32,33,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,41,32,38,38,32,33,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,41,32,38,38,32,33,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,66,108,111,98,41,41,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,32,32,114,101,116,117,114,110,32,33,48,59,10,32,32,125,10,125,44,32,117,110,102,113,100,110,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,41,32,123,10,32,32,114,101,116,117,114,110,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,91,46,93,36,47,44,32,104,111,115,116,44,32,34,34,41,59,10,125,44,32,116,111,76,111,119,101,114,67,97,115,101,32,61,32,102,117,110,99,116,105,111,110,40,99,41,32,123,10,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,70,114,111,109,67,104,97,114,67,111,100,101,46,99,97,108,108,40,51,50,32,43,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,67,104,97,114,67,111,100,101,65,116,46,99,97,108,108,40,99,44,32,48,41,41,59,10,125,44,32,115,112,108,105,116,72,111,115,116,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,41,32,123,10,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,91,65,45,90,93,47,103,44,32,117,110,102,113,100,110,40,104,111,115,116,41,44,32,116,111,76,111,119,101,114,67,97,115,101,41,44,32,34,46,34,41,59,10,125,44,32,99,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,80,97,114,116,115,44,32,112,97,116,116,101,114,110,44,32,119,105,108,100,99,97,114,100,115,41,32,123,10,32,32,105,102,32,40,33,112,97,116,116,101,114,110,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,112,97,116,116,101,114,110,80,97,114,116,115,32,61,32,115,112,108,105,116,72,111,115,116,40,112,97,116,116,101,114,110,41,59,10,32,32,105,102,32,40,104,111,115,116,80,97,114,116,115,46,108,101,110,103,116,104,32,33,61,61,32,112,97,116,116,101,114,110,80,97,114,116,115,46,108,101,110,103,116,104,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,112,97,116,116,101,114,110,80,97,114,116,115,44,32,34,34,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,105,115,66,97,100,32,61,32,40,115,41,32,61,62,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,46,99,97,108,108,40,47,91,94,92,117,48,48,50,49,45,92,117,48,48,55,70,93,47,117,44,32,115,41,32,33,61,61,32,110,117,108,108,59,10,32,32,105,102,32,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,112,97,116,116,101,114,110,80,97,114,116,115,44,32,105,115,66,97,100,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,104,111,115,116,80,97,114,116,115,46,108,101,110,103,116,104,32,45,32,49,59,105,32,62,32,48,59,32,105,32,45,61,32,49,41,10,32,32,32,32,105,102,32,40,104,111,115,116,80,97,114,116,115,91,105,93,32,33,61,61,32,112,97,116,116,101,114,110,80,97,114,116,115,91,105,93,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,104,111,115,116,83,117,98,100,111,109,97,105,110,32,61,32,104,111,115,116,80,97,114,116,115,91,48,93,44,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,32,61,32,112,97,116,116,101,114,110,80,97,114,116,115,91,48,93,44,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,44,32,34,42,34,41,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,124,124,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,44,32,34,120,110,45,45,34,41,41,10,32,32,32,32,114,101,116,117,114,110,32,104,111,115,116,83,117,98,100,111,109,97,105,110,32,61,61,61,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,59,10,32,32,105,102,32,40,33,119,105,108,100,99,97,114,100,115,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,46,108,101,110,103,116,104,32,62,32,50,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,80,97,114,116,115,46,108,101,110,103,116,104,32,60,61,32,50,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,123,32,48,58,32,112,114,101,102,105,120,44,32,49,58,32,115,117,102,102,105,120,32,125,32,61,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,59,10,32,32,105,102,32,40,112,114,101,102,105,120,46,108,101,110,103,116,104,32,43,32,115,117,102,102,105,120,46,108,101,110,103,116,104,32,62,32,104,111,115,116,83,117,98,100,111,109,97,105,110,46,108,101,110,103,116,104,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,33,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,104,111,115,116,83,117,98,100,111,109,97,105,110,44,32,112,114,101,102,105,120,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,33,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,69,110,100,115,87,105,116,104,46,99,97,108,108,40,104,111,115,116,83,117,98,100,111,109,97,105,110,44,32,115,117,102,102,105,120,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,114,101,116,117,114,110,32,33,48,59,10,125,44,32,115,112,108,105,116,69,115,99,97,112,101,100,65,108,116,78,97,109,101,115,32,61,32,102,117,110,99,116,105,111,110,40,97,108,116,78,97,109,101,115,41,32,123,10,32,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,91,93,59,10,32,32,108,101,116,32,99,117,114,114,101,110,116,84,111,107,101,110,32,61,32,34,34,44,32,111,102,102,115,101,116,32,61,32,48,59,10,32,32,119,104,105,108,101,32,40,111,102,102,115,101,116,32,33,61,61,32,97,108,116,78,97,109,101,115,46,108,101,110,103,116,104,41,32,123,10,32,32,32,32,99,111,110,115,116,32,110,101,120,116,83,101,112,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,34,44,32,34,44,32,111,102,102,115,101,116,41,44,32,110,101,120,116,81,117,111,116,101,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,39,34,39,44,32,111,102,102,115,101,116,41,59,10,32,32,32,32,105,102,32,40,110,101,120,116,81,117,111,116,101,32,33,61,61,32,45,49,32,38,38,32,40,110,101,120,116,83,101,112,32,61,61,61,32,45,49,32,124,124,32,110,101,120,116,81,117,111,116,101,32,60,32,110,101,120,116,83,101,112,41,41,32,123,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,44,32,110,101,120,116,81,117,111,116,101,41,59,10,32,32,32,32,32,32,99,111,110,115,116,32,109,97,116,99,104,32,61,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,46,99,97,108,108,40,106,115,111,110,83,116,114,105,110,103,80,97,116,116,101,114,110,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,110,101,120,116,81,117,111,116,101,41,41,59,10,32,32,32,32,32,32,105,102,32,40,33,109,97,116,99,104,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,83,121,110,116,97,120,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,70,79,82,77,65,84,58,32,73,110,118,97,108,105,100,32,115,117,98,106,101,99,116,32,97,108,116,101,114,110,97,116,105,118,101,32,110,97,109,101,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,70,79,82,77,65,84,44,32,101,114,114,111,114,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,74,83,79,78,46,112,97,114,115,101,40,109,97,116,99,104,91,48,93,41,44,32,111,102,102,115,101,116,32,61,32,110,101,120,116,81,117,111,116,101,32,43,32,109,97,116,99,104,91,48,93,46,108,101,110,103,116,104,59,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,120,116,83,101,112,32,33,61,61,32,45,49,41,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,44,32,110,101,120,116,83,101,112,41,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,114,101,115,117,108,116,44,32,99,117,114,114,101,110,116,84,111,107,101,110,41,44,32,99,117,114,114,101,110,116,84,111,107,101,110,32,61,32,34,34,44,32,111,102,102,115,101,116,32,61,32,110,101,120,116,83,101,112,32,43,32,50,59,10,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,41,44,32,111,102,102,115,101,116,32,61,32,97,108,116,78,97,109,101,115,46,108,101,110,103,116,104,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,114,101,115,117,108,116,44,32,99,117,114,114,101,110,116,84,111,107,101,110,41,44,32,114,101,115,117,108,116,59,10,125,44,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,110,97,109,101,44,32,99,101,114,116,41,32,123,10,32,32,99,111,110,115,116,32,123,32,115,117,98,106,101,99,116,44,32,115,117,98,106,101,99,116,97,108,116,110,97,109,101,58,32,97,108,116,78,97,109,101,115,32,125,32,61,32,99,101,114,116,44,32,100,110,115,78,97,109,101,115,32,61,32,91,93,44,32,105,112,115,32,61,32,91,93,59,10,32,32,105,102,32,40,104,111,115,116,110,97,109,101,32,61,32,34,34,32,43,32,104,111,115,116,110,97,109,101,44,32,97,108,116,78,97,109,101,115,41,32,123,10,32,32,32,32,99,111,110,115,116,32,115,112,108,105,116,65,108,116,78,97,109,101,115,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,39,34,39,41,32,63,32,115,112,108,105,116,69,115,99,97,112,101,100,65,108,116,78,97,109,101,115,40,97,108,116,78,97,109,101,115,41,32,58,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,34,44,32,34,41,59,10,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,70,111,114,69,97,99,104,46,99,97,108,108,40,115,112,108,105,116,65,108,116,78,97,109,101,115,44,32,40,110,97,109,101,41,32,61,62,32,123,10,32,32,32,32,32,32,105,102,32,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,110,97,109,101,44,32,34,68,78,83,58,34,41,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,100,110,115,78,97,109,101,115,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,46,99,97,108,108,40,110,97,109,101,44,32,52,41,41,59,10,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,110,97,109,101,44,32,34,73,80,32,65,100,100,114,101,115,115,58,34,41,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,105,112,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,46,99,97,108,108,40,110,97,109,101,44,32,49,49,41,41,41,59,10,32,32,32,32,125,41,59,10,32,32,125,10,32,32,108,101,116,32,118,97,108,105,100,32,61,32,33,49,44,32,114,101,97,115,111,110,32,61,32,34,85,110,107,110,111,119,110,32,114,101,97,115,111,110,34,59,10,32,32,105,102,32,40,104,111,115,116,110,97,109,101,32,61,32,117,110,102,113,100,110,40,104,111,115,116,110,97,109,101,41,44,32,110,101,116,46,105,115,73,80,40,104,111,115,116,110,97,109,101,41,41,32,123,10,32,32,32,32,105,102,32,40,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,105,112,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,40,104,111,115,116,110,97,109,101,41,41,44,32,33,118,97,108,105,100,41,10,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,73,80,58,32,36,123,104,111,115,116,110,97,109,101,125,32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99,101,114,116,39,115,32,108,105,115,116,58,32,96,32,43,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,74,111,105,110,46,99,97,108,108,40,105,112,115,44,32,34,44,32,34,41,59,10,32,32,125,32,101,108,115,101,32,105,102,32,40,100,110,115,78,97,109,101,115,46,108,101,110,103,116,104,32,62,32,48,32,124,124,32,115,117,98,106,101,99,116,63,46,67,78,41,32,123,10,32,32,32,32,99,111,110,115,116,32,104,111,115,116,80,97,114,116,115,32,61,32,115,112,108,105,116,72,111,115,116,40,104,111,115,116,110,97,109,101,41,44,32,119,105,108,100,99,97,114,100,32,61,32,40,112,97,116,116,101,114,110,41,32,61,62,32,99,104,101,99,107,40,104,111,115,116,80,97,114,116,115,44,32,112,97,116,116,101,114,110,44,32,33,48,41,59,10,32,32,32,32,105,102,32,40,100,110,115,78,97,109,101,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,10,32,32,32,32,32,32,105,102,32,40,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,100,110,115,78,97,109,101,115,44,32,119,105,108,100,99,97,114,100,41,44,32,33,118,97,108,105,100,41,10,32,32,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,72,111,115,116,58,32,36,123,104,111,115,116,110,97,109,101,125,46,32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99,101,114,116,39,115,32,97,108,116,110,97,109,101,115,58,32,36,123,97,108,116,78,97,109,101,115,125,96,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,99,110,32,61,32,115,117,98,106,101,99,116,46,67,78,59,10,32,32,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,110,41,41,10,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,99,110,44,32,119,105,108,100,99,97,114,100,41,59,10,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,110,41,10,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,119,105,108,100,99,97,114,100,40,99,110,41,59,10,32,32,32,32,32,32,105,102,32,40,33,118,97,108,105,100,41,10,32,32,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,72,111,115,116,58,32,36,123,104,111,115,116,110,97,109,101,125,46,32,105,115,32,110,111,116,32,99,101,114,116,39,115,32,67,78,58,32,36,123,99,110,125,96,59,10,32,32,32,32,125,10,32,32,125,32,101,108,115,101,10,32,32,32,32,114,101,97,115,111,110,32,61,32,34,67,101,114,116,32,100,111,101,115,32,110,111,116,32,99,111,110,116,97,105,110,32,97,32,68,78,83,32,110,97,109,101,34,59,10,32,32,105,102,32,40,33,118,97,108,105,100,41,32,123,10,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,96,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,73,78,86,65,76,73,68,58,32,72,111,115,116,110,97,109,101,47,73,80,32,100,111,101,115,32,110,111,116,32,109,97,116,99,104,32,99,101,114,116,105,102,105,99,97,116,101,39,115,32,97,108,116,110,97,109,101,115,58,32,36,123,114,101,97,115,111,110,125,96,41,59,10,32,32,32,32,114,101,116,117,114,110,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,73,78,86,65,76,73,68,34,44,32,101,114,114,111,114,46,114,101,97,115,111,110,32,61,32,114,101,97,115,111,110,44,32,101,114,114,111,114,46,104,111,115,116,32,61,32,104,111,115,116,110,97,109,101,44,32,101,114,114,111,114,46,99,101,114,116,32,61,32,99,101,114,116,44,32,101,114,114,111,114,59,10,32,32,125,10,125,44,32,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,125,44,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,125,44,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,99,41,32,123,10,32,32,105,102,32,40,33,99,41,10,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,10,32,32,105,102,32,40,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,33,61,32,110,117,108,108,32,38,38,32,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,33,61,61,32,99,41,10,32,32,32,32,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,61,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,41,59,10,32,32,105,102,32,40,99,46,105,110,102,111,65,99,99,101,115,115,32,33,61,32,110,117,108,108,41,32,123,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,32,61,32,99,46,105,110,102,111,65,99,99,101,115,115,59,10,32,32,32,32,99,46,105,110,102,111,65,99,99,101,115,115,32,61,32,123,32,95,95,112,114,111,116,111,95,95,58,32,110,117,108,108,32,125,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,40,91,94,92,110,58,93,42,41,58,40,91,94,92,110,93,42,41,40,63,58,92,110,124,36,41,47,103,44,32,105,110,102,111,44,32,40,97,108,108,44,32,107,101,121,44,32,118,97,108,41,32,61,62,32,123,10,32,32,32,32,32,32,105,102,32,40,118,97,108,46,99,104,97,114,67,111,100,101,65,116,40,48,41,32,61,61,61,32,51,52,41,10,32,32,32,32,32,32,32,32,118,97,108,32,61,32,74,83,79,78,80,97,114,115,101,40,118,97,108,41,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,32,105,110,32,99,46,105,110,102,111,65,99,99,101,115,115,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,99,46,105,110,102,111,65,99,99,101,115,115,91,107,101,121,93,44,32,118,97,108,41,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,99,46,105,110,102,111,65,99,99,101,115,115,91,107,101,121,93,32,61,32,91,118,97,108,93,59,10,32,32,32,32,125,41,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,99,59,10,125,44,32,99,114,101,97,116,101,83,101,114,118,101,114,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,44,32,99,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,114,118,101,114,40,111,112,116,105,111,110,115,44,32,99,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,59,10,125,44,32,103,101,116,67,105,112,104,101,114,115,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,10,32,32,114,101,116,117,114,110,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,46,115,112,108,105,116,40,34,58,34,41,59,10,125,44,32,99,111,110,118,101,114,116,80,114,111,116,111,99,111,108,115,32,61,32,102,117,110,99,116,105,111,110,40,112,114,111,116,111,99,111,108,115,41,32,123,10,32,32,99,111,110,115,116,32,108,101,110,115,32,61,32,110,101,119,32,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,46,108,101,110,103,116,104,41,44,32,98,117,102,102,32,61,32,66,117,102,102,101,114,46,97,108,108,111,99,85,110,115,97,102,101,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,82,101,100,117,99,101,46,99,97,108,108,40,112,114,111,116,111,99,111,108,115,44,32,40,112,44,32,99,44,32,105,41,32,61,62,32,123,10,32,32,32,32,99,111,110,115,116,32,108,101,110,32,61,32,66,117,102,102,101,114,46,98,121,116,101,76,101,110,103,116,104,40,99,41,59,10,32,32,32,32,105,102,32,40,108,101,110,32,62,32,50,53,53,41,10,32,32,32,32,32,32,64,116,104,114,111,119,82,97,110,103,101,69,114,114,111,114,40,34,84,104,101,32,98,121,116,101,32,108,101,110,103,116,104,32,111,102,32,116,104,101,32,112,114,111,116,111,99,111,108,32,97,116,32,105,110,100,101,120,32,34,32,43,32,96,36,123,105,125,32,101,120,99,101,101,100,115,32,116,104,101,32,109,97,120,105,109,117,109,32,108,101,110,103,116,104,46,96,44,32,34,60,61,32,50,53,53,34,44,32,108,101,110,44,32,33,48,41,59,10,32,32,32,32,114,101,116,117,114,110,32,108,101,110,115,91,105,93,32,61,32,108,101,110,44,32,112,32,43,32,49,32,43,32,108,101,110,59,10,32,32,125,44,32,48,41,41,59,10,32,32,108,101,116,32,111,102,102,115,101,116,32,61,32,48,59,10,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,44,32,99,32,61,32,112,114,111,116,111,99,111,108,115,46,108,101,110,103,116,104,59,105,32,60,32,99,59,32,105,43,43,41,10,32,32,32,32,98,117,102,102,91,111,102,102,115,101,116,43,43,93,32,61,32,108,101,110,115,91,105,93,44,32,98,117,102,102,46,119,114,105,116,101,40,112,114,111,116,111,99,111,108,115,91,105,93,44,32,111,102,102,115,101,116,41,44,32,111,102,102,115,101,116,32,43,61,32,108,101,110,115,91,105,93,59,10,32,32,114,101,116,117,114,110,32,98,117,102,102,59,10,125,44,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,102,117,110,99,116,105,111,110,40,112,114,111,116,111,99,111,108,115,44,32,111,117,116,41,32,123,10,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,99,111,110,118,101,114,116,80,114,111,116,111,99,111,108,115,40,112,114,111,116,111,99,111,108,115,41,59,10,32,32,101,108,115,101,32,105,102,32,40,105,115,84,121,112,101,100,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,112,114,111,116,111,99,111,108,115,41,59,10,32,32,101,108,115,101,32,105,102,32,40,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,112,114,111,116,111,99,111,108,115,46,98,117,102,102,101,114,46,115,108,105,99,101,40,112,114,111,116,111,99,111,108,115,46,98,121,116,101,79,102,102,115,101,116,44,32,112,114,111,116,111,99,111,108,115,46,98,121,116,101,79,102,102,115,101,116,32,43,32,112,114,111,116,111,99,111,108,115,46,98,121,116,101,76,101,110,103,116,104,41,41,59,10,32,32,101,108,115,101,32,105,102,32,40,66,117,102,102,101,114,46,105,115,66,117,102,102,101,114,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,112,114,111,116,111,99,111,108,115,59,10,125,44,32,36,44,32,123,32,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,44,32,105,115,84,121,112,101,100,65,114,114,97,121,32,125,32,61,32,64,114,101,113,117,105,114,101,78,97,116,105,118,101,77,111,100,117,108,101,40,34,110,111,100,101,58,117,116,105,108,47,116,121,112,101,115,34,41,44,32,110,101,116,32,61,32,64,103,101,116,73,110,116,101,114,110,97,108,70,105,101,108,100,40,64,105,110,116,101,114,110,97,108,77,111,100,117,108,101,82,101,103,105,115,116,114,121,44,32,50,53,41,32,124,124,32,64,99,114,101,97,116,101,73,110,116,101,114,110,97,108,77,111,100,117,108,101,66,121,73,100,40,50,53,41,44,32,123,32,83,101,114,118,101,114,58,32,78,101,116,83,101,114,118,101,114,44,32,91,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,116,101,114,110,97,108,58,58,34,41,93,58,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,125,32,61,32,110,101,116,44,32,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,32,61,32,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,110,101,116,115,111,99,107,101,116,105,110,116,101,114,110,97,108,58,58,34,41,44,32,123,32,114,111,111,116,67,101,114,116,105,102,105,99,97,116,101,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,32,125,32,61,32,103,108,111,98,97,108,84,104,105,115,91,103,108,111,98,97,108,84,104,105,115,46,83,121,109,98,111,108,46,102,111,114,40,39,66,117,110,46,108,97,122,121,39,41,93,40,34,105,110,116,101,114,110,97,108,47,116,108,115,34,41,44,32,83,121,109,98,111,108,82,101,112,108,97,99,101,32,61,32,83,121,109,98,111,108,46,114,101,112,108,97,99,101,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,83,121,109,98,111,108,82,101,112,108,97,99,101,93,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,46,101,120,101,99,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,116,97,114,116,115,87,105,116,104,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,112,108,105,116,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,116,114,105,110,103,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,69,110,100,115,87,105,116,104,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,101,110,100,115,87,105,116,104,44,32,83,116,114,105,110,103,70,114,111,109,67,104,97,114,67,111,100,101,32,61,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,67,104,97,114,67,111,100,101,65,116,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,99,104,97,114,67,111,100,101,65,116,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,74,111,105,110,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,70,111,114,69,97,99,104,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,111,109,101,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,82,101,100,117,99,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,114,101,100,117,99,101,44,32,106,115,111,110,83,116,114,105,110,103,80,97,116,116,101,114,110,32,61,32,47,94,34,40,63,58,91,94,34,92,92,92,117,48,48,48,48,45,92,117,48,48,49,102,93,124,92,92,40,63,58,91,34,92,92,47,98,102,110,114,116,93,124,117,91,48,45,57,97,45,102,65,45,70,93,123,52,125,41,41,42,34,47,44,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,99,108,97,115,115,32,83,101,99,117,114,101,67,111,110,116,101,120,116,50,32,123,10,32,32,99,111,110,116,101,120,116,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,120,116,32,61,32,123,125,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,32,32,108,101,116,32,107,101,121,32,61,32,111,112,116,105,111,110,115,46,107,101,121,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,107,101,121,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,107,101,121,32,61,32,107,101,121,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,101,114,116,32,61,32,111,112,116,105,111,110,115,46,99,101,114,116,59,10,32,32,32,32,32,32,105,102,32,40,99,101,114,116,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,101,114,116,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,101,114,116,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,101,114,116,32,61,32,99,101,114,116,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,97,32,61,32,111,112,116,105,111,110,115,46,99,97,59,10,32,32,32,32,32,32,105,102,32,40,99,97,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,97,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,97,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,32,61,32,99,97,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,112,97,115,115,112,104,114,97,115,101,32,61,32,111,112,116,105,111,110,115,46,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,105,102,32,40,112,97,115,115,112,104,114,97,115,101,32,38,38,32,116,121,112,101,111,102,32,112,97,115,115,112,104,114,97,115,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,112,97,115,115,112,104,114,97,115,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,32,61,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,114,118,101,114,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,105,102,32,40,115,101,114,118,101,114,110,97,109,101,32,38,38,32,116,121,112,101,111,102,32,115,101,114,118,101,114,110,97,109,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,114,118,101,114,110,97,109,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,124,124,32,48,59,10,32,32,32,32,32,32,105,102,32,40,115,101,99,117,114,101,79,112,116,105,111,110,115,32,38,38,32,116,121,112,101,111,102,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,33,61,61,32,34,110,117,109,98,101,114,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,99,117,114,101,79,112,116,105,111,110,115,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,110,117,109,98,101,114,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,10,32,32,125,10,125,44,32,98,117,110,116,108,115,32,61,32,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,116,108,115,58,58,34,41,44,32,83,111,99,107,101,116,67,108,97,115,115,44,32,84,76,83,83,111,99,107,101,116,32,61,32,102,117,110,99,116,105,111,110,40,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,41,32,123,10,32,32,114,101,116,117,114,110,32,83,111,99,107,101,116,67,108,97,115,115,32,61,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,44,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,83,111,99,107,101,116,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,44,32,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,44,32,123,10,32,32,32,32,118,97,108,117,101,58,32,34,84,76,83,83,111,99,107,101,116,34,44,10,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,33,49,10,32,32,125,41,44,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,102,117,110,99,116,105,111,110,32,83,111,99,107,101,116,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,40,111,112,116,105,111,110,115,41,59,10,32,32,125,44,32,83,121,109,98,111,108,46,104,97,115,73,110,115,116,97,110,99,101,44,32,123,10,32,32,32,32,118,97,108,117,101,40,105,110,115,116,97,110,99,101,41,32,123,10,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,59,10,32,32,32,32,125,10,32,32,125,41,59,10,125,40,99,108,97,115,115,32,84,76,83,83,111,99,107,101,116,50,32,101,120,116,101,110,100,115,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,123,10,32,32,35,115,101,99,117,114,101,67,111,110,116,101,120,116,59,10,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,59,10,32,32,35,115,111,99,107,101,116,59,10,32,32,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,59,10,32,32,35,115,101,115,115,105,111,110,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,115,111,99,107,101,116,44,32,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,115,117,112,101,114,40,115,111,99,107,101,116,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,63,32,111,112,116,105,111,110,115,32,58,32,111,112,116,105,111,110,115,32,124,124,32,115,111,99,107,101,116,41,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,32,124,124,32,115,111,99,107,101,116,32,124,124,32,123,125,44,32,116,121,112,101,111,102,32,111,112,116,105,111,110,115,32,61,61,61,32,34,111,98,106,101,99,116,34,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,111,112,116,105,111,110,115,59,10,32,32,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,116,104,105,115,41,59,10,32,32,32,32,32,32,105,102,32,40,115,111,99,107,101,116,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,35,115,111,99,107,101,116,32,61,32,115,111,99,107,101,116,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,35,115,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,67,111,110,116,101,120,116,32,124,124,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,44,32,116,104,105,115,46,97,117,116,104,111,114,105,122,101,100,32,61,32,33,49,44,32,116,104,105,115,46,115,101,99,117,114,101,67,111,110,110,101,99,116,105,110,103,32,61,32,33,48,44,32,116,104,105,115,46,95,115,101,99,117,114,101,69,115,116,97,98,108,105,115,104,101,100,32,61,32,33,49,44,32,116,104,105,115,46,95,115,101,99,117,114,101,80,101,110,100,105,110,103,32,61,32,33,48,44,32,116,104,105,115,46,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,61,32,111,112,116,105,111,110,115,46,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,124,124,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,32,116,104,105,115,46,35,115,101,115,115,105,111,110,32,61,32,111,112,116,105,111,110,115,46,115,101,115,115,105,111,110,32,124,124,32,110,117,108,108,59,10,32,32,125,10,32,32,95,115,101,99,117,114,101,69,115,116,97,98,108,105,115,104,101,100,32,61,32,33,49,59,10,32,32,95,115,101,99,117,114,101,80,101,110,100,105,110,103,32,61,32,33,48,59,10,32,32,95,110,101,119,83,101,115,115,105,111,110,80,101,110,100,105,110,103,59,10,32,32,95,99,111,110,116,114,111,108,82,101,108,101,97,115,101,100,59,10,32,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,110,103,32,61,32,33,49,59,10,32,32,95,83,78,73,67,97,108,108,98,97,99,107,59,10,32,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,97,117,116,104,111,114,105,122,101,100,32,61,32,33,49,59,10,32,32,97,117,116,104,111,114,105,122,97,116,105,111,110,69,114,114,111,114,59,10,32,32,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,32,61,32,33,49,59,10,32,32,101,110,99,114,121,112,116,101,100,32,61,32,33,48,59,10,32,32,95,115,116,97,114,116,40,41,32,123,10,32,32,32,32,116,104,105,115,46,99,111,110,110,101,99,116,40,41,59,10,32,32,125,10,32,32,103,101,116,83,101,115,115,105,111,110,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,83,101,115,115,105,111,110,40,41,59,10,32,32,125,10,32,32,103,101,116,69,112,104,101,109,101,114,97,108,75,101,121,73,110,102,111,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,69,112,104,101,109,101,114,97,108,75,101,121,73,110,102,111,40,41,59,10,32,32,125,10,32,32,103,101,116,67,105,112,104,101,114,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,67,105,112,104,101,114,40,41,59,10,32,32,125,10,32,32,103,101,116,83,104,97,114,101,100,83,105,103,97,108,103,115,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,83,104,97,114,101,100,83,105,103,97,108,103,115,40,41,59,10,32,32,125,10,32,32,103,101,116,80,114,111,116,111,99,111,108,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,86,101,114,115,105,111,110,40,41,59,10,32,32,125,10,32,32,103,101,116,70,105,110,105,115,104,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,70,105,110,105,115,104,101,100,77,101,115,115,97,103,101,40,41,32,124,124,32,118,111,105,100,32,48,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,70,105,110,105,115,104,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,80,101,101,114,70,105,110,105,115,104,101,100,77,101,115,115,97,103,101,40,41,32,124,124,32,118,111,105,100,32,48,59,10,32,32,125,10,32,32,105,115,83,101,115,115,105,111,110,82,101,117,115,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,33,33,116,104,105,115,46,35,115,101,115,115,105,111,110,59,10,32,32,125,10,32,32,114,101,110,101,103,111,116,105,97,116,101,40,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,82,69,78,69,71,79,84,73,65,84,73,79,78,95,68,73,83,65,66,76,69,68,58,32,84,76,83,32,115,101,115,115,105,111,110,32,114,101,110,101,103,111,116,105,97,116,105,111,110,32,100,105,115,97,98,108,101,100,32,102,111,114,32,116,104,105,115,32,115,111,99,107,101,116,34,41,59,10,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,82,69,78,69,71,79,84,73,65,84,73,79,78,95,68,73,83,65,66,76,69,68,34,44,32,101,114,114,111,114,59,10,32,32,32,32,125,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,100,105,115,97,98,108,101,82,101,110,101,103,111,116,105,97,116,105,111,110,40,41,32,123,10,32,32,32,32,116,104,105,115,46,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,32,61,32,33,48,59,10,32,32,125,10,32,32,103,101,116,84,76,83,84,105,99,107,101,116,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,84,105,99,107,101,116,40,41,59,10,32,32,125,10,32,32,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,44,32,99,111,110,116,101,120,116,41,32,123,10,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,44,32,99,111,110,116,101,120,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,41,59,10,32,32,125,10,32,32,115,101,116,77,97,120,83,101,110,100,70,114,97,103,109,101,110,116,40,115,105,122,101,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,77,97,120,83,101,110,100,70,114,97,103,109,101,110,116,40,115,105,122,101,41,32,124,124,32,33,49,59,10,32,32,125,10,32,32,101,110,97,98,108,101,84,114,97,99,101,40,41,32,123,10,32,32,125,10,32,32,115,101,116,83,101,114,118,101,114,110,97,109,101,40,110,97,109,101,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,114,118,101,114,41,32,123,10,32,32,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,83,78,73,95,70,82,79,77,95,83,69,82,86,69,82,58,32,67,97,110,110,111,116,32,105,115,115,117,101,32,83,78,73,32,102,114,111,109,32,97,32,84,76,83,32,115,101,114,118,101,114,45,115,105,100,101,32,115,111,99,107,101,116,34,41,59,10,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,83,78,73,95,70,82,79,77,95,83,69,82,86,69,82,34,44,32,101,114,114,111,114,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,110,97,109,101,44,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,83,101,114,118,101,114,110,97,109,101,40,110,97,109,101,41,59,10,32,32,125,10,32,32,115,101,116,83,101,115,115,105,111,110,40,115,101,115,115,105,111,110,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,35,115,101,115,115,105,111,110,32,61,32,115,101,115,115,105,111,110,44,32,116,121,112,101,111,102,32,115,101,115,115,105,111,110,32,61,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,115,101,115,115,105,111,110,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,115,101,115,115,105,111,110,44,32,34,108,97,116,105,110,49,34,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,83,101,115,115,105,111,110,40,115,101,115,115,105,111,110,41,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,97,98,98,114,101,118,105,97,116,101,100,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,101,114,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,49,32,63,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,41,32,58,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,97,98,98,114,101,118,105,97,116,101,100,41,59,10,32,32,32,32,105,102,32,40,99,101,114,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,101,114,116,41,59,10,32,32,125,10,32,32,103,101,116,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,101,114,116,32,61,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,67,101,114,116,105,102,105,99,97,116,101,40,41,59,10,32,32,32,32,105,102,32,40,99,101,114,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,101,114,116,41,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,88,53,48,57,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,103,101,116,88,53,48,57,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,103,101,116,32,97,108,112,110,80,114,111,116,111,99,111,108,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,97,108,112,110,80,114,111,116,111,99,111,108,59,10,32,32,125,10,32,32,91,98,117,110,116,108,115,93,40,112,111,114,116,44,32,104,111,115,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,123,10,32,32,32,32,32,32,115,111,99,107,101,116,58,32,116,104,105,115,46,35,115,111,99,107,101,116,44,10,32,32,32,32,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,58,32,116,104,105,115,46,65,76,80,78,80,114,111,116,111,99,111,108,115,44,10,32,32,32,32,32,32,115,101,114,118,101,114,78,97,109,101,58,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,124,124,32,104,111,115,116,32,124,124,32,34,108,111,99,97,108,104,111,115,116,34,44,10,32,32,32,32,32,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,58,32,116,104,105,115,46,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,10,32,32,32,32,32,32,115,101,115,115,105,111,110,58,32,116,104,105,115,46,35,115,101,115,115,105,111,110,44,10,32,32,32,32,32,32,46,46,46,116,104,105,115,46,35,115,101,99,117,114,101,67,111,110,116,101,120,116,10,32,32,32,32,125,59,10,32,32,125,10,125,41,59,10,10,99,108,97,115,115,32,83,101,114,118,101,114,32,101,120,116,101,110,100,115,32,78,101,116,83,101,114,118,101,114,32,123,10,32,32,107,101,121,59,10,32,32,99,101,114,116,59,10,32,32,99,97,59,10,32,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,59,10,32,32,95,114,101,113,117,101,115,116,67,101,114,116,59,10,32,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,111,112,116,105,111,110,115,44,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,32,123,10,32,32,32,32,115,117,112,101,114,40,111,112,116,105,111,110,115,44,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,59,10,32,32,32,32,116,104,105,115,46,115,101,116,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,32,32,125,10,32,32,115,101,116,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,41,10,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,99,111,110,116,101,120,116,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,111,112,116,105,111,110,115,59,10,32,32,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,116,104,105,115,41,59,10,32,32,32,32,32,32,108,101,116,32,107,101,121,32,61,32,111,112,116,105,111,110,115,46,107,101,121,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,107,101,121,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,107,101,121,32,61,32,107,101,121,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,101,114,116,32,61,32,111,112,116,105,111,110,115,46,99,101,114,116,59,10,32,32,32,32,32,32,105,102,32,40,99,101,114,116,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,101,114,116,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,101,114,116,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,101,114,116,32,61,32,99,101,114,116,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,97,32,61,32,111,112,116,105,111,110,115,46,99,97,59,10,32,32,32,32,32,32,105,102,32,40,99,97,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,97,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,97,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,32,61,32,99,97,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,112,97,115,115,112,104,114,97,115,101,32,61,32,111,112,116,105,111,110,115,46,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,105,102,32,40,112,97,115,115,112,104,114,97,115,101,32,38,38,32,116,121,112,101,111,102,32,112,97,115,115,112,104,114,97,115,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,112,97,115,115,112,104,114,97,115,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,32,61,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,114,118,101,114,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,105,102,32,40,115,101,114,118,101,114,110,97,109,101,32,38,38,32,116,121,112,101,111,102,32,115,101,114,118,101,114,110,97,109,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,114,118,101,114,110,97,109,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,124,124,32,48,59,10,32,32,32,32,32,32,105,102,32,40,115,101,99,117,114,101,79,112,116,105,111,110,115,32,38,38,32,116,121,112,101,111,102,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,33,61,61,32,34,110,117,109,98,101,114,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,99,117,114,101,79,112,116,105,111,110,115,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,110,117,109,98,101,114,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,32,32,32,32,99,111,110,115,116,32,114,101,113,117,101,115,116,67,101,114,116,32,61,32,111,112,116,105,111,110,115,46,114,101,113,117,101,115,116,67,101,114,116,32,124,124,32,33,49,59,10,32,32,32,32,32,32,105,102,32,40,114,101,113,117,101,115,116,67,101,114,116,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,32,61,32,114,101,113,117,101,115,116,67,101,114,116,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,32,61,32,118,111,105,100,32,48,59,10,32,32,32,32,32,32,99,111,110,115,116,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,111,112,116,105,111,110,115,46,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,124,124,32,33,49,59,10,32,32,32,32,32,32,105,102,32,40,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,118,111,105,100,32,48,59,10,32,32,32,32,125,10,32,32,125,10,32,32,103,101,116,84,105,99,107,101,116,75,101,121,115,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,115,101,116,84,105,99,107,101,116,75,101,121,115,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,91,98,117,110,116,108,115,93,40,112,111,114,116,44,32,104,111,115,116,44,32,105,115,67,108,105,101,110,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,91,10,32,32,32,32,32,32,123,10,32,32,32,32,32,32,32,32,115,101,114,118,101,114,78,97,109,101,58,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,124,124,32,104,111,115,116,32,124,124,32,34,108,111,99,97,108,104,111,115,116,34,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,46,107,101,121,44,10,32,32,32,32,32,32,32,32,99,101,114,116,58,32,116,104,105,115,46,99,101,114,116,44,10,32,32,32,32,32,32,32,32,99,97,58,32,116,104,105,115,46,99,97,44,10,32,32,32,32,32,32,32,32,112,97,115,115,112,104,114,97,115,101,58,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,44,10,32,32,32,32,32,32,32,32,115,101,99,117,114,101,79,112,116,105,111,110,115,58,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,44,10,32,32,32,32,32,32,32,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,58,32,105,115,67,108,105,101,110,116,32,63,32,33,49,32,58,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,44,10,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,67,101,114,116,58,32,105,115,67,108,105,101,110,116,32,63,32,33,49,32,58,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,44,10,32,32,32,32,32,32,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,58,32,116,104,105,115,46,65,76,80,78,80,114,111,116,111,99,111,108,115,10,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,83,111,99,107,101,116,67,108,97,115,115,10,32,32,32,32,93,59,10,32,32,125,10,125,10,118,97,114,32,67,76,73,69,78,84,95,82,69,78,69,71,95,76,73,77,73,84,32,61,32,51,44,32,67,76,73,69,78,84,95,82,69,78,69,71,95,87,73,78,68,79,87,32,61,32,54,48,48,44,32,68,69,70,65,85,76,84,95,69,67,68,72,95,67,85,82,86,69,32,61,32,34,97,117,116,111,34,44,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,32,61,32,34,68,72,69,45,82,83,65,45,65,69,83,50,53,54,45,71,67,77,45,83,72,65,51,56,52,58,68,72,69,45,82,83,65,45,65,69,83,49,50,56,45,71,67,77,45,83,72,65,50,53,54,58,69,67,68,72,69,45,82,83,65,45,65,69,83,50,53,54,45,71,67,77,45,83,72,65,51,56,52,58,69,67,68,72,69,45,82,83,65,45,65,69,83,49,50,56,45,71,67,77,45,83,72,65,50,53,54,34,44,32,68,69,70,65,85,76,84,95,77,73,78,95,86,69,82,83,73,79,78,32,61,32,34,84,76,83,118,49,46,50,34,44,32,68,69,70,65,85,76,84,95,77,65,88,95,86,69,82,83,73,79,78,32,61,32,34,84,76,83,118,49,46,51,34,44,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,32,61,32,40,112,111,114,116,44,32,104,111,115,116,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,32,61,62,32,123,10,32,32,105,102,32,40,116,121,112,101,111,102,32,112,111,114,116,32,61,61,61,32,34,111,98,106,101,99,116,34,41,32,123,10,32,32,32,32,112,111,114,116,46,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,59,10,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,112,111,114,116,59,10,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,112,111,114,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,84,76,83,83,111,99,107,101,116,40,112,111,114,116,41,46,99,111,110,110,101,99,116,40,112,111,114,116,44,32,104,111,115,116,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,110,101,119,32,84,76,83,83,111,99,107,101,116,40,41,46,99,111,110,110,101,99,116,40,112,111,114,116,44,32,104,111,115,116,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,59,10,125,44,32,99,111,110,110,101,99,116,32,61,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,59,10,36,32,61,32,123,10,32,32,67,76,73,69,78,84,95,82,69,78,69,71,95,76,73,77,73,84,44,10,32,32,67,76,73,69,78,84,95,82,69,78,69,71,95,87,73,78,68,79,87,44,10,32,32,99,111,110,110,101,99,116,44,10,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,44,10,32,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,44,10,32,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,44,10,32,32,99,114,101,97,116,101,83,101,114,118,101,114,44,10,32,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,44,10,32,32,68,69,70,65,85,76,84,95,69,67,68,72,95,67,85,82,86,69,44,10,32,32,68,69,70,65,85,76,84,95,77,65,88,95,86,69,82,83,73,79,78,44,10,32,32,68,69,70,65,85,76,84,95,77,73,78,95,86,69,82,83,73,79,78,44,10,32,32,103,101,116,67,105,112,104,101,114,115,44,10,32,32,112,97,114,115,101,67,101,114,116,83,116,114,105,110,103,44,10,32,32,83,101,99,117,114,101,67,111,110,116,101,120,116,44,10,32,32,83,101,114,118,101,114,44,10,32,32,84,76,83,83,111,99,107,101,116,44,10,32,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,10,32,32,114,111,111,116,67,101,114,116,105,102,105,99,97,116,101,115,10,125,59,10,114,101,116,117,114,110,32,36,125,41,10,10,0}; static constexpr ASCIILiteral NodeTLSCode = ASCIILiteral::fromLiteralUnsafe(NodeTLSCodeBytes); // @@ -1144,7 +1144,7 @@ static constexpr ASCIILiteral NodeTimersPromisesCode = ASCIILiteral::fromLiteral // -static constexpr const char NodeTLSCodeBytes[18536] = {40,102,117,110,99,116,105,111,110,32,40,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,47,47,32,115,114,99,47,106,115,47,111,117,116,47,116,109,112,47,110,111,100,101,47,116,108,115,46,116,115,10,118,97,114,32,112,97,114,115,101,67,101,114,116,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,10,32,32,116,104,114,111,119,78,111,116,73,109,112,108,101,109,101,110,116,101,100,40,34,78,111,116,32,105,109,112,108,101,109,101,110,116,101,100,34,41,59,10,125,44,32,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,32,61,32,102,117,110,99,116,105,111,110,40,111,98,106,41,32,123,10,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,32,61,61,61,32,34,115,116,114,105,110,103,34,32,124,124,32,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,41,32,124,124,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,32,124,124,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,66,108,111,98,41,10,32,32,32,32,114,101,116,117,114,110,32,33,48,59,10,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,98,106,41,41,32,123,10,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,105,32,60,32,111,98,106,46,108,101,110,103,116,104,59,32,105,43,43,41,10,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,32,33,61,61,32,34,115,116,114,105,110,103,34,32,38,38,32,33,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,41,32,38,38,32,33,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,41,32,38,38,32,33,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,66,108,111,98,41,41,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,32,32,114,101,116,117,114,110,32,33,48,59,10,32,32,125,10,125,44,32,117,110,102,113,100,110,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,50,41,32,123,10,32,32,114,101,116,117,114,110,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,91,46,93,36,47,44,32,104,111,115,116,50,44,32,34,34,41,59,10,125,44,32,116,111,76,111,119,101,114,67,97,115,101,32,61,32,102,117,110,99,116,105,111,110,40,99,41,32,123,10,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,70,114,111,109,67,104,97,114,67,111,100,101,46,99,97,108,108,40,51,50,32,43,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,67,104,97,114,67,111,100,101,65,116,46,99,97,108,108,40,99,44,32,48,41,41,59,10,125,44,32,115,112,108,105,116,72,111,115,116,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,50,41,32,123,10,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,91,65,45,90,93,47,103,44,32,117,110,102,113,100,110,40,104,111,115,116,50,41,44,32,116,111,76,111,119,101,114,67,97,115,101,41,44,32,34,46,34,41,59,10,125,44,32,99,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,80,97,114,116,115,44,32,112,97,116,116,101,114,110,44,32,119,105,108,100,99,97,114,100,115,41,32,123,10,32,32,105,102,32,40,33,112,97,116,116,101,114,110,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,112,97,116,116,101,114,110,80,97,114,116,115,32,61,32,115,112,108,105,116,72,111,115,116,40,112,97,116,116,101,114,110,41,59,10,32,32,105,102,32,40,104,111,115,116,80,97,114,116,115,46,108,101,110,103,116,104,32,33,61,61,32,112,97,116,116,101,114,110,80,97,114,116,115,46,108,101,110,103,116,104,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,112,97,116,116,101,114,110,80,97,114,116,115,44,32,34,34,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,105,115,66,97,100,32,61,32,40,115,41,32,61,62,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,46,99,97,108,108,40,47,91,94,92,117,48,48,50,49,45,92,117,48,48,55,70,93,47,117,44,32,115,41,32,33,61,61,32,110,117,108,108,59,10,32,32,105,102,32,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,112,97,116,116,101,114,110,80,97,114,116,115,44,32,105,115,66,97,100,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,104,111,115,116,80,97,114,116,115,46,108,101,110,103,116,104,32,45,32,49,59,105,32,62,32,48,59,32,105,32,45,61,32,49,41,10,32,32,32,32,105,102,32,40,104,111,115,116,80,97,114,116,115,91,105,93,32,33,61,61,32,112,97,116,116,101,114,110,80,97,114,116,115,91,105,93,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,104,111,115,116,83,117,98,100,111,109,97,105,110,32,61,32,104,111,115,116,80,97,114,116,115,91,48,93,44,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,32,61,32,112,97,116,116,101,114,110,80,97,114,116,115,91,48,93,44,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,44,32,34,42,34,41,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,124,124,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,44,32,34,120,110,45,45,34,41,41,10,32,32,32,32,114,101,116,117,114,110,32,104,111,115,116,83,117,98,100,111,109,97,105,110,32,61,61,61,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,59,10,32,32,105,102,32,40,33,119,105,108,100,99,97,114,100,115,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,46,108,101,110,103,116,104,32,62,32,50,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,80,97,114,116,115,46,108,101,110,103,116,104,32,60,61,32,50,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,123,32,48,58,32,112,114,101,102,105,120,44,32,49,58,32,115,117,102,102,105,120,32,125,32,61,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,59,10,32,32,105,102,32,40,112,114,101,102,105,120,46,108,101,110,103,116,104,32,43,32,115,117,102,102,105,120,46,108,101,110,103,116,104,32,62,32,104,111,115,116,83,117,98,100,111,109,97,105,110,46,108,101,110,103,116,104,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,33,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,104,111,115,116,83,117,98,100,111,109,97,105,110,44,32,112,114,101,102,105,120,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,33,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,69,110,100,115,87,105,116,104,46,99,97,108,108,40,104,111,115,116,83,117,98,100,111,109,97,105,110,44,32,115,117,102,102,105,120,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,114,101,116,117,114,110,32,33,48,59,10,125,44,32,115,112,108,105,116,69,115,99,97,112,101,100,65,108,116,78,97,109,101,115,32,61,32,102,117,110,99,116,105,111,110,40,97,108,116,78,97,109,101,115,41,32,123,10,32,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,91,93,59,10,32,32,108,101,116,32,99,117,114,114,101,110,116,84,111,107,101,110,32,61,32,34,34,44,32,111,102,102,115,101,116,32,61,32,48,59,10,32,32,119,104,105,108,101,32,40,111,102,102,115,101,116,32,33,61,61,32,97,108,116,78,97,109,101,115,46,108,101,110,103,116,104,41,32,123,10,32,32,32,32,99,111,110,115,116,32,110,101,120,116,83,101,112,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,34,44,32,34,44,32,111,102,102,115,101,116,41,44,32,110,101,120,116,81,117,111,116,101,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,39,34,39,44,32,111,102,102,115,101,116,41,59,10,32,32,32,32,105,102,32,40,110,101,120,116,81,117,111,116,101,32,33,61,61,32,45,49,32,38,38,32,40,110,101,120,116,83,101,112,32,61,61,61,32,45,49,32,124,124,32,110,101,120,116,81,117,111,116,101,32,60,32,110,101,120,116,83,101,112,41,41,32,123,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,44,32,110,101,120,116,81,117,111,116,101,41,59,10,32,32,32,32,32,32,99,111,110,115,116,32,109,97,116,99,104,32,61,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,46,99,97,108,108,40,106,115,111,110,83,116,114,105,110,103,80,97,116,116,101,114,110,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,110,101,120,116,81,117,111,116,101,41,41,59,10,32,32,32,32,32,32,105,102,32,40,33,109,97,116,99,104,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,83,121,110,116,97,120,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,70,79,82,77,65,84,58,32,73,110,118,97,108,105,100,32,115,117,98,106,101,99,116,32,97,108,116,101,114,110,97,116,105,118,101,32,110,97,109,101,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,70,79,82,77,65,84,44,32,101,114,114,111,114,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,74,83,79,78,46,112,97,114,115,101,40,109,97,116,99,104,91,48,93,41,44,32,111,102,102,115,101,116,32,61,32,110,101,120,116,81,117,111,116,101,32,43,32,109,97,116,99,104,91,48,93,46,108,101,110,103,116,104,59,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,120,116,83,101,112,32,33,61,61,32,45,49,41,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,44,32,110,101,120,116,83,101,112,41,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,114,101,115,117,108,116,44,32,99,117,114,114,101,110,116,84,111,107,101,110,41,44,32,99,117,114,114,101,110,116,84,111,107,101,110,32,61,32,34,34,44,32,111,102,102,115,101,116,32,61,32,110,101,120,116,83,101,112,32,43,32,50,59,10,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,41,44,32,111,102,102,115,101,116,32,61,32,97,108,116,78,97,109,101,115,46,108,101,110,103,116,104,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,114,101,115,117,108,116,44,32,99,117,114,114,101,110,116,84,111,107,101,110,41,44,32,114,101,115,117,108,116,59,10,125,44,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,110,97,109,101,44,32,99,101,114,116,41,32,123,10,32,32,99,111,110,115,116,32,123,32,115,117,98,106,101,99,116,44,32,115,117,98,106,101,99,116,97,108,116,110,97,109,101,58,32,97,108,116,78,97,109,101,115,32,125,32,61,32,99,101,114,116,44,32,100,110,115,78,97,109,101,115,32,61,32,91,93,44,32,105,112,115,32,61,32,91,93,59,10,32,32,105,102,32,40,104,111,115,116,110,97,109,101,32,61,32,34,34,32,43,32,104,111,115,116,110,97,109,101,44,32,97,108,116,78,97,109,101,115,41,32,123,10,32,32,32,32,99,111,110,115,116,32,115,112,108,105,116,65,108,116,78,97,109,101,115,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,39,34,39,41,32,63,32,115,112,108,105,116,69,115,99,97,112,101,100,65,108,116,78,97,109,101,115,40,97,108,116,78,97,109,101,115,41,32,58,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,34,44,32,34,41,59,10,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,70,111,114,69,97,99,104,46,99,97,108,108,40,115,112,108,105,116,65,108,116,78,97,109,101,115,44,32,40,110,97,109,101,41,32,61,62,32,123,10,32,32,32,32,32,32,105,102,32,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,110,97,109,101,44,32,34,68,78,83,58,34,41,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,100,110,115,78,97,109,101,115,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,46,99,97,108,108,40,110,97,109,101,44,32,52,41,41,59,10,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,110,97,109,101,44,32,34,73,80,32,65,100,100,114,101,115,115,58,34,41,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,105,112,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,46,99,97,108,108,40,110,97,109,101,44,32,49,49,41,41,41,59,10,32,32,32,32,125,41,59,10,32,32,125,10,32,32,108,101,116,32,118,97,108,105,100,32,61,32,33,49,44,32,114,101,97,115,111,110,32,61,32,34,85,110,107,110,111,119,110,32,114,101,97,115,111,110,34,59,10,32,32,105,102,32,40,104,111,115,116,110,97,109,101,32,61,32,117,110,102,113,100,110,40,104,111,115,116,110,97,109,101,41,44,32,110,101,116,46,105,115,73,80,40,104,111,115,116,110,97,109,101,41,41,32,123,10,32,32,32,32,105,102,32,40,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,105,112,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,40,104,111,115,116,110,97,109,101,41,41,44,32,33,118,97,108,105,100,41,10,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,73,80,58,32,36,123,104,111,115,116,110,97,109,101,125,32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99,101,114,116,39,115,32,108,105,115,116,58,32,96,32,43,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,74,111,105,110,46,99,97,108,108,40,105,112,115,44,32,34,44,32,34,41,59,10,32,32,125,32,101,108,115,101,32,105,102,32,40,100,110,115,78,97,109,101,115,46,108,101,110,103,116,104,32,62,32,48,32,124,124,32,115,117,98,106,101,99,116,63,46,67,78,41,32,123,10,32,32,32,32,99,111,110,115,116,32,104,111,115,116,80,97,114,116,115,32,61,32,115,112,108,105,116,72,111,115,116,40,104,111,115,116,110,97,109,101,41,44,32,119,105,108,100,99,97,114,100,32,61,32,40,112,97,116,116,101,114,110,41,32,61,62,32,99,104,101,99,107,40,104,111,115,116,80,97,114,116,115,44,32,112,97,116,116,101,114,110,44,32,33,48,41,59,10,32,32,32,32,105,102,32,40,100,110,115,78,97,109,101,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,10,32,32,32,32,32,32,105,102,32,40,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,100,110,115,78,97,109,101,115,44,32,119,105,108,100,99,97,114,100,41,44,32,33,118,97,108,105,100,41,10,32,32,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,72,111,115,116,58,32,36,123,104,111,115,116,110,97,109,101,125,46,32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99,101,114,116,39,115,32,97,108,116,110,97,109,101,115,58,32,36,123,97,108,116,78,97,109,101,115,125,96,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,99,110,32,61,32,115,117,98,106,101,99,116,46,67,78,59,10,32,32,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,110,41,41,10,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,99,110,44,32,119,105,108,100,99,97,114,100,41,59,10,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,110,41,10,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,119,105,108,100,99,97,114,100,40,99,110,41,59,10,32,32,32,32,32,32,105,102,32,40,33,118,97,108,105,100,41,10,32,32,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,72,111,115,116,58,32,36,123,104,111,115,116,110,97,109,101,125,46,32,105,115,32,110,111,116,32,99,101,114,116,39,115,32,67,78,58,32,36,123,99,110,125,96,59,10,32,32,32,32,125,10,32,32,125,32,101,108,115,101,10,32,32,32,32,114,101,97,115,111,110,32,61,32,34,67,101,114,116,32,100,111,101,115,32,110,111,116,32,99,111,110,116,97,105,110,32,97,32,68,78,83,32,110,97,109,101,34,59,10,32,32,105,102,32,40,33,118,97,108,105,100,41,32,123,10,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,96,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,73,78,86,65,76,73,68,58,32,72,111,115,116,110,97,109,101,47,73,80,32,100,111,101,115,32,110,111,116,32,109,97,116,99,104,32,99,101,114,116,105,102,105,99,97,116,101,39,115,32,97,108,116,110,97,109,101,115,58,32,36,123,114,101,97,115,111,110,125,96,41,59,10,32,32,32,32,114,101,116,117,114,110,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,73,78,86,65,76,73,68,34,44,32,101,114,114,111,114,46,114,101,97,115,111,110,32,61,32,114,101,97,115,111,110,44,32,101,114,114,111,114,46,104,111,115,116,32,61,32,104,111,115,116,44,32,101,114,114,111,114,46,99,101,114,116,32,61,32,99,101,114,116,44,32,101,114,114,111,114,59,10,32,32,125,10,125,44,32,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,125,44,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,125,44,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,99,41,32,123,10,32,32,105,102,32,40,33,99,41,10,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,10,32,32,105,102,32,40,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,33,61,32,110,117,108,108,32,38,38,32,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,33,61,61,32,99,41,10,32,32,32,32,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,61,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,41,59,10,32,32,105,102,32,40,99,46,105,110,102,111,65,99,99,101,115,115,32,33,61,32,110,117,108,108,41,32,123,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,32,61,32,99,46,105,110,102,111,65,99,99,101,115,115,59,10,32,32,32,32,99,46,105,110,102,111,65,99,99,101,115,115,32,61,32,123,32,95,95,112,114,111,116,111,95,95,58,32,110,117,108,108,32,125,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,40,91,94,92,110,58,93,42,41,58,40,91,94,92,110,93,42,41,40,63,58,92,110,124,36,41,47,103,44,32,105,110,102,111,44,32,40,97,108,108,44,32,107,101,121,44,32,118,97,108,41,32,61,62,32,123,10,32,32,32,32,32,32,105,102,32,40,118,97,108,46,99,104,97,114,67,111,100,101,65,116,40,48,41,32,61,61,61,32,51,52,41,10,32,32,32,32,32,32,32,32,118,97,108,32,61,32,74,83,79,78,80,97,114,115,101,40,118,97,108,41,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,32,105,110,32,99,46,105,110,102,111,65,99,99,101,115,115,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,99,46,105,110,102,111,65,99,99,101,115,115,91,107,101,121,93,44,32,118,97,108,41,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,99,46,105,110,102,111,65,99,99,101,115,115,91,107,101,121,93,32,61,32,91,118,97,108,93,59,10,32,32,32,32,125,41,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,99,59,10,125,44,32,99,114,101,97,116,101,83,101,114,118,101,114,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,44,32,99,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,114,118,101,114,40,111,112,116,105,111,110,115,44,32,99,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,59,10,125,44,32,103,101,116,67,105,112,104,101,114,115,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,10,32,32,114,101,116,117,114,110,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,46,115,112,108,105,116,40,34,58,34,41,59,10,125,44,32,99,111,110,118,101,114,116,80,114,111,116,111,99,111,108,115,32,61,32,102,117,110,99,116,105,111,110,40,112,114,111,116,111,99,111,108,115,41,32,123,10,32,32,99,111,110,115,116,32,108,101,110,115,32,61,32,110,101,119,32,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,46,108,101,110,103,116,104,41,44,32,98,117,102,102,32,61,32,66,117,102,102,101,114,46,97,108,108,111,99,85,110,115,97,102,101,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,82,101,100,117,99,101,46,99,97,108,108,40,112,114,111,116,111,99,111,108,115,44,32,40,112,44,32,99,44,32,105,41,32,61,62,32,123,10,32,32,32,32,99,111,110,115,116,32,108,101,110,32,61,32,66,117,102,102,101,114,46,98,121,116,101,76,101,110,103,116,104,40,99,41,59,10,32,32,32,32,105,102,32,40,108,101,110,32,62,32,50,53,53,41,10,32,32,32,32,32,32,64,116,104,114,111,119,82,97,110,103,101,69,114,114,111,114,40,34,84,104,101,32,98,121,116,101,32,108,101,110,103,116,104,32,111,102,32,116,104,101,32,112,114,111,116,111,99,111,108,32,97,116,32,105,110,100,101,120,32,34,32,43,32,96,36,123,105,125,32,101,120,99,101,101,100,115,32,116,104,101,32,109,97,120,105,109,117,109,32,108,101,110,103,116,104,46,96,44,32,34,60,61,32,50,53,53,34,44,32,108,101,110,44,32,33,48,41,59,10,32,32,32,32,114,101,116,117,114,110,32,108,101,110,115,91,105,93,32,61,32,108,101,110,44,32,112,32,43,32,49,32,43,32,108,101,110,59,10,32,32,125,44,32,48,41,41,59,10,32,32,108,101,116,32,111,102,102,115,101,116,32,61,32,48,59,10,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,44,32,99,32,61,32,112,114,111,116,111,99,111,108,115,46,108,101,110,103,116,104,59,105,32,60,32,99,59,32,105,43,43,41,10,32,32,32,32,98,117,102,102,91,111,102,102,115,101,116,43,43,93,32,61,32,108,101,110,115,91,105,93,44,32,98,117,102,102,46,119,114,105,116,101,40,112,114,111,116,111,99,111,108,115,91,105,93,44,32,111,102,102,115,101,116,41,44,32,111,102,102,115,101,116,32,43,61,32,108,101,110,115,91,105,93,59,10,32,32,114,101,116,117,114,110,32,98,117,102,102,59,10,125,44,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,102,117,110,99,116,105,111,110,40,112,114,111,116,111,99,111,108,115,44,32,111,117,116,41,32,123,10,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,99,111,110,118,101,114,116,80,114,111,116,111,99,111,108,115,40,112,114,111,116,111,99,111,108,115,41,59,10,32,32,101,108,115,101,32,105,102,32,40,105,115,84,121,112,101,100,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,112,114,111,116,111,99,111,108,115,41,59,10,32,32,101,108,115,101,32,105,102,32,40,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,112,114,111,116,111,99,111,108,115,46,98,117,102,102,101,114,46,115,108,105,99,101,40,112,114,111,116,111,99,111,108,115,46,98,121,116,101,79,102,102,115,101,116,44,32,112,114,111,116,111,99,111,108,115,46,98,121,116,101,79,102,102,115,101,116,32,43,32,112,114,111,116,111,99,111,108,115,46,98,121,116,101,76,101,110,103,116,104,41,41,59,10,32,32,101,108,115,101,32,105,102,32,40,66,117,102,102,101,114,46,105,115,66,117,102,102,101,114,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,112,114,111,116,111,99,111,108,115,59,10,125,44,32,36,44,32,123,32,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,44,32,105,115,84,121,112,101,100,65,114,114,97,121,32,125,32,61,32,64,114,101,113,117,105,114,101,78,97,116,105,118,101,77,111,100,117,108,101,40,34,110,111,100,101,58,117,116,105,108,47,116,121,112,101,115,34,41,44,32,110,101,116,32,61,32,64,103,101,116,73,110,116,101,114,110,97,108,70,105,101,108,100,40,64,105,110,116,101,114,110,97,108,77,111,100,117,108,101,82,101,103,105,115,116,114,121,44,32,50,53,41,32,124,124,32,64,99,114,101,97,116,101,73,110,116,101,114,110,97,108,77,111,100,117,108,101,66,121,73,100,40,50,53,41,44,32,123,32,83,101,114,118,101,114,58,32,78,101,116,83,101,114,118,101,114,44,32,91,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,116,101,114,110,97,108,58,58,34,41,93,58,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,125,32,61,32,110,101,116,44,32,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,32,61,32,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,110,101,116,115,111,99,107,101,116,105,110,116,101,114,110,97,108,58,58,34,41,44,32,123,32,114,111,111,116,67,101,114,116,105,102,105,99,97,116,101,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,32,125,32,61,32,103,108,111,98,97,108,84,104,105,115,91,103,108,111,98,97,108,84,104,105,115,46,83,121,109,98,111,108,46,102,111,114,40,39,66,117,110,46,108,97,122,121,39,41,93,40,34,105,110,116,101,114,110,97,108,47,116,108,115,34,41,44,32,83,121,109,98,111,108,82,101,112,108,97,99,101,32,61,32,83,121,109,98,111,108,46,114,101,112,108,97,99,101,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,83,121,109,98,111,108,82,101,112,108,97,99,101,93,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,46,101,120,101,99,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,116,97,114,116,115,87,105,116,104,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,112,108,105,116,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,116,114,105,110,103,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,69,110,100,115,87,105,116,104,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,101,110,100,115,87,105,116,104,44,32,83,116,114,105,110,103,70,114,111,109,67,104,97,114,67,111,100,101,32,61,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,67,104,97,114,67,111,100,101,65,116,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,99,104,97,114,67,111,100,101,65,116,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,74,111,105,110,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,70,111,114,69,97,99,104,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,111,109,101,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,82,101,100,117,99,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,114,101,100,117,99,101,44,32,106,115,111,110,83,116,114,105,110,103,80,97,116,116,101,114,110,32,61,32,47,94,34,40,63,58,91,94,34,92,92,92,117,48,48,48,48,45,92,117,48,48,49,102,93,124,92,92,40,63,58,91,34,92,92,47,98,102,110,114,116,93,124,117,91,48,45,57,97,45,102,65,45,70,93,123,52,125,41,41,42,34,47,44,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,99,108,97,115,115,32,83,101,99,117,114,101,67,111,110,116,101,120,116,50,32,123,10,32,32,99,111,110,116,101,120,116,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,120,116,32,61,32,123,125,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,32,32,108,101,116,32,107,101,121,32,61,32,111,112,116,105,111,110,115,46,107,101,121,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,107,101,121,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,107,101,121,32,61,32,107,101,121,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,101,114,116,32,61,32,111,112,116,105,111,110,115,46,99,101,114,116,59,10,32,32,32,32,32,32,105,102,32,40,99,101,114,116,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,101,114,116,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,101,114,116,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,101,114,116,32,61,32,99,101,114,116,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,97,32,61,32,111,112,116,105,111,110,115,46,99,97,59,10,32,32,32,32,32,32,105,102,32,40,99,97,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,97,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,97,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,32,61,32,99,97,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,112,97,115,115,112,104,114,97,115,101,32,61,32,111,112,116,105,111,110,115,46,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,105,102,32,40,112,97,115,115,112,104,114,97,115,101,32,38,38,32,116,121,112,101,111,102,32,112,97,115,115,112,104,114,97,115,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,112,97,115,115,112,104,114,97,115,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,32,61,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,114,118,101,114,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,105,102,32,40,115,101,114,118,101,114,110,97,109,101,32,38,38,32,116,121,112,101,111,102,32,115,101,114,118,101,114,110,97,109,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,114,118,101,114,110,97,109,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,124,124,32,48,59,10,32,32,32,32,32,32,105,102,32,40,115,101,99,117,114,101,79,112,116,105,111,110,115,32,38,38,32,116,121,112,101,111,102,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,33,61,61,32,34,110,117,109,98,101,114,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,99,117,114,101,79,112,116,105,111,110,115,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,110,117,109,98,101,114,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,10,32,32,125,10,125,44,32,98,117,110,116,108,115,32,61,32,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,116,108,115,58,58,34,41,44,32,83,111,99,107,101,116,67,108,97,115,115,44,32,84,76,83,83,111,99,107,101,116,32,61,32,102,117,110,99,116,105,111,110,40,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,41,32,123,10,32,32,114,101,116,117,114,110,32,83,111,99,107,101,116,67,108,97,115,115,32,61,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,44,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,83,111,99,107,101,116,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,44,32,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,44,32,123,10,32,32,32,32,118,97,108,117,101,58,32,34,84,76,83,83,111,99,107,101,116,34,44,10,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,33,49,10,32,32,125,41,44,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,102,117,110,99,116,105,111,110,32,83,111,99,107,101,116,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,40,111,112,116,105,111,110,115,41,59,10,32,32,125,44,32,83,121,109,98,111,108,46,104,97,115,73,110,115,116,97,110,99,101,44,32,123,10,32,32,32,32,118,97,108,117,101,40,105,110,115,116,97,110,99,101,41,32,123,10,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,59,10,32,32,32,32,125,10,32,32,125,41,59,10,125,40,99,108,97,115,115,32,84,76,83,83,111,99,107,101,116,50,32,101,120,116,101,110,100,115,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,123,10,32,32,35,115,101,99,117,114,101,67,111,110,116,101,120,116,59,10,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,59,10,32,32,35,115,111,99,107,101,116,59,10,32,32,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,59,10,32,32,35,115,101,115,115,105,111,110,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,115,111,99,107,101,116,44,32,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,115,117,112,101,114,40,115,111,99,107,101,116,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,63,32,111,112,116,105,111,110,115,32,58,32,111,112,116,105,111,110,115,32,124,124,32,115,111,99,107,101,116,41,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,32,124,124,32,115,111,99,107,101,116,32,124,124,32,123,125,44,32,116,121,112,101,111,102,32,111,112,116,105,111,110,115,32,61,61,61,32,34,111,98,106,101,99,116,34,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,111,112,116,105,111,110,115,59,10,32,32,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,116,104,105,115,41,59,10,32,32,32,32,32,32,105,102,32,40,115,111,99,107,101,116,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,35,115,111,99,107,101,116,32,61,32,115,111,99,107,101,116,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,35,115,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,67,111,110,116,101,120,116,32,124,124,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,44,32,116,104,105,115,46,97,117,116,104,111,114,105,122,101,100,32,61,32,33,49,44,32,116,104,105,115,46,115,101,99,117,114,101,67,111,110,110,101,99,116,105,110,103,32,61,32,33,48,44,32,116,104,105,115,46,95,115,101,99,117,114,101,69,115,116,97,98,108,105,115,104,101,100,32,61,32,33,49,44,32,116,104,105,115,46,95,115,101,99,117,114,101,80,101,110,100,105,110,103,32,61,32,33,48,44,32,116,104,105,115,46,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,61,32,111,112,116,105,111,110,115,46,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,124,124,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,32,116,104,105,115,46,35,115,101,115,115,105,111,110,32,61,32,111,112,116,105,111,110,115,46,115,101,115,115,105,111,110,32,124,124,32,110,117,108,108,59,10,32,32,125,10,32,32,95,115,101,99,117,114,101,69,115,116,97,98,108,105,115,104,101,100,32,61,32,33,49,59,10,32,32,95,115,101,99,117,114,101,80,101,110,100,105,110,103,32,61,32,33,48,59,10,32,32,95,110,101,119,83,101,115,115,105,111,110,80,101,110,100,105,110,103,59,10,32,32,95,99,111,110,116,114,111,108,82,101,108,101,97,115,101,100,59,10,32,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,110,103,32,61,32,33,49,59,10,32,32,95,83,78,73,67,97,108,108,98,97,99,107,59,10,32,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,97,117,116,104,111,114,105,122,101,100,32,61,32,33,49,59,10,32,32,97,117,116,104,111,114,105,122,97,116,105,111,110,69,114,114,111,114,59,10,32,32,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,32,61,32,33,49,59,10,32,32,101,110,99,114,121,112,116,101,100,32,61,32,33,48,59,10,32,32,95,115,116,97,114,116,40,41,32,123,10,32,32,32,32,116,104,105,115,46,99,111,110,110,101,99,116,40,41,59,10,32,32,125,10,32,32,103,101,116,83,101,115,115,105,111,110,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,83,101,115,115,105,111,110,40,41,59,10,32,32,125,10,32,32,103,101,116,69,112,104,101,109,101,114,97,108,75,101,121,73,110,102,111,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,69,112,104,101,109,101,114,97,108,75,101,121,73,110,102,111,40,41,59,10,32,32,125,10,32,32,103,101,116,67,105,112,104,101,114,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,67,105,112,104,101,114,40,41,59,10,32,32,125,10,32,32,103,101,116,83,104,97,114,101,100,83,105,103,97,108,103,115,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,83,104,97,114,101,100,83,105,103,97,108,103,115,40,41,59,10,32,32,125,10,32,32,103,101,116,80,114,111,116,111,99,111,108,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,86,101,114,115,105,111,110,40,41,59,10,32,32,125,10,32,32,103,101,116,70,105,110,105,115,104,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,70,105,110,105,115,104,101,100,77,101,115,115,97,103,101,40,41,32,124,124,32,118,111,105,100,32,48,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,70,105,110,105,115,104,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,80,101,101,114,70,105,110,105,115,104,101,100,77,101,115,115,97,103,101,40,41,32,124,124,32,118,111,105,100,32,48,59,10,32,32,125,10,32,32,105,115,83,101,115,115,105,111,110,82,101,117,115,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,33,33,116,104,105,115,46,35,115,101,115,115,105,111,110,59,10,32,32,125,10,32,32,114,101,110,101,103,111,116,105,97,116,101,40,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,82,69,78,69,71,79,84,73,65,84,73,79,78,95,68,73,83,65,66,76,69,68,58,32,84,76,83,32,115,101,115,115,105,111,110,32,114,101,110,101,103,111,116,105,97,116,105,111,110,32,100,105,115,97,98,108,101,100,32,102,111,114,32,116,104,105,115,32,115,111,99,107,101,116,34,41,59,10,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,82,69,78,69,71,79,84,73,65,84,73,79,78,95,68,73,83,65,66,76,69,68,34,44,32,101,114,114,111,114,59,10,32,32,32,32,125,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,100,105,115,97,98,108,101,82,101,110,101,103,111,116,105,97,116,105,111,110,40,41,32,123,10,32,32,32,32,116,104,105,115,46,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,32,61,32,33,48,59,10,32,32,125,10,32,32,103,101,116,84,76,83,84,105,99,107,101,116,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,84,105,99,107,101,116,40,41,59,10,32,32,125,10,32,32,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,44,32,99,111,110,116,101,120,116,41,32,123,10,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,44,32,99,111,110,116,101,120,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,41,59,10,32,32,125,10,32,32,115,101,116,77,97,120,83,101,110,100,70,114,97,103,109,101,110,116,40,115,105,122,101,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,77,97,120,83,101,110,100,70,114,97,103,109,101,110,116,40,115,105,122,101,41,32,124,124,32,33,49,59,10,32,32,125,10,32,32,101,110,97,98,108,101,84,114,97,99,101,40,41,32,123,10,32,32,125,10,32,32,115,101,116,83,101,114,118,101,114,110,97,109,101,40,110,97,109,101,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,114,118,101,114,41,32,123,10,32,32,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,83,78,73,95,70,82,79,77,95,83,69,82,86,69,82,58,32,67,97,110,110,111,116,32,105,115,115,117,101,32,83,78,73,32,102,114,111,109,32,97,32,84,76,83,32,115,101,114,118,101,114,45,115,105,100,101,32,115,111,99,107,101,116,34,41,59,10,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,83,78,73,95,70,82,79,77,95,83,69,82,86,69,82,34,44,32,101,114,114,111,114,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,110,97,109,101,44,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,83,101,114,118,101,114,110,97,109,101,40,110,97,109,101,41,59,10,32,32,125,10,32,32,115,101,116,83,101,115,115,105,111,110,40,115,101,115,115,105,111,110,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,35,115,101,115,115,105,111,110,32,61,32,115,101,115,115,105,111,110,44,32,116,121,112,101,111,102,32,115,101,115,115,105,111,110,32,61,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,115,101,115,115,105,111,110,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,115,101,115,115,105,111,110,44,32,34,108,97,116,105,110,49,34,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,83,101,115,115,105,111,110,40,115,101,115,115,105,111,110,41,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,97,98,98,114,101,118,105,97,116,101,100,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,101,114,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,49,32,63,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,41,32,58,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,97,98,98,114,101,118,105,97,116,101,100,41,59,10,32,32,32,32,105,102,32,40,99,101,114,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,101,114,116,41,59,10,32,32,125,10,32,32,103,101,116,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,101,114,116,32,61,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,67,101,114,116,105,102,105,99,97,116,101,40,41,59,10,32,32,32,32,105,102,32,40,99,101,114,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,101,114,116,41,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,88,53,48,57,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,103,101,116,88,53,48,57,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,103,101,116,32,97,108,112,110,80,114,111,116,111,99,111,108,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,97,108,112,110,80,114,111,116,111,99,111,108,59,10,32,32,125,10,32,32,91,98,117,110,116,108,115,93,40,112,111,114,116,44,32,104,111,115,116,50,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,123,10,32,32,32,32,32,32,115,111,99,107,101,116,58,32,116,104,105,115,46,35,115,111,99,107,101,116,44,10,32,32,32,32,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,58,32,116,104,105,115,46,65,76,80,78,80,114,111,116,111,99,111,108,115,44,10,32,32,32,32,32,32,115,101,114,118,101,114,78,97,109,101,58,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,124,124,32,104,111,115,116,50,32,124,124,32,34,108,111,99,97,108,104,111,115,116,34,44,10,32,32,32,32,32,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,58,32,116,104,105,115,46,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,10,32,32,32,32,32,32,115,101,115,115,105,111,110,58,32,116,104,105,115,46,35,115,101,115,115,105,111,110,44,10,32,32,32,32,32,32,46,46,46,116,104,105,115,46,35,115,101,99,117,114,101,67,111,110,116,101,120,116,10,32,32,32,32,125,59,10,32,32,125,10,125,41,59,10,10,99,108,97,115,115,32,83,101,114,118,101,114,32,101,120,116,101,110,100,115,32,78,101,116,83,101,114,118,101,114,32,123,10,32,32,107,101,121,59,10,32,32,99,101,114,116,59,10,32,32,99,97,59,10,32,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,59,10,32,32,95,114,101,113,117,101,115,116,67,101,114,116,59,10,32,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,111,112,116,105,111,110,115,44,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,32,123,10,32,32,32,32,115,117,112,101,114,40,111,112,116,105,111,110,115,44,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,59,10,32,32,32,32,116,104,105,115,46,115,101,116,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,32,32,125,10,32,32,115,101,116,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,41,10,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,99,111,110,116,101,120,116,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,111,112,116,105,111,110,115,59,10,32,32,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,116,104,105,115,41,59,10,32,32,32,32,32,32,108,101,116,32,107,101,121,32,61,32,111,112,116,105,111,110,115,46,107,101,121,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,107,101,121,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,107,101,121,32,61,32,107,101,121,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,101,114,116,32,61,32,111,112,116,105,111,110,115,46,99,101,114,116,59,10,32,32,32,32,32,32,105,102,32,40,99,101,114,116,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,101,114,116,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,101,114,116,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,101,114,116,32,61,32,99,101,114,116,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,97,32,61,32,111,112,116,105,111,110,115,46,99,97,59,10,32,32,32,32,32,32,105,102,32,40,99,97,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,97,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,97,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,32,61,32,99,97,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,112,97,115,115,112,104,114,97,115,101,32,61,32,111,112,116,105,111,110,115,46,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,105,102,32,40,112,97,115,115,112,104,114,97,115,101,32,38,38,32,116,121,112,101,111,102,32,112,97,115,115,112,104,114,97,115,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,112,97,115,115,112,104,114,97,115,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,32,61,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,114,118,101,114,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,105,102,32,40,115,101,114,118,101,114,110,97,109,101,32,38,38,32,116,121,112,101,111,102,32,115,101,114,118,101,114,110,97,109,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,114,118,101,114,110,97,109,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,124,124,32,48,59,10,32,32,32,32,32,32,105,102,32,40,115,101,99,117,114,101,79,112,116,105,111,110,115,32,38,38,32,116,121,112,101,111,102,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,33,61,61,32,34,110,117,109,98,101,114,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,99,117,114,101,79,112,116,105,111,110,115,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,110,117,109,98,101,114,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,32,32,32,32,99,111,110,115,116,32,114,101,113,117,101,115,116,67,101,114,116,32,61,32,111,112,116,105,111,110,115,46,114,101,113,117,101,115,116,67,101,114,116,32,124,124,32,33,49,59,10,32,32,32,32,32,32,105,102,32,40,114,101,113,117,101,115,116,67,101,114,116,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,32,61,32,114,101,113,117,101,115,116,67,101,114,116,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,32,61,32,118,111,105,100,32,48,59,10,32,32,32,32,32,32,99,111,110,115,116,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,111,112,116,105,111,110,115,46,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,124,124,32,33,49,59,10,32,32,32,32,32,32,105,102,32,40,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,118,111,105,100,32,48,59,10,32,32,32,32,125,10,32,32,125,10,32,32,103,101,116,84,105,99,107,101,116,75,101,121,115,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,115,101,116,84,105,99,107,101,116,75,101,121,115,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,91,98,117,110,116,108,115,93,40,112,111,114,116,44,32,104,111,115,116,50,44,32,105,115,67,108,105,101,110,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,91,10,32,32,32,32,32,32,123,10,32,32,32,32,32,32,32,32,115,101,114,118,101,114,78,97,109,101,58,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,124,124,32,104,111,115,116,50,32,124,124,32,34,108,111,99,97,108,104,111,115,116,34,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,46,107,101,121,44,10,32,32,32,32,32,32,32,32,99,101,114,116,58,32,116,104,105,115,46,99,101,114,116,44,10,32,32,32,32,32,32,32,32,99,97,58,32,116,104,105,115,46,99,97,44,10,32,32,32,32,32,32,32,32,112,97,115,115,112,104,114,97,115,101,58,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,44,10,32,32,32,32,32,32,32,32,115,101,99,117,114,101,79,112,116,105,111,110,115,58,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,44,10,32,32,32,32,32,32,32,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,58,32,105,115,67,108,105,101,110,116,32,63,32,33,49,32,58,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,44,10,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,67,101,114,116,58,32,105,115,67,108,105,101,110,116,32,63,32,33,49,32,58,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,44,10,32,32,32,32,32,32,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,58,32,116,104,105,115,46,65,76,80,78,80,114,111,116,111,99,111,108,115,10,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,83,111,99,107,101,116,67,108,97,115,115,10,32,32,32,32,93,59,10,32,32,125,10,125,10,118,97,114,32,67,76,73,69,78,84,95,82,69,78,69,71,95,76,73,77,73,84,32,61,32,51,44,32,67,76,73,69,78,84,95,82,69,78,69,71,95,87,73,78,68,79,87,32,61,32,54,48,48,44,32,68,69,70,65,85,76,84,95,69,67,68,72,95,67,85,82,86,69,32,61,32,34,97,117,116,111,34,44,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,32,61,32,34,68,72,69,45,82,83,65,45,65,69,83,50,53,54,45,71,67,77,45,83,72,65,51,56,52,58,68,72,69,45,82,83,65,45,65,69,83,49,50,56,45,71,67,77,45,83,72,65,50,53,54,58,69,67,68,72,69,45,82,83,65,45,65,69,83,50,53,54,45,71,67,77,45,83,72,65,51,56,52,58,69,67,68,72,69,45,82,83,65,45,65,69,83,49,50,56,45,71,67,77,45,83,72,65,50,53,54,34,44,32,68,69,70,65,85,76,84,95,77,73,78,95,86,69,82,83,73,79,78,32,61,32,34,84,76,83,118,49,46,50,34,44,32,68,69,70,65,85,76,84,95,77,65,88,95,86,69,82,83,73,79,78,32,61,32,34,84,76,83,118,49,46,51,34,44,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,32,61,32,40,112,111,114,116,44,32,104,111,115,116,50,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,32,61,62,32,123,10,32,32,105,102,32,40,116,121,112,101,111,102,32,112,111,114,116,32,61,61,61,32,34,111,98,106,101,99,116,34,41,32,123,10,32,32,32,32,112,111,114,116,46,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,59,10,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,112,111,114,116,59,10,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,112,111,114,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,84,76,83,83,111,99,107,101,116,40,112,111,114,116,41,46,99,111,110,110,101,99,116,40,112,111,114,116,44,32,104,111,115,116,50,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,110,101,119,32,84,76,83,83,111,99,107,101,116,40,41,46,99,111,110,110,101,99,116,40,112,111,114,116,44,32,104,111,115,116,50,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,59,10,125,44,32,99,111,110,110,101,99,116,32,61,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,59,10,36,32,61,32,123,10,32,32,67,76,73,69,78,84,95,82,69,78,69,71,95,76,73,77,73,84,44,10,32,32,67,76,73,69,78,84,95,82,69,78,69,71,95,87,73,78,68,79,87,44,10,32,32,99,111,110,110,101,99,116,44,10,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,44,10,32,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,44,10,32,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,44,10,32,32,99,114,101,97,116,101,83,101,114,118,101,114,44,10,32,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,44,10,32,32,68,69,70,65,85,76,84,95,69,67,68,72,95,67,85,82,86,69,44,10,32,32,68,69,70,65,85,76,84,95,77,65,88,95,86,69,82,83,73,79,78,44,10,32,32,68,69,70,65,85,76,84,95,77,73,78,95,86,69,82,83,73,79,78,44,10,32,32,103,101,116,67,105,112,104,101,114,115,44,10,32,32,112,97,114,115,101,67,101,114,116,83,116,114,105,110,103,44,10,32,32,83,101,99,117,114,101,67,111,110,116,101,120,116,44,10,32,32,83,101,114,118,101,114,44,10,32,32,84,76,83,83,111,99,107,101,116,44,10,32,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,10,32,32,114,111,111,116,67,101,114,116,105,102,105,99,97,116,101,115,10,125,59,10,114,101,116,117,114,110,32,36,125,41,10,10,0}; +static constexpr const char NodeTLSCodeBytes[18529] = {40,102,117,110,99,116,105,111,110,32,40,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,47,47,32,115,114,99,47,106,115,47,111,117,116,47,116,109,112,47,110,111,100,101,47,116,108,115,46,116,115,10,118,97,114,32,112,97,114,115,101,67,101,114,116,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,10,32,32,116,104,114,111,119,78,111,116,73,109,112,108,101,109,101,110,116,101,100,40,34,78,111,116,32,105,109,112,108,101,109,101,110,116,101,100,34,41,59,10,125,44,32,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,32,61,32,102,117,110,99,116,105,111,110,40,111,98,106,41,32,123,10,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,32,61,61,61,32,34,115,116,114,105,110,103,34,32,124,124,32,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,41,32,124,124,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,32,124,124,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,66,108,111,98,41,10,32,32,32,32,114,101,116,117,114,110,32,33,48,59,10,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,98,106,41,41,32,123,10,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,105,32,60,32,111,98,106,46,108,101,110,103,116,104,59,32,105,43,43,41,10,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,32,33,61,61,32,34,115,116,114,105,110,103,34,32,38,38,32,33,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,41,32,38,38,32,33,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,41,32,38,38,32,33,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,66,108,111,98,41,41,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,32,32,114,101,116,117,114,110,32,33,48,59,10,32,32,125,10,125,44,32,117,110,102,113,100,110,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,41,32,123,10,32,32,114,101,116,117,114,110,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,91,46,93,36,47,44,32,104,111,115,116,44,32,34,34,41,59,10,125,44,32,116,111,76,111,119,101,114,67,97,115,101,32,61,32,102,117,110,99,116,105,111,110,40,99,41,32,123,10,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,70,114,111,109,67,104,97,114,67,111,100,101,46,99,97,108,108,40,51,50,32,43,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,67,104,97,114,67,111,100,101,65,116,46,99,97,108,108,40,99,44,32,48,41,41,59,10,125,44,32,115,112,108,105,116,72,111,115,116,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,41,32,123,10,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,91,65,45,90,93,47,103,44,32,117,110,102,113,100,110,40,104,111,115,116,41,44,32,116,111,76,111,119,101,114,67,97,115,101,41,44,32,34,46,34,41,59,10,125,44,32,99,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,80,97,114,116,115,44,32,112,97,116,116,101,114,110,44,32,119,105,108,100,99,97,114,100,115,41,32,123,10,32,32,105,102,32,40,33,112,97,116,116,101,114,110,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,112,97,116,116,101,114,110,80,97,114,116,115,32,61,32,115,112,108,105,116,72,111,115,116,40,112,97,116,116,101,114,110,41,59,10,32,32,105,102,32,40,104,111,115,116,80,97,114,116,115,46,108,101,110,103,116,104,32,33,61,61,32,112,97,116,116,101,114,110,80,97,114,116,115,46,108,101,110,103,116,104,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,112,97,116,116,101,114,110,80,97,114,116,115,44,32,34,34,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,105,115,66,97,100,32,61,32,40,115,41,32,61,62,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,46,99,97,108,108,40,47,91,94,92,117,48,48,50,49,45,92,117,48,48,55,70,93,47,117,44,32,115,41,32,33,61,61,32,110,117,108,108,59,10,32,32,105,102,32,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,112,97,116,116,101,114,110,80,97,114,116,115,44,32,105,115,66,97,100,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,104,111,115,116,80,97,114,116,115,46,108,101,110,103,116,104,32,45,32,49,59,105,32,62,32,48,59,32,105,32,45,61,32,49,41,10,32,32,32,32,105,102,32,40,104,111,115,116,80,97,114,116,115,91,105,93,32,33,61,61,32,112,97,116,116,101,114,110,80,97,114,116,115,91,105,93,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,104,111,115,116,83,117,98,100,111,109,97,105,110,32,61,32,104,111,115,116,80,97,114,116,115,91,48,93,44,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,32,61,32,112,97,116,116,101,114,110,80,97,114,116,115,91,48,93,44,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,44,32,34,42,34,41,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,124,124,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,44,32,34,120,110,45,45,34,41,41,10,32,32,32,32,114,101,116,117,114,110,32,104,111,115,116,83,117,98,100,111,109,97,105,110,32,61,61,61,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,59,10,32,32,105,102,32,40,33,119,105,108,100,99,97,114,100,115,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,46,108,101,110,103,116,104,32,62,32,50,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,112,97,116,116,101,114,110,80,97,114,116,115,46,108,101,110,103,116,104,32,60,61,32,50,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,99,111,110,115,116,32,123,32,48,58,32,112,114,101,102,105,120,44,32,49,58,32,115,117,102,102,105,120,32,125,32,61,32,112,97,116,116,101,114,110,83,117,98,100,111,109,97,105,110,80,97,114,116,115,59,10,32,32,105,102,32,40,112,114,101,102,105,120,46,108,101,110,103,116,104,32,43,32,115,117,102,102,105,120,46,108,101,110,103,116,104,32,62,32,104,111,115,116,83,117,98,100,111,109,97,105,110,46,108,101,110,103,116,104,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,33,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,104,111,115,116,83,117,98,100,111,109,97,105,110,44,32,112,114,101,102,105,120,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,105,102,32,40,33,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,69,110,100,115,87,105,116,104,46,99,97,108,108,40,104,111,115,116,83,117,98,100,111,109,97,105,110,44,32,115,117,102,102,105,120,41,41,10,32,32,32,32,114,101,116,117,114,110,32,33,49,59,10,32,32,114,101,116,117,114,110,32,33,48,59,10,125,44,32,115,112,108,105,116,69,115,99,97,112,101,100,65,108,116,78,97,109,101,115,32,61,32,102,117,110,99,116,105,111,110,40,97,108,116,78,97,109,101,115,41,32,123,10,32,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,91,93,59,10,32,32,108,101,116,32,99,117,114,114,101,110,116,84,111,107,101,110,32,61,32,34,34,44,32,111,102,102,115,101,116,32,61,32,48,59,10,32,32,119,104,105,108,101,32,40,111,102,102,115,101,116,32,33,61,61,32,97,108,116,78,97,109,101,115,46,108,101,110,103,116,104,41,32,123,10,32,32,32,32,99,111,110,115,116,32,110,101,120,116,83,101,112,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,34,44,32,34,44,32,111,102,102,115,101,116,41,44,32,110,101,120,116,81,117,111,116,101,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,39,34,39,44,32,111,102,102,115,101,116,41,59,10,32,32,32,32,105,102,32,40,110,101,120,116,81,117,111,116,101,32,33,61,61,32,45,49,32,38,38,32,40,110,101,120,116,83,101,112,32,61,61,61,32,45,49,32,124,124,32,110,101,120,116,81,117,111,116,101,32,60,32,110,101,120,116,83,101,112,41,41,32,123,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,44,32,110,101,120,116,81,117,111,116,101,41,59,10,32,32,32,32,32,32,99,111,110,115,116,32,109,97,116,99,104,32,61,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,46,99,97,108,108,40,106,115,111,110,83,116,114,105,110,103,80,97,116,116,101,114,110,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,110,101,120,116,81,117,111,116,101,41,41,59,10,32,32,32,32,32,32,105,102,32,40,33,109,97,116,99,104,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,83,121,110,116,97,120,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,70,79,82,77,65,84,58,32,73,110,118,97,108,105,100,32,115,117,98,106,101,99,116,32,97,108,116,101,114,110,97,116,105,118,101,32,110,97,109,101,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,70,79,82,77,65,84,44,32,101,114,114,111,114,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,74,83,79,78,46,112,97,114,115,101,40,109,97,116,99,104,91,48,93,41,44,32,111,102,102,115,101,116,32,61,32,110,101,120,116,81,117,111,116,101,32,43,32,109,97,116,99,104,91,48,93,46,108,101,110,103,116,104,59,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,120,116,83,101,112,32,33,61,61,32,45,49,41,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,44,32,110,101,120,116,83,101,112,41,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,114,101,115,117,108,116,44,32,99,117,114,114,101,110,116,84,111,107,101,110,41,44,32,99,117,114,114,101,110,116,84,111,107,101,110,32,61,32,34,34,44,32,111,102,102,115,101,116,32,61,32,110,101,120,116,83,101,112,32,43,32,50,59,10,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,99,117,114,114,101,110,116,84,111,107,101,110,32,43,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,111,102,102,115,101,116,41,44,32,111,102,102,115,101,116,32,61,32,97,108,116,78,97,109,101,115,46,108,101,110,103,116,104,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,114,101,115,117,108,116,44,32,99,117,114,114,101,110,116,84,111,107,101,110,41,44,32,114,101,115,117,108,116,59,10,125,44,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,61,32,102,117,110,99,116,105,111,110,40,104,111,115,116,110,97,109,101,44,32,99,101,114,116,41,32,123,10,32,32,99,111,110,115,116,32,123,32,115,117,98,106,101,99,116,44,32,115,117,98,106,101,99,116,97,108,116,110,97,109,101,58,32,97,108,116,78,97,109,101,115,32,125,32,61,32,99,101,114,116,44,32,100,110,115,78,97,109,101,115,32,61,32,91,93,44,32,105,112,115,32,61,32,91,93,59,10,32,32,105,102,32,40,104,111,115,116,110,97,109,101,32,61,32,34,34,32,43,32,104,111,115,116,110,97,109,101,44,32,97,108,116,78,97,109,101,115,41,32,123,10,32,32,32,32,99,111,110,115,116,32,115,112,108,105,116,65,108,116,78,97,109,101,115,32,61,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,39,34,39,41,32,63,32,115,112,108,105,116,69,115,99,97,112,101,100,65,108,116,78,97,109,101,115,40,97,108,116,78,97,109,101,115,41,32,58,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,46,99,97,108,108,40,97,108,116,78,97,109,101,115,44,32,34,44,32,34,41,59,10,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,70,111,114,69,97,99,104,46,99,97,108,108,40,115,112,108,105,116,65,108,116,78,97,109,101,115,44,32,40,110,97,109,101,41,32,61,62,32,123,10,32,32,32,32,32,32,105,102,32,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,110,97,109,101,44,32,34,68,78,83,58,34,41,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,100,110,115,78,97,109,101,115,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,46,99,97,108,108,40,110,97,109,101,44,32,52,41,41,59,10,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,110,97,109,101,44,32,34,73,80,32,65,100,100,114,101,115,115,58,34,41,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,105,112,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,40,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,46,99,97,108,108,40,110,97,109,101,44,32,49,49,41,41,41,59,10,32,32,32,32,125,41,59,10,32,32,125,10,32,32,108,101,116,32,118,97,108,105,100,32,61,32,33,49,44,32,114,101,97,115,111,110,32,61,32,34,85,110,107,110,111,119,110,32,114,101,97,115,111,110,34,59,10,32,32,105,102,32,40,104,111,115,116,110,97,109,101,32,61,32,117,110,102,113,100,110,40,104,111,115,116,110,97,109,101,41,44,32,110,101,116,46,105,115,73,80,40,104,111,115,116,110,97,109,101,41,41,32,123,10,32,32,32,32,105,102,32,40,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,46,99,97,108,108,40,105,112,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,40,104,111,115,116,110,97,109,101,41,41,44,32,33,118,97,108,105,100,41,10,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,73,80,58,32,36,123,104,111,115,116,110,97,109,101,125,32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99,101,114,116,39,115,32,108,105,115,116,58,32,96,32,43,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,74,111,105,110,46,99,97,108,108,40,105,112,115,44,32,34,44,32,34,41,59,10,32,32,125,32,101,108,115,101,32,105,102,32,40,100,110,115,78,97,109,101,115,46,108,101,110,103,116,104,32,62,32,48,32,124,124,32,115,117,98,106,101,99,116,63,46,67,78,41,32,123,10,32,32,32,32,99,111,110,115,116,32,104,111,115,116,80,97,114,116,115,32,61,32,115,112,108,105,116,72,111,115,116,40,104,111,115,116,110,97,109,101,41,44,32,119,105,108,100,99,97,114,100,32,61,32,40,112,97,116,116,101,114,110,41,32,61,62,32,99,104,101,99,107,40,104,111,115,116,80,97,114,116,115,44,32,112,97,116,116,101,114,110,44,32,33,48,41,59,10,32,32,32,32,105,102,32,40,100,110,115,78,97,109,101,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,10,32,32,32,32,32,32,105,102,32,40,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,100,110,115,78,97,109,101,115,44,32,119,105,108,100,99,97,114,100,41,44,32,33,118,97,108,105,100,41,10,32,32,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,72,111,115,116,58,32,36,123,104,111,115,116,110,97,109,101,125,46,32,105,115,32,110,111,116,32,105,110,32,116,104,101,32,99,101,114,116,39,115,32,97,108,116,110,97,109,101,115,58,32,36,123,97,108,116,78,97,109,101,115,125,96,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,99,110,32,61,32,115,117,98,106,101,99,116,46,67,78,59,10,32,32,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,110,41,41,10,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,46,99,97,108,108,40,99,110,44,32,119,105,108,100,99,97,114,100,41,59,10,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,110,41,10,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,119,105,108,100,99,97,114,100,40,99,110,41,59,10,32,32,32,32,32,32,105,102,32,40,33,118,97,108,105,100,41,10,32,32,32,32,32,32,32,32,114,101,97,115,111,110,32,61,32,96,72,111,115,116,58,32,36,123,104,111,115,116,110,97,109,101,125,46,32,105,115,32,110,111,116,32,99,101,114,116,39,115,32,67,78,58,32,36,123,99,110,125,96,59,10,32,32,32,32,125,10,32,32,125,32,101,108,115,101,10,32,32,32,32,114,101,97,115,111,110,32,61,32,34,67,101,114,116,32,100,111,101,115,32,110,111,116,32,99,111,110,116,97,105,110,32,97,32,68,78,83,32,110,97,109,101,34,59,10,32,32,105,102,32,40,33,118,97,108,105,100,41,32,123,10,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,96,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,73,78,86,65,76,73,68,58,32,72,111,115,116,110,97,109,101,47,73,80,32,100,111,101,115,32,110,111,116,32,109,97,116,99,104,32,99,101,114,116,105,102,105,99,97,116,101,39,115,32,97,108,116,110,97,109,101,115,58,32,36,123,114,101,97,115,111,110,125,96,41,59,10,32,32,32,32,114,101,116,117,114,110,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,67,69,82,84,95,65,76,84,78,65,77,69,95,73,78,86,65,76,73,68,34,44,32,101,114,114,111,114,46,114,101,97,115,111,110,32,61,32,114,101,97,115,111,110,44,32,101,114,114,111,114,46,104,111,115,116,32,61,32,104,111,115,116,110,97,109,101,44,32,101,114,114,111,114,46,99,101,114,116,32,61,32,99,101,114,116,44,32,101,114,114,111,114,59,10,32,32,125,10,125,44,32,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,125,44,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,125,44,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,99,41,32,123,10,32,32,105,102,32,40,33,99,41,10,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,10,32,32,105,102,32,40,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,33,61,32,110,117,108,108,32,38,38,32,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,33,61,61,32,99,41,10,32,32,32,32,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,32,61,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,46,105,115,115,117,101,114,67,101,114,116,105,102,105,99,97,116,101,41,59,10,32,32,105,102,32,40,99,46,105,110,102,111,65,99,99,101,115,115,32,33,61,32,110,117,108,108,41,32,123,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,32,61,32,99,46,105,110,102,111,65,99,99,101,115,115,59,10,32,32,32,32,99,46,105,110,102,111,65,99,99,101,115,115,32,61,32,123,32,95,95,112,114,111,116,111,95,95,58,32,110,117,108,108,32,125,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,46,99,97,108,108,40,47,40,91,94,92,110,58,93,42,41,58,40,91,94,92,110,93,42,41,40,63,58,92,110,124,36,41,47,103,44,32,105,110,102,111,44,32,40,97,108,108,44,32,107,101,121,44,32,118,97,108,41,32,61,62,32,123,10,32,32,32,32,32,32,105,102,32,40,118,97,108,46,99,104,97,114,67,111,100,101,65,116,40,48,41,32,61,61,61,32,51,52,41,10,32,32,32,32,32,32,32,32,118,97,108,32,61,32,74,83,79,78,80,97,114,115,101,40,118,97,108,41,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,32,105,110,32,99,46,105,110,102,111,65,99,99,101,115,115,41,10,32,32,32,32,32,32,32,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,46,99,97,108,108,40,99,46,105,110,102,111,65,99,99,101,115,115,91,107,101,121,93,44,32,118,97,108,41,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,99,46,105,110,102,111,65,99,99,101,115,115,91,107,101,121,93,32,61,32,91,118,97,108,93,59,10,32,32,32,32,125,41,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,99,59,10,125,44,32,99,114,101,97,116,101,83,101,114,118,101,114,32,61,32,102,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,44,32,99,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,32,123,10,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,114,118,101,114,40,111,112,116,105,111,110,115,44,32,99,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,59,10,125,44,32,103,101,116,67,105,112,104,101,114,115,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,10,32,32,114,101,116,117,114,110,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,46,115,112,108,105,116,40,34,58,34,41,59,10,125,44,32,99,111,110,118,101,114,116,80,114,111,116,111,99,111,108,115,32,61,32,102,117,110,99,116,105,111,110,40,112,114,111,116,111,99,111,108,115,41,32,123,10,32,32,99,111,110,115,116,32,108,101,110,115,32,61,32,110,101,119,32,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,46,108,101,110,103,116,104,41,44,32,98,117,102,102,32,61,32,66,117,102,102,101,114,46,97,108,108,111,99,85,110,115,97,102,101,40,65,114,114,97,121,80,114,111,116,111,116,121,112,101,82,101,100,117,99,101,46,99,97,108,108,40,112,114,111,116,111,99,111,108,115,44,32,40,112,44,32,99,44,32,105,41,32,61,62,32,123,10,32,32,32,32,99,111,110,115,116,32,108,101,110,32,61,32,66,117,102,102,101,114,46,98,121,116,101,76,101,110,103,116,104,40,99,41,59,10,32,32,32,32,105,102,32,40,108,101,110,32,62,32,50,53,53,41,10,32,32,32,32,32,32,64,116,104,114,111,119,82,97,110,103,101,69,114,114,111,114,40,34,84,104,101,32,98,121,116,101,32,108,101,110,103,116,104,32,111,102,32,116,104,101,32,112,114,111,116,111,99,111,108,32,97,116,32,105,110,100,101,120,32,34,32,43,32,96,36,123,105,125,32,101,120,99,101,101,100,115,32,116,104,101,32,109,97,120,105,109,117,109,32,108,101,110,103,116,104,46,96,44,32,34,60,61,32,50,53,53,34,44,32,108,101,110,44,32,33,48,41,59,10,32,32,32,32,114,101,116,117,114,110,32,108,101,110,115,91,105,93,32,61,32,108,101,110,44,32,112,32,43,32,49,32,43,32,108,101,110,59,10,32,32,125,44,32,48,41,41,59,10,32,32,108,101,116,32,111,102,102,115,101,116,32,61,32,48,59,10,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,44,32,99,32,61,32,112,114,111,116,111,99,111,108,115,46,108,101,110,103,116,104,59,105,32,60,32,99,59,32,105,43,43,41,10,32,32,32,32,98,117,102,102,91,111,102,102,115,101,116,43,43,93,32,61,32,108,101,110,115,91,105,93,44,32,98,117,102,102,46,119,114,105,116,101,40,112,114,111,116,111,99,111,108,115,91,105,93,44,32,111,102,102,115,101,116,41,44,32,111,102,102,115,101,116,32,43,61,32,108,101,110,115,91,105,93,59,10,32,32,114,101,116,117,114,110,32,98,117,102,102,59,10,125,44,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,102,117,110,99,116,105,111,110,40,112,114,111,116,111,99,111,108,115,44,32,111,117,116,41,32,123,10,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,99,111,110,118,101,114,116,80,114,111,116,111,99,111,108,115,40,112,114,111,116,111,99,111,108,115,41,59,10,32,32,101,108,115,101,32,105,102,32,40,105,115,84,121,112,101,100,65,114,114,97,121,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,112,114,111,116,111,99,111,108,115,41,59,10,32,32,101,108,115,101,32,105,102,32,40,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,112,114,111,116,111,99,111,108,115,46,98,117,102,102,101,114,46,115,108,105,99,101,40,112,114,111,116,111,99,111,108,115,46,98,121,116,101,79,102,102,115,101,116,44,32,112,114,111,116,111,99,111,108,115,46,98,121,116,101,79,102,102,115,101,116,32,43,32,112,114,111,116,111,99,111,108,115,46,98,121,116,101,76,101,110,103,116,104,41,41,59,10,32,32,101,108,115,101,32,105,102,32,40,66,117,102,102,101,114,46,105,115,66,117,102,102,101,114,40,112,114,111,116,111,99,111,108,115,41,41,10,32,32,32,32,111,117,116,46,65,76,80,78,80,114,111,116,111,99,111,108,115,32,61,32,112,114,111,116,111,99,111,108,115,59,10,125,44,32,36,44,32,123,32,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,44,32,105,115,84,121,112,101,100,65,114,114,97,121,32,125,32,61,32,64,114,101,113,117,105,114,101,78,97,116,105,118,101,77,111,100,117,108,101,40,34,110,111,100,101,58,117,116,105,108,47,116,121,112,101,115,34,41,44,32,110,101,116,32,61,32,64,103,101,116,73,110,116,101,114,110,97,108,70,105,101,108,100,40,64,105,110,116,101,114,110,97,108,77,111,100,117,108,101,82,101,103,105,115,116,114,121,44,32,50,53,41,32,124,124,32,64,99,114,101,97,116,101,73,110,116,101,114,110,97,108,77,111,100,117,108,101,66,121,73,100,40,50,53,41,44,32,123,32,83,101,114,118,101,114,58,32,78,101,116,83,101,114,118,101,114,44,32,91,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,116,101,114,110,97,108,58,58,34,41,93,58,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,125,32,61,32,110,101,116,44,32,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,32,61,32,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,110,101,116,115,111,99,107,101,116,105,110,116,101,114,110,97,108,58,58,34,41,44,32,123,32,114,111,111,116,67,101,114,116,105,102,105,99,97,116,101,115,44,32,99,97,110,111,110,105,99,97,108,105,122,101,73,80,32,125,32,61,32,103,108,111,98,97,108,84,104,105,115,91,103,108,111,98,97,108,84,104,105,115,46,83,121,109,98,111,108,46,102,111,114,40,39,66,117,110,46,108,97,122,121,39,41,93,40,34,105,110,116,101,114,110,97,108,47,116,108,115,34,41,44,32,83,121,109,98,111,108,82,101,112,108,97,99,101,32,61,32,83,121,109,98,111,108,46,114,101,112,108,97,99,101,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,83,121,109,98,111,108,82,101,112,108,97,99,101,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,83,121,109,98,111,108,82,101,112,108,97,99,101,93,44,32,82,101,103,69,120,112,80,114,111,116,111,116,121,112,101,69,120,101,99,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,46,101,120,101,99,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,116,97,114,116,115,87,105,116,104,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,116,97,114,116,115,87,105,116,104,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,108,105,99,101,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,112,108,105,116,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,112,108,105,116,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,73,110,100,101,120,79,102,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,83,117,98,115,116,114,105,110,103,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,116,114,105,110,103,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,69,110,100,115,87,105,116,104,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,101,110,100,115,87,105,116,104,44,32,83,116,114,105,110,103,70,114,111,109,67,104,97,114,67,111,100,101,32,61,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,44,32,83,116,114,105,110,103,80,114,111,116,111,116,121,112,101,67,104,97,114,67,111,100,101,65,116,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,99,104,97,114,67,111,100,101,65,116,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,73,110,99,108,117,100,101,115,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,74,111,105,110,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,70,111,114,69,97,99,104,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,80,117,115,104,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,83,111,109,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,111,109,101,44,32,65,114,114,97,121,80,114,111,116,111,116,121,112,101,82,101,100,117,99,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,114,101,100,117,99,101,44,32,106,115,111,110,83,116,114,105,110,103,80,97,116,116,101,114,110,32,61,32,47,94,34,40,63,58,91,94,34,92,92,92,117,48,48,48,48,45,92,117,48,48,49,102,93,124,92,92,40,63,58,91,34,92,92,47,98,102,110,114,116,93,124,117,91,48,45,57,97,45,102,65,45,70,93,123,52,125,41,41,42,34,47,44,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,99,108,97,115,115,32,83,101,99,117,114,101,67,111,110,116,101,120,116,50,32,123,10,32,32,99,111,110,116,101,120,116,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,120,116,32,61,32,123,125,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,32,32,108,101,116,32,107,101,121,32,61,32,111,112,116,105,111,110,115,46,107,101,121,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,107,101,121,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,107,101,121,32,61,32,107,101,121,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,101,114,116,32,61,32,111,112,116,105,111,110,115,46,99,101,114,116,59,10,32,32,32,32,32,32,105,102,32,40,99,101,114,116,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,101,114,116,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,101,114,116,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,101,114,116,32,61,32,99,101,114,116,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,97,32,61,32,111,112,116,105,111,110,115,46,99,97,59,10,32,32,32,32,32,32,105,102,32,40,99,97,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,97,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,97,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,32,61,32,99,97,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,112,97,115,115,112,104,114,97,115,101,32,61,32,111,112,116,105,111,110,115,46,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,105,102,32,40,112,97,115,115,112,104,114,97,115,101,32,38,38,32,116,121,112,101,111,102,32,112,97,115,115,112,104,114,97,115,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,112,97,115,115,112,104,114,97,115,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,32,61,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,114,118,101,114,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,105,102,32,40,115,101,114,118,101,114,110,97,109,101,32,38,38,32,116,121,112,101,111,102,32,115,101,114,118,101,114,110,97,109,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,114,118,101,114,110,97,109,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,124,124,32,48,59,10,32,32,32,32,32,32,105,102,32,40,115,101,99,117,114,101,79,112,116,105,111,110,115,32,38,38,32,116,121,112,101,111,102,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,33,61,61,32,34,110,117,109,98,101,114,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,99,117,114,101,79,112,116,105,111,110,115,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,110,117,109,98,101,114,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,10,32,32,125,10,125,44,32,98,117,110,116,108,115,32,61,32,83,121,109,98,111,108,46,102,111,114,40,34,58,58,98,117,110,116,108,115,58,58,34,41,44,32,83,111,99,107,101,116,67,108,97,115,115,44,32,84,76,83,83,111,99,107,101,116,32,61,32,102,117,110,99,116,105,111,110,40,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,41,32,123,10,32,32,114,101,116,117,114,110,32,83,111,99,107,101,116,67,108,97,115,115,32,61,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,44,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,83,111,99,107,101,116,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,44,32,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,44,32,123,10,32,32,32,32,118,97,108,117,101,58,32,34,84,76,83,83,111,99,107,101,116,34,44,10,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,33,49,10,32,32,125,41,44,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,102,117,110,99,116,105,111,110,32,83,111,99,107,101,116,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,40,111,112,116,105,111,110,115,41,59,10,32,32,125,44,32,83,121,109,98,111,108,46,104,97,115,73,110,115,116,97,110,99,101,44,32,123,10,32,32,32,32,118,97,108,117,101,40,105,110,115,116,97,110,99,101,41,32,123,10,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,76,83,83,111,99,107,101,116,59,10,32,32,32,32,125,10,32,32,125,41,59,10,125,40,99,108,97,115,115,32,84,76,83,83,111,99,107,101,116,50,32,101,120,116,101,110,100,115,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,123,10,32,32,35,115,101,99,117,114,101,67,111,110,116,101,120,116,59,10,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,59,10,32,32,35,115,111,99,107,101,116,59,10,32,32,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,59,10,32,32,35,115,101,115,115,105,111,110,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,115,111,99,107,101,116,44,32,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,115,117,112,101,114,40,115,111,99,107,101,116,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,32,63,32,111,112,116,105,111,110,115,32,58,32,111,112,116,105,111,110,115,32,124,124,32,115,111,99,107,101,116,41,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,32,124,124,32,115,111,99,107,101,116,32,124,124,32,123,125,44,32,116,121,112,101,111,102,32,111,112,116,105,111,110,115,32,61,61,61,32,34,111,98,106,101,99,116,34,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,111,112,116,105,111,110,115,59,10,32,32,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,116,104,105,115,41,59,10,32,32,32,32,32,32,105,102,32,40,115,111,99,107,101,116,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,84,67,80,83,111,99,107,101,116,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,35,115,111,99,107,101,116,32,61,32,115,111,99,107,101,116,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,35,115,101,99,117,114,101,67,111,110,116,101,120,116,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,67,111,110,116,101,120,116,32,124,124,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,44,32,116,104,105,115,46,97,117,116,104,111,114,105,122,101,100,32,61,32,33,49,44,32,116,104,105,115,46,115,101,99,117,114,101,67,111,110,110,101,99,116,105,110,103,32,61,32,33,48,44,32,116,104,105,115,46,95,115,101,99,117,114,101,69,115,116,97,98,108,105,115,104,101,100,32,61,32,33,49,44,32,116,104,105,115,46,95,115,101,99,117,114,101,80,101,110,100,105,110,103,32,61,32,33,48,44,32,116,104,105,115,46,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,61,32,111,112,116,105,111,110,115,46,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,32,124,124,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,32,116,104,105,115,46,35,115,101,115,115,105,111,110,32,61,32,111,112,116,105,111,110,115,46,115,101,115,115,105,111,110,32,124,124,32,110,117,108,108,59,10,32,32,125,10,32,32,95,115,101,99,117,114,101,69,115,116,97,98,108,105,115,104,101,100,32,61,32,33,49,59,10,32,32,95,115,101,99,117,114,101,80,101,110,100,105,110,103,32,61,32,33,48,59,10,32,32,95,110,101,119,83,101,115,115,105,111,110,80,101,110,100,105,110,103,59,10,32,32,95,99,111,110,116,114,111,108,82,101,108,101,97,115,101,100,59,10,32,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,110,103,32,61,32,33,49,59,10,32,32,95,83,78,73,67,97,108,108,98,97,99,107,59,10,32,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,97,117,116,104,111,114,105,122,101,100,32,61,32,33,49,59,10,32,32,97,117,116,104,111,114,105,122,97,116,105,111,110,69,114,114,111,114,59,10,32,32,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,32,61,32,33,49,59,10,32,32,101,110,99,114,121,112,116,101,100,32,61,32,33,48,59,10,32,32,95,115,116,97,114,116,40,41,32,123,10,32,32,32,32,116,104,105,115,46,99,111,110,110,101,99,116,40,41,59,10,32,32,125,10,32,32,103,101,116,83,101,115,115,105,111,110,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,83,101,115,115,105,111,110,40,41,59,10,32,32,125,10,32,32,103,101,116,69,112,104,101,109,101,114,97,108,75,101,121,73,110,102,111,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,69,112,104,101,109,101,114,97,108,75,101,121,73,110,102,111,40,41,59,10,32,32,125,10,32,32,103,101,116,67,105,112,104,101,114,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,67,105,112,104,101,114,40,41,59,10,32,32,125,10,32,32,103,101,116,83,104,97,114,101,100,83,105,103,97,108,103,115,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,83,104,97,114,101,100,83,105,103,97,108,103,115,40,41,59,10,32,32,125,10,32,32,103,101,116,80,114,111,116,111,99,111,108,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,86,101,114,115,105,111,110,40,41,59,10,32,32,125,10,32,32,103,101,116,70,105,110,105,115,104,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,70,105,110,105,115,104,101,100,77,101,115,115,97,103,101,40,41,32,124,124,32,118,111,105,100,32,48,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,70,105,110,105,115,104,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,80,101,101,114,70,105,110,105,115,104,101,100,77,101,115,115,97,103,101,40,41,32,124,124,32,118,111,105,100,32,48,59,10,32,32,125,10,32,32,105,115,83,101,115,115,105,111,110,82,101,117,115,101,100,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,33,33,116,104,105,115,46,35,115,101,115,115,105,111,110,59,10,32,32,125,10,32,32,114,101,110,101,103,111,116,105,97,116,101,40,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,82,69,78,69,71,79,84,73,65,84,73,79,78,95,68,73,83,65,66,76,69,68,58,32,84,76,83,32,115,101,115,115,105,111,110,32,114,101,110,101,103,111,116,105,97,116,105,111,110,32,100,105,115,97,98,108,101,100,32,102,111,114,32,116,104,105,115,32,115,111,99,107,101,116,34,41,59,10,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,82,69,78,69,71,79,84,73,65,84,73,79,78,95,68,73,83,65,66,76,69,68,34,44,32,101,114,114,111,114,59,10,32,32,32,32,125,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,100,105,115,97,98,108,101,82,101,110,101,103,111,116,105,97,116,105,111,110,40,41,32,123,10,32,32,32,32,116,104,105,115,46,35,114,101,110,101,103,111,116,105,97,116,105,111,110,68,105,115,97,98,108,101,100,32,61,32,33,48,59,10,32,32,125,10,32,32,103,101,116,84,76,83,84,105,99,107,101,116,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,84,76,83,84,105,99,107,101,116,40,41,59,10,32,32,125,10,32,32,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,44,32,99,111,110,116,101,120,116,41,32,123,10,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,44,32,99,111,110,116,101,120,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,101,120,112,111,114,116,75,101,121,105,110,103,77,97,116,101,114,105,97,108,40,108,101,110,103,116,104,44,32,108,97,98,101,108,41,59,10,32,32,125,10,32,32,115,101,116,77,97,120,83,101,110,100,70,114,97,103,109,101,110,116,40,115,105,122,101,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,77,97,120,83,101,110,100,70,114,97,103,109,101,110,116,40,115,105,122,101,41,32,124,124,32,33,49,59,10,32,32,125,10,32,32,101,110,97,98,108,101,84,114,97,99,101,40,41,32,123,10,32,32,125,10,32,32,115,101,116,83,101,114,118,101,114,110,97,109,101,40,110,97,109,101,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,114,118,101,114,41,32,123,10,32,32,32,32,32,32,108,101,116,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,34,69,82,82,95,84,76,83,95,83,78,73,95,70,82,79,77,95,83,69,82,86,69,82,58,32,67,97,110,110,111,116,32,105,115,115,117,101,32,83,78,73,32,102,114,111,109,32,97,32,84,76,83,32,115,101,114,118,101,114,45,115,105,100,101,32,115,111,99,107,101,116,34,41,59,10,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,111,114,46,110,97,109,101,32,61,32,34,69,82,82,95,84,76,83,95,83,78,73,95,70,82,79,77,95,83,69,82,86,69,82,34,44,32,101,114,114,111,114,59,10,32,32,32,32,125,10,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,110,97,109,101,44,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,83,101,114,118,101,114,110,97,109,101,40,110,97,109,101,41,59,10,32,32,125,10,32,32,115,101,116,83,101,115,115,105,111,110,40,115,101,115,115,105,111,110,41,32,123,10,32,32,32,32,105,102,32,40,116,104,105,115,46,35,115,101,115,115,105,111,110,32,61,32,115,101,115,115,105,111,110,44,32,116,121,112,101,111,102,32,115,101,115,115,105,111,110,32,61,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,115,101,115,115,105,111,110,32,61,32,66,117,102,102,101,114,46,102,114,111,109,40,115,101,115,115,105,111,110,44,32,34,108,97,116,105,110,49,34,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,115,101,116,83,101,115,115,105,111,110,40,115,101,115,115,105,111,110,41,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,97,98,98,114,101,118,105,97,116,101,100,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,101,114,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,49,32,63,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,41,32,58,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,97,98,98,114,101,118,105,97,116,101,100,41,59,10,32,32,32,32,105,102,32,40,99,101,114,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,101,114,116,41,59,10,32,32,125,10,32,32,103,101,116,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,101,114,116,32,61,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,103,101,116,67,101,114,116,105,102,105,99,97,116,101,40,41,59,10,32,32,32,32,105,102,32,40,99,101,114,116,41,10,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,108,97,116,101,80,101,101,114,67,101,114,116,105,102,105,99,97,116,101,40,99,101,114,116,41,59,10,32,32,125,10,32,32,103,101,116,80,101,101,114,88,53,48,57,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,103,101,116,88,53,48,57,67,101,114,116,105,102,105,99,97,116,101,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,103,101,116,32,97,108,112,110,80,114,111,116,111,99,111,108,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,98,117,110,83,111,99,107,101,116,73,110,116,101,114,110,97,108,93,63,46,97,108,112,110,80,114,111,116,111,99,111,108,59,10,32,32,125,10,32,32,91,98,117,110,116,108,115,93,40,112,111,114,116,44,32,104,111,115,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,123,10,32,32,32,32,32,32,115,111,99,107,101,116,58,32,116,104,105,115,46,35,115,111,99,107,101,116,44,10,32,32,32,32,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,58,32,116,104,105,115,46,65,76,80,78,80,114,111,116,111,99,111,108,115,44,10,32,32,32,32,32,32,115,101,114,118,101,114,78,97,109,101,58,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,124,124,32,104,111,115,116,32,124,124,32,34,108,111,99,97,108,104,111,115,116,34,44,10,32,32,32,32,32,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,58,32,116,104,105,115,46,35,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,10,32,32,32,32,32,32,115,101,115,115,105,111,110,58,32,116,104,105,115,46,35,115,101,115,115,105,111,110,44,10,32,32,32,32,32,32,46,46,46,116,104,105,115,46,35,115,101,99,117,114,101,67,111,110,116,101,120,116,10,32,32,32,32,125,59,10,32,32,125,10,125,41,59,10,10,99,108,97,115,115,32,83,101,114,118,101,114,32,101,120,116,101,110,100,115,32,78,101,116,83,101,114,118,101,114,32,123,10,32,32,107,101,121,59,10,32,32,99,101,114,116,59,10,32,32,99,97,59,10,32,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,59,10,32,32,95,114,101,113,117,101,115,116,67,101,114,116,59,10,32,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,59,10,32,32,99,111,110,115,116,114,117,99,116,111,114,40,111,112,116,105,111,110,115,44,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,32,123,10,32,32,32,32,115,117,112,101,114,40,111,112,116,105,111,110,115,44,32,115,101,99,117,114,101,67,111,110,110,101,99,116,105,111,110,76,105,115,116,101,110,101,114,41,59,10,32,32,32,32,116,104,105,115,46,115,101,116,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,59,10,32,32,125,10,32,32,115,101,116,83,101,99,117,114,101,67,111,110,116,101,120,116,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,105,110,115,116,97,110,99,101,111,102,32,73,110,116,101,114,110,97,108,83,101,99,117,114,101,67,111,110,116,101,120,116,41,10,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,99,111,110,116,101,120,116,59,10,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,10,32,32,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,111,112,116,105,111,110,115,59,10,32,32,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,116,104,105,115,41,59,10,32,32,32,32,32,32,108,101,116,32,107,101,121,32,61,32,111,112,116,105,111,110,115,46,107,101,121,59,10,32,32,32,32,32,32,105,102,32,40,107,101,121,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,107,101,121,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,107,101,121,32,61,32,107,101,121,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,101,114,116,32,61,32,111,112,116,105,111,110,115,46,99,101,114,116,59,10,32,32,32,32,32,32,105,102,32,40,99,101,114,116,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,101,114,116,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,101,114,116,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,101,114,116,32,61,32,99,101,114,116,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,99,97,32,61,32,111,112,116,105,111,110,115,46,99,97,59,10,32,32,32,32,32,32,105,102,32,40,99,97,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,84,76,83,65,114,114,97,121,40,99,97,41,41,10,32,32,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,99,97,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,44,32,66,117,110,70,105,108,101,32,111,114,32,97,110,32,97,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,115,116,114,105,110,103,44,32,66,117,102,102,101,114,44,32,84,121,112,101,100,65,114,114,97,121,32,111,114,32,66,117,110,70,105,108,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,32,61,32,99,97,59,10,32,32,32,32,32,32,125,10,32,32,32,32,32,32,108,101,116,32,112,97,115,115,112,104,114,97,115,101,32,61,32,111,112,116,105,111,110,115,46,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,105,102,32,40,112,97,115,115,112,104,114,97,115,101,32,38,38,32,116,121,112,101,111,102,32,112,97,115,115,112,104,114,97,115,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,112,97,115,115,112,104,114,97,115,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,32,61,32,112,97,115,115,112,104,114,97,115,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,114,118,101,114,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,105,102,32,40,115,101,114,118,101,114,110,97,109,101,32,38,38,32,116,121,112,101,111,102,32,115,101,114,118,101,114,110,97,109,101,32,33,61,61,32,34,115,116,114,105,110,103,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,114,118,101,114,110,97,109,101,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,115,116,114,105,110,103,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,61,32,115,101,114,118,101,114,110,97,109,101,59,10,32,32,32,32,32,32,108,101,116,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,124,124,32,48,59,10,32,32,32,32,32,32,105,102,32,40,115,101,99,117,114,101,79,112,116,105,111,110,115,32,38,38,32,116,121,112,101,111,102,32,115,101,99,117,114,101,79,112,116,105,111,110,115,32,33,61,61,32,34,110,117,109,98,101,114,34,41,10,32,32,32,32,32,32,32,32,64,116,104,114,111,119,84,121,112,101,69,114,114,111,114,40,34,115,101,99,117,114,101,79,112,116,105,111,110,115,32,97,114,103,117,109,101,110,116,32,109,117,115,116,32,98,101,32,97,110,32,110,117,109,98,101,114,34,41,59,10,32,32,32,32,32,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,32,61,32,115,101,99,117,114,101,79,112,116,105,111,110,115,59,10,32,32,32,32,32,32,99,111,110,115,116,32,114,101,113,117,101,115,116,67,101,114,116,32,61,32,111,112,116,105,111,110,115,46,114,101,113,117,101,115,116,67,101,114,116,32,124,124,32,33,49,59,10,32,32,32,32,32,32,105,102,32,40,114,101,113,117,101,115,116,67,101,114,116,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,32,61,32,114,101,113,117,101,115,116,67,101,114,116,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,32,61,32,118,111,105,100,32,48,59,10,32,32,32,32,32,32,99,111,110,115,116,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,111,112,116,105,111,110,115,46,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,124,124,32,33,49,59,10,32,32,32,32,32,32,105,102,32,40,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,41,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,59,10,32,32,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,32,61,32,118,111,105,100,32,48,59,10,32,32,32,32,125,10,32,32,125,10,32,32,103,101,116,84,105,99,107,101,116,75,101,121,115,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,115,101,116,84,105,99,107,101,116,75,101,121,115,40,41,32,123,10,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,34,78,111,116,32,105,109,112,108,101,110,116,101,100,32,105,110,32,66,117,110,32,121,101,116,34,41,59,10,32,32,125,10,32,32,91,98,117,110,116,108,115,93,40,112,111,114,116,44,32,104,111,115,116,44,32,105,115,67,108,105,101,110,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,91,10,32,32,32,32,32,32,123,10,32,32,32,32,32,32,32,32,115,101,114,118,101,114,78,97,109,101,58,32,116,104,105,115,46,115,101,114,118,101,114,110,97,109,101,32,124,124,32,104,111,115,116,32,124,124,32,34,108,111,99,97,108,104,111,115,116,34,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,46,107,101,121,44,10,32,32,32,32,32,32,32,32,99,101,114,116,58,32,116,104,105,115,46,99,101,114,116,44,10,32,32,32,32,32,32,32,32,99,97,58,32,116,104,105,115,46,99,97,44,10,32,32,32,32,32,32,32,32,112,97,115,115,112,104,114,97,115,101,58,32,116,104,105,115,46,112,97,115,115,112,104,114,97,115,101,44,10,32,32,32,32,32,32,32,32,115,101,99,117,114,101,79,112,116,105,111,110,115,58,32,116,104,105,115,46,115,101,99,117,114,101,79,112,116,105,111,110,115,44,10,32,32,32,32,32,32,32,32,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,58,32,105,115,67,108,105,101,110,116,32,63,32,33,49,32,58,32,116,104,105,115,46,95,114,101,106,101,99,116,85,110,97,117,116,104,111,114,105,122,101,100,44,10,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,67,101,114,116,58,32,105,115,67,108,105,101,110,116,32,63,32,33,49,32,58,32,116,104,105,115,46,95,114,101,113,117,101,115,116,67,101,114,116,44,10,32,32,32,32,32,32,32,32,65,76,80,78,80,114,111,116,111,99,111,108,115,58,32,116,104,105,115,46,65,76,80,78,80,114,111,116,111,99,111,108,115,10,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,83,111,99,107,101,116,67,108,97,115,115,10,32,32,32,32,93,59,10,32,32,125,10,125,10,118,97,114,32,67,76,73,69,78,84,95,82,69,78,69,71,95,76,73,77,73,84,32,61,32,51,44,32,67,76,73,69,78,84,95,82,69,78,69,71,95,87,73,78,68,79,87,32,61,32,54,48,48,44,32,68,69,70,65,85,76,84,95,69,67,68,72,95,67,85,82,86,69,32,61,32,34,97,117,116,111,34,44,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,32,61,32,34,68,72,69,45,82,83,65,45,65,69,83,50,53,54,45,71,67,77,45,83,72,65,51,56,52,58,68,72,69,45,82,83,65,45,65,69,83,49,50,56,45,71,67,77,45,83,72,65,50,53,54,58,69,67,68,72,69,45,82,83,65,45,65,69,83,50,53,54,45,71,67,77,45,83,72,65,51,56,52,58,69,67,68,72,69,45,82,83,65,45,65,69,83,49,50,56,45,71,67,77,45,83,72,65,50,53,54,34,44,32,68,69,70,65,85,76,84,95,77,73,78,95,86,69,82,83,73,79,78,32,61,32,34,84,76,83,118,49,46,50,34,44,32,68,69,70,65,85,76,84,95,77,65,88,95,86,69,82,83,73,79,78,32,61,32,34,84,76,83,118,49,46,51,34,44,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,32,61,32,40,112,111,114,116,44,32,104,111,115,116,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,32,61,62,32,123,10,32,32,105,102,32,40,116,121,112,101,111,102,32,112,111,114,116,32,61,61,61,32,34,111,98,106,101,99,116,34,41,32,123,10,32,32,32,32,112,111,114,116,46,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,59,10,32,32,32,32,99,111,110,115,116,32,123,32,65,76,80,78,80,114,111,116,111,99,111,108,115,32,125,32,61,32,112,111,114,116,59,10,32,32,32,32,105,102,32,40,65,76,80,78,80,114,111,116,111,99,111,108,115,41,10,32,32,32,32,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,40,65,76,80,78,80,114,111,116,111,99,111,108,115,44,32,112,111,114,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,84,76,83,83,111,99,107,101,116,40,112,111,114,116,41,46,99,111,110,110,101,99,116,40,112,111,114,116,44,32,104,111,115,116,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,59,10,32,32,125,10,32,32,114,101,116,117,114,110,32,110,101,119,32,84,76,83,83,111,99,107,101,116,40,41,46,99,111,110,110,101,99,116,40,112,111,114,116,44,32,104,111,115,116,44,32,99,111,110,110,101,99,116,76,105,115,116,101,110,101,114,41,59,10,125,44,32,99,111,110,110,101,99,116,32,61,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,59,10,36,32,61,32,123,10,32,32,67,76,73,69,78,84,95,82,69,78,69,71,95,76,73,77,73,84,44,10,32,32,67,76,73,69,78,84,95,82,69,78,69,71,95,87,73,78,68,79,87,44,10,32,32,99,111,110,110,101,99,116,44,10,32,32,99,111,110,118,101,114,116,65,76,80,78,80,114,111,116,111,99,111,108,115,44,10,32,32,99,114,101,97,116,101,67,111,110,110,101,99,116,105,111,110,44,10,32,32,99,114,101,97,116,101,83,101,99,117,114,101,67,111,110,116,101,120,116,44,10,32,32,99,114,101,97,116,101,83,101,114,118,101,114,44,10,32,32,68,69,70,65,85,76,84,95,67,73,80,72,69,82,83,44,10,32,32,68,69,70,65,85,76,84,95,69,67,68,72,95,67,85,82,86,69,44,10,32,32,68,69,70,65,85,76,84,95,77,65,88,95,86,69,82,83,73,79,78,44,10,32,32,68,69,70,65,85,76,84,95,77,73,78,95,86,69,82,83,73,79,78,44,10,32,32,103,101,116,67,105,112,104,101,114,115,44,10,32,32,112,97,114,115,101,67,101,114,116,83,116,114,105,110,103,44,10,32,32,83,101,99,117,114,101,67,111,110,116,101,120,116,44,10,32,32,83,101,114,118,101,114,44,10,32,32,84,76,83,83,111,99,107,101,116,44,10,32,32,99,104,101,99,107,83,101,114,118,101,114,73,100,101,110,116,105,116,121,44,10,32,32,114,111,111,116,67,101,114,116,105,102,105,99,97,116,101,115,10,125,59,10,114,101,116,117,114,110,32,36,125,41,10,10,0}; static constexpr ASCIILiteral NodeTLSCode = ASCIILiteral::fromLiteralUnsafe(NodeTLSCodeBytes); // diff --git a/src/js/out/ResolvedSourceTag.zig b/src/js/out/ResolvedSourceTag.zig index 21bd8ab58b..5bc2289887 100644 --- a/src/js/out/ResolvedSourceTag.zig +++ b/src/js/out/ResolvedSourceTag.zig @@ -61,16 +61,16 @@ pub const ResolvedSourceTag = enum(u32) { @"node:wasi" = 561, @"node:worker_threads" = 562, @"node:zlib" = 563, - depd = 564, + @"depd" = 564, @"detect-libc" = 565, @"detect-libc/linux" = 566, @"isomorphic-fetch" = 567, @"node-fetch" = 568, - undici = 569, - vercel_fetch = 570, - ws = 571, + @"undici" = 569, + @"vercel_fetch" = 570, + @"ws" = 571, // Native modules run through a different system using ESM registry. - bun = 1024, + @"bun" = 1024, @"bun:jsc" = 1025, @"node:buffer" = 1026, @"node:constants" = 1027, diff --git a/test/js/node/http/node-http.test.ts b/test/js/node/http/node-http.test.ts index 619718fee8..d28676a19d 100644 --- a/test/js/node/http/node-http.test.ts +++ b/test/js/node/http/node-http.test.ts @@ -807,6 +807,8 @@ describe("node:http", () => { done(); } catch (error) { done(error); + } finally { + server.close(); } }); }); @@ -823,20 +825,12 @@ describe("node:http", () => { }); } catch (err) { done(err); + } finally { + server.close(); } }); }); - test("should not decompress gzip, issue#4397", async () => { - const { promise, resolve } = Promise.withResolvers(); - request("https://bun.sh/", { headers: { "accept-encoding": "gzip" } }, res => { - res.on("data", function cb(chunk) { - resolve(chunk); - res.off("data", cb); - }); - }).end(); - const chunk = await promise; - expect(chunk.toString()).not.toContain(" { const socketPath = `${tmpdir()}/bun-server-${Math.random().toString(32)}.sock`; const server = createServer((req, res) => { @@ -850,6 +844,18 @@ describe("node:http", () => { res.end(); }); + test("should not decompress gzip, issue#4397", async () => { + const { promise, resolve } = Promise.withResolvers(); + request("https://bun.sh/", { headers: { "accept-encoding": "gzip" } }, res => { + res.on("data", function cb(chunk) { + resolve(chunk); + res.off("data", cb); + }); + }).end(); + const chunk = await promise; + expect(chunk.toString()).not.toContain(" { // TODO: unix socket is not implemented in fetch. const output = spawnSync("curl", ["--unix-socket", socketPath, "http://localhost/bun?a=1"]); @@ -858,6 +864,8 @@ describe("node:http", () => { done(); } catch (err) { done(err); + } finally { + server.close(); } }); }); diff --git a/test/js/node/tls/node-tls-connect.test.ts b/test/js/node/tls/node-tls-connect.test.ts index 8bc2dcb7ac..3bcf49db01 100644 --- a/test/js/node/tls/node-tls-connect.test.ts +++ b/test/js/node/tls/node-tls-connect.test.ts @@ -50,7 +50,7 @@ it("Bun.serve() should work with tls and Bun.file()", async () => { key: COMMON_CERT.key, }, }); - const res = await fetch(`https://${server.hostname}:${server.port}/`); + const res = await fetch(`https://${server.hostname}:${server.port}/`, { tls: { rejectUnauthorized: false } }); expect(await res.text()).toBe("